@beinformed/ui 1.59.22 → 1.60.0

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 (1572) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/lib/builder/index.js +18 -0
  3. package/lib/builder/index.js.map +1 -0
  4. package/lib/builder/mergeLayoutHintConfigurations.js +60 -0
  5. package/lib/builder/mergeLayoutHintConfigurations.js.map +1 -0
  6. package/lib/constants/Constants.js +189 -0
  7. package/lib/constants/Constants.js.map +1 -0
  8. package/lib/constants/LayoutHintConfig.js +173 -0
  9. package/lib/constants/LayoutHintConfig.js.map +1 -0
  10. package/lib/constants/LayoutHints.js +135 -0
  11. package/lib/constants/LayoutHints.js.map +1 -0
  12. package/lib/constants/Settings.js +219 -0
  13. package/lib/constants/Settings.js.map +1 -0
  14. package/lib/constants/index.js +40 -0
  15. package/lib/constants/index.js.map +1 -0
  16. package/lib/exceptions/ConfigurationException.js +17 -0
  17. package/lib/exceptions/ConfigurationException.js.map +1 -0
  18. package/lib/exceptions/FetchException.js +72 -0
  19. package/lib/exceptions/FetchException.js.map +1 -0
  20. package/lib/exceptions/IllegalArgumentException.js +17 -0
  21. package/lib/exceptions/IllegalArgumentException.js.map +1 -0
  22. package/lib/exceptions/IllegalReturnException.js +16 -0
  23. package/lib/exceptions/IllegalReturnException.js.map +1 -0
  24. package/lib/exceptions/IllegalStateException.js +17 -0
  25. package/lib/exceptions/IllegalStateException.js.map +1 -0
  26. package/lib/exceptions/JsonParseException.js +17 -0
  27. package/lib/exceptions/JsonParseException.js.map +1 -0
  28. package/lib/exceptions/MissingPropertyException.js +17 -0
  29. package/lib/exceptions/MissingPropertyException.js.map +1 -0
  30. package/lib/exceptions/NetworkException.js +23 -0
  31. package/lib/exceptions/NetworkException.js.map +1 -0
  32. package/lib/exceptions/NotAllowedUriException.js +17 -0
  33. package/lib/exceptions/NotAllowedUriException.js.map +1 -0
  34. package/lib/exceptions/NotFoundException.js +26 -0
  35. package/lib/exceptions/NotFoundException.js.map +1 -0
  36. package/lib/exceptions/ServerRequestException.js +17 -0
  37. package/lib/exceptions/ServerRequestException.js.map +1 -0
  38. package/lib/exceptions/ThemePropertyException.js +17 -0
  39. package/lib/exceptions/ThemePropertyException.js.map +1 -0
  40. package/lib/exceptions/TimeoutException.js +17 -0
  41. package/lib/exceptions/TimeoutException.js.map +1 -0
  42. package/lib/exceptions/UnauthorizedException.js +25 -0
  43. package/lib/exceptions/UnauthorizedException.js.map +1 -0
  44. package/lib/exceptions/UnsupportedOperationException.js +17 -0
  45. package/lib/exceptions/UnsupportedOperationException.js.map +1 -0
  46. package/lib/exceptions/index.js +112 -0
  47. package/lib/exceptions/index.js.map +1 -0
  48. package/lib/hooks/index.js +183 -0
  49. package/lib/hooks/index.js.map +1 -0
  50. package/lib/hooks/useAllFormsOnModel.js +81 -0
  51. package/lib/hooks/useAllFormsOnModel.js.map +1 -0
  52. package/lib/hooks/useAuthentication.js +66 -0
  53. package/lib/hooks/useAuthentication.js.map +1 -0
  54. package/lib/hooks/useContent.js +49 -0
  55. package/lib/hooks/useContent.js.map +1 -0
  56. package/lib/hooks/useDeepCompareEffect.js +35 -0
  57. package/lib/hooks/useDeepCompareEffect.js.map +1 -0
  58. package/lib/hooks/useForm.js +98 -0
  59. package/lib/hooks/useForm.js.map +1 -0
  60. package/lib/hooks/useI18n.js +42 -0
  61. package/lib/hooks/useI18n.js.map +1 -0
  62. package/lib/hooks/useModal.js +43 -0
  63. package/lib/hooks/useModal.js.map +1 -0
  64. package/lib/hooks/useModelCatalog.js +179 -0
  65. package/lib/hooks/useModelCatalog.js.map +1 -0
  66. package/lib/hooks/useModels.js +45 -0
  67. package/lib/hooks/useModels.js.map +1 -0
  68. package/lib/hooks/useModularUI.js +69 -0
  69. package/lib/hooks/useModularUI.js.map +1 -0
  70. package/lib/hooks/useModularUIBasic.js +81 -0
  71. package/lib/hooks/useModularUIBasic.js.map +1 -0
  72. package/lib/hooks/useModularUIModel.js +128 -0
  73. package/lib/hooks/useModularUIModel.js.map +1 -0
  74. package/lib/hooks/useModularUIRequest.js +25 -0
  75. package/lib/hooks/useModularUIRequest.js.map +1 -0
  76. package/lib/hooks/useNotification.js +39 -0
  77. package/lib/hooks/useNotification.js.map +1 -0
  78. package/lib/hooks/usePreference.js +23 -0
  79. package/lib/hooks/usePreference.js.map +1 -0
  80. package/lib/hooks/useProgressIndicator.js +23 -0
  81. package/lib/hooks/useProgressIndicator.js.map +1 -0
  82. package/lib/hooks/useRouter.js +42 -0
  83. package/lib/hooks/useRouter.js.map +1 -0
  84. package/lib/i18n/Locale.js +128 -0
  85. package/lib/i18n/Locale.js.map +1 -0
  86. package/lib/i18n/Locales.js +140 -0
  87. package/lib/i18n/Locales.js.map +1 -0
  88. package/lib/i18n/Message.js +50 -0
  89. package/lib/i18n/Message.js.map +1 -0
  90. package/lib/i18n/index.js +57 -0
  91. package/lib/i18n/index.js.map +1 -0
  92. package/lib/i18n/languages.js +212 -0
  93. package/lib/i18n/languages.js.map +1 -0
  94. package/lib/i18n/translations/beinformed_error_messages_en.nl.js +104 -0
  95. package/lib/i18n/translations/beinformed_error_messages_en.nl.js.map +1 -0
  96. package/lib/i18n/translations/beinformed_error_messages_nl.nl.js +104 -0
  97. package/lib/i18n/translations/beinformed_error_messages_nl.nl.js.map +1 -0
  98. package/lib/i18n/types.js +2 -0
  99. package/lib/i18n/types.js.map +1 -0
  100. package/lib/i18n/withMessage.js +27 -0
  101. package/lib/i18n/withMessage.js.map +1 -0
  102. package/lib/index.js +73 -0
  103. package/lib/index.js.map +1 -0
  104. package/lib/models/actions/ActionCollection.js +90 -0
  105. package/lib/models/actions/ActionCollection.js.map +1 -0
  106. package/lib/models/actions/ActionModel.js +194 -0
  107. package/lib/models/actions/ActionModel.js.map +1 -0
  108. package/lib/models/application/ApplicationModel.js +133 -0
  109. package/lib/models/application/ApplicationModel.js.map +1 -0
  110. package/lib/models/attributes/AttributeCollection.js +282 -0
  111. package/lib/models/attributes/AttributeCollection.js.map +1 -0
  112. package/lib/models/attributes/AttributeContent.js +203 -0
  113. package/lib/models/attributes/AttributeContent.js.map +1 -0
  114. package/lib/models/attributes/AttributeDataHelper.js +267 -0
  115. package/lib/models/attributes/AttributeDataHelper.js.map +1 -0
  116. package/lib/models/attributes/AttributeModel.js +824 -0
  117. package/lib/models/attributes/AttributeModel.js.map +1 -0
  118. package/lib/models/attributes/AttributeSetModel.js +105 -0
  119. package/lib/models/attributes/AttributeSetModel.js.map +1 -0
  120. package/lib/models/attributes/BooleanAttributeModel.js +295 -0
  121. package/lib/models/attributes/BooleanAttributeModel.js.map +1 -0
  122. package/lib/models/attributes/CaptchaAttributeModel.js +60 -0
  123. package/lib/models/attributes/CaptchaAttributeModel.js.map +1 -0
  124. package/lib/models/attributes/ChoiceAttributeModel.js +411 -0
  125. package/lib/models/attributes/ChoiceAttributeModel.js.map +1 -0
  126. package/lib/models/attributes/ChoiceAttributeOptionCollection.js +300 -0
  127. package/lib/models/attributes/ChoiceAttributeOptionCollection.js.map +1 -0
  128. package/lib/models/attributes/ChoiceAttributeOptionModel.js +342 -0
  129. package/lib/models/attributes/ChoiceAttributeOptionModel.js.map +1 -0
  130. package/lib/models/attributes/CompositeAttributeChildCollection.js +189 -0
  131. package/lib/models/attributes/CompositeAttributeChildCollection.js.map +1 -0
  132. package/lib/models/attributes/CompositeAttributeModel.js +380 -0
  133. package/lib/models/attributes/CompositeAttributeModel.js.map +1 -0
  134. package/lib/models/attributes/DatetimeAttributeModel.js +465 -0
  135. package/lib/models/attributes/DatetimeAttributeModel.js.map +1 -0
  136. package/lib/models/attributes/HelptextAttributeModel.js +55 -0
  137. package/lib/models/attributes/HelptextAttributeModel.js.map +1 -0
  138. package/lib/models/attributes/LabelAttributeModel.js +41 -0
  139. package/lib/models/attributes/LabelAttributeModel.js.map +1 -0
  140. package/lib/models/attributes/MemoAttributeModel.js +49 -0
  141. package/lib/models/attributes/MemoAttributeModel.js.map +1 -0
  142. package/lib/models/attributes/MoneyAttributeModel.js +49 -0
  143. package/lib/models/attributes/MoneyAttributeModel.js.map +1 -0
  144. package/lib/models/attributes/NumberAttributeModel.js +201 -0
  145. package/lib/models/attributes/NumberAttributeModel.js.map +1 -0
  146. package/lib/models/attributes/PasswordAttributeModel.js +217 -0
  147. package/lib/models/attributes/PasswordAttributeModel.js.map +1 -0
  148. package/lib/models/attributes/StringAttributeModel.js +284 -0
  149. package/lib/models/attributes/StringAttributeModel.js.map +1 -0
  150. package/lib/models/attributes/UploadAttributeModel.js +223 -0
  151. package/lib/models/attributes/UploadAttributeModel.js.map +1 -0
  152. package/lib/models/attributes/XMLAttributeModel.js +53 -0
  153. package/lib/models/attributes/XMLAttributeModel.js.map +1 -0
  154. package/lib/models/attributes/_createAttribute.js +93 -0
  155. package/lib/models/attributes/_createAttribute.js.map +1 -0
  156. package/lib/models/attributes/input-constraints/BSNConstraint.js +72 -0
  157. package/lib/models/attributes/input-constraints/BSNConstraint.js.map +1 -0
  158. package/lib/models/attributes/input-constraints/ConstraintCollection.js +50 -0
  159. package/lib/models/attributes/input-constraints/ConstraintCollection.js.map +1 -0
  160. package/lib/models/attributes/input-constraints/ConstraintModel.js +74 -0
  161. package/lib/models/attributes/input-constraints/ConstraintModel.js.map +1 -0
  162. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js +205 -0
  163. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js.map +1 -0
  164. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +76 -0
  165. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +1 -0
  166. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +76 -0
  167. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +1 -0
  168. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js +122 -0
  169. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +1 -0
  170. package/lib/models/attributes/input-constraints/FileExtensionConstraint.js +66 -0
  171. package/lib/models/attributes/input-constraints/FileExtensionConstraint.js.map +1 -0
  172. package/lib/models/attributes/input-constraints/FileSizeConstraint.js +98 -0
  173. package/lib/models/attributes/input-constraints/FileSizeConstraint.js.map +1 -0
  174. package/lib/models/attributes/input-constraints/IBANConstraint.js +49 -0
  175. package/lib/models/attributes/input-constraints/IBANConstraint.js.map +1 -0
  176. package/lib/models/attributes/input-constraints/MandatoryConstraint.js +53 -0
  177. package/lib/models/attributes/input-constraints/MandatoryConstraint.js.map +1 -0
  178. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js +85 -0
  179. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +1 -0
  180. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js +177 -0
  181. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +1 -0
  182. package/lib/models/attributes/input-constraints/NumberFormatConstraint.js +132 -0
  183. package/lib/models/attributes/input-constraints/NumberFormatConstraint.js.map +1 -0
  184. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js +126 -0
  185. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js.map +1 -0
  186. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js +72 -0
  187. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +1 -0
  188. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +47 -0
  189. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +1 -0
  190. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +64 -0
  191. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +1 -0
  192. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +64 -0
  193. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +1 -0
  194. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +78 -0
  195. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +1 -0
  196. package/lib/models/attributes/input-constraints/RangeConstraint.js +143 -0
  197. package/lib/models/attributes/input-constraints/RangeConstraint.js.map +1 -0
  198. package/lib/models/attributes/input-constraints/RegexConstraint.js +67 -0
  199. package/lib/models/attributes/input-constraints/RegexConstraint.js.map +1 -0
  200. package/lib/models/attributes/input-constraints/StringLengthConstraint.js +178 -0
  201. package/lib/models/attributes/input-constraints/StringLengthConstraint.js.map +1 -0
  202. package/lib/models/attributes/input-constraints/XMLConstraint.js +62 -0
  203. package/lib/models/attributes/input-constraints/XMLConstraint.js.map +1 -0
  204. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js +66 -0
  205. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +1 -0
  206. package/lib/models/attributes/layouthint-rules/DependentAttribute.js +200 -0
  207. package/lib/models/attributes/layouthint-rules/DependentAttribute.js.map +1 -0
  208. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +88 -0
  209. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +1 -0
  210. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +51 -0
  211. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +1 -0
  212. package/lib/models/base/BaseCollection.js +186 -0
  213. package/lib/models/base/BaseCollection.js.map +1 -0
  214. package/lib/models/base/BaseModel.js +149 -0
  215. package/lib/models/base/BaseModel.js.map +1 -0
  216. package/lib/models/base/ResourceCollection.js +41 -0
  217. package/lib/models/base/ResourceCollection.js.map +1 -0
  218. package/lib/models/base/ResourceModel.js +209 -0
  219. package/lib/models/base/ResourceModel.js.map +1 -0
  220. package/lib/models/caseview/CaseViewModel.js +163 -0
  221. package/lib/models/caseview/CaseViewModel.js.map +1 -0
  222. package/lib/models/concepts/BusinessScenarioModel.js +122 -0
  223. package/lib/models/concepts/BusinessScenarioModel.js.map +1 -0
  224. package/lib/models/concepts/ConceptDetailModel.js +281 -0
  225. package/lib/models/concepts/ConceptDetailModel.js.map +1 -0
  226. package/lib/models/concepts/ConceptIndexModel.js +150 -0
  227. package/lib/models/concepts/ConceptIndexModel.js.map +1 -0
  228. package/lib/models/concepts/ConceptLinkModel.js +152 -0
  229. package/lib/models/concepts/ConceptLinkModel.js.map +1 -0
  230. package/lib/models/concepts/ConceptRelationCollection.js +82 -0
  231. package/lib/models/concepts/ConceptRelationCollection.js.map +1 -0
  232. package/lib/models/concepts/ConceptRelationModel.js +115 -0
  233. package/lib/models/concepts/ConceptRelationModel.js.map +1 -0
  234. package/lib/models/concepts/ConceptTypeDetailModel.js +128 -0
  235. package/lib/models/concepts/ConceptTypeDetailModel.js.map +1 -0
  236. package/lib/models/concepts/SourceReferenceCollection.js +35 -0
  237. package/lib/models/concepts/SourceReferenceCollection.js.map +1 -0
  238. package/lib/models/concepts/SourceReferenceModel.js +73 -0
  239. package/lib/models/concepts/SourceReferenceModel.js.map +1 -0
  240. package/lib/models/content/ContentIndexModel.js +142 -0
  241. package/lib/models/content/ContentIndexModel.js.map +1 -0
  242. package/lib/models/content/ContentLinkModel.js +193 -0
  243. package/lib/models/content/ContentLinkModel.js.map +1 -0
  244. package/lib/models/content/ContentModel.js +207 -0
  245. package/lib/models/content/ContentModel.js.map +1 -0
  246. package/lib/models/content/ContentTOCModel.js +163 -0
  247. package/lib/models/content/ContentTOCModel.js.map +1 -0
  248. package/lib/models/content/ContentTypeModel.js +74 -0
  249. package/lib/models/content/ContentTypeModel.js.map +1 -0
  250. package/lib/models/content/SectionModel.js +180 -0
  251. package/lib/models/content/SectionModel.js.map +1 -0
  252. package/lib/models/content/SubSectionModel.js +167 -0
  253. package/lib/models/content/SubSectionModel.js.map +1 -0
  254. package/lib/models/contentconfiguration/ContentConfiguration.js +75 -0
  255. package/lib/models/contentconfiguration/ContentConfiguration.js.map +1 -0
  256. package/lib/models/contentconfiguration/ContentConfigurationElements.js +143 -0
  257. package/lib/models/contentconfiguration/ContentConfigurationElements.js.map +1 -0
  258. package/lib/models/contentconfiguration/ContentConfigurationEndResults.js +49 -0
  259. package/lib/models/contentconfiguration/ContentConfigurationEndResults.js.map +1 -0
  260. package/lib/models/contentconfiguration/ContentConfigurationQuestions.js +54 -0
  261. package/lib/models/contentconfiguration/ContentConfigurationQuestions.js.map +1 -0
  262. package/lib/models/contentconfiguration/ContentConfigurationResults.js +103 -0
  263. package/lib/models/contentconfiguration/ContentConfigurationResults.js.map +1 -0
  264. package/lib/models/detail/DetailModel.js +219 -0
  265. package/lib/models/detail/DetailModel.js.map +1 -0
  266. package/lib/models/error/ErrorCollection.js +111 -0
  267. package/lib/models/error/ErrorCollection.js.map +1 -0
  268. package/lib/models/error/ErrorModel.js +81 -0
  269. package/lib/models/error/ErrorModel.js.map +1 -0
  270. package/lib/models/error/ErrorResponse.js +304 -0
  271. package/lib/models/error/ErrorResponse.js.map +1 -0
  272. package/lib/models/filters/AssignmentFilterModel.js +161 -0
  273. package/lib/models/filters/AssignmentFilterModel.js.map +1 -0
  274. package/lib/models/filters/BaseFilterModel.js +210 -0
  275. package/lib/models/filters/BaseFilterModel.js.map +1 -0
  276. package/lib/models/filters/ConceptIndexFilterModel.js +36 -0
  277. package/lib/models/filters/ConceptIndexFilterModel.js.map +1 -0
  278. package/lib/models/filters/FilterCollection.js +155 -0
  279. package/lib/models/filters/FilterCollection.js.map +1 -0
  280. package/lib/models/filters/FilterModel.js +13 -0
  281. package/lib/models/filters/FilterModel.js.map +1 -0
  282. package/lib/models/filters/RangeFilterModel.js +44 -0
  283. package/lib/models/filters/RangeFilterModel.js.map +1 -0
  284. package/lib/models/filters/StringFilterModel.js +147 -0
  285. package/lib/models/filters/StringFilterModel.js.map +1 -0
  286. package/lib/models/form/FormModel.js +1038 -0
  287. package/lib/models/form/FormModel.js.map +1 -0
  288. package/lib/models/form/FormObjectModel.js +474 -0
  289. package/lib/models/form/FormObjectModel.js.map +1 -0
  290. package/lib/models/grouping/GroupingModel.js +191 -0
  291. package/lib/models/grouping/GroupingModel.js.map +1 -0
  292. package/lib/models/href/Href.js +496 -0
  293. package/lib/models/href/Href.js.map +1 -0
  294. package/lib/models/href/ListHref.js +135 -0
  295. package/lib/models/href/ListHref.js.map +1 -0
  296. package/lib/models/index.js +687 -0
  297. package/lib/models/index.js.map +1 -0
  298. package/lib/models/layouthint/LayoutHintCollection.js +118 -0
  299. package/lib/models/layouthint/LayoutHintCollection.js.map +1 -0
  300. package/lib/models/links/LinkCollection.js +171 -0
  301. package/lib/models/links/LinkCollection.js.map +1 -0
  302. package/lib/models/links/LinkModel.js +216 -0
  303. package/lib/models/links/LinkModel.js.map +1 -0
  304. package/lib/models/links/normalizeLinkJSON.js +107 -0
  305. package/lib/models/links/normalizeLinkJSON.js.map +1 -0
  306. package/lib/models/list/ListDetailModel.js +266 -0
  307. package/lib/models/list/ListDetailModel.js.map +1 -0
  308. package/lib/models/list/ListHeaderModel.js +95 -0
  309. package/lib/models/list/ListHeaderModel.js.map +1 -0
  310. package/lib/models/list/ListItemCollection.js +67 -0
  311. package/lib/models/list/ListItemCollection.js.map +1 -0
  312. package/lib/models/list/ListItemModel.js +95 -0
  313. package/lib/models/list/ListItemModel.js.map +1 -0
  314. package/lib/models/list/ListModel.js +385 -0
  315. package/lib/models/list/ListModel.js.map +1 -0
  316. package/lib/models/lookup/LookupOptionCollection.js +45 -0
  317. package/lib/models/lookup/LookupOptionCollection.js.map +1 -0
  318. package/lib/models/lookup/LookupOptionsModel.js +71 -0
  319. package/lib/models/lookup/LookupOptionsModel.js.map +1 -0
  320. package/lib/models/modelcatalog/ModelCatalogModel.js +69 -0
  321. package/lib/models/modelcatalog/ModelCatalogModel.js.map +1 -0
  322. package/lib/models/modelcatalog/ModelCategoryCollection.js +24 -0
  323. package/lib/models/modelcatalog/ModelCategoryCollection.js.map +1 -0
  324. package/lib/models/modelcatalog/ModelCategoryModel.js +60 -0
  325. package/lib/models/modelcatalog/ModelCategoryModel.js.map +1 -0
  326. package/lib/models/paging/PagesizeModel.js +50 -0
  327. package/lib/models/paging/PagesizeModel.js.map +1 -0
  328. package/lib/models/paging/PagingModel.js +95 -0
  329. package/lib/models/paging/PagingModel.js.map +1 -0
  330. package/lib/models/panels/GroupingPanelModel.js +143 -0
  331. package/lib/models/panels/GroupingPanelModel.js.map +1 -0
  332. package/lib/models/parameter/Parameter.js +108 -0
  333. package/lib/models/parameter/Parameter.js.map +1 -0
  334. package/lib/models/process/ProcessStatusSettingsModel.js +85 -0
  335. package/lib/models/process/ProcessStatusSettingsModel.js.map +1 -0
  336. package/lib/models/resolveModel.js +57 -0
  337. package/lib/models/resolveModel.js.map +1 -0
  338. package/lib/models/search/CaseSearchModel.js +47 -0
  339. package/lib/models/search/CaseSearchModel.js.map +1 -0
  340. package/lib/models/sorting/SortOptionModel.js +106 -0
  341. package/lib/models/sorting/SortOptionModel.js.map +1 -0
  342. package/lib/models/sorting/SortingModel.js +112 -0
  343. package/lib/models/sorting/SortingModel.js.map +1 -0
  344. package/lib/models/tab/TabModel.js +143 -0
  345. package/lib/models/tab/TabModel.js.map +1 -0
  346. package/lib/models/taskgroup/TaskGroupCollection.js +21 -0
  347. package/lib/models/taskgroup/TaskGroupCollection.js.map +1 -0
  348. package/lib/models/taskgroup/TaskGroupModel.js +87 -0
  349. package/lib/models/taskgroup/TaskGroupModel.js.map +1 -0
  350. package/lib/models/types.js +2 -0
  351. package/lib/models/types.js.map +1 -0
  352. package/lib/models/user/UserModel.js +59 -0
  353. package/lib/models/user/UserModel.js.map +1 -0
  354. package/lib/models/user/UserProfileModel.js +55 -0
  355. package/lib/models/user/UserProfileModel.js.map +1 -0
  356. package/lib/models/user/UserServicesModel.js +126 -0
  357. package/lib/models/user/UserServicesModel.js.map +1 -0
  358. package/lib/modularui/Authenticate.js +183 -0
  359. package/lib/modularui/Authenticate.js.map +1 -0
  360. package/lib/modularui/CaptchaRequest.js +71 -0
  361. package/lib/modularui/CaptchaRequest.js.map +1 -0
  362. package/lib/modularui/ModularUIError.js +30 -0
  363. package/lib/modularui/ModularUIError.js.map +1 -0
  364. package/lib/modularui/ModularUIRequest.js +716 -0
  365. package/lib/modularui/ModularUIRequest.js.map +1 -0
  366. package/lib/modularui/ModularUIResponse.js +147 -0
  367. package/lib/modularui/ModularUIResponse.js.map +1 -0
  368. package/lib/modularui/UploadRequest.js +103 -0
  369. package/lib/modularui/UploadRequest.js.map +1 -0
  370. package/lib/modularui/index.js +42 -0
  371. package/lib/modularui/index.js.map +1 -0
  372. package/lib/modularui/types.js +2 -0
  373. package/lib/modularui/types.js.map +1 -0
  374. package/lib/react/ErrorBoundary.js +56 -0
  375. package/lib/react/ErrorBoundary.js.map +1 -0
  376. package/lib/react/ErrorBoundaryFallback.js +41 -0
  377. package/lib/react/ErrorBoundaryFallback.js.map +1 -0
  378. package/lib/react/index.js +29 -0
  379. package/lib/react/index.js.map +1 -0
  380. package/lib/react/utils.js +32 -0
  381. package/lib/react/utils.js.map +1 -0
  382. package/lib/react-client/Init.js +44 -0
  383. package/lib/react-client/Init.js.map +1 -0
  384. package/lib/react-client/client.js +216 -0
  385. package/lib/react-client/client.js.map +1 -0
  386. package/lib/react-client/contextPath.js +26 -0
  387. package/lib/react-client/contextPath.js.map +1 -0
  388. package/lib/react-client/index.js +40 -0
  389. package/lib/react-client/index.js.map +1 -0
  390. package/lib/react-client/rehydrate.js +73 -0
  391. package/lib/react-client/rehydrate.js.map +1 -0
  392. package/lib/react-server/contextPath.js +10 -0
  393. package/lib/react-server/contextPath.js.map +1 -0
  394. package/lib/react-server/createSSRComplete.js +61 -0
  395. package/lib/react-server/createSSRComplete.js.map +1 -0
  396. package/lib/react-server/htmlpage.js +54 -0
  397. package/lib/react-server/htmlpage.js.map +1 -0
  398. package/lib/react-server/index.js +82 -0
  399. package/lib/react-server/index.js.map +1 -0
  400. package/lib/react-server/renderSSRComplete.js +91 -0
  401. package/lib/react-server/renderSSRComplete.js.map +1 -0
  402. package/lib/react-server/renderSSRMinimal.js +47 -0
  403. package/lib/react-server/renderSSRMinimal.js.map +1 -0
  404. package/lib/react-server/requestInformation.js +46 -0
  405. package/lib/react-server/requestInformation.js.map +1 -0
  406. package/lib/react-server/serverNoSSR.js +63 -0
  407. package/lib/react-server/serverNoSSR.js.map +1 -0
  408. package/lib/react-server/serverSSR.js +51 -0
  409. package/lib/react-server/serverSSR.js.map +1 -0
  410. package/lib/react-server/serverUtil.js +218 -0
  411. package/lib/react-server/serverUtil.js.map +1 -0
  412. package/lib/react-theme/ThemeProvider.js +33 -0
  413. package/lib/react-theme/ThemeProvider.js.map +1 -0
  414. package/lib/react-theme/createTheme.js +115 -0
  415. package/lib/react-theme/createTheme.js.map +1 -0
  416. package/lib/react-theme/index.js +110 -0
  417. package/lib/react-theme/index.js.map +1 -0
  418. package/lib/react-theme/types.js +2 -0
  419. package/lib/react-theme/types.js.map +1 -0
  420. package/lib/react-theme/useTheme.js +15 -0
  421. package/lib/react-theme/useTheme.js.map +1 -0
  422. package/lib/react-theme/utils/background.js +21 -0
  423. package/lib/react-theme/utils/background.js.map +1 -0
  424. package/lib/react-theme/utils/colors.js +45 -0
  425. package/lib/react-theme/utils/colors.js.map +1 -0
  426. package/lib/react-theme/utils/contrast.js +95 -0
  427. package/lib/react-theme/utils/contrast.js.map +1 -0
  428. package/lib/react-theme/utils/corners.js +34 -0
  429. package/lib/react-theme/utils/corners.js.map +1 -0
  430. package/lib/react-theme/utils/spacers.js +89 -0
  431. package/lib/react-theme/utils/spacers.js.map +1 -0
  432. package/lib/react-theme/utils/themeProps.js +75 -0
  433. package/lib/react-theme/utils/themeProps.js.map +1 -0
  434. package/lib/redux/_i18n/I18nActions.js +37 -0
  435. package/lib/redux/_i18n/I18nActions.js.map +1 -0
  436. package/lib/redux/_i18n/I18nReducer.js +78 -0
  437. package/lib/redux/_i18n/I18nReducer.js.map +1 -0
  438. package/lib/redux/_i18n/index.js +29 -0
  439. package/lib/redux/_i18n/index.js.map +1 -0
  440. package/lib/redux/_i18n/types.js +2 -0
  441. package/lib/redux/_i18n/types.js.map +1 -0
  442. package/lib/redux/_modularui/ModularUIActions.js +168 -0
  443. package/lib/redux/_modularui/ModularUIActions.js.map +1 -0
  444. package/lib/redux/_modularui/ModularUIConnector.js +123 -0
  445. package/lib/redux/_modularui/ModularUIConnector.js.map +1 -0
  446. package/lib/redux/_modularui/ModularUIMiddleware.js +107 -0
  447. package/lib/redux/_modularui/ModularUIMiddleware.js.map +1 -0
  448. package/lib/redux/_modularui/ModularUIReducer.js +157 -0
  449. package/lib/redux/_modularui/ModularUIReducer.js.map +1 -0
  450. package/lib/redux/_modularui/ModularUISelectors.js +270 -0
  451. package/lib/redux/_modularui/ModularUISelectors.js.map +1 -0
  452. package/lib/redux/_modularui/ModularUIUtils.js +83 -0
  453. package/lib/redux/_modularui/ModularUIUtils.js.map +1 -0
  454. package/lib/redux/_modularui/index.js +86 -0
  455. package/lib/redux/_modularui/index.js.map +1 -0
  456. package/lib/redux/_modularui/types.js +2 -0
  457. package/lib/redux/_modularui/types.js.map +1 -0
  458. package/lib/redux/_modularui/withModularUI.js +41 -0
  459. package/lib/redux/_modularui/withModularUI.js.map +1 -0
  460. package/lib/redux/_router/RouterActions.js +67 -0
  461. package/lib/redux/_router/RouterActions.js.map +1 -0
  462. package/lib/redux/_router/RouterConnectors.js +42 -0
  463. package/lib/redux/_router/RouterConnectors.js.map +1 -0
  464. package/lib/redux/_router/RouterMiddleware.js +38 -0
  465. package/lib/redux/_router/RouterMiddleware.js.map +1 -0
  466. package/lib/redux/_router/RouterReducer.js +22 -0
  467. package/lib/redux/_router/RouterReducer.js.map +1 -0
  468. package/lib/redux/_router/index.js +51 -0
  469. package/lib/redux/_router/index.js.map +1 -0
  470. package/lib/redux/_router/types.js +2 -0
  471. package/lib/redux/_router/types.js.map +1 -0
  472. package/lib/redux/actions/Application.js +38 -0
  473. package/lib/redux/actions/Application.js.map +1 -0
  474. package/lib/redux/actions/Authorization.js +55 -0
  475. package/lib/redux/actions/Authorization.js.map +1 -0
  476. package/lib/redux/actions/Error.js +74 -0
  477. package/lib/redux/actions/Error.js.map +1 -0
  478. package/lib/redux/actions/Form.js +39 -0
  479. package/lib/redux/actions/Form.js.map +1 -0
  480. package/lib/redux/actions/FormAttributeSet.js +69 -0
  481. package/lib/redux/actions/FormAttributeSet.js.map +1 -0
  482. package/lib/redux/actions/FormAttributeSetRepeatable.js +35 -0
  483. package/lib/redux/actions/FormAttributeSetRepeatable.js.map +1 -0
  484. package/lib/redux/actions/FormAutosave.js +60 -0
  485. package/lib/redux/actions/FormAutosave.js.map +1 -0
  486. package/lib/redux/actions/FormAutosubmit.js +38 -0
  487. package/lib/redux/actions/FormAutosubmit.js.map +1 -0
  488. package/lib/redux/actions/FormAutoupdate.js +37 -0
  489. package/lib/redux/actions/FormAutoupdate.js.map +1 -0
  490. package/lib/redux/actions/FormValidations.js +51 -0
  491. package/lib/redux/actions/FormValidations.js.map +1 -0
  492. package/lib/redux/actions/Modals.js +22 -0
  493. package/lib/redux/actions/Modals.js.map +1 -0
  494. package/lib/redux/actions/ModelCatalog.js +15 -0
  495. package/lib/redux/actions/ModelCatalog.js.map +1 -0
  496. package/lib/redux/actions/Notification.js +76 -0
  497. package/lib/redux/actions/Notification.js.map +1 -0
  498. package/lib/redux/actions/Preferences.js +128 -0
  499. package/lib/redux/actions/Preferences.js.map +1 -0
  500. package/lib/redux/actions/ProgressIndicator.js +42 -0
  501. package/lib/redux/actions/ProgressIndicator.js.map +1 -0
  502. package/lib/redux/actions/SignIn.js +90 -0
  503. package/lib/redux/actions/SignIn.js.map +1 -0
  504. package/lib/redux/actions/SignOut.js +30 -0
  505. package/lib/redux/actions/SignOut.js.map +1 -0
  506. package/lib/redux/actions/index.js +183 -0
  507. package/lib/redux/actions/index.js.map +1 -0
  508. package/lib/redux/connectors/Application.js +14 -0
  509. package/lib/redux/connectors/Application.js.map +1 -0
  510. package/lib/redux/connectors/Breadcrumb.js +16 -0
  511. package/lib/redux/connectors/Breadcrumb.js.map +1 -0
  512. package/lib/redux/connectors/CaseView.js +19 -0
  513. package/lib/redux/connectors/CaseView.js.map +1 -0
  514. package/lib/redux/connectors/ConceptDetail.js +20 -0
  515. package/lib/redux/connectors/ConceptDetail.js.map +1 -0
  516. package/lib/redux/connectors/ContentBrowser.js +19 -0
  517. package/lib/redux/connectors/ContentBrowser.js.map +1 -0
  518. package/lib/redux/connectors/ContentDetail.js +20 -0
  519. package/lib/redux/connectors/ContentDetail.js.map +1 -0
  520. package/lib/redux/connectors/ContentDetailSection.js +22 -0
  521. package/lib/redux/connectors/ContentDetailSection.js.map +1 -0
  522. package/lib/redux/connectors/Form.js +43 -0
  523. package/lib/redux/connectors/Form.js.map +1 -0
  524. package/lib/redux/connectors/FormAttributeSet.js +27 -0
  525. package/lib/redux/connectors/FormAttributeSet.js.map +1 -0
  526. package/lib/redux/connectors/ListDetail.js +21 -0
  527. package/lib/redux/connectors/ListDetail.js.map +1 -0
  528. package/lib/redux/connectors/Modal.js +27 -0
  529. package/lib/redux/connectors/Modal.js.map +1 -0
  530. package/lib/redux/connectors/ModelCatalog.js +19 -0
  531. package/lib/redux/connectors/ModelCatalog.js.map +1 -0
  532. package/lib/redux/connectors/Notification.js +22 -0
  533. package/lib/redux/connectors/Notification.js.map +1 -0
  534. package/lib/redux/connectors/PanelRenderer.js +29 -0
  535. package/lib/redux/connectors/PanelRenderer.js.map +1 -0
  536. package/lib/redux/connectors/Preferences.js +29 -0
  537. package/lib/redux/connectors/Preferences.js.map +1 -0
  538. package/lib/redux/connectors/Progress.js +19 -0
  539. package/lib/redux/connectors/Progress.js.map +1 -0
  540. package/lib/redux/connectors/ProgressIndicator.js +19 -0
  541. package/lib/redux/connectors/ProgressIndicator.js.map +1 -0
  542. package/lib/redux/connectors/QuickSearch.js +27 -0
  543. package/lib/redux/connectors/QuickSearch.js.map +1 -0
  544. package/lib/redux/connectors/SignIn.js +24 -0
  545. package/lib/redux/connectors/SignIn.js.map +1 -0
  546. package/lib/redux/connectors/SignOut.js +20 -0
  547. package/lib/redux/connectors/SignOut.js.map +1 -0
  548. package/lib/redux/connectors/Tab.js +19 -0
  549. package/lib/redux/connectors/Tab.js.map +1 -0
  550. package/lib/redux/connectors/index.js +153 -0
  551. package/lib/redux/connectors/index.js.map +1 -0
  552. package/lib/redux/index.js +102 -0
  553. package/lib/redux/index.js.map +1 -0
  554. package/lib/redux/reducers/AuthReducer.js +59 -0
  555. package/lib/redux/reducers/AuthReducer.js.map +1 -0
  556. package/lib/redux/reducers/ErrorReducer.js +22 -0
  557. package/lib/redux/reducers/ErrorReducer.js.map +1 -0
  558. package/lib/redux/reducers/ModalsReducer.js +58 -0
  559. package/lib/redux/reducers/ModalsReducer.js.map +1 -0
  560. package/lib/redux/reducers/ModelCatalogReducer.js +34 -0
  561. package/lib/redux/reducers/ModelCatalogReducer.js.map +1 -0
  562. package/lib/redux/reducers/NotificationReducer.js +43 -0
  563. package/lib/redux/reducers/NotificationReducer.js.map +1 -0
  564. package/lib/redux/reducers/PreferencesReducer.js +30 -0
  565. package/lib/redux/reducers/PreferencesReducer.js.map +1 -0
  566. package/lib/redux/reducers/ProgressIndicatorReducer.js +55 -0
  567. package/lib/redux/reducers/ProgressIndicatorReducer.js.map +1 -0
  568. package/lib/redux/reducers/createReducer.js +33 -0
  569. package/lib/redux/reducers/createReducer.js.map +1 -0
  570. package/lib/redux/reducers/index.js +78 -0
  571. package/lib/redux/reducers/index.js.map +1 -0
  572. package/lib/redux/selectors/i18n.js +20 -0
  573. package/lib/redux/selectors/i18n.js.map +1 -0
  574. package/lib/redux/selectors/index.js +29 -0
  575. package/lib/redux/selectors/index.js.map +1 -0
  576. package/lib/redux/selectors/modelcatalog.js +14 -0
  577. package/lib/redux/selectors/modelcatalog.js.map +1 -0
  578. package/lib/redux/store/beforeRenderHooks.js +24 -0
  579. package/lib/redux/store/beforeRenderHooks.js.map +1 -0
  580. package/lib/redux/store/configureStore.js +42 -0
  581. package/lib/redux/store/configureStore.js.map +1 -0
  582. package/lib/redux/types.js +2 -0
  583. package/lib/redux/types.js.map +1 -0
  584. package/lib/utils/browser/Cache.js +151 -0
  585. package/lib/utils/browser/Cache.js.map +1 -0
  586. package/lib/utils/browser/Cookies.js +38 -0
  587. package/lib/utils/browser/Cookies.js.map +1 -0
  588. package/lib/utils/datetime/DateTimeUtil.js +648 -0
  589. package/lib/utils/datetime/DateTimeUtil.js.map +1 -0
  590. package/lib/utils/fetch/serverFetch.js +32 -0
  591. package/lib/utils/fetch/serverFetch.js.map +1 -0
  592. package/lib/utils/fetch/types.js +2 -0
  593. package/lib/utils/fetch/types.js.map +1 -0
  594. package/lib/utils/fetch/universalFetch.js +94 -0
  595. package/lib/utils/fetch/universalFetch.js.map +1 -0
  596. package/lib/utils/fetch/xhr.js +358 -0
  597. package/lib/utils/fetch/xhr.js.map +1 -0
  598. package/lib/utils/helpers/checkResource.js +46 -0
  599. package/lib/utils/helpers/checkResource.js.map +1 -0
  600. package/lib/utils/helpers/createHash.js +28 -0
  601. package/lib/utils/helpers/createHash.js.map +1 -0
  602. package/lib/utils/helpers/createHref.js +101 -0
  603. package/lib/utils/helpers/createHref.js.map +1 -0
  604. package/lib/utils/helpers/createUUID.js +18 -0
  605. package/lib/utils/helpers/createUUID.js.map +1 -0
  606. package/lib/utils/helpers/index.js +102 -0
  607. package/lib/utils/helpers/index.js.map +1 -0
  608. package/lib/utils/helpers/objects.js +36 -0
  609. package/lib/utils/helpers/objects.js.map +1 -0
  610. package/lib/utils/helpers/repositoryResource.js +26 -0
  611. package/lib/utils/helpers/repositoryResource.js.map +1 -0
  612. package/lib/utils/helpers/sanitizeHtml.js +44 -0
  613. package/lib/utils/helpers/sanitizeHtml.js.map +1 -0
  614. package/lib/utils/helpers/text.js +23 -0
  615. package/lib/utils/helpers/text.js.map +1 -0
  616. package/lib/utils/index.js +106 -0
  617. package/lib/utils/index.js.map +1 -0
  618. package/lib/utils/number/DecimalFormat.js +333 -0
  619. package/lib/utils/number/DecimalFormat.js.map +1 -0
  620. package/lib/utils/number/formatValue.js +47 -0
  621. package/lib/utils/number/formatValue.js.map +1 -0
  622. package/lib/utils/number/parseNumbers.js +70 -0
  623. package/lib/utils/number/parseNumbers.js.map +1 -0
  624. package/package.json +59 -143
  625. package/builder/package.json +0 -12
  626. package/constants/package.json +0 -12
  627. package/exceptions/package.json +0 -12
  628. package/hooks/package.json +0 -12
  629. package/i18n/package.json +0 -12
  630. package/lib/builder/index.cjs +0 -18
  631. package/lib/builder/index.cjs.map +0 -1
  632. package/lib/builder/mergeLayoutHintConfigurations.cjs +0 -60
  633. package/lib/builder/mergeLayoutHintConfigurations.cjs.map +0 -1
  634. package/lib/constants/Constants.cjs +0 -189
  635. package/lib/constants/Constants.cjs.map +0 -1
  636. package/lib/constants/LayoutHintConfig.cjs +0 -173
  637. package/lib/constants/LayoutHintConfig.cjs.map +0 -1
  638. package/lib/constants/LayoutHints.cjs +0 -135
  639. package/lib/constants/LayoutHints.cjs.map +0 -1
  640. package/lib/constants/Settings.cjs +0 -219
  641. package/lib/constants/Settings.cjs.map +0 -1
  642. package/lib/constants/index.cjs +0 -40
  643. package/lib/constants/index.cjs.map +0 -1
  644. package/lib/exceptions/ConfigurationException.cjs +0 -17
  645. package/lib/exceptions/ConfigurationException.cjs.map +0 -1
  646. package/lib/exceptions/FetchException.cjs +0 -72
  647. package/lib/exceptions/FetchException.cjs.map +0 -1
  648. package/lib/exceptions/IllegalArgumentException.cjs +0 -17
  649. package/lib/exceptions/IllegalArgumentException.cjs.map +0 -1
  650. package/lib/exceptions/IllegalReturnException.cjs +0 -16
  651. package/lib/exceptions/IllegalReturnException.cjs.map +0 -1
  652. package/lib/exceptions/IllegalStateException.cjs +0 -17
  653. package/lib/exceptions/IllegalStateException.cjs.map +0 -1
  654. package/lib/exceptions/JsonParseException.cjs +0 -17
  655. package/lib/exceptions/JsonParseException.cjs.map +0 -1
  656. package/lib/exceptions/MissingPropertyException.cjs +0 -17
  657. package/lib/exceptions/MissingPropertyException.cjs.map +0 -1
  658. package/lib/exceptions/NetworkException.cjs +0 -23
  659. package/lib/exceptions/NetworkException.cjs.map +0 -1
  660. package/lib/exceptions/NotAllowedUriException.cjs +0 -17
  661. package/lib/exceptions/NotAllowedUriException.cjs.map +0 -1
  662. package/lib/exceptions/NotFoundException.cjs +0 -26
  663. package/lib/exceptions/NotFoundException.cjs.map +0 -1
  664. package/lib/exceptions/ServerRequestException.cjs +0 -17
  665. package/lib/exceptions/ServerRequestException.cjs.map +0 -1
  666. package/lib/exceptions/ThemePropertyException.cjs +0 -17
  667. package/lib/exceptions/ThemePropertyException.cjs.map +0 -1
  668. package/lib/exceptions/TimeoutException.cjs +0 -17
  669. package/lib/exceptions/TimeoutException.cjs.map +0 -1
  670. package/lib/exceptions/UnauthorizedException.cjs +0 -25
  671. package/lib/exceptions/UnauthorizedException.cjs.map +0 -1
  672. package/lib/exceptions/UnsupportedOperationException.cjs +0 -17
  673. package/lib/exceptions/UnsupportedOperationException.cjs.map +0 -1
  674. package/lib/exceptions/index.cjs +0 -112
  675. package/lib/exceptions/index.cjs.map +0 -1
  676. package/lib/hooks/index.cjs +0 -183
  677. package/lib/hooks/index.cjs.map +0 -1
  678. package/lib/hooks/useAllFormsOnModel.cjs +0 -81
  679. package/lib/hooks/useAllFormsOnModel.cjs.map +0 -1
  680. package/lib/hooks/useAuthentication.cjs +0 -66
  681. package/lib/hooks/useAuthentication.cjs.map +0 -1
  682. package/lib/hooks/useContent.cjs +0 -49
  683. package/lib/hooks/useContent.cjs.map +0 -1
  684. package/lib/hooks/useDeepCompareEffect.cjs +0 -35
  685. package/lib/hooks/useDeepCompareEffect.cjs.map +0 -1
  686. package/lib/hooks/useForm.cjs +0 -98
  687. package/lib/hooks/useForm.cjs.map +0 -1
  688. package/lib/hooks/useI18n.cjs +0 -42
  689. package/lib/hooks/useI18n.cjs.map +0 -1
  690. package/lib/hooks/useModal.cjs +0 -43
  691. package/lib/hooks/useModal.cjs.map +0 -1
  692. package/lib/hooks/useModelCatalog.cjs +0 -179
  693. package/lib/hooks/useModelCatalog.cjs.map +0 -1
  694. package/lib/hooks/useModels.cjs +0 -45
  695. package/lib/hooks/useModels.cjs.map +0 -1
  696. package/lib/hooks/useModularUI.cjs +0 -69
  697. package/lib/hooks/useModularUI.cjs.map +0 -1
  698. package/lib/hooks/useModularUIBasic.cjs +0 -81
  699. package/lib/hooks/useModularUIBasic.cjs.map +0 -1
  700. package/lib/hooks/useModularUIModel.cjs +0 -128
  701. package/lib/hooks/useModularUIModel.cjs.map +0 -1
  702. package/lib/hooks/useModularUIRequest.cjs +0 -25
  703. package/lib/hooks/useModularUIRequest.cjs.map +0 -1
  704. package/lib/hooks/useNotification.cjs +0 -39
  705. package/lib/hooks/useNotification.cjs.map +0 -1
  706. package/lib/hooks/usePreference.cjs +0 -23
  707. package/lib/hooks/usePreference.cjs.map +0 -1
  708. package/lib/hooks/useProgressIndicator.cjs +0 -23
  709. package/lib/hooks/useProgressIndicator.cjs.map +0 -1
  710. package/lib/hooks/useRouter.cjs +0 -42
  711. package/lib/hooks/useRouter.cjs.map +0 -1
  712. package/lib/i18n/Locale.cjs +0 -128
  713. package/lib/i18n/Locale.cjs.map +0 -1
  714. package/lib/i18n/Locales.cjs +0 -140
  715. package/lib/i18n/Locales.cjs.map +0 -1
  716. package/lib/i18n/Message.cjs +0 -50
  717. package/lib/i18n/Message.cjs.map +0 -1
  718. package/lib/i18n/index.cjs +0 -57
  719. package/lib/i18n/index.cjs.map +0 -1
  720. package/lib/i18n/languages.cjs +0 -212
  721. package/lib/i18n/languages.cjs.map +0 -1
  722. package/lib/i18n/translations/beinformed_error_messages_en.nl.cjs +0 -104
  723. package/lib/i18n/translations/beinformed_error_messages_en.nl.cjs.map +0 -1
  724. package/lib/i18n/translations/beinformed_error_messages_nl.nl.cjs +0 -104
  725. package/lib/i18n/translations/beinformed_error_messages_nl.nl.cjs.map +0 -1
  726. package/lib/i18n/types.cjs +0 -2
  727. package/lib/i18n/types.cjs.map +0 -1
  728. package/lib/i18n/withMessage.cjs +0 -27
  729. package/lib/i18n/withMessage.cjs.map +0 -1
  730. package/lib/index.cjs +0 -73
  731. package/lib/index.cjs.map +0 -1
  732. package/lib/models/actions/ActionCollection.cjs +0 -90
  733. package/lib/models/actions/ActionCollection.cjs.map +0 -1
  734. package/lib/models/actions/ActionModel.cjs +0 -194
  735. package/lib/models/actions/ActionModel.cjs.map +0 -1
  736. package/lib/models/application/ApplicationModel.cjs +0 -133
  737. package/lib/models/application/ApplicationModel.cjs.map +0 -1
  738. package/lib/models/attributes/AttributeCollection.cjs +0 -282
  739. package/lib/models/attributes/AttributeCollection.cjs.map +0 -1
  740. package/lib/models/attributes/AttributeContent.cjs +0 -203
  741. package/lib/models/attributes/AttributeContent.cjs.map +0 -1
  742. package/lib/models/attributes/AttributeDataHelper.cjs +0 -267
  743. package/lib/models/attributes/AttributeDataHelper.cjs.map +0 -1
  744. package/lib/models/attributes/AttributeModel.cjs +0 -824
  745. package/lib/models/attributes/AttributeModel.cjs.map +0 -1
  746. package/lib/models/attributes/AttributeSetModel.cjs +0 -105
  747. package/lib/models/attributes/AttributeSetModel.cjs.map +0 -1
  748. package/lib/models/attributes/BooleanAttributeModel.cjs +0 -295
  749. package/lib/models/attributes/BooleanAttributeModel.cjs.map +0 -1
  750. package/lib/models/attributes/CaptchaAttributeModel.cjs +0 -60
  751. package/lib/models/attributes/CaptchaAttributeModel.cjs.map +0 -1
  752. package/lib/models/attributes/ChoiceAttributeModel.cjs +0 -411
  753. package/lib/models/attributes/ChoiceAttributeModel.cjs.map +0 -1
  754. package/lib/models/attributes/ChoiceAttributeOptionCollection.cjs +0 -300
  755. package/lib/models/attributes/ChoiceAttributeOptionCollection.cjs.map +0 -1
  756. package/lib/models/attributes/ChoiceAttributeOptionModel.cjs +0 -342
  757. package/lib/models/attributes/ChoiceAttributeOptionModel.cjs.map +0 -1
  758. package/lib/models/attributes/CompositeAttributeChildCollection.cjs +0 -189
  759. package/lib/models/attributes/CompositeAttributeChildCollection.cjs.map +0 -1
  760. package/lib/models/attributes/CompositeAttributeModel.cjs +0 -380
  761. package/lib/models/attributes/CompositeAttributeModel.cjs.map +0 -1
  762. package/lib/models/attributes/DatetimeAttributeModel.cjs +0 -465
  763. package/lib/models/attributes/DatetimeAttributeModel.cjs.map +0 -1
  764. package/lib/models/attributes/HelptextAttributeModel.cjs +0 -55
  765. package/lib/models/attributes/HelptextAttributeModel.cjs.map +0 -1
  766. package/lib/models/attributes/LabelAttributeModel.cjs +0 -41
  767. package/lib/models/attributes/LabelAttributeModel.cjs.map +0 -1
  768. package/lib/models/attributes/MemoAttributeModel.cjs +0 -49
  769. package/lib/models/attributes/MemoAttributeModel.cjs.map +0 -1
  770. package/lib/models/attributes/MoneyAttributeModel.cjs +0 -49
  771. package/lib/models/attributes/MoneyAttributeModel.cjs.map +0 -1
  772. package/lib/models/attributes/NumberAttributeModel.cjs +0 -201
  773. package/lib/models/attributes/NumberAttributeModel.cjs.map +0 -1
  774. package/lib/models/attributes/PasswordAttributeModel.cjs +0 -217
  775. package/lib/models/attributes/PasswordAttributeModel.cjs.map +0 -1
  776. package/lib/models/attributes/StringAttributeModel.cjs +0 -284
  777. package/lib/models/attributes/StringAttributeModel.cjs.map +0 -1
  778. package/lib/models/attributes/UploadAttributeModel.cjs +0 -223
  779. package/lib/models/attributes/UploadAttributeModel.cjs.map +0 -1
  780. package/lib/models/attributes/XMLAttributeModel.cjs +0 -53
  781. package/lib/models/attributes/XMLAttributeModel.cjs.map +0 -1
  782. package/lib/models/attributes/_createAttribute.cjs +0 -93
  783. package/lib/models/attributes/_createAttribute.cjs.map +0 -1
  784. package/lib/models/attributes/input-constraints/BSNConstraint.cjs +0 -72
  785. package/lib/models/attributes/input-constraints/BSNConstraint.cjs.map +0 -1
  786. package/lib/models/attributes/input-constraints/ConstraintCollection.cjs +0 -50
  787. package/lib/models/attributes/input-constraints/ConstraintCollection.cjs.map +0 -1
  788. package/lib/models/attributes/input-constraints/ConstraintModel.cjs +0 -74
  789. package/lib/models/attributes/input-constraints/ConstraintModel.cjs.map +0 -1
  790. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.cjs +0 -205
  791. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.cjs.map +0 -1
  792. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.cjs +0 -76
  793. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.cjs.map +0 -1
  794. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.cjs +0 -76
  795. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.cjs.map +0 -1
  796. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.cjs +0 -122
  797. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.cjs.map +0 -1
  798. package/lib/models/attributes/input-constraints/FileExtensionConstraint.cjs +0 -66
  799. package/lib/models/attributes/input-constraints/FileExtensionConstraint.cjs.map +0 -1
  800. package/lib/models/attributes/input-constraints/FileSizeConstraint.cjs +0 -98
  801. package/lib/models/attributes/input-constraints/FileSizeConstraint.cjs.map +0 -1
  802. package/lib/models/attributes/input-constraints/IBANConstraint.cjs +0 -49
  803. package/lib/models/attributes/input-constraints/IBANConstraint.cjs.map +0 -1
  804. package/lib/models/attributes/input-constraints/MandatoryConstraint.cjs +0 -53
  805. package/lib/models/attributes/input-constraints/MandatoryConstraint.cjs.map +0 -1
  806. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.cjs +0 -85
  807. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.cjs.map +0 -1
  808. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.cjs +0 -177
  809. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.cjs.map +0 -1
  810. package/lib/models/attributes/input-constraints/NumberFormatConstraint.cjs +0 -132
  811. package/lib/models/attributes/input-constraints/NumberFormatConstraint.cjs.map +0 -1
  812. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.cjs +0 -126
  813. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.cjs.map +0 -1
  814. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.cjs +0 -72
  815. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.cjs.map +0 -1
  816. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.cjs +0 -47
  817. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.cjs.map +0 -1
  818. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.cjs +0 -64
  819. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.cjs.map +0 -1
  820. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.cjs +0 -64
  821. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.cjs.map +0 -1
  822. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.cjs +0 -78
  823. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.cjs.map +0 -1
  824. package/lib/models/attributes/input-constraints/RangeConstraint.cjs +0 -143
  825. package/lib/models/attributes/input-constraints/RangeConstraint.cjs.map +0 -1
  826. package/lib/models/attributes/input-constraints/RegexConstraint.cjs +0 -67
  827. package/lib/models/attributes/input-constraints/RegexConstraint.cjs.map +0 -1
  828. package/lib/models/attributes/input-constraints/StringLengthConstraint.cjs +0 -178
  829. package/lib/models/attributes/input-constraints/StringLengthConstraint.cjs.map +0 -1
  830. package/lib/models/attributes/input-constraints/XMLConstraint.cjs +0 -62
  831. package/lib/models/attributes/input-constraints/XMLConstraint.cjs.map +0 -1
  832. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.cjs +0 -66
  833. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.cjs.map +0 -1
  834. package/lib/models/attributes/layouthint-rules/DependentAttribute.cjs +0 -200
  835. package/lib/models/attributes/layouthint-rules/DependentAttribute.cjs.map +0 -1
  836. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.cjs +0 -88
  837. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.cjs.map +0 -1
  838. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.cjs +0 -51
  839. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.cjs.map +0 -1
  840. package/lib/models/base/BaseCollection.cjs +0 -186
  841. package/lib/models/base/BaseCollection.cjs.map +0 -1
  842. package/lib/models/base/BaseModel.cjs +0 -149
  843. package/lib/models/base/BaseModel.cjs.map +0 -1
  844. package/lib/models/base/ResourceCollection.cjs +0 -41
  845. package/lib/models/base/ResourceCollection.cjs.map +0 -1
  846. package/lib/models/base/ResourceModel.cjs +0 -209
  847. package/lib/models/base/ResourceModel.cjs.map +0 -1
  848. package/lib/models/caseview/CaseViewModel.cjs +0 -163
  849. package/lib/models/caseview/CaseViewModel.cjs.map +0 -1
  850. package/lib/models/concepts/BusinessScenarioModel.cjs +0 -122
  851. package/lib/models/concepts/BusinessScenarioModel.cjs.map +0 -1
  852. package/lib/models/concepts/ConceptDetailModel.cjs +0 -281
  853. package/lib/models/concepts/ConceptDetailModel.cjs.map +0 -1
  854. package/lib/models/concepts/ConceptIndexModel.cjs +0 -150
  855. package/lib/models/concepts/ConceptIndexModel.cjs.map +0 -1
  856. package/lib/models/concepts/ConceptLinkModel.cjs +0 -152
  857. package/lib/models/concepts/ConceptLinkModel.cjs.map +0 -1
  858. package/lib/models/concepts/ConceptRelationCollection.cjs +0 -82
  859. package/lib/models/concepts/ConceptRelationCollection.cjs.map +0 -1
  860. package/lib/models/concepts/ConceptRelationModel.cjs +0 -115
  861. package/lib/models/concepts/ConceptRelationModel.cjs.map +0 -1
  862. package/lib/models/concepts/ConceptTypeDetailModel.cjs +0 -128
  863. package/lib/models/concepts/ConceptTypeDetailModel.cjs.map +0 -1
  864. package/lib/models/concepts/SourceReferenceCollection.cjs +0 -35
  865. package/lib/models/concepts/SourceReferenceCollection.cjs.map +0 -1
  866. package/lib/models/concepts/SourceReferenceModel.cjs +0 -73
  867. package/lib/models/concepts/SourceReferenceModel.cjs.map +0 -1
  868. package/lib/models/content/ContentIndexModel.cjs +0 -142
  869. package/lib/models/content/ContentIndexModel.cjs.map +0 -1
  870. package/lib/models/content/ContentLinkModel.cjs +0 -193
  871. package/lib/models/content/ContentLinkModel.cjs.map +0 -1
  872. package/lib/models/content/ContentModel.cjs +0 -207
  873. package/lib/models/content/ContentModel.cjs.map +0 -1
  874. package/lib/models/content/ContentTOCModel.cjs +0 -163
  875. package/lib/models/content/ContentTOCModel.cjs.map +0 -1
  876. package/lib/models/content/ContentTypeModel.cjs +0 -74
  877. package/lib/models/content/ContentTypeModel.cjs.map +0 -1
  878. package/lib/models/content/SectionModel.cjs +0 -180
  879. package/lib/models/content/SectionModel.cjs.map +0 -1
  880. package/lib/models/content/SubSectionModel.cjs +0 -167
  881. package/lib/models/content/SubSectionModel.cjs.map +0 -1
  882. package/lib/models/contentconfiguration/ContentConfiguration.cjs +0 -75
  883. package/lib/models/contentconfiguration/ContentConfiguration.cjs.map +0 -1
  884. package/lib/models/contentconfiguration/ContentConfigurationElements.cjs +0 -143
  885. package/lib/models/contentconfiguration/ContentConfigurationElements.cjs.map +0 -1
  886. package/lib/models/contentconfiguration/ContentConfigurationEndResults.cjs +0 -49
  887. package/lib/models/contentconfiguration/ContentConfigurationEndResults.cjs.map +0 -1
  888. package/lib/models/contentconfiguration/ContentConfigurationQuestions.cjs +0 -54
  889. package/lib/models/contentconfiguration/ContentConfigurationQuestions.cjs.map +0 -1
  890. package/lib/models/contentconfiguration/ContentConfigurationResults.cjs +0 -103
  891. package/lib/models/contentconfiguration/ContentConfigurationResults.cjs.map +0 -1
  892. package/lib/models/detail/DetailModel.cjs +0 -219
  893. package/lib/models/detail/DetailModel.cjs.map +0 -1
  894. package/lib/models/error/ErrorCollection.cjs +0 -111
  895. package/lib/models/error/ErrorCollection.cjs.map +0 -1
  896. package/lib/models/error/ErrorModel.cjs +0 -81
  897. package/lib/models/error/ErrorModel.cjs.map +0 -1
  898. package/lib/models/error/ErrorResponse.cjs +0 -304
  899. package/lib/models/error/ErrorResponse.cjs.map +0 -1
  900. package/lib/models/filters/AssignmentFilterModel.cjs +0 -161
  901. package/lib/models/filters/AssignmentFilterModel.cjs.map +0 -1
  902. package/lib/models/filters/BaseFilterModel.cjs +0 -210
  903. package/lib/models/filters/BaseFilterModel.cjs.map +0 -1
  904. package/lib/models/filters/ConceptIndexFilterModel.cjs +0 -36
  905. package/lib/models/filters/ConceptIndexFilterModel.cjs.map +0 -1
  906. package/lib/models/filters/FilterCollection.cjs +0 -155
  907. package/lib/models/filters/FilterCollection.cjs.map +0 -1
  908. package/lib/models/filters/FilterModel.cjs +0 -13
  909. package/lib/models/filters/FilterModel.cjs.map +0 -1
  910. package/lib/models/filters/RangeFilterModel.cjs +0 -44
  911. package/lib/models/filters/RangeFilterModel.cjs.map +0 -1
  912. package/lib/models/filters/StringFilterModel.cjs +0 -147
  913. package/lib/models/filters/StringFilterModel.cjs.map +0 -1
  914. package/lib/models/form/FormModel.cjs +0 -1038
  915. package/lib/models/form/FormModel.cjs.map +0 -1
  916. package/lib/models/form/FormObjectModel.cjs +0 -474
  917. package/lib/models/form/FormObjectModel.cjs.map +0 -1
  918. package/lib/models/grouping/GroupingModel.cjs +0 -191
  919. package/lib/models/grouping/GroupingModel.cjs.map +0 -1
  920. package/lib/models/href/Href.cjs +0 -496
  921. package/lib/models/href/Href.cjs.map +0 -1
  922. package/lib/models/href/ListHref.cjs +0 -135
  923. package/lib/models/href/ListHref.cjs.map +0 -1
  924. package/lib/models/index.cjs +0 -687
  925. package/lib/models/index.cjs.map +0 -1
  926. package/lib/models/layouthint/LayoutHintCollection.cjs +0 -118
  927. package/lib/models/layouthint/LayoutHintCollection.cjs.map +0 -1
  928. package/lib/models/links/LinkCollection.cjs +0 -171
  929. package/lib/models/links/LinkCollection.cjs.map +0 -1
  930. package/lib/models/links/LinkModel.cjs +0 -216
  931. package/lib/models/links/LinkModel.cjs.map +0 -1
  932. package/lib/models/links/normalizeLinkJSON.cjs +0 -107
  933. package/lib/models/links/normalizeLinkJSON.cjs.map +0 -1
  934. package/lib/models/list/ListDetailModel.cjs +0 -266
  935. package/lib/models/list/ListDetailModel.cjs.map +0 -1
  936. package/lib/models/list/ListHeaderModel.cjs +0 -95
  937. package/lib/models/list/ListHeaderModel.cjs.map +0 -1
  938. package/lib/models/list/ListItemCollection.cjs +0 -67
  939. package/lib/models/list/ListItemCollection.cjs.map +0 -1
  940. package/lib/models/list/ListItemModel.cjs +0 -95
  941. package/lib/models/list/ListItemModel.cjs.map +0 -1
  942. package/lib/models/list/ListModel.cjs +0 -385
  943. package/lib/models/list/ListModel.cjs.map +0 -1
  944. package/lib/models/lookup/LookupOptionCollection.cjs +0 -45
  945. package/lib/models/lookup/LookupOptionCollection.cjs.map +0 -1
  946. package/lib/models/lookup/LookupOptionsModel.cjs +0 -71
  947. package/lib/models/lookup/LookupOptionsModel.cjs.map +0 -1
  948. package/lib/models/modelcatalog/ModelCatalogModel.cjs +0 -69
  949. package/lib/models/modelcatalog/ModelCatalogModel.cjs.map +0 -1
  950. package/lib/models/modelcatalog/ModelCategoryCollection.cjs +0 -24
  951. package/lib/models/modelcatalog/ModelCategoryCollection.cjs.map +0 -1
  952. package/lib/models/modelcatalog/ModelCategoryModel.cjs +0 -60
  953. package/lib/models/modelcatalog/ModelCategoryModel.cjs.map +0 -1
  954. package/lib/models/paging/PagesizeModel.cjs +0 -50
  955. package/lib/models/paging/PagesizeModel.cjs.map +0 -1
  956. package/lib/models/paging/PagingModel.cjs +0 -95
  957. package/lib/models/paging/PagingModel.cjs.map +0 -1
  958. package/lib/models/panels/GroupingPanelModel.cjs +0 -143
  959. package/lib/models/panels/GroupingPanelModel.cjs.map +0 -1
  960. package/lib/models/parameter/Parameter.cjs +0 -108
  961. package/lib/models/parameter/Parameter.cjs.map +0 -1
  962. package/lib/models/process/ProcessStatusSettingsModel.cjs +0 -85
  963. package/lib/models/process/ProcessStatusSettingsModel.cjs.map +0 -1
  964. package/lib/models/resolveModel.cjs +0 -57
  965. package/lib/models/resolveModel.cjs.map +0 -1
  966. package/lib/models/search/CaseSearchModel.cjs +0 -47
  967. package/lib/models/search/CaseSearchModel.cjs.map +0 -1
  968. package/lib/models/sorting/SortOptionModel.cjs +0 -106
  969. package/lib/models/sorting/SortOptionModel.cjs.map +0 -1
  970. package/lib/models/sorting/SortingModel.cjs +0 -112
  971. package/lib/models/sorting/SortingModel.cjs.map +0 -1
  972. package/lib/models/tab/TabModel.cjs +0 -143
  973. package/lib/models/tab/TabModel.cjs.map +0 -1
  974. package/lib/models/taskgroup/TaskGroupCollection.cjs +0 -21
  975. package/lib/models/taskgroup/TaskGroupCollection.cjs.map +0 -1
  976. package/lib/models/taskgroup/TaskGroupModel.cjs +0 -87
  977. package/lib/models/taskgroup/TaskGroupModel.cjs.map +0 -1
  978. package/lib/models/types.cjs +0 -2
  979. package/lib/models/types.cjs.map +0 -1
  980. package/lib/models/user/UserModel.cjs +0 -59
  981. package/lib/models/user/UserModel.cjs.map +0 -1
  982. package/lib/models/user/UserProfileModel.cjs +0 -55
  983. package/lib/models/user/UserProfileModel.cjs.map +0 -1
  984. package/lib/models/user/UserServicesModel.cjs +0 -126
  985. package/lib/models/user/UserServicesModel.cjs.map +0 -1
  986. package/lib/modularui/Authenticate.cjs +0 -183
  987. package/lib/modularui/Authenticate.cjs.map +0 -1
  988. package/lib/modularui/CaptchaRequest.cjs +0 -71
  989. package/lib/modularui/CaptchaRequest.cjs.map +0 -1
  990. package/lib/modularui/ModularUIError.cjs +0 -30
  991. package/lib/modularui/ModularUIError.cjs.map +0 -1
  992. package/lib/modularui/ModularUIRequest.cjs +0 -716
  993. package/lib/modularui/ModularUIRequest.cjs.map +0 -1
  994. package/lib/modularui/ModularUIResponse.cjs +0 -147
  995. package/lib/modularui/ModularUIResponse.cjs.map +0 -1
  996. package/lib/modularui/UploadRequest.cjs +0 -103
  997. package/lib/modularui/UploadRequest.cjs.map +0 -1
  998. package/lib/modularui/index.cjs +0 -42
  999. package/lib/modularui/index.cjs.map +0 -1
  1000. package/lib/modularui/types.cjs +0 -2
  1001. package/lib/modularui/types.cjs.map +0 -1
  1002. package/lib/react/ErrorBoundary.cjs +0 -56
  1003. package/lib/react/ErrorBoundary.cjs.map +0 -1
  1004. package/lib/react/ErrorBoundaryFallback.cjs +0 -41
  1005. package/lib/react/ErrorBoundaryFallback.cjs.map +0 -1
  1006. package/lib/react/index.cjs +0 -29
  1007. package/lib/react/index.cjs.map +0 -1
  1008. package/lib/react/utils.cjs +0 -32
  1009. package/lib/react/utils.cjs.map +0 -1
  1010. package/lib/react-client/Init.cjs +0 -44
  1011. package/lib/react-client/Init.cjs.map +0 -1
  1012. package/lib/react-client/client.cjs +0 -216
  1013. package/lib/react-client/client.cjs.map +0 -1
  1014. package/lib/react-client/contextPath.cjs +0 -26
  1015. package/lib/react-client/contextPath.cjs.map +0 -1
  1016. package/lib/react-client/index.cjs +0 -40
  1017. package/lib/react-client/index.cjs.map +0 -1
  1018. package/lib/react-client/rehydrate.cjs +0 -73
  1019. package/lib/react-client/rehydrate.cjs.map +0 -1
  1020. package/lib/react-server/contextPath.cjs +0 -10
  1021. package/lib/react-server/contextPath.cjs.map +0 -1
  1022. package/lib/react-server/createSSRComplete.cjs +0 -61
  1023. package/lib/react-server/createSSRComplete.cjs.map +0 -1
  1024. package/lib/react-server/htmlpage.cjs +0 -54
  1025. package/lib/react-server/htmlpage.cjs.map +0 -1
  1026. package/lib/react-server/index.cjs +0 -82
  1027. package/lib/react-server/index.cjs.map +0 -1
  1028. package/lib/react-server/renderSSRComplete.cjs +0 -91
  1029. package/lib/react-server/renderSSRComplete.cjs.map +0 -1
  1030. package/lib/react-server/renderSSRMinimal.cjs +0 -47
  1031. package/lib/react-server/renderSSRMinimal.cjs.map +0 -1
  1032. package/lib/react-server/requestInformation.cjs +0 -46
  1033. package/lib/react-server/requestInformation.cjs.map +0 -1
  1034. package/lib/react-server/serverNoSSR.cjs +0 -63
  1035. package/lib/react-server/serverNoSSR.cjs.map +0 -1
  1036. package/lib/react-server/serverSSR.cjs +0 -51
  1037. package/lib/react-server/serverSSR.cjs.map +0 -1
  1038. package/lib/react-server/serverUtil.cjs +0 -218
  1039. package/lib/react-server/serverUtil.cjs.map +0 -1
  1040. package/lib/react-theme/ThemeProvider.cjs +0 -33
  1041. package/lib/react-theme/ThemeProvider.cjs.map +0 -1
  1042. package/lib/react-theme/createTheme.cjs +0 -115
  1043. package/lib/react-theme/createTheme.cjs.map +0 -1
  1044. package/lib/react-theme/index.cjs +0 -110
  1045. package/lib/react-theme/index.cjs.map +0 -1
  1046. package/lib/react-theme/types.cjs +0 -2
  1047. package/lib/react-theme/types.cjs.map +0 -1
  1048. package/lib/react-theme/useTheme.cjs +0 -15
  1049. package/lib/react-theme/useTheme.cjs.map +0 -1
  1050. package/lib/react-theme/utils/background.cjs +0 -21
  1051. package/lib/react-theme/utils/background.cjs.map +0 -1
  1052. package/lib/react-theme/utils/colors.cjs +0 -45
  1053. package/lib/react-theme/utils/colors.cjs.map +0 -1
  1054. package/lib/react-theme/utils/contrast.cjs +0 -95
  1055. package/lib/react-theme/utils/contrast.cjs.map +0 -1
  1056. package/lib/react-theme/utils/corners.cjs +0 -34
  1057. package/lib/react-theme/utils/corners.cjs.map +0 -1
  1058. package/lib/react-theme/utils/spacers.cjs +0 -89
  1059. package/lib/react-theme/utils/spacers.cjs.map +0 -1
  1060. package/lib/react-theme/utils/themeProps.cjs +0 -75
  1061. package/lib/react-theme/utils/themeProps.cjs.map +0 -1
  1062. package/lib/redux/_i18n/I18nActions.cjs +0 -37
  1063. package/lib/redux/_i18n/I18nActions.cjs.map +0 -1
  1064. package/lib/redux/_i18n/I18nReducer.cjs +0 -78
  1065. package/lib/redux/_i18n/I18nReducer.cjs.map +0 -1
  1066. package/lib/redux/_i18n/index.cjs +0 -29
  1067. package/lib/redux/_i18n/index.cjs.map +0 -1
  1068. package/lib/redux/_i18n/types.cjs +0 -2
  1069. package/lib/redux/_i18n/types.cjs.map +0 -1
  1070. package/lib/redux/_modularui/ModularUIActions.cjs +0 -168
  1071. package/lib/redux/_modularui/ModularUIActions.cjs.map +0 -1
  1072. package/lib/redux/_modularui/ModularUIConnector.cjs +0 -123
  1073. package/lib/redux/_modularui/ModularUIConnector.cjs.map +0 -1
  1074. package/lib/redux/_modularui/ModularUIMiddleware.cjs +0 -107
  1075. package/lib/redux/_modularui/ModularUIMiddleware.cjs.map +0 -1
  1076. package/lib/redux/_modularui/ModularUIReducer.cjs +0 -157
  1077. package/lib/redux/_modularui/ModularUIReducer.cjs.map +0 -1
  1078. package/lib/redux/_modularui/ModularUISelectors.cjs +0 -270
  1079. package/lib/redux/_modularui/ModularUISelectors.cjs.map +0 -1
  1080. package/lib/redux/_modularui/ModularUIUtils.cjs +0 -83
  1081. package/lib/redux/_modularui/ModularUIUtils.cjs.map +0 -1
  1082. package/lib/redux/_modularui/index.cjs +0 -86
  1083. package/lib/redux/_modularui/index.cjs.map +0 -1
  1084. package/lib/redux/_modularui/types.cjs +0 -2
  1085. package/lib/redux/_modularui/types.cjs.map +0 -1
  1086. package/lib/redux/_modularui/withModularUI.cjs +0 -41
  1087. package/lib/redux/_modularui/withModularUI.cjs.map +0 -1
  1088. package/lib/redux/_router/RouterActions.cjs +0 -67
  1089. package/lib/redux/_router/RouterActions.cjs.map +0 -1
  1090. package/lib/redux/_router/RouterConnectors.cjs +0 -42
  1091. package/lib/redux/_router/RouterConnectors.cjs.map +0 -1
  1092. package/lib/redux/_router/RouterMiddleware.cjs +0 -38
  1093. package/lib/redux/_router/RouterMiddleware.cjs.map +0 -1
  1094. package/lib/redux/_router/RouterReducer.cjs +0 -22
  1095. package/lib/redux/_router/RouterReducer.cjs.map +0 -1
  1096. package/lib/redux/_router/index.cjs +0 -51
  1097. package/lib/redux/_router/index.cjs.map +0 -1
  1098. package/lib/redux/_router/types.cjs +0 -2
  1099. package/lib/redux/_router/types.cjs.map +0 -1
  1100. package/lib/redux/actions/Application.cjs +0 -38
  1101. package/lib/redux/actions/Application.cjs.map +0 -1
  1102. package/lib/redux/actions/Authorization.cjs +0 -55
  1103. package/lib/redux/actions/Authorization.cjs.map +0 -1
  1104. package/lib/redux/actions/Error.cjs +0 -74
  1105. package/lib/redux/actions/Error.cjs.map +0 -1
  1106. package/lib/redux/actions/Form.cjs +0 -39
  1107. package/lib/redux/actions/Form.cjs.map +0 -1
  1108. package/lib/redux/actions/FormAttributeSet.cjs +0 -69
  1109. package/lib/redux/actions/FormAttributeSet.cjs.map +0 -1
  1110. package/lib/redux/actions/FormAttributeSetRepeatable.cjs +0 -35
  1111. package/lib/redux/actions/FormAttributeSetRepeatable.cjs.map +0 -1
  1112. package/lib/redux/actions/FormAutosave.cjs +0 -60
  1113. package/lib/redux/actions/FormAutosave.cjs.map +0 -1
  1114. package/lib/redux/actions/FormAutosubmit.cjs +0 -38
  1115. package/lib/redux/actions/FormAutosubmit.cjs.map +0 -1
  1116. package/lib/redux/actions/FormAutoupdate.cjs +0 -37
  1117. package/lib/redux/actions/FormAutoupdate.cjs.map +0 -1
  1118. package/lib/redux/actions/FormValidations.cjs +0 -51
  1119. package/lib/redux/actions/FormValidations.cjs.map +0 -1
  1120. package/lib/redux/actions/Modals.cjs +0 -22
  1121. package/lib/redux/actions/Modals.cjs.map +0 -1
  1122. package/lib/redux/actions/ModelCatalog.cjs +0 -15
  1123. package/lib/redux/actions/ModelCatalog.cjs.map +0 -1
  1124. package/lib/redux/actions/Notification.cjs +0 -76
  1125. package/lib/redux/actions/Notification.cjs.map +0 -1
  1126. package/lib/redux/actions/Preferences.cjs +0 -128
  1127. package/lib/redux/actions/Preferences.cjs.map +0 -1
  1128. package/lib/redux/actions/ProgressIndicator.cjs +0 -42
  1129. package/lib/redux/actions/ProgressIndicator.cjs.map +0 -1
  1130. package/lib/redux/actions/SignIn.cjs +0 -90
  1131. package/lib/redux/actions/SignIn.cjs.map +0 -1
  1132. package/lib/redux/actions/SignOut.cjs +0 -30
  1133. package/lib/redux/actions/SignOut.cjs.map +0 -1
  1134. package/lib/redux/actions/index.cjs +0 -183
  1135. package/lib/redux/actions/index.cjs.map +0 -1
  1136. package/lib/redux/connectors/Application.cjs +0 -14
  1137. package/lib/redux/connectors/Application.cjs.map +0 -1
  1138. package/lib/redux/connectors/Breadcrumb.cjs +0 -16
  1139. package/lib/redux/connectors/Breadcrumb.cjs.map +0 -1
  1140. package/lib/redux/connectors/CaseView.cjs +0 -19
  1141. package/lib/redux/connectors/CaseView.cjs.map +0 -1
  1142. package/lib/redux/connectors/ConceptDetail.cjs +0 -20
  1143. package/lib/redux/connectors/ConceptDetail.cjs.map +0 -1
  1144. package/lib/redux/connectors/ContentBrowser.cjs +0 -19
  1145. package/lib/redux/connectors/ContentBrowser.cjs.map +0 -1
  1146. package/lib/redux/connectors/ContentDetail.cjs +0 -20
  1147. package/lib/redux/connectors/ContentDetail.cjs.map +0 -1
  1148. package/lib/redux/connectors/ContentDetailSection.cjs +0 -22
  1149. package/lib/redux/connectors/ContentDetailSection.cjs.map +0 -1
  1150. package/lib/redux/connectors/Form.cjs +0 -43
  1151. package/lib/redux/connectors/Form.cjs.map +0 -1
  1152. package/lib/redux/connectors/FormAttributeSet.cjs +0 -27
  1153. package/lib/redux/connectors/FormAttributeSet.cjs.map +0 -1
  1154. package/lib/redux/connectors/ListDetail.cjs +0 -21
  1155. package/lib/redux/connectors/ListDetail.cjs.map +0 -1
  1156. package/lib/redux/connectors/Modal.cjs +0 -27
  1157. package/lib/redux/connectors/Modal.cjs.map +0 -1
  1158. package/lib/redux/connectors/ModelCatalog.cjs +0 -19
  1159. package/lib/redux/connectors/ModelCatalog.cjs.map +0 -1
  1160. package/lib/redux/connectors/Notification.cjs +0 -22
  1161. package/lib/redux/connectors/Notification.cjs.map +0 -1
  1162. package/lib/redux/connectors/PanelRenderer.cjs +0 -29
  1163. package/lib/redux/connectors/PanelRenderer.cjs.map +0 -1
  1164. package/lib/redux/connectors/Preferences.cjs +0 -29
  1165. package/lib/redux/connectors/Preferences.cjs.map +0 -1
  1166. package/lib/redux/connectors/Progress.cjs +0 -19
  1167. package/lib/redux/connectors/Progress.cjs.map +0 -1
  1168. package/lib/redux/connectors/ProgressIndicator.cjs +0 -19
  1169. package/lib/redux/connectors/ProgressIndicator.cjs.map +0 -1
  1170. package/lib/redux/connectors/QuickSearch.cjs +0 -27
  1171. package/lib/redux/connectors/QuickSearch.cjs.map +0 -1
  1172. package/lib/redux/connectors/SignIn.cjs +0 -24
  1173. package/lib/redux/connectors/SignIn.cjs.map +0 -1
  1174. package/lib/redux/connectors/SignOut.cjs +0 -20
  1175. package/lib/redux/connectors/SignOut.cjs.map +0 -1
  1176. package/lib/redux/connectors/Tab.cjs +0 -19
  1177. package/lib/redux/connectors/Tab.cjs.map +0 -1
  1178. package/lib/redux/connectors/index.cjs +0 -153
  1179. package/lib/redux/connectors/index.cjs.map +0 -1
  1180. package/lib/redux/index.cjs +0 -102
  1181. package/lib/redux/index.cjs.map +0 -1
  1182. package/lib/redux/reducers/AuthReducer.cjs +0 -59
  1183. package/lib/redux/reducers/AuthReducer.cjs.map +0 -1
  1184. package/lib/redux/reducers/ErrorReducer.cjs +0 -22
  1185. package/lib/redux/reducers/ErrorReducer.cjs.map +0 -1
  1186. package/lib/redux/reducers/ModalsReducer.cjs +0 -58
  1187. package/lib/redux/reducers/ModalsReducer.cjs.map +0 -1
  1188. package/lib/redux/reducers/ModelCatalogReducer.cjs +0 -34
  1189. package/lib/redux/reducers/ModelCatalogReducer.cjs.map +0 -1
  1190. package/lib/redux/reducers/NotificationReducer.cjs +0 -43
  1191. package/lib/redux/reducers/NotificationReducer.cjs.map +0 -1
  1192. package/lib/redux/reducers/PreferencesReducer.cjs +0 -30
  1193. package/lib/redux/reducers/PreferencesReducer.cjs.map +0 -1
  1194. package/lib/redux/reducers/ProgressIndicatorReducer.cjs +0 -55
  1195. package/lib/redux/reducers/ProgressIndicatorReducer.cjs.map +0 -1
  1196. package/lib/redux/reducers/createReducer.cjs +0 -33
  1197. package/lib/redux/reducers/createReducer.cjs.map +0 -1
  1198. package/lib/redux/reducers/index.cjs +0 -78
  1199. package/lib/redux/reducers/index.cjs.map +0 -1
  1200. package/lib/redux/selectors/i18n.cjs +0 -20
  1201. package/lib/redux/selectors/i18n.cjs.map +0 -1
  1202. package/lib/redux/selectors/index.cjs +0 -29
  1203. package/lib/redux/selectors/index.cjs.map +0 -1
  1204. package/lib/redux/selectors/modelcatalog.cjs +0 -14
  1205. package/lib/redux/selectors/modelcatalog.cjs.map +0 -1
  1206. package/lib/redux/store/beforeRenderHooks.cjs +0 -24
  1207. package/lib/redux/store/beforeRenderHooks.cjs.map +0 -1
  1208. package/lib/redux/store/configureStore.cjs +0 -42
  1209. package/lib/redux/store/configureStore.cjs.map +0 -1
  1210. package/lib/redux/types.cjs +0 -2
  1211. package/lib/redux/types.cjs.map +0 -1
  1212. package/lib/utils/browser/Cache.cjs +0 -151
  1213. package/lib/utils/browser/Cache.cjs.map +0 -1
  1214. package/lib/utils/browser/Cookies.cjs +0 -38
  1215. package/lib/utils/browser/Cookies.cjs.map +0 -1
  1216. package/lib/utils/datetime/DateTimeUtil.cjs +0 -648
  1217. package/lib/utils/datetime/DateTimeUtil.cjs.map +0 -1
  1218. package/lib/utils/fetch/serverFetch.cjs +0 -32
  1219. package/lib/utils/fetch/serverFetch.cjs.map +0 -1
  1220. package/lib/utils/fetch/types.cjs +0 -2
  1221. package/lib/utils/fetch/types.cjs.map +0 -1
  1222. package/lib/utils/fetch/universalFetch.cjs +0 -94
  1223. package/lib/utils/fetch/universalFetch.cjs.map +0 -1
  1224. package/lib/utils/fetch/xhr.cjs +0 -358
  1225. package/lib/utils/fetch/xhr.cjs.map +0 -1
  1226. package/lib/utils/helpers/checkResource.cjs +0 -46
  1227. package/lib/utils/helpers/checkResource.cjs.map +0 -1
  1228. package/lib/utils/helpers/createHash.cjs +0 -28
  1229. package/lib/utils/helpers/createHash.cjs.map +0 -1
  1230. package/lib/utils/helpers/createHref.cjs +0 -101
  1231. package/lib/utils/helpers/createHref.cjs.map +0 -1
  1232. package/lib/utils/helpers/createUUID.cjs +0 -18
  1233. package/lib/utils/helpers/createUUID.cjs.map +0 -1
  1234. package/lib/utils/helpers/index.cjs +0 -102
  1235. package/lib/utils/helpers/index.cjs.map +0 -1
  1236. package/lib/utils/helpers/objects.cjs +0 -36
  1237. package/lib/utils/helpers/objects.cjs.map +0 -1
  1238. package/lib/utils/helpers/repositoryResource.cjs +0 -26
  1239. package/lib/utils/helpers/repositoryResource.cjs.map +0 -1
  1240. package/lib/utils/helpers/sanitizeHtml.cjs +0 -44
  1241. package/lib/utils/helpers/sanitizeHtml.cjs.map +0 -1
  1242. package/lib/utils/helpers/text.cjs +0 -23
  1243. package/lib/utils/helpers/text.cjs.map +0 -1
  1244. package/lib/utils/index.cjs +0 -106
  1245. package/lib/utils/index.cjs.map +0 -1
  1246. package/lib/utils/number/DecimalFormat.cjs +0 -333
  1247. package/lib/utils/number/DecimalFormat.cjs.map +0 -1
  1248. package/lib/utils/number/formatValue.cjs +0 -47
  1249. package/lib/utils/number/formatValue.cjs.map +0 -1
  1250. package/lib/utils/number/parseNumbers.cjs +0 -70
  1251. package/lib/utils/number/parseNumbers.cjs.map +0 -1
  1252. package/models/package.json +0 -12
  1253. package/modularui/package.json +0 -12
  1254. package/react/package.json +0 -12
  1255. package/react-client/package.json +0 -12
  1256. package/react-server/package.json +0 -12
  1257. package/react-theme/package.json +0 -12
  1258. package/redux/package.json +0 -12
  1259. package/tsconfig.json +0 -29
  1260. package/utils/package.json +0 -12
  1261. /package/lib/builder/{index.d.cts → index.d.ts} +0 -0
  1262. /package/lib/builder/{mergeLayoutHintConfigurations.d.cts → mergeLayoutHintConfigurations.d.ts} +0 -0
  1263. /package/lib/constants/{Constants.d.cts → Constants.d.ts} +0 -0
  1264. /package/lib/constants/{LayoutHintConfig.d.cts → LayoutHintConfig.d.ts} +0 -0
  1265. /package/lib/constants/{LayoutHints.d.cts → LayoutHints.d.ts} +0 -0
  1266. /package/lib/constants/{Settings.d.cts → Settings.d.ts} +0 -0
  1267. /package/lib/constants/{index.d.cts → index.d.ts} +0 -0
  1268. /package/lib/exceptions/{ConfigurationException.d.cts → ConfigurationException.d.ts} +0 -0
  1269. /package/lib/exceptions/{FetchException.d.cts → FetchException.d.ts} +0 -0
  1270. /package/lib/exceptions/{IllegalArgumentException.d.cts → IllegalArgumentException.d.ts} +0 -0
  1271. /package/lib/exceptions/{IllegalReturnException.d.cts → IllegalReturnException.d.ts} +0 -0
  1272. /package/lib/exceptions/{IllegalStateException.d.cts → IllegalStateException.d.ts} +0 -0
  1273. /package/lib/exceptions/{JsonParseException.d.cts → JsonParseException.d.ts} +0 -0
  1274. /package/lib/exceptions/{MissingPropertyException.d.cts → MissingPropertyException.d.ts} +0 -0
  1275. /package/lib/exceptions/{NetworkException.d.cts → NetworkException.d.ts} +0 -0
  1276. /package/lib/exceptions/{NotAllowedUriException.d.cts → NotAllowedUriException.d.ts} +0 -0
  1277. /package/lib/exceptions/{NotFoundException.d.cts → NotFoundException.d.ts} +0 -0
  1278. /package/lib/exceptions/{ServerRequestException.d.cts → ServerRequestException.d.ts} +0 -0
  1279. /package/lib/exceptions/{ThemePropertyException.d.cts → ThemePropertyException.d.ts} +0 -0
  1280. /package/lib/exceptions/{TimeoutException.d.cts → TimeoutException.d.ts} +0 -0
  1281. /package/lib/exceptions/{UnauthorizedException.d.cts → UnauthorizedException.d.ts} +0 -0
  1282. /package/lib/exceptions/{UnsupportedOperationException.d.cts → UnsupportedOperationException.d.ts} +0 -0
  1283. /package/lib/exceptions/{index.d.cts → index.d.ts} +0 -0
  1284. /package/lib/hooks/{index.d.cts → index.d.ts} +0 -0
  1285. /package/lib/hooks/{useAllFormsOnModel.d.cts → useAllFormsOnModel.d.ts} +0 -0
  1286. /package/lib/hooks/{useAuthentication.d.cts → useAuthentication.d.ts} +0 -0
  1287. /package/lib/hooks/{useContent.d.cts → useContent.d.ts} +0 -0
  1288. /package/lib/hooks/{useDeepCompareEffect.d.cts → useDeepCompareEffect.d.ts} +0 -0
  1289. /package/lib/hooks/{useForm.d.cts → useForm.d.ts} +0 -0
  1290. /package/lib/hooks/{useI18n.d.cts → useI18n.d.ts} +0 -0
  1291. /package/lib/hooks/{useModal.d.cts → useModal.d.ts} +0 -0
  1292. /package/lib/hooks/{useModelCatalog.d.cts → useModelCatalog.d.ts} +0 -0
  1293. /package/lib/hooks/{useModels.d.cts → useModels.d.ts} +0 -0
  1294. /package/lib/hooks/{useModularUI.d.cts → useModularUI.d.ts} +0 -0
  1295. /package/lib/hooks/{useModularUIBasic.d.cts → useModularUIBasic.d.ts} +0 -0
  1296. /package/lib/hooks/{useModularUIModel.d.cts → useModularUIModel.d.ts} +0 -0
  1297. /package/lib/hooks/{useModularUIRequest.d.cts → useModularUIRequest.d.ts} +0 -0
  1298. /package/lib/hooks/{useNotification.d.cts → useNotification.d.ts} +0 -0
  1299. /package/lib/hooks/{usePreference.d.cts → usePreference.d.ts} +0 -0
  1300. /package/lib/hooks/{useProgressIndicator.d.cts → useProgressIndicator.d.ts} +0 -0
  1301. /package/lib/hooks/{useRouter.d.cts → useRouter.d.ts} +0 -0
  1302. /package/lib/i18n/{Locale.d.cts → Locale.d.ts} +0 -0
  1303. /package/lib/i18n/{Locales.d.cts → Locales.d.ts} +0 -0
  1304. /package/lib/i18n/{Message.d.cts → Message.d.ts} +0 -0
  1305. /package/lib/i18n/{index.d.cts → index.d.ts} +0 -0
  1306. /package/lib/i18n/{languages.d.cts → languages.d.ts} +0 -0
  1307. /package/lib/i18n/translations/{beinformed_error_messages_en.nl.d.cts → beinformed_error_messages_en.nl.d.ts} +0 -0
  1308. /package/lib/i18n/translations/{beinformed_error_messages_nl.nl.d.cts → beinformed_error_messages_nl.nl.d.ts} +0 -0
  1309. /package/lib/i18n/{types.d.cts → types.d.ts} +0 -0
  1310. /package/lib/i18n/{withMessage.d.cts → withMessage.d.ts} +0 -0
  1311. /package/lib/{index.d.cts → index.d.ts} +0 -0
  1312. /package/lib/models/actions/{ActionCollection.d.cts → ActionCollection.d.ts} +0 -0
  1313. /package/lib/models/actions/{ActionModel.d.cts → ActionModel.d.ts} +0 -0
  1314. /package/lib/models/application/{ApplicationModel.d.cts → ApplicationModel.d.ts} +0 -0
  1315. /package/lib/models/attributes/{AttributeCollection.d.cts → AttributeCollection.d.ts} +0 -0
  1316. /package/lib/models/attributes/{AttributeContent.d.cts → AttributeContent.d.ts} +0 -0
  1317. /package/lib/models/attributes/{AttributeDataHelper.d.cts → AttributeDataHelper.d.ts} +0 -0
  1318. /package/lib/models/attributes/{AttributeModel.d.cts → AttributeModel.d.ts} +0 -0
  1319. /package/lib/models/attributes/{AttributeSetModel.d.cts → AttributeSetModel.d.ts} +0 -0
  1320. /package/lib/models/attributes/{BooleanAttributeModel.d.cts → BooleanAttributeModel.d.ts} +0 -0
  1321. /package/lib/models/attributes/{CaptchaAttributeModel.d.cts → CaptchaAttributeModel.d.ts} +0 -0
  1322. /package/lib/models/attributes/{ChoiceAttributeModel.d.cts → ChoiceAttributeModel.d.ts} +0 -0
  1323. /package/lib/models/attributes/{ChoiceAttributeOptionCollection.d.cts → ChoiceAttributeOptionCollection.d.ts} +0 -0
  1324. /package/lib/models/attributes/{ChoiceAttributeOptionModel.d.cts → ChoiceAttributeOptionModel.d.ts} +0 -0
  1325. /package/lib/models/attributes/{CompositeAttributeChildCollection.d.cts → CompositeAttributeChildCollection.d.ts} +0 -0
  1326. /package/lib/models/attributes/{CompositeAttributeModel.d.cts → CompositeAttributeModel.d.ts} +0 -0
  1327. /package/lib/models/attributes/{DatetimeAttributeModel.d.cts → DatetimeAttributeModel.d.ts} +0 -0
  1328. /package/lib/models/attributes/{HelptextAttributeModel.d.cts → HelptextAttributeModel.d.ts} +0 -0
  1329. /package/lib/models/attributes/{LabelAttributeModel.d.cts → LabelAttributeModel.d.ts} +0 -0
  1330. /package/lib/models/attributes/{MemoAttributeModel.d.cts → MemoAttributeModel.d.ts} +0 -0
  1331. /package/lib/models/attributes/{MoneyAttributeModel.d.cts → MoneyAttributeModel.d.ts} +0 -0
  1332. /package/lib/models/attributes/{NumberAttributeModel.d.cts → NumberAttributeModel.d.ts} +0 -0
  1333. /package/lib/models/attributes/{PasswordAttributeModel.d.cts → PasswordAttributeModel.d.ts} +0 -0
  1334. /package/lib/models/attributes/{StringAttributeModel.d.cts → StringAttributeModel.d.ts} +0 -0
  1335. /package/lib/models/attributes/{UploadAttributeModel.d.cts → UploadAttributeModel.d.ts} +0 -0
  1336. /package/lib/models/attributes/{XMLAttributeModel.d.cts → XMLAttributeModel.d.ts} +0 -0
  1337. /package/lib/models/attributes/{_createAttribute.d.cts → _createAttribute.d.ts} +0 -0
  1338. /package/lib/models/attributes/input-constraints/{BSNConstraint.d.cts → BSNConstraint.d.ts} +0 -0
  1339. /package/lib/models/attributes/input-constraints/{ConstraintCollection.d.cts → ConstraintCollection.d.ts} +0 -0
  1340. /package/lib/models/attributes/input-constraints/{ConstraintModel.d.cts → ConstraintModel.d.ts} +0 -0
  1341. /package/lib/models/attributes/input-constraints/{DateBoundaryConstraint.d.cts → DateBoundaryConstraint.d.ts} +0 -0
  1342. /package/lib/models/attributes/input-constraints/{DateTimeDateFormatConstraint.d.cts → DateTimeDateFormatConstraint.d.ts} +0 -0
  1343. /package/lib/models/attributes/input-constraints/{DateTimeTimeFormatConstraint.d.cts → DateTimeTimeFormatConstraint.d.ts} +0 -0
  1344. /package/lib/models/attributes/input-constraints/{DatetimeFormatConstraint.d.cts → DatetimeFormatConstraint.d.ts} +0 -0
  1345. /package/lib/models/attributes/input-constraints/{FileExtensionConstraint.d.cts → FileExtensionConstraint.d.ts} +0 -0
  1346. /package/lib/models/attributes/input-constraints/{FileSizeConstraint.d.cts → FileSizeConstraint.d.ts} +0 -0
  1347. /package/lib/models/attributes/input-constraints/{IBANConstraint.d.cts → IBANConstraint.d.ts} +0 -0
  1348. /package/lib/models/attributes/input-constraints/{MandatoryConstraint.d.cts → MandatoryConstraint.d.ts} +0 -0
  1349. /package/lib/models/attributes/input-constraints/{MandatoryRangeConstraint.d.cts → MandatoryRangeConstraint.d.ts} +0 -0
  1350. /package/lib/models/attributes/input-constraints/{NumberBoundaryConstraint.d.cts → NumberBoundaryConstraint.d.ts} +0 -0
  1351. /package/lib/models/attributes/input-constraints/{NumberFormatConstraint.d.cts → NumberFormatConstraint.d.ts} +0 -0
  1352. /package/lib/models/attributes/input-constraints/{NumberGroupingConstraint.d.cts → NumberGroupingConstraint.d.ts} +0 -0
  1353. /package/lib/models/attributes/input-constraints/{PasswordConfirmConstraint.d.cts → PasswordConfirmConstraint.d.ts} +0 -0
  1354. /package/lib/models/attributes/input-constraints/{PasswordLowerAndUpperCaseConstraint.d.cts → PasswordLowerAndUpperCaseConstraint.d.ts} +0 -0
  1355. /package/lib/models/attributes/input-constraints/{PasswordMinNumericCharactersConstraint.d.cts → PasswordMinNumericCharactersConstraint.d.ts} +0 -0
  1356. /package/lib/models/attributes/input-constraints/{PasswordMinSpecialCharactersConstraint.d.cts → PasswordMinSpecialCharactersConstraint.d.ts} +0 -0
  1357. /package/lib/models/attributes/input-constraints/{PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.cts → PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts} +0 -0
  1358. /package/lib/models/attributes/input-constraints/{RangeConstraint.d.cts → RangeConstraint.d.ts} +0 -0
  1359. /package/lib/models/attributes/input-constraints/{RegexConstraint.d.cts → RegexConstraint.d.ts} +0 -0
  1360. /package/lib/models/attributes/input-constraints/{StringLengthConstraint.d.cts → StringLengthConstraint.d.ts} +0 -0
  1361. /package/lib/models/attributes/input-constraints/{XMLConstraint.d.cts → XMLConstraint.d.ts} +0 -0
  1362. /package/lib/models/attributes/layouthint-rules/{BaseLayoutHintRule.d.cts → BaseLayoutHintRule.d.ts} +0 -0
  1363. /package/lib/models/attributes/layouthint-rules/{DependentAttribute.d.cts → DependentAttribute.d.ts} +0 -0
  1364. /package/lib/models/attributes/layouthint-rules/{LayoutHintRuleCollection.d.cts → LayoutHintRuleCollection.d.ts} +0 -0
  1365. /package/lib/models/attributes/layouthint-rules/{RemainingTotalUploadSize.d.cts → RemainingTotalUploadSize.d.ts} +0 -0
  1366. /package/lib/models/base/{BaseCollection.d.cts → BaseCollection.d.ts} +0 -0
  1367. /package/lib/models/base/{BaseModel.d.cts → BaseModel.d.ts} +0 -0
  1368. /package/lib/models/base/{ResourceCollection.d.cts → ResourceCollection.d.ts} +0 -0
  1369. /package/lib/models/base/{ResourceModel.d.cts → ResourceModel.d.ts} +0 -0
  1370. /package/lib/models/caseview/{CaseViewModel.d.cts → CaseViewModel.d.ts} +0 -0
  1371. /package/lib/models/concepts/{BusinessScenarioModel.d.cts → BusinessScenarioModel.d.ts} +0 -0
  1372. /package/lib/models/concepts/{ConceptDetailModel.d.cts → ConceptDetailModel.d.ts} +0 -0
  1373. /package/lib/models/concepts/{ConceptIndexModel.d.cts → ConceptIndexModel.d.ts} +0 -0
  1374. /package/lib/models/concepts/{ConceptLinkModel.d.cts → ConceptLinkModel.d.ts} +0 -0
  1375. /package/lib/models/concepts/{ConceptRelationCollection.d.cts → ConceptRelationCollection.d.ts} +0 -0
  1376. /package/lib/models/concepts/{ConceptRelationModel.d.cts → ConceptRelationModel.d.ts} +0 -0
  1377. /package/lib/models/concepts/{ConceptTypeDetailModel.d.cts → ConceptTypeDetailModel.d.ts} +0 -0
  1378. /package/lib/models/concepts/{SourceReferenceCollection.d.cts → SourceReferenceCollection.d.ts} +0 -0
  1379. /package/lib/models/concepts/{SourceReferenceModel.d.cts → SourceReferenceModel.d.ts} +0 -0
  1380. /package/lib/models/content/{ContentIndexModel.d.cts → ContentIndexModel.d.ts} +0 -0
  1381. /package/lib/models/content/{ContentLinkModel.d.cts → ContentLinkModel.d.ts} +0 -0
  1382. /package/lib/models/content/{ContentModel.d.cts → ContentModel.d.ts} +0 -0
  1383. /package/lib/models/content/{ContentTOCModel.d.cts → ContentTOCModel.d.ts} +0 -0
  1384. /package/lib/models/content/{ContentTypeModel.d.cts → ContentTypeModel.d.ts} +0 -0
  1385. /package/lib/models/content/{SectionModel.d.cts → SectionModel.d.ts} +0 -0
  1386. /package/lib/models/content/{SubSectionModel.d.cts → SubSectionModel.d.ts} +0 -0
  1387. /package/lib/models/contentconfiguration/{ContentConfiguration.d.cts → ContentConfiguration.d.ts} +0 -0
  1388. /package/lib/models/contentconfiguration/{ContentConfigurationElements.d.cts → ContentConfigurationElements.d.ts} +0 -0
  1389. /package/lib/models/contentconfiguration/{ContentConfigurationEndResults.d.cts → ContentConfigurationEndResults.d.ts} +0 -0
  1390. /package/lib/models/contentconfiguration/{ContentConfigurationQuestions.d.cts → ContentConfigurationQuestions.d.ts} +0 -0
  1391. /package/lib/models/contentconfiguration/{ContentConfigurationResults.d.cts → ContentConfigurationResults.d.ts} +0 -0
  1392. /package/lib/models/detail/{DetailModel.d.cts → DetailModel.d.ts} +0 -0
  1393. /package/lib/models/error/{ErrorCollection.d.cts → ErrorCollection.d.ts} +0 -0
  1394. /package/lib/models/error/{ErrorModel.d.cts → ErrorModel.d.ts} +0 -0
  1395. /package/lib/models/error/{ErrorResponse.d.cts → ErrorResponse.d.ts} +0 -0
  1396. /package/lib/models/filters/{AssignmentFilterModel.d.cts → AssignmentFilterModel.d.ts} +0 -0
  1397. /package/lib/models/filters/{BaseFilterModel.d.cts → BaseFilterModel.d.ts} +0 -0
  1398. /package/lib/models/filters/{ConceptIndexFilterModel.d.cts → ConceptIndexFilterModel.d.ts} +0 -0
  1399. /package/lib/models/filters/{FilterCollection.d.cts → FilterCollection.d.ts} +0 -0
  1400. /package/lib/models/filters/{FilterModel.d.cts → FilterModel.d.ts} +0 -0
  1401. /package/lib/models/filters/{RangeFilterModel.d.cts → RangeFilterModel.d.ts} +0 -0
  1402. /package/lib/models/filters/{StringFilterModel.d.cts → StringFilterModel.d.ts} +0 -0
  1403. /package/lib/models/form/{FormModel.d.cts → FormModel.d.ts} +0 -0
  1404. /package/lib/models/form/{FormObjectModel.d.cts → FormObjectModel.d.ts} +0 -0
  1405. /package/lib/models/grouping/{GroupingModel.d.cts → GroupingModel.d.ts} +0 -0
  1406. /package/lib/models/href/{Href.d.cts → Href.d.ts} +0 -0
  1407. /package/lib/models/href/{ListHref.d.cts → ListHref.d.ts} +0 -0
  1408. /package/lib/models/{index.d.cts → index.d.ts} +0 -0
  1409. /package/lib/models/layouthint/{LayoutHintCollection.d.cts → LayoutHintCollection.d.ts} +0 -0
  1410. /package/lib/models/links/{LinkCollection.d.cts → LinkCollection.d.ts} +0 -0
  1411. /package/lib/models/links/{LinkModel.d.cts → LinkModel.d.ts} +0 -0
  1412. /package/lib/models/links/{normalizeLinkJSON.d.cts → normalizeLinkJSON.d.ts} +0 -0
  1413. /package/lib/models/list/{ListDetailModel.d.cts → ListDetailModel.d.ts} +0 -0
  1414. /package/lib/models/list/{ListHeaderModel.d.cts → ListHeaderModel.d.ts} +0 -0
  1415. /package/lib/models/list/{ListItemCollection.d.cts → ListItemCollection.d.ts} +0 -0
  1416. /package/lib/models/list/{ListItemModel.d.cts → ListItemModel.d.ts} +0 -0
  1417. /package/lib/models/list/{ListModel.d.cts → ListModel.d.ts} +0 -0
  1418. /package/lib/models/lookup/{LookupOptionCollection.d.cts → LookupOptionCollection.d.ts} +0 -0
  1419. /package/lib/models/lookup/{LookupOptionsModel.d.cts → LookupOptionsModel.d.ts} +0 -0
  1420. /package/lib/models/modelcatalog/{ModelCatalogModel.d.cts → ModelCatalogModel.d.ts} +0 -0
  1421. /package/lib/models/modelcatalog/{ModelCategoryCollection.d.cts → ModelCategoryCollection.d.ts} +0 -0
  1422. /package/lib/models/modelcatalog/{ModelCategoryModel.d.cts → ModelCategoryModel.d.ts} +0 -0
  1423. /package/lib/models/paging/{PagesizeModel.d.cts → PagesizeModel.d.ts} +0 -0
  1424. /package/lib/models/paging/{PagingModel.d.cts → PagingModel.d.ts} +0 -0
  1425. /package/lib/models/panels/{GroupingPanelModel.d.cts → GroupingPanelModel.d.ts} +0 -0
  1426. /package/lib/models/parameter/{Parameter.d.cts → Parameter.d.ts} +0 -0
  1427. /package/lib/models/process/{ProcessStatusSettingsModel.d.cts → ProcessStatusSettingsModel.d.ts} +0 -0
  1428. /package/lib/models/{resolveModel.d.cts → resolveModel.d.ts} +0 -0
  1429. /package/lib/models/search/{CaseSearchModel.d.cts → CaseSearchModel.d.ts} +0 -0
  1430. /package/lib/models/sorting/{SortOptionModel.d.cts → SortOptionModel.d.ts} +0 -0
  1431. /package/lib/models/sorting/{SortingModel.d.cts → SortingModel.d.ts} +0 -0
  1432. /package/lib/models/tab/{TabModel.d.cts → TabModel.d.ts} +0 -0
  1433. /package/lib/models/taskgroup/{TaskGroupCollection.d.cts → TaskGroupCollection.d.ts} +0 -0
  1434. /package/lib/models/taskgroup/{TaskGroupModel.d.cts → TaskGroupModel.d.ts} +0 -0
  1435. /package/lib/models/{types.d.cts → types.d.ts} +0 -0
  1436. /package/lib/models/user/{UserModel.d.cts → UserModel.d.ts} +0 -0
  1437. /package/lib/models/user/{UserProfileModel.d.cts → UserProfileModel.d.ts} +0 -0
  1438. /package/lib/models/user/{UserServicesModel.d.cts → UserServicesModel.d.ts} +0 -0
  1439. /package/lib/modularui/{Authenticate.d.cts → Authenticate.d.ts} +0 -0
  1440. /package/lib/modularui/{CaptchaRequest.d.cts → CaptchaRequest.d.ts} +0 -0
  1441. /package/lib/modularui/{ModularUIError.d.cts → ModularUIError.d.ts} +0 -0
  1442. /package/lib/modularui/{ModularUIRequest.d.cts → ModularUIRequest.d.ts} +0 -0
  1443. /package/lib/modularui/{ModularUIResponse.d.cts → ModularUIResponse.d.ts} +0 -0
  1444. /package/lib/modularui/{UploadRequest.d.cts → UploadRequest.d.ts} +0 -0
  1445. /package/lib/modularui/{index.d.cts → index.d.ts} +0 -0
  1446. /package/lib/modularui/{types.d.cts → types.d.ts} +0 -0
  1447. /package/lib/react/{ErrorBoundary.d.cts → ErrorBoundary.d.ts} +0 -0
  1448. /package/lib/react/{ErrorBoundaryFallback.d.cts → ErrorBoundaryFallback.d.ts} +0 -0
  1449. /package/lib/react/{index.d.cts → index.d.ts} +0 -0
  1450. /package/lib/react/{utils.d.cts → utils.d.ts} +0 -0
  1451. /package/lib/react-client/{Init.d.cts → Init.d.ts} +0 -0
  1452. /package/lib/react-client/{client.d.cts → client.d.ts} +0 -0
  1453. /package/lib/react-client/{contextPath.d.cts → contextPath.d.ts} +0 -0
  1454. /package/lib/react-client/{index.d.cts → index.d.ts} +0 -0
  1455. /package/lib/react-client/{rehydrate.d.cts → rehydrate.d.ts} +0 -0
  1456. /package/lib/react-server/{contextPath.d.cts → contextPath.d.ts} +0 -0
  1457. /package/lib/react-server/{createSSRComplete.d.cts → createSSRComplete.d.ts} +0 -0
  1458. /package/lib/react-server/{htmlpage.d.cts → htmlpage.d.ts} +0 -0
  1459. /package/lib/react-server/{index.d.cts → index.d.ts} +0 -0
  1460. /package/lib/react-server/{renderSSRComplete.d.cts → renderSSRComplete.d.ts} +0 -0
  1461. /package/lib/react-server/{renderSSRMinimal.d.cts → renderSSRMinimal.d.ts} +0 -0
  1462. /package/lib/react-server/{requestInformation.d.cts → requestInformation.d.ts} +0 -0
  1463. /package/lib/react-server/{serverNoSSR.d.cts → serverNoSSR.d.ts} +0 -0
  1464. /package/lib/react-server/{serverSSR.d.cts → serverSSR.d.ts} +0 -0
  1465. /package/lib/react-server/{serverUtil.d.cts → serverUtil.d.ts} +0 -0
  1466. /package/lib/react-theme/{ThemeProvider.d.cts → ThemeProvider.d.ts} +0 -0
  1467. /package/lib/react-theme/{createTheme.d.cts → createTheme.d.ts} +0 -0
  1468. /package/lib/react-theme/{index.d.cts → index.d.ts} +0 -0
  1469. /package/lib/react-theme/{types.d.cts → types.d.ts} +0 -0
  1470. /package/lib/react-theme/{useTheme.d.cts → useTheme.d.ts} +0 -0
  1471. /package/lib/react-theme/utils/{background.d.cts → background.d.ts} +0 -0
  1472. /package/lib/react-theme/utils/{colors.d.cts → colors.d.ts} +0 -0
  1473. /package/lib/react-theme/utils/{contrast.d.cts → contrast.d.ts} +0 -0
  1474. /package/lib/react-theme/utils/{corners.d.cts → corners.d.ts} +0 -0
  1475. /package/lib/react-theme/utils/{spacers.d.cts → spacers.d.ts} +0 -0
  1476. /package/lib/react-theme/utils/{themeProps.d.cts → themeProps.d.ts} +0 -0
  1477. /package/lib/redux/_i18n/{I18nActions.d.cts → I18nActions.d.ts} +0 -0
  1478. /package/lib/redux/_i18n/{I18nReducer.d.cts → I18nReducer.d.ts} +0 -0
  1479. /package/lib/redux/_i18n/{index.d.cts → index.d.ts} +0 -0
  1480. /package/lib/redux/_i18n/{types.d.cts → types.d.ts} +0 -0
  1481. /package/lib/redux/_modularui/{ModularUIActions.d.cts → ModularUIActions.d.ts} +0 -0
  1482. /package/lib/redux/_modularui/{ModularUIConnector.d.cts → ModularUIConnector.d.ts} +0 -0
  1483. /package/lib/redux/_modularui/{ModularUIMiddleware.d.cts → ModularUIMiddleware.d.ts} +0 -0
  1484. /package/lib/redux/_modularui/{ModularUIReducer.d.cts → ModularUIReducer.d.ts} +0 -0
  1485. /package/lib/redux/_modularui/{ModularUISelectors.d.cts → ModularUISelectors.d.ts} +0 -0
  1486. /package/lib/redux/_modularui/{ModularUIUtils.d.cts → ModularUIUtils.d.ts} +0 -0
  1487. /package/lib/redux/_modularui/{index.d.cts → index.d.ts} +0 -0
  1488. /package/lib/redux/_modularui/{types.d.cts → types.d.ts} +0 -0
  1489. /package/lib/redux/_modularui/{withModularUI.d.cts → withModularUI.d.ts} +0 -0
  1490. /package/lib/redux/_router/{RouterActions.d.cts → RouterActions.d.ts} +0 -0
  1491. /package/lib/redux/_router/{RouterConnectors.d.cts → RouterConnectors.d.ts} +0 -0
  1492. /package/lib/redux/_router/{RouterMiddleware.d.cts → RouterMiddleware.d.ts} +0 -0
  1493. /package/lib/redux/_router/{RouterReducer.d.cts → RouterReducer.d.ts} +0 -0
  1494. /package/lib/redux/_router/{index.d.cts → index.d.ts} +0 -0
  1495. /package/lib/redux/_router/{types.d.cts → types.d.ts} +0 -0
  1496. /package/lib/redux/actions/{Application.d.cts → Application.d.ts} +0 -0
  1497. /package/lib/redux/actions/{Authorization.d.cts → Authorization.d.ts} +0 -0
  1498. /package/lib/redux/actions/{Error.d.cts → Error.d.ts} +0 -0
  1499. /package/lib/redux/actions/{Form.d.cts → Form.d.ts} +0 -0
  1500. /package/lib/redux/actions/{FormAttributeSet.d.cts → FormAttributeSet.d.ts} +0 -0
  1501. /package/lib/redux/actions/{FormAttributeSetRepeatable.d.cts → FormAttributeSetRepeatable.d.ts} +0 -0
  1502. /package/lib/redux/actions/{FormAutosave.d.cts → FormAutosave.d.ts} +0 -0
  1503. /package/lib/redux/actions/{FormAutosubmit.d.cts → FormAutosubmit.d.ts} +0 -0
  1504. /package/lib/redux/actions/{FormAutoupdate.d.cts → FormAutoupdate.d.ts} +0 -0
  1505. /package/lib/redux/actions/{FormValidations.d.cts → FormValidations.d.ts} +0 -0
  1506. /package/lib/redux/actions/{Modals.d.cts → Modals.d.ts} +0 -0
  1507. /package/lib/redux/actions/{ModelCatalog.d.cts → ModelCatalog.d.ts} +0 -0
  1508. /package/lib/redux/actions/{Notification.d.cts → Notification.d.ts} +0 -0
  1509. /package/lib/redux/actions/{Preferences.d.cts → Preferences.d.ts} +0 -0
  1510. /package/lib/redux/actions/{ProgressIndicator.d.cts → ProgressIndicator.d.ts} +0 -0
  1511. /package/lib/redux/actions/{SignIn.d.cts → SignIn.d.ts} +0 -0
  1512. /package/lib/redux/actions/{SignOut.d.cts → SignOut.d.ts} +0 -0
  1513. /package/lib/redux/actions/{index.d.cts → index.d.ts} +0 -0
  1514. /package/lib/redux/connectors/{Application.d.cts → Application.d.ts} +0 -0
  1515. /package/lib/redux/connectors/{Breadcrumb.d.cts → Breadcrumb.d.ts} +0 -0
  1516. /package/lib/redux/connectors/{CaseView.d.cts → CaseView.d.ts} +0 -0
  1517. /package/lib/redux/connectors/{ConceptDetail.d.cts → ConceptDetail.d.ts} +0 -0
  1518. /package/lib/redux/connectors/{ContentBrowser.d.cts → ContentBrowser.d.ts} +0 -0
  1519. /package/lib/redux/connectors/{ContentDetail.d.cts → ContentDetail.d.ts} +0 -0
  1520. /package/lib/redux/connectors/{ContentDetailSection.d.cts → ContentDetailSection.d.ts} +0 -0
  1521. /package/lib/redux/connectors/{Form.d.cts → Form.d.ts} +0 -0
  1522. /package/lib/redux/connectors/{FormAttributeSet.d.cts → FormAttributeSet.d.ts} +0 -0
  1523. /package/lib/redux/connectors/{ListDetail.d.cts → ListDetail.d.ts} +0 -0
  1524. /package/lib/redux/connectors/{Modal.d.cts → Modal.d.ts} +0 -0
  1525. /package/lib/redux/connectors/{ModelCatalog.d.cts → ModelCatalog.d.ts} +0 -0
  1526. /package/lib/redux/connectors/{Notification.d.cts → Notification.d.ts} +0 -0
  1527. /package/lib/redux/connectors/{PanelRenderer.d.cts → PanelRenderer.d.ts} +0 -0
  1528. /package/lib/redux/connectors/{Preferences.d.cts → Preferences.d.ts} +0 -0
  1529. /package/lib/redux/connectors/{Progress.d.cts → Progress.d.ts} +0 -0
  1530. /package/lib/redux/connectors/{ProgressIndicator.d.cts → ProgressIndicator.d.ts} +0 -0
  1531. /package/lib/redux/connectors/{QuickSearch.d.cts → QuickSearch.d.ts} +0 -0
  1532. /package/lib/redux/connectors/{SignIn.d.cts → SignIn.d.ts} +0 -0
  1533. /package/lib/redux/connectors/{SignOut.d.cts → SignOut.d.ts} +0 -0
  1534. /package/lib/redux/connectors/{Tab.d.cts → Tab.d.ts} +0 -0
  1535. /package/lib/redux/connectors/{index.d.cts → index.d.ts} +0 -0
  1536. /package/lib/redux/{index.d.cts → index.d.ts} +0 -0
  1537. /package/lib/redux/reducers/{AuthReducer.d.cts → AuthReducer.d.ts} +0 -0
  1538. /package/lib/redux/reducers/{ErrorReducer.d.cts → ErrorReducer.d.ts} +0 -0
  1539. /package/lib/redux/reducers/{ModalsReducer.d.cts → ModalsReducer.d.ts} +0 -0
  1540. /package/lib/redux/reducers/{ModelCatalogReducer.d.cts → ModelCatalogReducer.d.ts} +0 -0
  1541. /package/lib/redux/reducers/{NotificationReducer.d.cts → NotificationReducer.d.ts} +0 -0
  1542. /package/lib/redux/reducers/{PreferencesReducer.d.cts → PreferencesReducer.d.ts} +0 -0
  1543. /package/lib/redux/reducers/{ProgressIndicatorReducer.d.cts → ProgressIndicatorReducer.d.ts} +0 -0
  1544. /package/lib/redux/reducers/{createReducer.d.cts → createReducer.d.ts} +0 -0
  1545. /package/lib/redux/reducers/{index.d.cts → index.d.ts} +0 -0
  1546. /package/lib/redux/selectors/{i18n.d.cts → i18n.d.ts} +0 -0
  1547. /package/lib/redux/selectors/{index.d.cts → index.d.ts} +0 -0
  1548. /package/lib/redux/selectors/{modelcatalog.d.cts → modelcatalog.d.ts} +0 -0
  1549. /package/lib/redux/store/{beforeRenderHooks.d.cts → beforeRenderHooks.d.ts} +0 -0
  1550. /package/lib/redux/store/{configureStore.d.cts → configureStore.d.ts} +0 -0
  1551. /package/lib/redux/{types.d.cts → types.d.ts} +0 -0
  1552. /package/lib/utils/browser/{Cache.d.cts → Cache.d.ts} +0 -0
  1553. /package/lib/utils/browser/{Cookies.d.cts → Cookies.d.ts} +0 -0
  1554. /package/lib/utils/datetime/{DateTimeUtil.d.cts → DateTimeUtil.d.ts} +0 -0
  1555. /package/lib/utils/fetch/__mocks__/{universalFetch.d.cts → universalFetch.d.ts} +0 -0
  1556. /package/lib/utils/fetch/{serverFetch.d.cts → serverFetch.d.ts} +0 -0
  1557. /package/lib/utils/fetch/{types.d.cts → types.d.ts} +0 -0
  1558. /package/lib/utils/fetch/{universalFetch.d.cts → universalFetch.d.ts} +0 -0
  1559. /package/lib/utils/fetch/{xhr.d.cts → xhr.d.ts} +0 -0
  1560. /package/lib/utils/helpers/{checkResource.d.cts → checkResource.d.ts} +0 -0
  1561. /package/lib/utils/helpers/{createHash.d.cts → createHash.d.ts} +0 -0
  1562. /package/lib/utils/helpers/{createHref.d.cts → createHref.d.ts} +0 -0
  1563. /package/lib/utils/helpers/{createUUID.d.cts → createUUID.d.ts} +0 -0
  1564. /package/lib/utils/helpers/{index.d.cts → index.d.ts} +0 -0
  1565. /package/lib/utils/helpers/{objects.d.cts → objects.d.ts} +0 -0
  1566. /package/lib/utils/helpers/{repositoryResource.d.cts → repositoryResource.d.ts} +0 -0
  1567. /package/lib/utils/helpers/{sanitizeHtml.d.cts → sanitizeHtml.d.ts} +0 -0
  1568. /package/lib/utils/helpers/{text.d.cts → text.d.ts} +0 -0
  1569. /package/lib/utils/{index.d.cts → index.d.ts} +0 -0
  1570. /package/lib/utils/number/{DecimalFormat.d.cts → DecimalFormat.d.ts} +0 -0
  1571. /package/lib/utils/number/{formatValue.d.cts → formatValue.d.ts} +0 -0
  1572. /package/lib/utils/number/{parseNumbers.d.cts → parseNumbers.d.ts} +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"FormModel.cjs","names":["_flattenDeep","_interopRequireDefault","require","_deepmerge","_objects","_exceptions","_ResourceModel","_ErrorCollection","_Href","_Parameter","_FormObjectModel","_Constants","_Settings","_LayoutHints","_LayoutHintCollection","_AttributeSetModel","FormModel","ResourceModel","constructor","modularuiResponse","_defineProperty2","default","getSetting","ErrorCollection","lastUpdate","currentFormObject","createFormObject","endResultFormObjects","setEndResultFormObjects","parameters","setParameters","isComplete","getData","data","errors","handleRootErrors","createSuccess","type","actiontype","layouthint","has","CREATE_ACTION","UPDATE_ACTION","DELETE_ACTION","getContribution","modelName","isApplicableModel","contributions","resourcetype","getInitialChildModelLinks","_context","endResultChildLinks","flattenDeep","_map","call","endResultFormObject","setChildModels","models","forEach","label","buttonLabels","getButtonLabel","buttonType","cancel","allObjects","completedFormObjects","objectKeys","_keys","objects","numberOfExpectedQuestions","length","hasNoQuestionsConfigured","addGlobalDynamicSchema","anchor","dynamicschema","_context2","elements","element","_context3","item","getMissingAnchors","missingAnchors","missing","anchors","results","_context4","resultObject","_find","result","objectid","objectId","FormObjectModel","modelOptions","addEmptyFormObject","formObjectModel","arguments","undefined","emptyFormObject","createEmpty","repeatIndex","getHighestRepeatIndex","addFormObject","_context5","_context6","Math","max","_filter","formObject","equals","IllegalArgumentException","getFormObjectByKey","key","_context7","getFormObjectByLayoutHint","hint","_context8","removeFormObject","_context9","_currentFormObject","_completedFormObjects","formObjects","previouslyEnteredFormObjects","_previouslyEnteredFormObjects","_context10","_context11","missingObjects","missingObjectIds","endResultAnchors","_includes","otherProps","endResult","expectsEndResultFormObjects","_context12","endResultKeys","some","objectKey","content","_endResultFormObjects","getEndResultFormObjects","_context13","_context14","previousEndResultKeys","_context15","_previousEndResultKeys","endResultFormObjectKeys","isValid","isRepeatable","_context16","_context17","hasOneValidQuestion","object","hasServerErrors","errorCollection","hasItems","hasErrors","addServerError","error","id","message","resetErrors","_errorCollection","commit","_commit","isFinished","_isFinished","success","_isComplete","successRedirect","Href","redirect","redirectLocation","_redirectLocation","getSuccessData","getResultData","resultDataKeys","resultdata","successData","resultDataKey","AttributeSetModel","resultData","par","Parameter","_prefix","_name","_value","_parameters","selfhrefNoCommitParam","_context18","selfhref","selflink","href","method","HTTP_METHODS","POST","parameter","name","selfhrefWithCommitParam","addParameter","Error","tokens","_tokens","removeTokens","isChanged","isChangedSince","_lastUpdate","getFormDataObjects","_context19","validOnly","validationData","formdata","index","hasFixedNrOfRepeats","isLastRepeat","objectFormData","getFormData","existingObjectIndex","_findIndex","obj","deepmerge","push","withConcurrencyToken","_stringify","setUseClientsideValidation","enabled","_useClientsideValidation","attributeCollection","all","useClientsideValidation","hasPreviousStep","_context20","currentFormObjectKey","isRepeatWithUnknownTotal","setPreviousObject","_context21","_context22","_context23","_context24","_context25","oldCurrentFormObject","_slice","completedFormObjectKeys","formObjectKey","hasNextStep","_context26","isDynamic","currentObjectIndex","isLastObject","update","receivedForm","Date","now","lastServerUpdate","receivedFormData","hasMissing","handleFinished","handleErrors","handleMissing","updateCurrentFormObject","updateValidations","_success","_data","properties","errorAnchors","LayoutHintCollection","handleMissingErrors","handleNewFormObject","processMissingErrors","_context27","attribute","receivedAttribute","getAttributeByKey","addMissingError","removeMissingError","receivedCurrentFormObject","_context28","handlePreviouslyEnteredFormObjects","mergePreviouslyEnteredObjects","_mergePreviouslyEnteredObjects","_context29","previouslyEnteredFormObject","mergedObject","mergeObjects","hasPreviouslyEnteredObject","newObject","oldObject","mergedFormObject","mergeObject","findAttribute","findMethod","foundAttribute","_context30","_default","exports"],"sources":["../../../src/models/form/FormModel.js"],"sourcesContent":["// @flow\nimport flattenDeep from \"lodash/flattenDeep\";\nimport deepmerge from \"deepmerge\";\n\nimport { has } from \"../../utils/helpers/objects\";\n\nimport { IllegalArgumentException } from \"../../exceptions\";\n\nimport ResourceModel from \"../base/ResourceModel\";\nimport ErrorCollection from \"../error/ErrorCollection\";\n\nimport Href from \"../href/Href\";\nimport Parameter from \"../parameter/Parameter\";\n\nimport FormObjectModel from \"./FormObjectModel\";\n\nimport { HTTP_METHODS } from \"../../constants/Constants\";\nimport { getSetting } from \"../../constants/Settings\";\nimport {\n CREATE_ACTION,\n DELETE_ACTION,\n UPDATE_ACTION,\n} from \"../../constants/LayoutHints\";\n\nimport LayoutHintCollection from \"../layouthint/LayoutHintCollection\";\nimport AttributeSetModel from \"../attributes/AttributeSetModel\";\n\nimport type { AttributeType, ModularUIModel } from \"../types\";\nimport type { ModularUIResponse } from \"../../modularui\";\nimport type ErrorResponse from \"../error/ErrorResponse\";\nimport type LinkModel from \"../links/LinkModel\";\n\n/**\n */\nclass FormModel extends ResourceModel {\n _lastUpdate: number;\n\n _completedFormObjects: Array<FormObjectModel> = [];\n _currentFormObject: FormObjectModel | null = null;\n _previouslyEnteredFormObjects: Array<FormObjectModel> = [];\n\n _mergePreviouslyEnteredObjects: boolean = true;\n\n _endResultFormObjects: Array<FormObjectModel> = [];\n _previousEndResultKeys: Array<string> = [];\n\n _useClientsideValidation: boolean = getSetting(\"USE_CLIENTSIDE_VALIDATION\");\n _errorCollection: ErrorCollection = new ErrorCollection(\"form\");\n\n _redirectLocation: Href;\n\n _commit: boolean;\n _isFinished: boolean;\n _isComplete: boolean;\n _success: { redirect: string, data: Object } | null;\n\n _parameters: Array<Parameter>;\n _tokens: Array<string>;\n\n /**\n */\n constructor(modularuiResponse: ModularUIResponse) {\n super(modularuiResponse);\n\n this.lastUpdate = 0;\n\n this.currentFormObject = this.createFormObject();\n this.endResultFormObjects = this.setEndResultFormObjects();\n\n this.parameters = this.setParameters(modularuiResponse);\n\n this.isComplete = this.getData(\"complete\", false);\n\n if (this.data.errors) {\n this.handleRootErrors(this.data.errors);\n }\n\n this.createSuccess();\n }\n\n /**\n */\n get type(): string {\n return \"Form\";\n }\n\n /**\n */\n get actiontype(): string {\n if (this.layouthint.has(CREATE_ACTION)) {\n return \"create\";\n }\n if (this.layouthint.has(UPDATE_ACTION)) {\n return \"update\";\n }\n if (this.layouthint.has(DELETE_ACTION)) {\n return \"delete\";\n }\n\n return this.getContribution(\"actiontype\", \"form\");\n }\n\n /**\n */\n static get modelName(): string {\n return \"FormModel\";\n }\n\n /**\n */\n static isApplicableModel(data: ModularUIResponse): boolean {\n return (\n data.contributions.resourcetype &&\n data.contributions.resourcetype === \"Form\"\n );\n }\n\n /**\n */\n getInitialChildModelLinks(): Array<LinkModel> {\n const endResultChildLinks = flattenDeep(\n this.endResultFormObjects.map((endResultFormObject) =>\n endResultFormObject.getInitialChildModelLinks(),\n ),\n );\n\n if (this.currentFormObject === null) {\n return endResultChildLinks;\n }\n\n return [\n ...this.currentFormObject.getInitialChildModelLinks(),\n ...endResultChildLinks,\n ];\n }\n\n /**\n */\n setChildModels(models: Array<ModularUIModel>, errors: Array<ErrorResponse>) {\n if (this.currentFormObject) {\n this.currentFormObject.setChildModels(models, errors);\n }\n\n this.endResultFormObjects.forEach((endResultFormObject) => {\n endResultFormObject.setChildModels(models, errors);\n });\n }\n\n /**\n */\n get label(): string {\n return this.getContribution(\"label\", \"\");\n }\n\n /**\n * Get form level button labels\n */\n get buttonLabels(): Object {\n return this.getContribution(\"buttonLabels\", {});\n }\n\n /**\n * @returns button label from contributions;\n */\n getButtonLabel(\n buttonType: \"cancel\" | \"previous\" | \"next\" | \"finish\",\n ): string | null {\n // cancel button labels are defined on the form\n if (buttonType === \"cancel\") {\n return this.buttonLabels?.cancel ?? null;\n }\n\n // all other form related button labels are defined on the object\n return this.currentFormObject?.buttonLabels?.[buttonType] ?? null;\n }\n\n /**\n * Get all applicable objects\n */\n get allObjects(): Array<FormObjectModel> {\n if (this.currentFormObject === null) {\n return this.completedFormObjects;\n }\n\n return [...this.completedFormObjects, this.currentFormObject];\n }\n\n /**\n */\n get objectKeys(): Array<string> {\n if (has(this.contributions, \"objects\")) {\n return Object.keys(this.contributions.objects);\n }\n\n return [];\n }\n\n /**\n */\n get numberOfExpectedQuestions(): number {\n return this.objectKeys.length;\n }\n\n /**\n * Has questions configured on form\n */\n get hasNoQuestionsConfigured(): boolean {\n return (\n this.isComplete &&\n (this.objectKeys.length === 0 ||\n (!(\"missing\" in this.data) &&\n !(\"results\" in this.data) &&\n !(\"errors\" in this.data)))\n );\n }\n\n /**\n */\n addGlobalDynamicSchema(anchor: Object, dynamicschema: Object): Object {\n if (!dynamicschema) {\n return anchor;\n }\n\n return {\n ...anchor,\n elements: anchor.elements.map((element) => ({\n ...element,\n dynamicschema: element.dynamicschema\n ? element.dynamicschema.map((item) => ({\n ...item,\n elements: { ...item.elements, dynamicschema },\n }))\n : null,\n })),\n };\n }\n\n /**\n */\n getMissingAnchors(): Array<Object> {\n const missingAnchors = this.data.missing?.anchors ?? [];\n\n // Add intermediate result data to anchor\n return missingAnchors.map((anchor) => {\n if (this.data.results) {\n const resultObject = this.data.results.find(\n (result) =>\n result.objectid === anchor.objectid && \"elements\" in result,\n );\n\n if (resultObject) {\n anchor.results = resultObject.elements;\n }\n }\n\n return this.addGlobalDynamicSchema(anchor, this.data.dynamicschema);\n });\n }\n\n /**\n * Create form object based on the data and contributions available in this form\n */\n createFormObject(): FormObjectModel | null {\n if (this.data && this.contributions) {\n const missingAnchors = this.getMissingAnchors();\n\n // Get object id from first anchor\n const objectId = missingAnchors?.[0]?.objectid ?? \"\";\n const contributions = this.contributions.objects?.[objectId];\n if (contributions) {\n return new FormObjectModel(\n missingAnchors[0],\n contributions,\n this.modelOptions,\n );\n }\n }\n\n return null;\n }\n\n /**\n */\n addEmptyFormObject(\n formObjectModel: FormObjectModel | null = this.currentFormObject,\n ) {\n if (formObjectModel) {\n const emptyFormObject = FormObjectModel.createEmpty(formObjectModel);\n\n emptyFormObject.repeatIndex =\n this.getHighestRepeatIndex(formObjectModel) + 1;\n\n this.addFormObject(emptyFormObject);\n }\n }\n\n /**\n */\n getHighestRepeatIndex(formObjectModel: FormObjectModel): number {\n return Math.max(\n ...this.allObjects\n .filter((formObject) => formObject.equals(formObjectModel, false))\n .map((formObject) => formObject.repeatIndex),\n );\n }\n\n /**\n */\n addFormObject(formObjectModel: FormObjectModel): void {\n if (!formObjectModel) {\n throw new IllegalArgumentException(\"Missing form object to add\");\n }\n\n this.completedFormObjects = [...this.allObjects];\n this.currentFormObject = formObjectModel;\n }\n\n /**\n * Retrieve a form object by the key\n */\n getFormObjectByKey(key: string): ?FormObjectModel {\n return this.allObjects.find((formObject) => formObject.key === key);\n }\n\n /**\n * Retrieve a form object by a layouthint\n */\n getFormObjectByLayoutHint(hint: string): ?FormObjectModel {\n return this.allObjects.find((formObject) =>\n formObject.layouthint.has(hint),\n );\n }\n\n /**\n */\n removeFormObject(formObjectModel: ?FormObjectModel): void {\n if (!formObjectModel) {\n throw new IllegalArgumentException(\"Missing form object to remove\");\n }\n if (formObjectModel.equals(this.currentFormObject)) {\n throw new IllegalArgumentException(\n \"Can not remove the current form object\",\n );\n }\n\n this.completedFormObjects = this.completedFormObjects.filter(\n (formObject) => !formObject.equals(formObjectModel),\n );\n }\n\n /**\n */\n get currentFormObject(): FormObjectModel | null {\n return this._currentFormObject;\n }\n\n /**\n */\n set currentFormObject(formObject: FormObjectModel | null) {\n this._currentFormObject = formObject;\n }\n\n /**\n * Completed objects are previously entered questions\n */\n get completedFormObjects(): Array<FormObjectModel> {\n return this._completedFormObjects;\n }\n\n /**\n */\n set completedFormObjects(formObjects: Array<FormObjectModel>) {\n this._completedFormObjects = formObjects;\n }\n\n /**\n * Previously entered objects are questions that have been entered before,\n * but are currently not applicable for the form.\n * For example because of previous navigation\n */\n get previouslyEnteredFormObjects(): Array<FormObjectModel> {\n return this._previouslyEnteredFormObjects;\n }\n\n /**\n */\n set previouslyEnteredFormObjects(formObjects: Array<FormObjectModel>) {\n this._previouslyEnteredFormObjects = formObjects;\n }\n\n /**\n * Handle end results\n */\n setEndResultFormObjects(): Array<FormObjectModel> {\n if (this.data && this.data.results) {\n const missingObjects = this.data.missing?.anchors ?? [];\n const missingObjectIds = missingObjects.map((anchor) => anchor.objectid);\n\n // Filter out intermediate results and rename elements property to result property\n const endResultAnchors = this.data.results\n .filter((result) => !missingObjectIds.includes(result.objectid))\n .map((result) => {\n const { elements, ...otherProps } = result;\n\n return {\n ...otherProps,\n results: elements,\n };\n });\n\n if (endResultAnchors.length > 0) {\n return endResultAnchors.map(\n (endResult) =>\n new FormObjectModel(\n endResult,\n this.contributions.objects[endResult.objectid],\n this.modelOptions,\n ),\n );\n }\n }\n\n return [];\n }\n\n /**\n */\n get expectsEndResultFormObjects(): boolean {\n const endResultKeys = this.endResultFormObjects.map(\n (endResult) => endResult.key,\n );\n\n return this.objectKeys.some(\n (objectKey) =>\n this.contributions.objects?.[objectKey]?.content?.results &&\n !endResultKeys.includes(objectKey),\n );\n }\n\n /**\n */\n get endResultFormObjects(): Array<FormObjectModel> {\n return this._endResultFormObjects;\n }\n\n /**\n */\n getEndResultFormObjects(): Array<FormObjectModel> {\n return this.endResultFormObjects.filter(\n (endResult) => !this.previousEndResultKeys.includes(endResult.key),\n );\n }\n\n /**\n */\n set endResultFormObjects(endResultFormObjects: Array<FormObjectModel>) {\n this.previousEndResultKeys = this.endResultFormObjects.map(\n (endResult) => endResult.key,\n );\n this._endResultFormObjects = endResultFormObjects;\n }\n\n /**\n */\n get previousEndResultKeys(): Array<string> {\n return this._previousEndResultKeys;\n }\n\n /**\n */\n set previousEndResultKeys(endResultFormObjectKeys: Array<string>) {\n this._previousEndResultKeys = endResultFormObjectKeys;\n }\n\n /**\n * Error handling\n */\n get isValid(): boolean {\n if (this.currentFormObject) {\n if (this.currentFormObject.isRepeatable) {\n // repeating objects need at least one valid form object\n const hasOneValidQuestion = this.allObjects\n .filter((object) => object.equals(this.currentFormObject, false))\n .find((object) => object.isValid);\n\n if (hasOneValidQuestion) {\n return true;\n }\n }\n\n return this.currentFormObject?.isValid ?? true;\n }\n\n return true;\n }\n\n /**\n */\n hasServerErrors(): boolean {\n if (this.errorCollection.hasItems) {\n return true;\n }\n\n if (this.currentFormObject) {\n return this.currentFormObject.hasServerErrors();\n }\n\n return false;\n }\n\n /**\n */\n hasErrors(): boolean {\n if (this.errorCollection.hasItems) {\n return true;\n }\n\n if (this.currentFormObject) {\n return this.currentFormObject.hasErrors();\n }\n\n return false;\n }\n\n /**\n * Add an error to the error collection of this form\n */\n addServerError(error: ErrorResponse) {\n if (error.parameters) {\n this.errorCollection.addServerError(\n error.id,\n error.message,\n error.parameters,\n error.layouthint,\n );\n } else {\n this.errorCollection.addServerError(\n error.id,\n error.message,\n undefined,\n error.layouthint,\n );\n }\n }\n\n /**\n * Reset error messages\n */\n resetErrors() {\n this._errorCollection = new ErrorCollection(\"form\");\n\n if (this.currentFormObject) {\n this.currentFormObject.resetErrors();\n }\n }\n\n /**\n */\n get errorCollection(): ErrorCollection {\n return this._errorCollection;\n }\n\n /**\n */\n set errorCollection(errorCollection: ErrorCollection) {\n this._errorCollection = errorCollection;\n }\n\n /**\n * Indicates if the form needs to be committed\n */\n get commit(): boolean {\n return this._commit || false;\n }\n\n /**\n */\n set commit(commit: boolean) {\n this._commit = commit;\n }\n\n /**\n * Inidicates if form is finished: Form is completely entered and committed\n */\n get isFinished(): boolean {\n return this._isFinished || this.success != undefined;\n }\n\n /**\n */\n set isFinished(isFinished: boolean) {\n this._isFinished = isFinished;\n }\n\n /**\n * Indicates if form is completely entered\n */\n get isComplete(): boolean {\n return this._isComplete;\n }\n\n /**\n */\n set isComplete(isComplete: boolean) {\n this._isComplete = isComplete;\n }\n\n /**\n * Handle success redirects\n */\n get successRedirect(): Href | null {\n return this.isFinished && this.success\n ? new Href(this.success.redirect, \"\", this.modelOptions)\n : null;\n }\n\n /**\n */\n get redirectLocation(): Href {\n return this._redirectLocation || this.successRedirect;\n }\n\n /**\n * Get the result data as plain json object\n */\n getSuccessData(): ?Object {\n return this.success?.data;\n }\n\n /**\n * Retrieve an object where each property is a result data attribute set\n */\n getResultData(): ?{\n [key: string]: AttributeSetModel,\n } {\n const resultDataKeys = Object.keys(this.contributions.resultdata) ?? [];\n const successData = this.getSuccessData() ?? {};\n\n const resultdata: {\n [key: string]: AttributeSetModel,\n } = {};\n\n for (const resultDataKey of resultDataKeys) {\n resultdata[resultDataKey] = new AttributeSetModel(\n resultDataKey,\n successData[resultDataKey],\n this.contributions.resultdata[resultDataKey],\n this.modelOptions,\n );\n }\n\n return resultdata;\n }\n\n /**\n */\n get resultData(): ?Object {\n return this.getSuccessData();\n }\n\n /**\n * Href handling\n */\n setParameters(modularuiResponse: ModularUIResponse): Array<Parameter> {\n const parameters = modularuiResponse?.parameters ?? [];\n return parameters.map(\n (par) => new Parameter(par._prefix, par._name, par._value),\n );\n }\n\n /**\n */\n get parameters(): Array<Parameter> {\n return this._parameters;\n }\n\n /**\n */\n set parameters(parameters: Array<Parameter>) {\n this._parameters = parameters;\n }\n\n /**\n */\n selfhrefNoCommitParam(): Href {\n const selfhref = this.selflink.href;\n selfhref.method = HTTP_METHODS.POST;\n\n selfhref.parameters = this.parameters.filter(\n (parameter) => parameter.name !== \"commit\",\n );\n\n return selfhref;\n }\n\n /**\n */\n selfhrefWithCommitParam(): Href {\n const selfhref = this.selfhrefNoCommitParam();\n\n if (this.expectsEndResultFormObjects && !this.isComplete && !this.commit) {\n selfhref.addParameter(\"commit\", \"false\");\n }\n\n return selfhref;\n }\n\n /**\n * Create a selfhref including the parameters that are used to start this form\n */\n get selfhref(): Href {\n if (!this.selflink) {\n throw new Error(\"No self link found for form\");\n }\n\n if (getSetting(\"ALWAYS_COMMIT_FORM\")) {\n return this.selfhrefNoCommitParam();\n }\n\n return this.selfhrefWithCommitParam();\n }\n\n /**\n * Handle form tokens to indicate concurrent form use\n */\n get tokens(): Array<string> {\n if (!this._tokens) {\n this._tokens = this.data.tokens ?? [];\n }\n return this._tokens;\n }\n\n /**\n * Replaces all tokens with the given collection of tokens\n */\n set tokens(tokens: Array<string>) {\n this._tokens = tokens;\n }\n\n /**\n * Removes all tokens from the form\n */\n removeTokens() {\n this._tokens = [];\n }\n\n /**\n * Keep track of changed form\n */\n isChanged(): boolean {\n return (\n this.currentFormObject !== null &&\n this.currentFormObject.isChangedSince(this.lastUpdate)\n );\n }\n\n /**\n */\n get lastUpdate(): number {\n return this._lastUpdate;\n }\n\n /**\n */\n set lastUpdate(lastUpdate: number) {\n this._lastUpdate = lastUpdate;\n }\n\n /**\n */\n getFormDataObjects(\n validOnly: boolean = true,\n validationData: boolean = false,\n ): Array<Object> {\n const formdata = [];\n\n const formObjects = this.allObjects.filter((formObject, index) => {\n // repeatabe object without fixed nr of repeats, remove last form object from formdata,\n // because this is the formobject that is used as a placeholder for the create object\n // of the collection of repeats\n if (formObject.isRepeatable && !formObject.hasFixedNrOfRepeats) {\n const isLastRepeat =\n index === this.allObjects.length - 1 ||\n this.allObjects[index + 1].key !== formObject.key;\n\n if (isLastRepeat) {\n return false;\n }\n }\n\n return formObject.isValid || !validOnly;\n });\n\n formObjects.forEach((formObject) => {\n const objectFormData = formObject.getFormData(validationData);\n\n const existingObjectIndex = formdata.findIndex(\n (obj) =>\n obj.key === formObject.key &&\n obj.repeatIndex === formObject.repeatIndex,\n );\n\n /*\n * when the object already exists in the formdata with the same key and index,\n * merge the attributes of both objects together\n */\n if (existingObjectIndex > -1) {\n formdata[existingObjectIndex].formdata = deepmerge(\n formdata[existingObjectIndex].formdata,\n objectFormData,\n );\n } else {\n formdata.push({\n key: formObject.key,\n repeatIndex: formObject.repeatIndex,\n formdata: objectFormData,\n });\n }\n });\n\n return formdata.map((obj) => ({ [obj.key]: obj.formdata }));\n }\n\n /**\n */\n getFormData(\n validOnly: boolean = true,\n withConcurrencyToken: boolean = true,\n validationData: boolean = false,\n ): string {\n if (withConcurrencyToken && this.tokens.length > 0) {\n return JSON.stringify({\n objects: this.getFormDataObjects(validOnly, validationData),\n tokens: this.tokens,\n });\n }\n\n return JSON.stringify({\n objects: this.getFormDataObjects(validOnly, validationData),\n });\n }\n\n /**\n * Used to programmatically overwrite the setting USE_CLIENTSIDE_VALIDATION\n */\n setUseClientsideValidation(enabled: boolean) {\n this._useClientsideValidation = enabled;\n\n this.allObjects.forEach((formObject) => {\n formObject.attributeCollection.all.forEach((item: AttributeType) =>\n item.setUseClientsideValidation(enabled),\n );\n });\n }\n\n /**\n * Indicates if client side validation is enabled\n * @returns {boolean}\n */\n useClientsideValidation(): boolean {\n return this._useClientsideValidation ?? true;\n }\n\n /**\n * Get form data for submitting\n */\n get formdata(): string {\n return this.getFormData(this.useClientsideValidation());\n }\n\n /**\n */\n get validationData(): string {\n return this.getFormData(false, false, true);\n }\n\n /**\n * Form navigation: Go one object back (previous button)\n */\n get hasPreviousStep(): boolean {\n const currentFormObjectKey =\n this.currentFormObject != null ? this.currentFormObject.key : \"\";\n\n return (\n this.completedFormObjects.filter(\n (formObject) =>\n !formObject.isRepeatWithUnknownTotal ||\n formObject.key !== currentFormObjectKey,\n ).length > 0\n );\n }\n\n /**\n * Go one form-object back,\n * for repeating object this means go back\n * until we get at a form object that had\n * a different key than the current form object\n */\n setPreviousObject() {\n this.isComplete = false;\n this.isFinished = false;\n this.success = null;\n\n const oldCurrentFormObject = this.currentFormObject;\n\n if (this.currentFormObject !== null) {\n this.previouslyEnteredFormObjects = [\n this.currentFormObject,\n ...this.previouslyEnteredFormObjects,\n ];\n }\n\n this.currentFormObject =\n this.completedFormObjects[this.completedFormObjects.length - 1];\n this.completedFormObjects = this.completedFormObjects.slice(0, -1);\n\n const completedFormObjectKeys = this.completedFormObjects\n .map((formObject) => formObject.key)\n .filter((formObjectKey) => formObjectKey !== this.currentFormObject?.key);\n\n this.endResultFormObjects = this._endResultFormObjects.filter((endResult) =>\n completedFormObjectKeys.includes(endResult.key),\n );\n this.previousEndResultKeys = this.endResultFormObjects.map(\n (endResult) => endResult.key,\n );\n\n // while we are at the same repeating form object, go a step back\n if (\n this.currentFormObject &&\n this.currentFormObject.equals(\n oldCurrentFormObject,\n this.currentFormObject.hasFixedNrOfRepeats,\n )\n ) {\n this.setPreviousObject();\n }\n }\n\n /**\n * Form navigation: has next step or is last\n */\n get hasNextStep(): boolean {\n if (\n this.isComplete ||\n this.isFinished ||\n this.hasNoQuestionsConfigured ||\n !this.contributions.objects\n ) {\n return false;\n }\n\n // current object is a dynamic object\n if (this.currentFormObject && this.currentFormObject.isDynamic) {\n return true;\n }\n\n if (this.expectsEndResultFormObjects) {\n return true;\n }\n\n const currentObjectIndex = this.objectKeys.findIndex(\n (objectKey) => objectKey === this.currentFormObject?.key,\n );\n const isLastObject = this.objectKeys.length - 1 === currentObjectIndex;\n\n // current object is a repeating question but it is not the last one\n if (\n isLastObject &&\n this.currentFormObject &&\n this.currentFormObject.isRepeatable &&\n !this.currentFormObject.isLastRepeat\n ) {\n return true;\n }\n\n // current object is not repeatable and the last object\n if (isLastObject) {\n return false;\n }\n\n // can't determine if this is te last, render a next button\n return true;\n }\n\n /**\n * Merge existing form with new form\n */\n update(receivedForm: ModularUIModel): FormModel {\n if (receivedForm instanceof FormModel) {\n this.resetErrors();\n\n this.lastUpdate = Date.now();\n this.lastServerUpdate = receivedForm.lastServerUpdate;\n\n this.tokens = receivedForm.tokens;\n\n this.isComplete = receivedForm.isComplete;\n this.isFinished = receivedForm.isFinished;\n this.success = receivedForm.success;\n\n const receivedFormData = receivedForm.data ?? {};\n const hasMissing = has(receivedFormData, \"missing\");\n const hasErrors = has(receivedFormData, \"errors\");\n\n if (!hasMissing && !hasErrors) {\n this.handleFinished(receivedForm);\n }\n\n if (hasErrors) {\n this.handleErrors(receivedForm);\n }\n\n if (hasMissing) {\n this.handleMissing(receivedForm);\n }\n }\n\n return this;\n }\n\n /**\n * Updates the current form object with new information about the object,\n * like for example a new dynamicschema. Used for autoupdate functionality that makes it possible\n * to update the options of a next missing attribute in a form-tree iq question\n */\n updateCurrentFormObject(receivedForm: ModularUIModel) {\n if (receivedForm instanceof FormModel) {\n const receivedFormData = receivedForm.data ?? {};\n const hasMissing = has(receivedFormData, \"missing\");\n const hasErrors = has(receivedFormData, \"errors\");\n\n if (hasErrors) {\n this.handleErrors(receivedForm);\n }\n\n if (hasMissing) {\n this.handleMissing(receivedForm);\n }\n }\n }\n\n /**\n */\n updateValidations(data: any): FormModel {\n if (this.currentFormObject) {\n this.currentFormObject.updateValidations(data);\n }\n\n return this;\n }\n\n /**\n * Retrieve success information from response\n * @returns {{redirect: string, data: object}}\n */\n get success(): { redirect: string, data: Object } | null {\n return this._success;\n }\n\n /**\n * Set success information, contains redirect and event data\n * @param success\n */\n set success(success: { redirect: string, data: Object } | null) {\n this._success = success;\n }\n\n /**\n */\n createSuccess() {\n this._success = this.data.success;\n }\n\n /**\n * Process finished form\n */\n handleFinished(receivedForm: FormModel) {\n if (this.currentFormObject) {\n this.completedFormObjects = [\n ...this.completedFormObjects,\n this.currentFormObject,\n ];\n }\n\n this.currentFormObject = receivedForm.currentFormObject;\n this.endResultFormObjects = receivedForm.endResultFormObjects;\n\n this._data = receivedForm._data;\n }\n\n /**\n */\n handleRootErrors(errors: Array<Object>) {\n errors\n .filter((error) => !error.anchor)\n .forEach((error) => {\n this.errorCollection.addServerError(\n error.id,\n error.message,\n error.properties,\n error.layouthint,\n );\n });\n }\n\n /**\n * Process errors from received form\n */\n handleErrors(receivedForm: FormModel) {\n const errorAnchors = receivedForm.data.errors;\n if (errorAnchors) {\n errorAnchors.forEach((error) => {\n if (\n error.anchor &&\n this.currentFormObject &&\n this.currentFormObject.key === error.anchor.objectid\n ) {\n this.currentFormObject.addServerError(error);\n } else {\n this.errorCollection.addServerError(\n error.id,\n error.message,\n error.properties,\n new LayoutHintCollection(error.layouthint),\n );\n }\n });\n }\n }\n\n /**\n * Process missing from received form\n */\n handleMissing(receivedForm: FormModel) {\n if (\n this.currentFormObject &&\n this.currentFormObject.equals(receivedForm.currentFormObject)\n ) {\n this.handleMissingErrors(receivedForm);\n } else {\n this.handleNewFormObject(receivedForm);\n }\n }\n\n /**\n * Received missing anchors in the response with an object id that is the current form object\n */\n processMissingErrors(receivedForm: FormModel): FormObjectModel | null {\n if (this.currentFormObject === null) {\n return null;\n }\n\n this.currentFormObject.attributeCollection.map((attribute) => {\n const receivedAttribute =\n receivedForm.currentFormObject?.getAttributeByKey(attribute.key);\n if (receivedAttribute) {\n attribute.addMissingError(receivedAttribute);\n } else {\n attribute.removeMissingError();\n }\n\n return attribute;\n });\n\n return this.currentFormObject;\n }\n\n /**\n */\n handleMissingErrors(receivedForm: FormModel) {\n this.currentFormObject = this.processMissingErrors(receivedForm);\n }\n\n /**\n */\n handleNewFormObject(receivedForm: FormModel) {\n this.endResultFormObjects = receivedForm.endResultFormObjects;\n\n const receivedCurrentFormObject = receivedForm.currentFormObject;\n\n if (receivedCurrentFormObject === null) {\n this.completedFormObjects = [...this.allObjects];\n this.currentFormObject = null;\n } else {\n // check if received form exists in the previously entered form objects\n const previouslyEnteredFormObjects =\n this.previouslyEnteredFormObjects.filter((formObject) =>\n formObject.equals(\n receivedCurrentFormObject,\n formObject.hasFixedNrOfRepeats,\n ),\n );\n\n if (previouslyEnteredFormObjects.length > 0) {\n this.handlePreviouslyEnteredFormObjects(\n receivedCurrentFormObject,\n previouslyEnteredFormObjects,\n );\n } else {\n this.completedFormObjects = [...this.allObjects];\n this.currentFormObject = receivedCurrentFormObject;\n }\n }\n }\n\n /**\n * Indicate if a new form object model should be merged with a previousled entered form object model\n * Set this property to false on the form that receives the new form to skip the merge behavior\n */\n get mergePreviouslyEnteredObjects(): boolean {\n return this._mergePreviouslyEnteredObjects;\n }\n\n /**\n */\n set mergePreviouslyEnteredObjects(mergePreviouslyEnteredObjects: boolean) {\n this._mergePreviouslyEnteredObjects = mergePreviouslyEnteredObjects;\n }\n\n /**\n */\n handlePreviouslyEnteredFormObjects(\n receivedCurrentFormObject: FormObjectModel,\n previouslyEnteredFormObjects: Array<FormObjectModel>,\n ) {\n previouslyEnteredFormObjects.forEach((previouslyEnteredFormObject) => {\n const mergedObject = this.mergePreviouslyEnteredObjects\n ? this.mergeObjects(\n receivedCurrentFormObject,\n previouslyEnteredFormObject,\n )\n : receivedCurrentFormObject;\n\n this.addFormObject(mergedObject);\n });\n\n // remove the previously entered form object\n this.previouslyEnteredFormObjects =\n this.previouslyEnteredFormObjects.filter((formObject) => {\n const hasPreviouslyEnteredObject = previouslyEnteredFormObjects.find(\n (previouslyEnteredFormObject) =>\n formObject.equals(previouslyEnteredFormObject),\n );\n\n return !hasPreviouslyEnteredObject;\n });\n }\n\n /**\n */\n mergeObjects(\n newObject: FormObjectModel,\n oldObject: FormObjectModel,\n ): FormObjectModel {\n const mergedFormObject = FormObjectModel.createEmpty(newObject);\n\n mergedFormObject.mergeObject(oldObject);\n\n return mergedFormObject;\n }\n\n /**\n */\n findAttribute(findMethod: Function): AttributeType | null {\n let foundAttribute = null;\n\n this.allObjects.forEach((formObject) => {\n if (foundAttribute === null) {\n foundAttribute =\n formObject.attributeCollection.all.find((item) => findMethod(item)) ||\n null;\n }\n });\n\n return foundAttribute;\n }\n}\n\nexport default FormModel;\n"],"mappings":"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","ignoreList":[]}
