@beinformed/ui 1.59.21 → 1.59.22
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/CHANGELOG.md +7 -0
- package/esm/hooks/useI18n.d.ts +13 -0
- package/esm/hooks/useModelCatalog.d.ts +32 -0
- package/esm/i18n/Locales.d.ts +59 -0
- package/esm/models/actions/ActionModel.d.ts +82 -0
- package/esm/models/application/ApplicationModel.d.ts +48 -0
- package/esm/models/attributes/AttributeCollection.d.ts +102 -0
- package/esm/models/attributes/AttributeContent.d.ts +64 -0
- package/esm/models/attributes/AttributeDataHelper.d.ts +67 -0
- package/esm/models/attributes/AttributeModel.d.ts +398 -0
- package/esm/models/attributes/BooleanAttributeModel.d.ts +69 -0
- package/esm/models/attributes/ChoiceAttributeModel.d.ts +85 -0
- package/esm/models/attributes/ChoiceAttributeOptionCollection.d.ts +81 -0
- package/esm/models/attributes/ChoiceAttributeOptionModel.d.ts +151 -0
- package/esm/models/attributes/DatetimeAttributeModel.d.ts +85 -0
- package/esm/models/attributes/PasswordAttributeModel.d.ts +62 -0
- package/esm/models/attributes/UploadAttributeModel.d.ts +60 -0
- package/esm/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +65 -0
- package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +50 -0
- package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -0
- package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -0
- package/esm/models/attributes/input-constraints/RangeConstraint.d.ts +51 -0
- package/esm/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -0
- package/esm/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -0
- package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -0
- package/esm/models/base/BaseCollection.d.ts +89 -0
- package/esm/models/base/BaseModel.d.ts +78 -0
- package/esm/models/base/ResourceModel.d.ts +102 -0
- package/esm/models/caseview/CaseViewModel.d.ts +46 -0
- package/esm/models/concepts/BusinessScenarioModel.d.ts +20 -0
- package/esm/models/concepts/ConceptDetailModel.d.ts +86 -0
- package/esm/models/concepts/ConceptLinkModel.d.ts +70 -0
- package/esm/models/concepts/ConceptRelationCollection.d.ts +36 -0
- package/esm/models/concepts/ConceptRelationModel.d.ts +61 -0
- package/esm/models/concepts/ConceptTypeDetailModel.d.ts +54 -0
- package/esm/models/content/ContentLinkModel.d.ts +85 -0
- package/esm/models/content/ContentModel.d.ts +80 -0
- package/esm/models/content/ContentTOCModel.d.ts +41 -0
- package/esm/models/content/SectionModel.d.ts +76 -0
- package/esm/models/content/SubSectionModel.d.ts +69 -0
- package/esm/models/contentconfiguration/ContentConfiguration.d.ts +28 -0
- package/esm/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -0
- package/esm/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -0
- package/esm/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -0
- package/esm/models/detail/DetailModel.d.ts +80 -0
- package/esm/models/error/ErrorCollection.d.ts +51 -0
- package/esm/models/error/ErrorResponse.d.ts +156 -0
- package/esm/models/filters/BaseFilterModel.d.ts +101 -0
- package/esm/models/form/FormModel.d.ts +350 -0
- package/esm/models/form/FormObjectModel.d.ts +209 -0
- package/esm/models/grouping/GroupingModel.d.ts +86 -0
- package/esm/models/href/Href.d.ts +218 -0
- package/esm/models/href/ListHref.d.ts +64 -0
- package/esm/models/layouthint/LayoutHintCollection.d.ts +43 -0
- package/esm/models/links/LinkCollection.d.ts +71 -0
- package/esm/models/links/LinkModel.d.ts +93 -0
- package/esm/models/list/ListDetailModel.d.ts +69 -0
- package/esm/models/list/ListHeaderModel.d.ts +53 -0
- package/esm/models/list/ListModel.d.ts +143 -0
- package/esm/models/paging/PagesizeModel.d.ts +25 -0
- package/esm/models/panels/GroupingPanelModel.d.ts +49 -0
- package/esm/models/sorting/SortOptionModel.d.ts +48 -0
- package/esm/models/sorting/SortingModel.d.ts +42 -0
- package/esm/models/tab/TabModel.d.ts +53 -0
- package/esm/models/user/UserServicesModel.d.ts +39 -0
- package/esm/modularui/Authenticate.d.ts +46 -0
- package/esm/modularui/ModularUIRequest.d.ts +207 -0
- package/esm/modularui/ModularUIResponse.d.ts +78 -0
- package/esm/react-server/serverUtil.d.ts +46 -0
- package/esm/react-theme/utils/background.d.ts +4 -0
- package/esm/react-theme/utils/colors.d.ts +9 -0
- package/esm/react-theme/utils/contrast.d.ts +18 -0
- package/esm/react-theme/utils/corners.d.ts +3 -0
- package/esm/react-theme/utils/spacers.d.ts +9 -0
- package/esm/react-theme/utils/themeProps.d.ts +7 -0
- package/esm/redux/_modularui/ModularUIActions.d.ts +26 -0
- package/esm/redux/_modularui/types.d.ts +83 -0
- package/esm/redux/actions/Notification.d.ts +10 -0
- package/esm/redux/store/beforeRenderHooks.d.ts +7 -0
- package/esm/redux/store/configureStore.d.ts +9 -0
- package/lib/builder/index.cjs +18 -0
- package/lib/builder/index.cjs.map +1 -0
- package/lib/builder/index.d.cts +1 -0
- package/lib/builder/mergeLayoutHintConfigurations.cjs +60 -0
- package/lib/builder/mergeLayoutHintConfigurations.cjs.map +1 -0
- package/lib/builder/mergeLayoutHintConfigurations.d.cts +1 -0
- package/lib/constants/Constants.cjs +189 -0
- package/lib/constants/Constants.cjs.map +1 -0
- package/lib/constants/Constants.d.cts +158 -0
- package/lib/constants/LayoutHintConfig.cjs +173 -0
- package/lib/constants/LayoutHintConfig.cjs.map +1 -0
- package/lib/constants/LayoutHintConfig.d.cts +267 -0
- package/lib/constants/LayoutHints.cjs +135 -0
- package/lib/constants/LayoutHints.cjs.map +1 -0
- package/lib/constants/LayoutHints.d.cts +83 -0
- package/lib/constants/Settings.cjs +219 -0
- package/lib/constants/Settings.cjs.map +1 -0
- package/lib/constants/Settings.d.cts +32 -0
- package/lib/constants/index.cjs +40 -0
- package/lib/constants/index.cjs.map +1 -0
- package/lib/constants/index.d.cts +3 -0
- package/lib/exceptions/ConfigurationException.cjs +17 -0
- package/lib/exceptions/ConfigurationException.cjs.map +1 -0
- package/lib/exceptions/ConfigurationException.d.cts +7 -0
- package/lib/exceptions/FetchException.cjs +72 -0
- package/lib/exceptions/FetchException.cjs.map +1 -0
- package/lib/exceptions/FetchException.d.cts +31 -0
- package/lib/exceptions/IllegalArgumentException.cjs +17 -0
- package/lib/exceptions/IllegalArgumentException.cjs.map +1 -0
- package/lib/exceptions/IllegalArgumentException.d.cts +7 -0
- package/lib/exceptions/IllegalReturnException.cjs +16 -0
- package/lib/exceptions/IllegalReturnException.cjs.map +1 -0
- package/lib/exceptions/IllegalReturnException.d.cts +6 -0
- package/lib/exceptions/IllegalStateException.cjs +17 -0
- package/lib/exceptions/IllegalStateException.cjs.map +1 -0
- package/lib/exceptions/IllegalStateException.d.cts +7 -0
- package/lib/exceptions/JsonParseException.cjs +17 -0
- package/lib/exceptions/JsonParseException.cjs.map +1 -0
- package/lib/exceptions/JsonParseException.d.cts +7 -0
- package/lib/exceptions/MissingPropertyException.cjs +17 -0
- package/lib/exceptions/MissingPropertyException.cjs.map +1 -0
- package/lib/exceptions/MissingPropertyException.d.cts +7 -0
- package/lib/exceptions/NetworkException.cjs +23 -0
- package/lib/exceptions/NetworkException.cjs.map +1 -0
- package/lib/exceptions/NetworkException.d.cts +9 -0
- package/lib/exceptions/NotAllowedUriException.cjs +17 -0
- package/lib/exceptions/NotAllowedUriException.cjs.map +1 -0
- package/lib/exceptions/NotAllowedUriException.d.cts +7 -0
- package/lib/exceptions/NotFoundException.cjs +26 -0
- package/lib/exceptions/NotFoundException.cjs.map +1 -0
- package/lib/exceptions/NotFoundException.d.cts +10 -0
- package/lib/exceptions/ServerRequestException.cjs +17 -0
- package/lib/exceptions/ServerRequestException.cjs.map +1 -0
- package/lib/exceptions/ServerRequestException.d.cts +7 -0
- package/lib/exceptions/ThemePropertyException.cjs +17 -0
- package/lib/exceptions/ThemePropertyException.cjs.map +1 -0
- package/lib/exceptions/ThemePropertyException.d.cts +7 -0
- package/lib/exceptions/TimeoutException.cjs +17 -0
- package/lib/exceptions/TimeoutException.cjs.map +1 -0
- package/lib/exceptions/TimeoutException.d.cts +7 -0
- package/lib/exceptions/UnauthorizedException.cjs +25 -0
- package/lib/exceptions/UnauthorizedException.cjs.map +1 -0
- package/lib/exceptions/UnauthorizedException.d.cts +11 -0
- package/lib/exceptions/UnsupportedOperationException.cjs +17 -0
- package/lib/exceptions/UnsupportedOperationException.cjs.map +1 -0
- package/lib/exceptions/UnsupportedOperationException.d.cts +7 -0
- package/lib/exceptions/index.cjs +112 -0
- package/lib/exceptions/index.cjs.map +1 -0
- package/lib/exceptions/index.d.cts +15 -0
- package/lib/hooks/index.cjs +183 -0
- package/lib/hooks/index.cjs.map +1 -0
- package/lib/hooks/index.d.cts +16 -0
- package/lib/hooks/useAllFormsOnModel.cjs +81 -0
- package/lib/hooks/useAllFormsOnModel.cjs.map +1 -0
- package/lib/hooks/useAllFormsOnModel.d.cts +7 -0
- package/lib/hooks/useAuthentication.cjs +66 -0
- package/lib/hooks/useAuthentication.cjs.map +1 -0
- package/lib/hooks/useAuthentication.d.cts +16 -0
- package/lib/hooks/useContent.cjs +49 -0
- package/lib/hooks/useContent.cjs.map +1 -0
- package/lib/hooks/useContent.d.cts +3 -0
- package/lib/hooks/useDeepCompareEffect.cjs +35 -0
- package/lib/hooks/useDeepCompareEffect.cjs.map +1 -0
- package/lib/hooks/useDeepCompareEffect.d.cts +6 -0
- package/lib/hooks/useForm.cjs +98 -0
- package/lib/hooks/useForm.cjs.map +1 -0
- package/lib/hooks/useForm.d.cts +21 -0
- package/lib/hooks/useI18n.cjs +42 -0
- package/lib/hooks/useI18n.cjs.map +1 -0
- package/lib/hooks/useI18n.d.cts +13 -0
- package/lib/hooks/useModal.cjs +43 -0
- package/lib/hooks/useModal.cjs.map +1 -0
- package/lib/hooks/useModal.d.cts +12 -0
- package/lib/hooks/useModelCatalog.cjs +179 -0
- package/lib/hooks/useModelCatalog.cjs.map +1 -0
- package/lib/hooks/useModelCatalog.d.cts +32 -0
- package/lib/hooks/useModels.cjs +45 -0
- package/lib/hooks/useModels.cjs.map +1 -0
- package/lib/hooks/useModels.d.cts +10 -0
- package/lib/hooks/useModularUI.cjs +69 -0
- package/lib/hooks/useModularUI.cjs.map +1 -0
- package/lib/hooks/useModularUI.d.cts +3 -0
- package/lib/hooks/useModularUIBasic.cjs +81 -0
- package/lib/hooks/useModularUIBasic.cjs.map +1 -0
- package/lib/hooks/useModularUIBasic.d.cts +9 -0
- package/lib/hooks/useModularUIModel.cjs +128 -0
- package/lib/hooks/useModularUIModel.cjs.map +1 -0
- package/lib/hooks/useModularUIModel.d.cts +27 -0
- package/lib/hooks/useModularUIRequest.cjs +25 -0
- package/lib/hooks/useModularUIRequest.cjs.map +1 -0
- package/lib/hooks/useModularUIRequest.d.cts +4 -0
- package/lib/hooks/useNotification.cjs +39 -0
- package/lib/hooks/useNotification.cjs.map +1 -0
- package/lib/hooks/useNotification.d.cts +8 -0
- package/lib/hooks/usePreference.cjs +23 -0
- package/lib/hooks/usePreference.cjs.map +1 -0
- package/lib/hooks/usePreference.d.cts +2 -0
- package/lib/hooks/useProgressIndicator.cjs +23 -0
- package/lib/hooks/useProgressIndicator.cjs.map +1 -0
- package/lib/hooks/useProgressIndicator.d.cts +9 -0
- package/lib/hooks/useRouter.cjs +42 -0
- package/lib/hooks/useRouter.cjs.map +1 -0
- package/lib/hooks/useRouter.d.cts +23 -0
- package/lib/i18n/Locale.cjs +128 -0
- package/lib/i18n/Locale.cjs.map +1 -0
- package/lib/i18n/Locale.d.cts +53 -0
- package/lib/i18n/Locales.cjs +140 -0
- package/lib/i18n/Locales.cjs.map +1 -0
- package/lib/i18n/Locales.d.cts +59 -0
- package/lib/i18n/Message.cjs +50 -0
- package/lib/i18n/Message.cjs.map +1 -0
- package/lib/i18n/Message.d.cts +6 -0
- package/lib/i18n/index.cjs +57 -0
- package/lib/i18n/index.cjs.map +1 -0
- package/lib/i18n/index.d.cts +5 -0
- package/lib/i18n/languages.cjs +212 -0
- package/lib/i18n/languages.cjs.map +1 -0
- package/lib/i18n/languages.d.cts +215 -0
- package/lib/i18n/translations/beinformed_error_messages_en.nl.cjs +104 -0
- package/lib/i18n/translations/beinformed_error_messages_en.nl.cjs.map +1 -0
- package/lib/i18n/translations/beinformed_error_messages_en.nl.d.cts +97 -0
- package/lib/i18n/translations/beinformed_error_messages_nl.nl.cjs +104 -0
- package/lib/i18n/translations/beinformed_error_messages_nl.nl.cjs.map +1 -0
- package/lib/i18n/translations/beinformed_error_messages_nl.nl.d.cts +97 -0
- package/lib/i18n/types.cjs +2 -0
- package/lib/i18n/types.cjs.map +1 -0
- package/lib/i18n/types.d.cts +11 -0
- package/lib/i18n/withMessage.cjs +27 -0
- package/lib/i18n/withMessage.cjs.map +1 -0
- package/lib/i18n/withMessage.d.cts +3 -0
- package/lib/index.cjs +73 -0
- package/lib/index.cjs.map +1 -0
- package/lib/index.d.cts +6 -0
- package/lib/models/actions/ActionCollection.cjs +90 -0
- package/lib/models/actions/ActionCollection.cjs.map +1 -0
- package/lib/models/actions/ActionCollection.d.cts +30 -0
- package/lib/models/actions/ActionModel.cjs +194 -0
- package/lib/models/actions/ActionModel.cjs.map +1 -0
- package/lib/models/actions/ActionModel.d.cts +82 -0
- package/lib/models/application/ApplicationModel.cjs +133 -0
- package/lib/models/application/ApplicationModel.cjs.map +1 -0
- package/lib/models/application/ApplicationModel.d.cts +48 -0
- package/lib/models/attributes/AttributeCollection.cjs +282 -0
- package/lib/models/attributes/AttributeCollection.cjs.map +1 -0
- package/lib/models/attributes/AttributeCollection.d.cts +102 -0
- package/lib/models/attributes/AttributeContent.cjs +203 -0
- package/lib/models/attributes/AttributeContent.cjs.map +1 -0
- package/lib/models/attributes/AttributeContent.d.cts +64 -0
- package/lib/models/attributes/AttributeDataHelper.cjs +267 -0
- package/lib/models/attributes/AttributeDataHelper.cjs.map +1 -0
- package/lib/models/attributes/AttributeDataHelper.d.cts +67 -0
- package/lib/models/attributes/AttributeModel.cjs +824 -0
- package/lib/models/attributes/AttributeModel.cjs.map +1 -0
- package/lib/models/attributes/AttributeModel.d.cts +398 -0
- package/lib/models/attributes/AttributeSetModel.cjs +105 -0
- package/lib/models/attributes/AttributeSetModel.cjs.map +1 -0
- package/lib/models/attributes/AttributeSetModel.d.cts +36 -0
- package/lib/models/attributes/BooleanAttributeModel.cjs +295 -0
- package/lib/models/attributes/BooleanAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/BooleanAttributeModel.d.cts +69 -0
- package/lib/models/attributes/CaptchaAttributeModel.cjs +60 -0
- package/lib/models/attributes/CaptchaAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/CaptchaAttributeModel.d.cts +19 -0
- package/lib/models/attributes/ChoiceAttributeModel.cjs +411 -0
- package/lib/models/attributes/ChoiceAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/ChoiceAttributeModel.d.cts +85 -0
- package/lib/models/attributes/ChoiceAttributeOptionCollection.cjs +300 -0
- package/lib/models/attributes/ChoiceAttributeOptionCollection.cjs.map +1 -0
- package/lib/models/attributes/ChoiceAttributeOptionCollection.d.cts +81 -0
- package/lib/models/attributes/ChoiceAttributeOptionModel.cjs +342 -0
- package/lib/models/attributes/ChoiceAttributeOptionModel.cjs.map +1 -0
- package/lib/models/attributes/ChoiceAttributeOptionModel.d.cts +151 -0
- package/lib/models/attributes/CompositeAttributeChildCollection.cjs +189 -0
- package/lib/models/attributes/CompositeAttributeChildCollection.cjs.map +1 -0
- package/lib/models/attributes/CompositeAttributeChildCollection.d.cts +57 -0
- package/lib/models/attributes/CompositeAttributeModel.cjs +380 -0
- package/lib/models/attributes/CompositeAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/CompositeAttributeModel.d.cts +42 -0
- package/lib/models/attributes/DatetimeAttributeModel.cjs +465 -0
- package/lib/models/attributes/DatetimeAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/DatetimeAttributeModel.d.cts +85 -0
- package/lib/models/attributes/HelptextAttributeModel.cjs +55 -0
- package/lib/models/attributes/HelptextAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/HelptextAttributeModel.d.cts +16 -0
- package/lib/models/attributes/LabelAttributeModel.cjs +41 -0
- package/lib/models/attributes/LabelAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/LabelAttributeModel.d.cts +12 -0
- package/lib/models/attributes/MemoAttributeModel.cjs +49 -0
- package/lib/models/attributes/MemoAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/MemoAttributeModel.d.cts +14 -0
- package/lib/models/attributes/MoneyAttributeModel.cjs +49 -0
- package/lib/models/attributes/MoneyAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/MoneyAttributeModel.d.cts +14 -0
- package/lib/models/attributes/NumberAttributeModel.cjs +201 -0
- package/lib/models/attributes/NumberAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/NumberAttributeModel.d.cts +49 -0
- package/lib/models/attributes/PasswordAttributeModel.cjs +217 -0
- package/lib/models/attributes/PasswordAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/PasswordAttributeModel.d.cts +62 -0
- package/lib/models/attributes/StringAttributeModel.cjs +284 -0
- package/lib/models/attributes/StringAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/StringAttributeModel.d.cts +65 -0
- package/lib/models/attributes/UploadAttributeModel.cjs +223 -0
- package/lib/models/attributes/UploadAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/UploadAttributeModel.d.cts +60 -0
- package/lib/models/attributes/XMLAttributeModel.cjs +53 -0
- package/lib/models/attributes/XMLAttributeModel.cjs.map +1 -0
- package/lib/models/attributes/XMLAttributeModel.d.cts +10 -0
- package/lib/models/attributes/_createAttribute.cjs +93 -0
- package/lib/models/attributes/_createAttribute.cjs.map +1 -0
- package/lib/models/attributes/_createAttribute.d.cts +7 -0
- package/lib/models/attributes/input-constraints/BSNConstraint.cjs +72 -0
- package/lib/models/attributes/input-constraints/BSNConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/BSNConstraint.d.cts +26 -0
- package/lib/models/attributes/input-constraints/ConstraintCollection.cjs +50 -0
- package/lib/models/attributes/input-constraints/ConstraintCollection.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/ConstraintCollection.d.cts +24 -0
- package/lib/models/attributes/input-constraints/ConstraintModel.cjs +74 -0
- package/lib/models/attributes/input-constraints/ConstraintModel.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/ConstraintModel.d.cts +34 -0
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.cjs +205 -0
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.d.cts +65 -0
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.cjs +76 -0
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.cts +36 -0
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.cjs +76 -0
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.cts +36 -0
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.cjs +122 -0
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.d.cts +50 -0
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.cjs +66 -0
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.d.cts +33 -0
- package/lib/models/attributes/input-constraints/FileSizeConstraint.cjs +98 -0
- package/lib/models/attributes/input-constraints/FileSizeConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/FileSizeConstraint.d.cts +42 -0
- package/lib/models/attributes/input-constraints/IBANConstraint.cjs +49 -0
- package/lib/models/attributes/input-constraints/IBANConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/IBANConstraint.d.cts +23 -0
- package/lib/models/attributes/input-constraints/MandatoryConstraint.cjs +53 -0
- package/lib/models/attributes/input-constraints/MandatoryConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/MandatoryConstraint.d.cts +23 -0
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.cjs +85 -0
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.d.cts +36 -0
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.cjs +177 -0
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.d.cts +61 -0
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.cjs +132 -0
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.d.cts +52 -0
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.cjs +126 -0
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.d.cts +46 -0
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.cjs +72 -0
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.d.cts +36 -0
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.cjs +47 -0
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.cts +23 -0
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.cjs +64 -0
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.cts +32 -0
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.cjs +64 -0
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.cts +32 -0
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.cjs +78 -0
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.cts +35 -0
- package/lib/models/attributes/input-constraints/RangeConstraint.cjs +143 -0
- package/lib/models/attributes/input-constraints/RangeConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/RangeConstraint.d.cts +51 -0
- package/lib/models/attributes/input-constraints/RegexConstraint.cjs +67 -0
- package/lib/models/attributes/input-constraints/RegexConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/RegexConstraint.d.cts +37 -0
- package/lib/models/attributes/input-constraints/StringLengthConstraint.cjs +178 -0
- package/lib/models/attributes/input-constraints/StringLengthConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/StringLengthConstraint.d.cts +46 -0
- package/lib/models/attributes/input-constraints/XMLConstraint.cjs +62 -0
- package/lib/models/attributes/input-constraints/XMLConstraint.cjs.map +1 -0
- package/lib/models/attributes/input-constraints/XMLConstraint.d.cts +26 -0
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.cjs +66 -0
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.cjs.map +1 -0
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.d.cts +45 -0
- package/lib/models/attributes/layouthint-rules/DependentAttribute.cjs +200 -0
- package/lib/models/attributes/layouthint-rules/DependentAttribute.cjs.map +1 -0
- package/lib/models/attributes/layouthint-rules/DependentAttribute.d.cts +57 -0
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.cjs +88 -0
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.cjs.map +1 -0
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.cts +27 -0
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.cjs +51 -0
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.cjs.map +1 -0
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.cts +17 -0
- package/lib/models/base/BaseCollection.cjs +186 -0
- package/lib/models/base/BaseCollection.cjs.map +1 -0
- package/lib/models/base/BaseCollection.d.cts +89 -0
- package/lib/models/base/BaseModel.cjs +149 -0
- package/lib/models/base/BaseModel.cjs.map +1 -0
- package/lib/models/base/BaseModel.d.cts +78 -0
- package/lib/models/base/ResourceCollection.cjs +41 -0
- package/lib/models/base/ResourceCollection.cjs.map +1 -0
- package/lib/models/base/ResourceCollection.d.cts +20 -0
- package/lib/models/base/ResourceModel.cjs +209 -0
- package/lib/models/base/ResourceModel.cjs.map +1 -0
- package/lib/models/base/ResourceModel.d.cts +102 -0
- package/lib/models/caseview/CaseViewModel.cjs +163 -0
- package/lib/models/caseview/CaseViewModel.cjs.map +1 -0
- package/lib/models/caseview/CaseViewModel.d.cts +46 -0
- package/lib/models/concepts/BusinessScenarioModel.cjs +122 -0
- package/lib/models/concepts/BusinessScenarioModel.cjs.map +1 -0
- package/lib/models/concepts/BusinessScenarioModel.d.cts +20 -0
- package/lib/models/concepts/ConceptDetailModel.cjs +281 -0
- package/lib/models/concepts/ConceptDetailModel.cjs.map +1 -0
- package/lib/models/concepts/ConceptDetailModel.d.cts +86 -0
- package/lib/models/concepts/ConceptIndexModel.cjs +150 -0
- package/lib/models/concepts/ConceptIndexModel.cjs.map +1 -0
- package/lib/models/concepts/ConceptIndexModel.d.cts +44 -0
- package/lib/models/concepts/ConceptLinkModel.cjs +152 -0
- package/lib/models/concepts/ConceptLinkModel.cjs.map +1 -0
- package/lib/models/concepts/ConceptLinkModel.d.cts +70 -0
- package/lib/models/concepts/ConceptRelationCollection.cjs +82 -0
- package/lib/models/concepts/ConceptRelationCollection.cjs.map +1 -0
- package/lib/models/concepts/ConceptRelationCollection.d.cts +36 -0
- package/lib/models/concepts/ConceptRelationModel.cjs +115 -0
- package/lib/models/concepts/ConceptRelationModel.cjs.map +1 -0
- package/lib/models/concepts/ConceptRelationModel.d.cts +61 -0
- package/lib/models/concepts/ConceptTypeDetailModel.cjs +128 -0
- package/lib/models/concepts/ConceptTypeDetailModel.cjs.map +1 -0
- package/lib/models/concepts/ConceptTypeDetailModel.d.cts +54 -0
- package/lib/models/concepts/SourceReferenceCollection.cjs +35 -0
- package/lib/models/concepts/SourceReferenceCollection.cjs.map +1 -0
- package/lib/models/concepts/SourceReferenceCollection.d.cts +14 -0
- package/lib/models/concepts/SourceReferenceModel.cjs +73 -0
- package/lib/models/concepts/SourceReferenceModel.cjs.map +1 -0
- package/lib/models/concepts/SourceReferenceModel.d.cts +32 -0
- package/lib/models/content/ContentIndexModel.cjs +142 -0
- package/lib/models/content/ContentIndexModel.cjs.map +1 -0
- package/lib/models/content/ContentIndexModel.d.cts +41 -0
- package/lib/models/content/ContentLinkModel.cjs +193 -0
- package/lib/models/content/ContentLinkModel.cjs.map +1 -0
- package/lib/models/content/ContentLinkModel.d.cts +85 -0
- package/lib/models/content/ContentModel.cjs +207 -0
- package/lib/models/content/ContentModel.cjs.map +1 -0
- package/lib/models/content/ContentModel.d.cts +80 -0
- package/lib/models/content/ContentTOCModel.cjs +163 -0
- package/lib/models/content/ContentTOCModel.cjs.map +1 -0
- package/lib/models/content/ContentTOCModel.d.cts +41 -0
- package/lib/models/content/ContentTypeModel.cjs +74 -0
- package/lib/models/content/ContentTypeModel.cjs.map +1 -0
- package/lib/models/content/ContentTypeModel.d.cts +26 -0
- package/lib/models/content/SectionModel.cjs +180 -0
- package/lib/models/content/SectionModel.cjs.map +1 -0
- package/lib/models/content/SectionModel.d.cts +76 -0
- package/lib/models/content/SubSectionModel.cjs +167 -0
- package/lib/models/content/SubSectionModel.cjs.map +1 -0
- package/lib/models/content/SubSectionModel.d.cts +69 -0
- package/lib/models/contentconfiguration/ContentConfiguration.cjs +75 -0
- package/lib/models/contentconfiguration/ContentConfiguration.cjs.map +1 -0
- package/lib/models/contentconfiguration/ContentConfiguration.d.cts +28 -0
- package/lib/models/contentconfiguration/ContentConfigurationElements.cjs +143 -0
- package/lib/models/contentconfiguration/ContentConfigurationElements.cjs.map +1 -0
- package/lib/models/contentconfiguration/ContentConfigurationElements.d.cts +47 -0
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.cjs +49 -0
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.cjs.map +1 -0
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.d.cts +16 -0
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.cjs +54 -0
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.cjs.map +1 -0
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.d.cts +22 -0
- package/lib/models/contentconfiguration/ContentConfigurationResults.cjs +103 -0
- package/lib/models/contentconfiguration/ContentConfigurationResults.cjs.map +1 -0
- package/lib/models/contentconfiguration/ContentConfigurationResults.d.cts +39 -0
- package/lib/models/detail/DetailModel.cjs +219 -0
- package/lib/models/detail/DetailModel.cjs.map +1 -0
- package/lib/models/detail/DetailModel.d.cts +80 -0
- package/lib/models/error/ErrorCollection.cjs +111 -0
- package/lib/models/error/ErrorCollection.cjs.map +1 -0
- package/lib/models/error/ErrorCollection.d.cts +51 -0
- package/lib/models/error/ErrorModel.cjs +81 -0
- package/lib/models/error/ErrorModel.cjs.map +1 -0
- package/lib/models/error/ErrorModel.d.cts +41 -0
- package/lib/models/error/ErrorResponse.cjs +304 -0
- package/lib/models/error/ErrorResponse.cjs.map +1 -0
- package/lib/models/error/ErrorResponse.d.cts +156 -0
- package/lib/models/filters/AssignmentFilterModel.cjs +161 -0
- package/lib/models/filters/AssignmentFilterModel.cjs.map +1 -0
- package/lib/models/filters/AssignmentFilterModel.d.cts +35 -0
- package/lib/models/filters/BaseFilterModel.cjs +210 -0
- package/lib/models/filters/BaseFilterModel.cjs.map +1 -0
- package/lib/models/filters/BaseFilterModel.d.cts +101 -0
- package/lib/models/filters/ConceptIndexFilterModel.cjs +36 -0
- package/lib/models/filters/ConceptIndexFilterModel.cjs.map +1 -0
- package/lib/models/filters/ConceptIndexFilterModel.d.cts +6 -0
- package/lib/models/filters/FilterCollection.cjs +155 -0
- package/lib/models/filters/FilterCollection.cjs.map +1 -0
- package/lib/models/filters/FilterCollection.d.cts +49 -0
- package/lib/models/filters/FilterModel.cjs +13 -0
- package/lib/models/filters/FilterModel.cjs.map +1 -0
- package/lib/models/filters/FilterModel.d.cts +5 -0
- package/lib/models/filters/RangeFilterModel.cjs +44 -0
- package/lib/models/filters/RangeFilterModel.cjs.map +1 -0
- package/lib/models/filters/RangeFilterModel.d.cts +6 -0
- package/lib/models/filters/StringFilterModel.cjs +147 -0
- package/lib/models/filters/StringFilterModel.cjs.map +1 -0
- package/lib/models/filters/StringFilterModel.d.cts +30 -0
- package/lib/models/form/FormModel.cjs +1038 -0
- package/lib/models/form/FormModel.cjs.map +1 -0
- package/lib/models/form/FormModel.d.cts +350 -0
- package/lib/models/form/FormObjectModel.cjs +474 -0
- package/lib/models/form/FormObjectModel.cjs.map +1 -0
- package/lib/models/form/FormObjectModel.d.cts +209 -0
- package/lib/models/grouping/GroupingModel.cjs +191 -0
- package/lib/models/grouping/GroupingModel.cjs.map +1 -0
- package/lib/models/grouping/GroupingModel.d.cts +86 -0
- package/lib/models/href/Href.cjs +496 -0
- package/lib/models/href/Href.cjs.map +1 -0
- package/lib/models/href/Href.d.cts +218 -0
- package/lib/models/href/ListHref.cjs +135 -0
- package/lib/models/href/ListHref.cjs.map +1 -0
- package/lib/models/href/ListHref.d.cts +64 -0
- package/lib/models/index.cjs +687 -0
- package/lib/models/index.cjs.map +1 -0
- package/lib/models/index.d.cts +96 -0
- package/lib/models/layouthint/LayoutHintCollection.cjs +118 -0
- package/lib/models/layouthint/LayoutHintCollection.cjs.map +1 -0
- package/lib/models/layouthint/LayoutHintCollection.d.cts +43 -0
- package/lib/models/links/LinkCollection.cjs +171 -0
- package/lib/models/links/LinkCollection.cjs.map +1 -0
- package/lib/models/links/LinkCollection.d.cts +71 -0
- package/lib/models/links/LinkModel.cjs +216 -0
- package/lib/models/links/LinkModel.cjs.map +1 -0
- package/lib/models/links/LinkModel.d.cts +93 -0
- package/lib/models/links/normalizeLinkJSON.cjs +107 -0
- package/lib/models/links/normalizeLinkJSON.cjs.map +1 -0
- package/lib/models/links/normalizeLinkJSON.d.cts +9 -0
- package/lib/models/list/ListDetailModel.cjs +266 -0
- package/lib/models/list/ListDetailModel.cjs.map +1 -0
- package/lib/models/list/ListDetailModel.d.cts +69 -0
- package/lib/models/list/ListHeaderModel.cjs +95 -0
- package/lib/models/list/ListHeaderModel.cjs.map +1 -0
- package/lib/models/list/ListHeaderModel.d.cts +53 -0
- package/lib/models/list/ListItemCollection.cjs +67 -0
- package/lib/models/list/ListItemCollection.cjs.map +1 -0
- package/lib/models/list/ListItemCollection.d.cts +21 -0
- package/lib/models/list/ListItemModel.cjs +95 -0
- package/lib/models/list/ListItemModel.cjs.map +1 -0
- package/lib/models/list/ListItemModel.d.cts +35 -0
- package/lib/models/list/ListModel.cjs +385 -0
- package/lib/models/list/ListModel.cjs.map +1 -0
- package/lib/models/list/ListModel.d.cts +143 -0
- package/lib/models/lookup/LookupOptionCollection.cjs +45 -0
- package/lib/models/lookup/LookupOptionCollection.cjs.map +1 -0
- package/lib/models/lookup/LookupOptionCollection.d.cts +15 -0
- package/lib/models/lookup/LookupOptionsModel.cjs +71 -0
- package/lib/models/lookup/LookupOptionsModel.cjs.map +1 -0
- package/lib/models/lookup/LookupOptionsModel.d.cts +23 -0
- package/lib/models/modelcatalog/ModelCatalogModel.cjs +69 -0
- package/lib/models/modelcatalog/ModelCatalogModel.cjs.map +1 -0
- package/lib/models/modelcatalog/ModelCatalogModel.d.cts +23 -0
- package/lib/models/modelcatalog/ModelCategoryCollection.cjs +24 -0
- package/lib/models/modelcatalog/ModelCategoryCollection.cjs.map +1 -0
- package/lib/models/modelcatalog/ModelCategoryCollection.d.cts +11 -0
- package/lib/models/modelcatalog/ModelCategoryModel.cjs +60 -0
- package/lib/models/modelcatalog/ModelCategoryModel.cjs.map +1 -0
- package/lib/models/modelcatalog/ModelCategoryModel.d.cts +39 -0
- package/lib/models/paging/PagesizeModel.cjs +50 -0
- package/lib/models/paging/PagesizeModel.cjs.map +1 -0
- package/lib/models/paging/PagesizeModel.d.cts +25 -0
- package/lib/models/paging/PagingModel.cjs +95 -0
- package/lib/models/paging/PagingModel.cjs.map +1 -0
- package/lib/models/paging/PagingModel.d.cts +49 -0
- package/lib/models/panels/GroupingPanelModel.cjs +143 -0
- package/lib/models/panels/GroupingPanelModel.cjs.map +1 -0
- package/lib/models/panels/GroupingPanelModel.d.cts +49 -0
- package/lib/models/parameter/Parameter.cjs +108 -0
- package/lib/models/parameter/Parameter.cjs.map +1 -0
- package/lib/models/parameter/Parameter.d.cts +40 -0
- package/lib/models/process/ProcessStatusSettingsModel.cjs +85 -0
- package/lib/models/process/ProcessStatusSettingsModel.cjs.map +1 -0
- package/lib/models/process/ProcessStatusSettingsModel.d.cts +38 -0
- package/lib/models/resolveModel.cjs +57 -0
- package/lib/models/resolveModel.cjs.map +1 -0
- package/lib/models/resolveModel.d.cts +7 -0
- package/lib/models/search/CaseSearchModel.cjs +47 -0
- package/lib/models/search/CaseSearchModel.cjs.map +1 -0
- package/lib/models/search/CaseSearchModel.d.cts +14 -0
- package/lib/models/sorting/SortOptionModel.cjs +106 -0
- package/lib/models/sorting/SortOptionModel.cjs.map +1 -0
- package/lib/models/sorting/SortOptionModel.d.cts +48 -0
- package/lib/models/sorting/SortingModel.cjs +112 -0
- package/lib/models/sorting/SortingModel.cjs.map +1 -0
- package/lib/models/sorting/SortingModel.d.cts +42 -0
- package/lib/models/tab/TabModel.cjs +143 -0
- package/lib/models/tab/TabModel.cjs.map +1 -0
- package/lib/models/tab/TabModel.d.cts +53 -0
- package/lib/models/taskgroup/TaskGroupCollection.cjs +21 -0
- package/lib/models/taskgroup/TaskGroupCollection.cjs.map +1 -0
- package/lib/models/taskgroup/TaskGroupCollection.d.cts +12 -0
- package/lib/models/taskgroup/TaskGroupModel.cjs +87 -0
- package/lib/models/taskgroup/TaskGroupModel.cjs.map +1 -0
- package/lib/models/taskgroup/TaskGroupModel.d.cts +25 -0
- package/lib/models/types.cjs +2 -0
- package/lib/models/types.cjs.map +1 -0
- package/lib/models/types.d.cts +166 -0
- package/lib/models/user/UserModel.cjs +59 -0
- package/lib/models/user/UserModel.cjs.map +1 -0
- package/lib/models/user/UserModel.d.cts +18 -0
- package/lib/models/user/UserProfileModel.cjs +55 -0
- package/lib/models/user/UserProfileModel.cjs.map +1 -0
- package/lib/models/user/UserProfileModel.d.cts +17 -0
- package/lib/models/user/UserServicesModel.cjs +126 -0
- package/lib/models/user/UserServicesModel.cjs.map +1 -0
- package/lib/models/user/UserServicesModel.d.cts +39 -0
- package/lib/modularui/Authenticate.cjs +183 -0
- package/lib/modularui/Authenticate.cjs.map +1 -0
- package/lib/modularui/Authenticate.d.cts +46 -0
- package/lib/modularui/CaptchaRequest.cjs +71 -0
- package/lib/modularui/CaptchaRequest.cjs.map +1 -0
- package/lib/modularui/CaptchaRequest.d.cts +54 -0
- package/lib/modularui/ModularUIError.cjs +30 -0
- package/lib/modularui/ModularUIError.cjs.map +1 -0
- package/lib/modularui/ModularUIError.d.cts +10 -0
- package/lib/modularui/ModularUIRequest.cjs +716 -0
- package/lib/modularui/ModularUIRequest.cjs.map +1 -0
- package/lib/modularui/ModularUIRequest.d.cts +207 -0
- package/lib/modularui/ModularUIResponse.cjs +147 -0
- package/lib/modularui/ModularUIResponse.cjs.map +1 -0
- package/lib/modularui/ModularUIResponse.d.cts +78 -0
- package/lib/modularui/UploadRequest.cjs +103 -0
- package/lib/modularui/UploadRequest.cjs.map +1 -0
- package/lib/modularui/UploadRequest.d.cts +41 -0
- package/lib/modularui/index.cjs +42 -0
- package/lib/modularui/index.cjs.map +1 -0
- package/lib/modularui/index.d.cts +5 -0
- package/lib/modularui/types.cjs +2 -0
- package/lib/modularui/types.cjs.map +1 -0
- package/lib/modularui/types.d.cts +2 -0
- package/lib/react/ErrorBoundary.cjs +56 -0
- package/lib/react/ErrorBoundary.cjs.map +1 -0
- package/lib/react/ErrorBoundary.d.cts +31 -0
- package/lib/react/ErrorBoundaryFallback.cjs +41 -0
- package/lib/react/ErrorBoundaryFallback.cjs.map +1 -0
- package/lib/react/ErrorBoundaryFallback.d.cts +8 -0
- package/lib/react/index.cjs +29 -0
- package/lib/react/index.cjs.map +1 -0
- package/lib/react/index.d.cts +2 -0
- package/lib/react/utils.cjs +32 -0
- package/lib/react/utils.cjs.map +1 -0
- package/lib/react/utils.d.cts +5 -0
- package/lib/react-client/Init.cjs +44 -0
- package/lib/react-client/Init.cjs.map +1 -0
- package/lib/react-client/Init.d.cts +6 -0
- package/lib/react-client/client.cjs +216 -0
- package/lib/react-client/client.cjs.map +1 -0
- package/lib/react-client/client.d.cts +25 -0
- package/lib/react-client/contextPath.cjs +26 -0
- package/lib/react-client/contextPath.cjs.map +1 -0
- package/lib/react-client/contextPath.d.cts +1 -0
- package/lib/react-client/index.cjs +40 -0
- package/lib/react-client/index.cjs.map +1 -0
- package/lib/react-client/index.d.cts +3 -0
- package/lib/react-client/rehydrate.cjs +73 -0
- package/lib/react-client/rehydrate.cjs.map +1 -0
- package/lib/react-client/rehydrate.d.cts +5 -0
- package/lib/react-server/contextPath.cjs +10 -0
- package/lib/react-server/contextPath.cjs.map +1 -0
- package/lib/react-server/contextPath.d.cts +1 -0
- package/lib/react-server/createSSRComplete.cjs +61 -0
- package/lib/react-server/createSSRComplete.cjs.map +1 -0
- package/lib/react-server/createSSRComplete.d.cts +5 -0
- package/lib/react-server/htmlpage.cjs +54 -0
- package/lib/react-server/htmlpage.cjs.map +1 -0
- package/lib/react-server/htmlpage.d.cts +11 -0
- package/lib/react-server/index.cjs +82 -0
- package/lib/react-server/index.cjs.map +1 -0
- package/lib/react-server/index.d.cts +8 -0
- package/lib/react-server/renderSSRComplete.cjs +91 -0
- package/lib/react-server/renderSSRComplete.cjs.map +1 -0
- package/lib/react-server/renderSSRComplete.d.cts +13 -0
- package/lib/react-server/renderSSRMinimal.cjs +47 -0
- package/lib/react-server/renderSSRMinimal.cjs.map +1 -0
- package/lib/react-server/renderSSRMinimal.d.cts +11 -0
- package/lib/react-server/requestInformation.cjs +46 -0
- package/lib/react-server/requestInformation.cjs.map +1 -0
- package/lib/react-server/requestInformation.d.cts +6 -0
- package/lib/react-server/serverNoSSR.cjs +63 -0
- package/lib/react-server/serverNoSSR.cjs.map +1 -0
- package/lib/react-server/serverNoSSR.d.cts +15 -0
- package/lib/react-server/serverSSR.cjs +51 -0
- package/lib/react-server/serverSSR.cjs.map +1 -0
- package/lib/react-server/serverSSR.d.cts +15 -0
- package/lib/react-server/serverUtil.cjs +218 -0
- package/lib/react-server/serverUtil.cjs.map +1 -0
- package/lib/react-server/serverUtil.d.cts +46 -0
- package/lib/react-theme/ThemeProvider.cjs +33 -0
- package/lib/react-theme/ThemeProvider.cjs.map +1 -0
- package/lib/react-theme/ThemeProvider.d.cts +8 -0
- package/lib/react-theme/createTheme.cjs +115 -0
- package/lib/react-theme/createTheme.cjs.map +1 -0
- package/lib/react-theme/createTheme.d.cts +53 -0
- package/lib/react-theme/index.cjs +110 -0
- package/lib/react-theme/index.cjs.map +1 -0
- package/lib/react-theme/index.d.cts +10 -0
- package/lib/react-theme/types.cjs +2 -0
- package/lib/react-theme/types.cjs.map +1 -0
- package/lib/react-theme/types.d.cts +13 -0
- package/lib/react-theme/useTheme.cjs +15 -0
- package/lib/react-theme/useTheme.cjs.map +1 -0
- package/lib/react-theme/useTheme.d.cts +4 -0
- package/lib/react-theme/utils/background.cjs +21 -0
- package/lib/react-theme/utils/background.cjs.map +1 -0
- package/lib/react-theme/utils/background.d.cts +4 -0
- package/lib/react-theme/utils/colors.cjs +45 -0
- package/lib/react-theme/utils/colors.cjs.map +1 -0
- package/lib/react-theme/utils/colors.d.cts +9 -0
- package/lib/react-theme/utils/contrast.cjs +95 -0
- package/lib/react-theme/utils/contrast.cjs.map +1 -0
- package/lib/react-theme/utils/contrast.d.cts +18 -0
- package/lib/react-theme/utils/corners.cjs +34 -0
- package/lib/react-theme/utils/corners.cjs.map +1 -0
- package/lib/react-theme/utils/corners.d.cts +3 -0
- package/lib/react-theme/utils/spacers.cjs +89 -0
- package/lib/react-theme/utils/spacers.cjs.map +1 -0
- package/lib/react-theme/utils/spacers.d.cts +9 -0
- package/lib/react-theme/utils/themeProps.cjs +75 -0
- package/lib/react-theme/utils/themeProps.cjs.map +1 -0
- package/lib/react-theme/utils/themeProps.d.cts +7 -0
- package/lib/redux/_i18n/I18nActions.cjs +37 -0
- package/lib/redux/_i18n/I18nActions.cjs.map +1 -0
- package/lib/redux/_i18n/I18nActions.d.cts +7 -0
- package/lib/redux/_i18n/I18nReducer.cjs +78 -0
- package/lib/redux/_i18n/I18nReducer.cjs.map +1 -0
- package/lib/redux/_i18n/I18nReducer.d.cts +7 -0
- package/lib/redux/_i18n/index.cjs +29 -0
- package/lib/redux/_i18n/index.cjs.map +1 -0
- package/lib/redux/_i18n/index.d.cts +3 -0
- package/lib/redux/_i18n/types.cjs +2 -0
- package/lib/redux/_i18n/types.cjs.map +1 -0
- package/lib/redux/_i18n/types.d.cts +13 -0
- package/lib/redux/_modularui/ModularUIActions.cjs +168 -0
- package/lib/redux/_modularui/ModularUIActions.cjs.map +1 -0
- package/lib/redux/_modularui/ModularUIActions.d.cts +26 -0
- package/lib/redux/_modularui/ModularUIConnector.cjs +123 -0
- package/lib/redux/_modularui/ModularUIConnector.cjs.map +1 -0
- package/lib/redux/_modularui/ModularUIConnector.d.cts +7 -0
- package/lib/redux/_modularui/ModularUIMiddleware.cjs +107 -0
- package/lib/redux/_modularui/ModularUIMiddleware.cjs.map +1 -0
- package/lib/redux/_modularui/ModularUIMiddleware.d.cts +7 -0
- package/lib/redux/_modularui/ModularUIReducer.cjs +157 -0
- package/lib/redux/_modularui/ModularUIReducer.cjs.map +1 -0
- package/lib/redux/_modularui/ModularUIReducer.d.cts +7 -0
- package/lib/redux/_modularui/ModularUISelectors.cjs +270 -0
- package/lib/redux/_modularui/ModularUISelectors.cjs.map +1 -0
- package/lib/redux/_modularui/ModularUISelectors.d.cts +3 -0
- package/lib/redux/_modularui/ModularUIUtils.cjs +83 -0
- package/lib/redux/_modularui/ModularUIUtils.cjs.map +1 -0
- package/lib/redux/_modularui/ModularUIUtils.d.cts +5 -0
- package/lib/redux/_modularui/index.cjs +86 -0
- package/lib/redux/_modularui/index.cjs.map +1 -0
- package/lib/redux/_modularui/index.d.cts +8 -0
- package/lib/redux/_modularui/types.cjs +2 -0
- package/lib/redux/_modularui/types.cjs.map +1 -0
- package/lib/redux/_modularui/types.d.cts +83 -0
- package/lib/redux/_modularui/withModularUI.cjs +41 -0
- package/lib/redux/_modularui/withModularUI.cjs.map +1 -0
- package/lib/redux/_modularui/withModularUI.d.cts +3 -0
- package/lib/redux/_router/RouterActions.cjs +67 -0
- package/lib/redux/_router/RouterActions.cjs.map +1 -0
- package/lib/redux/_router/RouterActions.d.cts +10 -0
- package/lib/redux/_router/RouterConnectors.cjs +42 -0
- package/lib/redux/_router/RouterConnectors.cjs.map +1 -0
- package/lib/redux/_router/RouterConnectors.d.cts +6 -0
- package/lib/redux/_router/RouterMiddleware.cjs +38 -0
- package/lib/redux/_router/RouterMiddleware.cjs.map +1 -0
- package/lib/redux/_router/RouterMiddleware.d.cts +5 -0
- package/lib/redux/_router/RouterReducer.cjs +22 -0
- package/lib/redux/_router/RouterReducer.cjs.map +1 -0
- package/lib/redux/_router/RouterReducer.d.cts +7 -0
- package/lib/redux/_router/index.cjs +51 -0
- package/lib/redux/_router/index.cjs.map +1 -0
- package/lib/redux/_router/index.d.cts +5 -0
- package/lib/redux/_router/types.cjs +2 -0
- package/lib/redux/_router/types.cjs.map +1 -0
- package/lib/redux/_router/types.d.cts +35 -0
- package/lib/redux/actions/Application.cjs +38 -0
- package/lib/redux/actions/Application.cjs.map +1 -0
- package/lib/redux/actions/Application.d.cts +4 -0
- package/lib/redux/actions/Authorization.cjs +55 -0
- package/lib/redux/actions/Authorization.cjs.map +1 -0
- package/lib/redux/actions/Authorization.d.cts +3 -0
- package/lib/redux/actions/Error.cjs +74 -0
- package/lib/redux/actions/Error.cjs.map +1 -0
- package/lib/redux/actions/Error.d.cts +7 -0
- package/lib/redux/actions/Form.cjs +39 -0
- package/lib/redux/actions/Form.cjs.map +1 -0
- package/lib/redux/actions/Form.d.cts +5 -0
- package/lib/redux/actions/FormAttributeSet.cjs +69 -0
- package/lib/redux/actions/FormAttributeSet.cjs.map +1 -0
- package/lib/redux/actions/FormAttributeSet.d.cts +6 -0
- package/lib/redux/actions/FormAttributeSetRepeatable.cjs +35 -0
- package/lib/redux/actions/FormAttributeSetRepeatable.cjs.map +1 -0
- package/lib/redux/actions/FormAttributeSetRepeatable.d.cts +6 -0
- package/lib/redux/actions/FormAutosave.cjs +60 -0
- package/lib/redux/actions/FormAutosave.cjs.map +1 -0
- package/lib/redux/actions/FormAutosave.d.cts +3 -0
- package/lib/redux/actions/FormAutosubmit.cjs +38 -0
- package/lib/redux/actions/FormAutosubmit.cjs.map +1 -0
- package/lib/redux/actions/FormAutosubmit.d.cts +4 -0
- package/lib/redux/actions/FormAutoupdate.cjs +37 -0
- package/lib/redux/actions/FormAutoupdate.cjs.map +1 -0
- package/lib/redux/actions/FormAutoupdate.d.cts +4 -0
- package/lib/redux/actions/FormValidations.cjs +51 -0
- package/lib/redux/actions/FormValidations.cjs.map +1 -0
- package/lib/redux/actions/FormValidations.d.cts +3 -0
- package/lib/redux/actions/Modals.cjs +22 -0
- package/lib/redux/actions/Modals.cjs.map +1 -0
- package/lib/redux/actions/Modals.d.cts +4 -0
- package/lib/redux/actions/ModelCatalog.cjs +15 -0
- package/lib/redux/actions/ModelCatalog.cjs.map +1 -0
- package/lib/redux/actions/ModelCatalog.d.cts +2 -0
- package/lib/redux/actions/Notification.cjs +76 -0
- package/lib/redux/actions/Notification.cjs.map +1 -0
- package/lib/redux/actions/Notification.d.cts +10 -0
- package/lib/redux/actions/Preferences.cjs +128 -0
- package/lib/redux/actions/Preferences.cjs.map +1 -0
- package/lib/redux/actions/Preferences.d.cts +11 -0
- package/lib/redux/actions/ProgressIndicator.cjs +42 -0
- package/lib/redux/actions/ProgressIndicator.cjs.map +1 -0
- package/lib/redux/actions/ProgressIndicator.d.cts +8 -0
- package/lib/redux/actions/SignIn.cjs +90 -0
- package/lib/redux/actions/SignIn.cjs.map +1 -0
- package/lib/redux/actions/SignIn.d.cts +10 -0
- package/lib/redux/actions/SignOut.cjs +30 -0
- package/lib/redux/actions/SignOut.cjs.map +1 -0
- package/lib/redux/actions/SignOut.d.cts +4 -0
- package/lib/redux/actions/index.cjs +183 -0
- package/lib/redux/actions/index.cjs.map +1 -0
- package/lib/redux/actions/index.d.cts +16 -0
- package/lib/redux/connectors/Application.cjs +14 -0
- package/lib/redux/connectors/Application.cjs.map +1 -0
- package/lib/redux/connectors/Application.d.cts +4 -0
- package/lib/redux/connectors/Breadcrumb.cjs +16 -0
- package/lib/redux/connectors/Breadcrumb.cjs.map +1 -0
- package/lib/redux/connectors/Breadcrumb.d.cts +3 -0
- package/lib/redux/connectors/CaseView.cjs +19 -0
- package/lib/redux/connectors/CaseView.cjs.map +1 -0
- package/lib/redux/connectors/CaseView.d.cts +4 -0
- package/lib/redux/connectors/ConceptDetail.cjs +20 -0
- package/lib/redux/connectors/ConceptDetail.cjs.map +1 -0
- package/lib/redux/connectors/ConceptDetail.d.cts +4 -0
- package/lib/redux/connectors/ContentBrowser.cjs +19 -0
- package/lib/redux/connectors/ContentBrowser.cjs.map +1 -0
- package/lib/redux/connectors/ContentBrowser.d.cts +4 -0
- package/lib/redux/connectors/ContentDetail.cjs +20 -0
- package/lib/redux/connectors/ContentDetail.cjs.map +1 -0
- package/lib/redux/connectors/ContentDetail.d.cts +4 -0
- package/lib/redux/connectors/ContentDetailSection.cjs +22 -0
- package/lib/redux/connectors/ContentDetailSection.cjs.map +1 -0
- package/lib/redux/connectors/ContentDetailSection.d.cts +4 -0
- package/lib/redux/connectors/Form.cjs +43 -0
- package/lib/redux/connectors/Form.cjs.map +1 -0
- package/lib/redux/connectors/Form.d.cts +16 -0
- package/lib/redux/connectors/FormAttributeSet.cjs +27 -0
- package/lib/redux/connectors/FormAttributeSet.cjs.map +1 -0
- package/lib/redux/connectors/FormAttributeSet.d.cts +5 -0
- package/lib/redux/connectors/ListDetail.cjs +21 -0
- package/lib/redux/connectors/ListDetail.cjs.map +1 -0
- package/lib/redux/connectors/ListDetail.d.cts +4 -0
- package/lib/redux/connectors/Modal.cjs +27 -0
- package/lib/redux/connectors/Modal.cjs.map +1 -0
- package/lib/redux/connectors/Modal.d.cts +4 -0
- package/lib/redux/connectors/ModelCatalog.cjs +19 -0
- package/lib/redux/connectors/ModelCatalog.cjs.map +1 -0
- package/lib/redux/connectors/ModelCatalog.d.cts +4 -0
- package/lib/redux/connectors/Notification.cjs +22 -0
- package/lib/redux/connectors/Notification.cjs.map +1 -0
- package/lib/redux/connectors/Notification.d.cts +4 -0
- package/lib/redux/connectors/PanelRenderer.cjs +29 -0
- package/lib/redux/connectors/PanelRenderer.cjs.map +1 -0
- package/lib/redux/connectors/PanelRenderer.d.cts +4 -0
- package/lib/redux/connectors/Preferences.cjs +29 -0
- package/lib/redux/connectors/Preferences.cjs.map +1 -0
- package/lib/redux/connectors/Preferences.d.cts +2 -0
- package/lib/redux/connectors/Progress.cjs +19 -0
- package/lib/redux/connectors/Progress.cjs.map +1 -0
- package/lib/redux/connectors/Progress.d.cts +3 -0
- package/lib/redux/connectors/ProgressIndicator.cjs +19 -0
- package/lib/redux/connectors/ProgressIndicator.cjs.map +1 -0
- package/lib/redux/connectors/ProgressIndicator.d.cts +3 -0
- package/lib/redux/connectors/QuickSearch.cjs +27 -0
- package/lib/redux/connectors/QuickSearch.cjs.map +1 -0
- package/lib/redux/connectors/QuickSearch.d.cts +11 -0
- package/lib/redux/connectors/SignIn.cjs +24 -0
- package/lib/redux/connectors/SignIn.cjs.map +1 -0
- package/lib/redux/connectors/SignIn.d.cts +4 -0
- package/lib/redux/connectors/SignOut.cjs +20 -0
- package/lib/redux/connectors/SignOut.cjs.map +1 -0
- package/lib/redux/connectors/SignOut.d.cts +4 -0
- package/lib/redux/connectors/Tab.cjs +19 -0
- package/lib/redux/connectors/Tab.cjs.map +1 -0
- package/lib/redux/connectors/Tab.d.cts +4 -0
- package/lib/redux/connectors/index.cjs +153 -0
- package/lib/redux/connectors/index.cjs.map +1 -0
- package/lib/redux/connectors/index.d.cts +21 -0
- package/lib/redux/index.cjs +102 -0
- package/lib/redux/index.cjs.map +1 -0
- package/lib/redux/index.d.cts +9 -0
- package/lib/redux/reducers/AuthReducer.cjs +59 -0
- package/lib/redux/reducers/AuthReducer.cjs.map +1 -0
- package/lib/redux/reducers/AuthReducer.d.cts +8 -0
- package/lib/redux/reducers/ErrorReducer.cjs +22 -0
- package/lib/redux/reducers/ErrorReducer.cjs.map +1 -0
- package/lib/redux/reducers/ErrorReducer.d.cts +8 -0
- package/lib/redux/reducers/ModalsReducer.cjs +58 -0
- package/lib/redux/reducers/ModalsReducer.cjs.map +1 -0
- package/lib/redux/reducers/ModalsReducer.d.cts +8 -0
- package/lib/redux/reducers/ModelCatalogReducer.cjs +34 -0
- package/lib/redux/reducers/ModelCatalogReducer.cjs.map +1 -0
- package/lib/redux/reducers/ModelCatalogReducer.d.cts +8 -0
- package/lib/redux/reducers/NotificationReducer.cjs +43 -0
- package/lib/redux/reducers/NotificationReducer.cjs.map +1 -0
- package/lib/redux/reducers/NotificationReducer.d.cts +8 -0
- package/lib/redux/reducers/PreferencesReducer.cjs +30 -0
- package/lib/redux/reducers/PreferencesReducer.cjs.map +1 -0
- package/lib/redux/reducers/PreferencesReducer.d.cts +8 -0
- package/lib/redux/reducers/ProgressIndicatorReducer.cjs +55 -0
- package/lib/redux/reducers/ProgressIndicatorReducer.cjs.map +1 -0
- package/lib/redux/reducers/ProgressIndicatorReducer.d.cts +8 -0
- package/lib/redux/reducers/createReducer.cjs +33 -0
- package/lib/redux/reducers/createReducer.cjs.map +1 -0
- package/lib/redux/reducers/createReducer.d.cts +14 -0
- package/lib/redux/reducers/index.cjs +78 -0
- package/lib/redux/reducers/index.cjs.map +1 -0
- package/lib/redux/reducers/index.d.cts +8 -0
- package/lib/redux/selectors/i18n.cjs +20 -0
- package/lib/redux/selectors/i18n.cjs.map +1 -0
- package/lib/redux/selectors/i18n.d.cts +4 -0
- package/lib/redux/selectors/index.cjs +29 -0
- package/lib/redux/selectors/index.cjs.map +1 -0
- package/lib/redux/selectors/index.d.cts +2 -0
- package/lib/redux/selectors/modelcatalog.cjs +14 -0
- package/lib/redux/selectors/modelcatalog.cjs.map +1 -0
- package/lib/redux/selectors/modelcatalog.d.cts +2 -0
- package/lib/redux/store/beforeRenderHooks.cjs +24 -0
- package/lib/redux/store/beforeRenderHooks.cjs.map +1 -0
- package/lib/redux/store/beforeRenderHooks.d.cts +7 -0
- package/lib/redux/store/configureStore.cjs +42 -0
- package/lib/redux/store/configureStore.cjs.map +1 -0
- package/lib/redux/store/configureStore.d.cts +9 -0
- package/lib/redux/types.cjs +2 -0
- package/lib/redux/types.cjs.map +1 -0
- package/lib/redux/types.d.cts +113 -0
- package/lib/utils/browser/Cache.cjs +151 -0
- package/lib/utils/browser/Cache.cjs.map +1 -0
- package/lib/utils/browser/Cache.d.cts +45 -0
- package/lib/utils/browser/Cookies.cjs +38 -0
- package/lib/utils/browser/Cookies.cjs.map +1 -0
- package/lib/utils/browser/Cookies.d.cts +9 -0
- package/lib/utils/datetime/DateTimeUtil.cjs +648 -0
- package/lib/utils/datetime/DateTimeUtil.cjs.map +1 -0
- package/lib/utils/datetime/DateTimeUtil.d.cts +214 -0
- package/lib/utils/fetch/__mocks__/universalFetch.d.cts +3 -0
- package/lib/utils/fetch/serverFetch.cjs +32 -0
- package/lib/utils/fetch/serverFetch.cjs.map +1 -0
- package/lib/utils/fetch/serverFetch.d.cts +5 -0
- package/lib/utils/fetch/types.cjs +2 -0
- package/lib/utils/fetch/types.cjs.map +1 -0
- package/lib/utils/fetch/types.d.cts +44 -0
- package/lib/utils/fetch/universalFetch.cjs +94 -0
- package/lib/utils/fetch/universalFetch.cjs.map +1 -0
- package/lib/utils/fetch/universalFetch.d.cts +7 -0
- package/lib/utils/fetch/xhr.cjs +358 -0
- package/lib/utils/fetch/xhr.cjs.map +1 -0
- package/lib/utils/fetch/xhr.d.cts +5 -0
- package/lib/utils/helpers/checkResource.cjs +46 -0
- package/lib/utils/helpers/checkResource.cjs.map +1 -0
- package/lib/utils/helpers/checkResource.d.cts +3 -0
- package/lib/utils/helpers/createHash.cjs +28 -0
- package/lib/utils/helpers/createHash.cjs.map +1 -0
- package/lib/utils/helpers/createHash.d.cts +8 -0
- package/lib/utils/helpers/createHref.cjs +101 -0
- package/lib/utils/helpers/createHref.cjs.map +1 -0
- package/lib/utils/helpers/createHref.d.cts +8 -0
- package/lib/utils/helpers/createUUID.cjs +18 -0
- package/lib/utils/helpers/createUUID.cjs.map +1 -0
- package/lib/utils/helpers/createUUID.d.cts +4 -0
- package/lib/utils/helpers/index.cjs +102 -0
- package/lib/utils/helpers/index.cjs.map +1 -0
- package/lib/utils/helpers/index.d.cts +8 -0
- package/lib/utils/helpers/objects.cjs +36 -0
- package/lib/utils/helpers/objects.cjs.map +1 -0
- package/lib/utils/helpers/objects.d.cts +11 -0
- package/lib/utils/helpers/repositoryResource.cjs +26 -0
- package/lib/utils/helpers/repositoryResource.cjs.map +1 -0
- package/lib/utils/helpers/repositoryResource.d.cts +1 -0
- package/lib/utils/helpers/sanitizeHtml.cjs +44 -0
- package/lib/utils/helpers/sanitizeHtml.cjs.map +1 -0
- package/lib/utils/helpers/sanitizeHtml.d.cts +9 -0
- package/lib/utils/helpers/text.cjs +23 -0
- package/lib/utils/helpers/text.cjs.map +1 -0
- package/lib/utils/helpers/text.d.cts +7 -0
- package/lib/utils/index.cjs +106 -0
- package/lib/utils/index.cjs.map +1 -0
- package/lib/utils/index.d.cts +11 -0
- package/lib/utils/number/DecimalFormat.cjs +333 -0
- package/lib/utils/number/DecimalFormat.cjs.map +1 -0
- package/lib/utils/number/DecimalFormat.d.cts +90 -0
- package/lib/utils/number/formatValue.cjs +47 -0
- package/lib/utils/number/formatValue.cjs.map +1 -0
- package/lib/utils/number/formatValue.d.cts +4 -0
- package/lib/utils/number/parseNumbers.cjs +70 -0
- package/lib/utils/number/parseNumbers.cjs.map +1 -0
- package/lib/utils/number/parseNumbers.d.cts +9 -0
- package/package.json +133 -64
- package/tsconfig.json +4 -4
- package/lib/builder/index.js +0 -18
- package/lib/builder/index.js.map +0 -1
- package/lib/builder/mergeLayoutHintConfigurations.js +0 -60
- package/lib/builder/mergeLayoutHintConfigurations.js.map +0 -1
- package/lib/constants/Constants.js +0 -189
- package/lib/constants/Constants.js.map +0 -1
- package/lib/constants/LayoutHintConfig.js +0 -173
- package/lib/constants/LayoutHintConfig.js.map +0 -1
- package/lib/constants/LayoutHints.js +0 -135
- package/lib/constants/LayoutHints.js.map +0 -1
- package/lib/constants/Settings.js +0 -219
- package/lib/constants/Settings.js.map +0 -1
- package/lib/constants/index.js +0 -40
- package/lib/constants/index.js.map +0 -1
- package/lib/exceptions/ConfigurationException.js +0 -17
- package/lib/exceptions/ConfigurationException.js.map +0 -1
- package/lib/exceptions/FetchException.js +0 -72
- package/lib/exceptions/FetchException.js.map +0 -1
- package/lib/exceptions/IllegalArgumentException.js +0 -17
- package/lib/exceptions/IllegalArgumentException.js.map +0 -1
- package/lib/exceptions/IllegalReturnException.js +0 -16
- package/lib/exceptions/IllegalReturnException.js.map +0 -1
- package/lib/exceptions/IllegalStateException.js +0 -17
- package/lib/exceptions/IllegalStateException.js.map +0 -1
- package/lib/exceptions/JsonParseException.js +0 -17
- package/lib/exceptions/JsonParseException.js.map +0 -1
- package/lib/exceptions/MissingPropertyException.js +0 -17
- package/lib/exceptions/MissingPropertyException.js.map +0 -1
- package/lib/exceptions/NetworkException.js +0 -23
- package/lib/exceptions/NetworkException.js.map +0 -1
- package/lib/exceptions/NotAllowedUriException.js +0 -17
- package/lib/exceptions/NotAllowedUriException.js.map +0 -1
- package/lib/exceptions/NotFoundException.js +0 -26
- package/lib/exceptions/NotFoundException.js.map +0 -1
- package/lib/exceptions/ServerRequestException.js +0 -17
- package/lib/exceptions/ServerRequestException.js.map +0 -1
- package/lib/exceptions/ThemePropertyException.js +0 -17
- package/lib/exceptions/ThemePropertyException.js.map +0 -1
- package/lib/exceptions/TimeoutException.js +0 -17
- package/lib/exceptions/TimeoutException.js.map +0 -1
- package/lib/exceptions/UnauthorizedException.js +0 -25
- package/lib/exceptions/UnauthorizedException.js.map +0 -1
- package/lib/exceptions/UnsupportedOperationException.js +0 -17
- package/lib/exceptions/UnsupportedOperationException.js.map +0 -1
- package/lib/exceptions/index.js +0 -112
- package/lib/exceptions/index.js.map +0 -1
- package/lib/hooks/index.js +0 -183
- package/lib/hooks/index.js.map +0 -1
- package/lib/hooks/useAllFormsOnModel.js +0 -81
- package/lib/hooks/useAllFormsOnModel.js.map +0 -1
- package/lib/hooks/useAuthentication.js +0 -66
- package/lib/hooks/useAuthentication.js.map +0 -1
- package/lib/hooks/useContent.js +0 -49
- package/lib/hooks/useContent.js.map +0 -1
- package/lib/hooks/useDeepCompareEffect.js +0 -35
- package/lib/hooks/useDeepCompareEffect.js.map +0 -1
- package/lib/hooks/useForm.js +0 -98
- package/lib/hooks/useForm.js.map +0 -1
- package/lib/hooks/useI18n.js +0 -42
- package/lib/hooks/useI18n.js.map +0 -1
- package/lib/hooks/useModal.js +0 -43
- package/lib/hooks/useModal.js.map +0 -1
- package/lib/hooks/useModelCatalog.js +0 -179
- package/lib/hooks/useModelCatalog.js.map +0 -1
- package/lib/hooks/useModels.js +0 -45
- package/lib/hooks/useModels.js.map +0 -1
- package/lib/hooks/useModularUI.js +0 -69
- package/lib/hooks/useModularUI.js.map +0 -1
- package/lib/hooks/useModularUIBasic.js +0 -81
- package/lib/hooks/useModularUIBasic.js.map +0 -1
- package/lib/hooks/useModularUIModel.js +0 -128
- package/lib/hooks/useModularUIModel.js.map +0 -1
- package/lib/hooks/useModularUIRequest.js +0 -25
- package/lib/hooks/useModularUIRequest.js.map +0 -1
- package/lib/hooks/useNotification.js +0 -39
- package/lib/hooks/useNotification.js.map +0 -1
- package/lib/hooks/usePreference.js +0 -23
- package/lib/hooks/usePreference.js.map +0 -1
- package/lib/hooks/useProgressIndicator.js +0 -23
- package/lib/hooks/useProgressIndicator.js.map +0 -1
- package/lib/hooks/useRouter.js +0 -42
- package/lib/hooks/useRouter.js.map +0 -1
- package/lib/i18n/Locale.js +0 -128
- package/lib/i18n/Locale.js.map +0 -1
- package/lib/i18n/Locales.js +0 -140
- package/lib/i18n/Locales.js.map +0 -1
- package/lib/i18n/Message.js +0 -50
- package/lib/i18n/Message.js.map +0 -1
- package/lib/i18n/index.js +0 -57
- package/lib/i18n/index.js.map +0 -1
- package/lib/i18n/languages.js +0 -212
- package/lib/i18n/languages.js.map +0 -1
- package/lib/i18n/translations/beinformed_error_messages_en.nl.js +0 -104
- package/lib/i18n/translations/beinformed_error_messages_en.nl.js.map +0 -1
- package/lib/i18n/translations/beinformed_error_messages_nl.nl.js +0 -104
- package/lib/i18n/translations/beinformed_error_messages_nl.nl.js.map +0 -1
- package/lib/i18n/types.js +0 -2
- package/lib/i18n/types.js.map +0 -1
- package/lib/i18n/withMessage.js +0 -27
- package/lib/i18n/withMessage.js.map +0 -1
- package/lib/index.js +0 -73
- package/lib/index.js.map +0 -1
- package/lib/models/actions/ActionCollection.js +0 -90
- package/lib/models/actions/ActionCollection.js.map +0 -1
- package/lib/models/actions/ActionModel.js +0 -194
- package/lib/models/actions/ActionModel.js.map +0 -1
- package/lib/models/application/ApplicationModel.js +0 -133
- package/lib/models/application/ApplicationModel.js.map +0 -1
- package/lib/models/attributes/AttributeCollection.js +0 -282
- package/lib/models/attributes/AttributeCollection.js.map +0 -1
- package/lib/models/attributes/AttributeContent.js +0 -203
- package/lib/models/attributes/AttributeContent.js.map +0 -1
- package/lib/models/attributes/AttributeDataHelper.js +0 -267
- package/lib/models/attributes/AttributeDataHelper.js.map +0 -1
- package/lib/models/attributes/AttributeModel.js +0 -824
- package/lib/models/attributes/AttributeModel.js.map +0 -1
- package/lib/models/attributes/AttributeSetModel.js +0 -105
- package/lib/models/attributes/AttributeSetModel.js.map +0 -1
- package/lib/models/attributes/BooleanAttributeModel.js +0 -295
- package/lib/models/attributes/BooleanAttributeModel.js.map +0 -1
- package/lib/models/attributes/CaptchaAttributeModel.js +0 -60
- package/lib/models/attributes/CaptchaAttributeModel.js.map +0 -1
- package/lib/models/attributes/ChoiceAttributeModel.js +0 -411
- package/lib/models/attributes/ChoiceAttributeModel.js.map +0 -1
- package/lib/models/attributes/ChoiceAttributeOptionCollection.js +0 -300
- package/lib/models/attributes/ChoiceAttributeOptionCollection.js.map +0 -1
- package/lib/models/attributes/ChoiceAttributeOptionModel.js +0 -342
- package/lib/models/attributes/ChoiceAttributeOptionModel.js.map +0 -1
- package/lib/models/attributes/CompositeAttributeChildCollection.js +0 -189
- package/lib/models/attributes/CompositeAttributeChildCollection.js.map +0 -1
- package/lib/models/attributes/CompositeAttributeModel.js +0 -380
- package/lib/models/attributes/CompositeAttributeModel.js.map +0 -1
- package/lib/models/attributes/DatetimeAttributeModel.js +0 -465
- package/lib/models/attributes/DatetimeAttributeModel.js.map +0 -1
- package/lib/models/attributes/HelptextAttributeModel.js +0 -55
- package/lib/models/attributes/HelptextAttributeModel.js.map +0 -1
- package/lib/models/attributes/LabelAttributeModel.js +0 -41
- package/lib/models/attributes/LabelAttributeModel.js.map +0 -1
- package/lib/models/attributes/MemoAttributeModel.js +0 -49
- package/lib/models/attributes/MemoAttributeModel.js.map +0 -1
- package/lib/models/attributes/MoneyAttributeModel.js +0 -49
- package/lib/models/attributes/MoneyAttributeModel.js.map +0 -1
- package/lib/models/attributes/NumberAttributeModel.js +0 -201
- package/lib/models/attributes/NumberAttributeModel.js.map +0 -1
- package/lib/models/attributes/PasswordAttributeModel.js +0 -217
- package/lib/models/attributes/PasswordAttributeModel.js.map +0 -1
- package/lib/models/attributes/StringAttributeModel.js +0 -284
- package/lib/models/attributes/StringAttributeModel.js.map +0 -1
- package/lib/models/attributes/UploadAttributeModel.js +0 -223
- package/lib/models/attributes/UploadAttributeModel.js.map +0 -1
- package/lib/models/attributes/XMLAttributeModel.js +0 -53
- package/lib/models/attributes/XMLAttributeModel.js.map +0 -1
- package/lib/models/attributes/_createAttribute.js +0 -93
- package/lib/models/attributes/_createAttribute.js.map +0 -1
- package/lib/models/attributes/input-constraints/BSNConstraint.js +0 -72
- package/lib/models/attributes/input-constraints/BSNConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/ConstraintCollection.js +0 -50
- package/lib/models/attributes/input-constraints/ConstraintCollection.js.map +0 -1
- package/lib/models/attributes/input-constraints/ConstraintModel.js +0 -74
- package/lib/models/attributes/input-constraints/ConstraintModel.js.map +0 -1
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js +0 -205
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +0 -76
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +0 -76
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js +0 -122
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.js +0 -66
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/FileSizeConstraint.js +0 -98
- package/lib/models/attributes/input-constraints/FileSizeConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/IBANConstraint.js +0 -49
- package/lib/models/attributes/input-constraints/IBANConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/MandatoryConstraint.js +0 -53
- package/lib/models/attributes/input-constraints/MandatoryConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js +0 -85
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js +0 -177
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.js +0 -132
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js +0 -126
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js +0 -72
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +0 -47
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +0 -64
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +0 -64
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +0 -78
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/RangeConstraint.js +0 -143
- package/lib/models/attributes/input-constraints/RangeConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/RegexConstraint.js +0 -67
- package/lib/models/attributes/input-constraints/RegexConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/StringLengthConstraint.js +0 -178
- package/lib/models/attributes/input-constraints/StringLengthConstraint.js.map +0 -1
- package/lib/models/attributes/input-constraints/XMLConstraint.js +0 -62
- package/lib/models/attributes/input-constraints/XMLConstraint.js.map +0 -1
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js +0 -66
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +0 -1
- package/lib/models/attributes/layouthint-rules/DependentAttribute.js +0 -200
- package/lib/models/attributes/layouthint-rules/DependentAttribute.js.map +0 -1
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +0 -88
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +0 -1
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +0 -51
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +0 -1
- package/lib/models/base/BaseCollection.js +0 -186
- package/lib/models/base/BaseCollection.js.map +0 -1
- package/lib/models/base/BaseModel.js +0 -149
- package/lib/models/base/BaseModel.js.map +0 -1
- package/lib/models/base/ResourceCollection.js +0 -41
- package/lib/models/base/ResourceCollection.js.map +0 -1
- package/lib/models/base/ResourceModel.js +0 -209
- package/lib/models/base/ResourceModel.js.map +0 -1
- package/lib/models/caseview/CaseViewModel.js +0 -163
- package/lib/models/caseview/CaseViewModel.js.map +0 -1
- package/lib/models/concepts/BusinessScenarioModel.js +0 -122
- package/lib/models/concepts/BusinessScenarioModel.js.map +0 -1
- package/lib/models/concepts/ConceptDetailModel.js +0 -281
- package/lib/models/concepts/ConceptDetailModel.js.map +0 -1
- package/lib/models/concepts/ConceptIndexModel.js +0 -150
- package/lib/models/concepts/ConceptIndexModel.js.map +0 -1
- package/lib/models/concepts/ConceptLinkModel.js +0 -152
- package/lib/models/concepts/ConceptLinkModel.js.map +0 -1
- package/lib/models/concepts/ConceptRelationCollection.js +0 -82
- package/lib/models/concepts/ConceptRelationCollection.js.map +0 -1
- package/lib/models/concepts/ConceptRelationModel.js +0 -115
- package/lib/models/concepts/ConceptRelationModel.js.map +0 -1
- package/lib/models/concepts/ConceptTypeDetailModel.js +0 -128
- package/lib/models/concepts/ConceptTypeDetailModel.js.map +0 -1
- package/lib/models/concepts/SourceReferenceCollection.js +0 -35
- package/lib/models/concepts/SourceReferenceCollection.js.map +0 -1
- package/lib/models/concepts/SourceReferenceModel.js +0 -73
- package/lib/models/concepts/SourceReferenceModel.js.map +0 -1
- package/lib/models/content/ContentIndexModel.js +0 -142
- package/lib/models/content/ContentIndexModel.js.map +0 -1
- package/lib/models/content/ContentLinkModel.js +0 -193
- package/lib/models/content/ContentLinkModel.js.map +0 -1
- package/lib/models/content/ContentModel.js +0 -207
- package/lib/models/content/ContentModel.js.map +0 -1
- package/lib/models/content/ContentTOCModel.js +0 -163
- package/lib/models/content/ContentTOCModel.js.map +0 -1
- package/lib/models/content/ContentTypeModel.js +0 -74
- package/lib/models/content/ContentTypeModel.js.map +0 -1
- package/lib/models/content/SectionModel.js +0 -180
- package/lib/models/content/SectionModel.js.map +0 -1
- package/lib/models/content/SubSectionModel.js +0 -167
- package/lib/models/content/SubSectionModel.js.map +0 -1
- package/lib/models/contentconfiguration/ContentConfiguration.js +0 -75
- package/lib/models/contentconfiguration/ContentConfiguration.js.map +0 -1
- package/lib/models/contentconfiguration/ContentConfigurationElements.js +0 -143
- package/lib/models/contentconfiguration/ContentConfigurationElements.js.map +0 -1
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.js +0 -49
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.js.map +0 -1
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.js +0 -54
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.js.map +0 -1
- package/lib/models/contentconfiguration/ContentConfigurationResults.js +0 -103
- package/lib/models/contentconfiguration/ContentConfigurationResults.js.map +0 -1
- package/lib/models/detail/DetailModel.js +0 -219
- package/lib/models/detail/DetailModel.js.map +0 -1
- package/lib/models/error/ErrorCollection.js +0 -111
- package/lib/models/error/ErrorCollection.js.map +0 -1
- package/lib/models/error/ErrorModel.js +0 -81
- package/lib/models/error/ErrorModel.js.map +0 -1
- package/lib/models/error/ErrorResponse.js +0 -304
- package/lib/models/error/ErrorResponse.js.map +0 -1
- package/lib/models/filters/AssignmentFilterModel.js +0 -161
- package/lib/models/filters/AssignmentFilterModel.js.map +0 -1
- package/lib/models/filters/BaseFilterModel.js +0 -210
- package/lib/models/filters/BaseFilterModel.js.map +0 -1
- package/lib/models/filters/ConceptIndexFilterModel.js +0 -36
- package/lib/models/filters/ConceptIndexFilterModel.js.map +0 -1
- package/lib/models/filters/FilterCollection.js +0 -155
- package/lib/models/filters/FilterCollection.js.map +0 -1
- package/lib/models/filters/FilterModel.js +0 -13
- package/lib/models/filters/FilterModel.js.map +0 -1
- package/lib/models/filters/RangeFilterModel.js +0 -44
- package/lib/models/filters/RangeFilterModel.js.map +0 -1
- package/lib/models/filters/StringFilterModel.js +0 -147
- package/lib/models/filters/StringFilterModel.js.map +0 -1
- package/lib/models/form/FormModel.js +0 -1038
- package/lib/models/form/FormModel.js.map +0 -1
- package/lib/models/form/FormObjectModel.js +0 -474
- package/lib/models/form/FormObjectModel.js.map +0 -1
- package/lib/models/grouping/GroupingModel.js +0 -191
- package/lib/models/grouping/GroupingModel.js.map +0 -1
- package/lib/models/href/Href.js +0 -496
- package/lib/models/href/Href.js.map +0 -1
- package/lib/models/href/ListHref.js +0 -135
- package/lib/models/href/ListHref.js.map +0 -1
- package/lib/models/index.js +0 -687
- package/lib/models/index.js.map +0 -1
- package/lib/models/layouthint/LayoutHintCollection.js +0 -118
- package/lib/models/layouthint/LayoutHintCollection.js.map +0 -1
- package/lib/models/links/LinkCollection.js +0 -171
- package/lib/models/links/LinkCollection.js.map +0 -1
- package/lib/models/links/LinkModel.js +0 -216
- package/lib/models/links/LinkModel.js.map +0 -1
- package/lib/models/links/normalizeLinkJSON.js +0 -107
- package/lib/models/links/normalizeLinkJSON.js.map +0 -1
- package/lib/models/list/ListDetailModel.js +0 -266
- package/lib/models/list/ListDetailModel.js.map +0 -1
- package/lib/models/list/ListHeaderModel.js +0 -95
- package/lib/models/list/ListHeaderModel.js.map +0 -1
- package/lib/models/list/ListItemCollection.js +0 -67
- package/lib/models/list/ListItemCollection.js.map +0 -1
- package/lib/models/list/ListItemModel.js +0 -95
- package/lib/models/list/ListItemModel.js.map +0 -1
- package/lib/models/list/ListModel.js +0 -385
- package/lib/models/list/ListModel.js.map +0 -1
- package/lib/models/lookup/LookupOptionCollection.js +0 -45
- package/lib/models/lookup/LookupOptionCollection.js.map +0 -1
- package/lib/models/lookup/LookupOptionsModel.js +0 -71
- package/lib/models/lookup/LookupOptionsModel.js.map +0 -1
- package/lib/models/modelcatalog/ModelCatalogModel.js +0 -69
- package/lib/models/modelcatalog/ModelCatalogModel.js.map +0 -1
- package/lib/models/modelcatalog/ModelCategoryCollection.js +0 -24
- package/lib/models/modelcatalog/ModelCategoryCollection.js.map +0 -1
- package/lib/models/modelcatalog/ModelCategoryModel.js +0 -60
- package/lib/models/modelcatalog/ModelCategoryModel.js.map +0 -1
- package/lib/models/paging/PagesizeModel.js +0 -50
- package/lib/models/paging/PagesizeModel.js.map +0 -1
- package/lib/models/paging/PagingModel.js +0 -95
- package/lib/models/paging/PagingModel.js.map +0 -1
- package/lib/models/panels/GroupingPanelModel.js +0 -143
- package/lib/models/panels/GroupingPanelModel.js.map +0 -1
- package/lib/models/parameter/Parameter.js +0 -108
- package/lib/models/parameter/Parameter.js.map +0 -1
- package/lib/models/process/ProcessStatusSettingsModel.js +0 -85
- package/lib/models/process/ProcessStatusSettingsModel.js.map +0 -1
- package/lib/models/resolveModel.js +0 -57
- package/lib/models/resolveModel.js.map +0 -1
- package/lib/models/search/CaseSearchModel.js +0 -47
- package/lib/models/search/CaseSearchModel.js.map +0 -1
- package/lib/models/sorting/SortOptionModel.js +0 -106
- package/lib/models/sorting/SortOptionModel.js.map +0 -1
- package/lib/models/sorting/SortingModel.js +0 -112
- package/lib/models/sorting/SortingModel.js.map +0 -1
- package/lib/models/tab/TabModel.js +0 -143
- package/lib/models/tab/TabModel.js.map +0 -1
- package/lib/models/taskgroup/TaskGroupCollection.js +0 -21
- package/lib/models/taskgroup/TaskGroupCollection.js.map +0 -1
- package/lib/models/taskgroup/TaskGroupModel.js +0 -87
- package/lib/models/taskgroup/TaskGroupModel.js.map +0 -1
- package/lib/models/types.js +0 -2
- package/lib/models/types.js.map +0 -1
- package/lib/models/user/UserModel.js +0 -59
- package/lib/models/user/UserModel.js.map +0 -1
- package/lib/models/user/UserProfileModel.js +0 -55
- package/lib/models/user/UserProfileModel.js.map +0 -1
- package/lib/models/user/UserServicesModel.js +0 -126
- package/lib/models/user/UserServicesModel.js.map +0 -1
- package/lib/modularui/Authenticate.js +0 -183
- package/lib/modularui/Authenticate.js.map +0 -1
- package/lib/modularui/CaptchaRequest.js +0 -71
- package/lib/modularui/CaptchaRequest.js.map +0 -1
- package/lib/modularui/ModularUIError.js +0 -30
- package/lib/modularui/ModularUIError.js.map +0 -1
- package/lib/modularui/ModularUIRequest.js +0 -716
- package/lib/modularui/ModularUIRequest.js.map +0 -1
- package/lib/modularui/ModularUIResponse.js +0 -147
- package/lib/modularui/ModularUIResponse.js.map +0 -1
- package/lib/modularui/UploadRequest.js +0 -103
- package/lib/modularui/UploadRequest.js.map +0 -1
- package/lib/modularui/index.js +0 -42
- package/lib/modularui/index.js.map +0 -1
- package/lib/modularui/types.js +0 -2
- package/lib/modularui/types.js.map +0 -1
- package/lib/react/ErrorBoundary.js +0 -56
- package/lib/react/ErrorBoundary.js.map +0 -1
- package/lib/react/ErrorBoundaryFallback.js +0 -41
- package/lib/react/ErrorBoundaryFallback.js.map +0 -1
- package/lib/react/index.js +0 -29
- package/lib/react/index.js.map +0 -1
- package/lib/react/utils.js +0 -32
- package/lib/react/utils.js.map +0 -1
- package/lib/react-client/Init.js +0 -44
- package/lib/react-client/Init.js.map +0 -1
- package/lib/react-client/client.js +0 -216
- package/lib/react-client/client.js.map +0 -1
- package/lib/react-client/contextPath.js +0 -26
- package/lib/react-client/contextPath.js.map +0 -1
- package/lib/react-client/index.js +0 -40
- package/lib/react-client/index.js.map +0 -1
- package/lib/react-client/rehydrate.js +0 -73
- package/lib/react-client/rehydrate.js.map +0 -1
- package/lib/react-server/contextPath.js +0 -10
- package/lib/react-server/contextPath.js.map +0 -1
- package/lib/react-server/createSSRComplete.js +0 -61
- package/lib/react-server/createSSRComplete.js.map +0 -1
- package/lib/react-server/htmlpage.js +0 -54
- package/lib/react-server/htmlpage.js.map +0 -1
- package/lib/react-server/index.js +0 -82
- package/lib/react-server/index.js.map +0 -1
- package/lib/react-server/renderSSRComplete.js +0 -91
- package/lib/react-server/renderSSRComplete.js.map +0 -1
- package/lib/react-server/renderSSRMinimal.js +0 -47
- package/lib/react-server/renderSSRMinimal.js.map +0 -1
- package/lib/react-server/requestInformation.js +0 -46
- package/lib/react-server/requestInformation.js.map +0 -1
- package/lib/react-server/serverNoSSR.js +0 -63
- package/lib/react-server/serverNoSSR.js.map +0 -1
- package/lib/react-server/serverSSR.js +0 -51
- package/lib/react-server/serverSSR.js.map +0 -1
- package/lib/react-server/serverUtil.js +0 -218
- package/lib/react-server/serverUtil.js.map +0 -1
- package/lib/react-theme/ThemeProvider.js +0 -33
- package/lib/react-theme/ThemeProvider.js.map +0 -1
- package/lib/react-theme/createTheme.js +0 -115
- package/lib/react-theme/createTheme.js.map +0 -1
- package/lib/react-theme/index.js +0 -110
- package/lib/react-theme/index.js.map +0 -1
- package/lib/react-theme/types.js +0 -2
- package/lib/react-theme/types.js.map +0 -1
- package/lib/react-theme/useTheme.js +0 -15
- package/lib/react-theme/useTheme.js.map +0 -1
- package/lib/react-theme/utils/background.js +0 -21
- package/lib/react-theme/utils/background.js.map +0 -1
- package/lib/react-theme/utils/colors.js +0 -45
- package/lib/react-theme/utils/colors.js.map +0 -1
- package/lib/react-theme/utils/contrast.js +0 -95
- package/lib/react-theme/utils/contrast.js.map +0 -1
- package/lib/react-theme/utils/corners.js +0 -34
- package/lib/react-theme/utils/corners.js.map +0 -1
- package/lib/react-theme/utils/spacers.js +0 -89
- package/lib/react-theme/utils/spacers.js.map +0 -1
- package/lib/react-theme/utils/themeProps.js +0 -75
- package/lib/react-theme/utils/themeProps.js.map +0 -1
- package/lib/redux/_i18n/I18nActions.js +0 -37
- package/lib/redux/_i18n/I18nActions.js.map +0 -1
- package/lib/redux/_i18n/I18nReducer.js +0 -78
- package/lib/redux/_i18n/I18nReducer.js.map +0 -1
- package/lib/redux/_i18n/index.js +0 -29
- package/lib/redux/_i18n/index.js.map +0 -1
- package/lib/redux/_i18n/types.js +0 -2
- package/lib/redux/_i18n/types.js.map +0 -1
- package/lib/redux/_modularui/ModularUIActions.js +0 -168
- package/lib/redux/_modularui/ModularUIActions.js.map +0 -1
- package/lib/redux/_modularui/ModularUIConnector.js +0 -123
- package/lib/redux/_modularui/ModularUIConnector.js.map +0 -1
- package/lib/redux/_modularui/ModularUIMiddleware.js +0 -107
- package/lib/redux/_modularui/ModularUIMiddleware.js.map +0 -1
- package/lib/redux/_modularui/ModularUIReducer.js +0 -157
- package/lib/redux/_modularui/ModularUIReducer.js.map +0 -1
- package/lib/redux/_modularui/ModularUISelectors.js +0 -270
- package/lib/redux/_modularui/ModularUISelectors.js.map +0 -1
- package/lib/redux/_modularui/ModularUIUtils.js +0 -83
- package/lib/redux/_modularui/ModularUIUtils.js.map +0 -1
- package/lib/redux/_modularui/index.js +0 -86
- package/lib/redux/_modularui/index.js.map +0 -1
- package/lib/redux/_modularui/types.js +0 -2
- package/lib/redux/_modularui/types.js.map +0 -1
- package/lib/redux/_modularui/withModularUI.js +0 -41
- package/lib/redux/_modularui/withModularUI.js.map +0 -1
- package/lib/redux/_router/RouterActions.js +0 -67
- package/lib/redux/_router/RouterActions.js.map +0 -1
- package/lib/redux/_router/RouterConnectors.js +0 -42
- package/lib/redux/_router/RouterConnectors.js.map +0 -1
- package/lib/redux/_router/RouterMiddleware.js +0 -38
- package/lib/redux/_router/RouterMiddleware.js.map +0 -1
- package/lib/redux/_router/RouterReducer.js +0 -22
- package/lib/redux/_router/RouterReducer.js.map +0 -1
- package/lib/redux/_router/index.js +0 -51
- package/lib/redux/_router/index.js.map +0 -1
- package/lib/redux/_router/types.js +0 -2
- package/lib/redux/_router/types.js.map +0 -1
- package/lib/redux/actions/Application.js +0 -38
- package/lib/redux/actions/Application.js.map +0 -1
- package/lib/redux/actions/Authorization.js +0 -55
- package/lib/redux/actions/Authorization.js.map +0 -1
- package/lib/redux/actions/Error.js +0 -74
- package/lib/redux/actions/Error.js.map +0 -1
- package/lib/redux/actions/Form.js +0 -39
- package/lib/redux/actions/Form.js.map +0 -1
- package/lib/redux/actions/FormAttributeSet.js +0 -69
- package/lib/redux/actions/FormAttributeSet.js.map +0 -1
- package/lib/redux/actions/FormAttributeSetRepeatable.js +0 -35
- package/lib/redux/actions/FormAttributeSetRepeatable.js.map +0 -1
- package/lib/redux/actions/FormAutosave.js +0 -60
- package/lib/redux/actions/FormAutosave.js.map +0 -1
- package/lib/redux/actions/FormAutosubmit.js +0 -38
- package/lib/redux/actions/FormAutosubmit.js.map +0 -1
- package/lib/redux/actions/FormAutoupdate.js +0 -37
- package/lib/redux/actions/FormAutoupdate.js.map +0 -1
- package/lib/redux/actions/FormValidations.js +0 -51
- package/lib/redux/actions/FormValidations.js.map +0 -1
- package/lib/redux/actions/Modals.js +0 -22
- package/lib/redux/actions/Modals.js.map +0 -1
- package/lib/redux/actions/ModelCatalog.js +0 -15
- package/lib/redux/actions/ModelCatalog.js.map +0 -1
- package/lib/redux/actions/Notification.js +0 -76
- package/lib/redux/actions/Notification.js.map +0 -1
- package/lib/redux/actions/Preferences.js +0 -128
- package/lib/redux/actions/Preferences.js.map +0 -1
- package/lib/redux/actions/ProgressIndicator.js +0 -42
- package/lib/redux/actions/ProgressIndicator.js.map +0 -1
- package/lib/redux/actions/SignIn.js +0 -90
- package/lib/redux/actions/SignIn.js.map +0 -1
- package/lib/redux/actions/SignOut.js +0 -30
- package/lib/redux/actions/SignOut.js.map +0 -1
- package/lib/redux/actions/index.js +0 -183
- package/lib/redux/actions/index.js.map +0 -1
- package/lib/redux/connectors/Application.js +0 -14
- package/lib/redux/connectors/Application.js.map +0 -1
- package/lib/redux/connectors/Breadcrumb.js +0 -16
- package/lib/redux/connectors/Breadcrumb.js.map +0 -1
- package/lib/redux/connectors/CaseView.js +0 -19
- package/lib/redux/connectors/CaseView.js.map +0 -1
- package/lib/redux/connectors/ConceptDetail.js +0 -20
- package/lib/redux/connectors/ConceptDetail.js.map +0 -1
- package/lib/redux/connectors/ContentBrowser.js +0 -19
- package/lib/redux/connectors/ContentBrowser.js.map +0 -1
- package/lib/redux/connectors/ContentDetail.js +0 -20
- package/lib/redux/connectors/ContentDetail.js.map +0 -1
- package/lib/redux/connectors/ContentDetailSection.js +0 -22
- package/lib/redux/connectors/ContentDetailSection.js.map +0 -1
- package/lib/redux/connectors/Form.js +0 -43
- package/lib/redux/connectors/Form.js.map +0 -1
- package/lib/redux/connectors/FormAttributeSet.js +0 -27
- package/lib/redux/connectors/FormAttributeSet.js.map +0 -1
- package/lib/redux/connectors/ListDetail.js +0 -21
- package/lib/redux/connectors/ListDetail.js.map +0 -1
- package/lib/redux/connectors/Modal.js +0 -27
- package/lib/redux/connectors/Modal.js.map +0 -1
- package/lib/redux/connectors/ModelCatalog.js +0 -19
- package/lib/redux/connectors/ModelCatalog.js.map +0 -1
- package/lib/redux/connectors/Notification.js +0 -22
- package/lib/redux/connectors/Notification.js.map +0 -1
- package/lib/redux/connectors/PanelRenderer.js +0 -29
- package/lib/redux/connectors/PanelRenderer.js.map +0 -1
- package/lib/redux/connectors/Preferences.js +0 -29
- package/lib/redux/connectors/Preferences.js.map +0 -1
- package/lib/redux/connectors/Progress.js +0 -19
- package/lib/redux/connectors/Progress.js.map +0 -1
- package/lib/redux/connectors/ProgressIndicator.js +0 -19
- package/lib/redux/connectors/ProgressIndicator.js.map +0 -1
- package/lib/redux/connectors/QuickSearch.js +0 -27
- package/lib/redux/connectors/QuickSearch.js.map +0 -1
- package/lib/redux/connectors/SignIn.js +0 -24
- package/lib/redux/connectors/SignIn.js.map +0 -1
- package/lib/redux/connectors/SignOut.js +0 -20
- package/lib/redux/connectors/SignOut.js.map +0 -1
- package/lib/redux/connectors/Tab.js +0 -19
- package/lib/redux/connectors/Tab.js.map +0 -1
- package/lib/redux/connectors/index.js +0 -153
- package/lib/redux/connectors/index.js.map +0 -1
- package/lib/redux/index.js +0 -102
- package/lib/redux/index.js.map +0 -1
- package/lib/redux/reducers/AuthReducer.js +0 -59
- package/lib/redux/reducers/AuthReducer.js.map +0 -1
- package/lib/redux/reducers/ErrorReducer.js +0 -22
- package/lib/redux/reducers/ErrorReducer.js.map +0 -1
- package/lib/redux/reducers/ModalsReducer.js +0 -58
- package/lib/redux/reducers/ModalsReducer.js.map +0 -1
- package/lib/redux/reducers/ModelCatalogReducer.js +0 -34
- package/lib/redux/reducers/ModelCatalogReducer.js.map +0 -1
- package/lib/redux/reducers/NotificationReducer.js +0 -43
- package/lib/redux/reducers/NotificationReducer.js.map +0 -1
- package/lib/redux/reducers/PreferencesReducer.js +0 -30
- package/lib/redux/reducers/PreferencesReducer.js.map +0 -1
- package/lib/redux/reducers/ProgressIndicatorReducer.js +0 -55
- package/lib/redux/reducers/ProgressIndicatorReducer.js.map +0 -1
- package/lib/redux/reducers/createReducer.js +0 -33
- package/lib/redux/reducers/createReducer.js.map +0 -1
- package/lib/redux/reducers/index.js +0 -78
- package/lib/redux/reducers/index.js.map +0 -1
- package/lib/redux/selectors/i18n.js +0 -20
- package/lib/redux/selectors/i18n.js.map +0 -1
- package/lib/redux/selectors/index.js +0 -29
- package/lib/redux/selectors/index.js.map +0 -1
- package/lib/redux/selectors/modelcatalog.js +0 -14
- package/lib/redux/selectors/modelcatalog.js.map +0 -1
- package/lib/redux/store/beforeRenderHooks.js +0 -24
- package/lib/redux/store/beforeRenderHooks.js.map +0 -1
- package/lib/redux/store/configureStore.js +0 -42
- package/lib/redux/store/configureStore.js.map +0 -1
- package/lib/redux/types.js +0 -2
- package/lib/redux/types.js.map +0 -1
- package/lib/utils/browser/Cache.js +0 -151
- package/lib/utils/browser/Cache.js.map +0 -1
- package/lib/utils/browser/Cookies.js +0 -38
- package/lib/utils/browser/Cookies.js.map +0 -1
- package/lib/utils/datetime/DateTimeUtil.js +0 -648
- package/lib/utils/datetime/DateTimeUtil.js.map +0 -1
- package/lib/utils/fetch/serverFetch.js +0 -32
- package/lib/utils/fetch/serverFetch.js.map +0 -1
- package/lib/utils/fetch/types.js +0 -2
- package/lib/utils/fetch/types.js.map +0 -1
- package/lib/utils/fetch/universalFetch.js +0 -94
- package/lib/utils/fetch/universalFetch.js.map +0 -1
- package/lib/utils/fetch/xhr.js +0 -358
- package/lib/utils/fetch/xhr.js.map +0 -1
- package/lib/utils/helpers/checkResource.js +0 -46
- package/lib/utils/helpers/checkResource.js.map +0 -1
- package/lib/utils/helpers/createHash.js +0 -28
- package/lib/utils/helpers/createHash.js.map +0 -1
- package/lib/utils/helpers/createHref.js +0 -101
- package/lib/utils/helpers/createHref.js.map +0 -1
- package/lib/utils/helpers/createUUID.js +0 -18
- package/lib/utils/helpers/createUUID.js.map +0 -1
- package/lib/utils/helpers/index.js +0 -102
- package/lib/utils/helpers/index.js.map +0 -1
- package/lib/utils/helpers/objects.js +0 -36
- package/lib/utils/helpers/objects.js.map +0 -1
- package/lib/utils/helpers/repositoryResource.js +0 -26
- package/lib/utils/helpers/repositoryResource.js.map +0 -1
- package/lib/utils/helpers/sanitizeHtml.js +0 -44
- package/lib/utils/helpers/sanitizeHtml.js.map +0 -1
- package/lib/utils/helpers/text.js +0 -23
- package/lib/utils/helpers/text.js.map +0 -1
- package/lib/utils/index.js +0 -106
- package/lib/utils/index.js.map +0 -1
- package/lib/utils/number/DecimalFormat.js +0 -333
- package/lib/utils/number/DecimalFormat.js.map +0 -1
- package/lib/utils/number/formatValue.js +0 -47
- package/lib/utils/number/formatValue.js.map +0 -1
- package/lib/utils/number/parseNumbers.js +0 -70
- package/lib/utils/number/parseNumbers.js.map +0 -1
- package/types/hooks/useI18n.d.ts +0 -13
- package/types/hooks/useModelCatalog.d.ts +0 -31
- package/types/i18n/Locales.d.ts +0 -55
- package/types/models/actions/ActionModel.d.ts +0 -84
- package/types/models/application/ApplicationModel.d.ts +0 -48
- package/types/models/attributes/AttributeCollection.d.ts +0 -100
- package/types/models/attributes/AttributeContent.d.ts +0 -64
- package/types/models/attributes/AttributeDataHelper.d.ts +0 -67
- package/types/models/attributes/AttributeModel.d.ts +0 -401
- package/types/models/attributes/BooleanAttributeModel.d.ts +0 -64
- package/types/models/attributes/ChoiceAttributeModel.d.ts +0 -85
- package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +0 -81
- package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +0 -151
- package/types/models/attributes/DatetimeAttributeModel.d.ts +0 -147
- package/types/models/attributes/PasswordAttributeModel.d.ts +0 -62
- package/types/models/attributes/UploadAttributeModel.d.ts +0 -60
- package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +0 -127
- package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +0 -114
- package/types/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +0 -36
- package/types/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +0 -61
- package/types/models/attributes/input-constraints/RangeConstraint.d.ts +0 -113
- package/types/models/attributes/input-constraints/StringLengthConstraint.d.ts +0 -46
- package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +0 -57
- package/types/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +0 -27
- package/types/models/base/BaseCollection.d.ts +0 -89
- package/types/models/base/BaseModel.d.ts +0 -78
- package/types/models/base/ResourceModel.d.ts +0 -102
- package/types/models/caseview/CaseViewModel.d.ts +0 -45
- package/types/models/concepts/BusinessScenarioModel.d.ts +0 -20
- package/types/models/concepts/ConceptDetailModel.d.ts +0 -86
- package/types/models/concepts/ConceptLinkModel.d.ts +0 -70
- package/types/models/concepts/ConceptRelationCollection.d.ts +0 -36
- package/types/models/concepts/ConceptRelationModel.d.ts +0 -61
- package/types/models/concepts/ConceptTypeDetailModel.d.ts +0 -54
- package/types/models/content/ContentLinkModel.d.ts +0 -85
- package/types/models/content/ContentModel.d.ts +0 -80
- package/types/models/content/ContentTOCModel.d.ts +0 -41
- package/types/models/content/SectionModel.d.ts +0 -76
- package/types/models/content/SubSectionModel.d.ts +0 -69
- package/types/models/contentconfiguration/ContentConfiguration.d.ts +0 -28
- package/types/models/contentconfiguration/ContentConfigurationElements.d.ts +0 -47
- package/types/models/contentconfiguration/ContentConfigurationEndResults.d.ts +0 -16
- package/types/models/contentconfiguration/ContentConfigurationResults.d.ts +0 -39
- package/types/models/detail/DetailModel.d.ts +0 -80
- package/types/models/error/ErrorCollection.d.ts +0 -51
- package/types/models/error/ErrorResponse.d.ts +0 -156
- package/types/models/filters/BaseFilterModel.d.ts +0 -101
- package/types/models/form/FormModel.d.ts +0 -350
- package/types/models/form/FormObjectModel.d.ts +0 -207
- package/types/models/grouping/GroupingModel.d.ts +0 -86
- package/types/models/href/Href.d.ts +0 -226
- package/types/models/href/ListHref.d.ts +0 -64
- package/types/models/layouthint/LayoutHintCollection.d.ts +0 -43
- package/types/models/links/LinkCollection.d.ts +0 -71
- package/types/models/links/LinkModel.d.ts +0 -93
- package/types/models/list/ListDetailModel.d.ts +0 -69
- package/types/models/list/ListHeaderModel.d.ts +0 -64
- package/types/models/list/ListModel.d.ts +0 -143
- package/types/models/paging/PagesizeModel.d.ts +0 -25
- package/types/models/panels/GroupingPanelModel.d.ts +0 -48
- package/types/models/sorting/SortOptionModel.d.ts +0 -48
- package/types/models/sorting/SortingModel.d.ts +0 -42
- package/types/models/tab/TabModel.d.ts +0 -52
- package/types/models/user/UserServicesModel.d.ts +0 -38
- package/types/modularui/Authenticate.d.ts +0 -49
- package/types/modularui/ModularUIRequest.d.ts +0 -215
- package/types/modularui/ModularUIResponse.d.ts +0 -78
- package/types/react-server/serverUtil.d.ts +0 -45
- package/types/react-theme/utils/background.d.ts +0 -5
- package/types/react-theme/utils/colors.d.ts +0 -10
- package/types/react-theme/utils/contrast.d.ts +0 -19
- package/types/react-theme/utils/corners.d.ts +0 -4
- package/types/react-theme/utils/spacers.d.ts +0 -10
- package/types/react-theme/utils/themeProps.d.ts +0 -7
- package/types/redux/_modularui/ModularUIActions.d.ts +0 -29
- package/types/redux/_modularui/types.d.ts +0 -81
- package/types/redux/actions/Notification.d.ts +0 -14
- package/types/redux/store/beforeRenderHooks.d.ts +0 -7
- package/types/redux/store/configureStore.d.ts +0 -8
- /package/{lib → esm}/builder/__tests__/mergeLayoutHintConfigurations.spec.js.flow +0 -0
- /package/{types → esm}/builder/index.d.ts +0 -0
- /package/{lib → esm}/builder/index.js.flow +0 -0
- /package/{types → esm}/builder/mergeLayoutHintConfigurations.d.ts +0 -0
- /package/{lib → esm}/builder/mergeLayoutHintConfigurations.js.flow +0 -0
- /package/{types → esm}/constants/Constants.d.ts +0 -0
- /package/{lib → esm}/constants/Constants.js.flow +0 -0
- /package/{types → esm}/constants/LayoutHintConfig.d.ts +0 -0
- /package/{lib → esm}/constants/LayoutHintConfig.js.flow +0 -0
- /package/{types → esm}/constants/LayoutHints.d.ts +0 -0
- /package/{lib → esm}/constants/LayoutHints.js.flow +0 -0
- /package/{types → esm}/constants/Settings.d.ts +0 -0
- /package/{lib → esm}/constants/Settings.js.flow +0 -0
- /package/{types → esm}/constants/index.d.ts +0 -0
- /package/{lib → esm}/constants/index.js.flow +0 -0
- /package/{types → esm}/exceptions/ConfigurationException.d.ts +0 -0
- /package/{lib → esm}/exceptions/ConfigurationException.js.flow +0 -0
- /package/{types → esm}/exceptions/FetchException.d.ts +0 -0
- /package/{lib → esm}/exceptions/FetchException.js.flow +0 -0
- /package/{types → esm}/exceptions/IllegalArgumentException.d.ts +0 -0
- /package/{lib → esm}/exceptions/IllegalArgumentException.js.flow +0 -0
- /package/{types → esm}/exceptions/IllegalReturnException.d.ts +0 -0
- /package/{lib → esm}/exceptions/IllegalReturnException.js.flow +0 -0
- /package/{types → esm}/exceptions/IllegalStateException.d.ts +0 -0
- /package/{lib → esm}/exceptions/IllegalStateException.js.flow +0 -0
- /package/{types → esm}/exceptions/JsonParseException.d.ts +0 -0
- /package/{lib → esm}/exceptions/JsonParseException.js.flow +0 -0
- /package/{types → esm}/exceptions/MissingPropertyException.d.ts +0 -0
- /package/{lib → esm}/exceptions/MissingPropertyException.js.flow +0 -0
- /package/{types → esm}/exceptions/NetworkException.d.ts +0 -0
- /package/{lib → esm}/exceptions/NetworkException.js.flow +0 -0
- /package/{types → esm}/exceptions/NotAllowedUriException.d.ts +0 -0
- /package/{lib → esm}/exceptions/NotAllowedUriException.js.flow +0 -0
- /package/{types → esm}/exceptions/NotFoundException.d.ts +0 -0
- /package/{lib → esm}/exceptions/NotFoundException.js.flow +0 -0
- /package/{types → esm}/exceptions/ServerRequestException.d.ts +0 -0
- /package/{lib → esm}/exceptions/ServerRequestException.js.flow +0 -0
- /package/{types → esm}/exceptions/ThemePropertyException.d.ts +0 -0
- /package/{lib → esm}/exceptions/ThemePropertyException.js.flow +0 -0
- /package/{types → esm}/exceptions/TimeoutException.d.ts +0 -0
- /package/{lib → esm}/exceptions/TimeoutException.js.flow +0 -0
- /package/{types → esm}/exceptions/UnauthorizedException.d.ts +0 -0
- /package/{lib → esm}/exceptions/UnauthorizedException.js.flow +0 -0
- /package/{types → esm}/exceptions/UnsupportedOperationException.d.ts +0 -0
- /package/{lib → esm}/exceptions/UnsupportedOperationException.js.flow +0 -0
- /package/{types → esm}/exceptions/index.d.ts +0 -0
- /package/{lib → esm}/exceptions/index.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/UseModularUIModel.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useAuthentication.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useForm.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useI18n.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModal.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModelCatalog.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModels.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useModularUIBasic.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useNotification.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/usePreference.spec.js.flow +0 -0
- /package/{lib → esm}/hooks/__tests__/useProgressIndicator.spec.js.flow +0 -0
- /package/{types → esm}/hooks/index.d.ts +0 -0
- /package/{lib → esm}/hooks/index.js.flow +0 -0
- /package/{types → esm}/hooks/useAllFormsOnModel.d.ts +0 -0
- /package/{lib → esm}/hooks/useAllFormsOnModel.js.flow +0 -0
- /package/{types → esm}/hooks/useAuthentication.d.ts +0 -0
- /package/{lib → esm}/hooks/useAuthentication.js.flow +0 -0
- /package/{types → esm}/hooks/useContent.d.ts +0 -0
- /package/{lib → esm}/hooks/useContent.js.flow +0 -0
- /package/{types → esm}/hooks/useDeepCompareEffect.d.ts +0 -0
- /package/{lib → esm}/hooks/useDeepCompareEffect.js.flow +0 -0
- /package/{types → esm}/hooks/useForm.d.ts +0 -0
- /package/{lib → esm}/hooks/useForm.js.flow +0 -0
- /package/{lib → esm}/hooks/useI18n.js.flow +0 -0
- /package/{types → esm}/hooks/useModal.d.ts +0 -0
- /package/{lib → esm}/hooks/useModal.js.flow +0 -0
- /package/{lib → esm}/hooks/useModelCatalog.js.flow +0 -0
- /package/{types → esm}/hooks/useModels.d.ts +0 -0
- /package/{lib → esm}/hooks/useModels.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUI.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUI.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUIBasic.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUIBasic.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUIModel.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUIModel.js.flow +0 -0
- /package/{types → esm}/hooks/useModularUIRequest.d.ts +0 -0
- /package/{lib → esm}/hooks/useModularUIRequest.js.flow +0 -0
- /package/{types → esm}/hooks/useNotification.d.ts +0 -0
- /package/{lib → esm}/hooks/useNotification.js.flow +0 -0
- /package/{types → esm}/hooks/usePreference.d.ts +0 -0
- /package/{lib → esm}/hooks/usePreference.js.flow +0 -0
- /package/{types → esm}/hooks/useProgressIndicator.d.ts +0 -0
- /package/{lib → esm}/hooks/useProgressIndicator.js.flow +0 -0
- /package/{types → esm}/hooks/useRouter.d.ts +0 -0
- /package/{lib → esm}/hooks/useRouter.js.flow +0 -0
- /package/{types → esm}/i18n/Locale.d.ts +0 -0
- /package/{lib → esm}/i18n/Locale.js.flow +0 -0
- /package/{lib → esm}/i18n/Locales.js.flow +0 -0
- /package/{types → esm}/i18n/Message.d.ts +0 -0
- /package/{lib → esm}/i18n/Message.js.flow +0 -0
- /package/{lib → esm}/i18n/__tests__/Locale.spec.js.flow +0 -0
- /package/{lib → esm}/i18n/__tests__/Locales.spec.js.flow +0 -0
- /package/{types → esm}/i18n/index.d.ts +0 -0
- /package/{lib → esm}/i18n/index.js.flow +0 -0
- /package/{types → esm}/i18n/languages.d.ts +0 -0
- /package/{lib → esm}/i18n/languages.js.flow +0 -0
- /package/{types → esm}/i18n/translations/beinformed_error_messages_en.nl.d.ts +0 -0
- /package/{lib → esm}/i18n/translations/beinformed_error_messages_en.nl.js.flow +0 -0
- /package/{types → esm}/i18n/translations/beinformed_error_messages_nl.nl.d.ts +0 -0
- /package/{lib → esm}/i18n/translations/beinformed_error_messages_nl.nl.js.flow +0 -0
- /package/{types → esm}/i18n/types.d.ts +0 -0
- /package/{lib → esm}/i18n/types.js.flow +0 -0
- /package/{types → esm}/i18n/withMessage.d.ts +0 -0
- /package/{lib → esm}/i18n/withMessage.js.flow +0 -0
- /package/{types → esm}/index.d.ts +0 -0
- /package/{lib → esm}/index.js.flow +0 -0
- /package/{lib → esm}/models/__tests__/resolveModel.spec.js.flow +0 -0
- /package/{types → esm}/models/actions/ActionCollection.d.ts +0 -0
- /package/{lib → esm}/models/actions/ActionCollection.js.flow +0 -0
- /package/{lib → esm}/models/actions/ActionModel.js.flow +0 -0
- /package/{lib → esm}/models/actions/__mock__/action.js.flow +0 -0
- /package/{lib → esm}/models/actions/__tests__/ActionCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/actions/__tests__/ActionModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/application/ApplicationModel.js.flow +0 -0
- /package/{lib → esm}/models/application/__mock__/application.js.flow +0 -0
- /package/{lib → esm}/models/application/__tests__/Application.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeCollection.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeContent.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeDataHelper.js.flow +0 -0
- /package/{lib → esm}/models/attributes/AttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/AttributeSetModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/AttributeSetModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/BooleanAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/CaptchaAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/CaptchaAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/ChoiceAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/ChoiceAttributeOptionCollection.js.flow +0 -0
- /package/{lib → esm}/models/attributes/ChoiceAttributeOptionModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/CompositeAttributeChildCollection.d.ts +0 -0
- /package/{lib → esm}/models/attributes/CompositeAttributeChildCollection.js.flow +0 -0
- /package/{types → esm}/models/attributes/CompositeAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/CompositeAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/DatetimeAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/HelptextAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/HelptextAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/LabelAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/LabelAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/MemoAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/MemoAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/MoneyAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/MoneyAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/NumberAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/NumberAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/PasswordAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/StringAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/StringAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/UploadAttributeModel.js.flow +0 -0
- /package/{types → esm}/models/attributes/XMLAttributeModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/XMLAttributeModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__mock__/form.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__mock__/list.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeCollectionComposite.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeContent.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeDataHelper.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/AttributeSetModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/BooleanAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/CaptchaAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/CompositeAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/DateAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel_offset.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/HelptextAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/LabelAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/LookupAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/MemoAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/MoneyAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/NumberAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/PasswordAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/StringAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/TimeAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/TimestampModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/UploadAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/XMLAttributeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/_createAttribute.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/createAttributeComposite.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/__tests__/createAttributeDynamicSchema.spec.js.flow +0 -0
- /package/{types → esm}/models/attributes/_createAttribute.d.ts +0 -0
- /package/{lib → esm}/models/attributes/_createAttribute.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/BSNConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/BSNConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/ConstraintCollection.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/ConstraintCollection.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/ConstraintModel.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/ConstraintModel.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DateBoundaryConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/DatetimeFormatConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/FileExtensionConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/FileExtensionConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/FileSizeConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/FileSizeConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/IBANConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/IBANConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/MandatoryConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/MandatoryConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/MandatoryRangeConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/NumberBoundaryConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/NumberFormatConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/NumberFormatConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/NumberGroupingConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/RangeConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/RegexConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/RegexConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/StringLengthConstraint.js.flow +0 -0
- /package/{types → esm}/models/attributes/input-constraints/XMLConstraint.d.ts +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/XMLConstraint.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/BSNConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateBoundaryConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeDateFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeTimeFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/DatetimeFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileExtensionConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileSizeConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/IBANConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/MandatoryConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberBoundaryConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberFormatConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberGroupingConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordConfirmConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordLowerAndUpperCaseConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinNumericCharactersConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinSpecialCharactersConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordThreeConsecutiveCharactersNotAllowedConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/RegexConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/StringLengthConstraint.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/input-constraints/__tests__/XMLConstraint.spec.js.flow +0 -0
- /package/{types → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/DependentAttribute.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.flow +0 -0
- /package/{types → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__mock__/MockedCollectionFactory.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/BaseLayoutHintRule.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/DependentAttribute.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/LayoutHintRuleCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/RemainingTotalUploadSize.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/BaseCollection.js.flow +0 -0
- /package/{lib → esm}/models/base/BaseModel.js.flow +0 -0
- /package/{types → esm}/models/base/ResourceCollection.d.ts +0 -0
- /package/{lib → esm}/models/base/ResourceCollection.js.flow +0 -0
- /package/{lib → esm}/models/base/ResourceModel.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/BaseCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/BaseModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/ResourceCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/base/__tests__/ResourceModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/caseview/CaseViewModel.js.flow +0 -0
- /package/{lib → esm}/models/caseview/__mock__/caseview.js.flow +0 -0
- /package/{lib → esm}/models/caseview/__tests__/CaseViewModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/BusinessScenarioModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptDetailModel.js.flow +0 -0
- /package/{types → esm}/models/concepts/ConceptIndexModel.d.ts +0 -0
- /package/{lib → esm}/models/concepts/ConceptIndexModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptLinkModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptRelationCollection.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptRelationModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/ConceptTypeDetailModel.js.flow +0 -0
- /package/{types → esm}/models/concepts/SourceReferenceCollection.d.ts +0 -0
- /package/{lib → esm}/models/concepts/SourceReferenceCollection.js.flow +0 -0
- /package/{types → esm}/models/concepts/SourceReferenceModel.d.ts +0 -0
- /package/{lib → esm}/models/concepts/SourceReferenceModel.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/business_scenario.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/conceptdetail.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/conceptindex.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/concepttype.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/concepttype_hierarchy.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__mock__/relation_with_props_and_tf_data.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/BusinessScenarioModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptDetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptIndexModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptLinkModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptRelationCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptRelationModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/ConceptTypeDetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/SourceReferenceCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/concepts/__tests__/SourceReferenceModel.spec.js.flow +0 -0
- /package/{types → esm}/models/content/ContentIndexModel.d.ts +0 -0
- /package/{lib → esm}/models/content/ContentIndexModel.js.flow +0 -0
- /package/{lib → esm}/models/content/ContentLinkModel.js.flow +0 -0
- /package/{lib → esm}/models/content/ContentModel.js.flow +0 -0
- /package/{lib → esm}/models/content/ContentTOCModel.js.flow +0 -0
- /package/{types → esm}/models/content/ContentTypeModel.d.ts +0 -0
- /package/{lib → esm}/models/content/ContentTypeModel.js.flow +0 -0
- /package/{lib → esm}/models/content/SectionModel.js.flow +0 -0
- /package/{lib → esm}/models/content/SubSectionModel.js.flow +0 -0
- /package/{lib → esm}/models/content/__tests__/ContentIndexModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/content/__tests__/ContentLinkModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/content/__tests__/ContentModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfiguration.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationElements.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationEndResults.js.flow +0 -0
- /package/{types → esm}/models/contentconfiguration/ContentConfigurationQuestions.d.ts +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationQuestions.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/ContentConfigurationResults.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationElements.spec.js.flow +0 -0
- /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationResults.spec.js.flow +0 -0
- /package/{lib → esm}/models/detail/DetailModel.js.flow +0 -0
- /package/{lib → esm}/models/detail/__tests__/DetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/error/ErrorCollection.js.flow +0 -0
- /package/{types → esm}/models/error/ErrorModel.d.ts +0 -0
- /package/{lib → esm}/models/error/ErrorModel.js.flow +0 -0
- /package/{lib → esm}/models/error/ErrorResponse.js.flow +0 -0
- /package/{lib → esm}/models/error/__tests__/ErrorCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/error/__tests__/ErrorModel.spec.js.flow +0 -0
- /package/{types → esm}/models/filters/AssignmentFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/AssignmentFilterModel.js.flow +0 -0
- /package/{lib → esm}/models/filters/BaseFilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/ConceptIndexFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/ConceptIndexFilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/FilterCollection.d.ts +0 -0
- /package/{lib → esm}/models/filters/FilterCollection.js.flow +0 -0
- /package/{types → esm}/models/filters/FilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/FilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/RangeFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/RangeFilterModel.js.flow +0 -0
- /package/{types → esm}/models/filters/StringFilterModel.d.ts +0 -0
- /package/{lib → esm}/models/filters/StringFilterModel.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/AssignmentFilterModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/FilterCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/FilterModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/RangeFilterModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/filters/__tests__/ZipcodeFilter.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/FormModel.js.flow +0 -0
- /package/{lib → esm}/models/form/FormObjectModel.js.flow +0 -0
- /package/{lib → esm}/models/form/__mock__/form.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.getters.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.instrument.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.repeating.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.selfhref.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormModel.unknown-repeat.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormObjectModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormResultData.spec.js.flow +0 -0
- /package/{lib → esm}/models/form/__tests__/FormWithContent.spec.js.flow +0 -0
- /package/{lib → esm}/models/grouping/GroupingModel.js.flow +0 -0
- /package/{lib → esm}/models/grouping/__tests__/GroupingModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/href/Href.js.flow +0 -0
- /package/{lib → esm}/models/href/ListHref.js.flow +0 -0
- /package/{lib → esm}/models/href/__tests__/Href.spec.js.flow +0 -0
- /package/{lib → esm}/models/href/__tests__/ListHref.spec.js.flow +0 -0
- /package/{types → esm}/models/index.d.ts +0 -0
- /package/{lib → esm}/models/index.js.flow +0 -0
- /package/{lib → esm}/models/layouthint/LayoutHintCollection.js.flow +0 -0
- /package/{lib → esm}/models/layouthint/__tests__/LayoutHintCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/links/LinkCollection.js.flow +0 -0
- /package/{lib → esm}/models/links/LinkModel.js.flow +0 -0
- /package/{lib → esm}/models/links/__tests__/LinkCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/links/__tests__/LinkModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/links/__tests__/normalizeLinkJSON.spec.js.flow +0 -0
- /package/{types → esm}/models/links/normalizeLinkJSON.d.ts +0 -0
- /package/{lib → esm}/models/links/normalizeLinkJSON.js.flow +0 -0
- /package/{lib → esm}/models/list/ListDetailModel.js.flow +0 -0
- /package/{lib → esm}/models/list/ListHeaderModel.js.flow +0 -0
- /package/{types → esm}/models/list/ListItemCollection.d.ts +0 -0
- /package/{lib → esm}/models/list/ListItemCollection.js.flow +0 -0
- /package/{types → esm}/models/list/ListItemModel.d.ts +0 -0
- /package/{lib → esm}/models/list/ListItemModel.js.flow +0 -0
- /package/{lib → esm}/models/list/ListModel.js.flow +0 -0
- /package/{lib → esm}/models/list/__mock__/caselist.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListDetailModel.hierarchy.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListDetailModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListItemCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/list/__tests__/ListResultDetail.spec.js.flow +0 -0
- /package/{types → esm}/models/lookup/LookupOptionCollection.d.ts +0 -0
- /package/{lib → esm}/models/lookup/LookupOptionCollection.js.flow +0 -0
- /package/{types → esm}/models/lookup/LookupOptionsModel.d.ts +0 -0
- /package/{lib → esm}/models/lookup/LookupOptionsModel.js.flow +0 -0
- /package/{lib → esm}/models/lookup/__tests__/LookupOptionCollection.spec.js.flow +0 -0
- /package/{lib → esm}/models/lookup/__tests__/LookupOptionsModel.spec.js.flow +0 -0
- /package/{types → esm}/models/modelcatalog/ModelCatalogModel.d.ts +0 -0
- /package/{lib → esm}/models/modelcatalog/ModelCatalogModel.js.flow +0 -0
- /package/{types → esm}/models/modelcatalog/ModelCategoryCollection.d.ts +0 -0
- /package/{lib → esm}/models/modelcatalog/ModelCategoryCollection.js.flow +0 -0
- /package/{types → esm}/models/modelcatalog/ModelCategoryModel.d.ts +0 -0
- /package/{lib → esm}/models/modelcatalog/ModelCategoryModel.js.flow +0 -0
- /package/{lib → esm}/models/modelcatalog/__mock__/modelcatalog.js.flow +0 -0
- /package/{lib → esm}/models/modelcatalog/__tests__/ModelCatalogModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/paging/PagesizeModel.js.flow +0 -0
- /package/{types → esm}/models/paging/PagingModel.d.ts +0 -0
- /package/{lib → esm}/models/paging/PagingModel.js.flow +0 -0
- /package/{lib → esm}/models/paging/__tests__/PageSizeModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/paging/__tests__/PagingModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/panels/GroupingPanelModel.js.flow +0 -0
- /package/{lib → esm}/models/panels/__tests__/GroupingPanelModel.spec.js.flow +0 -0
- /package/{types → esm}/models/parameter/Parameter.d.ts +0 -0
- /package/{lib → esm}/models/parameter/Parameter.js.flow +0 -0
- /package/{lib → esm}/models/parameter/__tests__/Parameter.spec.js.flow +0 -0
- /package/{types → esm}/models/process/ProcessStatusSettingsModel.d.ts +0 -0
- /package/{lib → esm}/models/process/ProcessStatusSettingsModel.js.flow +0 -0
- /package/{lib → esm}/models/process/__tests__/ProcessStatusSettingsModel.spec.js.flow +0 -0
- /package/{types → esm}/models/resolveModel.d.ts +0 -0
- /package/{lib → esm}/models/resolveModel.js.flow +0 -0
- /package/{types → esm}/models/search/CaseSearchModel.d.ts +0 -0
- /package/{lib → esm}/models/search/CaseSearchModel.js.flow +0 -0
- /package/{lib → esm}/models/search/__tests__/CaseSearchModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/sorting/SortOptionModel.js.flow +0 -0
- /package/{lib → esm}/models/sorting/SortingModel.js.flow +0 -0
- /package/{lib → esm}/models/sorting/__tests__/SortingModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/tab/TabModel.js.flow +0 -0
- /package/{lib → esm}/models/tab/__mock__/tab.js.flow +0 -0
- /package/{lib → esm}/models/tab/__mock__/tabPerson.js.flow +0 -0
- /package/{lib → esm}/models/tab/__tests__/TabModel.spec.js.flow +0 -0
- /package/{types → esm}/models/taskgroup/TaskGroupCollection.d.ts +0 -0
- /package/{lib → esm}/models/taskgroup/TaskGroupCollection.js.flow +0 -0
- /package/{types → esm}/models/taskgroup/TaskGroupModel.d.ts +0 -0
- /package/{lib → esm}/models/taskgroup/TaskGroupModel.js.flow +0 -0
- /package/{lib → esm}/models/taskgroup/__mock__/taskgroup.js.flow +0 -0
- /package/{lib → esm}/models/taskgroup/__tests__/TaskGroupModel.spec.js.flow +0 -0
- /package/{types → esm}/models/types.d.ts +0 -0
- /package/{lib → esm}/models/types.js.flow +0 -0
- /package/{types → esm}/models/user/UserModel.d.ts +0 -0
- /package/{lib → esm}/models/user/UserModel.js.flow +0 -0
- /package/{types → esm}/models/user/UserProfileModel.d.ts +0 -0
- /package/{lib → esm}/models/user/UserProfileModel.js.flow +0 -0
- /package/{lib → esm}/models/user/UserServicesModel.js.flow +0 -0
- /package/{lib → esm}/models/user/__tests__/UserModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/user/__tests__/UserProfileModel.spec.js.flow +0 -0
- /package/{lib → esm}/models/user/__tests__/UserServicesModel.spec.js.flow +0 -0
- /package/{lib → esm}/modularui/Authenticate.js.flow +0 -0
- /package/{types → esm}/modularui/CaptchaRequest.d.ts +0 -0
- /package/{lib → esm}/modularui/CaptchaRequest.js.flow +0 -0
- /package/{types → esm}/modularui/ModularUIError.d.ts +0 -0
- /package/{lib → esm}/modularui/ModularUIError.js.flow +0 -0
- /package/{lib → esm}/modularui/ModularUIRequest.js.flow +0 -0
- /package/{lib → esm}/modularui/ModularUIResponse.js.flow +0 -0
- /package/{types → esm}/modularui/UploadRequest.d.ts +0 -0
- /package/{lib → esm}/modularui/UploadRequest.js.flow +0 -0
- /package/{lib → esm}/modularui/__tests__/CustomContextPath.spec.js.flow +0 -0
- /package/{lib → esm}/modularui/__tests__/ModularUIError.spec.js.flow +0 -0
- /package/{lib → esm}/modularui/__tests__/ModularUIRequest.spec.js.flow +0 -0
- /package/{types → esm}/modularui/index.d.ts +0 -0
- /package/{lib → esm}/modularui/index.js.flow +0 -0
- /package/{types → esm}/modularui/types.d.ts +0 -0
- /package/{lib → esm}/modularui/types.js.flow +0 -0
- /package/{types → esm}/react/ErrorBoundary.d.ts +0 -0
- /package/{lib → esm}/react/ErrorBoundary.js.flow +0 -0
- /package/{types → esm}/react/ErrorBoundaryFallback.d.ts +0 -0
- /package/{lib → esm}/react/ErrorBoundaryFallback.js.flow +0 -0
- /package/{types → esm}/react/index.d.ts +0 -0
- /package/{lib → esm}/react/index.js.flow +0 -0
- /package/{types → esm}/react/utils.d.ts +0 -0
- /package/{lib → esm}/react/utils.js.flow +0 -0
- /package/{types → esm}/react-client/Init.d.ts +0 -0
- /package/{lib → esm}/react-client/Init.js.flow +0 -0
- /package/{types → esm}/react-client/client.d.ts +0 -0
- /package/{lib → esm}/react-client/client.js.flow +0 -0
- /package/{types → esm}/react-client/contextPath.d.ts +0 -0
- /package/{lib → esm}/react-client/contextPath.js.flow +0 -0
- /package/{types → esm}/react-client/index.d.ts +0 -0
- /package/{lib → esm}/react-client/index.js.flow +0 -0
- /package/{types → esm}/react-client/rehydrate.d.ts +0 -0
- /package/{lib → esm}/react-client/rehydrate.js.flow +0 -0
- /package/{lib → esm}/react-server/__tests__/htmlpage.spec.js.flow +0 -0
- /package/{lib → esm}/react-server/__tests__/serverUtil.spec.js.flow +0 -0
- /package/{types → esm}/react-server/contextPath.d.ts +0 -0
- /package/{lib → esm}/react-server/contextPath.js.flow +0 -0
- /package/{types → esm}/react-server/createSSRComplete.d.ts +0 -0
- /package/{lib → esm}/react-server/createSSRComplete.js.flow +0 -0
- /package/{types → esm}/react-server/htmlpage.d.ts +0 -0
- /package/{lib → esm}/react-server/htmlpage.js.flow +0 -0
- /package/{types → esm}/react-server/index.d.ts +0 -0
- /package/{lib → esm}/react-server/index.js.flow +0 -0
- /package/{types → esm}/react-server/renderSSRComplete.d.ts +0 -0
- /package/{lib → esm}/react-server/renderSSRComplete.js.flow +0 -0
- /package/{types → esm}/react-server/renderSSRMinimal.d.ts +0 -0
- /package/{lib → esm}/react-server/renderSSRMinimal.js.flow +0 -0
- /package/{types → esm}/react-server/requestInformation.d.ts +0 -0
- /package/{lib → esm}/react-server/requestInformation.js.flow +0 -0
- /package/{types → esm}/react-server/serverNoSSR.d.ts +0 -0
- /package/{lib → esm}/react-server/serverNoSSR.js.flow +0 -0
- /package/{types → esm}/react-server/serverSSR.d.ts +0 -0
- /package/{lib → esm}/react-server/serverSSR.js.flow +0 -0
- /package/{lib → esm}/react-server/serverUtil.js.flow +0 -0
- /package/{types → esm}/react-theme/ThemeProvider.d.ts +0 -0
- /package/{lib → esm}/react-theme/ThemeProvider.js.flow +0 -0
- /package/{lib → esm}/react-theme/__tests__/ThemeProvider.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/__tests__/createTheme.spec.js.flow +0 -0
- /package/{types → esm}/react-theme/createTheme.d.ts +0 -0
- /package/{lib → esm}/react-theme/createTheme.js.flow +0 -0
- /package/{types → esm}/react-theme/index.d.ts +0 -0
- /package/{lib → esm}/react-theme/index.js.flow +0 -0
- /package/{types → esm}/react-theme/types.d.ts +0 -0
- /package/{lib → esm}/react-theme/types.js.flow +0 -0
- /package/{types → esm}/react-theme/useTheme.d.ts +0 -0
- /package/{lib → esm}/react-theme/useTheme.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/background.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/colors.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/contrast.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/corners.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/spacers.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/__tests__/themeProps.spec.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/background.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/colors.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/contrast.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/corners.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/spacers.js.flow +0 -0
- /package/{lib → esm}/react-theme/utils/themeProps.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/I18nActions.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/I18nActions.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/I18nReducer.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/I18nReducer.js.flow +0 -0
- /package/{lib → esm}/redux/_i18n/__tests__/actions.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_i18n/__tests__/reducer.spec.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/index.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/index.js.flow +0 -0
- /package/{types → esm}/redux/_i18n/types.d.ts +0 -0
- /package/{lib → esm}/redux/_i18n/types.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIActions.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIConnector.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIConnector.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIMiddleware.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIMiddleware.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIReducer.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIReducer.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUISelectors.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUISelectors.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/ModularUIUtils.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/ModularUIUtils.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/__tests__/actions.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/__tests__/reducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/__tests__/selectors.spec.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/index.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/index.js.flow +0 -0
- /package/{lib → esm}/redux/_modularui/types.js.flow +0 -0
- /package/{types → esm}/redux/_modularui/withModularUI.d.ts +0 -0
- /package/{lib → esm}/redux/_modularui/withModularUI.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterActions.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterActions.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterConnectors.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterConnectors.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterMiddleware.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterMiddleware.js.flow +0 -0
- /package/{types → esm}/redux/_router/RouterReducer.d.ts +0 -0
- /package/{lib → esm}/redux/_router/RouterReducer.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/actions.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/hooks.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/middleware.spec.js.flow +0 -0
- /package/{lib → esm}/redux/_router/__tests__/reducer.spec.js.flow +0 -0
- /package/{types → esm}/redux/_router/index.d.ts +0 -0
- /package/{lib → esm}/redux/_router/index.js.flow +0 -0
- /package/{types → esm}/redux/_router/types.d.ts +0 -0
- /package/{lib → esm}/redux/_router/types.js.flow +0 -0
- /package/{types → esm}/redux/actions/Application.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Application.js.flow +0 -0
- /package/{types → esm}/redux/actions/Authorization.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Authorization.js.flow +0 -0
- /package/{types → esm}/redux/actions/Error.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Error.js.flow +0 -0
- /package/{types → esm}/redux/actions/Form.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Form.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAttributeSet.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAttributeSet.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAttributeSetRepeatable.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAttributeSetRepeatable.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAutosave.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAutosave.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAutosubmit.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAutosubmit.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormAutoupdate.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormAutoupdate.js.flow +0 -0
- /package/{types → esm}/redux/actions/FormValidations.d.ts +0 -0
- /package/{lib → esm}/redux/actions/FormValidations.js.flow +0 -0
- /package/{types → esm}/redux/actions/Modals.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Modals.js.flow +0 -0
- /package/{types → esm}/redux/actions/ModelCatalog.d.ts +0 -0
- /package/{lib → esm}/redux/actions/ModelCatalog.js.flow +0 -0
- /package/{lib → esm}/redux/actions/Notification.js.flow +0 -0
- /package/{types → esm}/redux/actions/Preferences.d.ts +0 -0
- /package/{lib → esm}/redux/actions/Preferences.js.flow +0 -0
- /package/{types → esm}/redux/actions/ProgressIndicator.d.ts +0 -0
- /package/{lib → esm}/redux/actions/ProgressIndicator.js.flow +0 -0
- /package/{types → esm}/redux/actions/SignIn.d.ts +0 -0
- /package/{lib → esm}/redux/actions/SignIn.js.flow +0 -0
- /package/{types → esm}/redux/actions/SignOut.d.ts +0 -0
- /package/{lib → esm}/redux/actions/SignOut.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Application.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Authorization.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/CustomErrorResponseHandler.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Error-server.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Error.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Form.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Modals.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Notification.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/Preferences.spec.js.flow +0 -0
- /package/{lib → esm}/redux/actions/__tests__/ProgressIndicator.spec.js.flow +0 -0
- /package/{types → esm}/redux/actions/index.d.ts +0 -0
- /package/{lib → esm}/redux/actions/index.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Application.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Application.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Breadcrumb.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Breadcrumb.js.flow +0 -0
- /package/{types → esm}/redux/connectors/CaseView.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/CaseView.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ConceptDetail.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ConceptDetail.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ContentBrowser.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ContentBrowser.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ContentDetail.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ContentDetail.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ContentDetailSection.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ContentDetailSection.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Form.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Form.js.flow +0 -0
- /package/{types → esm}/redux/connectors/FormAttributeSet.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/FormAttributeSet.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ListDetail.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ListDetail.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Modal.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Modal.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ModelCatalog.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ModelCatalog.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Notification.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Notification.js.flow +0 -0
- /package/{types → esm}/redux/connectors/PanelRenderer.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/PanelRenderer.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Preferences.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Preferences.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Progress.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Progress.js.flow +0 -0
- /package/{types → esm}/redux/connectors/ProgressIndicator.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/ProgressIndicator.js.flow +0 -0
- /package/{types → esm}/redux/connectors/QuickSearch.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/QuickSearch.js.flow +0 -0
- /package/{types → esm}/redux/connectors/SignIn.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/SignIn.js.flow +0 -0
- /package/{types → esm}/redux/connectors/SignOut.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/SignOut.js.flow +0 -0
- /package/{types → esm}/redux/connectors/Tab.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/Tab.js.flow +0 -0
- /package/{types → esm}/redux/connectors/index.d.ts +0 -0
- /package/{lib → esm}/redux/connectors/index.js.flow +0 -0
- /package/{types → esm}/redux/index.d.ts +0 -0
- /package/{lib → esm}/redux/index.js.flow +0 -0
- /package/{types → esm}/redux/reducers/AuthReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/AuthReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ErrorReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ErrorReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ModalsReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ModalsReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ModelCatalogReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ModelCatalogReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/NotificationReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/NotificationReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/PreferencesReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/PreferencesReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/ProgressIndicatorReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/ProgressIndicatorReducer.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/AuthReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ErrorReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ModalsReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ModelCatalogReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/NotificationReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/PreferencesReducer.spec.js.flow +0 -0
- /package/{lib → esm}/redux/reducers/__tests__/ProgressIndicatorReducer.spec.js.flow +0 -0
- /package/{types → esm}/redux/reducers/createReducer.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/createReducer.js.flow +0 -0
- /package/{types → esm}/redux/reducers/index.d.ts +0 -0
- /package/{lib → esm}/redux/reducers/index.js.flow +0 -0
- /package/{types → esm}/redux/selectors/i18n.d.ts +0 -0
- /package/{lib → esm}/redux/selectors/i18n.js.flow +0 -0
- /package/{types → esm}/redux/selectors/index.d.ts +0 -0
- /package/{lib → esm}/redux/selectors/index.js.flow +0 -0
- /package/{types → esm}/redux/selectors/modelcatalog.d.ts +0 -0
- /package/{lib → esm}/redux/selectors/modelcatalog.js.flow +0 -0
- /package/{lib → esm}/redux/store/__tests__/beforeRenderHooks.spec.js.flow +0 -0
- /package/{lib → esm}/redux/store/beforeRenderHooks.js.flow +0 -0
- /package/{lib → esm}/redux/store/configureStore.js.flow +0 -0
- /package/{types → esm}/redux/types.d.ts +0 -0
- /package/{lib → esm}/redux/types.js.flow +0 -0
- /package/{types → esm}/utils/browser/Cache.d.ts +0 -0
- /package/{lib → esm}/utils/browser/Cache.js.flow +0 -0
- /package/{types → esm}/utils/browser/Cookies.d.ts +0 -0
- /package/{lib → esm}/utils/browser/Cookies.js.flow +0 -0
- /package/{lib → esm}/utils/browser/__tests__/Cookies.spec.js.flow +0 -0
- /package/{types → esm}/utils/datetime/DateTimeUtil.d.ts +0 -0
- /package/{lib → esm}/utils/datetime/DateTimeUtil.js.flow +0 -0
- /package/{lib → esm}/utils/datetime/__tests__/DateTime.spec.js.flow +0 -0
- /package/{lib → esm}/utils/datetime/__tests__/DateTimeFormat.spec.js.flow +0 -0
- /package/{types → esm}/utils/fetch/__mocks__/universalFetch.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/__mocks__/universalFetch.js.flow +0 -0
- /package/{lib → esm}/utils/fetch/__tests__/xhr.spec.js.flow +0 -0
- /package/{types → esm}/utils/fetch/serverFetch.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/serverFetch.js.flow +0 -0
- /package/{types → esm}/utils/fetch/types.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/types.js.flow +0 -0
- /package/{types → esm}/utils/fetch/universalFetch.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/universalFetch.js.flow +0 -0
- /package/{types → esm}/utils/fetch/xhr.d.ts +0 -0
- /package/{lib → esm}/utils/fetch/xhr.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/checkResource.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/createHash.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/createHref.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/objects.spec.js.flow +0 -0
- /package/{lib → esm}/utils/helpers/__tests__/sanitizeHTML.spec.js.flow +0 -0
- /package/{types → esm}/utils/helpers/checkResource.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/checkResource.js.flow +0 -0
- /package/{types → esm}/utils/helpers/createHash.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/createHash.js.flow +0 -0
- /package/{types → esm}/utils/helpers/createHref.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/createHref.js.flow +0 -0
- /package/{types → esm}/utils/helpers/createUUID.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/createUUID.js.flow +0 -0
- /package/{types → esm}/utils/helpers/index.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/index.js.flow +0 -0
- /package/{types → esm}/utils/helpers/objects.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/objects.js.flow +0 -0
- /package/{types → esm}/utils/helpers/repositoryResource.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/repositoryResource.js.flow +0 -0
- /package/{types → esm}/utils/helpers/sanitizeHtml.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/sanitizeHtml.js.flow +0 -0
- /package/{types → esm}/utils/helpers/text.d.ts +0 -0
- /package/{lib → esm}/utils/helpers/text.js.flow +0 -0
- /package/{types → esm}/utils/index.d.ts +0 -0
- /package/{lib → esm}/utils/index.js.flow +0 -0
- /package/{types → esm}/utils/number/DecimalFormat.d.ts +0 -0
- /package/{lib → esm}/utils/number/DecimalFormat.js.flow +0 -0
- /package/{lib → esm}/utils/number/__tests__/formatValue.spec.js.flow +0 -0
- /package/{lib → esm}/utils/number/__tests__/parseNumbers.spec.js.flow +0 -0
- /package/{types → esm}/utils/number/formatValue.d.ts +0 -0
- /package/{lib → esm}/utils/number/formatValue.js.flow +0 -0
- /package/{types → esm}/utils/number/parseNumbers.d.ts +0 -0
- /package/{lib → esm}/utils/number/parseNumbers.js.flow +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"client.cjs","names":["_reactDom","require","_objects","_setimmediate","_interopRequireDefault","_Cache","_xhr","_history","_configureStore","_rehydrate","_Settings","_Preferences","_Notification","_Error","_SignIn","_ModelCatalog","_RouterActions","_exceptions","_Init","_beforeRenderHooks","_jsxRuntime","parseDataToJSON","data","JSON","parse","error","JsonParseException","getDataFromServer","_context","dataElement","document","querySelector","Error","_trim","default","textContent","call","setUnhandledRejectionEvent","store","window","onunhandledrejection","event","detail","setImmediate","errorMessage","reason","message","toString","dispatch","showXHRErrorNotification","exports","handleRedirectURI","urlParams","_urlSearchParams","location","search","redirectURI","get","xhr","url","getBasePathModularUI","catch","e","id","LOGIN_PATH","getSetting","replace","from","pathname","modal","setModelCatalogEntryDate","entryDateFromUrl","updateEntryDate","Cache","hasItem","getItem","setupClient","customReducers","arguments","length","undefined","beforeRenderHooks","contextPath","clear","browserHistory","createBrowserHistory","basename","getBasePathServer","routerHistory","configureStore","rehydrate","setAllContentInDataSetting","getState","setLoginPreferences","setDateTimeSettings","loadOtherBrowserTabs","loginSuccess","has","FetchException","response","handleError","listen","action","locationChange","body","className","handleBeforeRenderHooks","addContentLoadedEvent","theme","render","ErrorFallbackComponent","mount","addEventListener","applicationNode","jsx","Init","children","mountClient","element","isSSR","hydrate","client","_ref"],"sources":["../../src/react-client/client.js"],"sourcesContent":["// @flow\n// eslint-disable-next-line react/no-deprecated\nimport { hydrate, render } from \"react-dom\";\n\nimport { has } from \"../utils/helpers/objects\";\nimport setImmediate from \"setimmediate\";\n\nimport Cache from \"../utils/browser/Cache\";\n\nimport xhr from \"../utils/fetch/xhr\";\n\nimport { createBrowserHistory } from \"history\";\nimport configureStore from \"../redux/store/configureStore\";\n\nimport rehydrate from \"./rehydrate\";\nimport {\n getBasePathModularUI,\n getBasePathServer,\n getSetting,\n} from \"../constants/Settings\";\n\nimport {\n setAllContentInDataSetting,\n setDateTimeSettings,\n setLoginPreferences,\n} from \"../redux/actions/Preferences\";\nimport { showXHRErrorNotification } from \"../redux/actions/Notification\";\nimport { handleError } from \"../redux/actions/Error\";\nimport { loginSuccess } from \"../redux/actions/SignIn\";\nimport { updateEntryDate } from \"../redux/actions/ModelCatalog\";\n\nimport { locationChange, replace } from \"../redux/_router/RouterActions\";\n\nimport { JsonParseException, FetchException } from \"../exceptions\";\n\nimport { Init } from \"./Init\";\n\nimport { handleBeforeRenderHooks } from \"../redux/store/beforeRenderHooks\";\n\nimport type {\n ComponentType,\n Element as ReactElement,\n ElementType,\n} from \"react\";\nimport type { Theme } from \"../react-theme/types\";\nimport type { CustomReducers, ReduxStore } from \"../redux/types\";\nimport type { RouterHistory } from \"react-router\";\nimport type { BeforeRenderHook } from \"../redux/store/beforeRenderHooks\";\nimport type { Props as FallbackProps } from \"../react/ErrorBoundaryFallback\";\n\ntype RenderFunction = () => ReactElement<ElementType>;\ntype MountFunction = (\n applicationNode: Element,\n element: ReactElement<ElementType>,\n) => void;\ntype Props = {\n customReducers?: CustomReducers,\n theme?: Theme | Array<Theme>,\n render: RenderFunction,\n mount: MountFunction,\n beforeRenderHooks?: Array<BeforeRenderHook>,\n ErrorFallbackComponent?: ComponentType<FallbackProps>,\n};\n\n/*\n * deserialize serialized data from the server to provide a smooth dehydration.\n */\nconst parseDataToJSON = (data: string) => {\n try {\n return JSON.parse(data);\n } catch (error) {\n throw new JsonParseException(`Error parsing content ${data}`);\n }\n};\n\nconst getDataFromServer = () => {\n const dataElement = document.querySelector(\n 'script[type=\"application/json\"][data-app-state=\"app-json\"]',\n );\n\n if (!dataElement) {\n throw new Error(\"Error loading state, json not found\");\n } else if (dataElement.textContent.trim() === \"\") {\n return {};\n }\n\n return parseDataToJSON(dataElement.textContent);\n};\n\n/**\n */\nexport const setUnhandledRejectionEvent = (store: ReduxStore) => {\n window.onunhandledrejection = (event) => {\n if (event.detail) {\n return setImmediate(() => {\n const errorMessage = event.detail.reason.message.toString();\n\n store.dispatch(showXHRErrorNotification(errorMessage));\n throw event.detail.reason;\n });\n }\n\n return event;\n };\n};\n\n/**\n * The redirectURI querystring parameter is available when the server is redirecting an unauthorized deep link\n * @param store\n */\nconst handleRedirectURI = (store: ReduxStore) => {\n const urlParams = new URLSearchParams(window.location.search);\n const redirectURI = urlParams.get(\"redirectURI\");\n if (redirectURI) {\n xhr({ url: `${getBasePathModularUI()}${redirectURI}` }).catch((e) => {\n if (\n e.id === \"UnauthorizedException\" ||\n e.id === \"Error.NotAuthorized\" ||\n e.id === \"Error.Authentication.Required\" ||\n e.id === \"Error.Authentication.InvalidCredentials\"\n ) {\n const LOGIN_PATH = getSetting(\"LOGIN_PATH\", \"/signin\");\n store.dispatch(\n replace(LOGIN_PATH, {\n from: { pathname: redirectURI },\n modal: false,\n }),\n );\n }\n });\n }\n};\n\n/**\n */\nexport const setModelCatalogEntryDate = (store: ReduxStore) => {\n if (typeof window !== \"undefined\") {\n const entryDateFromUrl = new URLSearchParams(window.location?.search).get(\n \"entryDate\",\n );\n if (entryDateFromUrl) {\n store.dispatch(updateEntryDate(entryDateFromUrl));\n } else if (Cache.hasItem(\"ModelCatalogEntryDate\")) {\n store.dispatch(Cache.getItem(\"ModelCatalogEntryDate\"));\n }\n }\n};\n\n/**\n */\nexport const setupClient = (\n customReducers: CustomReducers = {},\n beforeRenderHooks: ?Array<BeforeRenderHook>,\n): { store: ReduxStore, routerHistory: RouterHistory } => {\n if (typeof window.contextPath === \"undefined\") {\n throw new Error(\"Missing contextPath on window object\");\n }\n\n const data = getDataFromServer();\n\n // remove all resources from cache\n Cache.clear(\"^res:\");\n\n // $FlowExpectedError\n const browserHistory: RouterHistory = createBrowserHistory({\n basename: getBasePathServer(),\n });\n const { routerHistory, store } = configureStore(\n browserHistory,\n customReducers,\n rehydrate(data),\n );\n\n handleRedirectURI(store);\n setModelCatalogEntryDate(store);\n\n setAllContentInDataSetting(store.getState());\n setLoginPreferences(store.getState());\n setDateTimeSettings(store.getState());\n\n // load existing cache from other browser tabs\n Cache.loadOtherBrowserTabs(() => {\n if (Cache.getItem(\"auth\")) {\n store.dispatch(loginSuccess());\n }\n });\n\n if (has(data, \"error.name\")) {\n const error = new FetchException(data?.error?.response);\n store.dispatch(handleError(error));\n }\n\n if (Cache.getItem(\"auth\")) {\n store.dispatch(loginSuccess());\n }\n\n // listen to history change and update the redux router store\n routerHistory.listen((location, action) => {\n store.dispatch(locationChange(location, action));\n });\n\n setUnhandledRejectionEvent(store);\n\n if (document.body) {\n document.body.className = \"js\";\n }\n\n if (beforeRenderHooks) {\n handleBeforeRenderHooks(beforeRenderHooks, { store });\n }\n\n return { store, routerHistory };\n};\n\n/**\n */\nexport const addContentLoadedEvent = (\n store: ReduxStore,\n routerHistory: RouterHistory,\n theme?: Theme | Array<Theme>,\n render: RenderFunction,\n ErrorFallbackComponent?: ComponentType<FallbackProps>,\n mount: MountFunction,\n) => {\n window.addEventListener(\"DOMContentLoaded\", () => {\n const applicationNode = document.querySelector(\"#application\");\n if (!applicationNode) {\n throw new Error(\n \"No DOM element with id application found to attach client to\",\n );\n }\n\n mount(\n applicationNode,\n <Init\n store={store}\n routerHistory={routerHistory}\n contextPath={window.contextPath}\n theme={theme}\n ErrorFallbackComponent={ErrorFallbackComponent}\n >\n {render()}\n </Init>,\n );\n });\n};\n\n/**\n */\nconst mountClient = (\n applicationNode: Element,\n element: ReactElement<ElementType>,\n) => {\n const isSSR = applicationNode.querySelector(\".application\");\n if (isSSR) {\n hydrate(element, applicationNode);\n } else {\n render(element, applicationNode);\n }\n};\n\n/**\n * Mount the webapplication to the DOM, setup redux store and caches, add unhandledRejectionEvent, used client side when JavaScript is enabled.\n */\nexport const client = ({\n customReducers,\n theme,\n render,\n beforeRenderHooks,\n ErrorFallbackComponent,\n mount,\n}: Props) => {\n const { store, routerHistory } = setupClient(\n customReducers,\n beforeRenderHooks,\n );\n\n addContentLoadedEvent(\n store,\n routerHistory,\n theme,\n render,\n ErrorFallbackComponent,\n mount ?? mountClient,\n );\n};\n"],"mappings":";;;;;;;;;AAEA,IAAAA,SAAA,GAAAC,OAAA;AAEA,IAAAC,QAAA,GAAAD,OAAA;AACA,IAAAE,aAAA,GAAAC,sBAAA,CAAAH,OAAA;AAEA,IAAAI,MAAA,GAAAD,sBAAA,CAAAH,OAAA;AAEA,IAAAK,IAAA,GAAAF,sBAAA,CAAAH,OAAA;AAEA,IAAAM,QAAA,GAAAN,OAAA;AACA,IAAAO,eAAA,GAAAJ,sBAAA,CAAAH,OAAA;AAEA,IAAAQ,UAAA,GAAAL,sBAAA,CAAAH,OAAA;AACA,IAAAS,SAAA,GAAAT,OAAA;AAMA,IAAAU,YAAA,GAAAV,OAAA;AAKA,IAAAW,aAAA,GAAAX,OAAA;AACA,IAAAY,MAAA,GAAAZ,OAAA;AACA,IAAAa,OAAA,GAAAb,OAAA;AACA,IAAAc,aAAA,GAAAd,OAAA;AAEA,IAAAe,cAAA,GAAAf,OAAA;AAEA,IAAAgB,WAAA,GAAAhB,OAAA;AAEA,IAAAiB,KAAA,GAAAjB,OAAA;AAEA,IAAAkB,kBAAA,GAAAlB,OAAA;AAA2E,IAAAmB,WAAA,GAAAnB,OAAA;AApC3E;AA+DA;AACA;AACA;AACA,MAAMoB,eAAe,GAAIC,IAAY,IAAK;EACxC,IAAI;IACF,OAAOC,IAAI,CAACC,KAAK,CAACF,IAAI,CAAC;EACzB,CAAC,CAAC,OAAOG,KAAK,EAAE;IACd,MAAM,IAAIC,8BAAkB,CAAC,yBAAyBJ,IAAI,EAAE,CAAC;EAC/D;AACF,CAAC;AAED,MAAMK,iBAAiB,GAAGA,CAAA,KAAM;EAAA,IAAAC,QAAA;EAC9B,MAAMC,WAAW,GAAGC,QAAQ,CAACC,aAAa,CACxC,4DACF,CAAC;EAED,IAAI,CAACF,WAAW,EAAE;IAChB,MAAM,IAAIG,KAAK,CAAC,qCAAqC,CAAC;EACxD,CAAC,MAAM,IAAI,IAAAC,KAAA,CAAAC,OAAA,EAAAN,QAAA,GAAAC,WAAW,CAACM,WAAW,EAAAC,IAAA,CAAAR,QAAM,CAAC,KAAK,EAAE,EAAE;IAChD,OAAO,CAAC,CAAC;EACX;EAEA,OAAOP,eAAe,CAACQ,WAAW,CAACM,WAAW,CAAC;AACjD,CAAC;;AAED;AACA;AACO,MAAME,0BAA0B,GAAIC,KAAiB,IAAK;EAC/DC,MAAM,CAACC,oBAAoB,GAAIC,KAAK,IAAK;IACvC,IAAIA,KAAK,CAACC,MAAM,EAAE;MAChB,OAAO,IAAAC,qBAAY,EAAC,MAAM;QACxB,MAAMC,YAAY,GAAGH,KAAK,CAACC,MAAM,CAACG,MAAM,CAACC,OAAO,CAACC,QAAQ,CAAC,CAAC;QAE3DT,KAAK,CAACU,QAAQ,CAAC,IAAAC,sCAAwB,EAACL,YAAY,CAAC,CAAC;QACtD,MAAMH,KAAK,CAACC,MAAM,CAACG,MAAM;MAC3B,CAAC,CAAC;IACJ;IAEA,OAAOJ,KAAK;EACd,CAAC;AACH,CAAC;;AAED;AACA;AACA;AACA;AAHAS,OAAA,CAAAb,0BAAA,GAAAA,0BAAA;AAIA,MAAMc,iBAAiB,GAAIb,KAAiB,IAAK;EAC/C,MAAMc,SAAS,GAAG,IAAAC,gBAAA,CAAAnB,OAAA,CAAoBK,MAAM,CAACe,QAAQ,CAACC,MAAM,CAAC;EAC7D,MAAMC,WAAW,GAAGJ,SAAS,CAACK,GAAG,CAAC,aAAa,CAAC;EAChD,IAAID,WAAW,EAAE;IACf,IAAAE,YAAG,EAAC;MAAEC,GAAG,EAAE,GAAG,IAAAC,8BAAoB,EAAC,CAAC,GAAGJ,WAAW;IAAG,CAAC,CAAC,CAACK,KAAK,CAAEC,CAAC,IAAK;MACnE,IACEA,CAAC,CAACC,EAAE,KAAK,uBAAuB,IAChCD,CAAC,CAACC,EAAE,KAAK,qBAAqB,IAC9BD,CAAC,CAACC,EAAE,KAAK,+BAA+B,IACxCD,CAAC,CAACC,EAAE,KAAK,yCAAyC,EAClD;QACA,MAAMC,UAAU,GAAG,IAAAC,oBAAU,EAAC,YAAY,EAAE,SAAS,CAAC;QACtD3B,KAAK,CAACU,QAAQ,CACZ,IAAAkB,sBAAO,EAACF,UAAU,EAAE;UAClBG,IAAI,EAAE;YAAEC,QAAQ,EAAEZ;UAAY,CAAC;UAC/Ba,KAAK,EAAE;QACT,CAAC,CACH,CAAC;MACH;IACF,CAAC,CAAC;EACJ;AACF,CAAC;;AAED;AACA;AACO,MAAMC,wBAAwB,GAAIhC,KAAiB,IAAK;EAC7D,IAAI,OAAOC,MAAM,KAAK,WAAW,EAAE;IACjC,MAAMgC,gBAAgB,GAAG,IAAAlB,gBAAA,CAAAnB,OAAA,CAAoBK,MAAM,CAACe,QAAQ,EAAEC,MAAM,CAAC,CAACE,GAAG,CACvE,WACF,CAAC;IACD,IAAIc,gBAAgB,EAAE;MACpBjC,KAAK,CAACU,QAAQ,CAAC,IAAAwB,6BAAe,EAACD,gBAAgB,CAAC,CAAC;IACnD,CAAC,MAAM,IAAIE,cAAK,CAACC,OAAO,CAAC,uBAAuB,CAAC,EAAE;MACjDpC,KAAK,CAACU,QAAQ,CAACyB,cAAK,CAACE,OAAO,CAAC,uBAAuB,CAAC,CAAC;IACxD;EACF;AACF,CAAC;;AAED;AACA;AADAzB,OAAA,CAAAoB,wBAAA,GAAAA,wBAAA;AAEO,MAAMM,WAAW,GAAG,SAAAA,CAAA,EAG+B;EAAA,IAFxDC,cAA8B,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EAAA,IACnCG,iBAA2C,GAAAH,SAAA,CAAAC,MAAA,OAAAD,SAAA,MAAAE,SAAA;EAE3C,IAAI,OAAOzC,MAAM,CAAC2C,WAAW,KAAK,WAAW,EAAE;IAC7C,MAAM,IAAIlD,KAAK,CAAC,sCAAsC,CAAC;EACzD;EAEA,MAAMV,IAAI,GAAGK,iBAAiB,CAAC,CAAC;;EAEhC;EACA8C,cAAK,CAACU,KAAK,CAAC,OAAO,CAAC;;EAEpB;EACA,MAAMC,cAA6B,GAAG,IAAAC,6BAAoB,EAAC;IACzDC,QAAQ,EAAE,IAAAC,2BAAiB,EAAC;EAC9B,CAAC,CAAC;EACF,MAAM;IAAEC,aAAa;IAAElD;EAAM,CAAC,GAAG,IAAAmD,uBAAc,EAC7CL,cAAc,EACdP,cAAc,EACd,IAAAa,kBAAS,EAACpE,IAAI,CAChB,CAAC;EAED6B,iBAAiB,CAACb,KAAK,CAAC;EACxBgC,wBAAwB,CAAChC,KAAK,CAAC;EAE/B,IAAAqD,uCAA0B,EAACrD,KAAK,CAACsD,QAAQ,CAAC,CAAC,CAAC;EAC5C,IAAAC,gCAAmB,EAACvD,KAAK,CAACsD,QAAQ,CAAC,CAAC,CAAC;EACrC,IAAAE,gCAAmB,EAACxD,KAAK,CAACsD,QAAQ,CAAC,CAAC,CAAC;;EAErC;EACAnB,cAAK,CAACsB,oBAAoB,CAAC,MAAM;IAC/B,IAAItB,cAAK,CAACE,OAAO,CAAC,MAAM,CAAC,EAAE;MACzBrC,KAAK,CAACU,QAAQ,CAAC,IAAAgD,oBAAY,EAAC,CAAC,CAAC;IAChC;EACF,CAAC,CAAC;EAEF,IAAI,IAAAC,YAAG,EAAC3E,IAAI,EAAE,YAAY,CAAC,EAAE;IAC3B,MAAMG,KAAK,GAAG,IAAIyE,0BAAc,CAAC5E,IAAI,EAAEG,KAAK,EAAE0E,QAAQ,CAAC;IACvD7D,KAAK,CAACU,QAAQ,CAAC,IAAAoD,kBAAW,EAAC3E,KAAK,CAAC,CAAC;EACpC;EAEA,IAAIgD,cAAK,CAACE,OAAO,CAAC,MAAM,CAAC,EAAE;IACzBrC,KAAK,CAACU,QAAQ,CAAC,IAAAgD,oBAAY,EAAC,CAAC,CAAC;EAChC;;EAEA;EACAR,aAAa,CAACa,MAAM,CAAC,CAAC/C,QAAQ,EAAEgD,MAAM,KAAK;IACzChE,KAAK,CAACU,QAAQ,CAAC,IAAAuD,6BAAc,EAACjD,QAAQ,EAAEgD,MAAM,CAAC,CAAC;EAClD,CAAC,CAAC;EAEFjE,0BAA0B,CAACC,KAAK,CAAC;EAEjC,IAAIR,QAAQ,CAAC0E,IAAI,EAAE;IACjB1E,QAAQ,CAAC0E,IAAI,CAACC,SAAS,GAAG,IAAI;EAChC;EAEA,IAAIxB,iBAAiB,EAAE;IACrB,IAAAyB,0CAAuB,EAACzB,iBAAiB,EAAE;MAAE3C;IAAM,CAAC,CAAC;EACvD;EAEA,OAAO;IAAEA,KAAK;IAAEkD;EAAc,CAAC;AACjC,CAAC;;AAED;AACA;AADAtC,OAAA,CAAA0B,WAAA,GAAAA,WAAA;AAEO,MAAM+B,qBAAqB,GAAGA,CACnCrE,KAAiB,EACjBkD,aAA4B,EAC5BoB,KAA4B,EAC5BC,MAAsB,EACtBC,sBAAqD,EACrDC,KAAoB,KACjB;EACHxE,MAAM,CAACyE,gBAAgB,CAAC,kBAAkB,EAAE,MAAM;IAChD,MAAMC,eAAe,GAAGnF,QAAQ,CAACC,aAAa,CAAC,cAAc,CAAC;IAC9D,IAAI,CAACkF,eAAe,EAAE;MACpB,MAAM,IAAIjF,KAAK,CACb,8DACF,CAAC;IACH;IAEA+E,KAAK,CACHE,eAAe,eACf,IAAA7F,WAAA,CAAA8F,GAAA,EAAChG,KAAA,CAAAiG,IAAI;MACH7E,KAAK,EAAEA,KAAM;MACbkD,aAAa,EAAEA,aAAc;MAC7BN,WAAW,EAAE3C,MAAM,CAAC2C,WAAY;MAChC0B,KAAK,EAAEA,KAAM;MACbE,sBAAsB,EAAEA,sBAAuB;MAAAM,QAAA,EAE9CP,MAAM,CAAC;IAAC,CACL,CACR,CAAC;EACH,CAAC,CAAC;AACJ,CAAC;;AAED;AACA;AADA3D,OAAA,CAAAyD,qBAAA,GAAAA,qBAAA;AAEA,MAAMU,WAAW,GAAGA,CAClBJ,eAAwB,EACxBK,OAAkC,KAC/B;EACH,MAAMC,KAAK,GAAGN,eAAe,CAAClF,aAAa,CAAC,cAAc,CAAC;EAC3D,IAAIwF,KAAK,EAAE;IACT,IAAAC,iBAAO,EAACF,OAAO,EAAEL,eAAe,CAAC;EACnC,CAAC,MAAM;IACL,IAAAJ,gBAAM,EAACS,OAAO,EAAEL,eAAe,CAAC;EAClC;AACF,CAAC;;AAED;AACA;AACA;AACO,MAAMQ,MAAM,GAAGC,IAAA,IAOT;EAAA,IAPU;IACrB7C,cAAc;IACd+B,KAAK;IACLC,MAAM;IACN5B,iBAAiB;IACjB6B,sBAAsB;IACtBC;EACK,CAAC,GAAAW,IAAA;EACN,MAAM;IAAEpF,KAAK;IAAEkD;EAAc,CAAC,GAAGZ,WAAW,CAC1CC,cAAc,EACdI,iBACF,CAAC;EAED0B,qBAAqB,CACnBrE,KAAK,EACLkD,aAAa,EACboB,KAAK,EACLC,MAAM,EACNC,sBAAsB,EACtBC,KAAK,IAAIM,WACX,CAAC;AACH,CAAC;AAACnE,OAAA,CAAAuE,MAAA,GAAAA,MAAA","ignoreList":[]}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export function setUnhandledRejectionEvent(store: ReduxStore): void;
|
|
2
|
+
export function setModelCatalogEntryDate(store: ReduxStore): void;
|
|
3
|
+
export function setupClient(customReducers: CustomReducers | undefined, beforeRenderHooks: Array<BeforeRenderHook> | null): {
|
|
4
|
+
store: ReduxStore;
|
|
5
|
+
routerHistory: RouterHistory;
|
|
6
|
+
};
|
|
7
|
+
export function addContentLoadedEvent(store: ReduxStore, routerHistory: RouterHistory, theme?: Theme | Array<Theme>, render: RenderFunction, ErrorFallbackComponent?: ComponentType<FallbackProps>, mount: MountFunction): void;
|
|
8
|
+
export function client({ customReducers, theme, render, beforeRenderHooks, ErrorFallbackComponent, mount, }: Props): void;
|
|
9
|
+
import { ReduxStore } from "../redux/types";
|
|
10
|
+
import { CustomReducers } from "../redux/types";
|
|
11
|
+
import { BeforeRenderHook } from "../redux/store/beforeRenderHooks";
|
|
12
|
+
import { Theme } from "../react-theme/types";
|
|
13
|
+
type RenderFunction = () => ReactElement<ElementType>;
|
|
14
|
+
import { ComponentType } from "react";
|
|
15
|
+
import { Props as FallbackProps } from "../react/ErrorBoundaryFallback";
|
|
16
|
+
type MountFunction = (applicationNode: Element, element: ReactElement<ElementType>) => void;
|
|
17
|
+
type Props = {
|
|
18
|
+
customReducers?: CustomReducers | undefined;
|
|
19
|
+
theme?: Theme | Theme[] | undefined;
|
|
20
|
+
render: RenderFunction;
|
|
21
|
+
mount: MountFunction;
|
|
22
|
+
beforeRenderHooks?: BeforeRenderHook[] | undefined;
|
|
23
|
+
ErrorFallbackComponent?: ComponentType<Props> | undefined;
|
|
24
|
+
};
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
(function x() {
|
|
7
|
+
const dataElement = document.querySelector('script[type="application/json"][data-app-state="app-json"]');
|
|
8
|
+
if (!dataElement) {
|
|
9
|
+
throw new Error("Error finding script with attribute app-json to retrieve context path");
|
|
10
|
+
}
|
|
11
|
+
const contextPath = dataElement.getAttribute("data-app-contextpath");
|
|
12
|
+
if (contextPath) {
|
|
13
|
+
window.contextPath = contextPath;
|
|
14
|
+
}
|
|
15
|
+
const filePath = dataElement.getAttribute("data-app-filepath");
|
|
16
|
+
if (filePath && filePath !== "{FILEPATH}") {
|
|
17
|
+
__webpack_public_path__ = `${filePath}/`; // NOSONAR
|
|
18
|
+
} else if (contextPath) {
|
|
19
|
+
__webpack_public_path__ = `${contextPath}/`; // NOSONAR
|
|
20
|
+
}
|
|
21
|
+
const nonce = dataElement.getAttribute("data-app-nonce");
|
|
22
|
+
if (nonce) {
|
|
23
|
+
__webpack_nonce__ = nonce; // NOSONAR
|
|
24
|
+
}
|
|
25
|
+
})();
|
|
26
|
+
//# sourceMappingURL=contextPath.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contextPath.cjs","names":["x","dataElement","document","querySelector","Error","contextPath","getAttribute","window","filePath","__webpack_public_path__","nonce","__webpack_nonce__"],"sources":["../../src/react-client/contextPath.js"],"sourcesContent":["// @flow\n(function x() {\n const dataElement = document.querySelector(\n 'script[type=\"application/json\"][data-app-state=\"app-json\"]',\n );\n if (!dataElement) {\n throw new Error(\n \"Error finding script with attribute app-json to retrieve context path\",\n );\n }\n\n const contextPath = dataElement.getAttribute(\"data-app-contextpath\");\n if (contextPath) {\n window.contextPath = contextPath;\n }\n\n const filePath = dataElement.getAttribute(\"data-app-filepath\");\n if (filePath && filePath !== \"{FILEPATH}\") {\n __webpack_public_path__ = `${filePath}/`; // NOSONAR\n } else if (contextPath) {\n __webpack_public_path__ = `${contextPath}/`; // NOSONAR\n }\n\n const nonce = dataElement.getAttribute(\"data-app-nonce\");\n if (nonce) {\n __webpack_nonce__ = nonce; // NOSONAR\n }\n})();\n\nexport {};\n"],"mappings":";;;;;AACA,CAAC,SAASA,CAACA,CAAA,EAAG;EACZ,MAAMC,WAAW,GAAGC,QAAQ,CAACC,aAAa,CACxC,4DACF,CAAC;EACD,IAAI,CAACF,WAAW,EAAE;IAChB,MAAM,IAAIG,KAAK,CACb,uEACF,CAAC;EACH;EAEA,MAAMC,WAAW,GAAGJ,WAAW,CAACK,YAAY,CAAC,sBAAsB,CAAC;EACpE,IAAID,WAAW,EAAE;IACfE,MAAM,CAACF,WAAW,GAAGA,WAAW;EAClC;EAEA,MAAMG,QAAQ,GAAGP,WAAW,CAACK,YAAY,CAAC,mBAAmB,CAAC;EAC9D,IAAIE,QAAQ,IAAIA,QAAQ,KAAK,YAAY,EAAE;IACzCC,uBAAuB,GAAG,GAAGD,QAAQ,GAAG,CAAC,CAAC;EAC5C,CAAC,MAAM,IAAIH,WAAW,EAAE;IACtBI,uBAAuB,GAAG,GAAGJ,WAAW,GAAG,CAAC,CAAC;EAC/C;EAEA,MAAMK,KAAK,GAAGT,WAAW,CAACK,YAAY,CAAC,gBAAgB,CAAC;EACxD,IAAII,KAAK,EAAE;IACTC,iBAAiB,GAAGD,KAAK,CAAC,CAAC;EAC7B;AACF,CAAC,EAAE,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _Object$keys = require("@babel/runtime-corejs3/core-js-stable/object/keys");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
var _client = require("./client");
|
|
8
|
+
_Object$keys(_client).forEach(function (key) {
|
|
9
|
+
if (key === "default" || key === "__esModule") return;
|
|
10
|
+
if (key in exports && exports[key] === _client[key]) return;
|
|
11
|
+
Object.defineProperty(exports, key, {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () {
|
|
14
|
+
return _client[key];
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
var _Init = require("./Init");
|
|
19
|
+
_Object$keys(_Init).forEach(function (key) {
|
|
20
|
+
if (key === "default" || key === "__esModule") return;
|
|
21
|
+
if (key in exports && exports[key] === _Init[key]) return;
|
|
22
|
+
Object.defineProperty(exports, key, {
|
|
23
|
+
enumerable: true,
|
|
24
|
+
get: function () {
|
|
25
|
+
return _Init[key];
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
var _Error = require("../redux/actions/Error");
|
|
30
|
+
_Object$keys(_Error).forEach(function (key) {
|
|
31
|
+
if (key === "default" || key === "__esModule") return;
|
|
32
|
+
if (key in exports && exports[key] === _Error[key]) return;
|
|
33
|
+
Object.defineProperty(exports, key, {
|
|
34
|
+
enumerable: true,
|
|
35
|
+
get: function () {
|
|
36
|
+
return _Error[key];
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["_client","require","_Object$keys","forEach","key","exports","Object","defineProperty","enumerable","get","_Init","_Error"],"sources":["../../src/react-client/index.js"],"sourcesContent":["// @flow\nexport * from \"./client\";\nexport * from \"./Init\";\nexport * from \"../redux/actions/Error\";\n"],"mappings":";;;;;;AACA,IAAAA,OAAA,GAAAC,OAAA;AAAAC,YAAA,CAAAF,OAAA,EAAAG,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAJ,OAAA,CAAAI,GAAA;EAAAE,MAAA,CAAAC,cAAA,CAAAF,OAAA,EAAAD,GAAA;IAAAI,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,OAAA,CAAAI,GAAA;IAAA;EAAA;AAAA;AACA,IAAAM,KAAA,GAAAT,OAAA;AAAAC,YAAA,CAAAQ,KAAA,EAAAP,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAM,KAAA,CAAAN,GAAA;EAAAE,MAAA,CAAAC,cAAA,CAAAF,OAAA,EAAAD,GAAA;IAAAI,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,KAAA,CAAAN,GAAA;IAAA;EAAA;AAAA;AACA,IAAAO,MAAA,GAAAV,OAAA;AAAAC,YAAA,CAAAS,MAAA,EAAAR,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAO,MAAA,CAAAP,GAAA;EAAAE,MAAA,CAAAC,cAAA,CAAAF,OAAA,EAAAD,GAAA;IAAAI,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAE,MAAA,CAAAP,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/map"));
|
|
9
|
+
var _includes = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/includes"));
|
|
10
|
+
var _keys = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/keys"));
|
|
11
|
+
var _objects = require("../utils/helpers/objects");
|
|
12
|
+
var _Locales = _interopRequireDefault(require("../i18n/Locales"));
|
|
13
|
+
var _resolveModel = _interopRequireDefault(require("../models/resolveModel"));
|
|
14
|
+
var _ModularUIResponse = _interopRequireDefault(require("../modularui/ModularUIResponse"));
|
|
15
|
+
/**
|
|
16
|
+
* Recreate a model from dehydrated data obtained after a server render.
|
|
17
|
+
*/
|
|
18
|
+
const recreateModel = data => {
|
|
19
|
+
const modelData = _ModularUIResponse.default.rehydrate(data);
|
|
20
|
+
const Model = (0, _resolveModel.default)(modelData);
|
|
21
|
+
if (Model) {
|
|
22
|
+
var _context;
|
|
23
|
+
const model = new Model(modelData);
|
|
24
|
+
model.rehydrate(data);
|
|
25
|
+
const childModels = (0, _map.default)(_context = data.childModels).call(_context, childModel => recreateModel(childModel));
|
|
26
|
+
model.addChildModels(childModels, []);
|
|
27
|
+
return model;
|
|
28
|
+
}
|
|
29
|
+
return data;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
*/
|
|
34
|
+
const isModularUIModelData = data => data != null && typeof data === "object" && (0, _objects.has)(data, "data") && (0, _objects.has)(data, "contributions");
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
*/
|
|
38
|
+
const rehydratedValue = (stateKey, stateValue) => {
|
|
39
|
+
if (Array.isArray(stateValue)) {
|
|
40
|
+
return (0, _map.default)(stateValue).call(stateValue, stateItem => rehydrate(stateItem)); // NOSONAR
|
|
41
|
+
}
|
|
42
|
+
if (isModularUIModelData(stateValue)) {
|
|
43
|
+
return recreateModel(stateValue);
|
|
44
|
+
}
|
|
45
|
+
if (stateKey === "i18n" && (0, _objects.has)(stateValue, "locales") && (0, _objects.has)(stateValue, "locale")) {
|
|
46
|
+
return {
|
|
47
|
+
locales: _Locales.default.rehydrate(stateValue.locales),
|
|
48
|
+
locale: stateValue?.locale
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
const noFurtherRehydration = ["preferences", "router", "progressindicator", "modelcatalog"];
|
|
52
|
+
if ((0, _includes.default)(noFurtherRehydration).call(noFurtherRehydration, stateKey)) {
|
|
53
|
+
return stateValue;
|
|
54
|
+
}
|
|
55
|
+
if (stateValue !== null && typeof stateValue === "object") {
|
|
56
|
+
return rehydrate(stateValue); // NOSONAR
|
|
57
|
+
}
|
|
58
|
+
return stateValue;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Maps dehydrated state to models that can be used to rehydrated the application.
|
|
63
|
+
*/
|
|
64
|
+
const rehydrate = state => {
|
|
65
|
+
const mappedState = {};
|
|
66
|
+
(0, _keys.default)(state).forEach(stateKey => {
|
|
67
|
+
const stateValue = state[stateKey];
|
|
68
|
+
mappedState[stateKey] = rehydratedValue(stateKey, stateValue);
|
|
69
|
+
});
|
|
70
|
+
return mappedState;
|
|
71
|
+
};
|
|
72
|
+
var _default = exports.default = rehydrate;
|
|
73
|
+
//# sourceMappingURL=rehydrate.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rehydrate.cjs","names":["_objects","require","_Locales","_interopRequireDefault","_resolveModel","_ModularUIResponse","recreateModel","data","modelData","ModularUIResponse","rehydrate","Model","resolveModel","_context","model","childModels","_map","default","call","childModel","addChildModels","isModularUIModelData","has","rehydratedValue","stateKey","stateValue","Array","isArray","stateItem","locales","Locales","locale","noFurtherRehydration","_includes","state","mappedState","_keys","forEach","_default","exports"],"sources":["../../src/react-client/rehydrate.js"],"sourcesContent":["// @flow\nimport { has } from \"../utils/helpers/objects\";\nimport Locales from \"../i18n/Locales\";\n\nimport resolveModel from \"../models/resolveModel\";\n\nimport ModularUIResponse from \"../modularui/ModularUIResponse\";\n\n/**\n * Recreate a model from dehydrated data obtained after a server render.\n */\nconst recreateModel = (data: Object) => {\n const modelData = ModularUIResponse.rehydrate(data);\n\n const Model = resolveModel(modelData);\n\n if (Model) {\n const model = new Model(modelData);\n model.rehydrate(data);\n\n const childModels = data.childModels.map((childModel) =>\n recreateModel(childModel),\n );\n\n model.addChildModels(childModels, []);\n\n return model;\n }\n\n return data;\n};\n\n/**\n */\nconst isModularUIModelData = (data: any) =>\n data != null &&\n typeof data === \"object\" &&\n has(data, \"data\") &&\n has(data, \"contributions\");\n\n/**\n */\nconst rehydratedValue = (stateKey: string, stateValue: any) => {\n if (Array.isArray(stateValue)) {\n return stateValue.map((stateItem) => rehydrate(stateItem)); // NOSONAR\n }\n\n if (isModularUIModelData(stateValue)) {\n return recreateModel(stateValue);\n }\n\n if (\n stateKey === \"i18n\" &&\n has(stateValue, \"locales\") &&\n has(stateValue, \"locale\")\n ) {\n return {\n locales: Locales.rehydrate(stateValue.locales),\n locale: stateValue?.locale,\n };\n }\n\n const noFurtherRehydration = [\n \"preferences\",\n \"router\",\n \"progressindicator\",\n \"modelcatalog\",\n ];\n if (noFurtherRehydration.includes(stateKey)) {\n return stateValue;\n }\n\n if (stateValue !== null && typeof stateValue === \"object\") {\n return rehydrate(stateValue); // NOSONAR\n }\n\n return stateValue;\n};\n\n/**\n * Maps dehydrated state to models that can be used to rehydrated the application.\n */\nconst rehydrate = (state: Object): { ... } => {\n const mappedState: { [string]: any } = {};\n\n Object.keys(state).forEach((stateKey) => {\n const stateValue = state[stateKey];\n mappedState[stateKey] = rehydratedValue(stateKey, stateValue);\n });\n\n return mappedState;\n};\n\nexport default rehydrate;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _Settings = require("../constants/Settings");
|
|
7
|
+
(function x() {
|
|
8
|
+
__webpack_public_path__ = `${(0, _Settings.getBasePath)()}/`; // NOSONAR
|
|
9
|
+
})();
|
|
10
|
+
//# sourceMappingURL=contextPath.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contextPath.cjs","names":["_Settings","require","x","__webpack_public_path__","getBasePath"],"sources":["../../src/react-server/contextPath.js"],"sourcesContent":["// @flow\nimport { getBasePath } from \"../constants/Settings\";\n\n(function x() {\n __webpack_public_path__ = `${getBasePath()}/`; // NOSONAR\n})();\n\nexport {};\n"],"mappings":";;;;;AACA,IAAAA,SAAA,GAAAC,OAAA;AAEA,CAAC,SAASC,CAACA,CAAA,EAAG;EACZC,uBAAuB,GAAG,GAAG,IAAAC,qBAAW,EAAC,CAAC,GAAG,CAAC,CAAC;AACjD,CAAC,EAAE,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _filter = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/filter"));
|
|
9
|
+
var _keys = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/keys"));
|
|
10
|
+
var _promise = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/promise"));
|
|
11
|
+
var _Constants = require("../constants/Constants");
|
|
12
|
+
/**
|
|
13
|
+
*/
|
|
14
|
+
const noLoading = state => {
|
|
15
|
+
var _context;
|
|
16
|
+
return (0, _filter.default)(_context = (0, _keys.default)(state.modularui)).call(_context, key => state.modularui[key].status === _Constants.MODULARUI_STATUS.LOADING).length === 0;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
*/
|
|
21
|
+
const loadingCounter = state => {
|
|
22
|
+
var _context2;
|
|
23
|
+
return (0, _filter.default)(_context2 = (0, _keys.default)(state.modularui)).call(_context2, key => state.modularui[key].status === _Constants.MODULARUI_STATUS.LOADING).length;
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*/
|
|
28
|
+
const createSSRComplete = (store, render) => {
|
|
29
|
+
let loadingCount = loadingCounter(store.getState());
|
|
30
|
+
let html = "<div>Nothing to render</div>";
|
|
31
|
+
return new _promise.default((resolve, reject) => {
|
|
32
|
+
const unsubscribe = store.subscribe(() => {
|
|
33
|
+
const previousCount = loadingCount;
|
|
34
|
+
loadingCount = loadingCounter(store.getState());
|
|
35
|
+
if (previousCount !== loadingCount && noLoading(store.getState())) {
|
|
36
|
+
try {
|
|
37
|
+
html = render();
|
|
38
|
+
} catch (error) {
|
|
39
|
+
reject(error);
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
if (noLoading(store.getState())) {
|
|
43
|
+
unsubscribe();
|
|
44
|
+
resolve(html);
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
});
|
|
48
|
+
try {
|
|
49
|
+
html = render();
|
|
50
|
+
} catch (error) {
|
|
51
|
+
reject(error);
|
|
52
|
+
return;
|
|
53
|
+
}
|
|
54
|
+
if (noLoading(store.getState())) {
|
|
55
|
+
unsubscribe();
|
|
56
|
+
resolve(html);
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
};
|
|
60
|
+
var _default = exports.default = createSSRComplete;
|
|
61
|
+
//# sourceMappingURL=createSSRComplete.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createSSRComplete.cjs","names":["_Constants","require","noLoading","state","_context","_filter","default","_keys","modularui","call","key","status","MODULARUI_STATUS","LOADING","length","loadingCounter","_context2","createSSRComplete","store","render","loadingCount","getState","html","_promise","resolve","reject","unsubscribe","subscribe","previousCount","error","_default","exports"],"sources":["../../src/react-server/createSSRComplete.js"],"sourcesContent":["// @flow\nimport { MODULARUI_STATUS } from \"../constants/Constants\";\n\nimport type { ReduxStore, ReduxState } from \"../redux/types\";\n\n/**\n */\nconst noLoading = (state: ReduxState) =>\n Object.keys(state.modularui).filter(\n (key) => state.modularui[key].status === MODULARUI_STATUS.LOADING,\n ).length === 0;\n\n/**\n */\nconst loadingCounter = (state: ReduxState) =>\n Object.keys(state.modularui).filter(\n (key) => state.modularui[key].status === MODULARUI_STATUS.LOADING,\n ).length;\n\n/**\n */\nconst createSSRComplete = (\n store: ReduxStore,\n render: Function,\n): Promise<string> => {\n let loadingCount = loadingCounter(store.getState());\n let html = \"<div>Nothing to render</div>\";\n\n return new Promise((resolve, reject) => {\n const unsubscribe = store.subscribe(() => {\n const previousCount = loadingCount;\n loadingCount = loadingCounter(store.getState());\n\n if (previousCount !== loadingCount && noLoading(store.getState())) {\n try {\n html = render();\n } catch (error) {\n reject(error);\n return;\n }\n\n if (noLoading(store.getState())) {\n unsubscribe();\n resolve(html);\n }\n }\n });\n\n try {\n html = render();\n } catch (error) {\n reject(error);\n return;\n }\n\n if (noLoading(store.getState())) {\n unsubscribe();\n resolve(html);\n }\n });\n};\n\nexport default createSSRComplete;\n"],"mappings":";;;;;;;;;;AACA,IAAAA,UAAA,GAAAC,OAAA;AAIA;AACA;AACA,MAAMC,SAAS,GAAIC,KAAiB;EAAA,IAAAC,QAAA;EAAA,OAClC,IAAAC,OAAA,CAAAC,OAAA,EAAAF,QAAA,OAAAG,KAAA,CAAAD,OAAA,EAAYH,KAAK,CAACK,SAAS,CAAC,EAAAC,IAAA,CAAAL,QAAA,EACzBM,GAAG,IAAKP,KAAK,CAACK,SAAS,CAACE,GAAG,CAAC,CAACC,MAAM,KAAKC,2BAAgB,CAACC,OAC5D,CAAC,CAACC,MAAM,KAAK,CAAC;AAAA;;AAEhB;AACA;AACA,MAAMC,cAAc,GAAIZ,KAAiB;EAAA,IAAAa,SAAA;EAAA,OACvC,IAAAX,OAAA,CAAAC,OAAA,EAAAU,SAAA,OAAAT,KAAA,CAAAD,OAAA,EAAYH,KAAK,CAACK,SAAS,CAAC,EAAAC,IAAA,CAAAO,SAAA,EACzBN,GAAG,IAAKP,KAAK,CAACK,SAAS,CAACE,GAAG,CAAC,CAACC,MAAM,KAAKC,2BAAgB,CAACC,OAC5D,CAAC,CAACC,MAAM;AAAA;;AAEV;AACA;AACA,MAAMG,iBAAiB,GAAGA,CACxBC,KAAiB,EACjBC,MAAgB,KACI;EACpB,IAAIC,YAAY,GAAGL,cAAc,CAACG,KAAK,CAACG,QAAQ,CAAC,CAAC,CAAC;EACnD,IAAIC,IAAI,GAAG,8BAA8B;EAEzC,OAAO,IAAAC,QAAA,CAAAjB,OAAA,CAAY,CAACkB,OAAO,EAAEC,MAAM,KAAK;IACtC,MAAMC,WAAW,GAAGR,KAAK,CAACS,SAAS,CAAC,MAAM;MACxC,MAAMC,aAAa,GAAGR,YAAY;MAClCA,YAAY,GAAGL,cAAc,CAACG,KAAK,CAACG,QAAQ,CAAC,CAAC,CAAC;MAE/C,IAAIO,aAAa,KAAKR,YAAY,IAAIlB,SAAS,CAACgB,KAAK,CAACG,QAAQ,CAAC,CAAC,CAAC,EAAE;QACjE,IAAI;UACFC,IAAI,GAAGH,MAAM,CAAC,CAAC;QACjB,CAAC,CAAC,OAAOU,KAAK,EAAE;UACdJ,MAAM,CAACI,KAAK,CAAC;UACb;QACF;QAEA,IAAI3B,SAAS,CAACgB,KAAK,CAACG,QAAQ,CAAC,CAAC,CAAC,EAAE;UAC/BK,WAAW,CAAC,CAAC;UACbF,OAAO,CAACF,IAAI,CAAC;QACf;MACF;IACF,CAAC,CAAC;IAEF,IAAI;MACFA,IAAI,GAAGH,MAAM,CAAC,CAAC;IACjB,CAAC,CAAC,OAAOU,KAAK,EAAE;MACdJ,MAAM,CAACI,KAAK,CAAC;MACb;IACF;IAEA,IAAI3B,SAAS,CAACgB,KAAK,CAACG,QAAQ,CAAC,CAAC,CAAC,EAAE;MAC/BK,WAAW,CAAC,CAAC;MACbF,OAAO,CAACF,IAAI,CAAC;IACf;EACF,CAAC,CAAC;AACJ,CAAC;AAAC,IAAAQ,QAAA,GAAAC,OAAA,CAAAzB,OAAA,GAEaW,iBAAiB","ignoreList":[]}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/map"));
|
|
9
|
+
var _filter = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/filter"));
|
|
10
|
+
var _keys = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/keys"));
|
|
11
|
+
var _trim = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/trim"));
|
|
12
|
+
var _exceptions = require("../exceptions");
|
|
13
|
+
/**
|
|
14
|
+
*/
|
|
15
|
+
const htmlpage = props => {
|
|
16
|
+
var _context, _context2, _context3;
|
|
17
|
+
if (props?.contextPath === undefined) {
|
|
18
|
+
throw new _exceptions.IllegalArgumentException("Missing contextPath argument");
|
|
19
|
+
}
|
|
20
|
+
if (props.html === undefined) {
|
|
21
|
+
throw new _exceptions.IllegalArgumentException("Missing html for server");
|
|
22
|
+
}
|
|
23
|
+
const {
|
|
24
|
+
head = {}
|
|
25
|
+
} = props;
|
|
26
|
+
const template = `
|
|
27
|
+
<!doctype html>
|
|
28
|
+
<html ${head.htmlAttributes ? head.htmlAttributes.toString() : ""}>
|
|
29
|
+
<head>
|
|
30
|
+
<meta charset="utf-8" />
|
|
31
|
+
${(0, _map.default)(_context = (0, _filter.default)(_context2 = (0, _keys.default)(head)).call(_context2, key => key !== "htmlAttributes")).call(_context, key => head[key].toString()).join("")}
|
|
32
|
+
{CSSASSETS:<link rel="stylesheet" type="text/css" href="{CONTEXT_PATH}/{FILE}" />:CSSASSETS}
|
|
33
|
+
</head>
|
|
34
|
+
<body class="nojs">
|
|
35
|
+
<div id="application">${props.html}</div>
|
|
36
|
+
<div id="portal"></div>
|
|
37
|
+
<script
|
|
38
|
+
type="application/json"
|
|
39
|
+
data-app-state="app-json"
|
|
40
|
+
data-app-contextpath="{CONTEXT_PATH}"
|
|
41
|
+
data-app-filepath="{FILEPATH}"
|
|
42
|
+
data-app-nonce="${props.UUID ?? ""}">${props.state ?? ""}</script>
|
|
43
|
+
{JSASSETS:<script src="{CONTEXT_PATH}/{FILE}"></script>:JSASSETS}
|
|
44
|
+
</body>
|
|
45
|
+
</html>
|
|
46
|
+
`;
|
|
47
|
+
|
|
48
|
+
// It is important to replace the context afterwards,
|
|
49
|
+
// the JSASSESTS and CSSASSETS parts act as a small template for all generated javascript and css files
|
|
50
|
+
// these templates must be pure strings to make it possible to add the context path in all situations
|
|
51
|
+
return (0, _trim.default)(_context3 = template.replace(/{CONTEXT_PATH}/g, props.contextPath)).call(_context3);
|
|
52
|
+
};
|
|
53
|
+
var _default = exports.default = htmlpage;
|
|
54
|
+
//# sourceMappingURL=htmlpage.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"htmlpage.cjs","names":["_exceptions","require","htmlpage","props","_context","_context2","_context3","contextPath","undefined","IllegalArgumentException","html","head","template","htmlAttributes","toString","_map","default","_filter","_keys","call","key","join","UUID","state","_trim","replace","_default","exports"],"sources":["../../src/react-server/htmlpage.js"],"sourcesContent":["// @flow\nimport { IllegalArgumentException } from \"../exceptions\";\n\nexport type TemplateProps = {\n contextPath: string,\n html: string,\n head: Object,\n state: string,\n UUID: string,\n};\n\n/**\n */\nconst htmlpage = (props: TemplateProps): string => {\n if (props?.contextPath === undefined) {\n throw new IllegalArgumentException(\"Missing contextPath argument\");\n }\n if (props.html === undefined) {\n throw new IllegalArgumentException(\"Missing html for server\");\n }\n\n const { head = {} } = props;\n\n const template = `\n <!doctype html>\n <html ${head.htmlAttributes ? head.htmlAttributes.toString() : \"\"}>\n <head>\n <meta charset=\"utf-8\" />\n ${Object.keys(head)\n .filter((key) => key !== \"htmlAttributes\")\n .map((key) => head[key].toString())\n .join(\"\")}\n {CSSASSETS:<link rel=\"stylesheet\" type=\"text/css\" href=\"{CONTEXT_PATH}/{FILE}\" />:CSSASSETS}\n </head>\n <body class=\"nojs\">\n <div id=\"application\">${props.html}</div>\n <div id=\"portal\"></div>\n <script\n type=\"application/json\"\n data-app-state=\"app-json\"\n data-app-contextpath=\"{CONTEXT_PATH}\"\n data-app-filepath=\"{FILEPATH}\"\n data-app-nonce=\"${props.UUID ?? \"\"}\">${props.state ?? \"\"}</script>\n {JSASSETS:<script src=\"{CONTEXT_PATH}/{FILE}\"></script>:JSASSETS}\n </body>\n </html>\n`;\n\n // It is important to replace the context afterwards,\n // the JSASSESTS and CSSASSETS parts act as a small template for all generated javascript and css files\n // these templates must be pure strings to make it possible to add the context path in all situations\n return template.replace(/{CONTEXT_PATH}/g, props.contextPath).trim();\n};\n\nexport default htmlpage;\n"],"mappings":";;;;;;;;;;;AACA,IAAAA,WAAA,GAAAC,OAAA;AAUA;AACA;AACA,MAAMC,QAAQ,GAAIC,KAAoB,IAAa;EAAA,IAAAC,QAAA,EAAAC,SAAA,EAAAC,SAAA;EACjD,IAAIH,KAAK,EAAEI,WAAW,KAAKC,SAAS,EAAE;IACpC,MAAM,IAAIC,oCAAwB,CAAC,8BAA8B,CAAC;EACpE;EACA,IAAIN,KAAK,CAACO,IAAI,KAAKF,SAAS,EAAE;IAC5B,MAAM,IAAIC,oCAAwB,CAAC,yBAAyB,CAAC;EAC/D;EAEA,MAAM;IAAEE,IAAI,GAAG,CAAC;EAAE,CAAC,GAAGR,KAAK;EAE3B,MAAMS,QAAQ,GAAG;AACnB;AACA,UAAUD,IAAI,CAACE,cAAc,GAAGF,IAAI,CAACE,cAAc,CAACC,QAAQ,CAAC,CAAC,GAAG,EAAE;AACnE;AACA;AACA,QAAQ,IAAAC,IAAA,CAAAC,OAAA,EAAAZ,QAAA,OAAAa,OAAA,CAAAD,OAAA,EAAAX,SAAA,OAAAa,KAAA,CAAAF,OAAA,EAAYL,IAAI,CAAC,EAAAQ,IAAA,CAAAd,SAAA,EACRe,GAAG,IAAKA,GAAG,KAAK,gBAAgB,CAAC,EAAAD,IAAA,CAAAf,QAAA,EACpCgB,GAAG,IAAKT,IAAI,CAACS,GAAG,CAAC,CAACN,QAAQ,CAAC,CAAC,CAAC,CAClCO,IAAI,CAAC,EAAE,CAAC;AACjB;AACA;AACA;AACA,8BAA8BlB,KAAK,CAACO,IAAI;AACxC;AACA;AACA;AACA;AACA;AACA;AACA,0BAA0BP,KAAK,CAACmB,IAAI,IAAI,EAAE,KAAKnB,KAAK,CAACoB,KAAK,IAAI,EAAE;AAChE;AACA;AACA;AACA,CAAC;;EAEC;EACA;EACA;EACA,OAAO,IAAAC,KAAA,CAAAR,OAAA,EAAAV,SAAA,GAAAM,QAAQ,CAACa,OAAO,CAAC,iBAAiB,EAAEtB,KAAK,CAACI,WAAW,CAAC,EAAAY,IAAA,CAAAb,SAAM,CAAC;AACtE,CAAC;AAAC,IAAAoB,QAAA,GAAAC,OAAA,CAAAX,OAAA,GAEad,QAAQ","ignoreList":[]}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _Object$keys = require("@babel/runtime-corejs3/core-js-stable/object/keys");
|
|
4
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
var _exportNames = {
|
|
9
|
+
setCustomErrorResponseHandler: true,
|
|
10
|
+
renderSSRComplete: true,
|
|
11
|
+
renderSSRMinimal: true,
|
|
12
|
+
serverNoSSR: true,
|
|
13
|
+
serverSSR: true,
|
|
14
|
+
htmlpage: true
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "htmlpage", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function () {
|
|
19
|
+
return _htmlpage.default;
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
Object.defineProperty(exports, "renderSSRComplete", {
|
|
23
|
+
enumerable: true,
|
|
24
|
+
get: function () {
|
|
25
|
+
return _renderSSRComplete.default;
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
Object.defineProperty(exports, "renderSSRMinimal", {
|
|
29
|
+
enumerable: true,
|
|
30
|
+
get: function () {
|
|
31
|
+
return _renderSSRMinimal.default;
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
Object.defineProperty(exports, "serverNoSSR", {
|
|
35
|
+
enumerable: true,
|
|
36
|
+
get: function () {
|
|
37
|
+
return _serverNoSSR.default;
|
|
38
|
+
}
|
|
39
|
+
});
|
|
40
|
+
Object.defineProperty(exports, "serverSSR", {
|
|
41
|
+
enumerable: true,
|
|
42
|
+
get: function () {
|
|
43
|
+
return _serverSSR.default;
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
Object.defineProperty(exports, "setCustomErrorResponseHandler", {
|
|
47
|
+
enumerable: true,
|
|
48
|
+
get: function () {
|
|
49
|
+
return _Error.setCustomErrorResponseHandler;
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
var _Error = require("../redux/actions/Error");
|
|
53
|
+
var _renderSSRComplete = _interopRequireDefault(require("./renderSSRComplete"));
|
|
54
|
+
var _renderSSRMinimal = _interopRequireDefault(require("./renderSSRMinimal"));
|
|
55
|
+
var _serverNoSSR = _interopRequireDefault(require("./serverNoSSR"));
|
|
56
|
+
var _serverSSR = _interopRequireDefault(require("./serverSSR"));
|
|
57
|
+
var _htmlpage = _interopRequireDefault(require("./htmlpage"));
|
|
58
|
+
var _requestInformation = require("./requestInformation");
|
|
59
|
+
_Object$keys(_requestInformation).forEach(function (key) {
|
|
60
|
+
if (key === "default" || key === "__esModule") return;
|
|
61
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
62
|
+
if (key in exports && exports[key] === _requestInformation[key]) return;
|
|
63
|
+
Object.defineProperty(exports, key, {
|
|
64
|
+
enumerable: true,
|
|
65
|
+
get: function () {
|
|
66
|
+
return _requestInformation[key];
|
|
67
|
+
}
|
|
68
|
+
});
|
|
69
|
+
});
|
|
70
|
+
var _serverUtil = require("./serverUtil");
|
|
71
|
+
_Object$keys(_serverUtil).forEach(function (key) {
|
|
72
|
+
if (key === "default" || key === "__esModule") return;
|
|
73
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
74
|
+
if (key in exports && exports[key] === _serverUtil[key]) return;
|
|
75
|
+
Object.defineProperty(exports, key, {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
get: function () {
|
|
78
|
+
return _serverUtil[key];
|
|
79
|
+
}
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["_Error","require","_renderSSRComplete","_interopRequireDefault","_renderSSRMinimal","_serverNoSSR","_serverSSR","_htmlpage","_requestInformation","_Object$keys","forEach","key","Object","prototype","hasOwnProperty","call","_exportNames","exports","defineProperty","enumerable","get","_serverUtil"],"sources":["../../src/react-server/index.js"],"sourcesContent":["// @flow\nexport { setCustomErrorResponseHandler } from \"../redux/actions/Error\";\n\nexport { default as renderSSRComplete } from \"./renderSSRComplete\";\nexport { default as renderSSRMinimal } from \"./renderSSRMinimal\";\n\nexport { default as serverNoSSR } from \"./serverNoSSR\";\nexport { default as serverSSR } from \"./serverSSR\";\n\nexport { default as htmlpage } from \"./htmlpage\";\n\nexport * from \"./requestInformation\";\nexport * from \"./serverUtil\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AACA,IAAAA,MAAA,GAAAC,OAAA;AAEA,IAAAC,kBAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,iBAAA,GAAAD,sBAAA,CAAAF,OAAA;AAEA,IAAAI,YAAA,GAAAF,sBAAA,CAAAF,OAAA;AACA,IAAAK,UAAA,GAAAH,sBAAA,CAAAF,OAAA;AAEA,IAAAM,SAAA,GAAAJ,sBAAA,CAAAF,OAAA;AAEA,IAAAO,mBAAA,GAAAP,OAAA;AAAAQ,YAAA,CAAAD,mBAAA,EAAAE,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAC,MAAA,CAAAC,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAL,GAAA;EAAA,IAAAA,GAAA,IAAAM,OAAA,IAAAA,OAAA,CAAAN,GAAA,MAAAH,mBAAA,CAAAG,GAAA;EAAAC,MAAA,CAAAM,cAAA,CAAAD,OAAA,EAAAN,GAAA;IAAAQ,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAZ,mBAAA,CAAAG,GAAA;IAAA;EAAA;AAAA;AACA,IAAAU,WAAA,GAAApB,OAAA;AAAAQ,YAAA,CAAAY,WAAA,EAAAX,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAC,MAAA,CAAAC,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAC,YAAA,EAAAL,GAAA;EAAA,IAAAA,GAAA,IAAAM,OAAA,IAAAA,OAAA,CAAAN,GAAA,MAAAU,WAAA,CAAAV,GAAA;EAAAC,MAAA,CAAAM,cAAA,CAAAD,OAAA,EAAAN,GAAA;IAAAQ,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,WAAA,CAAAV,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { setCustomErrorResponseHandler } from "../redux/actions/Error";
|
|
2
|
+
export { default as renderSSRComplete } from "./renderSSRComplete";
|
|
3
|
+
export { default as renderSSRMinimal } from "./renderSSRMinimal";
|
|
4
|
+
export { default as serverNoSSR } from "./serverNoSSR";
|
|
5
|
+
export { default as serverSSR } from "./serverSSR";
|
|
6
|
+
export { default as htmlpage } from "./htmlpage";
|
|
7
|
+
export * from "./requestInformation";
|
|
8
|
+
export * from "./serverUtil";
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
var _server = require("react-dom/server");
|
|
9
|
+
var _reactRedux = require("react-redux");
|
|
10
|
+
var _reactRouter = require("react-router");
|
|
11
|
+
var _reactHelmetAsync = require("react-helmet-async");
|
|
12
|
+
var _styledComponents = require("styled-components");
|
|
13
|
+
var _createSSRComplete = _interopRequireDefault(require("./createSSRComplete"));
|
|
14
|
+
var _htmlpage = _interopRequireDefault(require("./htmlpage"));
|
|
15
|
+
var _Settings = require("../constants/Settings");
|
|
16
|
+
var _ThemeProvider = _interopRequireDefault(require("../react-theme/ThemeProvider"));
|
|
17
|
+
var _ErrorBoundary = _interopRequireDefault(require("../react/ErrorBoundary"));
|
|
18
|
+
var _serverUtil = require("./serverUtil");
|
|
19
|
+
var _jsxRuntime = require("react/jsx-runtime");
|
|
20
|
+
/**
|
|
21
|
+
*/
|
|
22
|
+
const renderSSRComplete = _ref => {
|
|
23
|
+
let {
|
|
24
|
+
store,
|
|
25
|
+
theme,
|
|
26
|
+
UUID = "",
|
|
27
|
+
requestHref,
|
|
28
|
+
render,
|
|
29
|
+
ErrorPage,
|
|
30
|
+
template = _htmlpage.default
|
|
31
|
+
} = _ref;
|
|
32
|
+
const helmetContext = {
|
|
33
|
+
helmet: {}
|
|
34
|
+
};
|
|
35
|
+
const routerContext = {};
|
|
36
|
+
const sheet = new _styledComponents.ServerStyleSheet();
|
|
37
|
+
|
|
38
|
+
// $FlowFixMe[incompatible-type]
|
|
39
|
+
// $FlowFixMe[prop-missing]
|
|
40
|
+
const location = requestHref.toLocation();
|
|
41
|
+
const basePath = (0, _Settings.getBasePathServer)();
|
|
42
|
+
return (0, _createSSRComplete.default)(store, () => (0, _server.renderToString)(/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactRedux.Provider, {
|
|
43
|
+
store: store,
|
|
44
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_styledComponents.StyleSheetManager, {
|
|
45
|
+
sheet: sheet.instance,
|
|
46
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ThemeProvider.default, {
|
|
47
|
+
theme: theme,
|
|
48
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactHelmetAsync.HelmetProvider, {
|
|
49
|
+
context: helmetContext,
|
|
50
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ErrorBoundary.default, {
|
|
51
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactRouter.StaticRouter, {
|
|
52
|
+
basename: basePath,
|
|
53
|
+
location: location,
|
|
54
|
+
context: routerContext,
|
|
55
|
+
children: render()
|
|
56
|
+
})
|
|
57
|
+
})
|
|
58
|
+
})
|
|
59
|
+
})
|
|
60
|
+
})
|
|
61
|
+
}))).then(appHTML => {
|
|
62
|
+
(0, _serverUtil.handleErrors)(store);
|
|
63
|
+
const head = (0, _serverUtil.createHead)(sheet, UUID, helmetContext);
|
|
64
|
+
return template({
|
|
65
|
+
contextPath: basePath,
|
|
66
|
+
html: appHTML,
|
|
67
|
+
head,
|
|
68
|
+
state: (0, _serverUtil.dehydrate)(store),
|
|
69
|
+
UUID
|
|
70
|
+
});
|
|
71
|
+
}).catch(error => template({
|
|
72
|
+
contextPath: basePath,
|
|
73
|
+
html: (0, _server.renderToString)(/*#__PURE__*/(0, _jsxRuntime.jsx)(_styledComponents.StyleSheetManager, {
|
|
74
|
+
sheet: sheet.instance,
|
|
75
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ThemeProvider.default, {
|
|
76
|
+
theme: theme,
|
|
77
|
+
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(ErrorPage, {
|
|
78
|
+
errorMessage: error.message,
|
|
79
|
+
errorResource: error.fileName,
|
|
80
|
+
errorLine: error.lineNumber,
|
|
81
|
+
errorStack: error.stack
|
|
82
|
+
})
|
|
83
|
+
})
|
|
84
|
+
})),
|
|
85
|
+
head: helmetContext.helmet,
|
|
86
|
+
state: "",
|
|
87
|
+
UUID
|
|
88
|
+
}));
|
|
89
|
+
};
|
|
90
|
+
var _default = exports.default = renderSSRComplete;
|
|
91
|
+
//# sourceMappingURL=renderSSRComplete.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"renderSSRComplete.cjs","names":["_server","require","_reactRedux","_reactRouter","_reactHelmetAsync","_styledComponents","_createSSRComplete","_interopRequireDefault","_htmlpage","_Settings","_ThemeProvider","_ErrorBoundary","_serverUtil","_jsxRuntime","renderSSRComplete","_ref","store","theme","UUID","requestHref","render","ErrorPage","template","htmlpage","helmetContext","helmet","routerContext","sheet","ServerStyleSheet","location","toLocation","basePath","getBasePathServer","createSSRComplete","renderToString","jsx","Provider","children","StyleSheetManager","instance","default","HelmetProvider","context","StaticRouter","basename","then","appHTML","handleErrors","head","createHead","contextPath","html","state","dehydrate","catch","error","errorMessage","message","errorResource","fileName","errorLine","lineNumber","errorStack","stack","_default","exports"],"sources":["../../src/react-server/renderSSRComplete.js"],"sourcesContent":["// @flow\nimport { renderToString } from \"react-dom/server\";\nimport { Provider } from \"react-redux\";\nimport { StaticRouter as Router } from \"react-router\";\n\nimport { HelmetProvider } from \"react-helmet-async\";\n\nimport { ServerStyleSheet, StyleSheetManager } from \"styled-components\";\n\nimport createSSRComplete from \"./createSSRComplete\";\nimport htmlpage from \"./htmlpage\";\n\nimport { getBasePathServer } from \"../constants/Settings\";\n\nimport ThemeProvider from \"../react-theme/ThemeProvider\";\nimport ErrorBoundary from \"../react/ErrorBoundary\";\n\nimport { createHead, handleErrors, dehydrate } from \"./serverUtil\";\n\nimport type { Theme } from \"../react-theme/types\";\nimport type { ReduxStore } from \"../redux/types\";\nimport type Href from \"../models/href/Href\";\nimport type { TemplateProps } from \"./htmlpage\";\nimport type { Location } from \"react-router\";\n\ntype Props = {\n store: ReduxStore,\n theme: Theme,\n UUID: string,\n requestHref: Href,\n render: Function,\n ErrorPage: any,\n template?: (TemplateProps) => string,\n};\n/**\n */\nconst renderSSRComplete = ({\n store,\n theme,\n UUID = \"\",\n requestHref,\n render,\n ErrorPage,\n template = htmlpage,\n}: Props): Promise<string> => {\n const helmetContext = { helmet: {} };\n const routerContext = {};\n\n const sheet = new ServerStyleSheet();\n\n // $FlowFixMe[incompatible-type]\n // $FlowFixMe[prop-missing]\n const location: Location = requestHref.toLocation();\n\n const basePath = getBasePathServer();\n\n return createSSRComplete(store, () =>\n renderToString(\n <Provider store={store}>\n <StyleSheetManager sheet={sheet.instance}>\n <ThemeProvider theme={theme}>\n <HelmetProvider context={helmetContext}>\n <ErrorBoundary>\n <Router\n basename={basePath}\n location={location}\n context={routerContext}\n >\n {render()}\n </Router>\n </ErrorBoundary>\n </HelmetProvider>\n </ThemeProvider>\n </StyleSheetManager>\n </Provider>,\n ),\n )\n .then((appHTML) => {\n handleErrors(store);\n const head = createHead(sheet, UUID, helmetContext);\n return template({\n contextPath: basePath,\n html: appHTML,\n head,\n state: dehydrate(store),\n UUID,\n });\n })\n .catch((error) =>\n template({\n contextPath: basePath,\n html: renderToString(\n <StyleSheetManager sheet={sheet.instance}>\n <ThemeProvider theme={theme}>\n <ErrorPage\n errorMessage={error.message}\n errorResource={error.fileName}\n errorLine={error.lineNumber}\n errorStack={error.stack}\n />\n </ThemeProvider>\n </StyleSheetManager>,\n ),\n head: helmetContext.helmet,\n state: \"\",\n UUID,\n }),\n );\n};\n\nexport default renderSSRComplete;\n"],"mappings":"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","ignoreList":[]}
|