@arquimedes.co/eureka-forms 2.0.32 → 2.0.34-test
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/.babelrc.json +18 -0
- package/.dockerignore +1 -0
- package/.env +4 -0
- package/.eslintrc.js +40 -0
- package/.gitattributes +1 -0
- package/.github/workflows/CI-CD.yml +76 -0
- package/.github/workflows/Deploy-Forms.yml +253 -0
- package/.github/workflows/Test-Forms.yml +193 -0
- package/.prettierrc.yaml +11 -0
- package/.storybook/main.ts +55 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.tsx +29 -0
- package/.vscode/settings.json +7 -0
- package/ContentTemplate.yaml +92 -0
- package/Embeddables/.env +3 -0
- package/Embeddables/package-lock.json +45340 -0
- package/Embeddables/package.json +38 -0
- package/Embeddables/public/favicon.ico +0 -0
- package/Embeddables/public/index.html +22 -0
- package/Embeddables/src/App.module.css +30 -0
- package/Embeddables/src/App.tsx +21 -0
- package/Embeddables/src/LibComponent.tsx +20 -0
- package/Embeddables/src/WidgetComponent.tsx +38 -0
- package/Embeddables/src/index.tsx +10 -0
- package/Embeddables/tsconfig.json +4 -0
- package/LocalEmbeddables.sh +26 -0
- package/README +1 -1
- package/base.tsconfig.json +44 -0
- package/cjs.tsconfig.json +8 -0
- package/content/Capta/Capta.svg +1 -0
- package/content/Capta/CaptaIcon.png +0 -0
- package/content/Capta/CaptaSmall.svg +1 -0
- package/content/Capta/CaptaSqr.png +0 -0
- package/content/Capta/CaptaSqrIcon.png +0 -0
- package/content/Capta/CaptaWhite.png +0 -0
- package/content/Capta/CaptaWhite.svg +1 -0
- package/content/Capta/CaptaWhiteSmall.svg +1 -0
- package/content/Capta/Ratings/like-0.png +0 -0
- package/content/Capta/Ratings/like-1.png +0 -0
- package/content/Capta/Ratings/satisfaction-1.png +0 -0
- package/content/Capta/Ratings/satisfaction-2.png +0 -0
- package/content/Capta/Ratings/satisfaction-3.png +0 -0
- package/content/Capta/Ratings/satisfaction-4.png +0 -0
- package/content/Capta/Ratings/scale.png +0 -0
- package/content/LogosClientes/A&A-SF.png +0 -0
- package/content/LogosClientes/ASS-SF.png +0 -0
- package/content/LogosClientes/Arias.png +0 -0
- package/content/LogosClientes/Arqui y Conc.png +0 -0
- package/content/LogosClientes/Arqui&Conc.png +0 -0
- package/content/LogosClientes/GTC-SF.png +0 -0
- package/content/LogosClientes/GTC.png +0 -0
- package/content/LogosClientes/LVP-SF.png +0 -0
- package/content/LogosClientes/LVP2.png +0 -0
- package/content/LogosClientes/LogoAC.png +0 -0
- package/content/LogosClientes/LogoLVP.png +0 -0
- package/content/LogosClientes/LogoMelendez.png +0 -0
- package/content/LogosClientes/LogoOspinas.png +0 -0
- package/content/LogosClientes/LogoServimercadeo.png +0 -0
- package/content/LogosClientes/LogoSinco.png +0 -0
- package/content/LogosClientes/Melendez-SF.png +0 -0
- package/content/LogosClientes/Melendez.png +0 -0
- package/content/LogosClientes/Ospina-SF.png +0 -0
- package/content/LogosClientes/Ospinas.png +0 -0
- package/content/LogosClientes/Prodesa-SF.png +0 -0
- package/content/LogosClientes/Prodesa.png +0 -0
- package/content/LogosClientes/SINCO-SF.png +0 -0
- package/content/LogosClientes/SM-SF.png +0 -0
- package/content/LogosClientes/Servi.png +0 -0
- package/content/LogosClientes/Sinco.png +0 -0
- package/cypress/@Types.ts +8 -0
- package/cypress/e2e/Lib.cy.ts +95 -0
- package/cypress/e2e/Standalone.cy.ts +94 -0
- package/cypress/e2e/Widget.cy.ts +95 -0
- package/cypress/fixtures/Capta.png +0 -0
- package/cypress/fixtures/example.json +5 -0
- package/cypress/fixtures/example.txt +1 -0
- package/cypress/support/commands.ts +88 -0
- package/cypress/support/e2e.ts +20 -0
- package/cypress/temp.tsconfig.json +7 -0
- package/cypress/utils/checkInvalidStep.ts +148 -0
- package/cypress/utils/checkValidStep.ts +359 -0
- package/cypress/utils/validateRequest.ts +83 -0
- package/cypress.config.ts +13 -0
- package/dist/cjs/@Types/@Types.js +2 -0
- package/dist/cjs/@Types/AYFFormStep.js +2 -0
- package/dist/cjs/@Types/Branding.js +2 -0
- package/dist/cjs/@Types/CBRFormStep.js +2 -0
- package/dist/cjs/@Types/Form.js +2 -0
- package/dist/cjs/@Types/FormStep.js +2 -0
- package/dist/cjs/@Types/GenericFormSteps.js +2 -0
- package/dist/cjs/@Types/MapperElement.js +2 -0
- package/dist/cjs/@Types/Organization.js +2 -0
- package/dist/cjs/@Types/index.js +17 -0
- package/dist/cjs/App/App.js +97 -0
- package/dist/cjs/App/AppFunctions.js +217 -0
- package/dist/cjs/App/AppHooks.js +191 -0
- package/dist/cjs/Contexts/CustomContext.js +8 -0
- package/dist/cjs/Contexts/FormContext.js +21 -0
- package/dist/cjs/Contexts/SectionContext.js +5 -0
- package/dist/cjs/Form/ConfirmationDialog/ConfirmationDialog.js +26 -0
- package/dist/cjs/Form/Form.js +185 -0
- package/dist/cjs/Form/FormFunctions.js +223 -0
- package/dist/cjs/Form/FormHooks.js +51 -0
- package/dist/cjs/Form/FormTypes/ColumnForm/ColumnForm.js +50 -0
- package/dist/cjs/Form/FormTypes/StepperForm/StepperForm.js +96 -0
- package/dist/cjs/Form/Section/MaterialSection/MaterialSection.js +34 -0
- package/dist/cjs/Form/Section/Section.js +23 -0
- package/dist/cjs/Form/Terms/Term/MaterialTerm/MaterialTerm.js +92 -0
- package/dist/cjs/Form/Terms/Term/Term.js +19 -0
- package/dist/cjs/Form/Terms/Terms.js +37 -0
- package/dist/cjs/FormSteps/@Construction/CBRElementStep/CBRElementStep.js +95 -0
- package/dist/cjs/FormSteps/@Construction/CBRIncidentsStep/CBRIncidentsStep.js +19 -0
- package/dist/cjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.js +49 -0
- package/dist/cjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.js +111 -0
- package/dist/cjs/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.js +128 -0
- package/dist/cjs/FormSteps/AYFStepMapper.js +111 -0
- package/dist/cjs/FormSteps/ApiSelectorStep/ApiSelectorStep.js +19 -0
- package/dist/cjs/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.js +135 -0
- package/dist/cjs/FormSteps/CBRStepMapper.js +131 -0
- package/dist/cjs/FormSteps/CheckBoxStep/CheckBoxStep.js +19 -0
- package/dist/cjs/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.js +63 -0
- package/dist/cjs/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.js +19 -0
- package/dist/cjs/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +89 -0
- package/dist/cjs/FormSteps/CollapsibleStep/CollapsibleStep.js +33 -0
- package/dist/cjs/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.js +97 -0
- package/dist/cjs/FormSteps/CustomStep.js +36 -0
- package/dist/cjs/FormSteps/DatePickerStep/DatePickerStep.js +19 -0
- package/dist/cjs/FormSteps/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.js +22 -0
- package/dist/cjs/FormSteps/EntityValueStep/EntityValuePickerStep.js +19 -0
- package/dist/cjs/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.js +122 -0
- package/dist/cjs/FormSteps/FileUploadStep/FileUploadStep.js +19 -0
- package/dist/cjs/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.js +85 -0
- package/dist/cjs/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.js +193 -0
- package/dist/cjs/FormSteps/MapperStep/MapperStep.js +19 -0
- package/dist/cjs/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.js +45 -0
- package/dist/cjs/FormSteps/MapperStep/MaterialMapperStep/Element/MapperElementComponent.js +68 -0
- package/dist/cjs/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.js +45 -0
- package/dist/cjs/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.js +163 -0
- package/dist/cjs/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.js +77 -0
- package/dist/cjs/FormSteps/RatingStep/RatingStep.js +19 -0
- package/dist/cjs/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.js +76 -0
- package/dist/cjs/FormSteps/SelectorStep/SelectorStep.js +19 -0
- package/dist/cjs/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.js +17 -0
- package/dist/cjs/FormSteps/SeparatorStep/SeparatorStep.js +19 -0
- package/dist/cjs/FormSteps/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.js +139 -0
- package/dist/cjs/FormSteps/SmartSelectStep/SmartSelectStep.js +19 -0
- package/dist/cjs/FormSteps/Step.js +114 -0
- package/dist/cjs/FormSteps/StepFunctions.js +257 -0
- package/dist/cjs/FormSteps/StepHooks.js +131 -0
- package/dist/cjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.js +142 -0
- package/dist/cjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.js +31 -0
- package/dist/cjs/FormSteps/TextAreaStep/TextAreaStep.js +23 -0
- package/dist/cjs/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.js +45 -0
- package/dist/cjs/FormSteps/TextInputStep/TextInputStep.js +19 -0
- package/dist/cjs/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.js +38 -0
- package/dist/cjs/FormSteps/TitleStep/TitleStep.js +19 -0
- package/dist/cjs/FormSteps/Utils/@StepFiller/StepFiller.js +41 -0
- package/dist/cjs/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.js +25 -0
- package/dist/cjs/Icons/Construction/LeakIcon.js +8 -0
- package/dist/cjs/Icons/Construction/ProjectIcon.js +8 -0
- package/dist/cjs/Icons/Construction/PropertyIcon.js +8 -0
- package/dist/cjs/Icons/Construction/SpaceIcon.js +8 -0
- package/dist/cjs/Icons/DocumentIcon.js +8 -0
- package/dist/cjs/Icons/Entities/CheckListIcon.js +8 -0
- package/dist/cjs/Icons/Entities/GenericEntityIcon.js +8 -0
- package/dist/cjs/Icons/Entities/HandshakeIcon.js +8 -0
- package/dist/cjs/Icons/Entities/SupplierIcon.js +8 -0
- package/dist/cjs/Services/FileService.js +57 -0
- package/dist/cjs/Services/FormService.js +31 -0
- package/dist/cjs/Services/OrganizationService.js +31 -0
- package/dist/cjs/Shared/CustomBtn/CustomBtn.js +58 -0
- package/dist/cjs/Shared/InputIcon/InputIcon.js +88 -0
- package/dist/cjs/Shared/Loader/Loader.js +19 -0
- package/dist/cjs/Shared/Navbar/Navbar.js +11 -0
- package/dist/cjs/Shared/Navbar/Navbar.stories.js +19 -0
- package/dist/cjs/Shared/Rating/Rating.js +35 -0
- package/dist/cjs/Shared/Rating/Rating.stories.js +65 -0
- package/dist/cjs/Shared/Rating/Ratings/LikeRating.js +36 -0
- package/dist/cjs/Shared/Rating/Ratings/SatisfactionRating.js +54 -0
- package/dist/cjs/Shared/Rating/Ratings/ScaleRating.js +53 -0
- package/dist/cjs/Shared/RoundedButton/RoundedButton.js +35 -0
- package/dist/cjs/Shared/RoundedButton/RoundedButton.stories.js +42 -0
- package/dist/cjs/Shared/RoundedCheckBox/RoundedCheckBox.js +73 -0
- package/dist/cjs/Shared/RoundedCheckBox/RoundedCheckBox.stories.js +56 -0
- package/dist/cjs/Shared/RoundedDatePicker/RoundedDatePicker.js +337 -0
- package/dist/cjs/Shared/RoundedDatePicker/RoundedDatePicker.stories.js +153 -0
- package/dist/cjs/Shared/RoundedSelect/RoundedSelect.js +207 -0
- package/dist/cjs/Shared/RoundedSelect/RoundedSelect.stories.js +86 -0
- package/dist/cjs/Shared/RoundedSmartSelect/RoundedSmartSelect.js +245 -0
- package/dist/cjs/Shared/RoundedSmartSelect/RoundedSmartSelect.stories.js +198 -0
- package/dist/cjs/Shared/RoundedTextField/RoundedTextField.js +147 -0
- package/dist/cjs/Shared/RoundedTextField/RoundedTextField.stories.js +154 -0
- package/dist/cjs/States/GlobalSlice.js +29 -0
- package/dist/cjs/States/SiteSlice.js +112 -0
- package/dist/cjs/States/WidthStatsSlice.js +25 -0
- package/dist/cjs/Utils/AxiosAPI.js +13 -0
- package/dist/cjs/Utils/AxiosWidget.js +13 -0
- package/dist/cjs/Utils/CBRFunctions.js +47 -0
- package/dist/cjs/Utils/DraftFunctions.js +48 -0
- package/dist/cjs/Utils/MaterialProviders.js +24 -0
- package/dist/cjs/Utils/TestUtils.js +56 -0
- package/dist/cjs/Utils/store.js +46 -0
- package/dist/cjs/Widget.js +57 -0
- package/dist/cjs/__mocks__/axios.js +7 -0
- package/dist/cjs/constants/AYFFormStepTypes.js +13 -0
- package/dist/cjs/constants/CBRFormStepTypes.js +24 -0
- package/dist/cjs/constants/Files/FileExtensions.js +72 -0
- package/dist/cjs/constants/Files/FileMaxSize.js +4 -0
- package/dist/cjs/constants/FormStepTypes.js +73 -0
- package/dist/cjs/constants/IconTypes.js +16 -0
- package/dist/cjs/constants/InternalFormStyle.js +18 -0
- package/dist/cjs/constants/MaterialClassNameSeed.js +4 -0
- package/dist/cjs/hooks.js +32 -0
- package/dist/cjs/index.js +48 -0
- package/dist/cjs/index.lib.js +36 -0
- package/dist/cjs/package.json +3 -0
- package/dist/cjs/setupTests.js +7 -0
- package/dist/mjs/@Types/@Types.d.ts +2 -0
- package/dist/mjs/@Types/AYFFormStep.d.ts +19 -0
- package/dist/mjs/@Types/Branding.d.ts +13 -0
- package/dist/mjs/@Types/CBRFormStep.d.ts +74 -0
- package/dist/mjs/@Types/Form.d.ts +68 -0
- package/dist/mjs/@Types/FormStep.d.ts +195 -0
- package/dist/mjs/@Types/GenericFormSteps.d.ts +61 -0
- package/dist/mjs/@Types/MapperElement.d.ts +8 -0
- package/dist/mjs/@Types/Organization.d.ts +9 -0
- package/dist/mjs/@Types/index.js +1 -0
- package/dist/mjs/App/App.css +6 -0
- package/dist/mjs/App/App.d.ts +47 -0
- package/dist/mjs/App/App.js +54 -0
- package/dist/mjs/App/App.module.css +34 -0
- package/dist/mjs/App/AppFunctions.d.ts +16 -0
- package/dist/mjs/App/AppFunctions.js +188 -0
- package/dist/mjs/App/AppHooks.d.ts +10 -0
- package/dist/mjs/App/AppHooks.js +152 -0
- package/dist/mjs/Contexts/CustomContext.d.ts +11 -0
- package/dist/mjs/Contexts/CustomContext.js +6 -0
- package/dist/mjs/Contexts/FormContext.d.ts +4 -0
- package/dist/mjs/Contexts/FormContext.js +19 -0
- package/dist/mjs/Contexts/SectionContext.d.ts +3 -0
- package/dist/mjs/Contexts/SectionContext.js +3 -0
- package/dist/mjs/Form/ConfirmationDialog/ConfirmationDialog.d.ts +10 -0
- package/dist/mjs/Form/ConfirmationDialog/ConfirmationDialog.js +21 -0
- package/dist/mjs/Form/ConfirmationDialog/ConfirmationDialog.module.css +64 -0
- package/dist/mjs/Form/Form.d.ts +40 -0
- package/dist/mjs/Form/Form.js +149 -0
- package/dist/mjs/Form/Form.module.css +39 -0
- package/dist/mjs/Form/FormFunctions.d.ts +12 -0
- package/dist/mjs/Form/FormFunctions.js +189 -0
- package/dist/mjs/Form/FormHooks.d.ts +9 -0
- package/dist/mjs/Form/FormHooks.js +46 -0
- package/dist/mjs/Form/FormTypes/ColumnForm/ColumnForm.d.ts +4 -0
- package/dist/mjs/Form/FormTypes/ColumnForm/ColumnForm.js +36 -0
- package/dist/mjs/Form/FormTypes/ColumnForm/ColumnForm.module.css +19 -0
- package/dist/mjs/Form/FormTypes/StepperForm/StepperForm.d.ts +4 -0
- package/dist/mjs/Form/FormTypes/StepperForm/StepperForm.js +62 -0
- package/dist/mjs/Form/FormTypes/StepperForm/StepperForm.module.css +26 -0
- package/dist/mjs/Form/Section/MaterialSection/MaterialSection.d.ts +4 -0
- package/dist/mjs/Form/Section/MaterialSection/MaterialSection.js +28 -0
- package/dist/mjs/Form/Section/MaterialSection/MaterialSection.module.css +8 -0
- package/dist/mjs/Form/Section/Section.d.ts +6 -0
- package/dist/mjs/Form/Section/Section.js +18 -0
- package/dist/mjs/Form/Terms/Term/MaterialTerm/MaterialTerm.d.ts +4 -0
- package/dist/mjs/Form/Terms/Term/MaterialTerm/MaterialTerm.js +75 -0
- package/dist/mjs/Form/Terms/Term/MaterialTerm/MaterialTerm.module.css +83 -0
- package/dist/mjs/Form/Terms/Term/Term.d.ts +8 -0
- package/dist/mjs/Form/Terms/Term/Term.js +14 -0
- package/dist/mjs/Form/Terms/Terms.d.ts +3 -0
- package/dist/mjs/Form/Terms/Terms.js +32 -0
- package/dist/mjs/Form/Terms/Terms.module.css +3 -0
- package/dist/mjs/FormSteps/@Construction/CBRElementStep/CBRElementStep.d.ts +8 -0
- package/dist/mjs/FormSteps/@Construction/CBRElementStep/CBRElementStep.js +67 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/CBRIncidentsStep.d.ts +9 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/CBRIncidentsStep.js +14 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.d.ts +8 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.js +32 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.module.css +60 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.d.ts +11 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.js +113 -0
- package/dist/mjs/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.module.css +34 -0
- package/dist/mjs/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.d.ts +8 -0
- package/dist/mjs/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.js +90 -0
- package/dist/mjs/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.module.css +54 -0
- package/dist/mjs/FormSteps/AYFStepMapper.d.ts +12 -0
- package/dist/mjs/FormSteps/AYFStepMapper.js +96 -0
- package/dist/mjs/FormSteps/ApiSelectorStep/ApiSelectorStep.d.ts +15 -0
- package/dist/mjs/FormSteps/ApiSelectorStep/ApiSelectorStep.js +14 -0
- package/dist/mjs/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.d.ts +4 -0
- package/dist/mjs/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.js +79 -0
- package/dist/mjs/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.module.css +0 -0
- package/dist/mjs/FormSteps/CBRStepMapper.d.ts +13 -0
- package/dist/mjs/FormSteps/CBRStepMapper.js +115 -0
- package/dist/mjs/FormSteps/CheckBoxStep/CheckBoxStep.d.ts +9 -0
- package/dist/mjs/FormSteps/CheckBoxStep/CheckBoxStep.js +14 -0
- package/dist/mjs/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.d.ts +4 -0
- package/dist/mjs/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.js +34 -0
- package/dist/mjs/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.module.css +26 -0
- package/dist/mjs/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.d.ts +9 -0
- package/dist/mjs/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.js +14 -0
- package/dist/mjs/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.d.ts +4 -0
- package/dist/mjs/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +57 -0
- package/dist/mjs/FormSteps/CollapsibleStep/CollapsibleStep.d.ts +9 -0
- package/dist/mjs/FormSteps/CollapsibleStep/CollapsibleStep.js +16 -0
- package/dist/mjs/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.d.ts +4 -0
- package/dist/mjs/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.js +53 -0
- package/dist/mjs/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.module.css +62 -0
- package/dist/mjs/FormSteps/CustomStep.d.ts +26 -0
- package/dist/mjs/FormSteps/CustomStep.js +24 -0
- package/dist/mjs/FormSteps/DatePickerStep/DatePickerStep.d.ts +11 -0
- package/dist/mjs/FormSteps/DatePickerStep/DatePickerStep.js +14 -0
- package/dist/mjs/FormSteps/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.d.ts +4 -0
- package/dist/mjs/FormSteps/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.js +16 -0
- package/dist/mjs/FormSteps/EntityValueStep/EntityValuePickerStep.d.ts +15 -0
- package/dist/mjs/FormSteps/EntityValueStep/EntityValuePickerStep.js +14 -0
- package/dist/mjs/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.d.ts +4 -0
- package/dist/mjs/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.js +84 -0
- package/dist/mjs/FormSteps/FileUploadStep/FileUploadStep.d.ts +9 -0
- package/dist/mjs/FormSteps/FileUploadStep/FileUploadStep.js +14 -0
- package/dist/mjs/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.d.ts +13 -0
- package/dist/mjs/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.js +70 -0
- package/dist/mjs/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.module.css +53 -0
- package/dist/mjs/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.d.ts +18 -0
- package/dist/mjs/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.js +179 -0
- package/dist/mjs/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.module.css +52 -0
- package/dist/mjs/FormSteps/MapperStep/MapperStep.d.ts +17 -0
- package/dist/mjs/FormSteps/MapperStep/MapperStep.js +14 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.d.ts +5 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.js +39 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.module.css +72 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/MapperElementComponent.d.ts +12 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/MapperElementComponent.js +41 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.d.ts +5 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.js +38 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.module.css +71 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.d.ts +17 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.js +123 -0
- package/dist/mjs/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.module.css +41 -0
- package/dist/mjs/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.d.ts +4 -0
- package/dist/mjs/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.js +49 -0
- package/dist/mjs/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.module.css +30 -0
- package/dist/mjs/FormSteps/RatingStep/RatingStep.d.ts +9 -0
- package/dist/mjs/FormSteps/RatingStep/RatingStep.js +14 -0
- package/dist/mjs/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.d.ts +4 -0
- package/dist/mjs/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.js +47 -0
- package/dist/mjs/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.module.css +9 -0
- package/dist/mjs/FormSteps/SelectorStep/SelectorStep.d.ts +9 -0
- package/dist/mjs/FormSteps/SelectorStep/SelectorStep.js +14 -0
- package/dist/mjs/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.d.ts +4 -0
- package/dist/mjs/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.js +12 -0
- package/dist/mjs/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.module.css +7 -0
- package/dist/mjs/FormSteps/SeparatorStep/SeparatorStep.d.ts +9 -0
- package/dist/mjs/FormSteps/SeparatorStep/SeparatorStep.js +14 -0
- package/dist/mjs/FormSteps/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.d.ts +5 -0
- package/dist/mjs/FormSteps/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.js +128 -0
- package/dist/mjs/FormSteps/SmartSelectStep/SmartSelectStep.d.ts +31 -0
- package/dist/mjs/FormSteps/SmartSelectStep/SmartSelectStep.js +14 -0
- package/dist/mjs/FormSteps/Step.d.ts +8 -0
- package/dist/mjs/FormSteps/Step.js +96 -0
- package/dist/mjs/FormSteps/StepFunctions.d.ts +16 -0
- package/dist/mjs/FormSteps/StepFunctions.js +243 -0
- package/dist/mjs/FormSteps/StepHooks.d.ts +43 -0
- package/dist/mjs/FormSteps/StepHooks.js +114 -0
- package/dist/mjs/FormSteps/TextAreaStep/MaterialTextAreaStep/DraftEditor.css +96 -0
- package/dist/mjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.d.ts +10 -0
- package/dist/mjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.js +125 -0
- package/dist/mjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.d.ts +8 -0
- package/dist/mjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.js +27 -0
- package/dist/mjs/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.module.css +84 -0
- package/dist/mjs/FormSteps/TextAreaStep/TextAreaStep.d.ts +10 -0
- package/dist/mjs/FormSteps/TextAreaStep/TextAreaStep.js +18 -0
- package/dist/mjs/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.d.ts +4 -0
- package/dist/mjs/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.js +39 -0
- package/dist/mjs/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.module.css +9 -0
- package/dist/mjs/FormSteps/TextInputStep/TextInputStep.d.ts +17 -0
- package/dist/mjs/FormSteps/TextInputStep/TextInputStep.js +14 -0
- package/dist/mjs/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.d.ts +4 -0
- package/dist/mjs/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.js +32 -0
- package/dist/mjs/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.module.css +18 -0
- package/dist/mjs/FormSteps/TitleStep/TitleStep.d.ts +9 -0
- package/dist/mjs/FormSteps/TitleStep/TitleStep.js +14 -0
- package/dist/mjs/FormSteps/Utils/@StepFiller/StepFiller.d.ts +9 -0
- package/dist/mjs/FormSteps/Utils/@StepFiller/StepFiller.js +35 -0
- package/dist/mjs/FormSteps/Utils/@StepFiller/StepFiller.module.css +16 -0
- package/dist/mjs/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.d.ts +11 -0
- package/dist/mjs/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.js +20 -0
- package/dist/mjs/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.module.css +9 -0
- package/dist/mjs/Icons/Construction/LeakIcon.d.ts +3 -0
- package/dist/mjs/Icons/Construction/LeakIcon.js +5 -0
- package/dist/mjs/Icons/Construction/ProjectIcon.d.ts +3 -0
- package/dist/mjs/Icons/Construction/ProjectIcon.js +5 -0
- package/dist/mjs/Icons/Construction/PropertyIcon.d.ts +3 -0
- package/dist/mjs/Icons/Construction/PropertyIcon.js +5 -0
- package/dist/mjs/Icons/Construction/SpaceIcon.d.ts +3 -0
- package/dist/mjs/Icons/Construction/SpaceIcon.js +5 -0
- package/dist/mjs/Icons/DocumentIcon.d.ts +3 -0
- package/dist/mjs/Icons/DocumentIcon.js +5 -0
- package/dist/mjs/Icons/Entities/CheckListIcon.d.ts +3 -0
- package/dist/mjs/Icons/Entities/CheckListIcon.js +5 -0
- package/dist/mjs/Icons/Entities/GenericEntityIcon.d.ts +3 -0
- package/dist/mjs/Icons/Entities/GenericEntityIcon.js +3 -0
- package/dist/mjs/Icons/Entities/HandshakeIcon.d.ts +3 -0
- package/dist/mjs/Icons/Entities/HandshakeIcon.js +3 -0
- package/dist/mjs/Icons/Entities/SupplierIcon.d.ts +3 -0
- package/dist/mjs/Icons/Entities/SupplierIcon.js +3 -0
- package/dist/mjs/Services/FileService.d.ts +5 -0
- package/dist/mjs/Services/FileService.js +35 -0
- package/dist/mjs/Services/FormService.d.ts +5 -0
- package/dist/mjs/Services/FormService.js +13 -0
- package/dist/mjs/Services/OrganizationService.d.ts +2 -0
- package/dist/mjs/Services/OrganizationService.js +13 -0
- package/dist/mjs/Shared/CustomBtn/CustomBtn.d.ts +13 -0
- package/dist/mjs/Shared/CustomBtn/CustomBtn.js +32 -0
- package/dist/mjs/Shared/CustomBtn/CustomBtn.module.css +61 -0
- package/dist/mjs/Shared/InputIcon/InputIcon.d.ts +7 -0
- package/dist/mjs/Shared/InputIcon/InputIcon.js +71 -0
- package/dist/mjs/Shared/Loader/Loader.d.ts +18 -0
- package/dist/mjs/Shared/Loader/Loader.js +14 -0
- package/dist/mjs/Shared/Loader/Loader.module.css +12 -0
- package/dist/mjs/Shared/Navbar/Navbar.d.ts +9 -0
- package/dist/mjs/Shared/Navbar/Navbar.js +6 -0
- package/dist/mjs/Shared/Navbar/Navbar.module.css +8 -0
- package/dist/mjs/Shared/Navbar/Navbar.stories.d.ts +13 -0
- package/dist/mjs/Shared/Navbar/Navbar.stories.js +13 -0
- package/dist/mjs/Shared/Rating/Rating.d.ts +16 -0
- package/dist/mjs/Shared/Rating/Rating.js +18 -0
- package/dist/mjs/Shared/Rating/Rating.module.css +18 -0
- package/dist/mjs/Shared/Rating/Rating.stories.d.ts +15 -0
- package/dist/mjs/Shared/Rating/Rating.stories.js +59 -0
- package/dist/mjs/Shared/Rating/Ratings/LikeRating.d.ts +4 -0
- package/dist/mjs/Shared/Rating/Ratings/LikeRating.js +31 -0
- package/dist/mjs/Shared/Rating/Ratings/SatisfactionRating.d.ts +4 -0
- package/dist/mjs/Shared/Rating/Ratings/SatisfactionRating.js +49 -0
- package/dist/mjs/Shared/Rating/Ratings/ScaleRating.d.ts +4 -0
- package/dist/mjs/Shared/Rating/Ratings/ScaleRating.js +35 -0
- package/dist/mjs/Shared/RoundedButton/RoundedButton.d.ts +30 -0
- package/dist/mjs/Shared/RoundedButton/RoundedButton.js +33 -0
- package/dist/mjs/Shared/RoundedButton/RoundedButton.stories.d.ts +23 -0
- package/dist/mjs/Shared/RoundedButton/RoundedButton.stories.js +36 -0
- package/dist/mjs/Shared/RoundedCheckBox/RoundedCheckBox.d.ts +24 -0
- package/dist/mjs/Shared/RoundedCheckBox/RoundedCheckBox.js +56 -0
- package/dist/mjs/Shared/RoundedCheckBox/RoundedCheckBox.stories.d.ts +21 -0
- package/dist/mjs/Shared/RoundedCheckBox/RoundedCheckBox.stories.js +50 -0
- package/dist/mjs/Shared/RoundedDatePicker/RoundedDatePicker.d.ts +49 -0
- package/dist/mjs/Shared/RoundedDatePicker/RoundedDatePicker.js +297 -0
- package/dist/mjs/Shared/RoundedDatePicker/RoundedDatePicker.stories.d.ts +36 -0
- package/dist/mjs/Shared/RoundedDatePicker/RoundedDatePicker.stories.js +137 -0
- package/dist/mjs/Shared/RoundedSelect/RoundedSelect.d.ts +68 -0
- package/dist/mjs/Shared/RoundedSelect/RoundedSelect.js +160 -0
- package/dist/mjs/Shared/RoundedSelect/RoundedSelect.stories.d.ts +28 -0
- package/dist/mjs/Shared/RoundedSelect/RoundedSelect.stories.js +79 -0
- package/dist/mjs/Shared/RoundedSmartSelect/RoundedSmartSelect.d.ts +63 -0
- package/dist/mjs/Shared/RoundedSmartSelect/RoundedSmartSelect.js +197 -0
- package/dist/mjs/Shared/RoundedSmartSelect/RoundedSmartSelect.stories.d.ts +36 -0
- package/dist/mjs/Shared/RoundedSmartSelect/RoundedSmartSelect.stories.js +182 -0
- package/dist/mjs/Shared/RoundedTextField/RoundedTextField.d.ts +45 -0
- package/dist/mjs/Shared/RoundedTextField/RoundedTextField.js +129 -0
- package/dist/mjs/Shared/RoundedTextField/RoundedTextField.stories.d.ts +37 -0
- package/dist/mjs/Shared/RoundedTextField/RoundedTextField.stories.js +138 -0
- package/dist/mjs/States/GlobalSlice.d.ts +34 -0
- package/dist/mjs/States/GlobalSlice.js +23 -0
- package/dist/mjs/States/SiteSlice.d.ts +65 -0
- package/dist/mjs/States/SiteSlice.js +116 -0
- package/dist/mjs/States/WidthStatsSlice.d.ts +7 -0
- package/dist/mjs/States/WidthStatsSlice.js +22 -0
- package/dist/mjs/Utils/AxiosAPI.d.ts +2 -0
- package/dist/mjs/Utils/AxiosAPI.js +8 -0
- package/dist/mjs/Utils/AxiosWidget.d.ts +2 -0
- package/dist/mjs/Utils/AxiosWidget.js +8 -0
- package/dist/mjs/Utils/CBRFunctions.d.ts +8 -0
- package/dist/mjs/Utils/CBRFunctions.js +52 -0
- package/dist/mjs/Utils/DraftFunctions.d.ts +3 -0
- package/dist/mjs/Utils/DraftFunctions.js +43 -0
- package/dist/mjs/Utils/MaterialProviders.d.ts +6 -0
- package/dist/mjs/Utils/MaterialProviders.js +19 -0
- package/dist/mjs/Utils/TestUtils.d.ts +77 -0
- package/dist/mjs/Utils/TestUtils.js +41 -0
- package/dist/mjs/Utils/store.d.ts +27 -0
- package/dist/mjs/Utils/store.js +29 -0
- package/dist/mjs/Widget.d.ts +1 -0
- package/dist/mjs/Widget.js +51 -0
- package/dist/mjs/__mocks__/axios.js +2 -0
- package/dist/mjs/constants/AYFFormStepTypes.d.ts +9 -0
- package/dist/mjs/constants/CBRFormStepTypes.d.ts +21 -0
- package/dist/mjs/constants/Files/FileExtensions.d.ts +3 -0
- package/dist/mjs/constants/Files/FileExtensions.js +68 -0
- package/dist/mjs/constants/Files/FileMaxSize.d.ts +2 -0
- package/dist/mjs/constants/Files/FileMaxSize.js +2 -0
- package/dist/mjs/constants/FormStepTypes.d.ts +59 -0
- package/dist/mjs/constants/IconTypes.d.ts +12 -0
- package/dist/mjs/constants/InternalFormStyle.d.ts +3 -0
- package/dist/mjs/constants/InternalFormStyle.js +16 -0
- package/dist/mjs/constants/MaterialClassNameSeed.d.ts +1 -0
- package/dist/mjs/constants/MaterialClassNameSeed.js +1 -0
- package/dist/mjs/hooks.d.ts +7 -0
- package/dist/mjs/hooks.js +23 -0
- package/dist/mjs/index.d.ts +1 -0
- package/dist/mjs/index.js +20 -0
- package/dist/mjs/index.lib.d.ts +7 -0
- package/dist/mjs/index.module.css +14 -0
- package/dist/mjs/setupTests.d.ts +1 -0
- package/fixup.sh +5 -0
- package/jest.config.js +5 -0
- package/package.json +10 -6
- package/public/favicon.ico +0 -0
- package/public/index.html +22 -0
- package/src/@Types/@Types.ts +2 -0
- package/src/@Types/AYFFormStep.ts +29 -0
- package/src/@Types/Branding.ts +13 -0
- package/src/@Types/CBRFormStep.ts +110 -0
- package/src/@Types/Form.ts +73 -0
- package/src/@Types/FormStep.ts +257 -0
- package/src/@Types/GenericFormSteps.ts +66 -0
- package/src/@Types/MapperElement.ts +8 -0
- package/src/@Types/Organization.ts +10 -0
- package/src/@Types/index.ts +1 -0
- package/src/App/App.css +6 -0
- package/src/App/App.module.css +34 -0
- package/src/App/App.tsx +160 -0
- package/src/App/AppFunctions.test.ts +747 -0
- package/src/App/AppFunctions.ts +240 -0
- package/src/App/AppHooks.test.ts +139 -0
- package/src/App/AppHooks.ts +217 -0
- package/src/Contexts/CustomContext.ts +16 -0
- package/src/Contexts/FormContext.ts +22 -0
- package/src/Contexts/SectionContext.ts +5 -0
- package/src/Form/ConfirmationDialog/ConfirmationDialog.module.css +64 -0
- package/src/Form/ConfirmationDialog/ConfirmationDialog.tsx +79 -0
- package/src/Form/Form.module.css +39 -0
- package/src/Form/Form.tsx +295 -0
- package/src/Form/FormFunctions.test.ts +583 -0
- package/src/Form/FormFunctions.ts +263 -0
- package/src/Form/FormHooks.ts +68 -0
- package/src/Form/FormTypes/ColumnForm/ColumnForm.module.css +19 -0
- package/src/Form/FormTypes/ColumnForm/ColumnForm.tsx +85 -0
- package/src/Form/FormTypes/StepperForm/StepperForm.module.css +26 -0
- package/src/Form/FormTypes/StepperForm/StepperForm.tsx +120 -0
- package/src/Form/Section/MaterialSection/MaterialSection.module.css +8 -0
- package/src/Form/Section/MaterialSection/MaterialSection.tsx +44 -0
- package/src/Form/Section/Section.tsx +25 -0
- package/src/Form/Terms/Term/MaterialTerm/MaterialTerm.module.css +83 -0
- package/src/Form/Terms/Term/MaterialTerm/MaterialTerm.tsx +160 -0
- package/src/Form/Terms/Term/Term.tsx +20 -0
- package/src/Form/Terms/Terms.module.css +3 -0
- package/src/Form/Terms/Terms.tsx +54 -0
- package/src/FormSteps/@Construction/CBRElementStep/CBRElementStep.tsx +129 -0
- package/src/FormSteps/@Construction/CBRIncidentsStep/CBRIncidentsStep.tsx +20 -0
- package/src/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.module.css +60 -0
- package/src/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.tsx +81 -0
- package/src/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.module.css +34 -0
- package/src/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.tsx +210 -0
- package/src/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.module.css +54 -0
- package/src/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.tsx +183 -0
- package/src/FormSteps/AYFStepMapper.tsx +177 -0
- package/src/FormSteps/ApiSelectorStep/ApiSelectorStep.tsx +28 -0
- package/src/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.module.css +0 -0
- package/src/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.tsx +126 -0
- package/src/FormSteps/CBRStepMapper.tsx +256 -0
- package/src/FormSteps/CheckBoxStep/CheckBoxStep.tsx +20 -0
- package/src/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.module.css +26 -0
- package/src/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.tsx +83 -0
- package/src/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.tsx +22 -0
- package/src/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.tsx +120 -0
- package/src/FormSteps/CollapsibleStep/CollapsibleStep.tsx +24 -0
- package/src/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.module.css +62 -0
- package/src/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.tsx +129 -0
- package/src/FormSteps/CustomStep.tsx +57 -0
- package/src/FormSteps/DatePickerStep/DatePickerStep.tsx +22 -0
- package/src/FormSteps/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.tsx +51 -0
- package/src/FormSteps/EntityValueStep/EntityValuePickerStep.tsx +28 -0
- package/src/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.tsx +132 -0
- package/src/FormSteps/FileUploadStep/FileUploadStep.tsx +20 -0
- package/src/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.module.css +53 -0
- package/src/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.tsx +142 -0
- package/src/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.module.css +52 -0
- package/src/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.tsx +294 -0
- package/src/FormSteps/MapperStep/MapperStep.tsx +40 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.module.css +72 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.tsx +108 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/Element/MapperElementComponent.tsx +76 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.module.css +71 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.tsx +95 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.module.css +41 -0
- package/src/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.tsx +296 -0
- package/src/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.module.css +30 -0
- package/src/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.tsx +98 -0
- package/src/FormSteps/RatingStep/RatingStep.tsx +20 -0
- package/src/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.module.css +9 -0
- package/src/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.tsx +105 -0
- package/src/FormSteps/SelectorStep/SelectorStep.tsx +20 -0
- package/src/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.module.css +7 -0
- package/src/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.tsx +20 -0
- package/src/FormSteps/SeparatorStep/SeparatorStep.tsx +21 -0
- package/src/FormSteps/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.tsx +216 -0
- package/src/FormSteps/SmartSelectStep/SmartSelectStep.tsx +48 -0
- package/src/FormSteps/Step.tsx +228 -0
- package/src/FormSteps/StepFunctions.test.ts +882 -0
- package/src/FormSteps/StepFunctions.ts +315 -0
- package/src/FormSteps/StepHooks.ts +204 -0
- package/src/FormSteps/TextAreaStep/MaterialTextAreaStep/DraftEditor.css +96 -0
- package/src/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.tsx +209 -0
- package/src/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.module.css +84 -0
- package/src/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.tsx +89 -0
- package/src/FormSteps/TextAreaStep/TextAreaStep.tsx +23 -0
- package/src/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.module.css +9 -0
- package/src/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.tsx +80 -0
- package/src/FormSteps/TextInputStep/TextInputStep.tsx +28 -0
- package/src/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.module.css +18 -0
- package/src/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.tsx +64 -0
- package/src/FormSteps/TitleStep/TitleStep.tsx +21 -0
- package/src/FormSteps/Utils/@StepFiller/StepFiller.module.css +16 -0
- package/src/FormSteps/Utils/@StepFiller/StepFiller.tsx +69 -0
- package/src/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.module.css +9 -0
- package/src/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.tsx +55 -0
- package/src/Icons/Construction/LeakIcon.tsx +21 -0
- package/src/Icons/Construction/ProjectIcon.tsx +17 -0
- package/src/Icons/Construction/PropertyIcon.tsx +22 -0
- package/src/Icons/Construction/SpaceIcon.tsx +25 -0
- package/src/Icons/DocumentIcon.tsx +19 -0
- package/src/Icons/Entities/CheckListIcon.tsx +30 -0
- package/src/Icons/Entities/GenericEntityIcon.tsx +19 -0
- package/src/Icons/Entities/HandshakeIcon.tsx +20 -0
- package/src/Icons/Entities/SupplierIcon.tsx +21 -0
- package/src/Services/FileService.ts +50 -0
- package/src/Services/FormService.ts +20 -0
- package/src/Services/OrganizationService.ts +19 -0
- package/src/Shared/CustomBtn/CustomBtn.module.css +61 -0
- package/src/Shared/CustomBtn/CustomBtn.tsx +83 -0
- package/src/Shared/InputIcon/InputIcon.tsx +134 -0
- package/src/Shared/Loader/Loader.module.css +12 -0
- package/src/Shared/Loader/Loader.tsx +40 -0
- package/src/Shared/Navbar/Navbar.module.css +8 -0
- package/src/Shared/Navbar/Navbar.stories.tsx +20 -0
- package/src/Shared/Navbar/Navbar.tsx +21 -0
- package/src/Shared/Rating/Rating.module.css +18 -0
- package/src/Shared/Rating/Rating.stories.tsx +70 -0
- package/src/Shared/Rating/Rating.tsx +33 -0
- package/src/Shared/Rating/Ratings/LikeRating.tsx +75 -0
- package/src/Shared/Rating/Ratings/SatisfactionRating.tsx +115 -0
- package/src/Shared/Rating/Ratings/ScaleRating.tsx +85 -0
- package/src/Shared/RoundedButton/RoundedButton.stories.tsx +45 -0
- package/src/Shared/RoundedButton/RoundedButton.tsx +80 -0
- package/src/Shared/RoundedCheckBox/RoundedCheckBox.stories.tsx +61 -0
- package/src/Shared/RoundedCheckBox/RoundedCheckBox.tsx +102 -0
- package/src/Shared/RoundedDatePicker/RoundedDatePicker.stories.tsx +156 -0
- package/src/Shared/RoundedDatePicker/RoundedDatePicker.tsx +453 -0
- package/src/Shared/RoundedSelect/RoundedSelect.stories.tsx +102 -0
- package/src/Shared/RoundedSelect/RoundedSelect.tsx +297 -0
- package/src/Shared/RoundedSmartSelect/RoundedSmartSelect.stories.tsx +206 -0
- package/src/Shared/RoundedSmartSelect/RoundedSmartSelect.tsx +420 -0
- package/src/Shared/RoundedTextField/RoundedTextField.stories.tsx +165 -0
- package/src/Shared/RoundedTextField/RoundedTextField.tsx +226 -0
- package/src/States/GlobalSlice.ts +45 -0
- package/src/States/SiteSlice.ts +205 -0
- package/src/States/WidthStatsSlice.ts +29 -0
- package/src/Utils/AxiosAPI.ts +11 -0
- package/src/Utils/AxiosWidget.ts +11 -0
- package/src/Utils/CBRFunctions.ts +105 -0
- package/src/Utils/DraftFunctions.ts +47 -0
- package/src/Utils/MaterialProviders.tsx +42 -0
- package/src/Utils/TestUtils.tsx +74 -0
- package/src/Utils/store.ts +56 -0
- package/src/Widget.tsx +58 -0
- package/src/__mocks__/axios.ts +2 -0
- package/src/constants/AYFFormStepTypes.ts +10 -0
- package/src/constants/CBRFormStepTypes.ts +21 -0
- package/src/constants/Files/FileExtensions.ts +70 -0
- package/src/constants/Files/FileMaxSize.ts +2 -0
- package/src/constants/FormStepTypes.ts +70 -0
- package/src/constants/IconTypes.ts +12 -0
- package/src/constants/InternalFormStyle.ts +18 -0
- package/src/constants/MaterialClassNameSeed.ts +1 -0
- package/src/hooks.ts +47 -0
- package/src/index.lib.ts +7 -0
- package/src/index.module.css +14 -0
- package/src/index.tsx +28 -0
- package/src/setupTests.ts +5 -0
- package/src/types.d.ts +1 -0
- package/template.yaml +137 -0
- package/tsconfig.json +8 -0
- package/webpack.config.cjs +17 -0
- package/dist/App/App.js +0 -79
- package/dist/App/AppFunctions.js +0 -210
- package/dist/App/AppHooks.js +0 -242
- package/dist/Contexts/CustomContext.js +0 -6
- package/dist/Contexts/FormContext.js +0 -19
- package/dist/Contexts/SectionContext.js +0 -3
- package/dist/Form/ConfirmationDialog/ConfirmationDialog.js +0 -33
- package/dist/Form/Form.js +0 -216
- package/dist/Form/FormFunctions.js +0 -229
- package/dist/Form/FormHooks.js +0 -49
- package/dist/Form/FormTypes/ColumnForm/ColumnForm.js +0 -95
- package/dist/Form/FormTypes/StepperForm/StepperForm.js +0 -122
- package/dist/Form/Section/MaterialSection/MaterialSection.js +0 -41
- package/dist/Form/Section/Section.js +0 -29
- package/dist/Form/Terms/Term/MaterialTerm/MaterialTerm.js +0 -101
- package/dist/Form/Terms/Term/Term.js +0 -25
- package/dist/Form/Terms/Terms.js +0 -45
- package/dist/FormSteps/@Construction/CBRElementStep/CBRElementStep.js +0 -137
- package/dist/FormSteps/@Construction/CBRIncidentsStep/CBRIncidentsStep.js +0 -25
- package/dist/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.js +0 -55
- package/dist/FormSteps/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.js +0 -129
- package/dist/FormSteps/@Construction/CBRPropertyStep/CBRPropertyStep.js +0 -146
- package/dist/FormSteps/AYFStepMapper.js +0 -160
- package/dist/FormSteps/ApiSelectorStep/ApiSelectorStep.js +0 -25
- package/dist/FormSteps/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.js +0 -157
- package/dist/FormSteps/CBRStepMapper.js +0 -206
- package/dist/FormSteps/CheckBoxStep/CheckBoxStep.js +0 -25
- package/dist/FormSteps/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.js +0 -47
- package/dist/FormSteps/ClassifierSelectorStep/ClassifierSelectorStep.js +0 -25
- package/dist/FormSteps/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.js +0 -73
- package/dist/FormSteps/CollapsibleStep/CollapsibleStep.js +0 -39
- package/dist/FormSteps/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.js +0 -83
- package/dist/FormSteps/CustomStep.js +0 -39
- package/dist/FormSteps/DatePickerStep/DatePickerStep.js +0 -25
- package/dist/FormSteps/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.js +0 -29
- package/dist/FormSteps/EntityValueStep/EntityValuePickerStep.js +0 -25
- package/dist/FormSteps/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.js +0 -146
- package/dist/FormSteps/FileUploadStep/FileUploadStep.js +0 -25
- package/dist/FormSteps/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.js +0 -131
- package/dist/FormSteps/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.js +0 -266
- package/dist/FormSteps/MapperStep/MapperStep.js +0 -25
- package/dist/FormSteps/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.js +0 -52
- package/dist/FormSteps/MapperStep/MaterialMapperStep/Element/MapperElementComponent.js +0 -51
- package/dist/FormSteps/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.js +0 -50
- package/dist/FormSteps/MapperStep/MaterialMapperStep/MaterialMapperStep.js +0 -157
- package/dist/FormSteps/RatingStep/MaterialRatingStep/MaterialRatingStep.js +0 -61
- package/dist/FormSteps/RatingStep/RatingStep.js +0 -25
- package/dist/FormSteps/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.js +0 -60
- package/dist/FormSteps/SelectorStep/SelectorStep.js +0 -25
- package/dist/FormSteps/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.js +0 -13
- package/dist/FormSteps/SeparatorStep/SeparatorStep.js +0 -25
- package/dist/FormSteps/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.js +0 -195
- package/dist/FormSteps/SmartSelectStep/SmartSelectStep.js +0 -25
- package/dist/FormSteps/Step.js +0 -122
- package/dist/FormSteps/StepFunctions.js +0 -268
- package/dist/FormSteps/StepHooks.js +0 -143
- package/dist/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.js +0 -150
- package/dist/FormSteps/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.js +0 -38
- package/dist/FormSteps/TextAreaStep/TextAreaStep.js +0 -29
- package/dist/FormSteps/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.js +0 -52
- package/dist/FormSteps/TextInputStep/TextInputStep.js +0 -25
- package/dist/FormSteps/TitleStep/MaterialTitleStep/MaterialTitleStep.js +0 -45
- package/dist/FormSteps/TitleStep/TitleStep.js +0 -25
- package/dist/FormSteps/Utils/@StepFiller/StepFiller.js +0 -48
- package/dist/FormSteps/Utils/MaterialInputContainer/MaterialInputContainer.js +0 -32
- package/dist/Icons/Construction/LeakIcon.js +0 -17
- package/dist/Icons/Construction/ProjectIcon.js +0 -17
- package/dist/Icons/Construction/PropertyIcon.js +0 -17
- package/dist/Icons/Construction/SpaceIcon.js +0 -17
- package/dist/Icons/DocumentIcon.js +0 -17
- package/dist/Icons/Entities/CheckListIcon.js +0 -17
- package/dist/Icons/Entities/GenericEntityIcon.js +0 -17
- package/dist/Icons/Entities/HandshakeIcon.js +0 -17
- package/dist/Icons/Entities/SupplierIcon.js +0 -17
- package/dist/Services/FileService.js +0 -92
- package/dist/Services/FormService.js +0 -59
- package/dist/Services/OrganizationService.js +0 -65
- package/dist/Shared/CustomBtn/CustomBtn.js +0 -96
- package/dist/Shared/InputIcon/InputIcon.js +0 -94
- package/dist/Shared/Loader/Loader.js +0 -26
- package/dist/Shared/Navbar/Navbar.js +0 -18
- package/dist/Shared/Navbar/Navbar.stories.js +0 -13
- package/dist/Shared/Rating/Rating.js +0 -41
- package/dist/Shared/Rating/Rating.stories.js +0 -59
- package/dist/Shared/Rating/Ratings/LikeRating.js +0 -43
- package/dist/Shared/Rating/Ratings/SatisfactionRating.js +0 -61
- package/dist/Shared/Rating/Ratings/ScaleRating.js +0 -62
- package/dist/Shared/RoundedButton/RoundedButton.js +0 -45
- package/dist/Shared/RoundedButton/RoundedButton.stories.js +0 -36
- package/dist/Shared/RoundedCheckBox/RoundedCheckBox.js +0 -101
- package/dist/Shared/RoundedCheckBox/RoundedCheckBox.stories.js +0 -50
- package/dist/Shared/RoundedDatePicker/RoundedDatePicker.js +0 -348
- package/dist/Shared/RoundedDatePicker/RoundedDatePicker.stories.js +0 -223
- package/dist/Shared/RoundedSelect/RoundedSelect.js +0 -214
- package/dist/Shared/RoundedSelect/RoundedSelect.stories.js +0 -91
- package/dist/Shared/RoundedSmartSelect/RoundedSmartSelect.js +0 -236
- package/dist/Shared/RoundedSmartSelect/RoundedSmartSelect.stories.js +0 -318
- package/dist/Shared/RoundedTextField/RoundedTextField.js +0 -175
- package/dist/Shared/RoundedTextField/RoundedTextField.stories.js +0 -224
- package/dist/States/GlobalSlice.js +0 -34
- package/dist/States/SiteSlice.js +0 -129
- package/dist/States/WidthStatsSlice.js +0 -23
- package/dist/Utils/AxiosAPI.js +0 -8
- package/dist/Utils/AxiosWidget.js +0 -8
- package/dist/Utils/CBRFunctions.js +0 -53
- package/dist/Utils/DraftFunctions.js +0 -43
- package/dist/Utils/MaterialProviders.js +0 -31
- package/dist/Utils/TestUtils.js +0 -65
- package/dist/Utils/store.js +0 -84
- package/dist/Widget.js +0 -59
- package/dist/constants/Files/FileExtensions.js +0 -68
- package/dist/constants/Files/FileMaxSize.js +0 -2
- package/dist/constants/InternalFormStyle.js +0 -16
- package/dist/constants/MaterialClassNameSeed.js +0 -1
- package/dist/hooks.js +0 -25
- package/dist/index.js +0 -31
- /package/dist/{@Types → cjs/@Types}/@Types.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/AYFFormStep.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/Branding.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/CBRFormStep.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/Form.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/FormStep.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/GenericFormSteps.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/MapperElement.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/Organization.d.ts +0 -0
- /package/dist/{@Types → cjs/@Types}/index.d.ts +0 -0
- /package/dist/{App → cjs/App}/App.css +0 -0
- /package/dist/{App → cjs/App}/App.d.ts +0 -0
- /package/dist/{App → cjs/App}/App.module.css +0 -0
- /package/dist/{App → cjs/App}/AppFunctions.d.ts +0 -0
- /package/dist/{App → cjs/App}/AppHooks.d.ts +0 -0
- /package/dist/{Contexts → cjs/Contexts}/CustomContext.d.ts +0 -0
- /package/dist/{Contexts → cjs/Contexts}/FormContext.d.ts +0 -0
- /package/dist/{Contexts → cjs/Contexts}/SectionContext.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/ConfirmationDialog/ConfirmationDialog.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/ConfirmationDialog/ConfirmationDialog.module.css +0 -0
- /package/dist/{Form → cjs/Form}/Form.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/Form.module.css +0 -0
- /package/dist/{Form → cjs/Form}/FormFunctions.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/FormHooks.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/FormTypes/ColumnForm/ColumnForm.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/FormTypes/ColumnForm/ColumnForm.module.css +0 -0
- /package/dist/{Form → cjs/Form}/FormTypes/StepperForm/StepperForm.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/FormTypes/StepperForm/StepperForm.module.css +0 -0
- /package/dist/{Form → cjs/Form}/Section/MaterialSection/MaterialSection.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/Section/MaterialSection/MaterialSection.module.css +0 -0
- /package/dist/{Form → cjs/Form}/Section/Section.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/Terms/Term/MaterialTerm/MaterialTerm.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/Terms/Term/MaterialTerm/MaterialTerm.module.css +0 -0
- /package/dist/{Form → cjs/Form}/Terms/Term/Term.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/Terms/Terms.d.ts +0 -0
- /package/dist/{Form → cjs/Form}/Terms/Terms.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRElementStep/CBRElementStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRIncidentsStep/CBRIncidentsStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/Incident/Incident.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRIncidentsStep/MaterialCBRIncidentsStep/MaterialCBRIncidentsStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRPropertyStep/CBRPropertyStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/@Construction/CBRPropertyStep/CBRPropertyStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/AYFStepMapper.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/ApiSelectorStep/ApiSelectorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/ApiSelectorStep/MaterialApiSelectorStep/MaterialApiSelectorStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CBRStepMapper.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CheckBoxStep/CheckBoxStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CheckBoxStep/MaterialCheckBoxStep/MaterialCheckBoxStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/ClassifierSelectorStep/ClassifierSelectorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/ClassifierSelectorStep/MaterialClassifierSelectorStep/MaterialClassifierSelectorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CollapsibleStep/CollapsibleStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CollapsibleStep/MaterialTitleStep/MaterialCollapsibleStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/CustomStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/DatePickerStep/DatePickerStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/DatePickerStep/MaterialDatePickerStep/MaterialDatePickerStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/EntityValueStep/EntityValuePickerStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/EntityValueStep/MaterialEntityValuePickerStep/MaterialEntityValuePickerStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/FileUploadStep/FileUploadStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/FileUploadStep/MaterialFileUploadStep/FileComponent/FileComponent.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/FileUploadStep/MaterialFileUploadStep/MaterialFileUploadStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MapperStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/Element/ListMapperElement/ListMapperElement.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/Element/MapperElementComponent.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/Element/PillMapperElement/PillMapperElement.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/MaterialMapperStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/MapperStep/MaterialMapperStep/MaterialMapperStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/RatingStep/MaterialRatingStep/MaterialRatingStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/RatingStep/MaterialRatingStep/MaterialRatingStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/RatingStep/RatingStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SelectorStep/MaterialSelectorStep/MaterialSelectorStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SelectorStep/SelectorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SeparatorStep/MaterialSeparatorStep/MaterialSeparatorStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SeparatorStep/SeparatorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/SmartSelectStep/SmartSelectStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/Step.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/StepFunctions.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/StepHooks.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextAreaStep/MaterialTextAreaStep/DraftEditor.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaEditorStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextAreaStep/MaterialTextAreaStep/MaterialTextAreaStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextAreaStep/TextAreaStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextInputStep/MaterialTextInputStep/MaterialTextInputStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TextInputStep/TextInputStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TitleStep/MaterialTitleStep/MaterialTitleStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TitleStep/MaterialTitleStep/MaterialTitleStep.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/TitleStep/TitleStep.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/Utils/@StepFiller/StepFiller.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/Utils/@StepFiller/StepFiller.module.css +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/Utils/MaterialInputContainer/MaterialInputContainer.d.ts +0 -0
- /package/dist/{FormSteps → cjs/FormSteps}/Utils/MaterialInputContainer/MaterialInputContainer.module.css +0 -0
- /package/dist/{Icons → cjs/Icons}/Construction/LeakIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Construction/ProjectIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Construction/PropertyIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Construction/SpaceIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/DocumentIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Entities/CheckListIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Entities/GenericEntityIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Entities/HandshakeIcon.d.ts +0 -0
- /package/dist/{Icons → cjs/Icons}/Entities/SupplierIcon.d.ts +0 -0
- /package/dist/{Services → cjs/Services}/FileService.d.ts +0 -0
- /package/dist/{Services → cjs/Services}/FormService.d.ts +0 -0
- /package/dist/{Services → cjs/Services}/OrganizationService.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/CustomBtn/CustomBtn.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/CustomBtn/CustomBtn.module.css +0 -0
- /package/dist/{Shared → cjs/Shared}/InputIcon/InputIcon.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Loader/Loader.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Loader/Loader.module.css +0 -0
- /package/dist/{Shared → cjs/Shared}/Navbar/Navbar.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Navbar/Navbar.module.css +0 -0
- /package/dist/{Shared → cjs/Shared}/Navbar/Navbar.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Rating/Rating.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Rating/Rating.module.css +0 -0
- /package/dist/{Shared → cjs/Shared}/Rating/Rating.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Rating/Ratings/LikeRating.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Rating/Ratings/SatisfactionRating.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/Rating/Ratings/ScaleRating.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedButton/RoundedButton.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedButton/RoundedButton.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedCheckBox/RoundedCheckBox.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedCheckBox/RoundedCheckBox.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedDatePicker/RoundedDatePicker.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedDatePicker/RoundedDatePicker.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedSelect/RoundedSelect.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedSelect/RoundedSelect.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedSmartSelect/RoundedSmartSelect.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedSmartSelect/RoundedSmartSelect.stories.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedTextField/RoundedTextField.d.ts +0 -0
- /package/dist/{Shared → cjs/Shared}/RoundedTextField/RoundedTextField.stories.d.ts +0 -0
- /package/dist/{States → cjs/States}/GlobalSlice.d.ts +0 -0
- /package/dist/{States → cjs/States}/SiteSlice.d.ts +0 -0
- /package/dist/{States → cjs/States}/WidthStatsSlice.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/AxiosAPI.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/AxiosWidget.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/CBRFunctions.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/DraftFunctions.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/MaterialProviders.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/TestUtils.d.ts +0 -0
- /package/dist/{Utils → cjs/Utils}/store.d.ts +0 -0
- /package/dist/{Widget.d.ts → cjs/Widget.d.ts} +0 -0
- /package/dist/{__mocks__ → cjs/__mocks__}/axios.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/AYFFormStepTypes.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/CBRFormStepTypes.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/Files/FileExtensions.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/Files/FileMaxSize.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/FormStepTypes.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/IconTypes.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/InternalFormStyle.d.ts +0 -0
- /package/dist/{constants → cjs/constants}/MaterialClassNameSeed.d.ts +0 -0
- /package/dist/{hooks.d.ts → cjs/hooks.d.ts} +0 -0
- /package/dist/{index.d.ts → cjs/index.d.ts} +0 -0
- /package/dist/{index.lib.d.ts → cjs/index.lib.d.ts} +0 -0
- /package/dist/{index.module.css → cjs/index.module.css} +0 -0
- /package/dist/{setupTests.d.ts → cjs/setupTests.d.ts} +0 -0
- /package/dist/{@Types → mjs/@Types}/@Types.js +0 -0
- /package/dist/{@Types → mjs/@Types}/AYFFormStep.js +0 -0
- /package/dist/{@Types → mjs/@Types}/Branding.js +0 -0
- /package/dist/{@Types → mjs/@Types}/CBRFormStep.js +0 -0
- /package/dist/{@Types → mjs/@Types}/Form.js +0 -0
- /package/dist/{@Types → mjs/@Types}/FormStep.js +0 -0
- /package/dist/{@Types → mjs/@Types}/GenericFormSteps.js +0 -0
- /package/dist/{@Types → mjs/@Types}/MapperElement.js +0 -0
- /package/dist/{@Types → mjs/@Types}/Organization.js +0 -0
- /package/dist/{@Types/index.js → mjs/@Types/index.d.ts} +0 -0
- /package/dist/{__mocks__/axios.js → mjs/__mocks__/axios.d.ts} +0 -0
- /package/dist/{constants → mjs/constants}/AYFFormStepTypes.js +0 -0
- /package/dist/{constants → mjs/constants}/CBRFormStepTypes.js +0 -0
- /package/dist/{constants → mjs/constants}/FormStepTypes.js +0 -0
- /package/dist/{constants → mjs/constants}/IconTypes.js +0 -0
- /package/dist/{index.lib.js → mjs/index.lib.js} +0 -0
- /package/dist/{setupTests.js → mjs/setupTests.js} +0 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import AYFFormStepTypes from '../constants/AYFFormStepTypes';
|
|
3
|
+
import TextInputStep from './TextInputStep/TextInputStep';
|
|
4
|
+
import SmartSelectStep from './SmartSelectStep/SmartSelectStep';
|
|
5
|
+
import CalendarTodayRoundedIcon from '@material-ui/icons/CalendarTodayRounded';
|
|
6
|
+
import LocationOnRoundedIcon from '@material-ui/icons/LocationOnRounded';
|
|
7
|
+
import DescriptionIcon from '@material-ui/icons/Description';
|
|
8
|
+
import DatePickerStep from './DatePickerStep/DatePickerStep';
|
|
9
|
+
import axios from 'axios';
|
|
10
|
+
const baseUrl = `https://api.integrations.${process.env.REACT_APP_DOMAIN}/sinco/ayf/`;
|
|
11
|
+
function AYFStepMapper(props) {
|
|
12
|
+
const getMonths = async () => {
|
|
13
|
+
return [
|
|
14
|
+
{ id: '1', label: 'Enero' },
|
|
15
|
+
{ id: '2', label: 'Febrero' },
|
|
16
|
+
{ id: '3', label: 'Marzo' },
|
|
17
|
+
{ id: '4', label: 'Abril' },
|
|
18
|
+
{ id: '5', label: 'Mayo' },
|
|
19
|
+
{ id: '6', label: 'Junio' },
|
|
20
|
+
{ id: '7', label: 'Julio' },
|
|
21
|
+
{ id: '8', label: 'Agosto' },
|
|
22
|
+
{ id: '9', label: 'Septiembre' },
|
|
23
|
+
{ id: '10', label: 'Octubre' },
|
|
24
|
+
{ id: '11', label: 'Noviembre ' },
|
|
25
|
+
{ id: '12', label: 'Diciembre' },
|
|
26
|
+
];
|
|
27
|
+
};
|
|
28
|
+
const getCiudadesOptions = async (idOrganization, step, dependencyStore) => {
|
|
29
|
+
if (!idOrganization)
|
|
30
|
+
return null;
|
|
31
|
+
const nit = dependencyStore[step.idNitStep]?.value;
|
|
32
|
+
const params = new URLSearchParams({
|
|
33
|
+
idOrganization,
|
|
34
|
+
idCompany: nit,
|
|
35
|
+
nit: 'true',
|
|
36
|
+
});
|
|
37
|
+
for (const dep of step.dependencies ?? []) {
|
|
38
|
+
const value = dependencyStore[dep]?.value;
|
|
39
|
+
if (value && dep.startsWith('AYF')) {
|
|
40
|
+
switch (dep.split('-')?.[0]) {
|
|
41
|
+
case AYFFormStepTypes.AYF_START_MONTH:
|
|
42
|
+
params.set('startMonth', value.id);
|
|
43
|
+
break;
|
|
44
|
+
case AYFFormStepTypes.AYF_END_MONTH:
|
|
45
|
+
params.set('endMonth', value.id);
|
|
46
|
+
break;
|
|
47
|
+
case AYFFormStepTypes.AYF_YEAR:
|
|
48
|
+
params.set('year', value);
|
|
49
|
+
break;
|
|
50
|
+
default:
|
|
51
|
+
break;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
try {
|
|
56
|
+
return (await axios.get(baseUrl + 'CiudadesICA?' + params.toString())).data;
|
|
57
|
+
// eslint-disable-next-line no-empty
|
|
58
|
+
}
|
|
59
|
+
catch (error) {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
switch (props.step.type) {
|
|
64
|
+
case AYFFormStepTypes.AYF_START_MONTH:
|
|
65
|
+
case AYFFormStepTypes.AYF_END_MONTH:
|
|
66
|
+
return (_jsx(SmartSelectStep, { ...props, step: props.step, getOptions: getMonths, getOptionSelected: (option, value) => option.id === value.id, defaultValue: props.step.type === AYFFormStepTypes.AYF_START_MONTH
|
|
67
|
+
? { id: '1', label: 'Enero' }
|
|
68
|
+
: { id: '12', label: 'Diciembre' }, getValueString: (value) => value?.id, icon: _jsx(CalendarTodayRoundedIcon, { fontSize: "inherit", style: {
|
|
69
|
+
color: '#757575',
|
|
70
|
+
fontSize: 20,
|
|
71
|
+
marginRight: 4,
|
|
72
|
+
marginTop: 2,
|
|
73
|
+
} }) }));
|
|
74
|
+
case AYFFormStepTypes.AYF_YEAR:
|
|
75
|
+
return (_jsx(TextInputStep, { ...props, step: props.step, defaultValue: new Date().getFullYear().toString() }));
|
|
76
|
+
case AYFFormStepTypes.AYF_BILL_NUM:
|
|
77
|
+
return (_jsx(TextInputStep, { ...props, step: props.step, validation: {
|
|
78
|
+
value: '^\\S*$',
|
|
79
|
+
type: 'OTHER',
|
|
80
|
+
message: 'No se permiten espacios',
|
|
81
|
+
}, maxLength: 30, icon: _jsx(DescriptionIcon, { style: { color: '#757575', fontSize: 23 } }) }));
|
|
82
|
+
case AYFFormStepTypes.AYF_CUT_OFF_DATE:
|
|
83
|
+
return (_jsx(DatePickerStep, { ...props, step: props.step, defaultValue: new Date() }));
|
|
84
|
+
case AYFFormStepTypes.AYF_ICA_CITY:
|
|
85
|
+
return (_jsx(SmartSelectStep, { ...props, step: props.step, getOptions: getCiudadesOptions, getOptionSelected: (option, value) => option === value, getValueString: (value) => value, icon: _jsx(LocationOnRoundedIcon, { fill: "#757575", style: {
|
|
86
|
+
display: 'flex',
|
|
87
|
+
height: 23,
|
|
88
|
+
width: 23,
|
|
89
|
+
marginRight: 3,
|
|
90
|
+
marginTop: 1,
|
|
91
|
+
} }) }));
|
|
92
|
+
default:
|
|
93
|
+
return _jsx("div", {});
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
export default AYFStepMapper;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ApiSelector } from '../../@Types/FormStep';
|
|
3
|
+
import { StepProps } from '../Step';
|
|
4
|
+
export interface StepOptions {
|
|
5
|
+
id: string | number;
|
|
6
|
+
label: string;
|
|
7
|
+
}
|
|
8
|
+
export interface ApiSelectorStepProps extends StepProps {
|
|
9
|
+
/** The ApiSelectorStep to display */
|
|
10
|
+
step: ApiSelector;
|
|
11
|
+
/** Default value to display */
|
|
12
|
+
defaultValue?: Date | null;
|
|
13
|
+
}
|
|
14
|
+
declare function ApiSelectorStep(props: ApiSelectorStepProps): JSX.Element;
|
|
15
|
+
export default ApiSelectorStep;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { FormStyleTypes } from '../../constants/FormStepTypes';
|
|
3
|
+
import { useAppSelector } from '../../hooks';
|
|
4
|
+
import MaterialApiSelectorStep from './MaterialApiSelectorStep/MaterialApiSelectorStep';
|
|
5
|
+
function ApiSelectorStep(props) {
|
|
6
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
7
|
+
switch (formStyle.type) {
|
|
8
|
+
case FormStyleTypes.MATERIAL:
|
|
9
|
+
default: {
|
|
10
|
+
return _jsx(MaterialApiSelectorStep, { ...props });
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export default ApiSelectorStep;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
|
+
import React, { useContext } from 'react';
|
|
3
|
+
import FormStepTypes, { ApiSelectorOptionTypes, ApiSelectorParamTypes, } from '../../../constants/FormStepTypes';
|
|
4
|
+
import StepComponent from '../../Step';
|
|
5
|
+
import SmartSelect from '../../SmartSelectStep/MaterialSmartSelectStep/MaterialSmartSelectStep';
|
|
6
|
+
import widgetInstance from '../../../Utils/AxiosWidget';
|
|
7
|
+
import axiosInstance from '../../../Utils/AxiosAPI';
|
|
8
|
+
import InputIcon from '../../../Shared/InputIcon/InputIcon';
|
|
9
|
+
import FormContext from '../../../Contexts/FormContext';
|
|
10
|
+
import StepFillerContainer from '../../Utils/@StepFiller/StepFiller';
|
|
11
|
+
function ApiSelectorComponent({ step, editable, ...others }) {
|
|
12
|
+
const form = useContext(FormContext);
|
|
13
|
+
function calcOptionId(option) {
|
|
14
|
+
return option?.[step.idAttribute] ?? '';
|
|
15
|
+
}
|
|
16
|
+
function calcOptionLabel(option) {
|
|
17
|
+
return option?.[step.labelAttribute] ?? '';
|
|
18
|
+
}
|
|
19
|
+
return (_jsx(StepFillerContainer, { step: step, children: _jsx(SmartSelect, { ...others, editable: editable, step: step, icon: step.icon ? _jsx(InputIcon, { icon: step.icon }) : undefined, getOptions: getApiOptions, getOptionSelected: (option, value) => calcOptionId(option) === calcOptionId(value), calcDepError: (steps) => {
|
|
20
|
+
for (const step of steps) {
|
|
21
|
+
if (step.type === FormStepTypes.API_SELECTOR) {
|
|
22
|
+
return 'Selecciona un ' + step.label;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
return undefined;
|
|
26
|
+
}, getValueString: (value) => calcOptionLabel(value), renderNestedSteps: (value) => {
|
|
27
|
+
if (!value)
|
|
28
|
+
return _jsx(_Fragment, {});
|
|
29
|
+
const currentOption = step.options[calcOptionId(value)];
|
|
30
|
+
if (currentOption?.type === ApiSelectorOptionTypes.NESTED) {
|
|
31
|
+
return (_jsx(React.Fragment, { children: currentOption.steps.map((idStep) => {
|
|
32
|
+
const subStep = form.steps[idStep];
|
|
33
|
+
return (_jsx(StepComponent, { editable: editable, step: subStep }, idStep));
|
|
34
|
+
}) }));
|
|
35
|
+
}
|
|
36
|
+
else
|
|
37
|
+
return _jsx(_Fragment, {});
|
|
38
|
+
} }) }));
|
|
39
|
+
}
|
|
40
|
+
export default ApiSelectorComponent;
|
|
41
|
+
const getApiOptions = async (idOrganization, step, dependencyStore) => {
|
|
42
|
+
function calcOptionId(option) {
|
|
43
|
+
return option?.[step.idAttribute] ?? '';
|
|
44
|
+
}
|
|
45
|
+
const params = new URLSearchParams({});
|
|
46
|
+
for (const filter of step.queryParams) {
|
|
47
|
+
switch (filter.type) {
|
|
48
|
+
case ApiSelectorParamTypes.STEP: {
|
|
49
|
+
const currentValue = dependencyStore[filter.idStep]?.value;
|
|
50
|
+
if (currentValue) {
|
|
51
|
+
if (typeof currentValue === 'string')
|
|
52
|
+
params.set(filter.key, currentValue);
|
|
53
|
+
else
|
|
54
|
+
params.set(filter.key, currentValue.label ?? currentValue.id);
|
|
55
|
+
}
|
|
56
|
+
else if (filter.required) {
|
|
57
|
+
return null;
|
|
58
|
+
}
|
|
59
|
+
break;
|
|
60
|
+
}
|
|
61
|
+
case ApiSelectorParamTypes.VALUE:
|
|
62
|
+
default:
|
|
63
|
+
params.set(filter.key, filter.value);
|
|
64
|
+
break;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
let url = step.url.replace('capta.co', process.env.REACT_APP_DOMAIN);
|
|
68
|
+
if (idOrganization && url.includes(process.env.REACT_APP_DOMAIN))
|
|
69
|
+
params.set('idOrganization', idOrganization);
|
|
70
|
+
if (!step.url.includes('?'))
|
|
71
|
+
url += '?';
|
|
72
|
+
url += params.toString();
|
|
73
|
+
const response = await (idOrganization
|
|
74
|
+
? widgetInstance.get(url)
|
|
75
|
+
: axiosInstance.get(url));
|
|
76
|
+
return response.data.filter((option) => calcOptionId(option) &&
|
|
77
|
+
step.options[calcOptionId(option)]?.type !==
|
|
78
|
+
ApiSelectorOptionTypes.HIDE);
|
|
79
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { CBRFormStep } from '../@Types/CBRFormStep';
|
|
3
|
+
import { StepProps } from './Step';
|
|
4
|
+
interface CBRStepProps extends Omit<StepProps, 'step'> {
|
|
5
|
+
step: CBRFormStep;
|
|
6
|
+
}
|
|
7
|
+
export interface StepOptions {
|
|
8
|
+
id: string | number;
|
|
9
|
+
label: string;
|
|
10
|
+
idMacroProyecto?: number;
|
|
11
|
+
}
|
|
12
|
+
declare function CBRStepMapper(props: CBRStepProps): JSX.Element;
|
|
13
|
+
export default CBRStepMapper;
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import CBRFormStepTypes from '../constants/CBRFormStepTypes';
|
|
3
|
+
import PersonRoundedIcon from '@material-ui/icons/PersonRounded';
|
|
4
|
+
import TextInputStep from './TextInputStep/TextInputStep';
|
|
5
|
+
import SmartSelectStep from './SmartSelectStep/SmartSelectStep';
|
|
6
|
+
import TextAreaStep from './TextAreaStep/TextAreaStep';
|
|
7
|
+
import CBRIncidentsStep from './@Construction/CBRIncidentsStep/CBRIncidentsStep';
|
|
8
|
+
import CBRElementStep from './@Construction/CBRElementStep/CBRElementStep';
|
|
9
|
+
import axios from 'axios';
|
|
10
|
+
import CBRPropertyStep from './@Construction/CBRPropertyStep/CBRPropertyStep';
|
|
11
|
+
import InputIcon from '../Shared/InputIcon/InputIcon';
|
|
12
|
+
const baseUrl = `https://integrations.${process.env.REACT_APP_DOMAIN}/sinco/cbr/`;
|
|
13
|
+
function CBRStepMapper(props) {
|
|
14
|
+
const getTipoDocOptions = async (idOrganization) => {
|
|
15
|
+
if (!idOrganization)
|
|
16
|
+
return null;
|
|
17
|
+
return (await axios.get(baseUrl + 'TiposDoc?idOrganization=' + idOrganization)).data;
|
|
18
|
+
};
|
|
19
|
+
const getProyectoOptions = async (idOrganization, step, dependencyStore) => {
|
|
20
|
+
if (!idOrganization)
|
|
21
|
+
return null;
|
|
22
|
+
const idMacroProyecto = dependencyStore[step.dependencies?.[0] ?? '']?.value?.id;
|
|
23
|
+
let proyectos = (await axios.get(baseUrl + 'Proyectos?idOrganization=' + idOrganization)).data;
|
|
24
|
+
if (idMacroProyecto) {
|
|
25
|
+
proyectos = proyectos.filter((proyecto) => proyecto.idMacroProyecto === idMacroProyecto);
|
|
26
|
+
}
|
|
27
|
+
return proyectos;
|
|
28
|
+
};
|
|
29
|
+
const getMacroProyectoOptions = async (idOrganization) => {
|
|
30
|
+
if (!idOrganization)
|
|
31
|
+
return null;
|
|
32
|
+
return (await axios.get(baseUrl + 'MacroProyectos?idOrganization=' + idOrganization)).data;
|
|
33
|
+
};
|
|
34
|
+
const getTipoSolicitanteOptions = async (idOrganization) => {
|
|
35
|
+
if (!idOrganization)
|
|
36
|
+
return null;
|
|
37
|
+
return (await axios.get(baseUrl + 'TiposSolicitante?idOrganization=' + idOrganization)).data;
|
|
38
|
+
};
|
|
39
|
+
const getTipoEspaciosOptions = async (idOrganization, step, dependencyStore) => {
|
|
40
|
+
if (step.dependencies && idOrganization) {
|
|
41
|
+
const idProyecto = dependencyStore[step.dependencies[0]]?.value?.id;
|
|
42
|
+
if (!idProyecto) {
|
|
43
|
+
return null; //null para indicar que falta la depedency
|
|
44
|
+
}
|
|
45
|
+
const params = new URLSearchParams({ idProyecto, idOrganization });
|
|
46
|
+
return (await axios.get(baseUrl + 'TiposEspacio?' + params.toString())).data;
|
|
47
|
+
}
|
|
48
|
+
else {
|
|
49
|
+
return null;
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
switch (props.step.type) {
|
|
53
|
+
case CBRFormStepTypes.CBR_EMAIL:
|
|
54
|
+
return (_jsx(TextInputStep, { ...props, step: props.step, validation: {
|
|
55
|
+
type: 'EMAIL',
|
|
56
|
+
value: /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/
|
|
57
|
+
.source,
|
|
58
|
+
message: 'El correo no es válido',
|
|
59
|
+
} }));
|
|
60
|
+
case CBRFormStepTypes.CBR_CEL:
|
|
61
|
+
case CBRFormStepTypes.CBR_PHONE:
|
|
62
|
+
return (_jsx(TextInputStep, { ...props, step: props.step, validation: {
|
|
63
|
+
type: 'OTHER',
|
|
64
|
+
value: /^(\+[0-9])|([0-9])$/.source,
|
|
65
|
+
message: 'El teléfono no es válido',
|
|
66
|
+
} }));
|
|
67
|
+
case CBRFormStepTypes.CBR_LAST_NAME:
|
|
68
|
+
case CBRFormStepTypes.CBR_FIRST_NAME:
|
|
69
|
+
case CBRFormStepTypes.CBR_MIDDLE_NAME:
|
|
70
|
+
case CBRFormStepTypes.CBR_SECOND_LAST_NAME:
|
|
71
|
+
return _jsx(TextInputStep, { ...props, step: props.step });
|
|
72
|
+
case CBRFormStepTypes.CBR_DOC:
|
|
73
|
+
return (_jsx(TextInputStep, { ...props, step: props.step, icon: _jsx(DocumentIconComponent, {}) }));
|
|
74
|
+
case CBRFormStepTypes.CBR_TIPO_DOC:
|
|
75
|
+
return (_jsx(SmartSelectStep, { ...props, step: { ...props.step, showIcon: false }, getOptions: getTipoDocOptions, getOptionSelected: (option, value) => option.id === value.id, getValueString: (value) => value?.id }));
|
|
76
|
+
case CBRFormStepTypes.CBR_MACRO_PROYECTO:
|
|
77
|
+
return (_jsx(SmartSelectStep, { ...props, step: props.step, icon: _jsx(InputIcon, { icon: 'PROJECT' }), getOptions: getMacroProyectoOptions, getOptionSelected: (option, value) => option.id === value.id, getValueString: (value) => value?.id }));
|
|
78
|
+
case CBRFormStepTypes.CBR_PROYECTO:
|
|
79
|
+
return (_jsx(SmartSelectStep, { ...props, step: props.step, icon: _jsx(InputIcon, { icon: 'PROJECT' }), getOptions: getProyectoOptions, getOptionSelected: (option, value) => option.id === value.id, getValueString: (value) => value?.id }));
|
|
80
|
+
case CBRFormStepTypes.CBR_INMUEBLE:
|
|
81
|
+
return _jsx(CBRPropertyStep, { ...props, step: props.step });
|
|
82
|
+
case CBRFormStepTypes.CBR_TIPO_SOLICITANTE:
|
|
83
|
+
return (_jsx(SmartSelectStep, { ...props, step: props.step, icon: _jsx(PersonRoundedIcon, { fill: "#757575", style: {
|
|
84
|
+
display: 'flex',
|
|
85
|
+
height: 23,
|
|
86
|
+
width: 23,
|
|
87
|
+
marginRight: 3,
|
|
88
|
+
marginTop: 1,
|
|
89
|
+
} }), getOptions: getTipoSolicitanteOptions, getOptionSelected: (option, value) => option.id === value.id, getValueString: (value) => value?.id }));
|
|
90
|
+
case CBRFormStepTypes.CBR_TIPO_ESPACIO:
|
|
91
|
+
return (_jsx(SmartSelectStep, { ...props, step: props.step, icon: _jsx(InputIcon, { icon: 'SPACE' }), getOptions: getTipoEspaciosOptions, calcDepError: (steps) => {
|
|
92
|
+
for (const step of steps) {
|
|
93
|
+
if (step.type ===
|
|
94
|
+
CBRFormStepTypes.CBR_PROYECTO) {
|
|
95
|
+
return 'Selecciona un proyecto';
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
return undefined;
|
|
99
|
+
}, getOptionSelected: (option, value) => option.id === value.id, getValueString: (value) => value?.id }));
|
|
100
|
+
case CBRFormStepTypes.CBR_LOCATIVAS:
|
|
101
|
+
return _jsx(CBRElementStep, { ...props, step: props.step });
|
|
102
|
+
case CBRFormStepTypes.CBR_COMENTARIO:
|
|
103
|
+
return _jsx(TextAreaStep, { ...props, step: props.step });
|
|
104
|
+
case CBRFormStepTypes.CBR_INCIDENCIAS:
|
|
105
|
+
return _jsx(CBRIncidentsStep, { ...props, step: props.step });
|
|
106
|
+
default:
|
|
107
|
+
return _jsx("div", {});
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
export default CBRStepMapper;
|
|
111
|
+
function DocumentIconComponent() {
|
|
112
|
+
return (_jsx("div", { style: {
|
|
113
|
+
marginRight: 2,
|
|
114
|
+
}, children: _jsx(InputIcon, { icon: 'DOCUMENT' }) }));
|
|
115
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { CheckBox } from '../../@Types/FormStep';
|
|
3
|
+
import { StepProps } from '../Step';
|
|
4
|
+
export interface CheckBoxStepProps extends StepProps {
|
|
5
|
+
/** The CheckboxStep to display */
|
|
6
|
+
step: CheckBox;
|
|
7
|
+
}
|
|
8
|
+
declare function CheckboxStep(props: CheckBoxStepProps): JSX.Element;
|
|
9
|
+
export default CheckboxStep;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { FormStyleTypes } from '../../constants/FormStepTypes';
|
|
3
|
+
import MaterialCheckBoxStep from './MaterialCheckBoxStep/MaterialCheckBoxStep';
|
|
4
|
+
import { useAppSelector } from '../../hooks';
|
|
5
|
+
function CheckboxStep(props) {
|
|
6
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
7
|
+
switch (formStyle.type) {
|
|
8
|
+
case FormStyleTypes.MATERIAL:
|
|
9
|
+
default: {
|
|
10
|
+
return _jsx(MaterialCheckBoxStep, { ...props });
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export default CheckboxStep;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import styles from './MaterialCheckBoxStep.module.css';
|
|
3
|
+
import RoundedCheckBox from '../../../Shared/RoundedCheckBox/RoundedCheckBox';
|
|
4
|
+
import React, { useContext } from 'react';
|
|
5
|
+
import StepComponent from '../../Step';
|
|
6
|
+
import FormContext from '../../../Contexts/FormContext';
|
|
7
|
+
import { useAppSelector } from '../../../hooks';
|
|
8
|
+
import { useFormStep } from '../../StepHooks';
|
|
9
|
+
import StepFillerContainer from '../../Utils/@StepFiller/StepFiller';
|
|
10
|
+
import MaterialInputContainer from '../../Utils/MaterialInputContainer/MaterialInputContainer';
|
|
11
|
+
function CheckBoxStep({ step, editable }) {
|
|
12
|
+
const { ref, value, onChange, error, field } = useFormStep(step, {
|
|
13
|
+
defaultValue: step.defaultValue ?? false,
|
|
14
|
+
rules: {
|
|
15
|
+
required: step.required ? 'Este campo es obligatorio' : undefined,
|
|
16
|
+
},
|
|
17
|
+
sizeChange: true,
|
|
18
|
+
});
|
|
19
|
+
const { formStyle, postview } = useAppSelector((state) => state.global);
|
|
20
|
+
const form = useContext(FormContext);
|
|
21
|
+
const renderNested = () => {
|
|
22
|
+
const steps = value ? step.steps : step.uncheckedSteps;
|
|
23
|
+
return (_jsx(React.Fragment, { children: steps?.map((idStep) => {
|
|
24
|
+
const subStep = form.steps[idStep];
|
|
25
|
+
return (_jsx(StepComponent, { editable: editable, step: subStep }, idStep));
|
|
26
|
+
}) }));
|
|
27
|
+
};
|
|
28
|
+
return (_jsxs(StepFillerContainer, { step: step, children: [_jsxs(MaterialInputContainer, { step: step, editable: editable, children: [_jsxs("div", { className: styles.labelCheckBoxContainer, children: [step.label && (_jsxs("div", { className: styles.checkboxLbl, children: [step.label, step.required ? ' *' : '', ":"] })), _jsx(RoundedCheckBox, { ...field, inputRef: ref, onChange: onChange, "data-testid": step.id, padding: "0px", size: "1.6rem", error: !!error, cantEdit: !editable || postview, checkedColor: formStyle.primaryColor, uncheckedColor: formStyle.outlineColor, checked: value })] }), (step.description || !!error) && (_jsx("div", { className: styles.descriptionPar, style: {
|
|
29
|
+
color: error
|
|
30
|
+
? formStyle.errorColor
|
|
31
|
+
: formStyle.descriptionTextColor,
|
|
32
|
+
}, children: error ? 'Este campo es obligatorio' : step.description }))] }), renderNested()] }));
|
|
33
|
+
}
|
|
34
|
+
export default CheckBoxStep;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.checkboxLbl {
|
|
2
|
+
font-size: 18px;
|
|
3
|
+
margin-right: 10px;
|
|
4
|
+
margin-left: 10px;
|
|
5
|
+
white-space: nowrap;
|
|
6
|
+
overflow: hidden;
|
|
7
|
+
text-overflow: ellipsis;
|
|
8
|
+
}
|
|
9
|
+
.labelCheckBoxContainer {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
align-items: center;
|
|
14
|
+
height: 31px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.descriptionPar {
|
|
18
|
+
font-size: 0.75rem;
|
|
19
|
+
margin-left: 14px;
|
|
20
|
+
margin-top: 4px;
|
|
21
|
+
font-weight: 400;
|
|
22
|
+
line-height: 1.66;
|
|
23
|
+
max-width: 100%;
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
text-overflow: ellipsis;
|
|
26
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ClassifierSelector } from '../../@Types/FormStep';
|
|
3
|
+
import { StepProps } from '../Step';
|
|
4
|
+
export interface ClassifierSelectorStepProps extends StepProps {
|
|
5
|
+
/** The ClassifierSelectorStep to display */
|
|
6
|
+
step: ClassifierSelector;
|
|
7
|
+
}
|
|
8
|
+
declare function ClassifierSelectorStep(props: ClassifierSelectorStepProps): JSX.Element;
|
|
9
|
+
export default ClassifierSelectorStep;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { FormStyleTypes } from '../../constants/FormStepTypes';
|
|
3
|
+
import MaterialClassifierSelectorStep from './MaterialClassifierSelectorStep/MaterialClassifierSelectorStep';
|
|
4
|
+
import { useAppSelector } from '../../hooks';
|
|
5
|
+
function ClassifierSelectorStep(props) {
|
|
6
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
7
|
+
switch (formStyle.type) {
|
|
8
|
+
case FormStyleTypes.MATERIAL:
|
|
9
|
+
default: {
|
|
10
|
+
return _jsx(MaterialClassifierSelectorStep, { ...props });
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export default ClassifierSelectorStep;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import React, { useContext, useMemo } from 'react';
|
|
3
|
+
import { ClassifierOptionTypes } from '../../../constants/FormStepTypes';
|
|
4
|
+
import StepComponent from '../../Step';
|
|
5
|
+
import RoundedSmartSelect from '../../../Shared/RoundedSmartSelect/RoundedSmartSelect';
|
|
6
|
+
import FormContext from '../../../Contexts/FormContext';
|
|
7
|
+
import { useAppSelector } from '../../../hooks';
|
|
8
|
+
import { useFormStep } from '../../StepHooks';
|
|
9
|
+
import StepFillerContainer from '../../Utils/@StepFiller/StepFiller';
|
|
10
|
+
import MaterialInputContainer from '../../Utils/MaterialInputContainer/MaterialInputContainer';
|
|
11
|
+
import { calcDefaultValue } from '../../StepFunctions';
|
|
12
|
+
function ClassifierSelectorStep({ step, editable, }) {
|
|
13
|
+
const { ref, value, onChange, error, field } = useFormStep(step, {
|
|
14
|
+
defaultValue: calcDefaultValue(step),
|
|
15
|
+
sizeChange: true,
|
|
16
|
+
rules: {
|
|
17
|
+
required: step.required ? 'Este campo es obligatorio' : undefined,
|
|
18
|
+
},
|
|
19
|
+
});
|
|
20
|
+
const { formStyle, postview, preview } = useAppSelector((state) => state.global);
|
|
21
|
+
const form = useContext(FormContext);
|
|
22
|
+
if (!step.idClassifier)
|
|
23
|
+
return _jsx("div", {});
|
|
24
|
+
const classifier = form.classifiers?.[step.idClassifier];
|
|
25
|
+
if (!classifier)
|
|
26
|
+
return _jsx("div", {});
|
|
27
|
+
const options = useMemo(() => {
|
|
28
|
+
return classifier.children
|
|
29
|
+
?.filter((idClassifier) => step.options[idClassifier]?.type !==
|
|
30
|
+
ClassifierOptionTypes.HIDE &&
|
|
31
|
+
form.classifiers?.[idClassifier])
|
|
32
|
+
.map((idClassifier) => {
|
|
33
|
+
const classifier = form.classifiers?.[idClassifier];
|
|
34
|
+
return {
|
|
35
|
+
value: classifier?._id,
|
|
36
|
+
label: classifier?.clientName?.trim?.() && preview
|
|
37
|
+
? classifier?.clientName
|
|
38
|
+
: classifier?.name,
|
|
39
|
+
};
|
|
40
|
+
});
|
|
41
|
+
}, []);
|
|
42
|
+
const mapNestedOption = () => {
|
|
43
|
+
if (value) {
|
|
44
|
+
const currentOption = step.options[value.value];
|
|
45
|
+
if (currentOption?.type === ClassifierOptionTypes.NESTED) {
|
|
46
|
+
return (_jsx(React.Fragment, { children: currentOption.steps.map((idStep) => {
|
|
47
|
+
const subStep = form.steps[idStep];
|
|
48
|
+
return (_jsx(StepComponent, { step: subStep, editable: editable }, idStep));
|
|
49
|
+
}) }));
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
return (_jsxs(StepFillerContainer, { step: step, children: [_jsx(MaterialInputContainer, { step: step, editable: editable, children: _jsx(RoundedSmartSelect, { ...field, inputRef: ref, value: value, disabled: false, loading: false, options: options, cantEdit: !editable || postview, fullWidth: true, backgroundColor: formStyle.stepBackgroundColor ?? 'white', label: step.label ? step.label : classifier.name, required: step.required, height: '31px', searchable: step.searchable, icon: undefined, helperTextColor: formStyle.descriptionTextColor, focusColor: formStyle.primaryColor, outlineColor: formStyle.outlineColor, errorColor: formStyle.errorColor, color: formStyle.textColor, containerMargin: "0px", handleUpdate: onChange, getOptionSelected: (option, value) => {
|
|
54
|
+
return option.value === value?.value;
|
|
55
|
+
}, helperText: error?.message?.toString() ?? step.description, error: !!error }) }), mapNestedOption()] }));
|
|
56
|
+
}
|
|
57
|
+
export default ClassifierSelectorStep;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { Collapsible } from '../../@Types/FormStep';
|
|
3
|
+
import { StepProps } from '../Step';
|
|
4
|
+
export interface CollapsibleStepProps extends StepProps {
|
|
5
|
+
/** The CollapsibleStep to display */
|
|
6
|
+
step: Collapsible;
|
|
7
|
+
}
|
|
8
|
+
declare function CollapsibleStep({ step, ...others }: CollapsibleStepProps): JSX.Element;
|
|
9
|
+
export default CollapsibleStep;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import { useAppSelector } from '../../hooks';
|
|
3
|
+
import { FormStyleTypes } from '../../constants/FormStepTypes';
|
|
4
|
+
import MaterialCollapsibleStep from './MaterialTitleStep/MaterialCollapsibleStep';
|
|
5
|
+
function CollapsibleStep({ step, ...others }) {
|
|
6
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
7
|
+
if (step.steps.length === 0)
|
|
8
|
+
return _jsx(_Fragment, {});
|
|
9
|
+
switch (formStyle.type) {
|
|
10
|
+
case FormStyleTypes.MATERIAL:
|
|
11
|
+
default: {
|
|
12
|
+
return _jsx(MaterialCollapsibleStep, { step: step, ...others });
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
export default CollapsibleStep;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { createElement as _createElement } from "react";
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import React, { useContext, useEffect } from 'react';
|
|
4
|
+
import styles from './MaterialCollapsibleStep.module.css';
|
|
5
|
+
import { Controller, useFormContext } from 'react-hook-form';
|
|
6
|
+
import StepComponent from '../../Step';
|
|
7
|
+
import ExpandMoreRoundedIcon from '@material-ui/icons/ExpandMoreRounded';
|
|
8
|
+
import ExpandLessRoundedIcon from '@material-ui/icons/ExpandLessRounded';
|
|
9
|
+
import FormContext from '../../../Contexts/FormContext';
|
|
10
|
+
import { useAppSelector } from '../../../hooks';
|
|
11
|
+
function Collapsible({ step, open, setOpen, ...others }) {
|
|
12
|
+
const { formStyle } = useAppSelector((state) => state.global);
|
|
13
|
+
const form = useContext(FormContext);
|
|
14
|
+
const { formState: { errors }, } = useFormContext();
|
|
15
|
+
const contentRef = React.useRef(null);
|
|
16
|
+
useEffect(() => {
|
|
17
|
+
if (!open && step.dependencies?.find((dep) => !!errors[dep])) {
|
|
18
|
+
setOpen(true);
|
|
19
|
+
}
|
|
20
|
+
}, step.dependencies?.map((dep) => errors[dep]) ?? []);
|
|
21
|
+
return (_jsxs(React.Fragment, { children: [_jsxs("div", { className: styles.container, style: {
|
|
22
|
+
color: formStyle.textColor,
|
|
23
|
+
borderColor: formStyle.primaryColor,
|
|
24
|
+
}, children: [_jsx("div", { className: styles.collapsibleLabel, onClick: () => {
|
|
25
|
+
setOpen(!open);
|
|
26
|
+
}, children: step.label }), _jsx("div", { className: styles.expand, onClick: () => {
|
|
27
|
+
setOpen(!open);
|
|
28
|
+
}, children: _jsx("div", { className: styles.expandIcon, children: open ? (_jsx(ExpandLessRoundedIcon, { fontSize: "inherit" })) : (_jsx(ExpandMoreRoundedIcon, { fontSize: "inherit" })) }) })] }), _jsx("div", { className: styles.content, style: {
|
|
29
|
+
height: open === 'TRUE'
|
|
30
|
+
? 'auto'
|
|
31
|
+
: open
|
|
32
|
+
? contentRef.current?.offsetHeight ?? 'auto'
|
|
33
|
+
: 0,
|
|
34
|
+
}, children: _jsx("div", { className: styles.contentContainer, ref: contentRef, children: step.steps.map((idSubStep) => {
|
|
35
|
+
const subStep = form.steps[idSubStep];
|
|
36
|
+
return (_createElement(StepComponent, { ...others, step: subStep, key: idSubStep }));
|
|
37
|
+
}) }) }), _jsx("div", { className: styles.separator, style: {
|
|
38
|
+
backgroundColor: formStyle.primaryColor,
|
|
39
|
+
} })] }));
|
|
40
|
+
}
|
|
41
|
+
function CollapsibleStep(props) {
|
|
42
|
+
const { postview } = useAppSelector((state) => state.global);
|
|
43
|
+
const { clearErrors, formState: { errors }, } = useFormContext();
|
|
44
|
+
return (_jsx(Controller, { name: props.step.id, defaultValue: props.step.defaultValue ?? postview ? false : true, render: ({ field: { value, onChange } }) => (_jsx(Collapsible, { ...props, open: value, setOpen: (open) => {
|
|
45
|
+
if (!open) {
|
|
46
|
+
const deps = props.step.dependencies?.filter((dep) => !!errors[dep]);
|
|
47
|
+
if (deps)
|
|
48
|
+
clearErrors(deps);
|
|
49
|
+
}
|
|
50
|
+
onChange(open);
|
|
51
|
+
} })) }));
|
|
52
|
+
}
|
|
53
|
+
export default CollapsibleStep;
|