@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":"AttributeModel.cjs","names":["_objects","require","_BaseModel","_interopRequireDefault","_ConstraintCollection","_ErrorCollection","_LinkCollection","_StringLengthConstraint","_MandatoryConstraint","_ConceptDetailModel","_LayoutHints","_Constants","_Settings","_exceptions","_AttributeContent","AttributeModel","BaseModel","constructor","attribute","attributeContributions","modelOptions","_defineProperty2","default","ConstraintCollection","getSetting","hasContentFromData","content","label","_label","contributions","_initvalue","data","value","_inputvalue","getInitialInputValue","_value","_disabled","layouthint","has","DISABLED","_errorCollection","ErrorCollection","message","addServerError","id","parameters","_referenceDate","getData","Date","toISOString","split","_isResult","_mandatory","MANDATORY","mandatory","_links","LinkCollection","isApplicableModel","isPlainObject","IllegalArgumentException","getInitialChildModelLinks","hasContentConfiguration","conceptLink","setChildModels","models","errors","conceptHref","href","concept","_find","call","model","selfhref","equalsWithParameters","key","parentKey","_parentKey","name","type","_hasContentConfiguration","indicateContentConfiguration","contentConfiguration","hasQuestionConfig","questions","hasConfig","hasEndResultConfig","isConfiguredEndResultAttribute","hasIntermediateResultConfig","isConfiguredIntermediateResultAttribute","getContentConfiguredLabel","configuredLabelProperties","labelConfig","length","types","_context","configuredLabels","_filter","getLabelElementByIds","configuredLabel","_context2","firstConfiguredLabel","_map","configuredLabelProperty","some","_id","defaultAlignment","alignment","alignmentHints","getByLayoutHint","substring","links","downloadLink","getLinksByGroup","first","getLinkByKey","addParameter","TIMEVERSION_FILTER_NAME","referenceDate","isCacheable","_concept","ConceptDetailModel","date","initvalue","getInputValue","inputvalue","toString","validateValue","validate","hasValue","getValue","getFormData","inError","formdata","getEmptyFormData","updateLastModification","formatValue","readonlyvalue","configuredMandatory","_validatedValue","readonly","_readonly","static","isResult","disabled","format","getContribution","formatLabel","minLength","maxLength","operator","assistantMessage","isValid","constraintCollection","constraints","add","_serverConstraints","MandatoryConstraint","StringLengthConstraint","addConstraints","setUseClientsideValidation","enabled","_useClientsideValidation","useClientsideValidation","isOptionalAndEmpty","_isValid","undefined","errorCollection","collection","invalidConstraints","isChangedSince","resetErrors","error","properties","removeServerError","hasServerErrors","serverErrors","hasErrors","hasItems","addMissingError","receivedAttribute","removeMissingError","addServerConstraint","defaultMessage","addConstraint","formatParameters","params","_keys","forEach","paramKey","paramValue","_endsWith","hasDynamicValidationData","updateValidations","_lastModification","now","timestamp","reset","UnsupportedOperationException","mergeAttribute","oldAttribute","update","changedAttribute","updateByAttribute","otherAttribute","console","isEditable","_isEditable","isVisible","_isHidden","isHidden","show","hide","equals","readonlyWidth","ATTRIBUTE_WIDTH","MEDIUM","layoutHintRules","_layoutHintRules","rules","processLayoutHintRules","attributes","process","hasAllContentInData","AttributeContent","exports"],"sources":["../../../src/models/attributes/AttributeModel.js"],"sourcesContent":["// @flow\nimport { isPlainObject } from \"../../utils/helpers/objects\";\n\nimport BaseModel from \"../base/BaseModel\";\nimport ConstraintCollection from \"./input-constraints/ConstraintCollection\";\nimport ErrorCollection from \"../error/ErrorCollection\";\nimport LinkCollection from \"../links/LinkCollection\";\n\nimport StringLengthConstraint from \"./input-constraints/StringLengthConstraint\";\nimport MandatoryConstraint from \"./input-constraints/MandatoryConstraint\";\n\nimport ConceptDetailModel from \"../concepts/ConceptDetailModel\";\n\nimport { DISABLED, MANDATORY } from \"../../constants/LayoutHints\";\nimport {\n ATTRIBUTE_WIDTH,\n TIMEVERSION_FILTER_NAME,\n} from \"../../constants/Constants\";\n\nimport { getSetting, hasAllContentInData } from \"../../constants/Settings\";\n\nimport {\n IllegalArgumentException,\n UnsupportedOperationException,\n} from \"../../exceptions\";\n\nimport type { MessageParameters } from \"../../i18n/types\";\nimport type {\n AttributeType,\n FormErrorAnchor,\n IModelWithChildModels,\n ModelOptions,\n ModularUIModel,\n} from \"../types\";\nimport type LinkModel from \"../links/LinkModel\";\nimport type ContentConfiguration from \"../contentconfiguration/ContentConfiguration\";\nimport type ContentConfigurationElements from \"../contentconfiguration/ContentConfigurationElements\";\nimport type LayoutHintRuleCollection from \"./layouthint-rules/LayoutHintRuleCollection\";\nimport type AttributeCollection from \"./AttributeCollection\";\nimport AttributeContent from \"./AttributeContent\";\nimport type ErrorResponse from \"../error/ErrorResponse\";\n\n/**\n * Attribute model, base model for all kind of attributes\n */\nexport default class AttributeModel\n extends BaseModel\n implements IModelWithChildModels\n{\n _label: string;\n _lastModification: number = 0;\n\n _initvalue: any;\n _inputvalue: string;\n _value: any;\n\n _errorCollection: ErrorCollection;\n _serverConstraints: ConstraintCollection = new ConstraintCollection();\n _useClientsideValidation: boolean = getSetting(\"USE_CLIENTSIDE_VALIDATION\");\n _isValid: boolean = true;\n _validatedValue: string | null;\n _isEditable: boolean = false;\n _concept: ConceptDetailModel | null = null;\n _referenceDate: ISO_DATE;\n _isResult: boolean;\n _isHidden: boolean = false;\n _readonly: boolean;\n _disabled: boolean = false;\n _mandatory: boolean;\n _links: LinkCollection;\n _parentKey: ?string;\n _hasContentConfiguration: boolean;\n _layoutHintRules: LayoutHintRuleCollection;\n\n /**\n */\n constructor(\n attribute: Object,\n attributeContributions: Object,\n modelOptions?: ModelOptions,\n ) {\n super(attribute, attributeContributions, modelOptions);\n\n if (this.hasContentFromData && this.content.label) {\n this._label = this.content.label;\n } else {\n this._label = this.contributions.label;\n }\n\n this._initvalue = this.data.value;\n this._inputvalue = this.getInitialInputValue(this.data.value);\n this._value = this.data.value;\n this._disabled = this.layouthint.has(DISABLED);\n\n this._errorCollection = new ErrorCollection(\"attribute\");\n if (attribute && attribute.message) {\n this._errorCollection.addServerError(\n attribute.message.id,\n attribute.message.message,\n attribute.message.parameters,\n attribute.message.layouthint,\n );\n }\n\n this._referenceDate = this.getData(\n \"referenceDate\",\n new Date().toISOString().split(\"T\")[0],\n );\n\n this._isResult = this.getData(\"isResult\", false);\n\n this._mandatory =\n this.layouthint.has(MANDATORY) || this.contributions.mandatory;\n\n this._links = new LinkCollection(\n this.data._links,\n this.contributions._links,\n modelOptions,\n );\n }\n\n /**\n */\n static isApplicableModel(contributions: Object): boolean {\n if (!isPlainObject(contributions)) {\n throw new IllegalArgumentException(\n \"Given argument for isApplicableModel is not a contributions object\",\n );\n }\n\n return false;\n }\n\n /**\n * Retrieve initial input value\n */\n getInitialInputValue(value: any): any {\n return value;\n }\n\n /**\n */\n getInitialChildModelLinks(): Array<LinkModel> {\n if (\n !this.hasContentFromData &&\n this.hasContentConfiguration &&\n this.conceptLink\n ) {\n return [this.conceptLink];\n }\n return [];\n }\n\n /**\n */\n setChildModels(\n models: Array<ModularUIModel>,\n errors: Array<ErrorResponse>, // eslint-disable-line no-unused-vars\n ): void {\n const conceptHref = this.conceptLink?.href;\n if (conceptHref) {\n this.concept = models.find((model) =>\n model.selfhref.equalsWithParameters(conceptHref),\n );\n }\n }\n\n /**\n * Getting the attribute key\n */\n get key(): string {\n return this.data.key;\n }\n\n /**\n */\n get parentKey(): string {\n return this._parentKey || \"\";\n }\n\n /**\n */\n set parentKey(parentKey: string) {\n this._parentKey = parentKey;\n }\n\n /**\n * Getting the attribute name\n */\n get name(): string {\n return this.key;\n }\n\n /**\n * Getting the type of the attribute\n */\n get type(): string {\n return this.contributions.type;\n }\n\n /**\n * Getting the label of the attribute\n */\n get label(): string {\n return this._label || \"\";\n }\n\n /**\n * Set the label of this attribute\n */\n set label(label: string) {\n this._label = label;\n }\n\n /**\n */\n set hasContentConfiguration(hasContentConfiguration: boolean) {\n this._hasContentConfiguration = hasContentConfiguration;\n }\n\n /**\n */\n get hasContentConfiguration(): boolean {\n return this._hasContentConfiguration || false;\n }\n\n /**\n */\n indicateContentConfiguration(\n contentConfiguration: ContentConfiguration,\n ): void {\n if (contentConfiguration) {\n const hasQuestionConfig = contentConfiguration.questions?.hasConfig();\n\n const hasEndResultConfig =\n contentConfiguration.isConfiguredEndResultAttribute(this.key);\n const hasIntermediateResultConfig =\n contentConfiguration.isConfiguredIntermediateResultAttribute(this.key);\n\n this.hasContentConfiguration =\n hasQuestionConfig || hasEndResultConfig || hasIntermediateResultConfig;\n }\n }\n\n /**\n * Retrieve the first permitted label to render when a concept and contentConfiguration is available\n * Be aware that permission could be in place for labels from a concept.\n */\n getContentConfiguredLabel(\n contentConfiguration: ?ContentConfigurationElements,\n ): string {\n if (this.hasContentFromData) {\n return this.content.label ?? this.label;\n }\n\n const configuredLabelProperties =\n contentConfiguration && contentConfiguration.labelConfig.length > 0\n ? contentConfiguration.labelConfig[0].types\n : [];\n\n if (this.concept && configuredLabelProperties.length > 0) {\n const configuredLabels = this.concept\n .getLabelElementByIds(configuredLabelProperties)\n .filter(\n (configuredLabel) =>\n configuredLabel.value && configuredLabel.value !== \"\",\n );\n\n if (configuredLabels.length > 0) {\n const [firstConfiguredLabel] = configuredLabelProperties\n .filter((configuredLabelProperty) =>\n configuredLabels.some(\n (configuredLabel) =>\n configuredLabel._id === configuredLabelProperty,\n ),\n )\n .map((configuredLabelProperty) =>\n configuredLabels.find(\n (configuredLabel) =>\n configuredLabel._id === configuredLabelProperty,\n ),\n );\n\n if (firstConfiguredLabel) {\n return firstConfiguredLabel.value;\n }\n }\n }\n\n return this.label;\n }\n\n /**\n */\n get defaultAlignment(): \"left\" | \"center\" | \"right\" {\n return \"left\";\n }\n\n /**\n * Handles layout hint align-left, align-center and align-right\n */\n get alignment(): \"left\" | \"center\" | \"right\" {\n const alignmentHints = this.layouthint.getByLayoutHint(\"align-\");\n\n // return alignment based on layouthint or the default alignment for the attribute\n const alignment = alignmentHints\n ? alignmentHints.substring(\"align-\".length)\n : this.defaultAlignment;\n\n if (\n alignment === \"left\" ||\n alignment === \"center\" ||\n alignment === \"right\"\n ) {\n return alignment;\n }\n\n return this.defaultAlignment;\n }\n\n /**\n * Retrieve links of attribute\n */\n get links(): LinkCollection {\n if (!this._links) {\n this._links = new LinkCollection(\n this.data._links,\n this.contributions._links,\n );\n }\n\n return this._links;\n }\n\n /**\n * Retrieve link of attribute when available\n */\n get downloadLink(): ?LinkModel {\n const downloadLink = this.links.getLinksByGroup(\"download\").first;\n\n if (downloadLink && downloadLink.key === this.key) {\n return downloadLink;\n }\n\n return null;\n }\n\n /**\n * Retrieve concept link of attribute when available\n */\n get conceptLink(): ?LinkModel {\n const conceptLink = this.links.getLinkByKey(\"concept\");\n\n if (conceptLink !== null) {\n conceptLink.href = conceptLink.href.addParameter(\n TIMEVERSION_FILTER_NAME,\n this.referenceDate,\n );\n\n conceptLink.isCacheable = true;\n }\n\n return conceptLink;\n }\n\n /**\n * Get concept information\n */\n get concept(): ConceptDetailModel | null {\n return this._concept ?? null;\n }\n\n /**\n * Set the concept\n */\n set concept(concept: ?ModularUIModel) {\n this._concept = concept instanceof ConceptDetailModel ? concept : null;\n }\n\n /**\n * Retrieve reference date of attribute which can be used as entryDate for content\n * to get information in correct time version\n */\n get referenceDate(): ISO_DATE {\n return this._referenceDate;\n }\n\n /**\n * Set reference date for concepts and content\n */\n set referenceDate(date: ISO_DATE) {\n this._referenceDate = date;\n }\n\n /**\n * Initial value received from the modular ui service\n */\n get initvalue(): any {\n return this._initvalue;\n }\n\n /**\n * Retrieve input value\n */\n getInputValue(): string {\n const inputvalue = this._inputvalue;\n\n return inputvalue ? inputvalue.toString() : \"\";\n }\n\n /**\n * Returns the value as entered by the user. This can differ from the internal iso value that is stored\n */\n get inputvalue(): string {\n return this.getInputValue();\n }\n\n /**\n * Value that is used when retrieving an error collection of this attribute\n * Mostly this is the input value, but sometimes a different value is needed,\n * for example iban and postcode need to validate length without spaces\n */\n get validateValue(): string {\n return this.inputvalue;\n }\n\n /**\n * Sets the input value to the value entered by the user\n */\n set inputvalue(value: string) {\n this._inputvalue = value;\n this.value = value;\n\n this.validate(value);\n }\n\n /**\n */\n hasValue(): boolean {\n return this._value != null && this._value !== \"\";\n }\n\n /**\n * Getting the value of the attribute\n */\n getValue(): any {\n return this.hasValue() ? this._value : null;\n }\n\n /**\n * Getting data ready to be send to the modular ui\n * Returns null when the attribute should not be send to the server\n */\n getFormData(): { [string]: any } | null {\n if (this.inError()) {\n return null;\n }\n\n return {\n [this.name]: this.value,\n };\n }\n\n /**\n */\n get formdata(): { [string]: any } | null {\n return this.getFormData();\n }\n\n /**\n */\n getEmptyFormData(): { [string]: null } {\n return { [this.name]: null };\n }\n\n /**\n * Getting the value of the attribute\n */\n get value(): any {\n return this.getValue();\n }\n\n /**\n * Setting a value in the element\n */\n set value(value: ?string) {\n this.updateLastModification();\n\n this._value = value;\n }\n\n /**\n */\n formatValue(value: string): string {\n return value;\n }\n\n /**\n * Getting the readonly value, iso value converted for human reading\n */\n get readonlyvalue(): string {\n return this.value ? this.value.toString() : \"\";\n }\n\n /**\n * Getting mandatory status of attribute\n */\n get mandatory(): boolean {\n return this._mandatory || false;\n }\n\n /**\n */\n get configuredMandatory(): ?boolean {\n return this.layouthint.has(MANDATORY) || this.contributions.mandatory;\n }\n\n /**\n * Set mandatory status of attribute\n */\n set mandatory(mandatory: boolean) {\n if (mandatory !== this._mandatory) {\n this._validatedValue = null;\n }\n this._mandatory = mandatory;\n }\n\n /**\n */\n get readonly(): boolean {\n return (\n this._readonly ||\n this.contributions.readonly === true ||\n this.data.static === true ||\n this.isResult === true\n );\n }\n\n /**\n */\n set readonly(readonly: boolean) {\n this._readonly = readonly;\n }\n\n /**\n */\n get disabled(): boolean {\n return this._disabled;\n }\n\n /**\n */\n set disabled(disabled: boolean) {\n this._disabled = disabled;\n }\n\n /**\n */\n get isResult(): boolean {\n return this._isResult;\n }\n\n /**\n */\n set isResult(isResult: boolean) {\n this._isResult = isResult;\n }\n\n /**\n * Getting the display and input format of a attribute\n */\n get format(): string | null {\n return this.getContribution(\"format\");\n }\n\n /**\n */\n get formatLabel(): string {\n return this.format || \"\";\n }\n\n /**\n * Get minimum string length\n */\n get minLength(): number | null {\n return this.getContribution(\"minLength\");\n }\n\n /**\n * Get maximum string length\n */\n get maxLength(): number | null {\n return this.getContribution(\"maxLength\");\n }\n\n /**\n */\n get operator(): string {\n return this.getContribution(\"operator\", \"\");\n }\n\n /**\n * Get assistant message\n */\n get assistantMessage(): string | null {\n return this.getContribution(\"assistant\");\n }\n\n /**\n * Get valid status\n */\n get isValid(): boolean {\n return this.validate(this.validateValue);\n }\n\n /**\n * Retrieve applicable constraint for this attribute\n */\n get constraintCollection(): ConstraintCollection {\n const constraints = new ConstraintCollection();\n\n constraints.add(this._serverConstraints);\n\n // Mandatory constraint\n if (this.mandatory) {\n constraints.add(new MandatoryConstraint());\n }\n\n if (this.minLength || this.maxLength) {\n constraints.add(\n new StringLengthConstraint(this.minLength, this.maxLength),\n );\n }\n\n constraints.add(this.addConstraints());\n\n return constraints;\n }\n\n /**\n * Template method for class extending this model to add extra constraints\n * @abstract\n */\n addConstraints(): ConstraintCollection {\n return new ConstraintCollection();\n }\n\n /**\n * Used to programmatically overwrite the setting USE_CLIENTSIDE_VALIDATION\n */\n setUseClientsideValidation(enabled: boolean): void {\n this._useClientsideValidation = enabled;\n }\n\n /**\n * Indicates if client side validation is enabled\n * @returns {boolean}\n */\n useClientsideValidation(): boolean {\n return this._useClientsideValidation ?? true;\n }\n\n /**\n * Validate input on client side constraint\n */\n validate(value: string): boolean {\n // when client side validation is disabled, this attribute is always valid\n if (!this.useClientsideValidation()) {\n return true;\n }\n\n if (this.isOptionalAndEmpty(value)) {\n this._isValid = true;\n } else if (this._validatedValue !== value) {\n this._isValid = this.constraintCollection.validate(value);\n }\n this._validatedValue = value;\n\n return this._isValid;\n }\n\n /**\n * Indicates if attribute is optional and empty\n */\n isOptionalAndEmpty(value: string): boolean {\n if (value === undefined) {\n throw new IllegalArgumentException(\n \"isOptionalAndEmpty method needs value argument\",\n );\n }\n\n return !this.mandatory && value === \"\";\n }\n\n /**\n * Retrieve error messages of this attribute\n */\n get errorCollection(): ErrorCollection {\n const collection = new ErrorCollection(\"attribute\", this._errorCollection);\n\n collection.addConstraints(\n this.constraintCollection.invalidConstraints(this.validateValue),\n );\n\n return collection;\n }\n\n /**\n * Check if attribute is in error\n */\n inError(): boolean {\n return !this._isValid && this.isChangedSince(0);\n }\n\n /**\n * Reset static error messages on attribute\n */\n resetErrors(): void {\n this._errorCollection = new ErrorCollection(\"attribute\");\n }\n\n /**\n * Registers an error that was received from a server response\n */\n addServerError(error: FormErrorAnchor): void {\n this._errorCollection.addServerError(\n error.id,\n error.message,\n error.properties,\n error.layouthint,\n );\n }\n\n /**\n */\n removeServerError(id: string): void {\n this._errorCollection.removeServerError(id);\n }\n\n /**\n */\n hasServerErrors(): boolean {\n return this.errorCollection.serverErrors.length > 0;\n }\n\n /**\n */\n hasErrors(): boolean {\n return this.errorCollection.hasItems;\n }\n\n /**\n * Registers a missing error that was received from the server\n */\n // eslint-disable-next-line no-unused-vars\n addMissingError(receivedAttribute?: AttributeType): void {\n this._errorCollection.addServerError(\"Constraint.Missing\");\n }\n\n /**\n */\n removeMissingError(): void {\n this.removeServerError(\"Constraint.Missing\");\n }\n\n /**\n */\n addServerConstraint(\n id: string,\n defaultMessage?: string,\n parameters?: MessageParameters,\n ) {\n this._serverConstraints.addConstraint(\n id,\n null,\n defaultMessage,\n parameters,\n this.useClientsideValidation(),\n );\n }\n\n /**\n */\n formatParameters(parameters: Object): { [string]: string | number } {\n if (parameters == null) {\n return {};\n }\n\n const params: { [name: string]: string | number } = {};\n\n Object.keys(parameters).forEach((paramKey: string) => {\n const paramValue = parameters[paramKey];\n if (paramKey.endsWith(\"-number\") || paramKey.endsWith(\"-date\")) {\n params[paramKey] = this.formatValue(paramValue);\n } else {\n params[paramKey] = paramValue;\n }\n });\n\n return params;\n }\n\n /**\n */\n get hasDynamicValidationData(): boolean {\n return true;\n }\n\n /**\n */\n updateValidations(errors: Array<Object>): void {\n if (\n errors.some((error) => error.id === \"Constraint.Mandatory\") ||\n this.layouthint.has(MANDATORY)\n ) {\n this.mandatory = true;\n } else if (!this.hasValue()) {\n this.mandatory = false;\n }\n\n this._serverConstraints = new ConstraintCollection();\n this.resetErrors();\n\n errors\n .filter(\n (error) => error.id !== \"Constraint.Mandatory\" || !this.hasValue(),\n )\n .forEach((error) => {\n if (this.hasValue()) {\n this._errorCollection.addServerError(\n error.id,\n error.message,\n this.formatParameters(error.properties),\n error.layouthint,\n );\n } else {\n this.addServerConstraint(\n error.id,\n error.message,\n this.formatParameters(error.properties),\n );\n }\n });\n }\n\n /**\n * Set last modification to current timestamp\n */\n updateLastModification(): void {\n this._lastModification = Date.now();\n }\n\n /**\n * Inidicates if attribute is changed since a given timestamp (Date.now)\n */\n isChangedSince(timestamp: number): boolean {\n return this._lastModification > timestamp;\n }\n\n /**\n * Abstract reset method which should be implemented on each attribute that has this attribute as a base class.\n *\n * @abstract\n */\n reset(): void {\n throw new UnsupportedOperationException(\n `Reset method not implemented for ${this.type}`,\n );\n }\n\n /**\n * Merge old attribute with the attribute from the server.\n * Readonly attributes always need to show the value from the server\n */\n mergeAttribute(oldAttribute: AttributeType): void {\n this.concept = oldAttribute.concept;\n\n if (\n !oldAttribute.readonly &&\n oldAttribute.isValid &&\n oldAttribute.inputvalue !== null\n ) {\n this.update(oldAttribute.inputvalue);\n }\n }\n\n /**\n * Abstract update method which should be implemented on each attribute that has this attribute as a base class.\n * @abstract\n */\n // eslint-disable-next-line no-unused-vars\n update(value: string, changedAttribute?: AttributeType): AttributeType {\n throw new UnsupportedOperationException(\n `Update method not implemented for ${this.type}`,\n );\n }\n\n /**\n * Abstract updateByAttribute method which should be implemented on each attribute that has this attribute as a base class.\n * @abstract\n */\n // eslint-disable-next-line no-unused-vars\n updateByAttribute(otherAttribute: AttributeType): void {\n console.error(\n \"update of \" +\n this.type +\n \" with \" +\n otherAttribute.type +\n \" not supported\",\n );\n }\n\n /**\n * Indicate if attribute is editable\n */\n set isEditable(isEditable: boolean) {\n this._isEditable = isEditable;\n }\n\n /**\n * Retrieve if attribute is editable\n */\n get isEditable(): boolean {\n return this._isEditable;\n }\n\n /**\n * Indicates if the attribute is visible\n */\n get isVisible(): boolean {\n return !this._isHidden;\n }\n\n /**\n */\n get isHidden(): boolean {\n return this._isHidden;\n }\n\n /**\n */\n set isHidden(isHidden: boolean) {\n this._isHidden = isHidden;\n }\n\n /**\n * Explicitly toggle visibility of this attribute\n */\n show(): void {\n this.isHidden = false;\n }\n\n /**\n */\n hide(): void {\n this.isHidden = true;\n }\n\n /**\n */\n equals(otherAttribute: AttributeType): boolean {\n return (\n this.key === otherAttribute.key &&\n this.parentKey === otherAttribute.parentKey\n );\n }\n\n /**\n * Readonly attribute width indicates the proposed width of this attribute\n */\n get readonlyWidth(): $Keys<typeof ATTRIBUTE_WIDTH> {\n return ATTRIBUTE_WIDTH.MEDIUM;\n }\n\n /**\n */\n get layoutHintRules(): LayoutHintRuleCollection {\n return this._layoutHintRules;\n }\n\n /**\n */\n set layoutHintRules(rules: LayoutHintRuleCollection) {\n this._layoutHintRules = rules;\n }\n\n /**\n */\n processLayoutHintRules(attributes: AttributeCollection): void {\n if (this._layoutHintRules) {\n this.layoutHintRules.process(this, attributes);\n }\n }\n\n /**\n * Indicates if content comes from the data service\n */\n get hasContentFromData(): boolean {\n return hasAllContentInData();\n }\n\n /**\n */\n get content(): AttributeContent {\n return new AttributeContent(this.data.content);\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,398 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Attribute model, base model for all kind of attributes
|
|
3
|
+
*/
|
|
4
|
+
export default class AttributeModel extends BaseModel {
|
|
5
|
+
/**
|
|
6
|
+
*/
|
|
7
|
+
static isApplicableModel(contributions: Object): boolean;
|
|
8
|
+
_label: string;
|
|
9
|
+
_lastModification: number;
|
|
10
|
+
_initvalue: any;
|
|
11
|
+
_inputvalue: string;
|
|
12
|
+
_value: any;
|
|
13
|
+
_errorCollection: ErrorCollection;
|
|
14
|
+
_serverConstraints: ConstraintCollection;
|
|
15
|
+
_useClientsideValidation: boolean;
|
|
16
|
+
_isValid: boolean;
|
|
17
|
+
_validatedValue: string | null;
|
|
18
|
+
_isEditable: boolean;
|
|
19
|
+
_concept: ConceptDetailModel | null;
|
|
20
|
+
_referenceDate: ISO_DATE;
|
|
21
|
+
_isResult: boolean;
|
|
22
|
+
_isHidden: boolean;
|
|
23
|
+
_readonly: boolean;
|
|
24
|
+
_disabled: boolean;
|
|
25
|
+
_mandatory: boolean;
|
|
26
|
+
_links: LinkCollection;
|
|
27
|
+
_parentKey: string | null;
|
|
28
|
+
_hasContentConfiguration: boolean;
|
|
29
|
+
_layoutHintRules: LayoutHintRuleCollection;
|
|
30
|
+
/**
|
|
31
|
+
* Retrieve initial input value
|
|
32
|
+
*/
|
|
33
|
+
getInitialInputValue(value: any): any;
|
|
34
|
+
/**
|
|
35
|
+
*/
|
|
36
|
+
getInitialChildModelLinks(): Array<LinkModel>;
|
|
37
|
+
/**
|
|
38
|
+
*/
|
|
39
|
+
setChildModels(models: Array<ModularUIModel>, errors: Array<ErrorResponse>): void;
|
|
40
|
+
/**
|
|
41
|
+
* Set the concept
|
|
42
|
+
*/
|
|
43
|
+
set concept(concept: ModularUIModel | null);
|
|
44
|
+
/**
|
|
45
|
+
* Get concept information
|
|
46
|
+
*/
|
|
47
|
+
get concept(): ConceptDetailModel | null;
|
|
48
|
+
/**
|
|
49
|
+
* Getting the attribute key
|
|
50
|
+
*/
|
|
51
|
+
get key(): string;
|
|
52
|
+
/**
|
|
53
|
+
*/
|
|
54
|
+
set parentKey(parentKey: string);
|
|
55
|
+
/**
|
|
56
|
+
*/
|
|
57
|
+
get parentKey(): string;
|
|
58
|
+
/**
|
|
59
|
+
* Getting the attribute name
|
|
60
|
+
*/
|
|
61
|
+
get name(): string;
|
|
62
|
+
/**
|
|
63
|
+
* Getting the type of the attribute
|
|
64
|
+
*/
|
|
65
|
+
get type(): string;
|
|
66
|
+
/**
|
|
67
|
+
* Set the label of this attribute
|
|
68
|
+
*/
|
|
69
|
+
set label(label: string);
|
|
70
|
+
/**
|
|
71
|
+
* Getting the label of the attribute
|
|
72
|
+
*/
|
|
73
|
+
get label(): string;
|
|
74
|
+
/**
|
|
75
|
+
*/
|
|
76
|
+
set hasContentConfiguration(hasContentConfiguration: boolean);
|
|
77
|
+
/**
|
|
78
|
+
*/
|
|
79
|
+
get hasContentConfiguration(): boolean;
|
|
80
|
+
/**
|
|
81
|
+
*/
|
|
82
|
+
indicateContentConfiguration(contentConfiguration: ContentConfiguration): void;
|
|
83
|
+
/**
|
|
84
|
+
* Retrieve the first permitted label to render when a concept and contentConfiguration is available
|
|
85
|
+
* Be aware that permission could be in place for labels from a concept.
|
|
86
|
+
*/
|
|
87
|
+
getContentConfiguredLabel(contentConfiguration: ContentConfigurationElements | null): string;
|
|
88
|
+
/**
|
|
89
|
+
*/
|
|
90
|
+
get defaultAlignment(): "left" | "center" | "right";
|
|
91
|
+
/**
|
|
92
|
+
* Handles layout hint align-left, align-center and align-right
|
|
93
|
+
*/
|
|
94
|
+
get alignment(): "left" | "center" | "right";
|
|
95
|
+
/**
|
|
96
|
+
* Retrieve links of attribute
|
|
97
|
+
*/
|
|
98
|
+
get links(): LinkCollection;
|
|
99
|
+
/**
|
|
100
|
+
* Retrieve link of attribute when available
|
|
101
|
+
*/
|
|
102
|
+
get downloadLink(): LinkModel | null;
|
|
103
|
+
/**
|
|
104
|
+
* Retrieve concept link of attribute when available
|
|
105
|
+
*/
|
|
106
|
+
get conceptLink(): LinkModel | null;
|
|
107
|
+
/**
|
|
108
|
+
* Set reference date for concepts and content
|
|
109
|
+
*/
|
|
110
|
+
set referenceDate(date: ISO_DATE);
|
|
111
|
+
/**
|
|
112
|
+
* Retrieve reference date of attribute which can be used as entryDate for content
|
|
113
|
+
* to get information in correct time version
|
|
114
|
+
*/
|
|
115
|
+
get referenceDate(): ISO_DATE;
|
|
116
|
+
/**
|
|
117
|
+
* Initial value received from the modular ui service
|
|
118
|
+
*/
|
|
119
|
+
get initvalue(): any;
|
|
120
|
+
/**
|
|
121
|
+
* Retrieve input value
|
|
122
|
+
*/
|
|
123
|
+
getInputValue(): string;
|
|
124
|
+
/**
|
|
125
|
+
* Sets the input value to the value entered by the user
|
|
126
|
+
*/
|
|
127
|
+
set inputvalue(value: string);
|
|
128
|
+
/**
|
|
129
|
+
* Returns the value as entered by the user. This can differ from the internal iso value that is stored
|
|
130
|
+
*/
|
|
131
|
+
get inputvalue(): string;
|
|
132
|
+
/**
|
|
133
|
+
* Value that is used when retrieving an error collection of this attribute
|
|
134
|
+
* Mostly this is the input value, but sometimes a different value is needed,
|
|
135
|
+
* for example iban and postcode need to validate length without spaces
|
|
136
|
+
*/
|
|
137
|
+
get validateValue(): string;
|
|
138
|
+
/**
|
|
139
|
+
* Setting a value in the element
|
|
140
|
+
*/
|
|
141
|
+
set value(value: string | null);
|
|
142
|
+
/**
|
|
143
|
+
* Getting the value of the attribute
|
|
144
|
+
*/
|
|
145
|
+
get value(): any;
|
|
146
|
+
/**
|
|
147
|
+
*/
|
|
148
|
+
hasValue(): boolean;
|
|
149
|
+
/**
|
|
150
|
+
* Getting the value of the attribute
|
|
151
|
+
*/
|
|
152
|
+
getValue(): any;
|
|
153
|
+
/**
|
|
154
|
+
* Getting data ready to be send to the modular ui
|
|
155
|
+
* Returns null when the attribute should not be send to the server
|
|
156
|
+
*/
|
|
157
|
+
getFormData(): {
|
|
158
|
+
[string]: any;
|
|
159
|
+
} | null;
|
|
160
|
+
/**
|
|
161
|
+
*/
|
|
162
|
+
get formdata(): {
|
|
163
|
+
[string]: any;
|
|
164
|
+
} | null;
|
|
165
|
+
/**
|
|
166
|
+
*/
|
|
167
|
+
getEmptyFormData(): {
|
|
168
|
+
[string]: null;
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
*/
|
|
172
|
+
formatValue(value: string): string;
|
|
173
|
+
/**
|
|
174
|
+
* Getting the readonly value, iso value converted for human reading
|
|
175
|
+
*/
|
|
176
|
+
get readonlyvalue(): string;
|
|
177
|
+
/**
|
|
178
|
+
* Set mandatory status of attribute
|
|
179
|
+
*/
|
|
180
|
+
set mandatory(mandatory: boolean);
|
|
181
|
+
/**
|
|
182
|
+
* Getting mandatory status of attribute
|
|
183
|
+
*/
|
|
184
|
+
get mandatory(): boolean;
|
|
185
|
+
/**
|
|
186
|
+
*/
|
|
187
|
+
get configuredMandatory(): boolean | null;
|
|
188
|
+
/**
|
|
189
|
+
*/
|
|
190
|
+
set readonly(readonly: boolean);
|
|
191
|
+
/**
|
|
192
|
+
*/
|
|
193
|
+
get readonly(): boolean;
|
|
194
|
+
/**
|
|
195
|
+
*/
|
|
196
|
+
set disabled(disabled: boolean);
|
|
197
|
+
/**
|
|
198
|
+
*/
|
|
199
|
+
get disabled(): boolean;
|
|
200
|
+
/**
|
|
201
|
+
*/
|
|
202
|
+
set isResult(isResult: boolean);
|
|
203
|
+
/**
|
|
204
|
+
*/
|
|
205
|
+
get isResult(): boolean;
|
|
206
|
+
/**
|
|
207
|
+
* Getting the display and input format of a attribute
|
|
208
|
+
*/
|
|
209
|
+
get format(): string | null;
|
|
210
|
+
/**
|
|
211
|
+
*/
|
|
212
|
+
get formatLabel(): string;
|
|
213
|
+
/**
|
|
214
|
+
* Get minimum string length
|
|
215
|
+
*/
|
|
216
|
+
get minLength(): number | null;
|
|
217
|
+
/**
|
|
218
|
+
* Get maximum string length
|
|
219
|
+
*/
|
|
220
|
+
get maxLength(): number | null;
|
|
221
|
+
/**
|
|
222
|
+
*/
|
|
223
|
+
get operator(): string;
|
|
224
|
+
/**
|
|
225
|
+
* Get assistant message
|
|
226
|
+
*/
|
|
227
|
+
get assistantMessage(): string | null;
|
|
228
|
+
/**
|
|
229
|
+
* Get valid status
|
|
230
|
+
*/
|
|
231
|
+
get isValid(): boolean;
|
|
232
|
+
/**
|
|
233
|
+
* Retrieve applicable constraint for this attribute
|
|
234
|
+
*/
|
|
235
|
+
get constraintCollection(): ConstraintCollection;
|
|
236
|
+
/**
|
|
237
|
+
* Template method for class extending this model to add extra constraints
|
|
238
|
+
* @abstract
|
|
239
|
+
*/
|
|
240
|
+
addConstraints(): ConstraintCollection;
|
|
241
|
+
/**
|
|
242
|
+
* Used to programmatically overwrite the setting USE_CLIENTSIDE_VALIDATION
|
|
243
|
+
*/
|
|
244
|
+
setUseClientsideValidation(enabled: boolean): void;
|
|
245
|
+
/**
|
|
246
|
+
* Indicates if client side validation is enabled
|
|
247
|
+
* @returns {boolean}
|
|
248
|
+
*/
|
|
249
|
+
useClientsideValidation(): boolean;
|
|
250
|
+
/**
|
|
251
|
+
* Validate input on client side constraint
|
|
252
|
+
*/
|
|
253
|
+
validate(value: string): boolean;
|
|
254
|
+
/**
|
|
255
|
+
* Indicates if attribute is optional and empty
|
|
256
|
+
*/
|
|
257
|
+
isOptionalAndEmpty(value: string): boolean;
|
|
258
|
+
/**
|
|
259
|
+
* Retrieve error messages of this attribute
|
|
260
|
+
*/
|
|
261
|
+
get errorCollection(): ErrorCollection;
|
|
262
|
+
/**
|
|
263
|
+
* Check if attribute is in error
|
|
264
|
+
*/
|
|
265
|
+
inError(): boolean;
|
|
266
|
+
/**
|
|
267
|
+
* Reset static error messages on attribute
|
|
268
|
+
*/
|
|
269
|
+
resetErrors(): void;
|
|
270
|
+
/**
|
|
271
|
+
* Registers an error that was received from a server response
|
|
272
|
+
*/
|
|
273
|
+
addServerError(error: FormErrorAnchor): void;
|
|
274
|
+
/**
|
|
275
|
+
*/
|
|
276
|
+
removeServerError(id: string): void;
|
|
277
|
+
/**
|
|
278
|
+
*/
|
|
279
|
+
hasServerErrors(): boolean;
|
|
280
|
+
/**
|
|
281
|
+
*/
|
|
282
|
+
hasErrors(): boolean;
|
|
283
|
+
/**
|
|
284
|
+
* Registers a missing error that was received from the server
|
|
285
|
+
*/
|
|
286
|
+
addMissingError(receivedAttribute?: AttributeType): void;
|
|
287
|
+
/**
|
|
288
|
+
*/
|
|
289
|
+
removeMissingError(): void;
|
|
290
|
+
/**
|
|
291
|
+
*/
|
|
292
|
+
addServerConstraint(id: string, defaultMessage?: string, parameters?: MessageParameters): void;
|
|
293
|
+
/**
|
|
294
|
+
*/
|
|
295
|
+
formatParameters(parameters: Object): {
|
|
296
|
+
[string]: string | number;
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
*/
|
|
300
|
+
get hasDynamicValidationData(): boolean;
|
|
301
|
+
/**
|
|
302
|
+
*/
|
|
303
|
+
updateValidations(errors: Array<Object>): void;
|
|
304
|
+
/**
|
|
305
|
+
* Set last modification to current timestamp
|
|
306
|
+
*/
|
|
307
|
+
updateLastModification(): void;
|
|
308
|
+
/**
|
|
309
|
+
* Inidicates if attribute is changed since a given timestamp (Date.now)
|
|
310
|
+
*/
|
|
311
|
+
isChangedSince(timestamp: number): boolean;
|
|
312
|
+
/**
|
|
313
|
+
* Abstract reset method which should be implemented on each attribute that has this attribute as a base class.
|
|
314
|
+
*
|
|
315
|
+
* @abstract
|
|
316
|
+
*/
|
|
317
|
+
reset(): void;
|
|
318
|
+
/**
|
|
319
|
+
* Merge old attribute with the attribute from the server.
|
|
320
|
+
* Readonly attributes always need to show the value from the server
|
|
321
|
+
*/
|
|
322
|
+
mergeAttribute(oldAttribute: AttributeType): void;
|
|
323
|
+
/**
|
|
324
|
+
* Abstract update method which should be implemented on each attribute that has this attribute as a base class.
|
|
325
|
+
* @abstract
|
|
326
|
+
*/
|
|
327
|
+
update(value: string, changedAttribute?: AttributeType): AttributeType;
|
|
328
|
+
/**
|
|
329
|
+
* Abstract updateByAttribute method which should be implemented on each attribute that has this attribute as a base class.
|
|
330
|
+
* @abstract
|
|
331
|
+
*/
|
|
332
|
+
updateByAttribute(otherAttribute: AttributeType): void;
|
|
333
|
+
/**
|
|
334
|
+
* Indicate if attribute is editable
|
|
335
|
+
*/
|
|
336
|
+
set isEditable(isEditable: boolean);
|
|
337
|
+
/**
|
|
338
|
+
* Retrieve if attribute is editable
|
|
339
|
+
*/
|
|
340
|
+
get isEditable(): boolean;
|
|
341
|
+
/**
|
|
342
|
+
* Indicates if the attribute is visible
|
|
343
|
+
*/
|
|
344
|
+
get isVisible(): boolean;
|
|
345
|
+
/**
|
|
346
|
+
*/
|
|
347
|
+
set isHidden(isHidden: boolean);
|
|
348
|
+
/**
|
|
349
|
+
*/
|
|
350
|
+
get isHidden(): boolean;
|
|
351
|
+
/**
|
|
352
|
+
* Explicitly toggle visibility of this attribute
|
|
353
|
+
*/
|
|
354
|
+
show(): void;
|
|
355
|
+
/**
|
|
356
|
+
*/
|
|
357
|
+
hide(): void;
|
|
358
|
+
/**
|
|
359
|
+
*/
|
|
360
|
+
equals(otherAttribute: AttributeType): boolean;
|
|
361
|
+
/**
|
|
362
|
+
* Readonly attribute width indicates the proposed width of this attribute
|
|
363
|
+
*/
|
|
364
|
+
get readonlyWidth(): $Keys<typeof ATTRIBUTE_WIDTH>;
|
|
365
|
+
/**
|
|
366
|
+
*/
|
|
367
|
+
set layoutHintRules(rules: LayoutHintRuleCollection);
|
|
368
|
+
/**
|
|
369
|
+
*/
|
|
370
|
+
get layoutHintRules(): LayoutHintRuleCollection;
|
|
371
|
+
/**
|
|
372
|
+
*/
|
|
373
|
+
processLayoutHintRules(attributes: AttributeCollection): void;
|
|
374
|
+
/**
|
|
375
|
+
* Indicates if content comes from the data service
|
|
376
|
+
*/
|
|
377
|
+
get hasContentFromData(): boolean;
|
|
378
|
+
/**
|
|
379
|
+
*/
|
|
380
|
+
get content(): AttributeContent;
|
|
381
|
+
}
|
|
382
|
+
import BaseModel from "../base/BaseModel";
|
|
383
|
+
import ErrorCollection from "../error/ErrorCollection";
|
|
384
|
+
import ConstraintCollection from "./input-constraints/ConstraintCollection";
|
|
385
|
+
import ConceptDetailModel from "../concepts/ConceptDetailModel";
|
|
386
|
+
import LinkCollection from "../links/LinkCollection";
|
|
387
|
+
import LayoutHintRuleCollection from "./layouthint-rules/LayoutHintRuleCollection";
|
|
388
|
+
import LinkModel from "../links/LinkModel";
|
|
389
|
+
import { ModularUIModel } from "../types";
|
|
390
|
+
import ErrorResponse from "../error/ErrorResponse";
|
|
391
|
+
import ContentConfiguration from "../contentconfiguration/ContentConfiguration";
|
|
392
|
+
import ContentConfigurationElements from "../contentconfiguration/ContentConfigurationElements";
|
|
393
|
+
import { FormErrorAnchor } from "../types";
|
|
394
|
+
import { AttributeType } from "../types";
|
|
395
|
+
import { MessageParameters } from "../../i18n/types";
|
|
396
|
+
import { ATTRIBUTE_WIDTH } from "../../constants/Constants";
|
|
397
|
+
import AttributeCollection from "./AttributeCollection";
|
|
398
|
+
import AttributeContent from "./AttributeContent";
|
|
@@ -0,0 +1,105 @@
|
|
|
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 _entries = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/entries"));
|
|
11
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
|
12
|
+
var _objects = require("../../utils/helpers/objects");
|
|
13
|
+
var _BaseModel = _interopRequireDefault(require("../base/BaseModel"));
|
|
14
|
+
var _AttributeCollection = _interopRequireDefault(require("./AttributeCollection"));
|
|
15
|
+
/**
|
|
16
|
+
*/
|
|
17
|
+
class AttributeSetModel extends _BaseModel.default {
|
|
18
|
+
/**
|
|
19
|
+
*/
|
|
20
|
+
constructor() {
|
|
21
|
+
var _context;
|
|
22
|
+
let key = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
|
|
23
|
+
let data = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
24
|
+
let contributions = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
|
|
25
|
+
let modelOptions = arguments.length > 3 ? arguments[3] : undefined;
|
|
26
|
+
super(data, contributions, modelOptions);
|
|
27
|
+
(0, _defineProperty2.default)(this, "_key", void 0);
|
|
28
|
+
(0, _defineProperty2.default)(this, "_attributeCollection", void 0);
|
|
29
|
+
const attributeContributions = this.contributions.attributes ? (0, _filter.default)(_context = this.contributions.attributes).call(_context, contribution => {
|
|
30
|
+
const [contributionKey] = (0, _keys.default)(contribution);
|
|
31
|
+
return (0, _objects.has)(this.data, contributionKey);
|
|
32
|
+
}) : [];
|
|
33
|
+
this._attributeCollection = new _AttributeCollection.default(this.data, attributeContributions, {
|
|
34
|
+
...modelOptions,
|
|
35
|
+
isReadonly: true
|
|
36
|
+
});
|
|
37
|
+
this._key = key;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
*/
|
|
42
|
+
get key() {
|
|
43
|
+
return this._key;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
*/
|
|
48
|
+
set key(key) {
|
|
49
|
+
this._key = key;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
*/
|
|
54
|
+
get label() {
|
|
55
|
+
return this.contributions.label;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Retrieve attribute collection
|
|
60
|
+
*/
|
|
61
|
+
get attributeCollection() {
|
|
62
|
+
return this._attributeCollection;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Set the attributes with a new AttributeCollection
|
|
67
|
+
*/
|
|
68
|
+
set attributeCollection(collection) {
|
|
69
|
+
this._attributeCollection = collection;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
*/
|
|
74
|
+
createChildAttributeSetModel(key, dataObject, index) {
|
|
75
|
+
return new AttributeSetModel(index ? `${key}-${index + 1}` : key, {
|
|
76
|
+
...dataObject,
|
|
77
|
+
dynamicschema: this.data.dynamicschema
|
|
78
|
+
}, this.contributions.objects[key], this.modelOptions);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Retrieve child {@code AttributeSetModel}s
|
|
83
|
+
*/
|
|
84
|
+
getChildAttributeSets() {
|
|
85
|
+
if (!this.contributions.objects) {
|
|
86
|
+
return [];
|
|
87
|
+
}
|
|
88
|
+
const childAttributeSets = [];
|
|
89
|
+
for (const key of (0, _keys.default)(this.contributions.objects)) {
|
|
90
|
+
if (key in this.data) {
|
|
91
|
+
if (Array.isArray(this.data[key])) {
|
|
92
|
+
for (const [i, dataObject] of (0, _entries.default)(_context2 = this.data[key]).call(_context2)) {
|
|
93
|
+
var _context2;
|
|
94
|
+
childAttributeSets.push(this.createChildAttributeSetModel(key, dataObject, i));
|
|
95
|
+
}
|
|
96
|
+
} else {
|
|
97
|
+
childAttributeSets.push(this.createChildAttributeSetModel(key, this.data[key]));
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
return childAttributeSets;
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.default = AttributeSetModel;
|
|
105
|
+
//# sourceMappingURL=AttributeSetModel.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AttributeSetModel.cjs","names":["_objects","require","_BaseModel","_interopRequireDefault","_AttributeCollection","AttributeSetModel","BaseModel","constructor","_context","key","arguments","length","undefined","data","contributions","modelOptions","_defineProperty2","default","attributeContributions","attributes","_filter","call","contribution","contributionKey","_keys","has","_attributeCollection","AttributeCollection","isReadonly","_key","label","attributeCollection","collection","createChildAttributeSetModel","dataObject","index","dynamicschema","objects","getChildAttributeSets","childAttributeSets","Array","isArray","i","_entries","_context2","push","exports"],"sources":["../../../src/models/attributes/AttributeSetModel.js"],"sourcesContent":["// @flow\nimport { has } from \"../../utils/helpers/objects\";\n\nimport BaseModel from \"../base/BaseModel\";\nimport AttributeCollection from \"./AttributeCollection\";\n\nimport type { ModelOptions } from \"../types\";\n\n/**\n */\nexport default class AttributeSetModel extends BaseModel {\n _key: string;\n _attributeCollection: AttributeCollection;\n\n /**\n */\n constructor(\n key: string = \"\",\n data: Object = {},\n contributions: Object = {},\n modelOptions?: ModelOptions,\n ) {\n super(data, contributions, modelOptions);\n\n const attributeContributions = this.contributions.attributes\n ? this.contributions.attributes.filter((contribution) => {\n const [contributionKey] = Object.keys(contribution);\n return has(this.data, contributionKey);\n })\n : [];\n\n this._attributeCollection = new AttributeCollection(\n this.data,\n attributeContributions,\n { ...modelOptions, isReadonly: true },\n );\n\n this._key = key;\n }\n\n /**\n */\n get key(): string {\n return this._key;\n }\n\n /**\n */\n set key(key: string) {\n this._key = key;\n }\n\n /**\n */\n get label(): ?string {\n return this.contributions.label;\n }\n\n /**\n * Retrieve attribute collection\n */\n get attributeCollection(): AttributeCollection {\n return this._attributeCollection;\n }\n\n /**\n * Set the attributes with a new AttributeCollection\n */\n set attributeCollection(collection: AttributeCollection) {\n this._attributeCollection = collection;\n }\n\n /**\n */\n createChildAttributeSetModel(\n key: string,\n dataObject: Object,\n index?: number,\n ): AttributeSetModel {\n return new AttributeSetModel(\n index ? `${key}-${index + 1}` : key,\n {\n ...dataObject,\n dynamicschema: this.data.dynamicschema,\n },\n this.contributions.objects[key],\n this.modelOptions,\n );\n }\n\n /**\n * Retrieve child {@code AttributeSetModel}s\n */\n getChildAttributeSets(): Array<AttributeSetModel> {\n if (!this.contributions.objects) {\n return [];\n }\n\n const childAttributeSets = [];\n for (const key of Object.keys(this.contributions.objects)) {\n if (key in this.data) {\n if (Array.isArray(this.data[key])) {\n for (const [i, dataObject] of this.data[key].entries()) {\n childAttributeSets.push(\n this.createChildAttributeSetModel(key, dataObject, i),\n );\n }\n } else {\n childAttributeSets.push(\n this.createChildAttributeSetModel(key, this.data[key]),\n );\n }\n }\n }\n return childAttributeSets;\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*/
|
|
3
|
+
export default class AttributeSetModel extends BaseModel {
|
|
4
|
+
/**
|
|
5
|
+
*/
|
|
6
|
+
constructor(key?: string, data?: Object, contributions?: Object, modelOptions?: ModelOptions);
|
|
7
|
+
_key: string;
|
|
8
|
+
_attributeCollection: AttributeCollection;
|
|
9
|
+
/**
|
|
10
|
+
*/
|
|
11
|
+
set key(key: string);
|
|
12
|
+
/**
|
|
13
|
+
*/
|
|
14
|
+
get key(): string;
|
|
15
|
+
/**
|
|
16
|
+
*/
|
|
17
|
+
get label(): string | null;
|
|
18
|
+
/**
|
|
19
|
+
* Set the attributes with a new AttributeCollection
|
|
20
|
+
*/
|
|
21
|
+
set attributeCollection(collection: AttributeCollection);
|
|
22
|
+
/**
|
|
23
|
+
* Retrieve attribute collection
|
|
24
|
+
*/
|
|
25
|
+
get attributeCollection(): AttributeCollection;
|
|
26
|
+
/**
|
|
27
|
+
*/
|
|
28
|
+
createChildAttributeSetModel(key: string, dataObject: Object, index?: number): AttributeSetModel;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieve child {@code AttributeSetModel}s
|
|
31
|
+
*/
|
|
32
|
+
getChildAttributeSets(): Array<AttributeSetModel>;
|
|
33
|
+
}
|
|
34
|
+
import BaseModel from "../base/BaseModel";
|
|
35
|
+
import AttributeCollection from "./AttributeCollection";
|
|
36
|
+
import { ModelOptions } from "../types";
|