@beinformed/ui 1.20.8 → 1.20.9
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 +6 -0
- package/esm/builder/mergeLayoutHintConfigurations.js +34 -59
- package/esm/builder/mergeLayoutHintConfigurations.js.map +1 -1
- package/esm/constants/Constants.js +37 -37
- package/esm/constants/Constants.js.map +1 -1
- package/esm/constants/LayoutHintConfig.js +1 -1
- package/esm/constants/LayoutHintConfig.js.map +1 -1
- package/esm/constants/LayoutHints.js +20 -22
- package/esm/constants/LayoutHints.js.map +1 -1
- package/esm/constants/Settings.js +12 -26
- package/esm/constants/Settings.js.map +1 -1
- package/esm/exceptions/ConfigurationException.js +5 -27
- package/esm/exceptions/ConfigurationException.js.map +1 -1
- package/esm/exceptions/FetchException.js +33 -65
- package/esm/exceptions/FetchException.js.map +1 -1
- package/esm/exceptions/IllegalArgumentException.js +5 -27
- package/esm/exceptions/IllegalArgumentException.js.map +1 -1
- package/esm/exceptions/IllegalReturnException.js +5 -27
- package/esm/exceptions/IllegalReturnException.js.map +1 -1
- package/esm/exceptions/IllegalStateException.js +5 -27
- package/esm/exceptions/IllegalStateException.js.map +1 -1
- package/esm/exceptions/JsonParseException.js +5 -27
- package/esm/exceptions/JsonParseException.js.map +1 -1
- package/esm/exceptions/MissingPropertyException.js +5 -27
- package/esm/exceptions/MissingPropertyException.js.map +1 -1
- package/esm/exceptions/NetworkException.js +9 -31
- package/esm/exceptions/NetworkException.js.map +1 -1
- package/esm/exceptions/NotAllowedUriException.js +5 -27
- package/esm/exceptions/NotAllowedUriException.js.map +1 -1
- package/esm/exceptions/NotFoundException.js +12 -35
- package/esm/exceptions/NotFoundException.js.map +1 -1
- package/esm/exceptions/ServerRequestException.js +5 -27
- package/esm/exceptions/ServerRequestException.js.map +1 -1
- package/esm/exceptions/ThemePropertyException.js +5 -27
- package/esm/exceptions/ThemePropertyException.js.map +1 -1
- package/esm/exceptions/TimeoutException.js +5 -26
- package/esm/exceptions/TimeoutException.js.map +1 -1
- package/esm/exceptions/UnauthorizedException.js +11 -33
- package/esm/exceptions/UnauthorizedException.js.map +1 -1
- package/esm/exceptions/UnsupportedOperationException.js +5 -27
- package/esm/exceptions/UnsupportedOperationException.js.map +1 -1
- package/esm/hooks/useAllFormsOnModel.js +25 -46
- package/esm/hooks/useAllFormsOnModel.js.map +1 -1
- package/esm/hooks/useAuthentication.js +20 -26
- package/esm/hooks/useAuthentication.js.map +1 -1
- package/esm/hooks/useContent.js +13 -24
- package/esm/hooks/useContent.js.map +1 -1
- package/esm/hooks/useDeepCompareEffect.js +3 -3
- package/esm/hooks/useDeepCompareEffect.js.map +1 -1
- package/esm/hooks/useForm.js +27 -45
- package/esm/hooks/useForm.js.map +1 -1
- package/esm/hooks/useI18n.js +9 -19
- package/esm/hooks/useI18n.js.map +1 -1
- package/esm/hooks/useModal.js +11 -11
- package/esm/hooks/useModal.js.map +1 -1
- package/esm/hooks/useModelCatalog.js +24 -30
- package/esm/hooks/useModelCatalog.js.map +1 -1
- package/esm/hooks/useModels.js +3 -3
- package/esm/hooks/useModels.js.map +1 -1
- package/esm/hooks/useModularUI.js +17 -16
- package/esm/hooks/useModularUI.js.map +1 -1
- package/esm/hooks/useModularUIBasic.js +9 -7
- package/esm/hooks/useModularUIBasic.js.map +1 -1
- package/esm/hooks/useModularUIModel.js +39 -59
- package/esm/hooks/useModularUIModel.js.map +1 -1
- package/esm/hooks/useModularUIRequest.js +4 -6
- package/esm/hooks/useModularUIRequest.js.map +1 -1
- package/esm/hooks/useNotification.js +16 -21
- package/esm/hooks/useNotification.js.map +1 -1
- package/esm/hooks/usePreference.js +3 -5
- package/esm/hooks/usePreference.js.map +1 -1
- package/esm/hooks/useProgressIndicator.js +9 -30
- package/esm/hooks/useProgressIndicator.js.map +1 -1
- package/esm/hooks/useRouter.js +12 -26
- package/esm/hooks/useRouter.js.map +1 -1
- package/esm/i18n/Locale.js +96 -135
- package/esm/i18n/Locale.js.map +1 -1
- package/esm/i18n/Locales.js +94 -148
- package/esm/i18n/Locales.js.map +1 -1
- package/esm/i18n/Message.js +13 -24
- package/esm/i18n/Message.js.map +1 -1
- package/esm/i18n/languages.js +1 -1
- package/esm/i18n/languages.js.map +1 -1
- package/esm/i18n/withMessage.js +10 -16
- package/esm/i18n/withMessage.js.map +1 -1
- package/esm/models/actions/ActionCollection.js +55 -100
- package/esm/models/actions/ActionCollection.js.map +1 -1
- package/esm/models/actions/ActionModel.js +165 -204
- package/esm/models/actions/ActionModel.js.map +1 -1
- package/esm/models/application/ApplicationModel.js +104 -153
- package/esm/models/application/ApplicationModel.js.map +1 -1
- package/esm/models/attributes/AttributeCollection.js +246 -331
- package/esm/models/attributes/AttributeCollection.js.map +1 -1
- package/esm/models/attributes/AttributeContent.js +181 -246
- package/esm/models/attributes/AttributeContent.js.map +1 -1
- package/esm/models/attributes/AttributeDataHelper.js +202 -250
- package/esm/models/attributes/AttributeDataHelper.js.map +1 -1
- package/esm/models/attributes/AttributeModel.js +832 -941
- package/esm/models/attributes/AttributeModel.js.map +1 -1
- package/esm/models/attributes/AttributeSetModel.js +46 -77
- package/esm/models/attributes/AttributeSetModel.js.map +1 -1
- package/esm/models/attributes/BooleanAttributeModel.js +259 -325
- package/esm/models/attributes/BooleanAttributeModel.js.map +1 -1
- package/esm/models/attributes/CaptchaAttributeModel.js +24 -55
- package/esm/models/attributes/CaptchaAttributeModel.js.map +1 -1
- package/esm/models/attributes/ChoiceAttributeModel.js +337 -424
- package/esm/models/attributes/ChoiceAttributeModel.js.map +1 -1
- package/esm/models/attributes/ChoiceAttributeOptionCollection.js +271 -361
- package/esm/models/attributes/ChoiceAttributeOptionCollection.js.map +1 -1
- package/esm/models/attributes/ChoiceAttributeOptionModel.js +297 -351
- package/esm/models/attributes/ChoiceAttributeOptionModel.js.map +1 -1
- package/esm/models/attributes/CompositeAttributeChildCollection.js +180 -257
- package/esm/models/attributes/CompositeAttributeChildCollection.js.map +1 -1
- package/esm/models/attributes/CompositeAttributeModel.js +326 -401
- package/esm/models/attributes/CompositeAttributeModel.js.map +1 -1
- package/esm/models/attributes/DatetimeAttributeModel.js +368 -419
- package/esm/models/attributes/DatetimeAttributeModel.js.map +1 -1
- package/esm/models/attributes/HelptextAttributeModel.js +38 -70
- package/esm/models/attributes/HelptextAttributeModel.js.map +1 -1
- package/esm/models/attributes/LabelAttributeModel.js +23 -54
- package/esm/models/attributes/LabelAttributeModel.js.map +1 -1
- package/esm/models/attributes/MemoAttributeModel.js +31 -63
- package/esm/models/attributes/MemoAttributeModel.js.map +1 -1
- package/esm/models/attributes/MoneyAttributeModel.js +30 -62
- package/esm/models/attributes/MoneyAttributeModel.js.map +1 -1
- package/esm/models/attributes/NumberAttributeModel.js +178 -225
- package/esm/models/attributes/NumberAttributeModel.js.map +1 -1
- package/esm/models/attributes/PasswordAttributeModel.js +197 -246
- package/esm/models/attributes/PasswordAttributeModel.js.map +1 -1
- package/esm/models/attributes/StringAttributeModel.js +234 -282
- package/esm/models/attributes/StringAttributeModel.js.map +1 -1
- package/esm/models/attributes/UploadAttributeModel.js +181 -238
- package/esm/models/attributes/UploadAttributeModel.js.map +1 -1
- package/esm/models/attributes/XMLAttributeModel.js +32 -64
- package/esm/models/attributes/XMLAttributeModel.js.map +1 -1
- package/esm/models/attributes/_createAttribute.js +21 -36
- package/esm/models/attributes/_createAttribute.js.map +1 -1
- package/esm/models/attributes/input-constraints/BSNConstraint.js +63 -81
- package/esm/models/attributes/input-constraints/BSNConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/ConstraintCollection.js +29 -66
- package/esm/models/attributes/input-constraints/ConstraintCollection.js.map +1 -1
- package/esm/models/attributes/input-constraints/ConstraintModel.js +44 -59
- package/esm/models/attributes/input-constraints/ConstraintModel.js.map +1 -1
- package/esm/models/attributes/input-constraints/DateBoundaryConstraint.js +170 -192
- package/esm/models/attributes/input-constraints/DateBoundaryConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +52 -67
- package/esm/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +52 -67
- package/esm/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.js +66 -83
- package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/FileExtensionConstraint.js +53 -69
- package/esm/models/attributes/input-constraints/FileExtensionConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/FileSizeConstraint.js +78 -94
- package/esm/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/IBANConstraint.js +35 -51
- package/esm/models/attributes/input-constraints/IBANConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/MandatoryConstraint.js +39 -57
- package/esm/models/attributes/input-constraints/MandatoryConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.js +62 -81
- package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.js +149 -171
- package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/NumberFormatConstraint.js +104 -124
- package/esm/models/attributes/input-constraints/NumberFormatConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/NumberGroupingConstraint.js +91 -113
- package/esm/models/attributes/input-constraints/NumberGroupingConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordConfirmConstraint.js +58 -73
- package/esm/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +35 -52
- package/esm/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +51 -65
- package/esm/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +51 -65
- package/esm/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +65 -83
- package/esm/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/RangeConstraint.js +115 -134
- package/esm/models/attributes/input-constraints/RangeConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/RegexConstraint.js +47 -61
- package/esm/models/attributes/input-constraints/RegexConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/StringLengthConstraint.js +157 -176
- package/esm/models/attributes/input-constraints/StringLengthConstraint.js.map +1 -1
- package/esm/models/attributes/input-constraints/XMLConstraint.js +48 -66
- package/esm/models/attributes/input-constraints/XMLConstraint.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/BaseLayoutHintRule.js +49 -64
- package/esm/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/DependentAttribute.js +167 -209
- package/esm/models/attributes/layouthint-rules/DependentAttribute.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +40 -68
- package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +1 -1
- package/esm/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +30 -59
- package/esm/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +1 -1
- package/esm/models/base/BaseCollection.js +169 -203
- package/esm/models/base/BaseCollection.js.map +1 -1
- package/esm/models/base/BaseModel.js +97 -112
- package/esm/models/base/BaseModel.js.map +1 -1
- package/esm/models/base/ResourceCollection.js +27 -55
- package/esm/models/base/ResourceCollection.js.map +1 -1
- package/esm/models/base/ResourceModel.js +167 -217
- package/esm/models/base/ResourceModel.js.map +1 -1
- package/esm/models/caseview/CaseViewModel.js +132 -180
- package/esm/models/caseview/CaseViewModel.js.map +1 -1
- package/esm/models/concepts/BusinessScenarioModel.js +98 -147
- package/esm/models/concepts/BusinessScenarioModel.js.map +1 -1
- package/esm/models/concepts/ConceptDetailModel.js +239 -316
- package/esm/models/concepts/ConceptDetailModel.js.map +1 -1
- package/esm/models/concepts/ConceptIndexModel.js +114 -150
- package/esm/models/concepts/ConceptIndexModel.js.map +1 -1
- package/esm/models/concepts/ConceptLinkModel.js +118 -158
- package/esm/models/concepts/ConceptLinkModel.js.map +1 -1
- package/esm/models/concepts/ConceptRelationCollection.js +56 -103
- package/esm/models/concepts/ConceptRelationCollection.js.map +1 -1
- package/esm/models/concepts/ConceptRelationModel.js +60 -75
- package/esm/models/concepts/ConceptRelationModel.js.map +1 -1
- package/esm/models/concepts/ConceptTypeDetailModel.js +89 -126
- package/esm/models/concepts/ConceptTypeDetailModel.js.map +1 -1
- package/esm/models/concepts/SourceReferenceCollection.js +11 -42
- package/esm/models/concepts/SourceReferenceCollection.js.map +1 -1
- package/esm/models/concepts/SourceReferenceModel.js +47 -70
- package/esm/models/concepts/SourceReferenceModel.js.map +1 -1
- package/esm/models/content/ContentIndexModel.js +108 -150
- package/esm/models/content/ContentIndexModel.js.map +1 -1
- package/esm/models/content/ContentLinkModel.js +157 -199
- package/esm/models/content/ContentLinkModel.js.map +1 -1
- package/esm/models/content/ContentModel.js +184 -228
- package/esm/models/content/ContentModel.js.map +1 -1
- package/esm/models/content/ContentTOCModel.js +132 -196
- package/esm/models/content/ContentTOCModel.js.map +1 -1
- package/esm/models/content/ContentTypeModel.js +58 -93
- package/esm/models/content/ContentTypeModel.js.map +1 -1
- package/esm/models/content/SectionModel.js +161 -247
- package/esm/models/content/SectionModel.js.map +1 -1
- package/esm/models/content/SubSectionModel.js +122 -188
- package/esm/models/content/SubSectionModel.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfiguration.js +44 -58
- package/esm/models/contentconfiguration/ContentConfiguration.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationElements.js +123 -162
- package/esm/models/contentconfiguration/ContentConfigurationElements.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationEndResults.js +24 -38
- package/esm/models/contentconfiguration/ContentConfigurationEndResults.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationQuestions.js +30 -41
- package/esm/models/contentconfiguration/ContentConfigurationQuestions.js.map +1 -1
- package/esm/models/contentconfiguration/ContentConfigurationResults.js +73 -95
- package/esm/models/contentconfiguration/ContentConfigurationResults.js.map +1 -1
- package/esm/models/detail/DetailModel.js +174 -225
- package/esm/models/detail/DetailModel.js.map +1 -1
- package/esm/models/error/ErrorCollection.js +79 -132
- package/esm/models/error/ErrorCollection.js.map +1 -1
- package/esm/models/error/ErrorModel.js +36 -48
- package/esm/models/error/ErrorModel.js.map +1 -1
- package/esm/models/error/ErrorResponse.js +175 -204
- package/esm/models/error/ErrorResponse.js.map +1 -1
- package/esm/models/filters/AssignmentFilterModel.js +142 -186
- package/esm/models/filters/AssignmentFilterModel.js.map +1 -1
- package/esm/models/filters/BaseFilterModel.js +170 -220
- package/esm/models/filters/BaseFilterModel.js.map +1 -1
- package/esm/models/filters/ConceptIndexFilterModel.js +8 -36
- package/esm/models/filters/ConceptIndexFilterModel.js.map +1 -1
- package/esm/models/filters/FilterCollection.js +106 -165
- package/esm/models/filters/FilterCollection.js.map +1 -1
- package/esm/models/filters/FilterModel.js +1 -26
- package/esm/models/filters/FilterModel.js.map +1 -1
- package/esm/models/filters/RangeFilterModel.js +29 -58
- package/esm/models/filters/RangeFilterModel.js.map +1 -1
- package/esm/models/form/FormModel.js +957 -1133
- package/esm/models/form/FormModel.js.map +1 -1
- package/esm/models/form/FormObjectModel.js +412 -506
- package/esm/models/form/FormObjectModel.js.map +1 -1
- package/esm/models/grouping/GroupingModel.js +115 -163
- package/esm/models/grouping/GroupingModel.js.map +1 -1
- package/esm/models/href/Href.js +391 -450
- package/esm/models/href/Href.js.map +1 -1
- package/esm/models/href/ListHref.js +116 -155
- package/esm/models/href/ListHref.js.map +1 -1
- package/esm/models/layouthint/LayoutHintCollection.js +91 -136
- package/esm/models/layouthint/LayoutHintCollection.js.map +1 -1
- package/esm/models/links/LinkCollection.js +127 -185
- package/esm/models/links/LinkCollection.js.map +1 -1
- package/esm/models/links/LinkModel.js +189 -228
- package/esm/models/links/LinkModel.js.map +1 -1
- package/esm/models/links/normalizeLinkJSON.js +30 -57
- package/esm/models/links/normalizeLinkJSON.js.map +1 -1
- package/esm/models/list/ListDetailModel.js +226 -289
- package/esm/models/list/ListDetailModel.js.map +1 -1
- package/esm/models/list/ListHeaderModel.js +74 -97
- package/esm/models/list/ListHeaderModel.js.map +1 -1
- package/esm/models/list/ListItemCollection.js +49 -85
- package/esm/models/list/ListItemCollection.js.map +1 -1
- package/esm/models/list/ListItemModel.js +73 -110
- package/esm/models/list/ListItemModel.js.map +1 -1
- package/esm/models/list/ListModel.js +342 -421
- package/esm/models/list/ListModel.js.map +1 -1
- package/esm/models/lookup/LookupOptionCollection.js +15 -51
- package/esm/models/lookup/LookupOptionCollection.js.map +1 -1
- package/esm/models/lookup/LookupOptionsModel.js +42 -71
- package/esm/models/lookup/LookupOptionsModel.js.map +1 -1
- package/esm/models/modelcatalog/ModelCatalogModel.js +35 -67
- package/esm/models/modelcatalog/ModelCatalogModel.js.map +1 -1
- package/esm/models/paging/PagesizeModel.js +31 -42
- package/esm/models/paging/PagesizeModel.js.map +1 -1
- package/esm/models/paging/PagingModel.js +77 -94
- package/esm/models/paging/PagingModel.js.map +1 -1
- package/esm/models/panels/GroupingPanelModel.js +116 -160
- package/esm/models/panels/GroupingPanelModel.js.map +1 -1
- package/esm/models/parameter/Parameter.js +82 -97
- package/esm/models/parameter/Parameter.js.map +1 -1
- package/esm/models/process/ProcessStatusSettingsModel.js +63 -100
- package/esm/models/process/ProcessStatusSettingsModel.js.map +1 -1
- package/esm/models/resolveModel.js +3 -5
- package/esm/models/resolveModel.js.map +1 -1
- package/esm/models/search/CaseSearchModel.js +23 -56
- package/esm/models/search/CaseSearchModel.js.map +1 -1
- package/esm/models/sorting/SortOptionModel.js +76 -90
- package/esm/models/sorting/SortOptionModel.js.map +1 -1
- package/esm/models/sorting/SortingModel.js +86 -134
- package/esm/models/sorting/SortingModel.js.map +1 -1
- package/esm/models/tab/TabModel.js +118 -163
- package/esm/models/tab/TabModel.js.map +1 -1
- package/esm/models/taskgroup/TaskGroupCollection.js +7 -37
- package/esm/models/taskgroup/TaskGroupCollection.js.map +1 -1
- package/esm/models/taskgroup/TaskGroupModel.js +51 -83
- package/esm/models/taskgroup/TaskGroupModel.js.map +1 -1
- package/esm/models/user/UserModel.js +29 -61
- package/esm/models/user/UserModel.js.map +1 -1
- package/esm/models/user/UserProfileModel.js +19 -50
- package/esm/models/user/UserProfileModel.js.map +1 -1
- package/esm/models/user/UserServicesModel.js +79 -123
- package/esm/models/user/UserServicesModel.js.map +1 -1
- package/esm/modularui/Authenticate.js +143 -156
- package/esm/modularui/Authenticate.js.map +1 -1
- package/esm/modularui/ModularUIError.js +9 -32
- package/esm/modularui/ModularUIError.js.map +1 -1
- package/esm/modularui/ModularUIRequest.js +476 -630
- package/esm/modularui/ModularUIRequest.js.map +1 -1
- package/esm/modularui/ModularUIResponse.js +104 -119
- package/esm/modularui/ModularUIResponse.js.map +1 -1
- package/esm/react/ErrorBoundary.js +32 -65
- package/esm/react/ErrorBoundary.js.map +1 -1
- package/esm/react/ErrorBoundaryFallback.js +8 -6
- package/esm/react/ErrorBoundaryFallback.js.map +1 -1
- package/esm/react/utils.js +12 -15
- package/esm/react/utils.js.map +1 -1
- package/esm/react-client/Init.js +9 -7
- package/esm/react-client/Init.js.map +1 -1
- package/esm/react-client/client.js +21 -22
- package/esm/react-client/client.js.map +1 -1
- package/esm/react-client/contextPath.js +4 -4
- package/esm/react-client/contextPath.js.map +1 -1
- package/esm/react-client/rehydrate.js +14 -21
- package/esm/react-client/rehydrate.js.map +1 -1
- package/esm/react-server/createSSRComplete.js +10 -14
- package/esm/react-server/createSSRComplete.js.map +1 -1
- package/esm/react-server/htmlpage.js +5 -8
- package/esm/react-server/htmlpage.js.map +1 -1
- package/esm/react-server/renderSSRComplete.js +50 -55
- package/esm/react-server/renderSSRComplete.js.map +1 -1
- package/esm/react-server/renderSSRMinimal.js +13 -13
- package/esm/react-server/renderSSRMinimal.js.map +1 -1
- package/esm/react-server/requestInformation.js +8 -10
- package/esm/react-server/requestInformation.js.map +1 -1
- package/esm/react-server/serverNoSSR.js +22 -21
- package/esm/react-server/serverNoSSR.js.map +1 -1
- package/esm/react-server/serverSSR.js +24 -24
- package/esm/react-server/serverSSR.js.map +1 -1
- package/esm/react-server/serverUtil.js +45 -61
- package/esm/react-server/serverUtil.js.map +1 -1
- package/esm/react-theme/ThemeProvider.js +10 -7
- package/esm/react-theme/ThemeProvider.js.map +1 -1
- package/esm/react-theme/createTheme.js +15 -35
- package/esm/react-theme/createTheme.js.map +1 -1
- package/esm/react-theme/useTheme.js +1 -1
- package/esm/react-theme/useTheme.js.map +1 -1
- package/esm/react-theme/utils/background.js +9 -9
- package/esm/react-theme/utils/background.js.map +1 -1
- package/esm/react-theme/utils/colors.js +12 -12
- package/esm/react-theme/utils/colors.js.map +1 -1
- package/esm/react-theme/utils/contrast.js +27 -27
- package/esm/react-theme/utils/contrast.js.map +1 -1
- package/esm/react-theme/utils/corners.js +10 -9
- package/esm/react-theme/utils/corners.js.map +1 -1
- package/esm/react-theme/utils/spacers.js +23 -22
- package/esm/react-theme/utils/spacers.js.map +1 -1
- package/esm/react-theme/utils/themeProps.js +28 -29
- package/esm/react-theme/utils/themeProps.js.map +1 -1
- package/esm/redux/_i18n/actions.js +15 -21
- package/esm/redux/_i18n/actions.js.map +1 -1
- package/esm/redux/_i18n/reducer.js +20 -29
- package/esm/redux/_i18n/reducer.js.map +1 -1
- package/esm/redux/_modularui/actions.js +40 -67
- package/esm/redux/_modularui/actions.js.map +1 -1
- package/esm/redux/_modularui/connector.js +46 -50
- package/esm/redux/_modularui/connector.js.map +1 -1
- package/esm/redux/_modularui/middleware.js +23 -36
- package/esm/redux/_modularui/middleware.js.map +1 -1
- package/esm/redux/_modularui/modularuiUtils.js +16 -23
- package/esm/redux/_modularui/modularuiUtils.js.map +1 -1
- package/esm/redux/_modularui/reducer.js +42 -53
- package/esm/redux/_modularui/reducer.js.map +1 -1
- package/esm/redux/_modularui/selectors.js +89 -99
- package/esm/redux/_modularui/selectors.js.map +1 -1
- package/esm/redux/_modularui/withModularUI.js +15 -19
- package/esm/redux/_modularui/withModularUI.js.map +1 -1
- package/esm/redux/_router/actions.js +29 -39
- package/esm/redux/_router/actions.js.map +1 -1
- package/esm/redux/_router/connectors.js +12 -14
- package/esm/redux/_router/connectors.js.map +1 -1
- package/esm/redux/_router/middleware.js +27 -29
- package/esm/redux/_router/middleware.js.map +1 -1
- package/esm/redux/_router/reducer.js +4 -4
- package/esm/redux/_router/reducer.js.map +1 -1
- package/esm/redux/actions/Application.js +9 -32
- package/esm/redux/actions/Application.js.map +1 -1
- package/esm/redux/actions/Authorization.js +31 -33
- package/esm/redux/actions/Authorization.js.map +1 -1
- package/esm/redux/actions/Error.js +33 -43
- package/esm/redux/actions/Error.js.map +1 -1
- package/esm/redux/actions/Form.js +13 -15
- package/esm/redux/actions/Form.js.map +1 -1
- package/esm/redux/actions/FormAttributeSet.js +6 -6
- package/esm/redux/actions/FormAttributeSet.js.map +1 -1
- package/esm/redux/actions/FormAttributeSetRepeatable.js +6 -6
- package/esm/redux/actions/FormAttributeSetRepeatable.js.map +1 -1
- package/esm/redux/actions/FormAutosave.js +12 -18
- package/esm/redux/actions/FormAutosave.js.map +1 -1
- package/esm/redux/actions/FormAutosubmit.js +2 -2
- package/esm/redux/actions/FormAutosubmit.js.map +1 -1
- package/esm/redux/actions/FormValidations.js +12 -20
- package/esm/redux/actions/FormValidations.js.map +1 -1
- package/esm/redux/actions/Modals.js +8 -12
- package/esm/redux/actions/Modals.js.map +1 -1
- package/esm/redux/actions/Notification.js +32 -42
- package/esm/redux/actions/Notification.js.map +1 -1
- package/esm/redux/actions/Preferences.js +32 -38
- package/esm/redux/actions/Preferences.js.map +1 -1
- package/esm/redux/actions/ProgressIndicator.js +15 -23
- package/esm/redux/actions/ProgressIndicator.js.map +1 -1
- package/esm/redux/actions/SignIn.js +39 -53
- package/esm/redux/actions/SignIn.js.map +1 -1
- package/esm/redux/actions/SignOut.js +9 -17
- package/esm/redux/actions/SignOut.js.map +1 -1
- package/esm/redux/connectors/Application.js +1 -1
- package/esm/redux/connectors/Application.js.map +1 -1
- package/esm/redux/connectors/Breadcrumb.js +4 -6
- package/esm/redux/connectors/Breadcrumb.js.map +1 -1
- package/esm/redux/connectors/CaseView.js +4 -2
- package/esm/redux/connectors/CaseView.js.map +1 -1
- package/esm/redux/connectors/ConceptDetail.js +5 -3
- package/esm/redux/connectors/ConceptDetail.js.map +1 -1
- package/esm/redux/connectors/ContentBrowser.js +4 -2
- package/esm/redux/connectors/ContentBrowser.js.map +1 -1
- package/esm/redux/connectors/ContentDetail.js +5 -3
- package/esm/redux/connectors/ContentDetail.js.map +1 -1
- package/esm/redux/connectors/ContentDetailSection.js +6 -4
- package/esm/redux/connectors/ContentDetailSection.js.map +1 -1
- package/esm/redux/connectors/Form.js +11 -9
- package/esm/redux/connectors/Form.js.map +1 -1
- package/esm/redux/connectors/FormAttributeSet.js +13 -21
- package/esm/redux/connectors/FormAttributeSet.js.map +1 -1
- package/esm/redux/connectors/ListDetail.js +4 -2
- package/esm/redux/connectors/ListDetail.js.map +1 -1
- package/esm/redux/connectors/Modal.js +4 -6
- package/esm/redux/connectors/Modal.js.map +1 -1
- package/esm/redux/connectors/ModelCatalog.js +4 -2
- package/esm/redux/connectors/ModelCatalog.js.map +1 -1
- package/esm/redux/connectors/Notification.js +8 -10
- package/esm/redux/connectors/Notification.js.map +1 -1
- package/esm/redux/connectors/PanelRenderer.js +7 -6
- package/esm/redux/connectors/PanelRenderer.js.map +1 -1
- package/esm/redux/connectors/Preferences.js +6 -8
- package/esm/redux/connectors/Preferences.js.map +1 -1
- package/esm/redux/connectors/Progress.js +2 -2
- package/esm/redux/connectors/Progress.js.map +1 -1
- package/esm/redux/connectors/ProgressIndicator.js +6 -8
- package/esm/redux/connectors/ProgressIndicator.js.map +1 -1
- package/esm/redux/connectors/QuickSearch.js +6 -4
- package/esm/redux/connectors/QuickSearch.js.map +1 -1
- package/esm/redux/connectors/SignIn.js +4 -4
- package/esm/redux/connectors/SignIn.js.map +1 -1
- package/esm/redux/connectors/SignOut.js +3 -3
- package/esm/redux/connectors/SignOut.js.map +1 -1
- package/esm/redux/connectors/Tab.js +4 -2
- package/esm/redux/connectors/Tab.js.map +1 -1
- package/esm/redux/reducers/AuthReducer.js +14 -25
- package/esm/redux/reducers/AuthReducer.js.map +1 -1
- package/esm/redux/reducers/ErrorReducer.js +4 -4
- package/esm/redux/reducers/ErrorReducer.js.map +1 -1
- package/esm/redux/reducers/ModalsReducer.js +19 -37
- package/esm/redux/reducers/ModalsReducer.js.map +1 -1
- package/esm/redux/reducers/NotificationReducer.js +8 -19
- package/esm/redux/reducers/NotificationReducer.js.map +1 -1
- package/esm/redux/reducers/PreferencesReducer.js +10 -17
- package/esm/redux/reducers/PreferencesReducer.js.map +1 -1
- package/esm/redux/reducers/ProgressIndicatorReducer.js +14 -25
- package/esm/redux/reducers/ProgressIndicatorReducer.js.map +1 -1
- package/esm/redux/reducers/createReducer.js +11 -13
- package/esm/redux/reducers/createReducer.js.map +1 -1
- package/esm/redux/selectors/i18n.js +2 -4
- package/esm/redux/selectors/i18n.js.map +1 -1
- package/esm/redux/store/beforeRenderHooks.js +5 -26
- package/esm/redux/store/beforeRenderHooks.js.map +1 -1
- package/esm/redux/store/configureStore.js +10 -19
- package/esm/redux/store/configureStore.js.map +1 -1
- package/esm/utils/browser/Cache.js +122 -156
- package/esm/utils/browser/Cache.js.map +1 -1
- package/esm/utils/browser/Cookies.js +4 -4
- package/esm/utils/browser/Cookies.js.map +1 -1
- package/esm/utils/datetime/DateTimeUtil.js +363 -418
- package/esm/utils/datetime/DateTimeUtil.js.map +1 -1
- package/esm/utils/fetch/serverFetch.js +5 -5
- package/esm/utils/fetch/serverFetch.js.map +1 -1
- package/esm/utils/fetch/universalFetch.js +13 -14
- package/esm/utils/fetch/universalFetch.js.map +1 -1
- package/esm/utils/fetch/xhr.js +281 -358
- package/esm/utils/fetch/xhr.js.map +1 -1
- package/esm/utils/helpers/checkResource.js +7 -7
- package/esm/utils/helpers/checkResource.js.map +1 -1
- package/esm/utils/helpers/createHash.js +5 -5
- package/esm/utils/helpers/createHash.js.map +1 -1
- package/esm/utils/helpers/createUUID.js +4 -4
- package/esm/utils/helpers/createUUID.js.map +1 -1
- package/esm/utils/helpers/objects.js +9 -14
- package/esm/utils/helpers/objects.js.map +1 -1
- package/esm/utils/helpers/sanitizeHtml.js +13 -13
- package/esm/utils/helpers/sanitizeHtml.js.map +1 -1
- package/esm/utils/helpers/text.js +1 -1
- package/esm/utils/helpers/text.js.map +1 -1
- package/esm/utils/number/DecimalFormat.js +297 -327
- package/esm/utils/number/DecimalFormat.js.map +1 -1
- package/esm/utils/number/formatValue.js +10 -16
- package/esm/utils/number/formatValue.js.map +1 -1
- package/esm/utils/number/parseNumbers.js +13 -13
- package/esm/utils/number/parseNumbers.js.map +1 -1
- package/lib/builder/index.js +1 -1
- package/lib/builder/mergeLayoutHintConfigurations.js +34 -64
- package/lib/builder/mergeLayoutHintConfigurations.js.map +1 -1
- package/lib/constants/Constants.js +37 -37
- package/lib/constants/Constants.js.map +1 -1
- package/lib/constants/LayoutHintConfig.js +1 -1
- package/lib/constants/LayoutHintConfig.js.map +1 -1
- package/lib/constants/LayoutHints.js +20 -22
- package/lib/constants/LayoutHints.js.map +1 -1
- package/lib/constants/Settings.js +12 -26
- package/lib/constants/Settings.js.map +1 -1
- package/lib/constants/index.js +3 -3
- package/lib/exceptions/ConfigurationException.js +5 -34
- package/lib/exceptions/ConfigurationException.js.map +1 -1
- package/lib/exceptions/FetchException.js +32 -75
- package/lib/exceptions/FetchException.js.map +1 -1
- package/lib/exceptions/IllegalArgumentException.js +5 -34
- package/lib/exceptions/IllegalArgumentException.js.map +1 -1
- package/lib/exceptions/IllegalReturnException.js +5 -34
- package/lib/exceptions/IllegalReturnException.js.map +1 -1
- package/lib/exceptions/IllegalStateException.js +5 -34
- package/lib/exceptions/IllegalStateException.js.map +1 -1
- package/lib/exceptions/JsonParseException.js +5 -34
- package/lib/exceptions/JsonParseException.js.map +1 -1
- package/lib/exceptions/MissingPropertyException.js +5 -34
- package/lib/exceptions/MissingPropertyException.js.map +1 -1
- package/lib/exceptions/NetworkException.js +9 -38
- package/lib/exceptions/NetworkException.js.map +1 -1
- package/lib/exceptions/NotAllowedUriException.js +5 -34
- package/lib/exceptions/NotAllowedUriException.js.map +1 -1
- package/lib/exceptions/NotFoundException.js +12 -41
- package/lib/exceptions/NotFoundException.js.map +1 -1
- package/lib/exceptions/ServerRequestException.js +5 -34
- package/lib/exceptions/ServerRequestException.js.map +1 -1
- package/lib/exceptions/ThemePropertyException.js +5 -34
- package/lib/exceptions/ThemePropertyException.js.map +1 -1
- package/lib/exceptions/TimeoutException.js +5 -32
- package/lib/exceptions/TimeoutException.js.map +1 -1
- package/lib/exceptions/UnauthorizedException.js +11 -40
- package/lib/exceptions/UnauthorizedException.js.map +1 -1
- package/lib/exceptions/UnsupportedOperationException.js +5 -34
- package/lib/exceptions/UnsupportedOperationException.js.map +1 -1
- package/lib/exceptions/index.js +15 -15
- package/lib/hooks/index.js +16 -16
- package/lib/hooks/useAllFormsOnModel.js +25 -51
- package/lib/hooks/useAllFormsOnModel.js.map +1 -1
- package/lib/hooks/useAuthentication.js +18 -24
- package/lib/hooks/useAuthentication.js.map +1 -1
- package/lib/hooks/useContent.js +14 -27
- package/lib/hooks/useContent.js.map +1 -1
- package/lib/hooks/useDeepCompareEffect.js +5 -7
- package/lib/hooks/useDeepCompareEffect.js.map +1 -1
- package/lib/hooks/useForm.js +27 -45
- package/lib/hooks/useForm.js.map +1 -1
- package/lib/hooks/useI18n.js +10 -20
- package/lib/hooks/useI18n.js.map +1 -1
- package/lib/hooks/useModal.js +11 -11
- package/lib/hooks/useModal.js.map +1 -1
- package/lib/hooks/useModelCatalog.js +24 -30
- package/lib/hooks/useModelCatalog.js.map +1 -1
- package/lib/hooks/useModels.js +3 -3
- package/lib/hooks/useModels.js.map +1 -1
- package/lib/hooks/useModularUI.js +17 -16
- package/lib/hooks/useModularUI.js.map +1 -1
- package/lib/hooks/useModularUIBasic.js +9 -7
- package/lib/hooks/useModularUIBasic.js.map +1 -1
- package/lib/hooks/useModularUIModel.js +39 -59
- package/lib/hooks/useModularUIModel.js.map +1 -1
- package/lib/hooks/useModularUIRequest.js +4 -6
- package/lib/hooks/useModularUIRequest.js.map +1 -1
- package/lib/hooks/useNotification.js +16 -21
- package/lib/hooks/useNotification.js.map +1 -1
- package/lib/hooks/usePreference.js +3 -5
- package/lib/hooks/usePreference.js.map +1 -1
- package/lib/hooks/useProgressIndicator.js +9 -37
- package/lib/hooks/useProgressIndicator.js.map +1 -1
- package/lib/hooks/useRouter.js +11 -25
- package/lib/hooks/useRouter.js.map +1 -1
- package/lib/i18n/Locale.js +97 -144
- package/lib/i18n/Locale.js.map +1 -1
- package/lib/i18n/Locales.js +97 -160
- package/lib/i18n/Locales.js.map +1 -1
- package/lib/i18n/Message.js +13 -31
- package/lib/i18n/Message.js.map +1 -1
- package/lib/i18n/index.js +9 -11
- package/lib/i18n/index.js.map +1 -1
- package/lib/i18n/languages.js +1 -1
- package/lib/i18n/languages.js.map +1 -1
- package/lib/i18n/withMessage.js +11 -17
- package/lib/i18n/withMessage.js.map +1 -1
- package/lib/index.js +6 -6
- package/lib/models/actions/ActionCollection.js +58 -104
- package/lib/models/actions/ActionCollection.js.map +1 -1
- package/lib/models/actions/ActionModel.js +169 -210
- package/lib/models/actions/ActionModel.js.map +1 -1
- package/lib/models/application/ApplicationModel.js +107 -159
- package/lib/models/application/ApplicationModel.js.map +1 -1
- package/lib/models/attributes/AttributeCollection.js +245 -341
- package/lib/models/attributes/AttributeCollection.js.map +1 -1
- package/lib/models/attributes/AttributeContent.js +182 -257
- package/lib/models/attributes/AttributeContent.js.map +1 -1
- package/lib/models/attributes/AttributeDataHelper.js +203 -257
- package/lib/models/attributes/AttributeDataHelper.js.map +1 -1
- package/lib/models/attributes/AttributeModel.js +838 -950
- package/lib/models/attributes/AttributeModel.js.map +1 -1
- package/lib/models/attributes/AttributeSetModel.js +49 -83
- package/lib/models/attributes/AttributeSetModel.js.map +1 -1
- package/lib/models/attributes/BooleanAttributeModel.js +267 -339
- package/lib/models/attributes/BooleanAttributeModel.js.map +1 -1
- package/lib/models/attributes/CaptchaAttributeModel.js +27 -59
- package/lib/models/attributes/CaptchaAttributeModel.js.map +1 -1
- package/lib/models/attributes/ChoiceAttributeModel.js +343 -437
- package/lib/models/attributes/ChoiceAttributeModel.js.map +1 -1
- package/lib/models/attributes/ChoiceAttributeOptionCollection.js +268 -369
- package/lib/models/attributes/ChoiceAttributeOptionCollection.js.map +1 -1
- package/lib/models/attributes/ChoiceAttributeOptionModel.js +299 -357
- package/lib/models/attributes/ChoiceAttributeOptionModel.js.map +1 -1
- package/lib/models/attributes/CompositeAttributeChildCollection.js +181 -270
- package/lib/models/attributes/CompositeAttributeChildCollection.js.map +1 -1
- package/lib/models/attributes/CompositeAttributeModel.js +331 -411
- package/lib/models/attributes/CompositeAttributeModel.js.map +1 -1
- package/lib/models/attributes/DatetimeAttributeModel.js +371 -425
- package/lib/models/attributes/DatetimeAttributeModel.js.map +1 -1
- package/lib/models/attributes/HelptextAttributeModel.js +41 -74
- package/lib/models/attributes/HelptextAttributeModel.js.map +1 -1
- package/lib/models/attributes/LabelAttributeModel.js +26 -58
- package/lib/models/attributes/LabelAttributeModel.js.map +1 -1
- package/lib/models/attributes/MemoAttributeModel.js +34 -67
- package/lib/models/attributes/MemoAttributeModel.js.map +1 -1
- package/lib/models/attributes/MoneyAttributeModel.js +34 -67
- package/lib/models/attributes/MoneyAttributeModel.js.map +1 -1
- package/lib/models/attributes/NumberAttributeModel.js +181 -231
- package/lib/models/attributes/NumberAttributeModel.js.map +1 -1
- package/lib/models/attributes/PasswordAttributeModel.js +201 -253
- package/lib/models/attributes/PasswordAttributeModel.js.map +1 -1
- package/lib/models/attributes/StringAttributeModel.js +239 -289
- package/lib/models/attributes/StringAttributeModel.js.map +1 -1
- package/lib/models/attributes/UploadAttributeModel.js +183 -243
- package/lib/models/attributes/UploadAttributeModel.js.map +1 -1
- package/lib/models/attributes/XMLAttributeModel.js +38 -71
- package/lib/models/attributes/XMLAttributeModel.js.map +1 -1
- package/lib/models/attributes/_createAttribute.js +20 -43
- package/lib/models/attributes/_createAttribute.js.map +1 -1
- package/lib/models/attributes/input-constraints/BSNConstraint.js +64 -84
- package/lib/models/attributes/input-constraints/BSNConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/ConstraintCollection.js +36 -74
- package/lib/models/attributes/input-constraints/ConstraintCollection.js.map +1 -1
- package/lib/models/attributes/input-constraints/ConstraintModel.js +46 -59
- package/lib/models/attributes/input-constraints/ConstraintModel.js.map +1 -1
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js +171 -193
- package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +53 -68
- package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +53 -68
- package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js +67 -84
- package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.js +53 -69
- package/lib/models/attributes/input-constraints/FileExtensionConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/FileSizeConstraint.js +79 -95
- package/lib/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/IBANConstraint.js +41 -58
- package/lib/models/attributes/input-constraints/IBANConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/MandatoryConstraint.js +39 -60
- package/lib/models/attributes/input-constraints/MandatoryConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js +63 -82
- package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js +150 -172
- package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.js +105 -125
- package/lib/models/attributes/input-constraints/NumberFormatConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js +92 -114
- package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js +58 -73
- package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +36 -55
- package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +51 -65
- package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +51 -65
- package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +64 -82
- package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/RangeConstraint.js +116 -135
- package/lib/models/attributes/input-constraints/RangeConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/RegexConstraint.js +48 -62
- package/lib/models/attributes/input-constraints/RegexConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/StringLengthConstraint.js +158 -177
- package/lib/models/attributes/input-constraints/StringLengthConstraint.js.map +1 -1
- package/lib/models/attributes/input-constraints/XMLConstraint.js +49 -69
- package/lib/models/attributes/input-constraints/XMLConstraint.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js +54 -70
- package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/DependentAttribute.js +172 -218
- package/lib/models/attributes/layouthint-rules/DependentAttribute.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +43 -74
- package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +1 -1
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +32 -64
- package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +1 -1
- package/lib/models/base/BaseCollection.js +170 -206
- package/lib/models/base/BaseCollection.js.map +1 -1
- package/lib/models/base/BaseModel.js +98 -113
- package/lib/models/base/BaseModel.js.map +1 -1
- package/lib/models/base/ResourceCollection.js +28 -60
- package/lib/models/base/ResourceCollection.js.map +1 -1
- package/lib/models/base/ResourceModel.js +171 -231
- package/lib/models/base/ResourceModel.js.map +1 -1
- package/lib/models/caseview/CaseViewModel.js +137 -188
- package/lib/models/caseview/CaseViewModel.js.map +1 -1
- package/lib/models/concepts/BusinessScenarioModel.js +97 -153
- package/lib/models/concepts/BusinessScenarioModel.js.map +1 -1
- package/lib/models/concepts/ConceptDetailModel.js +243 -329
- package/lib/models/concepts/ConceptDetailModel.js.map +1 -1
- package/lib/models/concepts/ConceptIndexModel.js +118 -156
- package/lib/models/concepts/ConceptIndexModel.js.map +1 -1
- package/lib/models/concepts/ConceptLinkModel.js +122 -163
- package/lib/models/concepts/ConceptLinkModel.js.map +1 -1
- package/lib/models/concepts/ConceptRelationCollection.js +57 -105
- package/lib/models/concepts/ConceptRelationCollection.js.map +1 -1
- package/lib/models/concepts/ConceptRelationModel.js +62 -75
- package/lib/models/concepts/ConceptRelationModel.js.map +1 -1
- package/lib/models/concepts/ConceptTypeDetailModel.js +87 -127
- package/lib/models/concepts/ConceptTypeDetailModel.js.map +1 -1
- package/lib/models/concepts/SourceReferenceCollection.js +13 -44
- package/lib/models/concepts/SourceReferenceCollection.js.map +1 -1
- package/lib/models/concepts/SourceReferenceModel.js +47 -74
- package/lib/models/concepts/SourceReferenceModel.js.map +1 -1
- package/lib/models/content/ContentIndexModel.js +112 -156
- package/lib/models/content/ContentIndexModel.js.map +1 -1
- package/lib/models/content/ContentLinkModel.js +162 -205
- package/lib/models/content/ContentLinkModel.js.map +1 -1
- package/lib/models/content/ContentModel.js +188 -235
- package/lib/models/content/ContentModel.js.map +1 -1
- package/lib/models/content/ContentTOCModel.js +133 -209
- package/lib/models/content/ContentTOCModel.js.map +1 -1
- package/lib/models/content/ContentTypeModel.js +56 -92
- package/lib/models/content/ContentTypeModel.js.map +1 -1
- package/lib/models/content/SectionModel.js +160 -254
- package/lib/models/content/SectionModel.js.map +1 -1
- package/lib/models/content/SubSectionModel.js +125 -196
- package/lib/models/content/SubSectionModel.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfiguration.js +46 -58
- package/lib/models/contentconfiguration/ContentConfiguration.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationElements.js +127 -171
- package/lib/models/contentconfiguration/ContentConfigurationElements.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.js +28 -45
- package/lib/models/contentconfiguration/ContentConfigurationEndResults.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.js +31 -42
- package/lib/models/contentconfiguration/ContentConfigurationQuestions.js.map +1 -1
- package/lib/models/contentconfiguration/ContentConfigurationResults.js +74 -98
- package/lib/models/contentconfiguration/ContentConfigurationResults.js.map +1 -1
- package/lib/models/detail/DetailModel.js +176 -232
- package/lib/models/detail/DetailModel.js.map +1 -1
- package/lib/models/error/ErrorCollection.js +82 -139
- package/lib/models/error/ErrorCollection.js.map +1 -1
- package/lib/models/error/ErrorModel.js +36 -48
- package/lib/models/error/ErrorModel.js.map +1 -1
- package/lib/models/error/ErrorResponse.js +177 -205
- package/lib/models/error/ErrorResponse.js.map +1 -1
- package/lib/models/filters/AssignmentFilterModel.js +144 -195
- package/lib/models/filters/AssignmentFilterModel.js.map +1 -1
- package/lib/models/filters/BaseFilterModel.js +171 -228
- package/lib/models/filters/BaseFilterModel.js.map +1 -1
- package/lib/models/filters/ConceptIndexFilterModel.js +9 -39
- package/lib/models/filters/ConceptIndexFilterModel.js.map +1 -1
- package/lib/models/filters/FilterCollection.js +109 -177
- package/lib/models/filters/FilterCollection.js.map +1 -1
- package/lib/models/filters/FilterModel.js +2 -29
- package/lib/models/filters/FilterModel.js.map +1 -1
- package/lib/models/filters/RangeFilterModel.js +30 -60
- package/lib/models/filters/RangeFilterModel.js.map +1 -1
- package/lib/models/form/FormModel.js +961 -1150
- package/lib/models/form/FormModel.js.map +1 -1
- package/lib/models/form/FormObjectModel.js +411 -517
- package/lib/models/form/FormObjectModel.js.map +1 -1
- package/lib/models/grouping/GroupingModel.js +117 -165
- package/lib/models/grouping/GroupingModel.js.map +1 -1
- package/lib/models/href/Href.js +392 -452
- package/lib/models/href/Href.js.map +1 -1
- package/lib/models/href/ListHref.js +119 -159
- package/lib/models/href/ListHref.js.map +1 -1
- package/lib/models/index.js +97 -99
- package/lib/models/index.js.map +1 -1
- package/lib/models/layouthint/LayoutHintCollection.js +94 -140
- package/lib/models/layouthint/LayoutHintCollection.js.map +1 -1
- package/lib/models/links/LinkCollection.js +136 -196
- package/lib/models/links/LinkCollection.js.map +1 -1
- package/lib/models/links/LinkModel.js +191 -235
- package/lib/models/links/LinkModel.js.map +1 -1
- package/lib/models/links/normalizeLinkJSON.js +30 -66
- package/lib/models/links/normalizeLinkJSON.js.map +1 -1
- package/lib/models/list/ListDetailModel.js +229 -302
- package/lib/models/list/ListDetailModel.js.map +1 -1
- package/lib/models/list/ListHeaderModel.js +73 -97
- package/lib/models/list/ListHeaderModel.js.map +1 -1
- package/lib/models/list/ListItemCollection.js +49 -91
- package/lib/models/list/ListItemCollection.js.map +1 -1
- package/lib/models/list/ListItemModel.js +76 -114
- package/lib/models/list/ListItemModel.js.map +1 -1
- package/lib/models/list/ListModel.js +347 -435
- package/lib/models/list/ListModel.js.map +1 -1
- package/lib/models/lookup/LookupOptionCollection.js +16 -61
- package/lib/models/lookup/LookupOptionCollection.js.map +1 -1
- package/lib/models/lookup/LookupOptionsModel.js +48 -79
- package/lib/models/lookup/LookupOptionsModel.js.map +1 -1
- package/lib/models/modelcatalog/ModelCatalogModel.js +39 -72
- package/lib/models/modelcatalog/ModelCatalogModel.js.map +1 -1
- package/lib/models/paging/PagesizeModel.js +29 -38
- package/lib/models/paging/PagesizeModel.js.map +1 -1
- package/lib/models/paging/PagingModel.js +77 -92
- package/lib/models/paging/PagingModel.js.map +1 -1
- package/lib/models/panels/GroupingPanelModel.js +117 -164
- package/lib/models/panels/GroupingPanelModel.js.map +1 -1
- package/lib/models/parameter/Parameter.js +83 -99
- package/lib/models/parameter/Parameter.js.map +1 -1
- package/lib/models/process/ProcessStatusSettingsModel.js +67 -105
- package/lib/models/process/ProcessStatusSettingsModel.js.map +1 -1
- package/lib/models/resolveModel.js +3 -5
- package/lib/models/resolveModel.js.map +1 -1
- package/lib/models/search/CaseSearchModel.js +26 -60
- package/lib/models/search/CaseSearchModel.js.map +1 -1
- package/lib/models/sorting/SortOptionModel.js +77 -91
- package/lib/models/sorting/SortOptionModel.js.map +1 -1
- package/lib/models/sorting/SortingModel.js +88 -140
- package/lib/models/sorting/SortingModel.js.map +1 -1
- package/lib/models/tab/TabModel.js +122 -170
- package/lib/models/tab/TabModel.js.map +1 -1
- package/lib/models/taskgroup/TaskGroupCollection.js +8 -39
- package/lib/models/taskgroup/TaskGroupCollection.js.map +1 -1
- package/lib/models/taskgroup/TaskGroupModel.js +54 -88
- package/lib/models/taskgroup/TaskGroupModel.js.map +1 -1
- package/lib/models/user/UserModel.js +32 -65
- package/lib/models/user/UserModel.js.map +1 -1
- package/lib/models/user/UserProfileModel.js +21 -56
- package/lib/models/user/UserProfileModel.js.map +1 -1
- package/lib/models/user/UserServicesModel.js +78 -128
- package/lib/models/user/UserServicesModel.js.flow +1 -7
- package/lib/models/user/UserServicesModel.js.map +1 -1
- package/lib/modularui/Authenticate.js +144 -157
- package/lib/modularui/Authenticate.js.flow +13 -7
- package/lib/modularui/Authenticate.js.map +1 -1
- package/lib/modularui/ModularUIError.js +9 -39
- package/lib/modularui/ModularUIError.js.map +1 -1
- package/lib/modularui/ModularUIRequest.js +477 -647
- package/lib/modularui/ModularUIRequest.js.map +1 -1
- package/lib/modularui/ModularUIResponse.js +102 -120
- package/lib/modularui/ModularUIResponse.js.map +1 -1
- package/lib/modularui/index.js +3 -3
- package/lib/react/ErrorBoundary.js +33 -71
- package/lib/react/ErrorBoundary.js.map +1 -1
- package/lib/react/ErrorBoundaryFallback.js +8 -6
- package/lib/react/ErrorBoundaryFallback.js.map +1 -1
- package/lib/react/index.js +2 -2
- package/lib/react/utils.js +12 -16
- package/lib/react/utils.js.map +1 -1
- package/lib/react-client/Init.js +9 -7
- package/lib/react-client/Init.js.map +1 -1
- package/lib/react-client/client.js +22 -23
- package/lib/react-client/client.js.map +1 -1
- package/lib/react-client/contextPath.js +4 -4
- package/lib/react-client/contextPath.js.map +1 -1
- package/lib/react-client/index.js +3 -3
- package/lib/react-client/rehydrate.js +14 -22
- package/lib/react-client/rehydrate.js.map +1 -1
- package/lib/react-server/createSSRComplete.js +10 -14
- package/lib/react-server/createSSRComplete.js.map +1 -1
- package/lib/react-server/htmlpage.js +5 -8
- package/lib/react-server/htmlpage.js.map +1 -1
- package/lib/react-server/index.js +8 -8
- package/lib/react-server/renderSSRComplete.js +50 -55
- package/lib/react-server/renderSSRComplete.js.map +1 -1
- package/lib/react-server/renderSSRMinimal.js +13 -13
- package/lib/react-server/renderSSRMinimal.js.map +1 -1
- package/lib/react-server/requestInformation.js +8 -10
- package/lib/react-server/requestInformation.js.map +1 -1
- package/lib/react-server/serverNoSSR.js +22 -21
- package/lib/react-server/serverNoSSR.js.map +1 -1
- package/lib/react-server/serverSSR.js +24 -24
- package/lib/react-server/serverSSR.js.map +1 -1
- package/lib/react-server/serverUtil.js +49 -74
- package/lib/react-server/serverUtil.js.map +1 -1
- package/lib/react-theme/ThemeProvider.js +10 -7
- package/lib/react-theme/ThemeProvider.js.map +1 -1
- package/lib/react-theme/createTheme.js +15 -44
- package/lib/react-theme/createTheme.js.map +1 -1
- package/lib/react-theme/index.js +9 -9
- package/lib/react-theme/useTheme.js +1 -1
- package/lib/react-theme/useTheme.js.map +1 -1
- package/lib/react-theme/utils/background.js +9 -9
- package/lib/react-theme/utils/background.js.map +1 -1
- package/lib/react-theme/utils/colors.js +12 -12
- package/lib/react-theme/utils/colors.js.map +1 -1
- package/lib/react-theme/utils/contrast.js +27 -28
- package/lib/react-theme/utils/contrast.js.map +1 -1
- package/lib/react-theme/utils/corners.js +10 -9
- package/lib/react-theme/utils/corners.js.map +1 -1
- package/lib/react-theme/utils/spacers.js +23 -22
- package/lib/react-theme/utils/spacers.js.map +1 -1
- package/lib/react-theme/utils/themeProps.js +28 -30
- package/lib/react-theme/utils/themeProps.js.map +1 -1
- package/lib/redux/_i18n/actions.js +15 -21
- package/lib/redux/_i18n/actions.js.map +1 -1
- package/lib/redux/_i18n/index.js +2 -2
- package/lib/redux/_i18n/reducer.js +20 -34
- package/lib/redux/_i18n/reducer.js.map +1 -1
- package/lib/redux/_modularui/actions.js +40 -72
- package/lib/redux/_modularui/actions.js.map +1 -1
- package/lib/redux/_modularui/connector.js +46 -55
- package/lib/redux/_modularui/connector.js.map +1 -1
- package/lib/redux/_modularui/index.js +7 -7
- package/lib/redux/_modularui/middleware.js +23 -36
- package/lib/redux/_modularui/middleware.js.map +1 -1
- package/lib/redux/_modularui/modularuiUtils.js +16 -24
- package/lib/redux/_modularui/modularuiUtils.js.map +1 -1
- package/lib/redux/_modularui/reducer.js +42 -61
- package/lib/redux/_modularui/reducer.js.map +1 -1
- package/lib/redux/_modularui/selectors.js +89 -106
- package/lib/redux/_modularui/selectors.js.map +1 -1
- package/lib/redux/_modularui/withModularUI.js +11 -15
- package/lib/redux/_modularui/withModularUI.js.map +1 -1
- package/lib/redux/_router/actions.js +29 -39
- package/lib/redux/_router/actions.js.map +1 -1
- package/lib/redux/_router/connectors.js +7 -9
- package/lib/redux/_router/connectors.js.map +1 -1
- package/lib/redux/_router/index.js +4 -4
- package/lib/redux/_router/middleware.js +27 -29
- package/lib/redux/_router/middleware.js.map +1 -1
- package/lib/redux/_router/reducer.js +4 -4
- package/lib/redux/_router/reducer.js.map +1 -1
- package/lib/redux/actions/Application.js +11 -37
- package/lib/redux/actions/Application.js.map +1 -1
- package/lib/redux/actions/Authorization.js +31 -33
- package/lib/redux/actions/Authorization.js.map +1 -1
- package/lib/redux/actions/Error.js +33 -43
- package/lib/redux/actions/Error.js.map +1 -1
- package/lib/redux/actions/Form.js +14 -16
- package/lib/redux/actions/Form.js.map +1 -1
- package/lib/redux/actions/FormAttributeSet.js +6 -6
- package/lib/redux/actions/FormAttributeSet.js.map +1 -1
- package/lib/redux/actions/FormAttributeSetRepeatable.js +6 -6
- package/lib/redux/actions/FormAttributeSetRepeatable.js.map +1 -1
- package/lib/redux/actions/FormAutosave.js +12 -18
- package/lib/redux/actions/FormAutosave.js.map +1 -1
- package/lib/redux/actions/FormAutosubmit.js +2 -2
- package/lib/redux/actions/FormAutosubmit.js.map +1 -1
- package/lib/redux/actions/FormValidations.js +12 -20
- package/lib/redux/actions/FormValidations.js.map +1 -1
- package/lib/redux/actions/Modals.js +8 -12
- package/lib/redux/actions/Modals.js.map +1 -1
- package/lib/redux/actions/Notification.js +32 -42
- package/lib/redux/actions/Notification.js.map +1 -1
- package/lib/redux/actions/Preferences.js +32 -43
- package/lib/redux/actions/Preferences.js.map +1 -1
- package/lib/redux/actions/ProgressIndicator.js +15 -23
- package/lib/redux/actions/ProgressIndicator.js.map +1 -1
- package/lib/redux/actions/SignIn.js +43 -57
- package/lib/redux/actions/SignIn.js.map +1 -1
- package/lib/redux/actions/SignOut.js +9 -17
- package/lib/redux/actions/SignOut.js.map +1 -1
- package/lib/redux/actions/index.js +15 -15
- package/lib/redux/connectors/Application.js +1 -1
- package/lib/redux/connectors/Application.js.map +1 -1
- package/lib/redux/connectors/Breadcrumb.js +4 -6
- package/lib/redux/connectors/Breadcrumb.js.map +1 -1
- package/lib/redux/connectors/CaseView.js +4 -2
- package/lib/redux/connectors/CaseView.js.map +1 -1
- package/lib/redux/connectors/ConceptDetail.js +5 -3
- package/lib/redux/connectors/ConceptDetail.js.map +1 -1
- package/lib/redux/connectors/ContentBrowser.js +4 -2
- package/lib/redux/connectors/ContentBrowser.js.map +1 -1
- package/lib/redux/connectors/ContentDetail.js +5 -3
- package/lib/redux/connectors/ContentDetail.js.map +1 -1
- package/lib/redux/connectors/ContentDetailSection.js +6 -4
- package/lib/redux/connectors/ContentDetailSection.js.map +1 -1
- package/lib/redux/connectors/Form.js +10 -8
- package/lib/redux/connectors/Form.js.map +1 -1
- package/lib/redux/connectors/FormAttributeSet.js +13 -21
- package/lib/redux/connectors/FormAttributeSet.js.map +1 -1
- package/lib/redux/connectors/ListDetail.js +4 -2
- package/lib/redux/connectors/ListDetail.js.map +1 -1
- package/lib/redux/connectors/Modal.js +4 -6
- package/lib/redux/connectors/Modal.js.map +1 -1
- package/lib/redux/connectors/ModelCatalog.js +4 -2
- package/lib/redux/connectors/ModelCatalog.js.map +1 -1
- package/lib/redux/connectors/Notification.js +8 -10
- package/lib/redux/connectors/Notification.js.map +1 -1
- package/lib/redux/connectors/PanelRenderer.js +7 -6
- package/lib/redux/connectors/PanelRenderer.js.map +1 -1
- package/lib/redux/connectors/Preferences.js +6 -8
- package/lib/redux/connectors/Preferences.js.map +1 -1
- package/lib/redux/connectors/Progress.js +2 -2
- package/lib/redux/connectors/Progress.js.map +1 -1
- package/lib/redux/connectors/ProgressIndicator.js +6 -8
- package/lib/redux/connectors/ProgressIndicator.js.map +1 -1
- package/lib/redux/connectors/QuickSearch.js +5 -3
- package/lib/redux/connectors/QuickSearch.js.map +1 -1
- package/lib/redux/connectors/SignIn.js +4 -4
- package/lib/redux/connectors/SignIn.js.map +1 -1
- package/lib/redux/connectors/SignOut.js +3 -3
- package/lib/redux/connectors/SignOut.js.map +1 -1
- package/lib/redux/connectors/Tab.js +4 -2
- package/lib/redux/connectors/Tab.js.map +1 -1
- package/lib/redux/connectors/index.js +21 -21
- package/lib/redux/index.js +8 -8
- package/lib/redux/reducers/AuthReducer.js +14 -33
- package/lib/redux/reducers/AuthReducer.js.map +1 -1
- package/lib/redux/reducers/ErrorReducer.js +4 -4
- package/lib/redux/reducers/ErrorReducer.js.map +1 -1
- package/lib/redux/reducers/ModalsReducer.js +19 -45
- package/lib/redux/reducers/ModalsReducer.js.map +1 -1
- package/lib/redux/reducers/NotificationReducer.js +8 -27
- package/lib/redux/reducers/NotificationReducer.js.map +1 -1
- package/lib/redux/reducers/PreferencesReducer.js +10 -25
- package/lib/redux/reducers/PreferencesReducer.js.map +1 -1
- package/lib/redux/reducers/ProgressIndicatorReducer.js +14 -33
- package/lib/redux/reducers/ProgressIndicatorReducer.js.map +1 -1
- package/lib/redux/reducers/createReducer.js +11 -13
- package/lib/redux/reducers/createReducer.js.map +1 -1
- package/lib/redux/reducers/index.js +7 -7
- package/lib/redux/selectors/i18n.js +2 -4
- package/lib/redux/selectors/i18n.js.map +1 -1
- package/lib/redux/selectors/index.js +1 -1
- package/lib/redux/store/beforeRenderHooks.js +5 -29
- package/lib/redux/store/beforeRenderHooks.js.map +1 -1
- package/lib/redux/store/configureStore.js +10 -24
- package/lib/redux/store/configureStore.js.map +1 -1
- package/lib/utils/browser/Cache.js +126 -161
- package/lib/utils/browser/Cache.js.map +1 -1
- package/lib/utils/browser/Cookies.js +4 -4
- package/lib/utils/browser/Cookies.js.map +1 -1
- package/lib/utils/datetime/DateTimeUtil.js +364 -418
- package/lib/utils/datetime/DateTimeUtil.js.map +1 -1
- package/lib/utils/fetch/serverFetch.js +5 -5
- package/lib/utils/fetch/serverFetch.js.map +1 -1
- package/lib/utils/fetch/universalFetch.js +13 -13
- package/lib/utils/fetch/universalFetch.js.map +1 -1
- package/lib/utils/fetch/xhr.js +281 -365
- package/lib/utils/fetch/xhr.js.map +1 -1
- package/lib/utils/helpers/checkResource.js +7 -7
- package/lib/utils/helpers/checkResource.js.map +1 -1
- package/lib/utils/helpers/createHash.js +5 -5
- package/lib/utils/helpers/createHash.js.map +1 -1
- package/lib/utils/helpers/createUUID.js +4 -4
- package/lib/utils/helpers/createUUID.js.map +1 -1
- package/lib/utils/helpers/objects.js +9 -15
- package/lib/utils/helpers/objects.js.map +1 -1
- package/lib/utils/helpers/sanitizeHtml.js +13 -13
- package/lib/utils/helpers/sanitizeHtml.js.map +1 -1
- package/lib/utils/helpers/text.js +1 -1
- package/lib/utils/helpers/text.js.map +1 -1
- package/lib/utils/index.js +15 -15
- package/lib/utils/number/DecimalFormat.js +298 -328
- package/lib/utils/number/DecimalFormat.js.map +1 -1
- package/lib/utils/number/formatValue.js +10 -17
- package/lib/utils/number/formatValue.js.map +1 -1
- package/lib/utils/number/parseNumbers.js +13 -13
- package/lib/utils/number/parseNumbers.js.map +1 -1
- package/package.json +13 -13
- package/src/models/user/UserServicesModel.js +1 -7
- package/src/modularui/Authenticate.js +13 -7
|
@@ -1,22 +1,9 @@
|
|
|
1
|
-
import _Reflect$construct from "@babel/runtime-corejs3/core-js-stable/reflect/construct";
|
|
2
|
-
import _slicedToArray from "@babel/runtime-corejs3/helpers/esm/slicedToArray";
|
|
3
|
-
import _classCallCheck from "@babel/runtime-corejs3/helpers/esm/classCallCheck";
|
|
4
|
-
import _createClass from "@babel/runtime-corejs3/helpers/esm/createClass";
|
|
5
|
-
import _assertThisInitialized from "@babel/runtime-corejs3/helpers/esm/assertThisInitialized";
|
|
6
|
-
import _inherits from "@babel/runtime-corejs3/helpers/esm/inherits";
|
|
7
|
-
import _possibleConstructorReturn from "@babel/runtime-corejs3/helpers/esm/possibleConstructorReturn";
|
|
8
|
-
import _getPrototypeOf from "@babel/runtime-corejs3/helpers/esm/getPrototypeOf";
|
|
9
1
|
import _defineProperty from "@babel/runtime-corejs3/helpers/esm/defineProperty";
|
|
10
2
|
import _findInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/find";
|
|
11
3
|
import _filterInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/filter";
|
|
12
4
|
import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
|
|
13
5
|
import _Object$keys from "@babel/runtime-corejs3/core-js-stable/object/keys";
|
|
14
6
|
import _endsWithInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/ends-with";
|
|
15
|
-
|
|
16
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = _Reflect$construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
17
|
-
|
|
18
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !_Reflect$construct) return false; if (_Reflect$construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(_Reflect$construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
19
|
-
|
|
20
7
|
import { DateUtil } from "../../utils/datetime/DateTimeUtil";
|
|
21
8
|
import { isPlainObject } from "../../utils/helpers/objects";
|
|
22
9
|
import BaseModel from "../base/BaseModel";
|
|
@@ -35,1040 +22,944 @@ import AttributeContent from "./AttributeContent";
|
|
|
35
22
|
* Attribute model, base model for all kind of attributes
|
|
36
23
|
*/
|
|
37
24
|
|
|
38
|
-
|
|
39
|
-
_inherits(AttributeModel, _BaseModel);
|
|
40
|
-
|
|
41
|
-
var _super = _createSuper(AttributeModel);
|
|
42
|
-
|
|
25
|
+
export default class AttributeModel extends BaseModel {
|
|
43
26
|
/**
|
|
44
27
|
*/
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
_classCallCheck(this, AttributeModel);
|
|
28
|
+
constructor(attribute, attributeContributions) {
|
|
29
|
+
super(attribute, attributeContributions);
|
|
49
30
|
|
|
50
|
-
|
|
31
|
+
_defineProperty(this, "_label", void 0);
|
|
51
32
|
|
|
52
|
-
_defineProperty(
|
|
33
|
+
_defineProperty(this, "_lastModification", 0);
|
|
53
34
|
|
|
54
|
-
_defineProperty(
|
|
35
|
+
_defineProperty(this, "_initvalue", void 0);
|
|
55
36
|
|
|
56
|
-
_defineProperty(
|
|
37
|
+
_defineProperty(this, "_inputvalue", void 0);
|
|
57
38
|
|
|
58
|
-
_defineProperty(
|
|
39
|
+
_defineProperty(this, "_value", void 0);
|
|
59
40
|
|
|
60
|
-
_defineProperty(
|
|
41
|
+
_defineProperty(this, "_errorCollection", void 0);
|
|
61
42
|
|
|
62
|
-
_defineProperty(
|
|
43
|
+
_defineProperty(this, "_serverConstraints", new ConstraintCollection());
|
|
63
44
|
|
|
64
|
-
_defineProperty(
|
|
45
|
+
_defineProperty(this, "_useClientsideValidation", getSetting("USE_CLIENTSIDE_VALIDATION"));
|
|
65
46
|
|
|
66
|
-
_defineProperty(
|
|
47
|
+
_defineProperty(this, "_isValid", true);
|
|
67
48
|
|
|
68
|
-
_defineProperty(
|
|
49
|
+
_defineProperty(this, "_validatedValue", void 0);
|
|
69
50
|
|
|
70
|
-
_defineProperty(
|
|
51
|
+
_defineProperty(this, "_isEditable", false);
|
|
71
52
|
|
|
72
|
-
_defineProperty(
|
|
53
|
+
_defineProperty(this, "_concept", null);
|
|
73
54
|
|
|
74
|
-
_defineProperty(
|
|
55
|
+
_defineProperty(this, "_referenceDate", void 0);
|
|
75
56
|
|
|
76
|
-
_defineProperty(
|
|
57
|
+
_defineProperty(this, "_isResult", void 0);
|
|
77
58
|
|
|
78
|
-
_defineProperty(
|
|
59
|
+
_defineProperty(this, "_isHidden", false);
|
|
79
60
|
|
|
80
|
-
_defineProperty(
|
|
61
|
+
_defineProperty(this, "_readonly", void 0);
|
|
81
62
|
|
|
82
|
-
_defineProperty(
|
|
63
|
+
_defineProperty(this, "_disabled", false);
|
|
83
64
|
|
|
84
|
-
_defineProperty(
|
|
65
|
+
_defineProperty(this, "_mandatory", void 0);
|
|
85
66
|
|
|
86
|
-
_defineProperty(
|
|
67
|
+
_defineProperty(this, "_links", void 0);
|
|
87
68
|
|
|
88
|
-
_defineProperty(
|
|
69
|
+
_defineProperty(this, "_parentKey", void 0);
|
|
89
70
|
|
|
90
|
-
_defineProperty(
|
|
71
|
+
_defineProperty(this, "_hasContentConfiguration", void 0);
|
|
91
72
|
|
|
92
|
-
_defineProperty(
|
|
73
|
+
_defineProperty(this, "_layoutHintRules", void 0);
|
|
93
74
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
if (_this.hasContentFromData && _this.content.label) {
|
|
97
|
-
_this._label = _this.content.label;
|
|
75
|
+
if (this.hasContentFromData && this.content.label) {
|
|
76
|
+
this._label = this.content.label;
|
|
98
77
|
} else {
|
|
99
|
-
|
|
78
|
+
this._label = this.contributions.label;
|
|
100
79
|
}
|
|
101
80
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
81
|
+
this._initvalue = this.data.value;
|
|
82
|
+
this._inputvalue = this.getInitialInputValue(this.data.value);
|
|
83
|
+
this._value = this.data.value;
|
|
84
|
+
this._disabled = this.layouthint.has(DISABLED);
|
|
85
|
+
this._errorCollection = new ErrorCollection("attribute");
|
|
107
86
|
|
|
108
87
|
if (attribute && attribute.message) {
|
|
109
|
-
|
|
88
|
+
this._errorCollection.addServerError(attribute.message.id, attribute.message.message, attribute.message.parameters);
|
|
110
89
|
}
|
|
111
90
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
return _this;
|
|
91
|
+
this._referenceDate = this.getData("referenceDate", DateUtil.now());
|
|
92
|
+
this._isResult = this.getData("isResult", false);
|
|
93
|
+
this._mandatory = this.layouthint.has(MANDATORY) || this.contributions.mandatory;
|
|
94
|
+
this._links = new LinkCollection(this.data._links, this.contributions._links);
|
|
117
95
|
}
|
|
118
96
|
/**
|
|
119
97
|
*/
|
|
120
98
|
|
|
121
99
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
/**
|
|
126
|
-
* Retrieve initial input value
|
|
127
|
-
*/
|
|
128
|
-
function getInitialInputValue(value) {
|
|
129
|
-
return value;
|
|
100
|
+
static isApplicableModel(contributions) {
|
|
101
|
+
if (!isPlainObject(contributions)) {
|
|
102
|
+
throw new IllegalArgumentException("Given argument for isApplicableModel is not a contributions object");
|
|
130
103
|
}
|
|
131
|
-
/**
|
|
132
|
-
*/
|
|
133
|
-
|
|
134
|
-
}, {
|
|
135
|
-
key: "getInitialChildModelLinks",
|
|
136
|
-
value: function getInitialChildModelLinks() {
|
|
137
|
-
if (!this.hasContentFromData && this.hasContentConfiguration && this.conceptLink) {
|
|
138
|
-
return [this.conceptLink];
|
|
139
|
-
}
|
|
140
104
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
105
|
+
return false;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Retrieve initial input value
|
|
109
|
+
*/
|
|
145
110
|
|
|
146
|
-
}, {
|
|
147
|
-
key: "setChildModels",
|
|
148
|
-
value: function setChildModels(models) {
|
|
149
|
-
var _this$conceptLink;
|
|
150
111
|
|
|
151
|
-
|
|
112
|
+
getInitialInputValue(value) {
|
|
113
|
+
return value;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
*/
|
|
152
117
|
|
|
153
|
-
if (conceptHref) {
|
|
154
|
-
this.concept = _findInstanceProperty(models).call(models, function (model) {
|
|
155
|
-
return model.selfhref.equalsWithParameters(conceptHref);
|
|
156
|
-
});
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
/**
|
|
160
|
-
* Getting the attribute key
|
|
161
|
-
*/
|
|
162
|
-
|
|
163
|
-
}, {
|
|
164
|
-
key: "key",
|
|
165
|
-
get: function get() {
|
|
166
|
-
return this.data.key;
|
|
167
|
-
}
|
|
168
|
-
/**
|
|
169
|
-
*/
|
|
170
118
|
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
return this._parentKey || "";
|
|
175
|
-
}
|
|
176
|
-
/**
|
|
177
|
-
*/
|
|
178
|
-
,
|
|
179
|
-
set: function set(parentKey) {
|
|
180
|
-
this._parentKey = parentKey;
|
|
181
|
-
}
|
|
182
|
-
/**
|
|
183
|
-
* Getting the attribute name
|
|
184
|
-
*/
|
|
185
|
-
|
|
186
|
-
}, {
|
|
187
|
-
key: "name",
|
|
188
|
-
get: function get() {
|
|
189
|
-
return this.key;
|
|
119
|
+
getInitialChildModelLinks() {
|
|
120
|
+
if (!this.hasContentFromData && this.hasContentConfiguration && this.conceptLink) {
|
|
121
|
+
return [this.conceptLink];
|
|
190
122
|
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
key: "label",
|
|
206
|
-
get: function get() {
|
|
207
|
-
return this._label || "";
|
|
208
|
-
}
|
|
209
|
-
/**
|
|
210
|
-
* Set the label of this attribute
|
|
211
|
-
*/
|
|
212
|
-
,
|
|
213
|
-
set: function set(label) {
|
|
214
|
-
this._label = label;
|
|
215
|
-
}
|
|
216
|
-
/**
|
|
217
|
-
*/
|
|
218
|
-
|
|
219
|
-
}, {
|
|
220
|
-
key: "hasContentConfiguration",
|
|
221
|
-
get:
|
|
222
|
-
/**
|
|
223
|
-
*/
|
|
224
|
-
function get() {
|
|
225
|
-
return this._hasContentConfiguration || false;
|
|
123
|
+
|
|
124
|
+
return [];
|
|
125
|
+
}
|
|
126
|
+
/**
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
setChildModels(models) {
|
|
131
|
+
var _this$conceptLink;
|
|
132
|
+
|
|
133
|
+
const conceptHref = (_this$conceptLink = this.conceptLink) === null || _this$conceptLink === void 0 ? void 0 : _this$conceptLink.href;
|
|
134
|
+
|
|
135
|
+
if (conceptHref) {
|
|
136
|
+
this.concept = _findInstanceProperty(models).call(models, model => model.selfhref.equalsWithParameters(conceptHref));
|
|
226
137
|
}
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* Getting the attribute key
|
|
141
|
+
*/
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
get key() {
|
|
145
|
+
return this.data.key;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
get parentKey() {
|
|
152
|
+
return this._parentKey || "";
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
*/
|
|
156
|
+
|
|
157
|
+
|
|
158
|
+
set parentKey(parentKey) {
|
|
159
|
+
this._parentKey = parentKey;
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Getting the attribute name
|
|
163
|
+
*/
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
get name() {
|
|
167
|
+
return this.key;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Getting the type of the attribute
|
|
171
|
+
*/
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
get type() {
|
|
175
|
+
return this.contributions.type;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* Getting the label of the attribute
|
|
179
|
+
*/
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
get label() {
|
|
183
|
+
return this._label || "";
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Set the label of this attribute
|
|
187
|
+
*/
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
set label(label) {
|
|
191
|
+
this._label = label;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
*/
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
set hasContentConfiguration(hasContentConfiguration) {
|
|
198
|
+
this._hasContentConfiguration = hasContentConfiguration;
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
*/
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
get hasContentConfiguration() {
|
|
205
|
+
return this._hasContentConfiguration || false;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
*/
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
indicateContentConfiguration(contentConfiguration) {
|
|
212
|
+
if (contentConfiguration) {
|
|
213
|
+
var _contentConfiguration;
|
|
214
|
+
|
|
215
|
+
const hasQuestionConfig = (_contentConfiguration = contentConfiguration.questions) === null || _contentConfiguration === void 0 ? void 0 : _contentConfiguration.hasConfig();
|
|
216
|
+
const hasEndResultConfig = contentConfiguration.isConfiguredEndResultAttribute(this.key);
|
|
217
|
+
const hasIntermediateResultConfig = contentConfiguration.isConfiguredIntermediateResultAttribute(this.key);
|
|
218
|
+
this.hasContentConfiguration = hasQuestionConfig || hasEndResultConfig || hasIntermediateResultConfig;
|
|
232
219
|
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* Retrieve the first permitted label to render when a concept and contentConfiguration is available
|
|
223
|
+
* Be aware that permission could be in place for labels from a concept.
|
|
224
|
+
*/
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
getContentConfiguredLabel(contentConfiguration) {
|
|
228
|
+
if (this.hasContentFromData) {
|
|
229
|
+
var _this$content$label;
|
|
230
|
+
|
|
231
|
+
return (_this$content$label = this.content.label) !== null && _this$content$label !== void 0 ? _this$content$label : this.label;
|
|
244
232
|
}
|
|
245
|
-
/**
|
|
246
|
-
* Retrieve the first permitted label to render when a concept and contentConfiguration is available
|
|
247
|
-
* Be aware that permission could be in place for labels from a concept.
|
|
248
|
-
*/
|
|
249
|
-
|
|
250
|
-
}, {
|
|
251
|
-
key: "getContentConfiguredLabel",
|
|
252
|
-
value: function getContentConfiguredLabel(contentConfiguration) {
|
|
253
|
-
if (this.hasContentFromData) {
|
|
254
|
-
var _this$content$label;
|
|
255
|
-
|
|
256
|
-
return (_this$content$label = this.content.label) !== null && _this$content$label !== void 0 ? _this$content$label : this.label;
|
|
257
|
-
}
|
|
258
233
|
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
return configuredLabel._id === configuredLabelProperty;
|
|
274
|
-
});
|
|
275
|
-
})).call(_context2, function (configuredLabelProperty) {
|
|
276
|
-
return _findInstanceProperty(configuredLabels).call(configuredLabels, function (configuredLabel) {
|
|
277
|
-
return configuredLabel._id === configuredLabelProperty;
|
|
278
|
-
});
|
|
279
|
-
}),
|
|
280
|
-
_configuredLabelPrope2 = _slicedToArray(_configuredLabelPrope, 1),
|
|
281
|
-
firstConfiguredLabel = _configuredLabelPrope2[0];
|
|
282
|
-
|
|
283
|
-
if (firstConfiguredLabel) {
|
|
284
|
-
return firstConfiguredLabel.value;
|
|
285
|
-
}
|
|
234
|
+
const configuredLabelProperties = contentConfiguration && contentConfiguration.labelConfig.length > 0 ? contentConfiguration.labelConfig[0].types : [];
|
|
235
|
+
|
|
236
|
+
if (this.concept && configuredLabelProperties.length > 0) {
|
|
237
|
+
var _context;
|
|
238
|
+
|
|
239
|
+
const configuredLabels = _filterInstanceProperty(_context = this.concept.getLabelElementByIds(configuredLabelProperties)).call(_context, configuredLabel => configuredLabel.value && configuredLabel.value !== "");
|
|
240
|
+
|
|
241
|
+
if (configuredLabels.length > 0) {
|
|
242
|
+
var _context2;
|
|
243
|
+
|
|
244
|
+
const [firstConfiguredLabel] = _mapInstanceProperty(_context2 = _filterInstanceProperty(configuredLabelProperties).call(configuredLabelProperties, configuredLabelProperty => configuredLabels.some(configuredLabel => configuredLabel._id === configuredLabelProperty))).call(_context2, configuredLabelProperty => _findInstanceProperty(configuredLabels).call(configuredLabels, configuredLabel => configuredLabel._id === configuredLabelProperty));
|
|
245
|
+
|
|
246
|
+
if (firstConfiguredLabel) {
|
|
247
|
+
return firstConfiguredLabel.value;
|
|
286
248
|
}
|
|
287
249
|
}
|
|
288
|
-
|
|
289
|
-
return this.label;
|
|
290
250
|
}
|
|
291
|
-
/**
|
|
292
|
-
*/
|
|
293
251
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
}
|
|
299
|
-
/**
|
|
300
|
-
* Handles layout hint align-left, align-center and align-right
|
|
301
|
-
*/
|
|
252
|
+
return this.label;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
*/
|
|
302
256
|
|
|
303
|
-
}, {
|
|
304
|
-
key: "alignment",
|
|
305
|
-
get: function get() {
|
|
306
|
-
var alignmentHints = this.layouthint.getByLayoutHint("align-"); // return alignment based on layouthint or the default alignment for the attribute
|
|
307
257
|
|
|
308
|
-
|
|
258
|
+
get defaultAlignment() {
|
|
259
|
+
return "left";
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* Handles layout hint align-left, align-center and align-right
|
|
263
|
+
*/
|
|
309
264
|
|
|
310
|
-
if (alignment === "left" || alignment === "center" || alignment === "right") {
|
|
311
|
-
return alignment;
|
|
312
|
-
}
|
|
313
265
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
/**
|
|
317
|
-
* Retrieve links of attribute
|
|
318
|
-
*/
|
|
319
|
-
|
|
320
|
-
}, {
|
|
321
|
-
key: "links",
|
|
322
|
-
get: function get() {
|
|
323
|
-
if (!this._links) {
|
|
324
|
-
this._links = new LinkCollection(this.data._links, this.contributions._links);
|
|
325
|
-
}
|
|
266
|
+
get alignment() {
|
|
267
|
+
const alignmentHints = this.layouthint.getByLayoutHint("align-"); // return alignment based on layouthint or the default alignment for the attribute
|
|
326
268
|
|
|
327
|
-
|
|
269
|
+
const alignment = alignmentHints ? alignmentHints.substring("align-".length) : this.defaultAlignment;
|
|
270
|
+
|
|
271
|
+
if (alignment === "left" || alignment === "center" || alignment === "right") {
|
|
272
|
+
return alignment;
|
|
328
273
|
}
|
|
329
|
-
/**
|
|
330
|
-
* Retrieve link of attribute when available
|
|
331
|
-
*/
|
|
332
274
|
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
275
|
+
return this.defaultAlignment;
|
|
276
|
+
}
|
|
277
|
+
/**
|
|
278
|
+
* Retrieve links of attribute
|
|
279
|
+
*/
|
|
337
280
|
|
|
338
|
-
if (downloadLink && downloadLink.key === this.key) {
|
|
339
|
-
return downloadLink;
|
|
340
|
-
}
|
|
341
281
|
|
|
342
|
-
|
|
282
|
+
get links() {
|
|
283
|
+
if (!this._links) {
|
|
284
|
+
this._links = new LinkCollection(this.data._links, this.contributions._links);
|
|
343
285
|
}
|
|
344
|
-
/**
|
|
345
|
-
* Retrieve concept link of attribute when available
|
|
346
|
-
*/
|
|
347
|
-
|
|
348
|
-
}, {
|
|
349
|
-
key: "conceptLink",
|
|
350
|
-
get: function get() {
|
|
351
|
-
var conceptLink = this.links.getLinkByKey("concept");
|
|
352
|
-
|
|
353
|
-
if (conceptLink !== null) {
|
|
354
|
-
conceptLink.href = conceptLink.href.addParameter(TIMEVERSION_FILTER_NAME, this.referenceDate);
|
|
355
|
-
conceptLink.isCacheable = true;
|
|
356
|
-
}
|
|
357
286
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
287
|
+
return this._links;
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Retrieve link of attribute when available
|
|
291
|
+
*/
|
|
363
292
|
|
|
364
|
-
}, {
|
|
365
|
-
key: "concept",
|
|
366
|
-
get: function get() {
|
|
367
|
-
var _this$_concept;
|
|
368
293
|
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
/**
|
|
372
|
-
* Set the concept
|
|
373
|
-
*/
|
|
374
|
-
,
|
|
375
|
-
set: function set(concept) {
|
|
376
|
-
this._concept = concept instanceof ConceptDetailModel ? concept : null;
|
|
377
|
-
}
|
|
378
|
-
/**
|
|
379
|
-
* Retrieve reference date of attribute which can be used as entryDate for content
|
|
380
|
-
* to get information in correct time version
|
|
381
|
-
*/
|
|
382
|
-
|
|
383
|
-
}, {
|
|
384
|
-
key: "referenceDate",
|
|
385
|
-
get: function get() {
|
|
386
|
-
return this._referenceDate;
|
|
387
|
-
}
|
|
388
|
-
/**
|
|
389
|
-
* Set reference date for concepts and content
|
|
390
|
-
*/
|
|
391
|
-
,
|
|
392
|
-
set: function set(date) {
|
|
393
|
-
this._referenceDate = date;
|
|
394
|
-
}
|
|
395
|
-
/**
|
|
396
|
-
* Initial value received from the modular ui service
|
|
397
|
-
*/
|
|
398
|
-
|
|
399
|
-
}, {
|
|
400
|
-
key: "initvalue",
|
|
401
|
-
get: function get() {
|
|
402
|
-
return this._initvalue;
|
|
403
|
-
}
|
|
404
|
-
/**
|
|
405
|
-
* Retrieve input value
|
|
406
|
-
*/
|
|
407
|
-
|
|
408
|
-
}, {
|
|
409
|
-
key: "getInputValue",
|
|
410
|
-
value: function getInputValue() {
|
|
411
|
-
var inputvalue = this._inputvalue;
|
|
412
|
-
return inputvalue ? inputvalue.toString() : "";
|
|
413
|
-
}
|
|
414
|
-
/**
|
|
415
|
-
* Returns the value as entered by the user. This can differ from the internal iso value that is stored
|
|
416
|
-
*/
|
|
417
|
-
|
|
418
|
-
}, {
|
|
419
|
-
key: "inputvalue",
|
|
420
|
-
get: function get() {
|
|
421
|
-
return this.getInputValue();
|
|
422
|
-
}
|
|
423
|
-
/**
|
|
424
|
-
* Value that is used when retrieving an error collection of this attribute
|
|
425
|
-
* Mostly this is the input value, but sometimes a different value is needed,
|
|
426
|
-
* for example iban and postcode need to validate length without spaces
|
|
427
|
-
*/
|
|
428
|
-
,
|
|
429
|
-
set:
|
|
430
|
-
/**
|
|
431
|
-
* Sets the input value to the value entered by the user
|
|
432
|
-
*/
|
|
433
|
-
function set(value) {
|
|
434
|
-
this._inputvalue = value;
|
|
435
|
-
this.value = value;
|
|
436
|
-
this.validate(value);
|
|
437
|
-
}
|
|
438
|
-
/**
|
|
439
|
-
*/
|
|
294
|
+
get downloadLink() {
|
|
295
|
+
const downloadLink = this.links.getLinksByGroup("download").first;
|
|
440
296
|
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
get: function get() {
|
|
444
|
-
return this.inputvalue;
|
|
445
|
-
}
|
|
446
|
-
}, {
|
|
447
|
-
key: "hasValue",
|
|
448
|
-
value: function hasValue() {
|
|
449
|
-
return this._value != null && this._value !== "";
|
|
297
|
+
if (downloadLink && downloadLink.key === this.key) {
|
|
298
|
+
return downloadLink;
|
|
450
299
|
}
|
|
451
|
-
/**
|
|
452
|
-
* Getting the value of the attribute
|
|
453
|
-
*/
|
|
454
|
-
|
|
455
|
-
}, {
|
|
456
|
-
key: "getValue",
|
|
457
|
-
value: function getValue() {
|
|
458
|
-
return this.hasValue() ? this._value : null;
|
|
459
|
-
}
|
|
460
|
-
/**
|
|
461
|
-
* Getting data ready to be send to the modular ui
|
|
462
|
-
* Returns null when the attribute should not be send to the server
|
|
463
|
-
*/
|
|
464
|
-
|
|
465
|
-
}, {
|
|
466
|
-
key: "getFormData",
|
|
467
|
-
value: function getFormData() {
|
|
468
|
-
if (this.inError()) {
|
|
469
|
-
return null;
|
|
470
|
-
}
|
|
471
300
|
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
301
|
+
return null;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* Retrieve concept link of attribute when available
|
|
305
|
+
*/
|
|
476
306
|
|
|
477
|
-
}, {
|
|
478
|
-
key: "formdata",
|
|
479
|
-
get: function get() {
|
|
480
|
-
return this.getFormData();
|
|
481
|
-
}
|
|
482
|
-
/**
|
|
483
|
-
*/
|
|
484
307
|
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
value: function getEmptyFormData() {
|
|
488
|
-
return _defineProperty({}, this.name, null);
|
|
489
|
-
}
|
|
490
|
-
/**
|
|
491
|
-
* Getting the value of the attribute
|
|
492
|
-
*/
|
|
493
|
-
|
|
494
|
-
}, {
|
|
495
|
-
key: "value",
|
|
496
|
-
get: function get() {
|
|
497
|
-
return this.getValue();
|
|
498
|
-
}
|
|
499
|
-
/**
|
|
500
|
-
* Setting a value in the element
|
|
501
|
-
*/
|
|
502
|
-
,
|
|
503
|
-
set: function set(value) {
|
|
504
|
-
this.updateLastModification();
|
|
505
|
-
this._value = value;
|
|
506
|
-
}
|
|
507
|
-
/**
|
|
508
|
-
*/
|
|
308
|
+
get conceptLink() {
|
|
309
|
+
const conceptLink = this.links.getLinkByKey("concept");
|
|
509
310
|
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
return value;
|
|
311
|
+
if (conceptLink !== null) {
|
|
312
|
+
conceptLink.href = conceptLink.href.addParameter(TIMEVERSION_FILTER_NAME, this.referenceDate);
|
|
313
|
+
conceptLink.isCacheable = true;
|
|
514
314
|
}
|
|
515
|
-
/**
|
|
516
|
-
* Getting the readonly value, iso value converted for human reading
|
|
517
|
-
*/
|
|
518
|
-
|
|
519
|
-
}, {
|
|
520
|
-
key: "readonlyvalue",
|
|
521
|
-
get: function get() {
|
|
522
|
-
return this.value ? this.value.toString() : "";
|
|
523
|
-
}
|
|
524
|
-
/**
|
|
525
|
-
* Getting mandatory status of attribute
|
|
526
|
-
*/
|
|
527
|
-
|
|
528
|
-
}, {
|
|
529
|
-
key: "mandatory",
|
|
530
|
-
get: function get() {
|
|
531
|
-
return this._mandatory || false;
|
|
532
|
-
}
|
|
533
|
-
/**
|
|
534
|
-
*/
|
|
535
|
-
,
|
|
536
|
-
set:
|
|
537
|
-
/**
|
|
538
|
-
* Set mandatory status of attribute
|
|
539
|
-
*/
|
|
540
|
-
function set(mandatory) {
|
|
541
|
-
if (mandatory !== this._mandatory) {
|
|
542
|
-
this._validatedValue = null;
|
|
543
|
-
}
|
|
544
315
|
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
316
|
+
return conceptLink;
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* Get concept information
|
|
320
|
+
*/
|
|
549
321
|
|
|
550
|
-
}, {
|
|
551
|
-
key: "configuredMandatory",
|
|
552
|
-
get: function get() {
|
|
553
|
-
return this.layouthint.has(MANDATORY) || this.contributions.mandatory;
|
|
554
|
-
}
|
|
555
|
-
}, {
|
|
556
|
-
key: "readonly",
|
|
557
|
-
get: function get() {
|
|
558
|
-
return this._readonly || this.contributions.readonly === true || this.data.static === true || this.isResult === true;
|
|
559
|
-
}
|
|
560
|
-
/**
|
|
561
|
-
*/
|
|
562
|
-
,
|
|
563
|
-
set: function set(readonly) {
|
|
564
|
-
this._readonly = readonly;
|
|
565
|
-
}
|
|
566
|
-
/**
|
|
567
|
-
*/
|
|
568
322
|
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
get: function get() {
|
|
572
|
-
return this._disabled;
|
|
573
|
-
}
|
|
574
|
-
/**
|
|
575
|
-
*/
|
|
576
|
-
,
|
|
577
|
-
set: function set(disabled) {
|
|
578
|
-
this._disabled = disabled;
|
|
579
|
-
}
|
|
580
|
-
/**
|
|
581
|
-
*/
|
|
323
|
+
get concept() {
|
|
324
|
+
var _this$_concept;
|
|
582
325
|
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
/**
|
|
589
|
-
*/
|
|
590
|
-
,
|
|
591
|
-
set: function set(isResult) {
|
|
592
|
-
this._isResult = isResult;
|
|
593
|
-
}
|
|
594
|
-
/**
|
|
595
|
-
* Getting the display and input format of a attribute
|
|
596
|
-
*/
|
|
597
|
-
|
|
598
|
-
}, {
|
|
599
|
-
key: "format",
|
|
600
|
-
get: function get() {
|
|
601
|
-
return this.getContribution("format");
|
|
602
|
-
}
|
|
603
|
-
/**
|
|
604
|
-
*/
|
|
326
|
+
return (_this$_concept = this._concept) !== null && _this$_concept !== void 0 ? _this$_concept : null;
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Set the concept
|
|
330
|
+
*/
|
|
605
331
|
|
|
606
|
-
}, {
|
|
607
|
-
key: "formatLabel",
|
|
608
|
-
get: function get() {
|
|
609
|
-
return this.format || "";
|
|
610
|
-
}
|
|
611
|
-
/**
|
|
612
|
-
* Get minimum string length
|
|
613
|
-
*/
|
|
614
|
-
|
|
615
|
-
}, {
|
|
616
|
-
key: "minLength",
|
|
617
|
-
get: function get() {
|
|
618
|
-
return this.getContribution("minLength");
|
|
619
|
-
}
|
|
620
|
-
/**
|
|
621
|
-
* Get maximum string length
|
|
622
|
-
*/
|
|
623
|
-
|
|
624
|
-
}, {
|
|
625
|
-
key: "maxLength",
|
|
626
|
-
get: function get() {
|
|
627
|
-
return this.getContribution("maxLength");
|
|
628
|
-
}
|
|
629
|
-
/**
|
|
630
|
-
*/
|
|
631
332
|
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
*/
|
|
640
|
-
|
|
641
|
-
}, {
|
|
642
|
-
key: "assistantMessage",
|
|
643
|
-
get: function get() {
|
|
644
|
-
return this.getContribution("assistant");
|
|
645
|
-
}
|
|
646
|
-
/**
|
|
647
|
-
* Get valid status
|
|
648
|
-
*/
|
|
649
|
-
|
|
650
|
-
}, {
|
|
651
|
-
key: "isValid",
|
|
652
|
-
get: function get() {
|
|
653
|
-
return this.validate(this.validateValue);
|
|
654
|
-
}
|
|
655
|
-
/**
|
|
656
|
-
* Retrieve applicable constraint for this attribute
|
|
657
|
-
*/
|
|
658
|
-
|
|
659
|
-
}, {
|
|
660
|
-
key: "constraintCollection",
|
|
661
|
-
get: function get() {
|
|
662
|
-
var constraints = new ConstraintCollection();
|
|
663
|
-
constraints.add(this._serverConstraints); // Mandatory constraint
|
|
664
|
-
|
|
665
|
-
if (this.mandatory) {
|
|
666
|
-
constraints.add(new MandatoryConstraint());
|
|
667
|
-
}
|
|
333
|
+
set concept(concept) {
|
|
334
|
+
this._concept = concept instanceof ConceptDetailModel ? concept : null;
|
|
335
|
+
}
|
|
336
|
+
/**
|
|
337
|
+
* Retrieve reference date of attribute which can be used as entryDate for content
|
|
338
|
+
* to get information in correct time version
|
|
339
|
+
*/
|
|
668
340
|
|
|
669
|
-
if (this.minLength || this.maxLength) {
|
|
670
|
-
constraints.add(new StringLengthConstraint(this.minLength, this.maxLength));
|
|
671
|
-
}
|
|
672
341
|
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
*/
|
|
680
|
-
|
|
681
|
-
}, {
|
|
682
|
-
key: "addConstraints",
|
|
683
|
-
value: function addConstraints() {
|
|
684
|
-
return new ConstraintCollection();
|
|
685
|
-
}
|
|
686
|
-
/**
|
|
687
|
-
* Used to programmatically overwrite the setting USE_CLIENTSIDE_VALIDATION
|
|
688
|
-
*/
|
|
689
|
-
|
|
690
|
-
}, {
|
|
691
|
-
key: "setUseClientsideValidation",
|
|
692
|
-
value: function setUseClientsideValidation(enabled) {
|
|
693
|
-
this._useClientsideValidation = enabled;
|
|
694
|
-
}
|
|
695
|
-
/**
|
|
696
|
-
* Indicates if client side validation is enabled
|
|
697
|
-
* @returns {boolean}
|
|
698
|
-
*/
|
|
342
|
+
get referenceDate() {
|
|
343
|
+
return this._referenceDate;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* Set reference date for concepts and content
|
|
347
|
+
*/
|
|
699
348
|
|
|
700
|
-
}, {
|
|
701
|
-
key: "useClientsideValidation",
|
|
702
|
-
value: function useClientsideValidation() {
|
|
703
|
-
var _this$_useClientsideV;
|
|
704
349
|
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
}, {
|
|
712
|
-
key: "validate",
|
|
713
|
-
value: function validate(value) {
|
|
714
|
-
// when client side validation is disabled, this attribute is always valid
|
|
715
|
-
if (!this.useClientsideValidation()) {
|
|
716
|
-
return true;
|
|
717
|
-
}
|
|
350
|
+
set referenceDate(date) {
|
|
351
|
+
this._referenceDate = date;
|
|
352
|
+
}
|
|
353
|
+
/**
|
|
354
|
+
* Initial value received from the modular ui service
|
|
355
|
+
*/
|
|
718
356
|
|
|
719
|
-
if (this.isOptionalAndEmpty(value)) {
|
|
720
|
-
this._isValid = true;
|
|
721
|
-
} else if (this._validatedValue !== value) {
|
|
722
|
-
this._isValid = this.constraintCollection.validate(value);
|
|
723
|
-
}
|
|
724
357
|
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
}, {
|
|
733
|
-
key: "isOptionalAndEmpty",
|
|
734
|
-
value: function isOptionalAndEmpty(value) {
|
|
735
|
-
if (value === undefined) {
|
|
736
|
-
throw new IllegalArgumentException("isOptionalAndEmpty method needs value argument");
|
|
737
|
-
}
|
|
358
|
+
get initvalue() {
|
|
359
|
+
return this._initvalue;
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* Retrieve input value
|
|
363
|
+
*/
|
|
738
364
|
|
|
739
|
-
return !this.mandatory && value === "";
|
|
740
|
-
}
|
|
741
|
-
/**
|
|
742
|
-
* Retrieve error messages of this attribute
|
|
743
|
-
*/
|
|
744
|
-
|
|
745
|
-
}, {
|
|
746
|
-
key: "errorCollection",
|
|
747
|
-
get: function get() {
|
|
748
|
-
var collection = new ErrorCollection("attribute", this._errorCollection);
|
|
749
|
-
collection.addConstraints(this.constraintCollection.invalidConstraints(this.validateValue));
|
|
750
|
-
return collection;
|
|
751
|
-
}
|
|
752
|
-
/**
|
|
753
|
-
* Check if attribute is in error
|
|
754
|
-
*/
|
|
755
|
-
|
|
756
|
-
}, {
|
|
757
|
-
key: "inError",
|
|
758
|
-
value: function inError() {
|
|
759
|
-
return !this._isValid && this.isChangedSince(0);
|
|
760
|
-
}
|
|
761
|
-
/**
|
|
762
|
-
* Reset static error messages on attribute
|
|
763
|
-
*/
|
|
764
|
-
|
|
765
|
-
}, {
|
|
766
|
-
key: "resetErrors",
|
|
767
|
-
value: function resetErrors() {
|
|
768
|
-
this._errorCollection = new ErrorCollection("attribute");
|
|
769
|
-
}
|
|
770
|
-
/**
|
|
771
|
-
* Registers an error that was received from a server response
|
|
772
|
-
*/
|
|
773
|
-
|
|
774
|
-
}, {
|
|
775
|
-
key: "addServerError",
|
|
776
|
-
value: function addServerError(error) {
|
|
777
|
-
this._errorCollection.addServerError(error.id, error.message, error.properties);
|
|
778
|
-
}
|
|
779
|
-
/**
|
|
780
|
-
*/
|
|
781
365
|
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
366
|
+
getInputValue() {
|
|
367
|
+
const inputvalue = this._inputvalue;
|
|
368
|
+
return inputvalue ? inputvalue.toString() : "";
|
|
369
|
+
}
|
|
370
|
+
/**
|
|
371
|
+
* Returns the value as entered by the user. This can differ from the internal iso value that is stored
|
|
372
|
+
*/
|
|
789
373
|
|
|
790
|
-
}, {
|
|
791
|
-
key: "hasServerErrors",
|
|
792
|
-
value: function hasServerErrors() {
|
|
793
|
-
return this.errorCollection.serverErrors.length > 0;
|
|
794
|
-
}
|
|
795
|
-
/**
|
|
796
|
-
*/
|
|
797
374
|
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
}, {
|
|
808
|
-
key: "addMissingError",
|
|
809
|
-
value: function addMissingError() {
|
|
810
|
-
this._errorCollection.addServerError("Constraint.Missing");
|
|
811
|
-
}
|
|
812
|
-
/**
|
|
813
|
-
*/
|
|
375
|
+
get inputvalue() {
|
|
376
|
+
return this.getInputValue();
|
|
377
|
+
}
|
|
378
|
+
/**
|
|
379
|
+
* Value that is used when retrieving an error collection of this attribute
|
|
380
|
+
* Mostly this is the input value, but sometimes a different value is needed,
|
|
381
|
+
* for example iban and postcode need to validate length without spaces
|
|
382
|
+
*/
|
|
814
383
|
|
|
815
|
-
}, {
|
|
816
|
-
key: "removeMissingError",
|
|
817
|
-
value: function removeMissingError() {
|
|
818
|
-
this.removeServerError("Constraint.Missing");
|
|
819
|
-
}
|
|
820
|
-
/**
|
|
821
|
-
*/
|
|
822
384
|
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
*/
|
|
385
|
+
get validateValue() {
|
|
386
|
+
return this.inputvalue;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Sets the input value to the value entered by the user
|
|
390
|
+
*/
|
|
830
391
|
|
|
831
|
-
}, {
|
|
832
|
-
key: "formatParameters",
|
|
833
|
-
value: function formatParameters(parameters) {
|
|
834
|
-
var _this2 = this;
|
|
835
392
|
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
393
|
+
set inputvalue(value) {
|
|
394
|
+
this._inputvalue = value;
|
|
395
|
+
this.value = value;
|
|
396
|
+
this.validate(value);
|
|
397
|
+
}
|
|
398
|
+
/**
|
|
399
|
+
*/
|
|
839
400
|
|
|
840
|
-
var params = {};
|
|
841
401
|
|
|
842
|
-
|
|
843
|
-
|
|
402
|
+
hasValue() {
|
|
403
|
+
return this._value != null && this._value !== "";
|
|
404
|
+
}
|
|
405
|
+
/**
|
|
406
|
+
* Getting the value of the attribute
|
|
407
|
+
*/
|
|
408
|
+
|
|
844
409
|
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
410
|
+
getValue() {
|
|
411
|
+
return this.hasValue() ? this._value : null;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* Getting data ready to be send to the modular ui
|
|
415
|
+
* Returns null when the attribute should not be send to the server
|
|
416
|
+
*/
|
|
851
417
|
|
|
852
|
-
return params;
|
|
853
|
-
}
|
|
854
|
-
/**
|
|
855
|
-
*/
|
|
856
418
|
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
return true;
|
|
419
|
+
getFormData() {
|
|
420
|
+
if (this.inError()) {
|
|
421
|
+
return null;
|
|
861
422
|
}
|
|
862
|
-
/**
|
|
863
|
-
*/
|
|
864
|
-
|
|
865
|
-
}, {
|
|
866
|
-
key: "updateValidations",
|
|
867
|
-
value: function updateValidations(errors) {
|
|
868
|
-
var _this3 = this;
|
|
869
|
-
|
|
870
|
-
if (errors.some(function (error) {
|
|
871
|
-
return error.id === "Constraint.Mandatory";
|
|
872
|
-
}) || this.layouthint.has(MANDATORY)) {
|
|
873
|
-
this.mandatory = true;
|
|
874
|
-
} else if (!this.hasValue()) {
|
|
875
|
-
this.mandatory = false;
|
|
876
|
-
}
|
|
877
423
|
|
|
878
|
-
|
|
879
|
-
this.
|
|
424
|
+
return {
|
|
425
|
+
[this.name]: this.value
|
|
426
|
+
};
|
|
427
|
+
}
|
|
428
|
+
/**
|
|
429
|
+
*/
|
|
880
430
|
|
|
881
|
-
_filterInstanceProperty(errors).call(errors, function (error) {
|
|
882
|
-
return error.id !== "Constraint.Mandatory" || !_this3.hasValue();
|
|
883
|
-
}).forEach(function (error) {
|
|
884
|
-
if (_this3.hasValue()) {
|
|
885
|
-
_this3._errorCollection.addServerError(error.id, error.message, _this3.formatParameters(error.properties));
|
|
886
|
-
} else {
|
|
887
|
-
_this3.addServerConstraint(error.id, error.message, _this3.formatParameters(error.properties));
|
|
888
|
-
}
|
|
889
|
-
});
|
|
890
|
-
}
|
|
891
|
-
/**
|
|
892
|
-
* Set last modification to current timestamp
|
|
893
|
-
*/
|
|
894
|
-
|
|
895
|
-
}, {
|
|
896
|
-
key: "updateLastModification",
|
|
897
|
-
value: function updateLastModification() {
|
|
898
|
-
this._lastModification = Date.now();
|
|
899
|
-
}
|
|
900
|
-
/**
|
|
901
|
-
* Inidicates if attribute is changed since a given timestamp (Date.now)
|
|
902
|
-
*/
|
|
903
|
-
|
|
904
|
-
}, {
|
|
905
|
-
key: "isChangedSince",
|
|
906
|
-
value: function isChangedSince(timestamp) {
|
|
907
|
-
return this._lastModification > timestamp;
|
|
908
|
-
}
|
|
909
|
-
/**
|
|
910
|
-
* Abstract reset method which should be implemented on each attribute that has this attribute as a base class.
|
|
911
|
-
*
|
|
912
|
-
* @abstract
|
|
913
|
-
*/
|
|
914
|
-
|
|
915
|
-
}, {
|
|
916
|
-
key: "reset",
|
|
917
|
-
value: function reset() {
|
|
918
|
-
throw new UnsupportedOperationException("Reset method not implemented for ".concat(this.type));
|
|
919
|
-
}
|
|
920
|
-
/**
|
|
921
|
-
* Merge old attribute with the attribute from the server.
|
|
922
|
-
* Readonly attributes always need to show the value from the server
|
|
923
|
-
*/
|
|
924
|
-
|
|
925
|
-
}, {
|
|
926
|
-
key: "mergeAttribute",
|
|
927
|
-
value: function mergeAttribute(oldAttribute) {
|
|
928
|
-
this.concept = oldAttribute.concept;
|
|
929
|
-
|
|
930
|
-
if (!oldAttribute.readonly && oldAttribute.isValid && oldAttribute.inputvalue !== null) {
|
|
931
|
-
this.update(oldAttribute.inputvalue);
|
|
932
|
-
}
|
|
933
|
-
}
|
|
934
|
-
/**
|
|
935
|
-
* Abstract update method which should be implemented on each attribute that has this attribute as a base class.
|
|
936
|
-
* @abstract
|
|
937
|
-
*/
|
|
938
|
-
// eslint-disable-next-line no-unused-vars
|
|
939
|
-
|
|
940
|
-
}, {
|
|
941
|
-
key: "update",
|
|
942
|
-
value: function update(value, changedAttribute) {
|
|
943
|
-
throw new UnsupportedOperationException("Update method not implemented for ".concat(this.type));
|
|
944
|
-
}
|
|
945
|
-
/**
|
|
946
|
-
* Indicate if attribute is editable
|
|
947
|
-
*/
|
|
948
|
-
|
|
949
|
-
}, {
|
|
950
|
-
key: "isEditable",
|
|
951
|
-
get:
|
|
952
|
-
/**
|
|
953
|
-
* Retrieve if attribute is editable
|
|
954
|
-
*/
|
|
955
|
-
function get() {
|
|
956
|
-
return this._isEditable;
|
|
957
|
-
}
|
|
958
|
-
/**
|
|
959
|
-
* Indicates if the attribute is visible
|
|
960
|
-
*/
|
|
961
|
-
,
|
|
962
|
-
set: function set(isEditable) {
|
|
963
|
-
this._isEditable = isEditable;
|
|
964
|
-
}
|
|
965
|
-
}, {
|
|
966
|
-
key: "isVisible",
|
|
967
|
-
get: function get() {
|
|
968
|
-
return !this._isHidden;
|
|
969
|
-
}
|
|
970
|
-
/**
|
|
971
|
-
*/
|
|
972
431
|
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
/**
|
|
979
|
-
*/
|
|
980
|
-
,
|
|
981
|
-
set: function set(isHidden) {
|
|
982
|
-
this._isHidden = isHidden;
|
|
983
|
-
}
|
|
984
|
-
/**
|
|
985
|
-
* Explicitly toggle visibility of this attribute
|
|
986
|
-
*/
|
|
987
|
-
|
|
988
|
-
}, {
|
|
989
|
-
key: "show",
|
|
990
|
-
value: function show() {
|
|
991
|
-
this.isHidden = false;
|
|
992
|
-
}
|
|
993
|
-
/**
|
|
994
|
-
*/
|
|
432
|
+
get formdata() {
|
|
433
|
+
return this.getFormData();
|
|
434
|
+
}
|
|
435
|
+
/**
|
|
436
|
+
*/
|
|
995
437
|
|
|
996
|
-
}, {
|
|
997
|
-
key: "hide",
|
|
998
|
-
value: function hide() {
|
|
999
|
-
this.isHidden = true;
|
|
1000
|
-
}
|
|
1001
|
-
/**
|
|
1002
|
-
*/
|
|
1003
438
|
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
}, {
|
|
1014
|
-
key: "readonlyWidth",
|
|
1015
|
-
get: function get() {
|
|
1016
|
-
return ATTRIBUTE_WIDTH.MEDIUM;
|
|
1017
|
-
}
|
|
1018
|
-
/**
|
|
1019
|
-
*/
|
|
439
|
+
getEmptyFormData() {
|
|
440
|
+
return {
|
|
441
|
+
[this.name]: null
|
|
442
|
+
};
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* Getting the value of the attribute
|
|
446
|
+
*/
|
|
1020
447
|
|
|
1021
|
-
}, {
|
|
1022
|
-
key: "layoutHintRules",
|
|
1023
|
-
get: function get() {
|
|
1024
|
-
return this._layoutHintRules;
|
|
1025
|
-
}
|
|
1026
|
-
/**
|
|
1027
|
-
*/
|
|
1028
|
-
,
|
|
1029
|
-
set: function set(rules) {
|
|
1030
|
-
this._layoutHintRules = rules;
|
|
1031
|
-
}
|
|
1032
|
-
/**
|
|
1033
|
-
*/
|
|
1034
|
-
|
|
1035
|
-
}, {
|
|
1036
|
-
key: "processLayoutHintRules",
|
|
1037
|
-
value: function processLayoutHintRules(attributes) {
|
|
1038
|
-
if (this._layoutHintRules) {
|
|
1039
|
-
this.layoutHintRules.process(this, attributes);
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
/**
|
|
1043
|
-
* Indicates if content comes from the data service
|
|
1044
|
-
*/
|
|
1045
|
-
|
|
1046
|
-
}, {
|
|
1047
|
-
key: "hasContentFromData",
|
|
1048
|
-
get: function get() {
|
|
1049
|
-
return hasAllContentInData();
|
|
1050
|
-
}
|
|
1051
|
-
/**
|
|
1052
|
-
*/
|
|
1053
448
|
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
key: "isApplicableModel",
|
|
1061
|
-
value: function isApplicableModel(contributions) {
|
|
1062
|
-
if (!isPlainObject(contributions)) {
|
|
1063
|
-
throw new IllegalArgumentException("Given argument for isApplicableModel is not a contributions object");
|
|
1064
|
-
}
|
|
449
|
+
get value() {
|
|
450
|
+
return this.getValue();
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* Setting a value in the element
|
|
454
|
+
*/
|
|
1065
455
|
|
|
1066
|
-
return false;
|
|
1067
|
-
}
|
|
1068
|
-
}]);
|
|
1069
456
|
|
|
1070
|
-
|
|
1071
|
-
|
|
457
|
+
set value(value) {
|
|
458
|
+
this.updateLastModification();
|
|
459
|
+
this._value = value;
|
|
460
|
+
}
|
|
461
|
+
/**
|
|
462
|
+
*/
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
formatValue(value) {
|
|
466
|
+
return value;
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* Getting the readonly value, iso value converted for human reading
|
|
470
|
+
*/
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
get readonlyvalue() {
|
|
474
|
+
return this.value ? this.value.toString() : "";
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* Getting mandatory status of attribute
|
|
478
|
+
*/
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
get mandatory() {
|
|
482
|
+
return this._mandatory || false;
|
|
483
|
+
}
|
|
484
|
+
/**
|
|
485
|
+
*/
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
get configuredMandatory() {
|
|
489
|
+
return this.layouthint.has(MANDATORY) || this.contributions.mandatory;
|
|
490
|
+
}
|
|
491
|
+
/**
|
|
492
|
+
* Set mandatory status of attribute
|
|
493
|
+
*/
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
set mandatory(mandatory) {
|
|
497
|
+
if (mandatory !== this._mandatory) {
|
|
498
|
+
this._validatedValue = null;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
this._mandatory = mandatory;
|
|
502
|
+
}
|
|
503
|
+
/**
|
|
504
|
+
*/
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
get readonly() {
|
|
508
|
+
return this._readonly || this.contributions.readonly === true || this.data.static === true || this.isResult === true;
|
|
509
|
+
}
|
|
510
|
+
/**
|
|
511
|
+
*/
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
set readonly(readonly) {
|
|
515
|
+
this._readonly = readonly;
|
|
516
|
+
}
|
|
517
|
+
/**
|
|
518
|
+
*/
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
get disabled() {
|
|
522
|
+
return this._disabled;
|
|
523
|
+
}
|
|
524
|
+
/**
|
|
525
|
+
*/
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
set disabled(disabled) {
|
|
529
|
+
this._disabled = disabled;
|
|
530
|
+
}
|
|
531
|
+
/**
|
|
532
|
+
*/
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
get isResult() {
|
|
536
|
+
return this._isResult;
|
|
537
|
+
}
|
|
538
|
+
/**
|
|
539
|
+
*/
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
set isResult(isResult) {
|
|
543
|
+
this._isResult = isResult;
|
|
544
|
+
}
|
|
545
|
+
/**
|
|
546
|
+
* Getting the display and input format of a attribute
|
|
547
|
+
*/
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
get format() {
|
|
551
|
+
return this.getContribution("format");
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
*/
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
get formatLabel() {
|
|
558
|
+
return this.format || "";
|
|
559
|
+
}
|
|
560
|
+
/**
|
|
561
|
+
* Get minimum string length
|
|
562
|
+
*/
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
get minLength() {
|
|
566
|
+
return this.getContribution("minLength");
|
|
567
|
+
}
|
|
568
|
+
/**
|
|
569
|
+
* Get maximum string length
|
|
570
|
+
*/
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
get maxLength() {
|
|
574
|
+
return this.getContribution("maxLength");
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
*/
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
get operator() {
|
|
581
|
+
return "";
|
|
582
|
+
}
|
|
583
|
+
/**
|
|
584
|
+
* Get assistant message
|
|
585
|
+
*/
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
get assistantMessage() {
|
|
589
|
+
return this.getContribution("assistant");
|
|
590
|
+
}
|
|
591
|
+
/**
|
|
592
|
+
* Get valid status
|
|
593
|
+
*/
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
get isValid() {
|
|
597
|
+
return this.validate(this.validateValue);
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
* Retrieve applicable constraint for this attribute
|
|
601
|
+
*/
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
get constraintCollection() {
|
|
605
|
+
const constraints = new ConstraintCollection();
|
|
606
|
+
constraints.add(this._serverConstraints); // Mandatory constraint
|
|
607
|
+
|
|
608
|
+
if (this.mandatory) {
|
|
609
|
+
constraints.add(new MandatoryConstraint());
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
if (this.minLength || this.maxLength) {
|
|
613
|
+
constraints.add(new StringLengthConstraint(this.minLength, this.maxLength));
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
constraints.add(this.addConstraints());
|
|
617
|
+
return constraints;
|
|
618
|
+
}
|
|
619
|
+
/**
|
|
620
|
+
* Template method for class extending this model to add extra constraints
|
|
621
|
+
* @abstract
|
|
622
|
+
*/
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
addConstraints() {
|
|
626
|
+
return new ConstraintCollection();
|
|
627
|
+
}
|
|
628
|
+
/**
|
|
629
|
+
* Used to programmatically overwrite the setting USE_CLIENTSIDE_VALIDATION
|
|
630
|
+
*/
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
setUseClientsideValidation(enabled) {
|
|
634
|
+
this._useClientsideValidation = enabled;
|
|
635
|
+
}
|
|
636
|
+
/**
|
|
637
|
+
* Indicates if client side validation is enabled
|
|
638
|
+
* @returns {boolean}
|
|
639
|
+
*/
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
useClientsideValidation() {
|
|
643
|
+
var _this$_useClientsideV;
|
|
644
|
+
|
|
645
|
+
return (_this$_useClientsideV = this._useClientsideValidation) !== null && _this$_useClientsideV !== void 0 ? _this$_useClientsideV : true;
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* Validate input on client side constraint
|
|
649
|
+
*/
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
validate(value) {
|
|
653
|
+
// when client side validation is disabled, this attribute is always valid
|
|
654
|
+
if (!this.useClientsideValidation()) {
|
|
655
|
+
return true;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
if (this.isOptionalAndEmpty(value)) {
|
|
659
|
+
this._isValid = true;
|
|
660
|
+
} else if (this._validatedValue !== value) {
|
|
661
|
+
this._isValid = this.constraintCollection.validate(value);
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
this._validatedValue = value;
|
|
665
|
+
return this._isValid;
|
|
666
|
+
}
|
|
667
|
+
/**
|
|
668
|
+
* Indicates if attribute is optional and empty
|
|
669
|
+
*/
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
isOptionalAndEmpty(value) {
|
|
673
|
+
if (value === undefined) {
|
|
674
|
+
throw new IllegalArgumentException("isOptionalAndEmpty method needs value argument");
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
return !this.mandatory && value === "";
|
|
678
|
+
}
|
|
679
|
+
/**
|
|
680
|
+
* Retrieve error messages of this attribute
|
|
681
|
+
*/
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
get errorCollection() {
|
|
685
|
+
const collection = new ErrorCollection("attribute", this._errorCollection);
|
|
686
|
+
collection.addConstraints(this.constraintCollection.invalidConstraints(this.validateValue));
|
|
687
|
+
return collection;
|
|
688
|
+
}
|
|
689
|
+
/**
|
|
690
|
+
* Check if attribute is in error
|
|
691
|
+
*/
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
inError() {
|
|
695
|
+
return !this._isValid && this.isChangedSince(0);
|
|
696
|
+
}
|
|
697
|
+
/**
|
|
698
|
+
* Reset static error messages on attribute
|
|
699
|
+
*/
|
|
700
|
+
|
|
701
|
+
|
|
702
|
+
resetErrors() {
|
|
703
|
+
this._errorCollection = new ErrorCollection("attribute");
|
|
704
|
+
}
|
|
705
|
+
/**
|
|
706
|
+
* Registers an error that was received from a server response
|
|
707
|
+
*/
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
addServerError(error) {
|
|
711
|
+
this._errorCollection.addServerError(error.id, error.message, error.properties);
|
|
712
|
+
}
|
|
713
|
+
/**
|
|
714
|
+
*/
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
removeServerError(id) {
|
|
718
|
+
this._errorCollection.removeServerError(id);
|
|
719
|
+
}
|
|
720
|
+
/**
|
|
721
|
+
*/
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
hasServerErrors() {
|
|
725
|
+
return this.errorCollection.serverErrors.length > 0;
|
|
726
|
+
}
|
|
727
|
+
/**
|
|
728
|
+
*/
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
hasErrors() {
|
|
732
|
+
return this.errorCollection.hasItems;
|
|
733
|
+
}
|
|
734
|
+
/**
|
|
735
|
+
* Registers a missing error that was received from the server
|
|
736
|
+
*/
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
addMissingError() {
|
|
740
|
+
this._errorCollection.addServerError("Constraint.Missing");
|
|
741
|
+
}
|
|
742
|
+
/**
|
|
743
|
+
*/
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
removeMissingError() {
|
|
747
|
+
this.removeServerError("Constraint.Missing");
|
|
748
|
+
}
|
|
749
|
+
/**
|
|
750
|
+
*/
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
addServerConstraint(id, defaultMessage, parameters) {
|
|
754
|
+
this._serverConstraints.addConstraint(id, null, defaultMessage, parameters, this.useClientsideValidation());
|
|
755
|
+
}
|
|
756
|
+
/**
|
|
757
|
+
*/
|
|
758
|
+
|
|
759
|
+
|
|
760
|
+
formatParameters(parameters) {
|
|
761
|
+
if (parameters == null) {
|
|
762
|
+
return {};
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
const params = {};
|
|
766
|
+
|
|
767
|
+
_Object$keys(parameters).forEach(paramKey => {
|
|
768
|
+
const paramValue = parameters[paramKey];
|
|
769
|
+
|
|
770
|
+
if (_endsWithInstanceProperty(paramKey).call(paramKey, "-number") || _endsWithInstanceProperty(paramKey).call(paramKey, "-date")) {
|
|
771
|
+
params[paramKey] = this.formatValue(paramValue);
|
|
772
|
+
} else {
|
|
773
|
+
params[paramKey] = paramValue;
|
|
774
|
+
}
|
|
775
|
+
});
|
|
776
|
+
|
|
777
|
+
return params;
|
|
778
|
+
}
|
|
779
|
+
/**
|
|
780
|
+
*/
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
get hasDynamicValidationData() {
|
|
784
|
+
return true;
|
|
785
|
+
}
|
|
786
|
+
/**
|
|
787
|
+
*/
|
|
788
|
+
|
|
789
|
+
|
|
790
|
+
updateValidations(errors) {
|
|
791
|
+
if (errors.some(error => error.id === "Constraint.Mandatory") || this.layouthint.has(MANDATORY)) {
|
|
792
|
+
this.mandatory = true;
|
|
793
|
+
} else if (!this.hasValue()) {
|
|
794
|
+
this.mandatory = false;
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
this._serverConstraints = new ConstraintCollection();
|
|
798
|
+
this.resetErrors();
|
|
799
|
+
|
|
800
|
+
_filterInstanceProperty(errors).call(errors, error => error.id !== "Constraint.Mandatory" || !this.hasValue()).forEach(error => {
|
|
801
|
+
if (this.hasValue()) {
|
|
802
|
+
this._errorCollection.addServerError(error.id, error.message, this.formatParameters(error.properties));
|
|
803
|
+
} else {
|
|
804
|
+
this.addServerConstraint(error.id, error.message, this.formatParameters(error.properties));
|
|
805
|
+
}
|
|
806
|
+
});
|
|
807
|
+
}
|
|
808
|
+
/**
|
|
809
|
+
* Set last modification to current timestamp
|
|
810
|
+
*/
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
updateLastModification() {
|
|
814
|
+
this._lastModification = Date.now();
|
|
815
|
+
}
|
|
816
|
+
/**
|
|
817
|
+
* Inidicates if attribute is changed since a given timestamp (Date.now)
|
|
818
|
+
*/
|
|
819
|
+
|
|
820
|
+
|
|
821
|
+
isChangedSince(timestamp) {
|
|
822
|
+
return this._lastModification > timestamp;
|
|
823
|
+
}
|
|
824
|
+
/**
|
|
825
|
+
* Abstract reset method which should be implemented on each attribute that has this attribute as a base class.
|
|
826
|
+
*
|
|
827
|
+
* @abstract
|
|
828
|
+
*/
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
reset() {
|
|
832
|
+
throw new UnsupportedOperationException("Reset method not implemented for ".concat(this.type));
|
|
833
|
+
}
|
|
834
|
+
/**
|
|
835
|
+
* Merge old attribute with the attribute from the server.
|
|
836
|
+
* Readonly attributes always need to show the value from the server
|
|
837
|
+
*/
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
mergeAttribute(oldAttribute) {
|
|
841
|
+
this.concept = oldAttribute.concept;
|
|
842
|
+
|
|
843
|
+
if (!oldAttribute.readonly && oldAttribute.isValid && oldAttribute.inputvalue !== null) {
|
|
844
|
+
this.update(oldAttribute.inputvalue);
|
|
845
|
+
}
|
|
846
|
+
}
|
|
847
|
+
/**
|
|
848
|
+
* Abstract update method which should be implemented on each attribute that has this attribute as a base class.
|
|
849
|
+
* @abstract
|
|
850
|
+
*/
|
|
851
|
+
// eslint-disable-next-line no-unused-vars
|
|
852
|
+
|
|
853
|
+
|
|
854
|
+
update(value, changedAttribute) {
|
|
855
|
+
throw new UnsupportedOperationException("Update method not implemented for ".concat(this.type));
|
|
856
|
+
}
|
|
857
|
+
/**
|
|
858
|
+
* Indicate if attribute is editable
|
|
859
|
+
*/
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
set isEditable(isEditable) {
|
|
863
|
+
this._isEditable = isEditable;
|
|
864
|
+
}
|
|
865
|
+
/**
|
|
866
|
+
* Retrieve if attribute is editable
|
|
867
|
+
*/
|
|
868
|
+
|
|
869
|
+
|
|
870
|
+
get isEditable() {
|
|
871
|
+
return this._isEditable;
|
|
872
|
+
}
|
|
873
|
+
/**
|
|
874
|
+
* Indicates if the attribute is visible
|
|
875
|
+
*/
|
|
876
|
+
|
|
877
|
+
|
|
878
|
+
get isVisible() {
|
|
879
|
+
return !this._isHidden;
|
|
880
|
+
}
|
|
881
|
+
/**
|
|
882
|
+
*/
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
get isHidden() {
|
|
886
|
+
return this._isHidden;
|
|
887
|
+
}
|
|
888
|
+
/**
|
|
889
|
+
*/
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
set isHidden(isHidden) {
|
|
893
|
+
this._isHidden = isHidden;
|
|
894
|
+
}
|
|
895
|
+
/**
|
|
896
|
+
* Explicitly toggle visibility of this attribute
|
|
897
|
+
*/
|
|
898
|
+
|
|
899
|
+
|
|
900
|
+
show() {
|
|
901
|
+
this.isHidden = false;
|
|
902
|
+
}
|
|
903
|
+
/**
|
|
904
|
+
*/
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
hide() {
|
|
908
|
+
this.isHidden = true;
|
|
909
|
+
}
|
|
910
|
+
/**
|
|
911
|
+
*/
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
equals(otherAttribute) {
|
|
915
|
+
return this.key === otherAttribute.key && this.parentKey === otherAttribute.parentKey;
|
|
916
|
+
}
|
|
917
|
+
/**
|
|
918
|
+
* Readonly attribute width indicates the proposed width of this attribute
|
|
919
|
+
*/
|
|
920
|
+
|
|
921
|
+
|
|
922
|
+
get readonlyWidth() {
|
|
923
|
+
return ATTRIBUTE_WIDTH.MEDIUM;
|
|
924
|
+
}
|
|
925
|
+
/**
|
|
926
|
+
*/
|
|
927
|
+
|
|
928
|
+
|
|
929
|
+
get layoutHintRules() {
|
|
930
|
+
return this._layoutHintRules;
|
|
931
|
+
}
|
|
932
|
+
/**
|
|
933
|
+
*/
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
set layoutHintRules(rules) {
|
|
937
|
+
this._layoutHintRules = rules;
|
|
938
|
+
}
|
|
939
|
+
/**
|
|
940
|
+
*/
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
processLayoutHintRules(attributes) {
|
|
944
|
+
if (this._layoutHintRules) {
|
|
945
|
+
this.layoutHintRules.process(this, attributes);
|
|
946
|
+
}
|
|
947
|
+
}
|
|
948
|
+
/**
|
|
949
|
+
* Indicates if content comes from the data service
|
|
950
|
+
*/
|
|
951
|
+
|
|
952
|
+
|
|
953
|
+
get hasContentFromData() {
|
|
954
|
+
return hasAllContentInData();
|
|
955
|
+
}
|
|
956
|
+
/**
|
|
957
|
+
*/
|
|
958
|
+
|
|
959
|
+
|
|
960
|
+
get content() {
|
|
961
|
+
return new AttributeContent(this.data.content);
|
|
962
|
+
}
|
|
1072
963
|
|
|
1073
|
-
|
|
964
|
+
}
|
|
1074
965
|
//# sourceMappingURL=AttributeModel.js.map
|