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