@@ -1,474 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.default = void 0;
8
- var _filter = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/filter"));
9
- var _map = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/map"));
10
- var _keys = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/keys"));
11
- var _find = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/find"));
12
- var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
13
- var _objects = require("../../utils/helpers/objects");
14
- var _BaseModel = _interopRequireDefault(require("../base/BaseModel"));
15
- var _AttributeCollection = _interopRequireDefault(require("../attributes/AttributeCollection"));
16
- var _CompositeAttributeModel = _interopRequireDefault(require("../attributes/CompositeAttributeModel"));
17
- var _ContentConfiguration = _interopRequireDefault(require("../contentconfiguration/ContentConfiguration"));
18
- var _ErrorCollection = _interopRequireDefault(require("../error/ErrorCollection"));
19
- var _exceptions = require("../../exceptions");
20
- var _LayoutHintCollection = _interopRequireDefault(require("../layouthint/LayoutHintCollection"));
21
- /**
22
- * Form Object
23
- */
24
- class FormObjectModel extends _BaseModel.default {
25
- /**
26
- * Construct FormObjectModel
27
- */
28
- constructor(object, objectContributions, modelOptions) {
29
- super(object, objectContributions, modelOptions);
30
- (0, _defineProperty2.default)(this, "_attributeCollection", void 0);
31
- (0, _defineProperty2.default)(this, "_contentConfiguration", void 0);
32
- (0, _defineProperty2.default)(this, "_errorCollection", void 0);
33
- (0, _defineProperty2.default)(this, "_repeatIndex", void 0);
34
- (0, _defineProperty2.default)(this, "_dynamicValidationsLoaded", void 0);
35
- if (object && this.getElements().length > 0) {
36
- this._attributeCollection = new _AttributeCollection.default(this.getElements(), this.getApplicableAttributeContributions(), {
37
- ...modelOptions,
38
- isReadonly: false
39
- });
40
- } else {
41
- this._attributeCollection = new _AttributeCollection.default();
42
- }
43
- this._contentConfiguration = new _ContentConfiguration.default(objectContributions ? objectContributions.content : {});
44
- this._errorCollection = new _ErrorCollection.default("formobject");
45
- if ((0, _objects.has)(this.data, "referenceDate")) {
46
- this.attributeCollection.setReferenceDate(this.getData("referenceDate"));
47
- }
48
- this.attributeCollection.indicateContentConfiguration(this.contentConfiguration);
49
- }
50
-
51
- /**
52
- */
53
- static createEmpty(formObjectModel) {
54
- if (!formObjectModel) {
55
- throw new _exceptions.IllegalArgumentException("createEmpty method needs a FormObjectModel as input argument to create a new version of the object");
56
- }
57
- return new FormObjectModel(formObjectModel.data, formObjectModel.contributions, formObjectModel.modelOptions);
58
- }
59
-
60
- /**
61
- */
62
- equals(object) {
63
- var _context;
64
- let withRepeatIndex = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
65
- if (!object || this.key !== object.key) {
66
- return false;
67
- }
68
- const objectContainsOneOfTheAttributes = (0, _filter.default)(_context = this.attributeCollection.all).call(_context, attribute => !attribute.isResult).some(attribute => object && object.attributeCollection.hasAttributeByKey(attribute.key));
69
- const hasSameRepeatIndex = withRepeatIndex ? this.repeatIndex === object.repeatIndex : true;
70
- return hasSameRepeatIndex && objectContainsOneOfTheAttributes;
71
- }
72
-
73
- /**
74
- */
75
- getAttributeByAttribute(attribute) {
76
- return this.attributeCollection.getAttributeByAttribute(attribute);
77
- }
78
-
79
- /**
80
- */
81
- getAttributeByKey(key) {
82
- return this.attributeCollection.getAttributeByKey(key);
83
- }
84
-
85
- /**
86
- */
87
- hasAttributeByKey(key) {
88
- return this.attributeCollection.hasAttributeByKey(key);
89
- }
90
-
91
- /**
92
- * Get elements from both the missing attributes and the result attributes
93
- */
94
- getElements() {
95
- const elements = [];
96
- if (this.data.elements) {
97
- elements.push(...this.data.elements);
98
- }
99
- if (this.data.results) {
100
- var _context2;
101
- const dataResults = (0, _map.default)(_context2 = this.data.results).call(_context2, result => ({
102
- ...result,
103
- isResult: true
104
- }));
105
- elements.push(...dataResults);
106
- }
107
- if (this.data.elementid) {
108
- elements.push({
109
- ...this.data
110
- });
111
- }
112
- return elements;
113
- }
114
-
115
- /**
116
- * Map available contributions on the available data. Only use contributions that are needed for the data
117
- */
118
- getApplicableAttributeContributions() {
119
- if (this.data && this.contributions) {
120
- var _context3;
121
- const dataElementIds = (0, _map.default)(_context3 = this.getElements()).call(_context3, element => element.elementid);
122
- const contributions = this.getAttributesInData(dataElementIds, this.contributions.attributes);
123
-
124
- // set all attribute mandatory for dynamic object
125
- if (this.isDynamic) {
126
- return (0, _map.default)(contributions).call(contributions, attribute => {
127
- const [attributeKey] = (0, _keys.default)(attribute);
128
- return {
129
- [attributeKey]: {
130
- ...attribute[attributeKey],
131
- mandatory: true
132
- }
133
- };
134
- });
135
- }
136
- return contributions;
137
- }
138
- return [];
139
- }
140
-
141
- /**
142
- * Recursevily check if an attribute id occurs in the tree of attribute contributions.
143
- * The complete leaf of the tree is returned when an attribute id matches
144
- */
145
- getAttributesInData(dataElementIds, attributesContributions) {
146
- return (0, _filter.default)(attributesContributions).call(attributesContributions, attributeContributions => {
147
- const [attributeKey] = (0, _keys.default)(attributeContributions);
148
- return dataElementIds.some(dataElementId => dataElementId.split(".")[0] === attributeKey);
149
- });
150
- }
151
-
152
- /**
153
- */
154
- getInitialChildModelLinks() {
155
- return this._attributeCollection.getInitialChildModelLinks();
156
- }
157
-
158
- /**
159
- */
160
- setChildModels(models, errors) {
161
- this._attributeCollection.setChildModels(models, errors);
162
- }
163
-
164
- /**
165
- * get key
166
- */
167
- get key() {
168
- return this.data.objectid;
169
- }
170
-
171
- /**
172
- * Get content configuration for form objects
173
- */
174
- get contentConfiguration() {
175
- return this._contentConfiguration;
176
- }
177
-
178
- /**
179
- */
180
- get hasEndResultConfiguration() {
181
- return this.contributions.content?.results != null;
182
- }
183
-
184
- /**
185
- * Indicates if object is dynamic.
186
- *
187
- * A subtle difference exists between objects for wizard style instrument dialogs and other objects.
188
- * In the 'missing object' response, wizard style objects will include only the first attribute(s) to be answered,
189
- * while other objects will include the complete set of attributes of that object.
190
- *
191
- * This difference is condensed in the term of 'dynamic objects': these objects start (in the 'missing object' response)
192
- * with a very select set of attributes to be answered, and each successive 'missing elements' response will include next attributes to be answered.
193
- * When an object is dynamic, the form contributions will mention a "dynamicObject": true property.
194
- */
195
- get isDynamic() {
196
- return this.getContribution("dynamicObject", false);
197
- }
198
-
199
- /**
200
- */
201
- get hasDynamicValidations() {
202
- return this.getContribution("dynamicValidations", false);
203
- }
204
-
205
- /**
206
- * Indicates if object is repeatable
207
- */
208
- get isRepeatable() {
209
- return this.getContribution("repeatable", false);
210
- }
211
-
212
- /**
213
- */
214
- get repeatIndex() {
215
- return this._repeatIndex ?? this.data.index ?? 1;
216
- }
217
-
218
- /**
219
- */
220
- set repeatIndex(repeatIndex) {
221
- this._repeatIndex = repeatIndex;
222
- }
223
-
224
- /**
225
- */
226
- get maxRepeats() {
227
- if (this.isRepeatable) {
228
- return this.getData("numberofrepeats", -1);
229
- }
230
- return 1;
231
- }
232
-
233
- /**
234
- */
235
- get hasFixedNrOfRepeats() {
236
- return this.maxRepeats > -1;
237
- }
238
-
239
- /**
240
- */
241
- get isRepeatWithUnknownTotal() {
242
- return this.isRepeatable && this.maxRepeats === -1;
243
- }
244
-
245
- /**
246
- */
247
- get isLastRepeat() {
248
- if (this.isRepeatable) {
249
- return this.data.last || false;
250
- }
251
- return true;
252
- }
253
-
254
- /**
255
- */
256
- get repeatIndexLabel() {
257
- return this.data["index-identifier"] || null;
258
- }
259
-
260
- /**
261
- * Get label of form object
262
- */
263
- get label() {
264
- return this.contributions.label;
265
- }
266
-
267
- /**
268
- * Get introText of form object
269
- */
270
- get introText() {
271
- if (this.data.content?.text) {
272
- return this.data.content.text.message;
273
- }
274
- if (this.contributions.text?.message) {
275
- return this.contributions.text.message;
276
- }
277
- return this.contributions.introText;
278
- }
279
-
280
- /**
281
- * Get assistent of form object
282
- */
283
- get assistent() {
284
- return this.contributions.assistent;
285
- }
286
-
287
- /**
288
- * Get button labels
289
- */
290
- get buttonLabels() {
291
- return this.getContribution("buttonLabels", {});
292
- }
293
-
294
- /**
295
- * get attribute collection
296
- */
297
- get attributeCollection() {
298
- return this._attributeCollection;
299
- }
300
-
301
- /**
302
- */
303
- set attributeCollection(attributeCollection) {
304
- this._attributeCollection = attributeCollection;
305
- }
306
-
307
- /**
308
- */
309
- mergeObject(oldObject) {
310
- this.attributeCollection.forEach(attribute => {
311
- const mergeWithAttribute = oldObject.getAttributeByAttribute(attribute);
312
- if (mergeWithAttribute) {
313
- attribute.mergeAttribute(mergeWithAttribute);
314
- }
315
- });
316
- this.repeatIndex = oldObject.repeatIndex;
317
- }
318
-
319
- /**
320
- * Update attribute
321
- */
322
- updateAttribute(attribute, value) {
323
- const attributeToUpdate = this.attributeCollection.getAttributeByAttribute(attribute);
324
- if (attributeToUpdate === null) {
325
- throw new Error(`Attribute with name: ${attribute.name} not found.`);
326
- }
327
- if (attributeToUpdate instanceof _CompositeAttributeModel.default) {
328
- attributeToUpdate.update(value, attribute);
329
- } else {
330
- attributeToUpdate.update(value);
331
- }
332
- return attributeToUpdate;
333
- }
334
-
335
- /**
336
- * Inidicates if Form is changed since a given timestamp (Date.now)
337
- */
338
- isChangedSince(timestamp) {
339
- var _context4;
340
- return (0, _find.default)(_context4 = this.attributeCollection).call(_context4, attribute => attribute.isChangedSince(timestamp)) !== null;
341
- }
342
-
343
- /**
344
- * Reset all errors on Form Object
345
- */
346
- resetErrors() {
347
- this._errorCollection = new _ErrorCollection.default("formobject");
348
- this.attributeCollection.forEach(attribute => attribute.resetErrors());
349
- }
350
-
351
- /**
352
- * Get error messages
353
- */
354
- get errorCollection() {
355
- return this._errorCollection;
356
- }
357
-
358
- /**
359
- * Registers an error that was received from a server response
360
- */
361
- addServerError(error) {
362
- if (error.anchor?.elementid != null) {
363
- this.attributeCollection.addServerError(error);
364
- } else {
365
- this._errorCollection.addServerError(error.id, error.message, error.properties, error.layouthint);
366
- }
367
- }
368
-
369
- /**
370
- */
371
- hasServerErrors() {
372
- return this.errorCollection.hasItems || this.attributeCollection.hasServerErrors();
373
- }
374
-
375
- /**
376
- */
377
- hasErrors() {
378
- return this.errorCollection.hasItems || this.attributeCollection.hasErrors();
379
- }
380
-
381
- /**
382
- */
383
- get isValid() {
384
- return this.attributeCollection.visible.every(attribute => attribute.isValid) && !this.errorCollection.hasItems;
385
- }
386
-
387
- /**
388
- */
389
- get dynamicValidationsLoaded() {
390
- return this._dynamicValidationsLoaded;
391
- }
392
-
393
- /**
394
- */
395
- set dynamicValidationsLoaded(dynamicValidationsLoaded) {
396
- this._dynamicValidationsLoaded = dynamicValidationsLoaded;
397
- }
398
-
399
- /**
400
- * Convert error json from a form service to validation messages on the form object and attributes
401
- */
402
- handleErrorValidations(errors) {
403
- const attributeErrors = [];
404
- errors.forEach(error => {
405
- if (error.anchor?.objectid === this.key) {
406
- if ((0, _objects.has)(error.anchor, "elementid")) {
407
- attributeErrors.push(error);
408
- } else {
409
- this.errorCollection.addServerError(error.id, error.message, error.properties, new _LayoutHintCollection.default(error.layouthint));
410
- }
411
- }
412
- });
413
- this.attributeCollection.updateValidations(attributeErrors);
414
- }
415
-
416
- /**
417
- * Convert missing json from a form service to mandatory validation constraints and messages
418
- */
419
- handleMissingValidations(missing) {
420
- const attributeErrors = [];
421
- for (const anchor of missing.anchors) {
422
- if (!anchor.objectid || anchor.objectid === this.key) {
423
- if (Array.isArray(anchor.elements)) {
424
- for (const element of anchor.elements) {
425
- attributeErrors.push({
426
- anchor: {
427
- elementid: element.elementid
428
- },
429
- id: "Constraint.Mandatory"
430
- });
431
- }
432
- } else {
433
- attributeErrors.push({
434
- anchor,
435
- id: "Constraint.Mandatory"
436
- });
437
- }
438
- }
439
- }
440
- this.attributeCollection.updateValidations(attributeErrors);
441
- }
442
-
443
- /**
444
- */
445
- updateValidations(data) {
446
- this.resetErrors();
447
- if (Array.isArray(data.errors)) {
448
- this.handleErrorValidations(data.errors);
449
- }
450
-
451
- // missing attribute errors
452
- if (Array.isArray(data.missing?.anchors)) {
453
- this.handleMissingValidations(data.missing);
454
- }
455
- this.dynamicValidationsLoaded = true;
456
- return this;
457
- }
458
-
459
- /**
460
- * Generate formdata object for current formobject based on formdata of attributes
461
- */
462
- get formdata() {
463
- return this.attributeCollection.formdata;
464
- }
465
-
466
- /**
467
- */
468
- getFormData() {
469
- let validationData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
470
- return this.attributeCollection.getFormData(validationData);
471
- }
472
- }
473
- exports.default = FormObjectModel;
474
- //# sourceMappingURL=FormObjectModel.cjs.map