@beinformed/ui 1.59.21 → 1.59.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2468) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/esm/hooks/useI18n.d.ts +13 -0
  3. package/esm/hooks/useModelCatalog.d.ts +32 -0
  4. package/esm/i18n/Locales.d.ts +59 -0
  5. package/esm/models/actions/ActionModel.d.ts +82 -0
  6. package/esm/models/application/ApplicationModel.d.ts +48 -0
  7. package/esm/models/attributes/AttributeCollection.d.ts +102 -0
  8. package/esm/models/attributes/AttributeContent.d.ts +64 -0
  9. package/esm/models/attributes/AttributeDataHelper.d.ts +67 -0
  10. package/esm/models/attributes/AttributeModel.d.ts +398 -0
  11. package/esm/models/attributes/BooleanAttributeModel.d.ts +69 -0
  12. package/esm/models/attributes/ChoiceAttributeModel.d.ts +85 -0
  13. package/esm/models/attributes/ChoiceAttributeOptionCollection.d.ts +81 -0
  14. package/esm/models/attributes/ChoiceAttributeOptionModel.d.ts +151 -0
  15. package/esm/models/attributes/DatetimeAttributeModel.d.ts +85 -0
  16. package/esm/models/attributes/PasswordAttributeModel.d.ts +62 -0
  17. package/esm/models/attributes/UploadAttributeModel.d.ts +60 -0
  18. package/esm/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +65 -0
  19. package/esm/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +50 -0
  20. package/esm/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -0
  21. package/esm/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -0
  22. package/esm/models/attributes/input-constraints/RangeConstraint.d.ts +51 -0
  23. package/esm/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -0
  24. package/esm/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -0
  25. package/esm/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -0
  26. package/esm/models/base/BaseCollection.d.ts +89 -0
  27. package/esm/models/base/BaseModel.d.ts +78 -0
  28. package/esm/models/base/ResourceModel.d.ts +102 -0
  29. package/esm/models/caseview/CaseViewModel.d.ts +46 -0
  30. package/esm/models/concepts/BusinessScenarioModel.d.ts +20 -0
  31. package/esm/models/concepts/ConceptDetailModel.d.ts +86 -0
  32. package/esm/models/concepts/ConceptLinkModel.d.ts +70 -0
  33. package/esm/models/concepts/ConceptRelationCollection.d.ts +36 -0
  34. package/esm/models/concepts/ConceptRelationModel.d.ts +61 -0
  35. package/esm/models/concepts/ConceptTypeDetailModel.d.ts +54 -0
  36. package/esm/models/content/ContentLinkModel.d.ts +85 -0
  37. package/esm/models/content/ContentModel.d.ts +80 -0
  38. package/esm/models/content/ContentTOCModel.d.ts +41 -0
  39. package/esm/models/content/SectionModel.d.ts +76 -0
  40. package/esm/models/content/SubSectionModel.d.ts +69 -0
  41. package/esm/models/contentconfiguration/ContentConfiguration.d.ts +28 -0
  42. package/esm/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -0
  43. package/esm/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -0
  44. package/esm/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -0
  45. package/esm/models/detail/DetailModel.d.ts +80 -0
  46. package/esm/models/error/ErrorCollection.d.ts +51 -0
  47. package/esm/models/error/ErrorResponse.d.ts +156 -0
  48. package/esm/models/filters/BaseFilterModel.d.ts +101 -0
  49. package/esm/models/form/FormModel.d.ts +350 -0
  50. package/esm/models/form/FormObjectModel.d.ts +209 -0
  51. package/esm/models/grouping/GroupingModel.d.ts +86 -0
  52. package/esm/models/href/Href.d.ts +218 -0
  53. package/esm/models/href/ListHref.d.ts +64 -0
  54. package/esm/models/layouthint/LayoutHintCollection.d.ts +43 -0
  55. package/esm/models/links/LinkCollection.d.ts +71 -0
  56. package/esm/models/links/LinkModel.d.ts +93 -0
  57. package/esm/models/list/ListDetailModel.d.ts +69 -0
  58. package/esm/models/list/ListHeaderModel.d.ts +53 -0
  59. package/esm/models/list/ListModel.d.ts +143 -0
  60. package/esm/models/paging/PagesizeModel.d.ts +25 -0
  61. package/esm/models/panels/GroupingPanelModel.d.ts +49 -0
  62. package/esm/models/sorting/SortOptionModel.d.ts +48 -0
  63. package/esm/models/sorting/SortingModel.d.ts +42 -0
  64. package/esm/models/tab/TabModel.d.ts +53 -0
  65. package/esm/models/user/UserServicesModel.d.ts +39 -0
  66. package/esm/modularui/Authenticate.d.ts +46 -0
  67. package/esm/modularui/ModularUIRequest.d.ts +207 -0
  68. package/esm/modularui/ModularUIResponse.d.ts +78 -0
  69. package/esm/react-server/serverUtil.d.ts +46 -0
  70. package/esm/react-theme/utils/background.d.ts +4 -0
  71. package/esm/react-theme/utils/colors.d.ts +9 -0
  72. package/esm/react-theme/utils/contrast.d.ts +18 -0
  73. package/esm/react-theme/utils/corners.d.ts +3 -0
  74. package/esm/react-theme/utils/spacers.d.ts +9 -0
  75. package/esm/react-theme/utils/themeProps.d.ts +7 -0
  76. package/esm/redux/_modularui/ModularUIActions.d.ts +26 -0
  77. package/esm/redux/_modularui/types.d.ts +83 -0
  78. package/esm/redux/actions/Notification.d.ts +10 -0
  79. package/esm/redux/store/beforeRenderHooks.d.ts +7 -0
  80. package/esm/redux/store/configureStore.d.ts +9 -0
  81. package/lib/builder/index.cjs +18 -0
  82. package/lib/builder/index.cjs.map +1 -0
  83. package/lib/builder/index.d.cts +1 -0
  84. package/lib/builder/mergeLayoutHintConfigurations.cjs +60 -0
  85. package/lib/builder/mergeLayoutHintConfigurations.cjs.map +1 -0
  86. package/lib/builder/mergeLayoutHintConfigurations.d.cts +1 -0
  87. package/lib/constants/Constants.cjs +189 -0
  88. package/lib/constants/Constants.cjs.map +1 -0
  89. package/lib/constants/Constants.d.cts +158 -0
  90. package/lib/constants/LayoutHintConfig.cjs +173 -0
  91. package/lib/constants/LayoutHintConfig.cjs.map +1 -0
  92. package/lib/constants/LayoutHintConfig.d.cts +267 -0
  93. package/lib/constants/LayoutHints.cjs +135 -0
  94. package/lib/constants/LayoutHints.cjs.map +1 -0
  95. package/lib/constants/LayoutHints.d.cts +83 -0
  96. package/lib/constants/Settings.cjs +219 -0
  97. package/lib/constants/Settings.cjs.map +1 -0
  98. package/lib/constants/Settings.d.cts +32 -0
  99. package/lib/constants/index.cjs +40 -0
  100. package/lib/constants/index.cjs.map +1 -0
  101. package/lib/constants/index.d.cts +3 -0
  102. package/lib/exceptions/ConfigurationException.cjs +17 -0
  103. package/lib/exceptions/ConfigurationException.cjs.map +1 -0
  104. package/lib/exceptions/ConfigurationException.d.cts +7 -0
  105. package/lib/exceptions/FetchException.cjs +72 -0
  106. package/lib/exceptions/FetchException.cjs.map +1 -0
  107. package/lib/exceptions/FetchException.d.cts +31 -0
  108. package/lib/exceptions/IllegalArgumentException.cjs +17 -0
  109. package/lib/exceptions/IllegalArgumentException.cjs.map +1 -0
  110. package/lib/exceptions/IllegalArgumentException.d.cts +7 -0
  111. package/lib/exceptions/IllegalReturnException.cjs +16 -0
  112. package/lib/exceptions/IllegalReturnException.cjs.map +1 -0
  113. package/lib/exceptions/IllegalReturnException.d.cts +6 -0
  114. package/lib/exceptions/IllegalStateException.cjs +17 -0
  115. package/lib/exceptions/IllegalStateException.cjs.map +1 -0
  116. package/lib/exceptions/IllegalStateException.d.cts +7 -0
  117. package/lib/exceptions/JsonParseException.cjs +17 -0
  118. package/lib/exceptions/JsonParseException.cjs.map +1 -0
  119. package/lib/exceptions/JsonParseException.d.cts +7 -0
  120. package/lib/exceptions/MissingPropertyException.cjs +17 -0
  121. package/lib/exceptions/MissingPropertyException.cjs.map +1 -0
  122. package/lib/exceptions/MissingPropertyException.d.cts +7 -0
  123. package/lib/exceptions/NetworkException.cjs +23 -0
  124. package/lib/exceptions/NetworkException.cjs.map +1 -0
  125. package/lib/exceptions/NetworkException.d.cts +9 -0
  126. package/lib/exceptions/NotAllowedUriException.cjs +17 -0
  127. package/lib/exceptions/NotAllowedUriException.cjs.map +1 -0
  128. package/lib/exceptions/NotAllowedUriException.d.cts +7 -0
  129. package/lib/exceptions/NotFoundException.cjs +26 -0
  130. package/lib/exceptions/NotFoundException.cjs.map +1 -0
  131. package/lib/exceptions/NotFoundException.d.cts +10 -0
  132. package/lib/exceptions/ServerRequestException.cjs +17 -0
  133. package/lib/exceptions/ServerRequestException.cjs.map +1 -0
  134. package/lib/exceptions/ServerRequestException.d.cts +7 -0
  135. package/lib/exceptions/ThemePropertyException.cjs +17 -0
  136. package/lib/exceptions/ThemePropertyException.cjs.map +1 -0
  137. package/lib/exceptions/ThemePropertyException.d.cts +7 -0
  138. package/lib/exceptions/TimeoutException.cjs +17 -0
  139. package/lib/exceptions/TimeoutException.cjs.map +1 -0
  140. package/lib/exceptions/TimeoutException.d.cts +7 -0
  141. package/lib/exceptions/UnauthorizedException.cjs +25 -0
  142. package/lib/exceptions/UnauthorizedException.cjs.map +1 -0
  143. package/lib/exceptions/UnauthorizedException.d.cts +11 -0
  144. package/lib/exceptions/UnsupportedOperationException.cjs +17 -0
  145. package/lib/exceptions/UnsupportedOperationException.cjs.map +1 -0
  146. package/lib/exceptions/UnsupportedOperationException.d.cts +7 -0
  147. package/lib/exceptions/index.cjs +112 -0
  148. package/lib/exceptions/index.cjs.map +1 -0
  149. package/lib/exceptions/index.d.cts +15 -0
  150. package/lib/hooks/index.cjs +183 -0
  151. package/lib/hooks/index.cjs.map +1 -0
  152. package/lib/hooks/index.d.cts +16 -0
  153. package/lib/hooks/useAllFormsOnModel.cjs +81 -0
  154. package/lib/hooks/useAllFormsOnModel.cjs.map +1 -0
  155. package/lib/hooks/useAllFormsOnModel.d.cts +7 -0
  156. package/lib/hooks/useAuthentication.cjs +66 -0
  157. package/lib/hooks/useAuthentication.cjs.map +1 -0
  158. package/lib/hooks/useAuthentication.d.cts +16 -0
  159. package/lib/hooks/useContent.cjs +49 -0
  160. package/lib/hooks/useContent.cjs.map +1 -0
  161. package/lib/hooks/useContent.d.cts +3 -0
  162. package/lib/hooks/useDeepCompareEffect.cjs +35 -0
  163. package/lib/hooks/useDeepCompareEffect.cjs.map +1 -0
  164. package/lib/hooks/useDeepCompareEffect.d.cts +6 -0
  165. package/lib/hooks/useForm.cjs +98 -0
  166. package/lib/hooks/useForm.cjs.map +1 -0
  167. package/lib/hooks/useForm.d.cts +21 -0
  168. package/lib/hooks/useI18n.cjs +42 -0
  169. package/lib/hooks/useI18n.cjs.map +1 -0
  170. package/lib/hooks/useI18n.d.cts +13 -0
  171. package/lib/hooks/useModal.cjs +43 -0
  172. package/lib/hooks/useModal.cjs.map +1 -0
  173. package/lib/hooks/useModal.d.cts +12 -0
  174. package/lib/hooks/useModelCatalog.cjs +179 -0
  175. package/lib/hooks/useModelCatalog.cjs.map +1 -0
  176. package/lib/hooks/useModelCatalog.d.cts +32 -0
  177. package/lib/hooks/useModels.cjs +45 -0
  178. package/lib/hooks/useModels.cjs.map +1 -0
  179. package/lib/hooks/useModels.d.cts +10 -0
  180. package/lib/hooks/useModularUI.cjs +69 -0
  181. package/lib/hooks/useModularUI.cjs.map +1 -0
  182. package/lib/hooks/useModularUI.d.cts +3 -0
  183. package/lib/hooks/useModularUIBasic.cjs +81 -0
  184. package/lib/hooks/useModularUIBasic.cjs.map +1 -0
  185. package/lib/hooks/useModularUIBasic.d.cts +9 -0
  186. package/lib/hooks/useModularUIModel.cjs +128 -0
  187. package/lib/hooks/useModularUIModel.cjs.map +1 -0
  188. package/lib/hooks/useModularUIModel.d.cts +27 -0
  189. package/lib/hooks/useModularUIRequest.cjs +25 -0
  190. package/lib/hooks/useModularUIRequest.cjs.map +1 -0
  191. package/lib/hooks/useModularUIRequest.d.cts +4 -0
  192. package/lib/hooks/useNotification.cjs +39 -0
  193. package/lib/hooks/useNotification.cjs.map +1 -0
  194. package/lib/hooks/useNotification.d.cts +8 -0
  195. package/lib/hooks/usePreference.cjs +23 -0
  196. package/lib/hooks/usePreference.cjs.map +1 -0
  197. package/lib/hooks/usePreference.d.cts +2 -0
  198. package/lib/hooks/useProgressIndicator.cjs +23 -0
  199. package/lib/hooks/useProgressIndicator.cjs.map +1 -0
  200. package/lib/hooks/useProgressIndicator.d.cts +9 -0
  201. package/lib/hooks/useRouter.cjs +42 -0
  202. package/lib/hooks/useRouter.cjs.map +1 -0
  203. package/lib/hooks/useRouter.d.cts +23 -0
  204. package/lib/i18n/Locale.cjs +128 -0
  205. package/lib/i18n/Locale.cjs.map +1 -0
  206. package/lib/i18n/Locale.d.cts +53 -0
  207. package/lib/i18n/Locales.cjs +140 -0
  208. package/lib/i18n/Locales.cjs.map +1 -0
  209. package/lib/i18n/Locales.d.cts +59 -0
  210. package/lib/i18n/Message.cjs +50 -0
  211. package/lib/i18n/Message.cjs.map +1 -0
  212. package/lib/i18n/Message.d.cts +6 -0
  213. package/lib/i18n/index.cjs +57 -0
  214. package/lib/i18n/index.cjs.map +1 -0
  215. package/lib/i18n/index.d.cts +5 -0
  216. package/lib/i18n/languages.cjs +212 -0
  217. package/lib/i18n/languages.cjs.map +1 -0
  218. package/lib/i18n/languages.d.cts +215 -0
  219. package/lib/i18n/translations/beinformed_error_messages_en.nl.cjs +104 -0
  220. package/lib/i18n/translations/beinformed_error_messages_en.nl.cjs.map +1 -0
  221. package/lib/i18n/translations/beinformed_error_messages_en.nl.d.cts +97 -0
  222. package/lib/i18n/translations/beinformed_error_messages_nl.nl.cjs +104 -0
  223. package/lib/i18n/translations/beinformed_error_messages_nl.nl.cjs.map +1 -0
  224. package/lib/i18n/translations/beinformed_error_messages_nl.nl.d.cts +97 -0
  225. package/lib/i18n/types.cjs +2 -0
  226. package/lib/i18n/types.cjs.map +1 -0
  227. package/lib/i18n/types.d.cts +11 -0
  228. package/lib/i18n/withMessage.cjs +27 -0
  229. package/lib/i18n/withMessage.cjs.map +1 -0
  230. package/lib/i18n/withMessage.d.cts +3 -0
  231. package/lib/index.cjs +73 -0
  232. package/lib/index.cjs.map +1 -0
  233. package/lib/index.d.cts +6 -0
  234. package/lib/models/actions/ActionCollection.cjs +90 -0
  235. package/lib/models/actions/ActionCollection.cjs.map +1 -0
  236. package/lib/models/actions/ActionCollection.d.cts +30 -0
  237. package/lib/models/actions/ActionModel.cjs +194 -0
  238. package/lib/models/actions/ActionModel.cjs.map +1 -0
  239. package/lib/models/actions/ActionModel.d.cts +82 -0
  240. package/lib/models/application/ApplicationModel.cjs +133 -0
  241. package/lib/models/application/ApplicationModel.cjs.map +1 -0
  242. package/lib/models/application/ApplicationModel.d.cts +48 -0
  243. package/lib/models/attributes/AttributeCollection.cjs +282 -0
  244. package/lib/models/attributes/AttributeCollection.cjs.map +1 -0
  245. package/lib/models/attributes/AttributeCollection.d.cts +102 -0
  246. package/lib/models/attributes/AttributeContent.cjs +203 -0
  247. package/lib/models/attributes/AttributeContent.cjs.map +1 -0
  248. package/lib/models/attributes/AttributeContent.d.cts +64 -0
  249. package/lib/models/attributes/AttributeDataHelper.cjs +267 -0
  250. package/lib/models/attributes/AttributeDataHelper.cjs.map +1 -0
  251. package/lib/models/attributes/AttributeDataHelper.d.cts +67 -0
  252. package/lib/models/attributes/AttributeModel.cjs +824 -0
  253. package/lib/models/attributes/AttributeModel.cjs.map +1 -0
  254. package/lib/models/attributes/AttributeModel.d.cts +398 -0
  255. package/lib/models/attributes/AttributeSetModel.cjs +105 -0
  256. package/lib/models/attributes/AttributeSetModel.cjs.map +1 -0
  257. package/lib/models/attributes/AttributeSetModel.d.cts +36 -0
  258. package/lib/models/attributes/BooleanAttributeModel.cjs +295 -0
  259. package/lib/models/attributes/BooleanAttributeModel.cjs.map +1 -0
  260. package/lib/models/attributes/BooleanAttributeModel.d.cts +69 -0
  261. package/lib/models/attributes/CaptchaAttributeModel.cjs +60 -0
  262. package/lib/models/attributes/CaptchaAttributeModel.cjs.map +1 -0
  263. package/lib/models/attributes/CaptchaAttributeModel.d.cts +19 -0
  264. package/lib/models/attributes/ChoiceAttributeModel.cjs +411 -0
  265. package/lib/models/attributes/ChoiceAttributeModel.cjs.map +1 -0
  266. package/lib/models/attributes/ChoiceAttributeModel.d.cts +85 -0
  267. package/lib/models/attributes/ChoiceAttributeOptionCollection.cjs +300 -0
  268. package/lib/models/attributes/ChoiceAttributeOptionCollection.cjs.map +1 -0
  269. package/lib/models/attributes/ChoiceAttributeOptionCollection.d.cts +81 -0
  270. package/lib/models/attributes/ChoiceAttributeOptionModel.cjs +342 -0
  271. package/lib/models/attributes/ChoiceAttributeOptionModel.cjs.map +1 -0
  272. package/lib/models/attributes/ChoiceAttributeOptionModel.d.cts +151 -0
  273. package/lib/models/attributes/CompositeAttributeChildCollection.cjs +189 -0
  274. package/lib/models/attributes/CompositeAttributeChildCollection.cjs.map +1 -0
  275. package/lib/models/attributes/CompositeAttributeChildCollection.d.cts +57 -0
  276. package/lib/models/attributes/CompositeAttributeModel.cjs +380 -0
  277. package/lib/models/attributes/CompositeAttributeModel.cjs.map +1 -0
  278. package/lib/models/attributes/CompositeAttributeModel.d.cts +42 -0
  279. package/lib/models/attributes/DatetimeAttributeModel.cjs +465 -0
  280. package/lib/models/attributes/DatetimeAttributeModel.cjs.map +1 -0
  281. package/lib/models/attributes/DatetimeAttributeModel.d.cts +85 -0
  282. package/lib/models/attributes/HelptextAttributeModel.cjs +55 -0
  283. package/lib/models/attributes/HelptextAttributeModel.cjs.map +1 -0
  284. package/lib/models/attributes/HelptextAttributeModel.d.cts +16 -0
  285. package/lib/models/attributes/LabelAttributeModel.cjs +41 -0
  286. package/lib/models/attributes/LabelAttributeModel.cjs.map +1 -0
  287. package/lib/models/attributes/LabelAttributeModel.d.cts +12 -0
  288. package/lib/models/attributes/MemoAttributeModel.cjs +49 -0
  289. package/lib/models/attributes/MemoAttributeModel.cjs.map +1 -0
  290. package/lib/models/attributes/MemoAttributeModel.d.cts +14 -0
  291. package/lib/models/attributes/MoneyAttributeModel.cjs +49 -0
  292. package/lib/models/attributes/MoneyAttributeModel.cjs.map +1 -0
  293. package/lib/models/attributes/MoneyAttributeModel.d.cts +14 -0
  294. package/lib/models/attributes/NumberAttributeModel.cjs +201 -0
  295. package/lib/models/attributes/NumberAttributeModel.cjs.map +1 -0
  296. package/lib/models/attributes/NumberAttributeModel.d.cts +49 -0
  297. package/lib/models/attributes/PasswordAttributeModel.cjs +217 -0
  298. package/lib/models/attributes/PasswordAttributeModel.cjs.map +1 -0
  299. package/lib/models/attributes/PasswordAttributeModel.d.cts +62 -0
  300. package/lib/models/attributes/StringAttributeModel.cjs +284 -0
  301. package/lib/models/attributes/StringAttributeModel.cjs.map +1 -0
  302. package/lib/models/attributes/StringAttributeModel.d.cts +65 -0
  303. package/lib/models/attributes/UploadAttributeModel.cjs +223 -0
  304. package/lib/models/attributes/UploadAttributeModel.cjs.map +1 -0
  305. package/lib/models/attributes/UploadAttributeModel.d.cts +60 -0
  306. package/lib/models/attributes/XMLAttributeModel.cjs +53 -0
  307. package/lib/models/attributes/XMLAttributeModel.cjs.map +1 -0
  308. package/lib/models/attributes/XMLAttributeModel.d.cts +10 -0
  309. package/lib/models/attributes/_createAttribute.cjs +93 -0
  310. package/lib/models/attributes/_createAttribute.cjs.map +1 -0
  311. package/lib/models/attributes/_createAttribute.d.cts +7 -0
  312. package/lib/models/attributes/input-constraints/BSNConstraint.cjs +72 -0
  313. package/lib/models/attributes/input-constraints/BSNConstraint.cjs.map +1 -0
  314. package/lib/models/attributes/input-constraints/BSNConstraint.d.cts +26 -0
  315. package/lib/models/attributes/input-constraints/ConstraintCollection.cjs +50 -0
  316. package/lib/models/attributes/input-constraints/ConstraintCollection.cjs.map +1 -0
  317. package/lib/models/attributes/input-constraints/ConstraintCollection.d.cts +24 -0
  318. package/lib/models/attributes/input-constraints/ConstraintModel.cjs +74 -0
  319. package/lib/models/attributes/input-constraints/ConstraintModel.cjs.map +1 -0
  320. package/lib/models/attributes/input-constraints/ConstraintModel.d.cts +34 -0
  321. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.cjs +205 -0
  322. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.cjs.map +1 -0
  323. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.d.cts +65 -0
  324. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.cjs +76 -0
  325. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.cjs.map +1 -0
  326. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.cts +36 -0
  327. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.cjs +76 -0
  328. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.cjs.map +1 -0
  329. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.cts +36 -0
  330. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.cjs +122 -0
  331. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.cjs.map +1 -0
  332. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.d.cts +50 -0
  333. package/lib/models/attributes/input-constraints/FileExtensionConstraint.cjs +66 -0
  334. package/lib/models/attributes/input-constraints/FileExtensionConstraint.cjs.map +1 -0
  335. package/lib/models/attributes/input-constraints/FileExtensionConstraint.d.cts +33 -0
  336. package/lib/models/attributes/input-constraints/FileSizeConstraint.cjs +98 -0
  337. package/lib/models/attributes/input-constraints/FileSizeConstraint.cjs.map +1 -0
  338. package/lib/models/attributes/input-constraints/FileSizeConstraint.d.cts +42 -0
  339. package/lib/models/attributes/input-constraints/IBANConstraint.cjs +49 -0
  340. package/lib/models/attributes/input-constraints/IBANConstraint.cjs.map +1 -0
  341. package/lib/models/attributes/input-constraints/IBANConstraint.d.cts +23 -0
  342. package/lib/models/attributes/input-constraints/MandatoryConstraint.cjs +53 -0
  343. package/lib/models/attributes/input-constraints/MandatoryConstraint.cjs.map +1 -0
  344. package/lib/models/attributes/input-constraints/MandatoryConstraint.d.cts +23 -0
  345. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.cjs +85 -0
  346. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.cjs.map +1 -0
  347. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.d.cts +36 -0
  348. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.cjs +177 -0
  349. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.cjs.map +1 -0
  350. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.d.cts +61 -0
  351. package/lib/models/attributes/input-constraints/NumberFormatConstraint.cjs +132 -0
  352. package/lib/models/attributes/input-constraints/NumberFormatConstraint.cjs.map +1 -0
  353. package/lib/models/attributes/input-constraints/NumberFormatConstraint.d.cts +52 -0
  354. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.cjs +126 -0
  355. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.cjs.map +1 -0
  356. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.d.cts +46 -0
  357. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.cjs +72 -0
  358. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.cjs.map +1 -0
  359. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.d.cts +36 -0
  360. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.cjs +47 -0
  361. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.cjs.map +1 -0
  362. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.cts +23 -0
  363. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.cjs +64 -0
  364. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.cjs.map +1 -0
  365. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.cts +32 -0
  366. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.cjs +64 -0
  367. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.cjs.map +1 -0
  368. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.cts +32 -0
  369. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.cjs +78 -0
  370. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.cjs.map +1 -0
  371. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.cts +35 -0
  372. package/lib/models/attributes/input-constraints/RangeConstraint.cjs +143 -0
  373. package/lib/models/attributes/input-constraints/RangeConstraint.cjs.map +1 -0
  374. package/lib/models/attributes/input-constraints/RangeConstraint.d.cts +51 -0
  375. package/lib/models/attributes/input-constraints/RegexConstraint.cjs +67 -0
  376. package/lib/models/attributes/input-constraints/RegexConstraint.cjs.map +1 -0
  377. package/lib/models/attributes/input-constraints/RegexConstraint.d.cts +37 -0
  378. package/lib/models/attributes/input-constraints/StringLengthConstraint.cjs +178 -0
  379. package/lib/models/attributes/input-constraints/StringLengthConstraint.cjs.map +1 -0
  380. package/lib/models/attributes/input-constraints/StringLengthConstraint.d.cts +46 -0
  381. package/lib/models/attributes/input-constraints/XMLConstraint.cjs +62 -0
  382. package/lib/models/attributes/input-constraints/XMLConstraint.cjs.map +1 -0
  383. package/lib/models/attributes/input-constraints/XMLConstraint.d.cts +26 -0
  384. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.cjs +66 -0
  385. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.cjs.map +1 -0
  386. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.d.cts +45 -0
  387. package/lib/models/attributes/layouthint-rules/DependentAttribute.cjs +200 -0
  388. package/lib/models/attributes/layouthint-rules/DependentAttribute.cjs.map +1 -0
  389. package/lib/models/attributes/layouthint-rules/DependentAttribute.d.cts +57 -0
  390. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.cjs +88 -0
  391. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.cjs.map +1 -0
  392. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.cts +27 -0
  393. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.cjs +51 -0
  394. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.cjs.map +1 -0
  395. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.cts +17 -0
  396. package/lib/models/base/BaseCollection.cjs +186 -0
  397. package/lib/models/base/BaseCollection.cjs.map +1 -0
  398. package/lib/models/base/BaseCollection.d.cts +89 -0
  399. package/lib/models/base/BaseModel.cjs +149 -0
  400. package/lib/models/base/BaseModel.cjs.map +1 -0
  401. package/lib/models/base/BaseModel.d.cts +78 -0
  402. package/lib/models/base/ResourceCollection.cjs +41 -0
  403. package/lib/models/base/ResourceCollection.cjs.map +1 -0
  404. package/lib/models/base/ResourceCollection.d.cts +20 -0
  405. package/lib/models/base/ResourceModel.cjs +209 -0
  406. package/lib/models/base/ResourceModel.cjs.map +1 -0
  407. package/lib/models/base/ResourceModel.d.cts +102 -0
  408. package/lib/models/caseview/CaseViewModel.cjs +163 -0
  409. package/lib/models/caseview/CaseViewModel.cjs.map +1 -0
  410. package/lib/models/caseview/CaseViewModel.d.cts +46 -0
  411. package/lib/models/concepts/BusinessScenarioModel.cjs +122 -0
  412. package/lib/models/concepts/BusinessScenarioModel.cjs.map +1 -0
  413. package/lib/models/concepts/BusinessScenarioModel.d.cts +20 -0
  414. package/lib/models/concepts/ConceptDetailModel.cjs +281 -0
  415. package/lib/models/concepts/ConceptDetailModel.cjs.map +1 -0
  416. package/lib/models/concepts/ConceptDetailModel.d.cts +86 -0
  417. package/lib/models/concepts/ConceptIndexModel.cjs +150 -0
  418. package/lib/models/concepts/ConceptIndexModel.cjs.map +1 -0
  419. package/lib/models/concepts/ConceptIndexModel.d.cts +44 -0
  420. package/lib/models/concepts/ConceptLinkModel.cjs +152 -0
  421. package/lib/models/concepts/ConceptLinkModel.cjs.map +1 -0
  422. package/lib/models/concepts/ConceptLinkModel.d.cts +70 -0
  423. package/lib/models/concepts/ConceptRelationCollection.cjs +82 -0
  424. package/lib/models/concepts/ConceptRelationCollection.cjs.map +1 -0
  425. package/lib/models/concepts/ConceptRelationCollection.d.cts +36 -0
  426. package/lib/models/concepts/ConceptRelationModel.cjs +115 -0
  427. package/lib/models/concepts/ConceptRelationModel.cjs.map +1 -0
  428. package/lib/models/concepts/ConceptRelationModel.d.cts +61 -0
  429. package/lib/models/concepts/ConceptTypeDetailModel.cjs +128 -0
  430. package/lib/models/concepts/ConceptTypeDetailModel.cjs.map +1 -0
  431. package/lib/models/concepts/ConceptTypeDetailModel.d.cts +54 -0
  432. package/lib/models/concepts/SourceReferenceCollection.cjs +35 -0
  433. package/lib/models/concepts/SourceReferenceCollection.cjs.map +1 -0
  434. package/lib/models/concepts/SourceReferenceCollection.d.cts +14 -0
  435. package/lib/models/concepts/SourceReferenceModel.cjs +73 -0
  436. package/lib/models/concepts/SourceReferenceModel.cjs.map +1 -0
  437. package/lib/models/concepts/SourceReferenceModel.d.cts +32 -0
  438. package/lib/models/content/ContentIndexModel.cjs +142 -0
  439. package/lib/models/content/ContentIndexModel.cjs.map +1 -0
  440. package/lib/models/content/ContentIndexModel.d.cts +41 -0
  441. package/lib/models/content/ContentLinkModel.cjs +193 -0
  442. package/lib/models/content/ContentLinkModel.cjs.map +1 -0
  443. package/lib/models/content/ContentLinkModel.d.cts +85 -0
  444. package/lib/models/content/ContentModel.cjs +207 -0
  445. package/lib/models/content/ContentModel.cjs.map +1 -0
  446. package/lib/models/content/ContentModel.d.cts +80 -0
  447. package/lib/models/content/ContentTOCModel.cjs +163 -0
  448. package/lib/models/content/ContentTOCModel.cjs.map +1 -0
  449. package/lib/models/content/ContentTOCModel.d.cts +41 -0
  450. package/lib/models/content/ContentTypeModel.cjs +74 -0
  451. package/lib/models/content/ContentTypeModel.cjs.map +1 -0
  452. package/lib/models/content/ContentTypeModel.d.cts +26 -0
  453. package/lib/models/content/SectionModel.cjs +180 -0
  454. package/lib/models/content/SectionModel.cjs.map +1 -0
  455. package/lib/models/content/SectionModel.d.cts +76 -0
  456. package/lib/models/content/SubSectionModel.cjs +167 -0
  457. package/lib/models/content/SubSectionModel.cjs.map +1 -0
  458. package/lib/models/content/SubSectionModel.d.cts +69 -0
  459. package/lib/models/contentconfiguration/ContentConfiguration.cjs +75 -0
  460. package/lib/models/contentconfiguration/ContentConfiguration.cjs.map +1 -0
  461. package/lib/models/contentconfiguration/ContentConfiguration.d.cts +28 -0
  462. package/lib/models/contentconfiguration/ContentConfigurationElements.cjs +143 -0
  463. package/lib/models/contentconfiguration/ContentConfigurationElements.cjs.map +1 -0
  464. package/lib/models/contentconfiguration/ContentConfigurationElements.d.cts +47 -0
  465. package/lib/models/contentconfiguration/ContentConfigurationEndResults.cjs +49 -0
  466. package/lib/models/contentconfiguration/ContentConfigurationEndResults.cjs.map +1 -0
  467. package/lib/models/contentconfiguration/ContentConfigurationEndResults.d.cts +16 -0
  468. package/lib/models/contentconfiguration/ContentConfigurationQuestions.cjs +54 -0
  469. package/lib/models/contentconfiguration/ContentConfigurationQuestions.cjs.map +1 -0
  470. package/lib/models/contentconfiguration/ContentConfigurationQuestions.d.cts +22 -0
  471. package/lib/models/contentconfiguration/ContentConfigurationResults.cjs +103 -0
  472. package/lib/models/contentconfiguration/ContentConfigurationResults.cjs.map +1 -0
  473. package/lib/models/contentconfiguration/ContentConfigurationResults.d.cts +39 -0
  474. package/lib/models/detail/DetailModel.cjs +219 -0
  475. package/lib/models/detail/DetailModel.cjs.map +1 -0
  476. package/lib/models/detail/DetailModel.d.cts +80 -0
  477. package/lib/models/error/ErrorCollection.cjs +111 -0
  478. package/lib/models/error/ErrorCollection.cjs.map +1 -0
  479. package/lib/models/error/ErrorCollection.d.cts +51 -0
  480. package/lib/models/error/ErrorModel.cjs +81 -0
  481. package/lib/models/error/ErrorModel.cjs.map +1 -0
  482. package/lib/models/error/ErrorModel.d.cts +41 -0
  483. package/lib/models/error/ErrorResponse.cjs +304 -0
  484. package/lib/models/error/ErrorResponse.cjs.map +1 -0
  485. package/lib/models/error/ErrorResponse.d.cts +156 -0
  486. package/lib/models/filters/AssignmentFilterModel.cjs +161 -0
  487. package/lib/models/filters/AssignmentFilterModel.cjs.map +1 -0
  488. package/lib/models/filters/AssignmentFilterModel.d.cts +35 -0
  489. package/lib/models/filters/BaseFilterModel.cjs +210 -0
  490. package/lib/models/filters/BaseFilterModel.cjs.map +1 -0
  491. package/lib/models/filters/BaseFilterModel.d.cts +101 -0
  492. package/lib/models/filters/ConceptIndexFilterModel.cjs +36 -0
  493. package/lib/models/filters/ConceptIndexFilterModel.cjs.map +1 -0
  494. package/lib/models/filters/ConceptIndexFilterModel.d.cts +6 -0
  495. package/lib/models/filters/FilterCollection.cjs +155 -0
  496. package/lib/models/filters/FilterCollection.cjs.map +1 -0
  497. package/lib/models/filters/FilterCollection.d.cts +49 -0
  498. package/lib/models/filters/FilterModel.cjs +13 -0
  499. package/lib/models/filters/FilterModel.cjs.map +1 -0
  500. package/lib/models/filters/FilterModel.d.cts +5 -0
  501. package/lib/models/filters/RangeFilterModel.cjs +44 -0
  502. package/lib/models/filters/RangeFilterModel.cjs.map +1 -0
  503. package/lib/models/filters/RangeFilterModel.d.cts +6 -0
  504. package/lib/models/filters/StringFilterModel.cjs +147 -0
  505. package/lib/models/filters/StringFilterModel.cjs.map +1 -0
  506. package/lib/models/filters/StringFilterModel.d.cts +30 -0
  507. package/lib/models/form/FormModel.cjs +1038 -0
  508. package/lib/models/form/FormModel.cjs.map +1 -0
  509. package/lib/models/form/FormModel.d.cts +350 -0
  510. package/lib/models/form/FormObjectModel.cjs +474 -0
  511. package/lib/models/form/FormObjectModel.cjs.map +1 -0
  512. package/lib/models/form/FormObjectModel.d.cts +209 -0
  513. package/lib/models/grouping/GroupingModel.cjs +191 -0
  514. package/lib/models/grouping/GroupingModel.cjs.map +1 -0
  515. package/lib/models/grouping/GroupingModel.d.cts +86 -0
  516. package/lib/models/href/Href.cjs +496 -0
  517. package/lib/models/href/Href.cjs.map +1 -0
  518. package/lib/models/href/Href.d.cts +218 -0
  519. package/lib/models/href/ListHref.cjs +135 -0
  520. package/lib/models/href/ListHref.cjs.map +1 -0
  521. package/lib/models/href/ListHref.d.cts +64 -0
  522. package/lib/models/index.cjs +687 -0
  523. package/lib/models/index.cjs.map +1 -0
  524. package/lib/models/index.d.cts +96 -0
  525. package/lib/models/layouthint/LayoutHintCollection.cjs +118 -0
  526. package/lib/models/layouthint/LayoutHintCollection.cjs.map +1 -0
  527. package/lib/models/layouthint/LayoutHintCollection.d.cts +43 -0
  528. package/lib/models/links/LinkCollection.cjs +171 -0
  529. package/lib/models/links/LinkCollection.cjs.map +1 -0
  530. package/lib/models/links/LinkCollection.d.cts +71 -0
  531. package/lib/models/links/LinkModel.cjs +216 -0
  532. package/lib/models/links/LinkModel.cjs.map +1 -0
  533. package/lib/models/links/LinkModel.d.cts +93 -0
  534. package/lib/models/links/normalizeLinkJSON.cjs +107 -0
  535. package/lib/models/links/normalizeLinkJSON.cjs.map +1 -0
  536. package/lib/models/links/normalizeLinkJSON.d.cts +9 -0
  537. package/lib/models/list/ListDetailModel.cjs +266 -0
  538. package/lib/models/list/ListDetailModel.cjs.map +1 -0
  539. package/lib/models/list/ListDetailModel.d.cts +69 -0
  540. package/lib/models/list/ListHeaderModel.cjs +95 -0
  541. package/lib/models/list/ListHeaderModel.cjs.map +1 -0
  542. package/lib/models/list/ListHeaderModel.d.cts +53 -0
  543. package/lib/models/list/ListItemCollection.cjs +67 -0
  544. package/lib/models/list/ListItemCollection.cjs.map +1 -0
  545. package/lib/models/list/ListItemCollection.d.cts +21 -0
  546. package/lib/models/list/ListItemModel.cjs +95 -0
  547. package/lib/models/list/ListItemModel.cjs.map +1 -0
  548. package/lib/models/list/ListItemModel.d.cts +35 -0
  549. package/lib/models/list/ListModel.cjs +385 -0
  550. package/lib/models/list/ListModel.cjs.map +1 -0
  551. package/lib/models/list/ListModel.d.cts +143 -0
  552. package/lib/models/lookup/LookupOptionCollection.cjs +45 -0
  553. package/lib/models/lookup/LookupOptionCollection.cjs.map +1 -0
  554. package/lib/models/lookup/LookupOptionCollection.d.cts +15 -0
  555. package/lib/models/lookup/LookupOptionsModel.cjs +71 -0
  556. package/lib/models/lookup/LookupOptionsModel.cjs.map +1 -0
  557. package/lib/models/lookup/LookupOptionsModel.d.cts +23 -0
  558. package/lib/models/modelcatalog/ModelCatalogModel.cjs +69 -0
  559. package/lib/models/modelcatalog/ModelCatalogModel.cjs.map +1 -0
  560. package/lib/models/modelcatalog/ModelCatalogModel.d.cts +23 -0
  561. package/lib/models/modelcatalog/ModelCategoryCollection.cjs +24 -0
  562. package/lib/models/modelcatalog/ModelCategoryCollection.cjs.map +1 -0
  563. package/lib/models/modelcatalog/ModelCategoryCollection.d.cts +11 -0
  564. package/lib/models/modelcatalog/ModelCategoryModel.cjs +60 -0
  565. package/lib/models/modelcatalog/ModelCategoryModel.cjs.map +1 -0
  566. package/lib/models/modelcatalog/ModelCategoryModel.d.cts +39 -0
  567. package/lib/models/paging/PagesizeModel.cjs +50 -0
  568. package/lib/models/paging/PagesizeModel.cjs.map +1 -0
  569. package/lib/models/paging/PagesizeModel.d.cts +25 -0
  570. package/lib/models/paging/PagingModel.cjs +95 -0
  571. package/lib/models/paging/PagingModel.cjs.map +1 -0
  572. package/lib/models/paging/PagingModel.d.cts +49 -0
  573. package/lib/models/panels/GroupingPanelModel.cjs +143 -0
  574. package/lib/models/panels/GroupingPanelModel.cjs.map +1 -0
  575. package/lib/models/panels/GroupingPanelModel.d.cts +49 -0
  576. package/lib/models/parameter/Parameter.cjs +108 -0
  577. package/lib/models/parameter/Parameter.cjs.map +1 -0
  578. package/lib/models/parameter/Parameter.d.cts +40 -0
  579. package/lib/models/process/ProcessStatusSettingsModel.cjs +85 -0
  580. package/lib/models/process/ProcessStatusSettingsModel.cjs.map +1 -0
  581. package/lib/models/process/ProcessStatusSettingsModel.d.cts +38 -0
  582. package/lib/models/resolveModel.cjs +57 -0
  583. package/lib/models/resolveModel.cjs.map +1 -0
  584. package/lib/models/resolveModel.d.cts +7 -0
  585. package/lib/models/search/CaseSearchModel.cjs +47 -0
  586. package/lib/models/search/CaseSearchModel.cjs.map +1 -0
  587. package/lib/models/search/CaseSearchModel.d.cts +14 -0
  588. package/lib/models/sorting/SortOptionModel.cjs +106 -0
  589. package/lib/models/sorting/SortOptionModel.cjs.map +1 -0
  590. package/lib/models/sorting/SortOptionModel.d.cts +48 -0
  591. package/lib/models/sorting/SortingModel.cjs +112 -0
  592. package/lib/models/sorting/SortingModel.cjs.map +1 -0
  593. package/lib/models/sorting/SortingModel.d.cts +42 -0
  594. package/lib/models/tab/TabModel.cjs +143 -0
  595. package/lib/models/tab/TabModel.cjs.map +1 -0
  596. package/lib/models/tab/TabModel.d.cts +53 -0
  597. package/lib/models/taskgroup/TaskGroupCollection.cjs +21 -0
  598. package/lib/models/taskgroup/TaskGroupCollection.cjs.map +1 -0
  599. package/lib/models/taskgroup/TaskGroupCollection.d.cts +12 -0
  600. package/lib/models/taskgroup/TaskGroupModel.cjs +87 -0
  601. package/lib/models/taskgroup/TaskGroupModel.cjs.map +1 -0
  602. package/lib/models/taskgroup/TaskGroupModel.d.cts +25 -0
  603. package/lib/models/types.cjs +2 -0
  604. package/lib/models/types.cjs.map +1 -0
  605. package/lib/models/types.d.cts +166 -0
  606. package/lib/models/user/UserModel.cjs +59 -0
  607. package/lib/models/user/UserModel.cjs.map +1 -0
  608. package/lib/models/user/UserModel.d.cts +18 -0
  609. package/lib/models/user/UserProfileModel.cjs +55 -0
  610. package/lib/models/user/UserProfileModel.cjs.map +1 -0
  611. package/lib/models/user/UserProfileModel.d.cts +17 -0
  612. package/lib/models/user/UserServicesModel.cjs +126 -0
  613. package/lib/models/user/UserServicesModel.cjs.map +1 -0
  614. package/lib/models/user/UserServicesModel.d.cts +39 -0
  615. package/lib/modularui/Authenticate.cjs +183 -0
  616. package/lib/modularui/Authenticate.cjs.map +1 -0
  617. package/lib/modularui/Authenticate.d.cts +46 -0
  618. package/lib/modularui/CaptchaRequest.cjs +71 -0
  619. package/lib/modularui/CaptchaRequest.cjs.map +1 -0
  620. package/lib/modularui/CaptchaRequest.d.cts +54 -0
  621. package/lib/modularui/ModularUIError.cjs +30 -0
  622. package/lib/modularui/ModularUIError.cjs.map +1 -0
  623. package/lib/modularui/ModularUIError.d.cts +10 -0
  624. package/lib/modularui/ModularUIRequest.cjs +716 -0
  625. package/lib/modularui/ModularUIRequest.cjs.map +1 -0
  626. package/lib/modularui/ModularUIRequest.d.cts +207 -0
  627. package/lib/modularui/ModularUIResponse.cjs +147 -0
  628. package/lib/modularui/ModularUIResponse.cjs.map +1 -0
  629. package/lib/modularui/ModularUIResponse.d.cts +78 -0
  630. package/lib/modularui/UploadRequest.cjs +103 -0
  631. package/lib/modularui/UploadRequest.cjs.map +1 -0
  632. package/lib/modularui/UploadRequest.d.cts +41 -0
  633. package/lib/modularui/index.cjs +42 -0
  634. package/lib/modularui/index.cjs.map +1 -0
  635. package/lib/modularui/index.d.cts +5 -0
  636. package/lib/modularui/types.cjs +2 -0
  637. package/lib/modularui/types.cjs.map +1 -0
  638. package/lib/modularui/types.d.cts +2 -0
  639. package/lib/react/ErrorBoundary.cjs +56 -0
  640. package/lib/react/ErrorBoundary.cjs.map +1 -0
  641. package/lib/react/ErrorBoundary.d.cts +31 -0
  642. package/lib/react/ErrorBoundaryFallback.cjs +41 -0
  643. package/lib/react/ErrorBoundaryFallback.cjs.map +1 -0
  644. package/lib/react/ErrorBoundaryFallback.d.cts +8 -0
  645. package/lib/react/index.cjs +29 -0
  646. package/lib/react/index.cjs.map +1 -0
  647. package/lib/react/index.d.cts +2 -0
  648. package/lib/react/utils.cjs +32 -0
  649. package/lib/react/utils.cjs.map +1 -0
  650. package/lib/react/utils.d.cts +5 -0
  651. package/lib/react-client/Init.cjs +44 -0
  652. package/lib/react-client/Init.cjs.map +1 -0
  653. package/lib/react-client/Init.d.cts +6 -0
  654. package/lib/react-client/client.cjs +216 -0
  655. package/lib/react-client/client.cjs.map +1 -0
  656. package/lib/react-client/client.d.cts +25 -0
  657. package/lib/react-client/contextPath.cjs +26 -0
  658. package/lib/react-client/contextPath.cjs.map +1 -0
  659. package/lib/react-client/contextPath.d.cts +1 -0
  660. package/lib/react-client/index.cjs +40 -0
  661. package/lib/react-client/index.cjs.map +1 -0
  662. package/lib/react-client/index.d.cts +3 -0
  663. package/lib/react-client/rehydrate.cjs +73 -0
  664. package/lib/react-client/rehydrate.cjs.map +1 -0
  665. package/lib/react-client/rehydrate.d.cts +5 -0
  666. package/lib/react-server/contextPath.cjs +10 -0
  667. package/lib/react-server/contextPath.cjs.map +1 -0
  668. package/lib/react-server/contextPath.d.cts +1 -0
  669. package/lib/react-server/createSSRComplete.cjs +61 -0
  670. package/lib/react-server/createSSRComplete.cjs.map +1 -0
  671. package/lib/react-server/createSSRComplete.d.cts +5 -0
  672. package/lib/react-server/htmlpage.cjs +54 -0
  673. package/lib/react-server/htmlpage.cjs.map +1 -0
  674. package/lib/react-server/htmlpage.d.cts +11 -0
  675. package/lib/react-server/index.cjs +82 -0
  676. package/lib/react-server/index.cjs.map +1 -0
  677. package/lib/react-server/index.d.cts +8 -0
  678. package/lib/react-server/renderSSRComplete.cjs +91 -0
  679. package/lib/react-server/renderSSRComplete.cjs.map +1 -0
  680. package/lib/react-server/renderSSRComplete.d.cts +13 -0
  681. package/lib/react-server/renderSSRMinimal.cjs +47 -0
  682. package/lib/react-server/renderSSRMinimal.cjs.map +1 -0
  683. package/lib/react-server/renderSSRMinimal.d.cts +11 -0
  684. package/lib/react-server/requestInformation.cjs +46 -0
  685. package/lib/react-server/requestInformation.cjs.map +1 -0
  686. package/lib/react-server/requestInformation.d.cts +6 -0
  687. package/lib/react-server/serverNoSSR.cjs +63 -0
  688. package/lib/react-server/serverNoSSR.cjs.map +1 -0
  689. package/lib/react-server/serverNoSSR.d.cts +15 -0
  690. package/lib/react-server/serverSSR.cjs +51 -0
  691. package/lib/react-server/serverSSR.cjs.map +1 -0
  692. package/lib/react-server/serverSSR.d.cts +15 -0
  693. package/lib/react-server/serverUtil.cjs +218 -0
  694. package/lib/react-server/serverUtil.cjs.map +1 -0
  695. package/lib/react-server/serverUtil.d.cts +46 -0
  696. package/lib/react-theme/ThemeProvider.cjs +33 -0
  697. package/lib/react-theme/ThemeProvider.cjs.map +1 -0
  698. package/lib/react-theme/ThemeProvider.d.cts +8 -0
  699. package/lib/react-theme/createTheme.cjs +115 -0
  700. package/lib/react-theme/createTheme.cjs.map +1 -0
  701. package/lib/react-theme/createTheme.d.cts +53 -0
  702. package/lib/react-theme/index.cjs +110 -0
  703. package/lib/react-theme/index.cjs.map +1 -0
  704. package/lib/react-theme/index.d.cts +10 -0
  705. package/lib/react-theme/types.cjs +2 -0
  706. package/lib/react-theme/types.cjs.map +1 -0
  707. package/lib/react-theme/types.d.cts +13 -0
  708. package/lib/react-theme/useTheme.cjs +15 -0
  709. package/lib/react-theme/useTheme.cjs.map +1 -0
  710. package/lib/react-theme/useTheme.d.cts +4 -0
  711. package/lib/react-theme/utils/background.cjs +21 -0
  712. package/lib/react-theme/utils/background.cjs.map +1 -0
  713. package/lib/react-theme/utils/background.d.cts +4 -0
  714. package/lib/react-theme/utils/colors.cjs +45 -0
  715. package/lib/react-theme/utils/colors.cjs.map +1 -0
  716. package/lib/react-theme/utils/colors.d.cts +9 -0
  717. package/lib/react-theme/utils/contrast.cjs +95 -0
  718. package/lib/react-theme/utils/contrast.cjs.map +1 -0
  719. package/lib/react-theme/utils/contrast.d.cts +18 -0
  720. package/lib/react-theme/utils/corners.cjs +34 -0
  721. package/lib/react-theme/utils/corners.cjs.map +1 -0
  722. package/lib/react-theme/utils/corners.d.cts +3 -0
  723. package/lib/react-theme/utils/spacers.cjs +89 -0
  724. package/lib/react-theme/utils/spacers.cjs.map +1 -0
  725. package/lib/react-theme/utils/spacers.d.cts +9 -0
  726. package/lib/react-theme/utils/themeProps.cjs +75 -0
  727. package/lib/react-theme/utils/themeProps.cjs.map +1 -0
  728. package/lib/react-theme/utils/themeProps.d.cts +7 -0
  729. package/lib/redux/_i18n/I18nActions.cjs +37 -0
  730. package/lib/redux/_i18n/I18nActions.cjs.map +1 -0
  731. package/lib/redux/_i18n/I18nActions.d.cts +7 -0
  732. package/lib/redux/_i18n/I18nReducer.cjs +78 -0
  733. package/lib/redux/_i18n/I18nReducer.cjs.map +1 -0
  734. package/lib/redux/_i18n/I18nReducer.d.cts +7 -0
  735. package/lib/redux/_i18n/index.cjs +29 -0
  736. package/lib/redux/_i18n/index.cjs.map +1 -0
  737. package/lib/redux/_i18n/index.d.cts +3 -0
  738. package/lib/redux/_i18n/types.cjs +2 -0
  739. package/lib/redux/_i18n/types.cjs.map +1 -0
  740. package/lib/redux/_i18n/types.d.cts +13 -0
  741. package/lib/redux/_modularui/ModularUIActions.cjs +168 -0
  742. package/lib/redux/_modularui/ModularUIActions.cjs.map +1 -0
  743. package/lib/redux/_modularui/ModularUIActions.d.cts +26 -0
  744. package/lib/redux/_modularui/ModularUIConnector.cjs +123 -0
  745. package/lib/redux/_modularui/ModularUIConnector.cjs.map +1 -0
  746. package/lib/redux/_modularui/ModularUIConnector.d.cts +7 -0
  747. package/lib/redux/_modularui/ModularUIMiddleware.cjs +107 -0
  748. package/lib/redux/_modularui/ModularUIMiddleware.cjs.map +1 -0
  749. package/lib/redux/_modularui/ModularUIMiddleware.d.cts +7 -0
  750. package/lib/redux/_modularui/ModularUIReducer.cjs +157 -0
  751. package/lib/redux/_modularui/ModularUIReducer.cjs.map +1 -0
  752. package/lib/redux/_modularui/ModularUIReducer.d.cts +7 -0
  753. package/lib/redux/_modularui/ModularUISelectors.cjs +270 -0
  754. package/lib/redux/_modularui/ModularUISelectors.cjs.map +1 -0
  755. package/lib/redux/_modularui/ModularUISelectors.d.cts +3 -0
  756. package/lib/redux/_modularui/ModularUIUtils.cjs +83 -0
  757. package/lib/redux/_modularui/ModularUIUtils.cjs.map +1 -0
  758. package/lib/redux/_modularui/ModularUIUtils.d.cts +5 -0
  759. package/lib/redux/_modularui/index.cjs +86 -0
  760. package/lib/redux/_modularui/index.cjs.map +1 -0
  761. package/lib/redux/_modularui/index.d.cts +8 -0
  762. package/lib/redux/_modularui/types.cjs +2 -0
  763. package/lib/redux/_modularui/types.cjs.map +1 -0
  764. package/lib/redux/_modularui/types.d.cts +83 -0
  765. package/lib/redux/_modularui/withModularUI.cjs +41 -0
  766. package/lib/redux/_modularui/withModularUI.cjs.map +1 -0
  767. package/lib/redux/_modularui/withModularUI.d.cts +3 -0
  768. package/lib/redux/_router/RouterActions.cjs +67 -0
  769. package/lib/redux/_router/RouterActions.cjs.map +1 -0
  770. package/lib/redux/_router/RouterActions.d.cts +10 -0
  771. package/lib/redux/_router/RouterConnectors.cjs +42 -0
  772. package/lib/redux/_router/RouterConnectors.cjs.map +1 -0
  773. package/lib/redux/_router/RouterConnectors.d.cts +6 -0
  774. package/lib/redux/_router/RouterMiddleware.cjs +38 -0
  775. package/lib/redux/_router/RouterMiddleware.cjs.map +1 -0
  776. package/lib/redux/_router/RouterMiddleware.d.cts +5 -0
  777. package/lib/redux/_router/RouterReducer.cjs +22 -0
  778. package/lib/redux/_router/RouterReducer.cjs.map +1 -0
  779. package/lib/redux/_router/RouterReducer.d.cts +7 -0
  780. package/lib/redux/_router/index.cjs +51 -0
  781. package/lib/redux/_router/index.cjs.map +1 -0
  782. package/lib/redux/_router/index.d.cts +5 -0
  783. package/lib/redux/_router/types.cjs +2 -0
  784. package/lib/redux/_router/types.cjs.map +1 -0
  785. package/lib/redux/_router/types.d.cts +35 -0
  786. package/lib/redux/actions/Application.cjs +38 -0
  787. package/lib/redux/actions/Application.cjs.map +1 -0
  788. package/lib/redux/actions/Application.d.cts +4 -0
  789. package/lib/redux/actions/Authorization.cjs +55 -0
  790. package/lib/redux/actions/Authorization.cjs.map +1 -0
  791. package/lib/redux/actions/Authorization.d.cts +3 -0
  792. package/lib/redux/actions/Error.cjs +74 -0
  793. package/lib/redux/actions/Error.cjs.map +1 -0
  794. package/lib/redux/actions/Error.d.cts +7 -0
  795. package/lib/redux/actions/Form.cjs +39 -0
  796. package/lib/redux/actions/Form.cjs.map +1 -0
  797. package/lib/redux/actions/Form.d.cts +5 -0
  798. package/lib/redux/actions/FormAttributeSet.cjs +69 -0
  799. package/lib/redux/actions/FormAttributeSet.cjs.map +1 -0
  800. package/lib/redux/actions/FormAttributeSet.d.cts +6 -0
  801. package/lib/redux/actions/FormAttributeSetRepeatable.cjs +35 -0
  802. package/lib/redux/actions/FormAttributeSetRepeatable.cjs.map +1 -0
  803. package/lib/redux/actions/FormAttributeSetRepeatable.d.cts +6 -0
  804. package/lib/redux/actions/FormAutosave.cjs +60 -0
  805. package/lib/redux/actions/FormAutosave.cjs.map +1 -0
  806. package/lib/redux/actions/FormAutosave.d.cts +3 -0
  807. package/lib/redux/actions/FormAutosubmit.cjs +38 -0
  808. package/lib/redux/actions/FormAutosubmit.cjs.map +1 -0
  809. package/lib/redux/actions/FormAutosubmit.d.cts +4 -0
  810. package/lib/redux/actions/FormAutoupdate.cjs +37 -0
  811. package/lib/redux/actions/FormAutoupdate.cjs.map +1 -0
  812. package/lib/redux/actions/FormAutoupdate.d.cts +4 -0
  813. package/lib/redux/actions/FormValidations.cjs +51 -0
  814. package/lib/redux/actions/FormValidations.cjs.map +1 -0
  815. package/lib/redux/actions/FormValidations.d.cts +3 -0
  816. package/lib/redux/actions/Modals.cjs +22 -0
  817. package/lib/redux/actions/Modals.cjs.map +1 -0
  818. package/lib/redux/actions/Modals.d.cts +4 -0
  819. package/lib/redux/actions/ModelCatalog.cjs +15 -0
  820. package/lib/redux/actions/ModelCatalog.cjs.map +1 -0
  821. package/lib/redux/actions/ModelCatalog.d.cts +2 -0
  822. package/lib/redux/actions/Notification.cjs +76 -0
  823. package/lib/redux/actions/Notification.cjs.map +1 -0
  824. package/lib/redux/actions/Notification.d.cts +10 -0
  825. package/lib/redux/actions/Preferences.cjs +128 -0
  826. package/lib/redux/actions/Preferences.cjs.map +1 -0
  827. package/lib/redux/actions/Preferences.d.cts +11 -0
  828. package/lib/redux/actions/ProgressIndicator.cjs +42 -0
  829. package/lib/redux/actions/ProgressIndicator.cjs.map +1 -0
  830. package/lib/redux/actions/ProgressIndicator.d.cts +8 -0
  831. package/lib/redux/actions/SignIn.cjs +90 -0
  832. package/lib/redux/actions/SignIn.cjs.map +1 -0
  833. package/lib/redux/actions/SignIn.d.cts +10 -0
  834. package/lib/redux/actions/SignOut.cjs +30 -0
  835. package/lib/redux/actions/SignOut.cjs.map +1 -0
  836. package/lib/redux/actions/SignOut.d.cts +4 -0
  837. package/lib/redux/actions/index.cjs +183 -0
  838. package/lib/redux/actions/index.cjs.map +1 -0
  839. package/lib/redux/actions/index.d.cts +16 -0
  840. package/lib/redux/connectors/Application.cjs +14 -0
  841. package/lib/redux/connectors/Application.cjs.map +1 -0
  842. package/lib/redux/connectors/Application.d.cts +4 -0
  843. package/lib/redux/connectors/Breadcrumb.cjs +16 -0
  844. package/lib/redux/connectors/Breadcrumb.cjs.map +1 -0
  845. package/lib/redux/connectors/Breadcrumb.d.cts +3 -0
  846. package/lib/redux/connectors/CaseView.cjs +19 -0
  847. package/lib/redux/connectors/CaseView.cjs.map +1 -0
  848. package/lib/redux/connectors/CaseView.d.cts +4 -0
  849. package/lib/redux/connectors/ConceptDetail.cjs +20 -0
  850. package/lib/redux/connectors/ConceptDetail.cjs.map +1 -0
  851. package/lib/redux/connectors/ConceptDetail.d.cts +4 -0
  852. package/lib/redux/connectors/ContentBrowser.cjs +19 -0
  853. package/lib/redux/connectors/ContentBrowser.cjs.map +1 -0
  854. package/lib/redux/connectors/ContentBrowser.d.cts +4 -0
  855. package/lib/redux/connectors/ContentDetail.cjs +20 -0
  856. package/lib/redux/connectors/ContentDetail.cjs.map +1 -0
  857. package/lib/redux/connectors/ContentDetail.d.cts +4 -0
  858. package/lib/redux/connectors/ContentDetailSection.cjs +22 -0
  859. package/lib/redux/connectors/ContentDetailSection.cjs.map +1 -0
  860. package/lib/redux/connectors/ContentDetailSection.d.cts +4 -0
  861. package/lib/redux/connectors/Form.cjs +43 -0
  862. package/lib/redux/connectors/Form.cjs.map +1 -0
  863. package/lib/redux/connectors/Form.d.cts +16 -0
  864. package/lib/redux/connectors/FormAttributeSet.cjs +27 -0
  865. package/lib/redux/connectors/FormAttributeSet.cjs.map +1 -0
  866. package/lib/redux/connectors/FormAttributeSet.d.cts +5 -0
  867. package/lib/redux/connectors/ListDetail.cjs +21 -0
  868. package/lib/redux/connectors/ListDetail.cjs.map +1 -0
  869. package/lib/redux/connectors/ListDetail.d.cts +4 -0
  870. package/lib/redux/connectors/Modal.cjs +27 -0
  871. package/lib/redux/connectors/Modal.cjs.map +1 -0
  872. package/lib/redux/connectors/Modal.d.cts +4 -0
  873. package/lib/redux/connectors/ModelCatalog.cjs +19 -0
  874. package/lib/redux/connectors/ModelCatalog.cjs.map +1 -0
  875. package/lib/redux/connectors/ModelCatalog.d.cts +4 -0
  876. package/lib/redux/connectors/Notification.cjs +22 -0
  877. package/lib/redux/connectors/Notification.cjs.map +1 -0
  878. package/lib/redux/connectors/Notification.d.cts +4 -0
  879. package/lib/redux/connectors/PanelRenderer.cjs +29 -0
  880. package/lib/redux/connectors/PanelRenderer.cjs.map +1 -0
  881. package/lib/redux/connectors/PanelRenderer.d.cts +4 -0
  882. package/lib/redux/connectors/Preferences.cjs +29 -0
  883. package/lib/redux/connectors/Preferences.cjs.map +1 -0
  884. package/lib/redux/connectors/Preferences.d.cts +2 -0
  885. package/lib/redux/connectors/Progress.cjs +19 -0
  886. package/lib/redux/connectors/Progress.cjs.map +1 -0
  887. package/lib/redux/connectors/Progress.d.cts +3 -0
  888. package/lib/redux/connectors/ProgressIndicator.cjs +19 -0
  889. package/lib/redux/connectors/ProgressIndicator.cjs.map +1 -0
  890. package/lib/redux/connectors/ProgressIndicator.d.cts +3 -0
  891. package/lib/redux/connectors/QuickSearch.cjs +27 -0
  892. package/lib/redux/connectors/QuickSearch.cjs.map +1 -0
  893. package/lib/redux/connectors/QuickSearch.d.cts +11 -0
  894. package/lib/redux/connectors/SignIn.cjs +24 -0
  895. package/lib/redux/connectors/SignIn.cjs.map +1 -0
  896. package/lib/redux/connectors/SignIn.d.cts +4 -0
  897. package/lib/redux/connectors/SignOut.cjs +20 -0
  898. package/lib/redux/connectors/SignOut.cjs.map +1 -0
  899. package/lib/redux/connectors/SignOut.d.cts +4 -0
  900. package/lib/redux/connectors/Tab.cjs +19 -0
  901. package/lib/redux/connectors/Tab.cjs.map +1 -0
  902. package/lib/redux/connectors/Tab.d.cts +4 -0
  903. package/lib/redux/connectors/index.cjs +153 -0
  904. package/lib/redux/connectors/index.cjs.map +1 -0
  905. package/lib/redux/connectors/index.d.cts +21 -0
  906. package/lib/redux/index.cjs +102 -0
  907. package/lib/redux/index.cjs.map +1 -0
  908. package/lib/redux/index.d.cts +9 -0
  909. package/lib/redux/reducers/AuthReducer.cjs +59 -0
  910. package/lib/redux/reducers/AuthReducer.cjs.map +1 -0
  911. package/lib/redux/reducers/AuthReducer.d.cts +8 -0
  912. package/lib/redux/reducers/ErrorReducer.cjs +22 -0
  913. package/lib/redux/reducers/ErrorReducer.cjs.map +1 -0
  914. package/lib/redux/reducers/ErrorReducer.d.cts +8 -0
  915. package/lib/redux/reducers/ModalsReducer.cjs +58 -0
  916. package/lib/redux/reducers/ModalsReducer.cjs.map +1 -0
  917. package/lib/redux/reducers/ModalsReducer.d.cts +8 -0
  918. package/lib/redux/reducers/ModelCatalogReducer.cjs +34 -0
  919. package/lib/redux/reducers/ModelCatalogReducer.cjs.map +1 -0
  920. package/lib/redux/reducers/ModelCatalogReducer.d.cts +8 -0
  921. package/lib/redux/reducers/NotificationReducer.cjs +43 -0
  922. package/lib/redux/reducers/NotificationReducer.cjs.map +1 -0
  923. package/lib/redux/reducers/NotificationReducer.d.cts +8 -0
  924. package/lib/redux/reducers/PreferencesReducer.cjs +30 -0
  925. package/lib/redux/reducers/PreferencesReducer.cjs.map +1 -0
  926. package/lib/redux/reducers/PreferencesReducer.d.cts +8 -0
  927. package/lib/redux/reducers/ProgressIndicatorReducer.cjs +55 -0
  928. package/lib/redux/reducers/ProgressIndicatorReducer.cjs.map +1 -0
  929. package/lib/redux/reducers/ProgressIndicatorReducer.d.cts +8 -0
  930. package/lib/redux/reducers/createReducer.cjs +33 -0
  931. package/lib/redux/reducers/createReducer.cjs.map +1 -0
  932. package/lib/redux/reducers/createReducer.d.cts +14 -0
  933. package/lib/redux/reducers/index.cjs +78 -0
  934. package/lib/redux/reducers/index.cjs.map +1 -0
  935. package/lib/redux/reducers/index.d.cts +8 -0
  936. package/lib/redux/selectors/i18n.cjs +20 -0
  937. package/lib/redux/selectors/i18n.cjs.map +1 -0
  938. package/lib/redux/selectors/i18n.d.cts +4 -0
  939. package/lib/redux/selectors/index.cjs +29 -0
  940. package/lib/redux/selectors/index.cjs.map +1 -0
  941. package/lib/redux/selectors/index.d.cts +2 -0
  942. package/lib/redux/selectors/modelcatalog.cjs +14 -0
  943. package/lib/redux/selectors/modelcatalog.cjs.map +1 -0
  944. package/lib/redux/selectors/modelcatalog.d.cts +2 -0
  945. package/lib/redux/store/beforeRenderHooks.cjs +24 -0
  946. package/lib/redux/store/beforeRenderHooks.cjs.map +1 -0
  947. package/lib/redux/store/beforeRenderHooks.d.cts +7 -0
  948. package/lib/redux/store/configureStore.cjs +42 -0
  949. package/lib/redux/store/configureStore.cjs.map +1 -0
  950. package/lib/redux/store/configureStore.d.cts +9 -0
  951. package/lib/redux/types.cjs +2 -0
  952. package/lib/redux/types.cjs.map +1 -0
  953. package/lib/redux/types.d.cts +113 -0
  954. package/lib/utils/browser/Cache.cjs +151 -0
  955. package/lib/utils/browser/Cache.cjs.map +1 -0
  956. package/lib/utils/browser/Cache.d.cts +45 -0
  957. package/lib/utils/browser/Cookies.cjs +38 -0
  958. package/lib/utils/browser/Cookies.cjs.map +1 -0
  959. package/lib/utils/browser/Cookies.d.cts +9 -0
  960. package/lib/utils/datetime/DateTimeUtil.cjs +648 -0
  961. package/lib/utils/datetime/DateTimeUtil.cjs.map +1 -0
  962. package/lib/utils/datetime/DateTimeUtil.d.cts +214 -0
  963. package/lib/utils/fetch/__mocks__/universalFetch.d.cts +3 -0
  964. package/lib/utils/fetch/serverFetch.cjs +32 -0
  965. package/lib/utils/fetch/serverFetch.cjs.map +1 -0
  966. package/lib/utils/fetch/serverFetch.d.cts +5 -0
  967. package/lib/utils/fetch/types.cjs +2 -0
  968. package/lib/utils/fetch/types.cjs.map +1 -0
  969. package/lib/utils/fetch/types.d.cts +44 -0
  970. package/lib/utils/fetch/universalFetch.cjs +94 -0
  971. package/lib/utils/fetch/universalFetch.cjs.map +1 -0
  972. package/lib/utils/fetch/universalFetch.d.cts +7 -0
  973. package/lib/utils/fetch/xhr.cjs +358 -0
  974. package/lib/utils/fetch/xhr.cjs.map +1 -0
  975. package/lib/utils/fetch/xhr.d.cts +5 -0
  976. package/lib/utils/helpers/checkResource.cjs +46 -0
  977. package/lib/utils/helpers/checkResource.cjs.map +1 -0
  978. package/lib/utils/helpers/checkResource.d.cts +3 -0
  979. package/lib/utils/helpers/createHash.cjs +28 -0
  980. package/lib/utils/helpers/createHash.cjs.map +1 -0
  981. package/lib/utils/helpers/createHash.d.cts +8 -0
  982. package/lib/utils/helpers/createHref.cjs +101 -0
  983. package/lib/utils/helpers/createHref.cjs.map +1 -0
  984. package/lib/utils/helpers/createHref.d.cts +8 -0
  985. package/lib/utils/helpers/createUUID.cjs +18 -0
  986. package/lib/utils/helpers/createUUID.cjs.map +1 -0
  987. package/lib/utils/helpers/createUUID.d.cts +4 -0
  988. package/lib/utils/helpers/index.cjs +102 -0
  989. package/lib/utils/helpers/index.cjs.map +1 -0
  990. package/lib/utils/helpers/index.d.cts +8 -0
  991. package/lib/utils/helpers/objects.cjs +36 -0
  992. package/lib/utils/helpers/objects.cjs.map +1 -0
  993. package/lib/utils/helpers/objects.d.cts +11 -0
  994. package/lib/utils/helpers/repositoryResource.cjs +26 -0
  995. package/lib/utils/helpers/repositoryResource.cjs.map +1 -0
  996. package/lib/utils/helpers/repositoryResource.d.cts +1 -0
  997. package/lib/utils/helpers/sanitizeHtml.cjs +44 -0
  998. package/lib/utils/helpers/sanitizeHtml.cjs.map +1 -0
  999. package/lib/utils/helpers/sanitizeHtml.d.cts +9 -0
  1000. package/lib/utils/helpers/text.cjs +23 -0
  1001. package/lib/utils/helpers/text.cjs.map +1 -0
  1002. package/lib/utils/helpers/text.d.cts +7 -0
  1003. package/lib/utils/index.cjs +106 -0
  1004. package/lib/utils/index.cjs.map +1 -0
  1005. package/lib/utils/index.d.cts +11 -0
  1006. package/lib/utils/number/DecimalFormat.cjs +333 -0
  1007. package/lib/utils/number/DecimalFormat.cjs.map +1 -0
  1008. package/lib/utils/number/DecimalFormat.d.cts +90 -0
  1009. package/lib/utils/number/formatValue.cjs +47 -0
  1010. package/lib/utils/number/formatValue.cjs.map +1 -0
  1011. package/lib/utils/number/formatValue.d.cts +4 -0
  1012. package/lib/utils/number/parseNumbers.cjs +70 -0
  1013. package/lib/utils/number/parseNumbers.cjs.map +1 -0
  1014. package/lib/utils/number/parseNumbers.d.cts +9 -0
  1015. package/package.json +133 -64
  1016. package/tsconfig.json +4 -4
  1017. package/lib/builder/index.js +0 -18
  1018. package/lib/builder/index.js.map +0 -1
  1019. package/lib/builder/mergeLayoutHintConfigurations.js +0 -60
  1020. package/lib/builder/mergeLayoutHintConfigurations.js.map +0 -1
  1021. package/lib/constants/Constants.js +0 -189
  1022. package/lib/constants/Constants.js.map +0 -1
  1023. package/lib/constants/LayoutHintConfig.js +0 -173
  1024. package/lib/constants/LayoutHintConfig.js.map +0 -1
  1025. package/lib/constants/LayoutHints.js +0 -135
  1026. package/lib/constants/LayoutHints.js.map +0 -1
  1027. package/lib/constants/Settings.js +0 -219
  1028. package/lib/constants/Settings.js.map +0 -1
  1029. package/lib/constants/index.js +0 -40
  1030. package/lib/constants/index.js.map +0 -1
  1031. package/lib/exceptions/ConfigurationException.js +0 -17
  1032. package/lib/exceptions/ConfigurationException.js.map +0 -1
  1033. package/lib/exceptions/FetchException.js +0 -72
  1034. package/lib/exceptions/FetchException.js.map +0 -1
  1035. package/lib/exceptions/IllegalArgumentException.js +0 -17
  1036. package/lib/exceptions/IllegalArgumentException.js.map +0 -1
  1037. package/lib/exceptions/IllegalReturnException.js +0 -16
  1038. package/lib/exceptions/IllegalReturnException.js.map +0 -1
  1039. package/lib/exceptions/IllegalStateException.js +0 -17
  1040. package/lib/exceptions/IllegalStateException.js.map +0 -1
  1041. package/lib/exceptions/JsonParseException.js +0 -17
  1042. package/lib/exceptions/JsonParseException.js.map +0 -1
  1043. package/lib/exceptions/MissingPropertyException.js +0 -17
  1044. package/lib/exceptions/MissingPropertyException.js.map +0 -1
  1045. package/lib/exceptions/NetworkException.js +0 -23
  1046. package/lib/exceptions/NetworkException.js.map +0 -1
  1047. package/lib/exceptions/NotAllowedUriException.js +0 -17
  1048. package/lib/exceptions/NotAllowedUriException.js.map +0 -1
  1049. package/lib/exceptions/NotFoundException.js +0 -26
  1050. package/lib/exceptions/NotFoundException.js.map +0 -1
  1051. package/lib/exceptions/ServerRequestException.js +0 -17
  1052. package/lib/exceptions/ServerRequestException.js.map +0 -1
  1053. package/lib/exceptions/ThemePropertyException.js +0 -17
  1054. package/lib/exceptions/ThemePropertyException.js.map +0 -1
  1055. package/lib/exceptions/TimeoutException.js +0 -17
  1056. package/lib/exceptions/TimeoutException.js.map +0 -1
  1057. package/lib/exceptions/UnauthorizedException.js +0 -25
  1058. package/lib/exceptions/UnauthorizedException.js.map +0 -1
  1059. package/lib/exceptions/UnsupportedOperationException.js +0 -17
  1060. package/lib/exceptions/UnsupportedOperationException.js.map +0 -1
  1061. package/lib/exceptions/index.js +0 -112
  1062. package/lib/exceptions/index.js.map +0 -1
  1063. package/lib/hooks/index.js +0 -183
  1064. package/lib/hooks/index.js.map +0 -1
  1065. package/lib/hooks/useAllFormsOnModel.js +0 -81
  1066. package/lib/hooks/useAllFormsOnModel.js.map +0 -1
  1067. package/lib/hooks/useAuthentication.js +0 -66
  1068. package/lib/hooks/useAuthentication.js.map +0 -1
  1069. package/lib/hooks/useContent.js +0 -49
  1070. package/lib/hooks/useContent.js.map +0 -1
  1071. package/lib/hooks/useDeepCompareEffect.js +0 -35
  1072. package/lib/hooks/useDeepCompareEffect.js.map +0 -1
  1073. package/lib/hooks/useForm.js +0 -98
  1074. package/lib/hooks/useForm.js.map +0 -1
  1075. package/lib/hooks/useI18n.js +0 -42
  1076. package/lib/hooks/useI18n.js.map +0 -1
  1077. package/lib/hooks/useModal.js +0 -43
  1078. package/lib/hooks/useModal.js.map +0 -1
  1079. package/lib/hooks/useModelCatalog.js +0 -179
  1080. package/lib/hooks/useModelCatalog.js.map +0 -1
  1081. package/lib/hooks/useModels.js +0 -45
  1082. package/lib/hooks/useModels.js.map +0 -1
  1083. package/lib/hooks/useModularUI.js +0 -69
  1084. package/lib/hooks/useModularUI.js.map +0 -1
  1085. package/lib/hooks/useModularUIBasic.js +0 -81
  1086. package/lib/hooks/useModularUIBasic.js.map +0 -1
  1087. package/lib/hooks/useModularUIModel.js +0 -128
  1088. package/lib/hooks/useModularUIModel.js.map +0 -1
  1089. package/lib/hooks/useModularUIRequest.js +0 -25
  1090. package/lib/hooks/useModularUIRequest.js.map +0 -1
  1091. package/lib/hooks/useNotification.js +0 -39
  1092. package/lib/hooks/useNotification.js.map +0 -1
  1093. package/lib/hooks/usePreference.js +0 -23
  1094. package/lib/hooks/usePreference.js.map +0 -1
  1095. package/lib/hooks/useProgressIndicator.js +0 -23
  1096. package/lib/hooks/useProgressIndicator.js.map +0 -1
  1097. package/lib/hooks/useRouter.js +0 -42
  1098. package/lib/hooks/useRouter.js.map +0 -1
  1099. package/lib/i18n/Locale.js +0 -128
  1100. package/lib/i18n/Locale.js.map +0 -1
  1101. package/lib/i18n/Locales.js +0 -140
  1102. package/lib/i18n/Locales.js.map +0 -1
  1103. package/lib/i18n/Message.js +0 -50
  1104. package/lib/i18n/Message.js.map +0 -1
  1105. package/lib/i18n/index.js +0 -57
  1106. package/lib/i18n/index.js.map +0 -1
  1107. package/lib/i18n/languages.js +0 -212
  1108. package/lib/i18n/languages.js.map +0 -1
  1109. package/lib/i18n/translations/beinformed_error_messages_en.nl.js +0 -104
  1110. package/lib/i18n/translations/beinformed_error_messages_en.nl.js.map +0 -1
  1111. package/lib/i18n/translations/beinformed_error_messages_nl.nl.js +0 -104
  1112. package/lib/i18n/translations/beinformed_error_messages_nl.nl.js.map +0 -1
  1113. package/lib/i18n/types.js +0 -2
  1114. package/lib/i18n/types.js.map +0 -1
  1115. package/lib/i18n/withMessage.js +0 -27
  1116. package/lib/i18n/withMessage.js.map +0 -1
  1117. package/lib/index.js +0 -73
  1118. package/lib/index.js.map +0 -1
  1119. package/lib/models/actions/ActionCollection.js +0 -90
  1120. package/lib/models/actions/ActionCollection.js.map +0 -1
  1121. package/lib/models/actions/ActionModel.js +0 -194
  1122. package/lib/models/actions/ActionModel.js.map +0 -1
  1123. package/lib/models/application/ApplicationModel.js +0 -133
  1124. package/lib/models/application/ApplicationModel.js.map +0 -1
  1125. package/lib/models/attributes/AttributeCollection.js +0 -282
  1126. package/lib/models/attributes/AttributeCollection.js.map +0 -1
  1127. package/lib/models/attributes/AttributeContent.js +0 -203
  1128. package/lib/models/attributes/AttributeContent.js.map +0 -1
  1129. package/lib/models/attributes/AttributeDataHelper.js +0 -267
  1130. package/lib/models/attributes/AttributeDataHelper.js.map +0 -1
  1131. package/lib/models/attributes/AttributeModel.js +0 -824
  1132. package/lib/models/attributes/AttributeModel.js.map +0 -1
  1133. package/lib/models/attributes/AttributeSetModel.js +0 -105
  1134. package/lib/models/attributes/AttributeSetModel.js.map +0 -1
  1135. package/lib/models/attributes/BooleanAttributeModel.js +0 -295
  1136. package/lib/models/attributes/BooleanAttributeModel.js.map +0 -1
  1137. package/lib/models/attributes/CaptchaAttributeModel.js +0 -60
  1138. package/lib/models/attributes/CaptchaAttributeModel.js.map +0 -1
  1139. package/lib/models/attributes/ChoiceAttributeModel.js +0 -411
  1140. package/lib/models/attributes/ChoiceAttributeModel.js.map +0 -1
  1141. package/lib/models/attributes/ChoiceAttributeOptionCollection.js +0 -300
  1142. package/lib/models/attributes/ChoiceAttributeOptionCollection.js.map +0 -1
  1143. package/lib/models/attributes/ChoiceAttributeOptionModel.js +0 -342
  1144. package/lib/models/attributes/ChoiceAttributeOptionModel.js.map +0 -1
  1145. package/lib/models/attributes/CompositeAttributeChildCollection.js +0 -189
  1146. package/lib/models/attributes/CompositeAttributeChildCollection.js.map +0 -1
  1147. package/lib/models/attributes/CompositeAttributeModel.js +0 -380
  1148. package/lib/models/attributes/CompositeAttributeModel.js.map +0 -1
  1149. package/lib/models/attributes/DatetimeAttributeModel.js +0 -465
  1150. package/lib/models/attributes/DatetimeAttributeModel.js.map +0 -1
  1151. package/lib/models/attributes/HelptextAttributeModel.js +0 -55
  1152. package/lib/models/attributes/HelptextAttributeModel.js.map +0 -1
  1153. package/lib/models/attributes/LabelAttributeModel.js +0 -41
  1154. package/lib/models/attributes/LabelAttributeModel.js.map +0 -1
  1155. package/lib/models/attributes/MemoAttributeModel.js +0 -49
  1156. package/lib/models/attributes/MemoAttributeModel.js.map +0 -1
  1157. package/lib/models/attributes/MoneyAttributeModel.js +0 -49
  1158. package/lib/models/attributes/MoneyAttributeModel.js.map +0 -1
  1159. package/lib/models/attributes/NumberAttributeModel.js +0 -201
  1160. package/lib/models/attributes/NumberAttributeModel.js.map +0 -1
  1161. package/lib/models/attributes/PasswordAttributeModel.js +0 -217
  1162. package/lib/models/attributes/PasswordAttributeModel.js.map +0 -1
  1163. package/lib/models/attributes/StringAttributeModel.js +0 -284
  1164. package/lib/models/attributes/StringAttributeModel.js.map +0 -1
  1165. package/lib/models/attributes/UploadAttributeModel.js +0 -223
  1166. package/lib/models/attributes/UploadAttributeModel.js.map +0 -1
  1167. package/lib/models/attributes/XMLAttributeModel.js +0 -53
  1168. package/lib/models/attributes/XMLAttributeModel.js.map +0 -1
  1169. package/lib/models/attributes/_createAttribute.js +0 -93
  1170. package/lib/models/attributes/_createAttribute.js.map +0 -1
  1171. package/lib/models/attributes/input-constraints/BSNConstraint.js +0 -72
  1172. package/lib/models/attributes/input-constraints/BSNConstraint.js.map +0 -1
  1173. package/lib/models/attributes/input-constraints/ConstraintCollection.js +0 -50
  1174. package/lib/models/attributes/input-constraints/ConstraintCollection.js.map +0 -1
  1175. package/lib/models/attributes/input-constraints/ConstraintModel.js +0 -74
  1176. package/lib/models/attributes/input-constraints/ConstraintModel.js.map +0 -1
  1177. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js +0 -205
  1178. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.js.map +0 -1
  1179. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js +0 -76
  1180. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.map +0 -1
  1181. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js +0 -76
  1182. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.map +0 -1
  1183. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js +0 -122
  1184. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.js.map +0 -1
  1185. package/lib/models/attributes/input-constraints/FileExtensionConstraint.js +0 -66
  1186. package/lib/models/attributes/input-constraints/FileExtensionConstraint.js.map +0 -1
  1187. package/lib/models/attributes/input-constraints/FileSizeConstraint.js +0 -98
  1188. package/lib/models/attributes/input-constraints/FileSizeConstraint.js.map +0 -1
  1189. package/lib/models/attributes/input-constraints/IBANConstraint.js +0 -49
  1190. package/lib/models/attributes/input-constraints/IBANConstraint.js.map +0 -1
  1191. package/lib/models/attributes/input-constraints/MandatoryConstraint.js +0 -53
  1192. package/lib/models/attributes/input-constraints/MandatoryConstraint.js.map +0 -1
  1193. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js +0 -85
  1194. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.js.map +0 -1
  1195. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js +0 -177
  1196. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.js.map +0 -1
  1197. package/lib/models/attributes/input-constraints/NumberFormatConstraint.js +0 -132
  1198. package/lib/models/attributes/input-constraints/NumberFormatConstraint.js.map +0 -1
  1199. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js +0 -126
  1200. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.js.map +0 -1
  1201. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js +0 -72
  1202. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.js.map +0 -1
  1203. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js +0 -47
  1204. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.map +0 -1
  1205. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js +0 -64
  1206. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.map +0 -1
  1207. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js +0 -64
  1208. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.map +0 -1
  1209. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js +0 -78
  1210. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.map +0 -1
  1211. package/lib/models/attributes/input-constraints/RangeConstraint.js +0 -143
  1212. package/lib/models/attributes/input-constraints/RangeConstraint.js.map +0 -1
  1213. package/lib/models/attributes/input-constraints/RegexConstraint.js +0 -67
  1214. package/lib/models/attributes/input-constraints/RegexConstraint.js.map +0 -1
  1215. package/lib/models/attributes/input-constraints/StringLengthConstraint.js +0 -178
  1216. package/lib/models/attributes/input-constraints/StringLengthConstraint.js.map +0 -1
  1217. package/lib/models/attributes/input-constraints/XMLConstraint.js +0 -62
  1218. package/lib/models/attributes/input-constraints/XMLConstraint.js.map +0 -1
  1219. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js +0 -66
  1220. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.js.map +0 -1
  1221. package/lib/models/attributes/layouthint-rules/DependentAttribute.js +0 -200
  1222. package/lib/models/attributes/layouthint-rules/DependentAttribute.js.map +0 -1
  1223. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js +0 -88
  1224. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.map +0 -1
  1225. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js +0 -51
  1226. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.map +0 -1
  1227. package/lib/models/base/BaseCollection.js +0 -186
  1228. package/lib/models/base/BaseCollection.js.map +0 -1
  1229. package/lib/models/base/BaseModel.js +0 -149
  1230. package/lib/models/base/BaseModel.js.map +0 -1
  1231. package/lib/models/base/ResourceCollection.js +0 -41
  1232. package/lib/models/base/ResourceCollection.js.map +0 -1
  1233. package/lib/models/base/ResourceModel.js +0 -209
  1234. package/lib/models/base/ResourceModel.js.map +0 -1
  1235. package/lib/models/caseview/CaseViewModel.js +0 -163
  1236. package/lib/models/caseview/CaseViewModel.js.map +0 -1
  1237. package/lib/models/concepts/BusinessScenarioModel.js +0 -122
  1238. package/lib/models/concepts/BusinessScenarioModel.js.map +0 -1
  1239. package/lib/models/concepts/ConceptDetailModel.js +0 -281
  1240. package/lib/models/concepts/ConceptDetailModel.js.map +0 -1
  1241. package/lib/models/concepts/ConceptIndexModel.js +0 -150
  1242. package/lib/models/concepts/ConceptIndexModel.js.map +0 -1
  1243. package/lib/models/concepts/ConceptLinkModel.js +0 -152
  1244. package/lib/models/concepts/ConceptLinkModel.js.map +0 -1
  1245. package/lib/models/concepts/ConceptRelationCollection.js +0 -82
  1246. package/lib/models/concepts/ConceptRelationCollection.js.map +0 -1
  1247. package/lib/models/concepts/ConceptRelationModel.js +0 -115
  1248. package/lib/models/concepts/ConceptRelationModel.js.map +0 -1
  1249. package/lib/models/concepts/ConceptTypeDetailModel.js +0 -128
  1250. package/lib/models/concepts/ConceptTypeDetailModel.js.map +0 -1
  1251. package/lib/models/concepts/SourceReferenceCollection.js +0 -35
  1252. package/lib/models/concepts/SourceReferenceCollection.js.map +0 -1
  1253. package/lib/models/concepts/SourceReferenceModel.js +0 -73
  1254. package/lib/models/concepts/SourceReferenceModel.js.map +0 -1
  1255. package/lib/models/content/ContentIndexModel.js +0 -142
  1256. package/lib/models/content/ContentIndexModel.js.map +0 -1
  1257. package/lib/models/content/ContentLinkModel.js +0 -193
  1258. package/lib/models/content/ContentLinkModel.js.map +0 -1
  1259. package/lib/models/content/ContentModel.js +0 -207
  1260. package/lib/models/content/ContentModel.js.map +0 -1
  1261. package/lib/models/content/ContentTOCModel.js +0 -163
  1262. package/lib/models/content/ContentTOCModel.js.map +0 -1
  1263. package/lib/models/content/ContentTypeModel.js +0 -74
  1264. package/lib/models/content/ContentTypeModel.js.map +0 -1
  1265. package/lib/models/content/SectionModel.js +0 -180
  1266. package/lib/models/content/SectionModel.js.map +0 -1
  1267. package/lib/models/content/SubSectionModel.js +0 -167
  1268. package/lib/models/content/SubSectionModel.js.map +0 -1
  1269. package/lib/models/contentconfiguration/ContentConfiguration.js +0 -75
  1270. package/lib/models/contentconfiguration/ContentConfiguration.js.map +0 -1
  1271. package/lib/models/contentconfiguration/ContentConfigurationElements.js +0 -143
  1272. package/lib/models/contentconfiguration/ContentConfigurationElements.js.map +0 -1
  1273. package/lib/models/contentconfiguration/ContentConfigurationEndResults.js +0 -49
  1274. package/lib/models/contentconfiguration/ContentConfigurationEndResults.js.map +0 -1
  1275. package/lib/models/contentconfiguration/ContentConfigurationQuestions.js +0 -54
  1276. package/lib/models/contentconfiguration/ContentConfigurationQuestions.js.map +0 -1
  1277. package/lib/models/contentconfiguration/ContentConfigurationResults.js +0 -103
  1278. package/lib/models/contentconfiguration/ContentConfigurationResults.js.map +0 -1
  1279. package/lib/models/detail/DetailModel.js +0 -219
  1280. package/lib/models/detail/DetailModel.js.map +0 -1
  1281. package/lib/models/error/ErrorCollection.js +0 -111
  1282. package/lib/models/error/ErrorCollection.js.map +0 -1
  1283. package/lib/models/error/ErrorModel.js +0 -81
  1284. package/lib/models/error/ErrorModel.js.map +0 -1
  1285. package/lib/models/error/ErrorResponse.js +0 -304
  1286. package/lib/models/error/ErrorResponse.js.map +0 -1
  1287. package/lib/models/filters/AssignmentFilterModel.js +0 -161
  1288. package/lib/models/filters/AssignmentFilterModel.js.map +0 -1
  1289. package/lib/models/filters/BaseFilterModel.js +0 -210
  1290. package/lib/models/filters/BaseFilterModel.js.map +0 -1
  1291. package/lib/models/filters/ConceptIndexFilterModel.js +0 -36
  1292. package/lib/models/filters/ConceptIndexFilterModel.js.map +0 -1
  1293. package/lib/models/filters/FilterCollection.js +0 -155
  1294. package/lib/models/filters/FilterCollection.js.map +0 -1
  1295. package/lib/models/filters/FilterModel.js +0 -13
  1296. package/lib/models/filters/FilterModel.js.map +0 -1
  1297. package/lib/models/filters/RangeFilterModel.js +0 -44
  1298. package/lib/models/filters/RangeFilterModel.js.map +0 -1
  1299. package/lib/models/filters/StringFilterModel.js +0 -147
  1300. package/lib/models/filters/StringFilterModel.js.map +0 -1
  1301. package/lib/models/form/FormModel.js +0 -1038
  1302. package/lib/models/form/FormModel.js.map +0 -1
  1303. package/lib/models/form/FormObjectModel.js +0 -474
  1304. package/lib/models/form/FormObjectModel.js.map +0 -1
  1305. package/lib/models/grouping/GroupingModel.js +0 -191
  1306. package/lib/models/grouping/GroupingModel.js.map +0 -1
  1307. package/lib/models/href/Href.js +0 -496
  1308. package/lib/models/href/Href.js.map +0 -1
  1309. package/lib/models/href/ListHref.js +0 -135
  1310. package/lib/models/href/ListHref.js.map +0 -1
  1311. package/lib/models/index.js +0 -687
  1312. package/lib/models/index.js.map +0 -1
  1313. package/lib/models/layouthint/LayoutHintCollection.js +0 -118
  1314. package/lib/models/layouthint/LayoutHintCollection.js.map +0 -1
  1315. package/lib/models/links/LinkCollection.js +0 -171
  1316. package/lib/models/links/LinkCollection.js.map +0 -1
  1317. package/lib/models/links/LinkModel.js +0 -216
  1318. package/lib/models/links/LinkModel.js.map +0 -1
  1319. package/lib/models/links/normalizeLinkJSON.js +0 -107
  1320. package/lib/models/links/normalizeLinkJSON.js.map +0 -1
  1321. package/lib/models/list/ListDetailModel.js +0 -266
  1322. package/lib/models/list/ListDetailModel.js.map +0 -1
  1323. package/lib/models/list/ListHeaderModel.js +0 -95
  1324. package/lib/models/list/ListHeaderModel.js.map +0 -1
  1325. package/lib/models/list/ListItemCollection.js +0 -67
  1326. package/lib/models/list/ListItemCollection.js.map +0 -1
  1327. package/lib/models/list/ListItemModel.js +0 -95
  1328. package/lib/models/list/ListItemModel.js.map +0 -1
  1329. package/lib/models/list/ListModel.js +0 -385
  1330. package/lib/models/list/ListModel.js.map +0 -1
  1331. package/lib/models/lookup/LookupOptionCollection.js +0 -45
  1332. package/lib/models/lookup/LookupOptionCollection.js.map +0 -1
  1333. package/lib/models/lookup/LookupOptionsModel.js +0 -71
  1334. package/lib/models/lookup/LookupOptionsModel.js.map +0 -1
  1335. package/lib/models/modelcatalog/ModelCatalogModel.js +0 -69
  1336. package/lib/models/modelcatalog/ModelCatalogModel.js.map +0 -1
  1337. package/lib/models/modelcatalog/ModelCategoryCollection.js +0 -24
  1338. package/lib/models/modelcatalog/ModelCategoryCollection.js.map +0 -1
  1339. package/lib/models/modelcatalog/ModelCategoryModel.js +0 -60
  1340. package/lib/models/modelcatalog/ModelCategoryModel.js.map +0 -1
  1341. package/lib/models/paging/PagesizeModel.js +0 -50
  1342. package/lib/models/paging/PagesizeModel.js.map +0 -1
  1343. package/lib/models/paging/PagingModel.js +0 -95
  1344. package/lib/models/paging/PagingModel.js.map +0 -1
  1345. package/lib/models/panels/GroupingPanelModel.js +0 -143
  1346. package/lib/models/panels/GroupingPanelModel.js.map +0 -1
  1347. package/lib/models/parameter/Parameter.js +0 -108
  1348. package/lib/models/parameter/Parameter.js.map +0 -1
  1349. package/lib/models/process/ProcessStatusSettingsModel.js +0 -85
  1350. package/lib/models/process/ProcessStatusSettingsModel.js.map +0 -1
  1351. package/lib/models/resolveModel.js +0 -57
  1352. package/lib/models/resolveModel.js.map +0 -1
  1353. package/lib/models/search/CaseSearchModel.js +0 -47
  1354. package/lib/models/search/CaseSearchModel.js.map +0 -1
  1355. package/lib/models/sorting/SortOptionModel.js +0 -106
  1356. package/lib/models/sorting/SortOptionModel.js.map +0 -1
  1357. package/lib/models/sorting/SortingModel.js +0 -112
  1358. package/lib/models/sorting/SortingModel.js.map +0 -1
  1359. package/lib/models/tab/TabModel.js +0 -143
  1360. package/lib/models/tab/TabModel.js.map +0 -1
  1361. package/lib/models/taskgroup/TaskGroupCollection.js +0 -21
  1362. package/lib/models/taskgroup/TaskGroupCollection.js.map +0 -1
  1363. package/lib/models/taskgroup/TaskGroupModel.js +0 -87
  1364. package/lib/models/taskgroup/TaskGroupModel.js.map +0 -1
  1365. package/lib/models/types.js +0 -2
  1366. package/lib/models/types.js.map +0 -1
  1367. package/lib/models/user/UserModel.js +0 -59
  1368. package/lib/models/user/UserModel.js.map +0 -1
  1369. package/lib/models/user/UserProfileModel.js +0 -55
  1370. package/lib/models/user/UserProfileModel.js.map +0 -1
  1371. package/lib/models/user/UserServicesModel.js +0 -126
  1372. package/lib/models/user/UserServicesModel.js.map +0 -1
  1373. package/lib/modularui/Authenticate.js +0 -183
  1374. package/lib/modularui/Authenticate.js.map +0 -1
  1375. package/lib/modularui/CaptchaRequest.js +0 -71
  1376. package/lib/modularui/CaptchaRequest.js.map +0 -1
  1377. package/lib/modularui/ModularUIError.js +0 -30
  1378. package/lib/modularui/ModularUIError.js.map +0 -1
  1379. package/lib/modularui/ModularUIRequest.js +0 -716
  1380. package/lib/modularui/ModularUIRequest.js.map +0 -1
  1381. package/lib/modularui/ModularUIResponse.js +0 -147
  1382. package/lib/modularui/ModularUIResponse.js.map +0 -1
  1383. package/lib/modularui/UploadRequest.js +0 -103
  1384. package/lib/modularui/UploadRequest.js.map +0 -1
  1385. package/lib/modularui/index.js +0 -42
  1386. package/lib/modularui/index.js.map +0 -1
  1387. package/lib/modularui/types.js +0 -2
  1388. package/lib/modularui/types.js.map +0 -1
  1389. package/lib/react/ErrorBoundary.js +0 -56
  1390. package/lib/react/ErrorBoundary.js.map +0 -1
  1391. package/lib/react/ErrorBoundaryFallback.js +0 -41
  1392. package/lib/react/ErrorBoundaryFallback.js.map +0 -1
  1393. package/lib/react/index.js +0 -29
  1394. package/lib/react/index.js.map +0 -1
  1395. package/lib/react/utils.js +0 -32
  1396. package/lib/react/utils.js.map +0 -1
  1397. package/lib/react-client/Init.js +0 -44
  1398. package/lib/react-client/Init.js.map +0 -1
  1399. package/lib/react-client/client.js +0 -216
  1400. package/lib/react-client/client.js.map +0 -1
  1401. package/lib/react-client/contextPath.js +0 -26
  1402. package/lib/react-client/contextPath.js.map +0 -1
  1403. package/lib/react-client/index.js +0 -40
  1404. package/lib/react-client/index.js.map +0 -1
  1405. package/lib/react-client/rehydrate.js +0 -73
  1406. package/lib/react-client/rehydrate.js.map +0 -1
  1407. package/lib/react-server/contextPath.js +0 -10
  1408. package/lib/react-server/contextPath.js.map +0 -1
  1409. package/lib/react-server/createSSRComplete.js +0 -61
  1410. package/lib/react-server/createSSRComplete.js.map +0 -1
  1411. package/lib/react-server/htmlpage.js +0 -54
  1412. package/lib/react-server/htmlpage.js.map +0 -1
  1413. package/lib/react-server/index.js +0 -82
  1414. package/lib/react-server/index.js.map +0 -1
  1415. package/lib/react-server/renderSSRComplete.js +0 -91
  1416. package/lib/react-server/renderSSRComplete.js.map +0 -1
  1417. package/lib/react-server/renderSSRMinimal.js +0 -47
  1418. package/lib/react-server/renderSSRMinimal.js.map +0 -1
  1419. package/lib/react-server/requestInformation.js +0 -46
  1420. package/lib/react-server/requestInformation.js.map +0 -1
  1421. package/lib/react-server/serverNoSSR.js +0 -63
  1422. package/lib/react-server/serverNoSSR.js.map +0 -1
  1423. package/lib/react-server/serverSSR.js +0 -51
  1424. package/lib/react-server/serverSSR.js.map +0 -1
  1425. package/lib/react-server/serverUtil.js +0 -218
  1426. package/lib/react-server/serverUtil.js.map +0 -1
  1427. package/lib/react-theme/ThemeProvider.js +0 -33
  1428. package/lib/react-theme/ThemeProvider.js.map +0 -1
  1429. package/lib/react-theme/createTheme.js +0 -115
  1430. package/lib/react-theme/createTheme.js.map +0 -1
  1431. package/lib/react-theme/index.js +0 -110
  1432. package/lib/react-theme/index.js.map +0 -1
  1433. package/lib/react-theme/types.js +0 -2
  1434. package/lib/react-theme/types.js.map +0 -1
  1435. package/lib/react-theme/useTheme.js +0 -15
  1436. package/lib/react-theme/useTheme.js.map +0 -1
  1437. package/lib/react-theme/utils/background.js +0 -21
  1438. package/lib/react-theme/utils/background.js.map +0 -1
  1439. package/lib/react-theme/utils/colors.js +0 -45
  1440. package/lib/react-theme/utils/colors.js.map +0 -1
  1441. package/lib/react-theme/utils/contrast.js +0 -95
  1442. package/lib/react-theme/utils/contrast.js.map +0 -1
  1443. package/lib/react-theme/utils/corners.js +0 -34
  1444. package/lib/react-theme/utils/corners.js.map +0 -1
  1445. package/lib/react-theme/utils/spacers.js +0 -89
  1446. package/lib/react-theme/utils/spacers.js.map +0 -1
  1447. package/lib/react-theme/utils/themeProps.js +0 -75
  1448. package/lib/react-theme/utils/themeProps.js.map +0 -1
  1449. package/lib/redux/_i18n/I18nActions.js +0 -37
  1450. package/lib/redux/_i18n/I18nActions.js.map +0 -1
  1451. package/lib/redux/_i18n/I18nReducer.js +0 -78
  1452. package/lib/redux/_i18n/I18nReducer.js.map +0 -1
  1453. package/lib/redux/_i18n/index.js +0 -29
  1454. package/lib/redux/_i18n/index.js.map +0 -1
  1455. package/lib/redux/_i18n/types.js +0 -2
  1456. package/lib/redux/_i18n/types.js.map +0 -1
  1457. package/lib/redux/_modularui/ModularUIActions.js +0 -168
  1458. package/lib/redux/_modularui/ModularUIActions.js.map +0 -1
  1459. package/lib/redux/_modularui/ModularUIConnector.js +0 -123
  1460. package/lib/redux/_modularui/ModularUIConnector.js.map +0 -1
  1461. package/lib/redux/_modularui/ModularUIMiddleware.js +0 -107
  1462. package/lib/redux/_modularui/ModularUIMiddleware.js.map +0 -1
  1463. package/lib/redux/_modularui/ModularUIReducer.js +0 -157
  1464. package/lib/redux/_modularui/ModularUIReducer.js.map +0 -1
  1465. package/lib/redux/_modularui/ModularUISelectors.js +0 -270
  1466. package/lib/redux/_modularui/ModularUISelectors.js.map +0 -1
  1467. package/lib/redux/_modularui/ModularUIUtils.js +0 -83
  1468. package/lib/redux/_modularui/ModularUIUtils.js.map +0 -1
  1469. package/lib/redux/_modularui/index.js +0 -86
  1470. package/lib/redux/_modularui/index.js.map +0 -1
  1471. package/lib/redux/_modularui/types.js +0 -2
  1472. package/lib/redux/_modularui/types.js.map +0 -1
  1473. package/lib/redux/_modularui/withModularUI.js +0 -41
  1474. package/lib/redux/_modularui/withModularUI.js.map +0 -1
  1475. package/lib/redux/_router/RouterActions.js +0 -67
  1476. package/lib/redux/_router/RouterActions.js.map +0 -1
  1477. package/lib/redux/_router/RouterConnectors.js +0 -42
  1478. package/lib/redux/_router/RouterConnectors.js.map +0 -1
  1479. package/lib/redux/_router/RouterMiddleware.js +0 -38
  1480. package/lib/redux/_router/RouterMiddleware.js.map +0 -1
  1481. package/lib/redux/_router/RouterReducer.js +0 -22
  1482. package/lib/redux/_router/RouterReducer.js.map +0 -1
  1483. package/lib/redux/_router/index.js +0 -51
  1484. package/lib/redux/_router/index.js.map +0 -1
  1485. package/lib/redux/_router/types.js +0 -2
  1486. package/lib/redux/_router/types.js.map +0 -1
  1487. package/lib/redux/actions/Application.js +0 -38
  1488. package/lib/redux/actions/Application.js.map +0 -1
  1489. package/lib/redux/actions/Authorization.js +0 -55
  1490. package/lib/redux/actions/Authorization.js.map +0 -1
  1491. package/lib/redux/actions/Error.js +0 -74
  1492. package/lib/redux/actions/Error.js.map +0 -1
  1493. package/lib/redux/actions/Form.js +0 -39
  1494. package/lib/redux/actions/Form.js.map +0 -1
  1495. package/lib/redux/actions/FormAttributeSet.js +0 -69
  1496. package/lib/redux/actions/FormAttributeSet.js.map +0 -1
  1497. package/lib/redux/actions/FormAttributeSetRepeatable.js +0 -35
  1498. package/lib/redux/actions/FormAttributeSetRepeatable.js.map +0 -1
  1499. package/lib/redux/actions/FormAutosave.js +0 -60
  1500. package/lib/redux/actions/FormAutosave.js.map +0 -1
  1501. package/lib/redux/actions/FormAutosubmit.js +0 -38
  1502. package/lib/redux/actions/FormAutosubmit.js.map +0 -1
  1503. package/lib/redux/actions/FormAutoupdate.js +0 -37
  1504. package/lib/redux/actions/FormAutoupdate.js.map +0 -1
  1505. package/lib/redux/actions/FormValidations.js +0 -51
  1506. package/lib/redux/actions/FormValidations.js.map +0 -1
  1507. package/lib/redux/actions/Modals.js +0 -22
  1508. package/lib/redux/actions/Modals.js.map +0 -1
  1509. package/lib/redux/actions/ModelCatalog.js +0 -15
  1510. package/lib/redux/actions/ModelCatalog.js.map +0 -1
  1511. package/lib/redux/actions/Notification.js +0 -76
  1512. package/lib/redux/actions/Notification.js.map +0 -1
  1513. package/lib/redux/actions/Preferences.js +0 -128
  1514. package/lib/redux/actions/Preferences.js.map +0 -1
  1515. package/lib/redux/actions/ProgressIndicator.js +0 -42
  1516. package/lib/redux/actions/ProgressIndicator.js.map +0 -1
  1517. package/lib/redux/actions/SignIn.js +0 -90
  1518. package/lib/redux/actions/SignIn.js.map +0 -1
  1519. package/lib/redux/actions/SignOut.js +0 -30
  1520. package/lib/redux/actions/SignOut.js.map +0 -1
  1521. package/lib/redux/actions/index.js +0 -183
  1522. package/lib/redux/actions/index.js.map +0 -1
  1523. package/lib/redux/connectors/Application.js +0 -14
  1524. package/lib/redux/connectors/Application.js.map +0 -1
  1525. package/lib/redux/connectors/Breadcrumb.js +0 -16
  1526. package/lib/redux/connectors/Breadcrumb.js.map +0 -1
  1527. package/lib/redux/connectors/CaseView.js +0 -19
  1528. package/lib/redux/connectors/CaseView.js.map +0 -1
  1529. package/lib/redux/connectors/ConceptDetail.js +0 -20
  1530. package/lib/redux/connectors/ConceptDetail.js.map +0 -1
  1531. package/lib/redux/connectors/ContentBrowser.js +0 -19
  1532. package/lib/redux/connectors/ContentBrowser.js.map +0 -1
  1533. package/lib/redux/connectors/ContentDetail.js +0 -20
  1534. package/lib/redux/connectors/ContentDetail.js.map +0 -1
  1535. package/lib/redux/connectors/ContentDetailSection.js +0 -22
  1536. package/lib/redux/connectors/ContentDetailSection.js.map +0 -1
  1537. package/lib/redux/connectors/Form.js +0 -43
  1538. package/lib/redux/connectors/Form.js.map +0 -1
  1539. package/lib/redux/connectors/FormAttributeSet.js +0 -27
  1540. package/lib/redux/connectors/FormAttributeSet.js.map +0 -1
  1541. package/lib/redux/connectors/ListDetail.js +0 -21
  1542. package/lib/redux/connectors/ListDetail.js.map +0 -1
  1543. package/lib/redux/connectors/Modal.js +0 -27
  1544. package/lib/redux/connectors/Modal.js.map +0 -1
  1545. package/lib/redux/connectors/ModelCatalog.js +0 -19
  1546. package/lib/redux/connectors/ModelCatalog.js.map +0 -1
  1547. package/lib/redux/connectors/Notification.js +0 -22
  1548. package/lib/redux/connectors/Notification.js.map +0 -1
  1549. package/lib/redux/connectors/PanelRenderer.js +0 -29
  1550. package/lib/redux/connectors/PanelRenderer.js.map +0 -1
  1551. package/lib/redux/connectors/Preferences.js +0 -29
  1552. package/lib/redux/connectors/Preferences.js.map +0 -1
  1553. package/lib/redux/connectors/Progress.js +0 -19
  1554. package/lib/redux/connectors/Progress.js.map +0 -1
  1555. package/lib/redux/connectors/ProgressIndicator.js +0 -19
  1556. package/lib/redux/connectors/ProgressIndicator.js.map +0 -1
  1557. package/lib/redux/connectors/QuickSearch.js +0 -27
  1558. package/lib/redux/connectors/QuickSearch.js.map +0 -1
  1559. package/lib/redux/connectors/SignIn.js +0 -24
  1560. package/lib/redux/connectors/SignIn.js.map +0 -1
  1561. package/lib/redux/connectors/SignOut.js +0 -20
  1562. package/lib/redux/connectors/SignOut.js.map +0 -1
  1563. package/lib/redux/connectors/Tab.js +0 -19
  1564. package/lib/redux/connectors/Tab.js.map +0 -1
  1565. package/lib/redux/connectors/index.js +0 -153
  1566. package/lib/redux/connectors/index.js.map +0 -1
  1567. package/lib/redux/index.js +0 -102
  1568. package/lib/redux/index.js.map +0 -1
  1569. package/lib/redux/reducers/AuthReducer.js +0 -59
  1570. package/lib/redux/reducers/AuthReducer.js.map +0 -1
  1571. package/lib/redux/reducers/ErrorReducer.js +0 -22
  1572. package/lib/redux/reducers/ErrorReducer.js.map +0 -1
  1573. package/lib/redux/reducers/ModalsReducer.js +0 -58
  1574. package/lib/redux/reducers/ModalsReducer.js.map +0 -1
  1575. package/lib/redux/reducers/ModelCatalogReducer.js +0 -34
  1576. package/lib/redux/reducers/ModelCatalogReducer.js.map +0 -1
  1577. package/lib/redux/reducers/NotificationReducer.js +0 -43
  1578. package/lib/redux/reducers/NotificationReducer.js.map +0 -1
  1579. package/lib/redux/reducers/PreferencesReducer.js +0 -30
  1580. package/lib/redux/reducers/PreferencesReducer.js.map +0 -1
  1581. package/lib/redux/reducers/ProgressIndicatorReducer.js +0 -55
  1582. package/lib/redux/reducers/ProgressIndicatorReducer.js.map +0 -1
  1583. package/lib/redux/reducers/createReducer.js +0 -33
  1584. package/lib/redux/reducers/createReducer.js.map +0 -1
  1585. package/lib/redux/reducers/index.js +0 -78
  1586. package/lib/redux/reducers/index.js.map +0 -1
  1587. package/lib/redux/selectors/i18n.js +0 -20
  1588. package/lib/redux/selectors/i18n.js.map +0 -1
  1589. package/lib/redux/selectors/index.js +0 -29
  1590. package/lib/redux/selectors/index.js.map +0 -1
  1591. package/lib/redux/selectors/modelcatalog.js +0 -14
  1592. package/lib/redux/selectors/modelcatalog.js.map +0 -1
  1593. package/lib/redux/store/beforeRenderHooks.js +0 -24
  1594. package/lib/redux/store/beforeRenderHooks.js.map +0 -1
  1595. package/lib/redux/store/configureStore.js +0 -42
  1596. package/lib/redux/store/configureStore.js.map +0 -1
  1597. package/lib/redux/types.js +0 -2
  1598. package/lib/redux/types.js.map +0 -1
  1599. package/lib/utils/browser/Cache.js +0 -151
  1600. package/lib/utils/browser/Cache.js.map +0 -1
  1601. package/lib/utils/browser/Cookies.js +0 -38
  1602. package/lib/utils/browser/Cookies.js.map +0 -1
  1603. package/lib/utils/datetime/DateTimeUtil.js +0 -648
  1604. package/lib/utils/datetime/DateTimeUtil.js.map +0 -1
  1605. package/lib/utils/fetch/serverFetch.js +0 -32
  1606. package/lib/utils/fetch/serverFetch.js.map +0 -1
  1607. package/lib/utils/fetch/types.js +0 -2
  1608. package/lib/utils/fetch/types.js.map +0 -1
  1609. package/lib/utils/fetch/universalFetch.js +0 -94
  1610. package/lib/utils/fetch/universalFetch.js.map +0 -1
  1611. package/lib/utils/fetch/xhr.js +0 -358
  1612. package/lib/utils/fetch/xhr.js.map +0 -1
  1613. package/lib/utils/helpers/checkResource.js +0 -46
  1614. package/lib/utils/helpers/checkResource.js.map +0 -1
  1615. package/lib/utils/helpers/createHash.js +0 -28
  1616. package/lib/utils/helpers/createHash.js.map +0 -1
  1617. package/lib/utils/helpers/createHref.js +0 -101
  1618. package/lib/utils/helpers/createHref.js.map +0 -1
  1619. package/lib/utils/helpers/createUUID.js +0 -18
  1620. package/lib/utils/helpers/createUUID.js.map +0 -1
  1621. package/lib/utils/helpers/index.js +0 -102
  1622. package/lib/utils/helpers/index.js.map +0 -1
  1623. package/lib/utils/helpers/objects.js +0 -36
  1624. package/lib/utils/helpers/objects.js.map +0 -1
  1625. package/lib/utils/helpers/repositoryResource.js +0 -26
  1626. package/lib/utils/helpers/repositoryResource.js.map +0 -1
  1627. package/lib/utils/helpers/sanitizeHtml.js +0 -44
  1628. package/lib/utils/helpers/sanitizeHtml.js.map +0 -1
  1629. package/lib/utils/helpers/text.js +0 -23
  1630. package/lib/utils/helpers/text.js.map +0 -1
  1631. package/lib/utils/index.js +0 -106
  1632. package/lib/utils/index.js.map +0 -1
  1633. package/lib/utils/number/DecimalFormat.js +0 -333
  1634. package/lib/utils/number/DecimalFormat.js.map +0 -1
  1635. package/lib/utils/number/formatValue.js +0 -47
  1636. package/lib/utils/number/formatValue.js.map +0 -1
  1637. package/lib/utils/number/parseNumbers.js +0 -70
  1638. package/lib/utils/number/parseNumbers.js.map +0 -1
  1639. package/types/hooks/useI18n.d.ts +0 -13
  1640. package/types/hooks/useModelCatalog.d.ts +0 -31
  1641. package/types/i18n/Locales.d.ts +0 -55
  1642. package/types/models/actions/ActionModel.d.ts +0 -84
  1643. package/types/models/application/ApplicationModel.d.ts +0 -48
  1644. package/types/models/attributes/AttributeCollection.d.ts +0 -100
  1645. package/types/models/attributes/AttributeContent.d.ts +0 -64
  1646. package/types/models/attributes/AttributeDataHelper.d.ts +0 -67
  1647. package/types/models/attributes/AttributeModel.d.ts +0 -401
  1648. package/types/models/attributes/BooleanAttributeModel.d.ts +0 -64
  1649. package/types/models/attributes/ChoiceAttributeModel.d.ts +0 -85
  1650. package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +0 -81
  1651. package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +0 -151
  1652. package/types/models/attributes/DatetimeAttributeModel.d.ts +0 -147
  1653. package/types/models/attributes/PasswordAttributeModel.d.ts +0 -62
  1654. package/types/models/attributes/UploadAttributeModel.d.ts +0 -60
  1655. package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +0 -127
  1656. package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +0 -114
  1657. package/types/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +0 -36
  1658. package/types/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +0 -61
  1659. package/types/models/attributes/input-constraints/RangeConstraint.d.ts +0 -113
  1660. package/types/models/attributes/input-constraints/StringLengthConstraint.d.ts +0 -46
  1661. package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +0 -57
  1662. package/types/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +0 -27
  1663. package/types/models/base/BaseCollection.d.ts +0 -89
  1664. package/types/models/base/BaseModel.d.ts +0 -78
  1665. package/types/models/base/ResourceModel.d.ts +0 -102
  1666. package/types/models/caseview/CaseViewModel.d.ts +0 -45
  1667. package/types/models/concepts/BusinessScenarioModel.d.ts +0 -20
  1668. package/types/models/concepts/ConceptDetailModel.d.ts +0 -86
  1669. package/types/models/concepts/ConceptLinkModel.d.ts +0 -70
  1670. package/types/models/concepts/ConceptRelationCollection.d.ts +0 -36
  1671. package/types/models/concepts/ConceptRelationModel.d.ts +0 -61
  1672. package/types/models/concepts/ConceptTypeDetailModel.d.ts +0 -54
  1673. package/types/models/content/ContentLinkModel.d.ts +0 -85
  1674. package/types/models/content/ContentModel.d.ts +0 -80
  1675. package/types/models/content/ContentTOCModel.d.ts +0 -41
  1676. package/types/models/content/SectionModel.d.ts +0 -76
  1677. package/types/models/content/SubSectionModel.d.ts +0 -69
  1678. package/types/models/contentconfiguration/ContentConfiguration.d.ts +0 -28
  1679. package/types/models/contentconfiguration/ContentConfigurationElements.d.ts +0 -47
  1680. package/types/models/contentconfiguration/ContentConfigurationEndResults.d.ts +0 -16
  1681. package/types/models/contentconfiguration/ContentConfigurationResults.d.ts +0 -39
  1682. package/types/models/detail/DetailModel.d.ts +0 -80
  1683. package/types/models/error/ErrorCollection.d.ts +0 -51
  1684. package/types/models/error/ErrorResponse.d.ts +0 -156
  1685. package/types/models/filters/BaseFilterModel.d.ts +0 -101
  1686. package/types/models/form/FormModel.d.ts +0 -350
  1687. package/types/models/form/FormObjectModel.d.ts +0 -207
  1688. package/types/models/grouping/GroupingModel.d.ts +0 -86
  1689. package/types/models/href/Href.d.ts +0 -226
  1690. package/types/models/href/ListHref.d.ts +0 -64
  1691. package/types/models/layouthint/LayoutHintCollection.d.ts +0 -43
  1692. package/types/models/links/LinkCollection.d.ts +0 -71
  1693. package/types/models/links/LinkModel.d.ts +0 -93
  1694. package/types/models/list/ListDetailModel.d.ts +0 -69
  1695. package/types/models/list/ListHeaderModel.d.ts +0 -64
  1696. package/types/models/list/ListModel.d.ts +0 -143
  1697. package/types/models/paging/PagesizeModel.d.ts +0 -25
  1698. package/types/models/panels/GroupingPanelModel.d.ts +0 -48
  1699. package/types/models/sorting/SortOptionModel.d.ts +0 -48
  1700. package/types/models/sorting/SortingModel.d.ts +0 -42
  1701. package/types/models/tab/TabModel.d.ts +0 -52
  1702. package/types/models/user/UserServicesModel.d.ts +0 -38
  1703. package/types/modularui/Authenticate.d.ts +0 -49
  1704. package/types/modularui/ModularUIRequest.d.ts +0 -215
  1705. package/types/modularui/ModularUIResponse.d.ts +0 -78
  1706. package/types/react-server/serverUtil.d.ts +0 -45
  1707. package/types/react-theme/utils/background.d.ts +0 -5
  1708. package/types/react-theme/utils/colors.d.ts +0 -10
  1709. package/types/react-theme/utils/contrast.d.ts +0 -19
  1710. package/types/react-theme/utils/corners.d.ts +0 -4
  1711. package/types/react-theme/utils/spacers.d.ts +0 -10
  1712. package/types/react-theme/utils/themeProps.d.ts +0 -7
  1713. package/types/redux/_modularui/ModularUIActions.d.ts +0 -29
  1714. package/types/redux/_modularui/types.d.ts +0 -81
  1715. package/types/redux/actions/Notification.d.ts +0 -14
  1716. package/types/redux/store/beforeRenderHooks.d.ts +0 -7
  1717. package/types/redux/store/configureStore.d.ts +0 -8
  1718. /package/{lib → esm}/builder/__tests__/mergeLayoutHintConfigurations.spec.js.flow +0 -0
  1719. /package/{types → esm}/builder/index.d.ts +0 -0
  1720. /package/{lib → esm}/builder/index.js.flow +0 -0
  1721. /package/{types → esm}/builder/mergeLayoutHintConfigurations.d.ts +0 -0
  1722. /package/{lib → esm}/builder/mergeLayoutHintConfigurations.js.flow +0 -0
  1723. /package/{types → esm}/constants/Constants.d.ts +0 -0
  1724. /package/{lib → esm}/constants/Constants.js.flow +0 -0
  1725. /package/{types → esm}/constants/LayoutHintConfig.d.ts +0 -0
  1726. /package/{lib → esm}/constants/LayoutHintConfig.js.flow +0 -0
  1727. /package/{types → esm}/constants/LayoutHints.d.ts +0 -0
  1728. /package/{lib → esm}/constants/LayoutHints.js.flow +0 -0
  1729. /package/{types → esm}/constants/Settings.d.ts +0 -0
  1730. /package/{lib → esm}/constants/Settings.js.flow +0 -0
  1731. /package/{types → esm}/constants/index.d.ts +0 -0
  1732. /package/{lib → esm}/constants/index.js.flow +0 -0
  1733. /package/{types → esm}/exceptions/ConfigurationException.d.ts +0 -0
  1734. /package/{lib → esm}/exceptions/ConfigurationException.js.flow +0 -0
  1735. /package/{types → esm}/exceptions/FetchException.d.ts +0 -0
  1736. /package/{lib → esm}/exceptions/FetchException.js.flow +0 -0
  1737. /package/{types → esm}/exceptions/IllegalArgumentException.d.ts +0 -0
  1738. /package/{lib → esm}/exceptions/IllegalArgumentException.js.flow +0 -0
  1739. /package/{types → esm}/exceptions/IllegalReturnException.d.ts +0 -0
  1740. /package/{lib → esm}/exceptions/IllegalReturnException.js.flow +0 -0
  1741. /package/{types → esm}/exceptions/IllegalStateException.d.ts +0 -0
  1742. /package/{lib → esm}/exceptions/IllegalStateException.js.flow +0 -0
  1743. /package/{types → esm}/exceptions/JsonParseException.d.ts +0 -0
  1744. /package/{lib → esm}/exceptions/JsonParseException.js.flow +0 -0
  1745. /package/{types → esm}/exceptions/MissingPropertyException.d.ts +0 -0
  1746. /package/{lib → esm}/exceptions/MissingPropertyException.js.flow +0 -0
  1747. /package/{types → esm}/exceptions/NetworkException.d.ts +0 -0
  1748. /package/{lib → esm}/exceptions/NetworkException.js.flow +0 -0
  1749. /package/{types → esm}/exceptions/NotAllowedUriException.d.ts +0 -0
  1750. /package/{lib → esm}/exceptions/NotAllowedUriException.js.flow +0 -0
  1751. /package/{types → esm}/exceptions/NotFoundException.d.ts +0 -0
  1752. /package/{lib → esm}/exceptions/NotFoundException.js.flow +0 -0
  1753. /package/{types → esm}/exceptions/ServerRequestException.d.ts +0 -0
  1754. /package/{lib → esm}/exceptions/ServerRequestException.js.flow +0 -0
  1755. /package/{types → esm}/exceptions/ThemePropertyException.d.ts +0 -0
  1756. /package/{lib → esm}/exceptions/ThemePropertyException.js.flow +0 -0
  1757. /package/{types → esm}/exceptions/TimeoutException.d.ts +0 -0
  1758. /package/{lib → esm}/exceptions/TimeoutException.js.flow +0 -0
  1759. /package/{types → esm}/exceptions/UnauthorizedException.d.ts +0 -0
  1760. /package/{lib → esm}/exceptions/UnauthorizedException.js.flow +0 -0
  1761. /package/{types → esm}/exceptions/UnsupportedOperationException.d.ts +0 -0
  1762. /package/{lib → esm}/exceptions/UnsupportedOperationException.js.flow +0 -0
  1763. /package/{types → esm}/exceptions/index.d.ts +0 -0
  1764. /package/{lib → esm}/exceptions/index.js.flow +0 -0
  1765. /package/{lib → esm}/hooks/__tests__/UseModularUIModel.spec.js.flow +0 -0
  1766. /package/{lib → esm}/hooks/__tests__/useAuthentication.spec.js.flow +0 -0
  1767. /package/{lib → esm}/hooks/__tests__/useForm.spec.js.flow +0 -0
  1768. /package/{lib → esm}/hooks/__tests__/useI18n.spec.js.flow +0 -0
  1769. /package/{lib → esm}/hooks/__tests__/useModal.spec.js.flow +0 -0
  1770. /package/{lib → esm}/hooks/__tests__/useModelCatalog.spec.js.flow +0 -0
  1771. /package/{lib → esm}/hooks/__tests__/useModels.spec.js.flow +0 -0
  1772. /package/{lib → esm}/hooks/__tests__/useModularUIBasic.spec.js.flow +0 -0
  1773. /package/{lib → esm}/hooks/__tests__/useNotification.spec.js.flow +0 -0
  1774. /package/{lib → esm}/hooks/__tests__/usePreference.spec.js.flow +0 -0
  1775. /package/{lib → esm}/hooks/__tests__/useProgressIndicator.spec.js.flow +0 -0
  1776. /package/{types → esm}/hooks/index.d.ts +0 -0
  1777. /package/{lib → esm}/hooks/index.js.flow +0 -0
  1778. /package/{types → esm}/hooks/useAllFormsOnModel.d.ts +0 -0
  1779. /package/{lib → esm}/hooks/useAllFormsOnModel.js.flow +0 -0
  1780. /package/{types → esm}/hooks/useAuthentication.d.ts +0 -0
  1781. /package/{lib → esm}/hooks/useAuthentication.js.flow +0 -0
  1782. /package/{types → esm}/hooks/useContent.d.ts +0 -0
  1783. /package/{lib → esm}/hooks/useContent.js.flow +0 -0
  1784. /package/{types → esm}/hooks/useDeepCompareEffect.d.ts +0 -0
  1785. /package/{lib → esm}/hooks/useDeepCompareEffect.js.flow +0 -0
  1786. /package/{types → esm}/hooks/useForm.d.ts +0 -0
  1787. /package/{lib → esm}/hooks/useForm.js.flow +0 -0
  1788. /package/{lib → esm}/hooks/useI18n.js.flow +0 -0
  1789. /package/{types → esm}/hooks/useModal.d.ts +0 -0
  1790. /package/{lib → esm}/hooks/useModal.js.flow +0 -0
  1791. /package/{lib → esm}/hooks/useModelCatalog.js.flow +0 -0
  1792. /package/{types → esm}/hooks/useModels.d.ts +0 -0
  1793. /package/{lib → esm}/hooks/useModels.js.flow +0 -0
  1794. /package/{types → esm}/hooks/useModularUI.d.ts +0 -0
  1795. /package/{lib → esm}/hooks/useModularUI.js.flow +0 -0
  1796. /package/{types → esm}/hooks/useModularUIBasic.d.ts +0 -0
  1797. /package/{lib → esm}/hooks/useModularUIBasic.js.flow +0 -0
  1798. /package/{types → esm}/hooks/useModularUIModel.d.ts +0 -0
  1799. /package/{lib → esm}/hooks/useModularUIModel.js.flow +0 -0
  1800. /package/{types → esm}/hooks/useModularUIRequest.d.ts +0 -0
  1801. /package/{lib → esm}/hooks/useModularUIRequest.js.flow +0 -0
  1802. /package/{types → esm}/hooks/useNotification.d.ts +0 -0
  1803. /package/{lib → esm}/hooks/useNotification.js.flow +0 -0
  1804. /package/{types → esm}/hooks/usePreference.d.ts +0 -0
  1805. /package/{lib → esm}/hooks/usePreference.js.flow +0 -0
  1806. /package/{types → esm}/hooks/useProgressIndicator.d.ts +0 -0
  1807. /package/{lib → esm}/hooks/useProgressIndicator.js.flow +0 -0
  1808. /package/{types → esm}/hooks/useRouter.d.ts +0 -0
  1809. /package/{lib → esm}/hooks/useRouter.js.flow +0 -0
  1810. /package/{types → esm}/i18n/Locale.d.ts +0 -0
  1811. /package/{lib → esm}/i18n/Locale.js.flow +0 -0
  1812. /package/{lib → esm}/i18n/Locales.js.flow +0 -0
  1813. /package/{types → esm}/i18n/Message.d.ts +0 -0
  1814. /package/{lib → esm}/i18n/Message.js.flow +0 -0
  1815. /package/{lib → esm}/i18n/__tests__/Locale.spec.js.flow +0 -0
  1816. /package/{lib → esm}/i18n/__tests__/Locales.spec.js.flow +0 -0
  1817. /package/{types → esm}/i18n/index.d.ts +0 -0
  1818. /package/{lib → esm}/i18n/index.js.flow +0 -0
  1819. /package/{types → esm}/i18n/languages.d.ts +0 -0
  1820. /package/{lib → esm}/i18n/languages.js.flow +0 -0
  1821. /package/{types → esm}/i18n/translations/beinformed_error_messages_en.nl.d.ts +0 -0
  1822. /package/{lib → esm}/i18n/translations/beinformed_error_messages_en.nl.js.flow +0 -0
  1823. /package/{types → esm}/i18n/translations/beinformed_error_messages_nl.nl.d.ts +0 -0
  1824. /package/{lib → esm}/i18n/translations/beinformed_error_messages_nl.nl.js.flow +0 -0
  1825. /package/{types → esm}/i18n/types.d.ts +0 -0
  1826. /package/{lib → esm}/i18n/types.js.flow +0 -0
  1827. /package/{types → esm}/i18n/withMessage.d.ts +0 -0
  1828. /package/{lib → esm}/i18n/withMessage.js.flow +0 -0
  1829. /package/{types → esm}/index.d.ts +0 -0
  1830. /package/{lib → esm}/index.js.flow +0 -0
  1831. /package/{lib → esm}/models/__tests__/resolveModel.spec.js.flow +0 -0
  1832. /package/{types → esm}/models/actions/ActionCollection.d.ts +0 -0
  1833. /package/{lib → esm}/models/actions/ActionCollection.js.flow +0 -0
  1834. /package/{lib → esm}/models/actions/ActionModel.js.flow +0 -0
  1835. /package/{lib → esm}/models/actions/__mock__/action.js.flow +0 -0
  1836. /package/{lib → esm}/models/actions/__tests__/ActionCollection.spec.js.flow +0 -0
  1837. /package/{lib → esm}/models/actions/__tests__/ActionModel.spec.js.flow +0 -0
  1838. /package/{lib → esm}/models/application/ApplicationModel.js.flow +0 -0
  1839. /package/{lib → esm}/models/application/__mock__/application.js.flow +0 -0
  1840. /package/{lib → esm}/models/application/__tests__/Application.spec.js.flow +0 -0
  1841. /package/{lib → esm}/models/attributes/AttributeCollection.js.flow +0 -0
  1842. /package/{lib → esm}/models/attributes/AttributeContent.js.flow +0 -0
  1843. /package/{lib → esm}/models/attributes/AttributeDataHelper.js.flow +0 -0
  1844. /package/{lib → esm}/models/attributes/AttributeModel.js.flow +0 -0
  1845. /package/{types → esm}/models/attributes/AttributeSetModel.d.ts +0 -0
  1846. /package/{lib → esm}/models/attributes/AttributeSetModel.js.flow +0 -0
  1847. /package/{lib → esm}/models/attributes/BooleanAttributeModel.js.flow +0 -0
  1848. /package/{types → esm}/models/attributes/CaptchaAttributeModel.d.ts +0 -0
  1849. /package/{lib → esm}/models/attributes/CaptchaAttributeModel.js.flow +0 -0
  1850. /package/{lib → esm}/models/attributes/ChoiceAttributeModel.js.flow +0 -0
  1851. /package/{lib → esm}/models/attributes/ChoiceAttributeOptionCollection.js.flow +0 -0
  1852. /package/{lib → esm}/models/attributes/ChoiceAttributeOptionModel.js.flow +0 -0
  1853. /package/{types → esm}/models/attributes/CompositeAttributeChildCollection.d.ts +0 -0
  1854. /package/{lib → esm}/models/attributes/CompositeAttributeChildCollection.js.flow +0 -0
  1855. /package/{types → esm}/models/attributes/CompositeAttributeModel.d.ts +0 -0
  1856. /package/{lib → esm}/models/attributes/CompositeAttributeModel.js.flow +0 -0
  1857. /package/{lib → esm}/models/attributes/DatetimeAttributeModel.js.flow +0 -0
  1858. /package/{types → esm}/models/attributes/HelptextAttributeModel.d.ts +0 -0
  1859. /package/{lib → esm}/models/attributes/HelptextAttributeModel.js.flow +0 -0
  1860. /package/{types → esm}/models/attributes/LabelAttributeModel.d.ts +0 -0
  1861. /package/{lib → esm}/models/attributes/LabelAttributeModel.js.flow +0 -0
  1862. /package/{types → esm}/models/attributes/MemoAttributeModel.d.ts +0 -0
  1863. /package/{lib → esm}/models/attributes/MemoAttributeModel.js.flow +0 -0
  1864. /package/{types → esm}/models/attributes/MoneyAttributeModel.d.ts +0 -0
  1865. /package/{lib → esm}/models/attributes/MoneyAttributeModel.js.flow +0 -0
  1866. /package/{types → esm}/models/attributes/NumberAttributeModel.d.ts +0 -0
  1867. /package/{lib → esm}/models/attributes/NumberAttributeModel.js.flow +0 -0
  1868. /package/{lib → esm}/models/attributes/PasswordAttributeModel.js.flow +0 -0
  1869. /package/{types → esm}/models/attributes/StringAttributeModel.d.ts +0 -0
  1870. /package/{lib → esm}/models/attributes/StringAttributeModel.js.flow +0 -0
  1871. /package/{lib → esm}/models/attributes/UploadAttributeModel.js.flow +0 -0
  1872. /package/{types → esm}/models/attributes/XMLAttributeModel.d.ts +0 -0
  1873. /package/{lib → esm}/models/attributes/XMLAttributeModel.js.flow +0 -0
  1874. /package/{lib → esm}/models/attributes/__mock__/form.js.flow +0 -0
  1875. /package/{lib → esm}/models/attributes/__mock__/list.js.flow +0 -0
  1876. /package/{lib → esm}/models/attributes/__tests__/AttributeCollection.spec.js.flow +0 -0
  1877. /package/{lib → esm}/models/attributes/__tests__/AttributeCollectionComposite.spec.js.flow +0 -0
  1878. /package/{lib → esm}/models/attributes/__tests__/AttributeContent.spec.js.flow +0 -0
  1879. /package/{lib → esm}/models/attributes/__tests__/AttributeDataHelper.spec.js.flow +0 -0
  1880. /package/{lib → esm}/models/attributes/__tests__/AttributeModel.spec.js.flow +0 -0
  1881. /package/{lib → esm}/models/attributes/__tests__/AttributeSetModel.spec.js.flow +0 -0
  1882. /package/{lib → esm}/models/attributes/__tests__/BooleanAttributeModel.spec.js.flow +0 -0
  1883. /package/{lib → esm}/models/attributes/__tests__/CaptchaAttributeModel.spec.js.flow +0 -0
  1884. /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeModel.spec.js.flow +0 -0
  1885. /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionCollection.spec.js.flow +0 -0
  1886. /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionModel.spec.js.flow +0 -0
  1887. /package/{lib → esm}/models/attributes/__tests__/CompositeAttributeModel.spec.js.flow +0 -0
  1888. /package/{lib → esm}/models/attributes/__tests__/DateAttributeModel.spec.js.flow +0 -0
  1889. /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel.spec.js.flow +0 -0
  1890. /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel_offset.spec.js.flow +0 -0
  1891. /package/{lib → esm}/models/attributes/__tests__/HelptextAttributeModel.spec.js.flow +0 -0
  1892. /package/{lib → esm}/models/attributes/__tests__/LabelAttributeModel.spec.js.flow +0 -0
  1893. /package/{lib → esm}/models/attributes/__tests__/LookupAttributeModel.spec.js.flow +0 -0
  1894. /package/{lib → esm}/models/attributes/__tests__/MemoAttributeModel.spec.js.flow +0 -0
  1895. /package/{lib → esm}/models/attributes/__tests__/MoneyAttributeModel.spec.js.flow +0 -0
  1896. /package/{lib → esm}/models/attributes/__tests__/NumberAttributeModel.spec.js.flow +0 -0
  1897. /package/{lib → esm}/models/attributes/__tests__/PasswordAttributeModel.spec.js.flow +0 -0
  1898. /package/{lib → esm}/models/attributes/__tests__/StringAttributeModel.spec.js.flow +0 -0
  1899. /package/{lib → esm}/models/attributes/__tests__/TimeAttributeModel.spec.js.flow +0 -0
  1900. /package/{lib → esm}/models/attributes/__tests__/TimestampModel.spec.js.flow +0 -0
  1901. /package/{lib → esm}/models/attributes/__tests__/UploadAttributeModel.spec.js.flow +0 -0
  1902. /package/{lib → esm}/models/attributes/__tests__/XMLAttributeModel.spec.js.flow +0 -0
  1903. /package/{lib → esm}/models/attributes/__tests__/_createAttribute.spec.js.flow +0 -0
  1904. /package/{lib → esm}/models/attributes/__tests__/createAttributeComposite.spec.js.flow +0 -0
  1905. /package/{lib → esm}/models/attributes/__tests__/createAttributeDynamicSchema.spec.js.flow +0 -0
  1906. /package/{types → esm}/models/attributes/_createAttribute.d.ts +0 -0
  1907. /package/{lib → esm}/models/attributes/_createAttribute.js.flow +0 -0
  1908. /package/{types → esm}/models/attributes/input-constraints/BSNConstraint.d.ts +0 -0
  1909. /package/{lib → esm}/models/attributes/input-constraints/BSNConstraint.js.flow +0 -0
  1910. /package/{types → esm}/models/attributes/input-constraints/ConstraintCollection.d.ts +0 -0
  1911. /package/{lib → esm}/models/attributes/input-constraints/ConstraintCollection.js.flow +0 -0
  1912. /package/{types → esm}/models/attributes/input-constraints/ConstraintModel.d.ts +0 -0
  1913. /package/{lib → esm}/models/attributes/input-constraints/ConstraintModel.js.flow +0 -0
  1914. /package/{lib → esm}/models/attributes/input-constraints/DateBoundaryConstraint.js.flow +0 -0
  1915. /package/{types → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +0 -0
  1916. /package/{lib → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.flow +0 -0
  1917. /package/{types → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +0 -0
  1918. /package/{lib → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.flow +0 -0
  1919. /package/{lib → esm}/models/attributes/input-constraints/DatetimeFormatConstraint.js.flow +0 -0
  1920. /package/{types → esm}/models/attributes/input-constraints/FileExtensionConstraint.d.ts +0 -0
  1921. /package/{lib → esm}/models/attributes/input-constraints/FileExtensionConstraint.js.flow +0 -0
  1922. /package/{types → esm}/models/attributes/input-constraints/FileSizeConstraint.d.ts +0 -0
  1923. /package/{lib → esm}/models/attributes/input-constraints/FileSizeConstraint.js.flow +0 -0
  1924. /package/{types → esm}/models/attributes/input-constraints/IBANConstraint.d.ts +0 -0
  1925. /package/{lib → esm}/models/attributes/input-constraints/IBANConstraint.js.flow +0 -0
  1926. /package/{types → esm}/models/attributes/input-constraints/MandatoryConstraint.d.ts +0 -0
  1927. /package/{lib → esm}/models/attributes/input-constraints/MandatoryConstraint.js.flow +0 -0
  1928. /package/{lib → esm}/models/attributes/input-constraints/MandatoryRangeConstraint.js.flow +0 -0
  1929. /package/{lib → esm}/models/attributes/input-constraints/NumberBoundaryConstraint.js.flow +0 -0
  1930. /package/{types → esm}/models/attributes/input-constraints/NumberFormatConstraint.d.ts +0 -0
  1931. /package/{lib → esm}/models/attributes/input-constraints/NumberFormatConstraint.js.flow +0 -0
  1932. /package/{types → esm}/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +0 -0
  1933. /package/{lib → esm}/models/attributes/input-constraints/NumberGroupingConstraint.js.flow +0 -0
  1934. /package/{types → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +0 -0
  1935. /package/{lib → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.js.flow +0 -0
  1936. /package/{types → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +0 -0
  1937. /package/{lib → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.flow +0 -0
  1938. /package/{types → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +0 -0
  1939. /package/{lib → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.flow +0 -0
  1940. /package/{types → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +0 -0
  1941. /package/{lib → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.flow +0 -0
  1942. /package/{types → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +0 -0
  1943. /package/{lib → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.flow +0 -0
  1944. /package/{lib → esm}/models/attributes/input-constraints/RangeConstraint.js.flow +0 -0
  1945. /package/{types → esm}/models/attributes/input-constraints/RegexConstraint.d.ts +0 -0
  1946. /package/{lib → esm}/models/attributes/input-constraints/RegexConstraint.js.flow +0 -0
  1947. /package/{lib → esm}/models/attributes/input-constraints/StringLengthConstraint.js.flow +0 -0
  1948. /package/{types → esm}/models/attributes/input-constraints/XMLConstraint.d.ts +0 -0
  1949. /package/{lib → esm}/models/attributes/input-constraints/XMLConstraint.js.flow +0 -0
  1950. /package/{lib → esm}/models/attributes/input-constraints/__tests__/BSNConstraint.spec.js.flow +0 -0
  1951. /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintCollection.spec.js.flow +0 -0
  1952. /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintModel.spec.js.flow +0 -0
  1953. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateBoundaryConstraint.spec.js.flow +0 -0
  1954. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeDateFormatConstraint.spec.js.flow +0 -0
  1955. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeTimeFormatConstraint.spec.js.flow +0 -0
  1956. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DatetimeFormatConstraint.spec.js.flow +0 -0
  1957. /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileExtensionConstraint.spec.js.flow +0 -0
  1958. /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileSizeConstraint.spec.js.flow +0 -0
  1959. /package/{lib → esm}/models/attributes/input-constraints/__tests__/IBANConstraint.spec.js.flow +0 -0
  1960. /package/{lib → esm}/models/attributes/input-constraints/__tests__/MandatoryConstraint.spec.js.flow +0 -0
  1961. /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberBoundaryConstraint.spec.js.flow +0 -0
  1962. /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberFormatConstraint.spec.js.flow +0 -0
  1963. /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberGroupingConstraint.spec.js.flow +0 -0
  1964. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordConfirmConstraint.spec.js.flow +0 -0
  1965. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordLowerAndUpperCaseConstraint.spec.js.flow +0 -0
  1966. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinNumericCharactersConstraint.spec.js.flow +0 -0
  1967. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinSpecialCharactersConstraint.spec.js.flow +0 -0
  1968. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordThreeConsecutiveCharactersNotAllowedConstraint.spec.js.flow +0 -0
  1969. /package/{lib → esm}/models/attributes/input-constraints/__tests__/RegexConstraint.spec.js.flow +0 -0
  1970. /package/{lib → esm}/models/attributes/input-constraints/__tests__/StringLengthConstraint.spec.js.flow +0 -0
  1971. /package/{lib → esm}/models/attributes/input-constraints/__tests__/XMLConstraint.spec.js.flow +0 -0
  1972. /package/{types → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +0 -0
  1973. /package/{lib → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.js.flow +0 -0
  1974. /package/{lib → esm}/models/attributes/layouthint-rules/DependentAttribute.js.flow +0 -0
  1975. /package/{lib → esm}/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.flow +0 -0
  1976. /package/{types → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +0 -0
  1977. /package/{lib → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.flow +0 -0
  1978. /package/{lib → esm}/models/attributes/layouthint-rules/__mock__/MockedCollectionFactory.js.flow +0 -0
  1979. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/BaseLayoutHintRule.spec.js.flow +0 -0
  1980. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/DependentAttribute.spec.js.flow +0 -0
  1981. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/LayoutHintRuleCollection.spec.js.flow +0 -0
  1982. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/RemainingTotalUploadSize.spec.js.flow +0 -0
  1983. /package/{lib → esm}/models/base/BaseCollection.js.flow +0 -0
  1984. /package/{lib → esm}/models/base/BaseModel.js.flow +0 -0
  1985. /package/{types → esm}/models/base/ResourceCollection.d.ts +0 -0
  1986. /package/{lib → esm}/models/base/ResourceCollection.js.flow +0 -0
  1987. /package/{lib → esm}/models/base/ResourceModel.js.flow +0 -0
  1988. /package/{lib → esm}/models/base/__tests__/BaseCollection.spec.js.flow +0 -0
  1989. /package/{lib → esm}/models/base/__tests__/BaseModel.spec.js.flow +0 -0
  1990. /package/{lib → esm}/models/base/__tests__/ResourceCollection.spec.js.flow +0 -0
  1991. /package/{lib → esm}/models/base/__tests__/ResourceModel.spec.js.flow +0 -0
  1992. /package/{lib → esm}/models/caseview/CaseViewModel.js.flow +0 -0
  1993. /package/{lib → esm}/models/caseview/__mock__/caseview.js.flow +0 -0
  1994. /package/{lib → esm}/models/caseview/__tests__/CaseViewModel.spec.js.flow +0 -0
  1995. /package/{lib → esm}/models/concepts/BusinessScenarioModel.js.flow +0 -0
  1996. /package/{lib → esm}/models/concepts/ConceptDetailModel.js.flow +0 -0
  1997. /package/{types → esm}/models/concepts/ConceptIndexModel.d.ts +0 -0
  1998. /package/{lib → esm}/models/concepts/ConceptIndexModel.js.flow +0 -0
  1999. /package/{lib → esm}/models/concepts/ConceptLinkModel.js.flow +0 -0
  2000. /package/{lib → esm}/models/concepts/ConceptRelationCollection.js.flow +0 -0
  2001. /package/{lib → esm}/models/concepts/ConceptRelationModel.js.flow +0 -0
  2002. /package/{lib → esm}/models/concepts/ConceptTypeDetailModel.js.flow +0 -0
  2003. /package/{types → esm}/models/concepts/SourceReferenceCollection.d.ts +0 -0
  2004. /package/{lib → esm}/models/concepts/SourceReferenceCollection.js.flow +0 -0
  2005. /package/{types → esm}/models/concepts/SourceReferenceModel.d.ts +0 -0
  2006. /package/{lib → esm}/models/concepts/SourceReferenceModel.js.flow +0 -0
  2007. /package/{lib → esm}/models/concepts/__mock__/business_scenario.js.flow +0 -0
  2008. /package/{lib → esm}/models/concepts/__mock__/conceptdetail.js.flow +0 -0
  2009. /package/{lib → esm}/models/concepts/__mock__/conceptindex.js.flow +0 -0
  2010. /package/{lib → esm}/models/concepts/__mock__/concepttype.js.flow +0 -0
  2011. /package/{lib → esm}/models/concepts/__mock__/concepttype_hierarchy.js.flow +0 -0
  2012. /package/{lib → esm}/models/concepts/__mock__/relation_with_props_and_tf_data.js.flow +0 -0
  2013. /package/{lib → esm}/models/concepts/__tests__/BusinessScenarioModel.spec.js.flow +0 -0
  2014. /package/{lib → esm}/models/concepts/__tests__/ConceptDetailModel.spec.js.flow +0 -0
  2015. /package/{lib → esm}/models/concepts/__tests__/ConceptIndexModel.spec.js.flow +0 -0
  2016. /package/{lib → esm}/models/concepts/__tests__/ConceptLinkModel.spec.js.flow +0 -0
  2017. /package/{lib → esm}/models/concepts/__tests__/ConceptRelationCollection.spec.js.flow +0 -0
  2018. /package/{lib → esm}/models/concepts/__tests__/ConceptRelationModel.spec.js.flow +0 -0
  2019. /package/{lib → esm}/models/concepts/__tests__/ConceptTypeDetailModel.spec.js.flow +0 -0
  2020. /package/{lib → esm}/models/concepts/__tests__/SourceReferenceCollection.spec.js.flow +0 -0
  2021. /package/{lib → esm}/models/concepts/__tests__/SourceReferenceModel.spec.js.flow +0 -0
  2022. /package/{types → esm}/models/content/ContentIndexModel.d.ts +0 -0
  2023. /package/{lib → esm}/models/content/ContentIndexModel.js.flow +0 -0
  2024. /package/{lib → esm}/models/content/ContentLinkModel.js.flow +0 -0
  2025. /package/{lib → esm}/models/content/ContentModel.js.flow +0 -0
  2026. /package/{lib → esm}/models/content/ContentTOCModel.js.flow +0 -0
  2027. /package/{types → esm}/models/content/ContentTypeModel.d.ts +0 -0
  2028. /package/{lib → esm}/models/content/ContentTypeModel.js.flow +0 -0
  2029. /package/{lib → esm}/models/content/SectionModel.js.flow +0 -0
  2030. /package/{lib → esm}/models/content/SubSectionModel.js.flow +0 -0
  2031. /package/{lib → esm}/models/content/__tests__/ContentIndexModel.spec.js.flow +0 -0
  2032. /package/{lib → esm}/models/content/__tests__/ContentLinkModel.spec.js.flow +0 -0
  2033. /package/{lib → esm}/models/content/__tests__/ContentModel.spec.js.flow +0 -0
  2034. /package/{lib → esm}/models/contentconfiguration/ContentConfiguration.js.flow +0 -0
  2035. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationElements.js.flow +0 -0
  2036. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationEndResults.js.flow +0 -0
  2037. /package/{types → esm}/models/contentconfiguration/ContentConfigurationQuestions.d.ts +0 -0
  2038. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationQuestions.js.flow +0 -0
  2039. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationResults.js.flow +0 -0
  2040. /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationElements.spec.js.flow +0 -0
  2041. /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationResults.spec.js.flow +0 -0
  2042. /package/{lib → esm}/models/detail/DetailModel.js.flow +0 -0
  2043. /package/{lib → esm}/models/detail/__tests__/DetailModel.spec.js.flow +0 -0
  2044. /package/{lib → esm}/models/error/ErrorCollection.js.flow +0 -0
  2045. /package/{types → esm}/models/error/ErrorModel.d.ts +0 -0
  2046. /package/{lib → esm}/models/error/ErrorModel.js.flow +0 -0
  2047. /package/{lib → esm}/models/error/ErrorResponse.js.flow +0 -0
  2048. /package/{lib → esm}/models/error/__tests__/ErrorCollection.spec.js.flow +0 -0
  2049. /package/{lib → esm}/models/error/__tests__/ErrorModel.spec.js.flow +0 -0
  2050. /package/{types → esm}/models/filters/AssignmentFilterModel.d.ts +0 -0
  2051. /package/{lib → esm}/models/filters/AssignmentFilterModel.js.flow +0 -0
  2052. /package/{lib → esm}/models/filters/BaseFilterModel.js.flow +0 -0
  2053. /package/{types → esm}/models/filters/ConceptIndexFilterModel.d.ts +0 -0
  2054. /package/{lib → esm}/models/filters/ConceptIndexFilterModel.js.flow +0 -0
  2055. /package/{types → esm}/models/filters/FilterCollection.d.ts +0 -0
  2056. /package/{lib → esm}/models/filters/FilterCollection.js.flow +0 -0
  2057. /package/{types → esm}/models/filters/FilterModel.d.ts +0 -0
  2058. /package/{lib → esm}/models/filters/FilterModel.js.flow +0 -0
  2059. /package/{types → esm}/models/filters/RangeFilterModel.d.ts +0 -0
  2060. /package/{lib → esm}/models/filters/RangeFilterModel.js.flow +0 -0
  2061. /package/{types → esm}/models/filters/StringFilterModel.d.ts +0 -0
  2062. /package/{lib → esm}/models/filters/StringFilterModel.js.flow +0 -0
  2063. /package/{lib → esm}/models/filters/__tests__/AssignmentFilterModel.spec.js.flow +0 -0
  2064. /package/{lib → esm}/models/filters/__tests__/FilterCollection.spec.js.flow +0 -0
  2065. /package/{lib → esm}/models/filters/__tests__/FilterModel.spec.js.flow +0 -0
  2066. /package/{lib → esm}/models/filters/__tests__/RangeFilterModel.spec.js.flow +0 -0
  2067. /package/{lib → esm}/models/filters/__tests__/ZipcodeFilter.spec.js.flow +0 -0
  2068. /package/{lib → esm}/models/form/FormModel.js.flow +0 -0
  2069. /package/{lib → esm}/models/form/FormObjectModel.js.flow +0 -0
  2070. /package/{lib → esm}/models/form/__mock__/form.js.flow +0 -0
  2071. /package/{lib → esm}/models/form/__tests__/FormModel.getters.spec.js.flow +0 -0
  2072. /package/{lib → esm}/models/form/__tests__/FormModel.instrument.spec.js.flow +0 -0
  2073. /package/{lib → esm}/models/form/__tests__/FormModel.repeating.spec.js.flow +0 -0
  2074. /package/{lib → esm}/models/form/__tests__/FormModel.selfhref.spec.js.flow +0 -0
  2075. /package/{lib → esm}/models/form/__tests__/FormModel.spec.js.flow +0 -0
  2076. /package/{lib → esm}/models/form/__tests__/FormModel.unknown-repeat.spec.js.flow +0 -0
  2077. /package/{lib → esm}/models/form/__tests__/FormObjectModel.spec.js.flow +0 -0
  2078. /package/{lib → esm}/models/form/__tests__/FormResultData.spec.js.flow +0 -0
  2079. /package/{lib → esm}/models/form/__tests__/FormWithContent.spec.js.flow +0 -0
  2080. /package/{lib → esm}/models/grouping/GroupingModel.js.flow +0 -0
  2081. /package/{lib → esm}/models/grouping/__tests__/GroupingModel.spec.js.flow +0 -0
  2082. /package/{lib → esm}/models/href/Href.js.flow +0 -0
  2083. /package/{lib → esm}/models/href/ListHref.js.flow +0 -0
  2084. /package/{lib → esm}/models/href/__tests__/Href.spec.js.flow +0 -0
  2085. /package/{lib → esm}/models/href/__tests__/ListHref.spec.js.flow +0 -0
  2086. /package/{types → esm}/models/index.d.ts +0 -0
  2087. /package/{lib → esm}/models/index.js.flow +0 -0
  2088. /package/{lib → esm}/models/layouthint/LayoutHintCollection.js.flow +0 -0
  2089. /package/{lib → esm}/models/layouthint/__tests__/LayoutHintCollection.spec.js.flow +0 -0
  2090. /package/{lib → esm}/models/links/LinkCollection.js.flow +0 -0
  2091. /package/{lib → esm}/models/links/LinkModel.js.flow +0 -0
  2092. /package/{lib → esm}/models/links/__tests__/LinkCollection.spec.js.flow +0 -0
  2093. /package/{lib → esm}/models/links/__tests__/LinkModel.spec.js.flow +0 -0
  2094. /package/{lib → esm}/models/links/__tests__/normalizeLinkJSON.spec.js.flow +0 -0
  2095. /package/{types → esm}/models/links/normalizeLinkJSON.d.ts +0 -0
  2096. /package/{lib → esm}/models/links/normalizeLinkJSON.js.flow +0 -0
  2097. /package/{lib → esm}/models/list/ListDetailModel.js.flow +0 -0
  2098. /package/{lib → esm}/models/list/ListHeaderModel.js.flow +0 -0
  2099. /package/{types → esm}/models/list/ListItemCollection.d.ts +0 -0
  2100. /package/{lib → esm}/models/list/ListItemCollection.js.flow +0 -0
  2101. /package/{types → esm}/models/list/ListItemModel.d.ts +0 -0
  2102. /package/{lib → esm}/models/list/ListItemModel.js.flow +0 -0
  2103. /package/{lib → esm}/models/list/ListModel.js.flow +0 -0
  2104. /package/{lib → esm}/models/list/__mock__/caselist.js.flow +0 -0
  2105. /package/{lib → esm}/models/list/__tests__/ListDetailModel.hierarchy.spec.js.flow +0 -0
  2106. /package/{lib → esm}/models/list/__tests__/ListDetailModel.spec.js.flow +0 -0
  2107. /package/{lib → esm}/models/list/__tests__/ListItemCollection.spec.js.flow +0 -0
  2108. /package/{lib → esm}/models/list/__tests__/ListModel.spec.js.flow +0 -0
  2109. /package/{lib → esm}/models/list/__tests__/ListResultDetail.spec.js.flow +0 -0
  2110. /package/{types → esm}/models/lookup/LookupOptionCollection.d.ts +0 -0
  2111. /package/{lib → esm}/models/lookup/LookupOptionCollection.js.flow +0 -0
  2112. /package/{types → esm}/models/lookup/LookupOptionsModel.d.ts +0 -0
  2113. /package/{lib → esm}/models/lookup/LookupOptionsModel.js.flow +0 -0
  2114. /package/{lib → esm}/models/lookup/__tests__/LookupOptionCollection.spec.js.flow +0 -0
  2115. /package/{lib → esm}/models/lookup/__tests__/LookupOptionsModel.spec.js.flow +0 -0
  2116. /package/{types → esm}/models/modelcatalog/ModelCatalogModel.d.ts +0 -0
  2117. /package/{lib → esm}/models/modelcatalog/ModelCatalogModel.js.flow +0 -0
  2118. /package/{types → esm}/models/modelcatalog/ModelCategoryCollection.d.ts +0 -0
  2119. /package/{lib → esm}/models/modelcatalog/ModelCategoryCollection.js.flow +0 -0
  2120. /package/{types → esm}/models/modelcatalog/ModelCategoryModel.d.ts +0 -0
  2121. /package/{lib → esm}/models/modelcatalog/ModelCategoryModel.js.flow +0 -0
  2122. /package/{lib → esm}/models/modelcatalog/__mock__/modelcatalog.js.flow +0 -0
  2123. /package/{lib → esm}/models/modelcatalog/__tests__/ModelCatalogModel.spec.js.flow +0 -0
  2124. /package/{lib → esm}/models/paging/PagesizeModel.js.flow +0 -0
  2125. /package/{types → esm}/models/paging/PagingModel.d.ts +0 -0
  2126. /package/{lib → esm}/models/paging/PagingModel.js.flow +0 -0
  2127. /package/{lib → esm}/models/paging/__tests__/PageSizeModel.spec.js.flow +0 -0
  2128. /package/{lib → esm}/models/paging/__tests__/PagingModel.spec.js.flow +0 -0
  2129. /package/{lib → esm}/models/panels/GroupingPanelModel.js.flow +0 -0
  2130. /package/{lib → esm}/models/panels/__tests__/GroupingPanelModel.spec.js.flow +0 -0
  2131. /package/{types → esm}/models/parameter/Parameter.d.ts +0 -0
  2132. /package/{lib → esm}/models/parameter/Parameter.js.flow +0 -0
  2133. /package/{lib → esm}/models/parameter/__tests__/Parameter.spec.js.flow +0 -0
  2134. /package/{types → esm}/models/process/ProcessStatusSettingsModel.d.ts +0 -0
  2135. /package/{lib → esm}/models/process/ProcessStatusSettingsModel.js.flow +0 -0
  2136. /package/{lib → esm}/models/process/__tests__/ProcessStatusSettingsModel.spec.js.flow +0 -0
  2137. /package/{types → esm}/models/resolveModel.d.ts +0 -0
  2138. /package/{lib → esm}/models/resolveModel.js.flow +0 -0
  2139. /package/{types → esm}/models/search/CaseSearchModel.d.ts +0 -0
  2140. /package/{lib → esm}/models/search/CaseSearchModel.js.flow +0 -0
  2141. /package/{lib → esm}/models/search/__tests__/CaseSearchModel.spec.js.flow +0 -0
  2142. /package/{lib → esm}/models/sorting/SortOptionModel.js.flow +0 -0
  2143. /package/{lib → esm}/models/sorting/SortingModel.js.flow +0 -0
  2144. /package/{lib → esm}/models/sorting/__tests__/SortingModel.spec.js.flow +0 -0
  2145. /package/{lib → esm}/models/tab/TabModel.js.flow +0 -0
  2146. /package/{lib → esm}/models/tab/__mock__/tab.js.flow +0 -0
  2147. /package/{lib → esm}/models/tab/__mock__/tabPerson.js.flow +0 -0
  2148. /package/{lib → esm}/models/tab/__tests__/TabModel.spec.js.flow +0 -0
  2149. /package/{types → esm}/models/taskgroup/TaskGroupCollection.d.ts +0 -0
  2150. /package/{lib → esm}/models/taskgroup/TaskGroupCollection.js.flow +0 -0
  2151. /package/{types → esm}/models/taskgroup/TaskGroupModel.d.ts +0 -0
  2152. /package/{lib → esm}/models/taskgroup/TaskGroupModel.js.flow +0 -0
  2153. /package/{lib → esm}/models/taskgroup/__mock__/taskgroup.js.flow +0 -0
  2154. /package/{lib → esm}/models/taskgroup/__tests__/TaskGroupModel.spec.js.flow +0 -0
  2155. /package/{types → esm}/models/types.d.ts +0 -0
  2156. /package/{lib → esm}/models/types.js.flow +0 -0
  2157. /package/{types → esm}/models/user/UserModel.d.ts +0 -0
  2158. /package/{lib → esm}/models/user/UserModel.js.flow +0 -0
  2159. /package/{types → esm}/models/user/UserProfileModel.d.ts +0 -0
  2160. /package/{lib → esm}/models/user/UserProfileModel.js.flow +0 -0
  2161. /package/{lib → esm}/models/user/UserServicesModel.js.flow +0 -0
  2162. /package/{lib → esm}/models/user/__tests__/UserModel.spec.js.flow +0 -0
  2163. /package/{lib → esm}/models/user/__tests__/UserProfileModel.spec.js.flow +0 -0
  2164. /package/{lib → esm}/models/user/__tests__/UserServicesModel.spec.js.flow +0 -0
  2165. /package/{lib → esm}/modularui/Authenticate.js.flow +0 -0
  2166. /package/{types → esm}/modularui/CaptchaRequest.d.ts +0 -0
  2167. /package/{lib → esm}/modularui/CaptchaRequest.js.flow +0 -0
  2168. /package/{types → esm}/modularui/ModularUIError.d.ts +0 -0
  2169. /package/{lib → esm}/modularui/ModularUIError.js.flow +0 -0
  2170. /package/{lib → esm}/modularui/ModularUIRequest.js.flow +0 -0
  2171. /package/{lib → esm}/modularui/ModularUIResponse.js.flow +0 -0
  2172. /package/{types → esm}/modularui/UploadRequest.d.ts +0 -0
  2173. /package/{lib → esm}/modularui/UploadRequest.js.flow +0 -0
  2174. /package/{lib → esm}/modularui/__tests__/CustomContextPath.spec.js.flow +0 -0
  2175. /package/{lib → esm}/modularui/__tests__/ModularUIError.spec.js.flow +0 -0
  2176. /package/{lib → esm}/modularui/__tests__/ModularUIRequest.spec.js.flow +0 -0
  2177. /package/{types → esm}/modularui/index.d.ts +0 -0
  2178. /package/{lib → esm}/modularui/index.js.flow +0 -0
  2179. /package/{types → esm}/modularui/types.d.ts +0 -0
  2180. /package/{lib → esm}/modularui/types.js.flow +0 -0
  2181. /package/{types → esm}/react/ErrorBoundary.d.ts +0 -0
  2182. /package/{lib → esm}/react/ErrorBoundary.js.flow +0 -0
  2183. /package/{types → esm}/react/ErrorBoundaryFallback.d.ts +0 -0
  2184. /package/{lib → esm}/react/ErrorBoundaryFallback.js.flow +0 -0
  2185. /package/{types → esm}/react/index.d.ts +0 -0
  2186. /package/{lib → esm}/react/index.js.flow +0 -0
  2187. /package/{types → esm}/react/utils.d.ts +0 -0
  2188. /package/{lib → esm}/react/utils.js.flow +0 -0
  2189. /package/{types → esm}/react-client/Init.d.ts +0 -0
  2190. /package/{lib → esm}/react-client/Init.js.flow +0 -0
  2191. /package/{types → esm}/react-client/client.d.ts +0 -0
  2192. /package/{lib → esm}/react-client/client.js.flow +0 -0
  2193. /package/{types → esm}/react-client/contextPath.d.ts +0 -0
  2194. /package/{lib → esm}/react-client/contextPath.js.flow +0 -0
  2195. /package/{types → esm}/react-client/index.d.ts +0 -0
  2196. /package/{lib → esm}/react-client/index.js.flow +0 -0
  2197. /package/{types → esm}/react-client/rehydrate.d.ts +0 -0
  2198. /package/{lib → esm}/react-client/rehydrate.js.flow +0 -0
  2199. /package/{lib → esm}/react-server/__tests__/htmlpage.spec.js.flow +0 -0
  2200. /package/{lib → esm}/react-server/__tests__/serverUtil.spec.js.flow +0 -0
  2201. /package/{types → esm}/react-server/contextPath.d.ts +0 -0
  2202. /package/{lib → esm}/react-server/contextPath.js.flow +0 -0
  2203. /package/{types → esm}/react-server/createSSRComplete.d.ts +0 -0
  2204. /package/{lib → esm}/react-server/createSSRComplete.js.flow +0 -0
  2205. /package/{types → esm}/react-server/htmlpage.d.ts +0 -0
  2206. /package/{lib → esm}/react-server/htmlpage.js.flow +0 -0
  2207. /package/{types → esm}/react-server/index.d.ts +0 -0
  2208. /package/{lib → esm}/react-server/index.js.flow +0 -0
  2209. /package/{types → esm}/react-server/renderSSRComplete.d.ts +0 -0
  2210. /package/{lib → esm}/react-server/renderSSRComplete.js.flow +0 -0
  2211. /package/{types → esm}/react-server/renderSSRMinimal.d.ts +0 -0
  2212. /package/{lib → esm}/react-server/renderSSRMinimal.js.flow +0 -0
  2213. /package/{types → esm}/react-server/requestInformation.d.ts +0 -0
  2214. /package/{lib → esm}/react-server/requestInformation.js.flow +0 -0
  2215. /package/{types → esm}/react-server/serverNoSSR.d.ts +0 -0
  2216. /package/{lib → esm}/react-server/serverNoSSR.js.flow +0 -0
  2217. /package/{types → esm}/react-server/serverSSR.d.ts +0 -0
  2218. /package/{lib → esm}/react-server/serverSSR.js.flow +0 -0
  2219. /package/{lib → esm}/react-server/serverUtil.js.flow +0 -0
  2220. /package/{types → esm}/react-theme/ThemeProvider.d.ts +0 -0
  2221. /package/{lib → esm}/react-theme/ThemeProvider.js.flow +0 -0
  2222. /package/{lib → esm}/react-theme/__tests__/ThemeProvider.spec.js.flow +0 -0
  2223. /package/{lib → esm}/react-theme/__tests__/createTheme.spec.js.flow +0 -0
  2224. /package/{types → esm}/react-theme/createTheme.d.ts +0 -0
  2225. /package/{lib → esm}/react-theme/createTheme.js.flow +0 -0
  2226. /package/{types → esm}/react-theme/index.d.ts +0 -0
  2227. /package/{lib → esm}/react-theme/index.js.flow +0 -0
  2228. /package/{types → esm}/react-theme/types.d.ts +0 -0
  2229. /package/{lib → esm}/react-theme/types.js.flow +0 -0
  2230. /package/{types → esm}/react-theme/useTheme.d.ts +0 -0
  2231. /package/{lib → esm}/react-theme/useTheme.js.flow +0 -0
  2232. /package/{lib → esm}/react-theme/utils/__tests__/background.spec.js.flow +0 -0
  2233. /package/{lib → esm}/react-theme/utils/__tests__/colors.spec.js.flow +0 -0
  2234. /package/{lib → esm}/react-theme/utils/__tests__/contrast.spec.js.flow +0 -0
  2235. /package/{lib → esm}/react-theme/utils/__tests__/corners.spec.js.flow +0 -0
  2236. /package/{lib → esm}/react-theme/utils/__tests__/spacers.spec.js.flow +0 -0
  2237. /package/{lib → esm}/react-theme/utils/__tests__/themeProps.spec.js.flow +0 -0
  2238. /package/{lib → esm}/react-theme/utils/background.js.flow +0 -0
  2239. /package/{lib → esm}/react-theme/utils/colors.js.flow +0 -0
  2240. /package/{lib → esm}/react-theme/utils/contrast.js.flow +0 -0
  2241. /package/{lib → esm}/react-theme/utils/corners.js.flow +0 -0
  2242. /package/{lib → esm}/react-theme/utils/spacers.js.flow +0 -0
  2243. /package/{lib → esm}/react-theme/utils/themeProps.js.flow +0 -0
  2244. /package/{types → esm}/redux/_i18n/I18nActions.d.ts +0 -0
  2245. /package/{lib → esm}/redux/_i18n/I18nActions.js.flow +0 -0
  2246. /package/{types → esm}/redux/_i18n/I18nReducer.d.ts +0 -0
  2247. /package/{lib → esm}/redux/_i18n/I18nReducer.js.flow +0 -0
  2248. /package/{lib → esm}/redux/_i18n/__tests__/actions.spec.js.flow +0 -0
  2249. /package/{lib → esm}/redux/_i18n/__tests__/reducer.spec.js.flow +0 -0
  2250. /package/{types → esm}/redux/_i18n/index.d.ts +0 -0
  2251. /package/{lib → esm}/redux/_i18n/index.js.flow +0 -0
  2252. /package/{types → esm}/redux/_i18n/types.d.ts +0 -0
  2253. /package/{lib → esm}/redux/_i18n/types.js.flow +0 -0
  2254. /package/{lib → esm}/redux/_modularui/ModularUIActions.js.flow +0 -0
  2255. /package/{types → esm}/redux/_modularui/ModularUIConnector.d.ts +0 -0
  2256. /package/{lib → esm}/redux/_modularui/ModularUIConnector.js.flow +0 -0
  2257. /package/{types → esm}/redux/_modularui/ModularUIMiddleware.d.ts +0 -0
  2258. /package/{lib → esm}/redux/_modularui/ModularUIMiddleware.js.flow +0 -0
  2259. /package/{types → esm}/redux/_modularui/ModularUIReducer.d.ts +0 -0
  2260. /package/{lib → esm}/redux/_modularui/ModularUIReducer.js.flow +0 -0
  2261. /package/{types → esm}/redux/_modularui/ModularUISelectors.d.ts +0 -0
  2262. /package/{lib → esm}/redux/_modularui/ModularUISelectors.js.flow +0 -0
  2263. /package/{types → esm}/redux/_modularui/ModularUIUtils.d.ts +0 -0
  2264. /package/{lib → esm}/redux/_modularui/ModularUIUtils.js.flow +0 -0
  2265. /package/{lib → esm}/redux/_modularui/__tests__/actions.spec.js.flow +0 -0
  2266. /package/{lib → esm}/redux/_modularui/__tests__/reducer.spec.js.flow +0 -0
  2267. /package/{lib → esm}/redux/_modularui/__tests__/selectors.spec.js.flow +0 -0
  2268. /package/{types → esm}/redux/_modularui/index.d.ts +0 -0
  2269. /package/{lib → esm}/redux/_modularui/index.js.flow +0 -0
  2270. /package/{lib → esm}/redux/_modularui/types.js.flow +0 -0
  2271. /package/{types → esm}/redux/_modularui/withModularUI.d.ts +0 -0
  2272. /package/{lib → esm}/redux/_modularui/withModularUI.js.flow +0 -0
  2273. /package/{types → esm}/redux/_router/RouterActions.d.ts +0 -0
  2274. /package/{lib → esm}/redux/_router/RouterActions.js.flow +0 -0
  2275. /package/{types → esm}/redux/_router/RouterConnectors.d.ts +0 -0
  2276. /package/{lib → esm}/redux/_router/RouterConnectors.js.flow +0 -0
  2277. /package/{types → esm}/redux/_router/RouterMiddleware.d.ts +0 -0
  2278. /package/{lib → esm}/redux/_router/RouterMiddleware.js.flow +0 -0
  2279. /package/{types → esm}/redux/_router/RouterReducer.d.ts +0 -0
  2280. /package/{lib → esm}/redux/_router/RouterReducer.js.flow +0 -0
  2281. /package/{lib → esm}/redux/_router/__tests__/actions.spec.js.flow +0 -0
  2282. /package/{lib → esm}/redux/_router/__tests__/hooks.spec.js.flow +0 -0
  2283. /package/{lib → esm}/redux/_router/__tests__/middleware.spec.js.flow +0 -0
  2284. /package/{lib → esm}/redux/_router/__tests__/reducer.spec.js.flow +0 -0
  2285. /package/{types → esm}/redux/_router/index.d.ts +0 -0
  2286. /package/{lib → esm}/redux/_router/index.js.flow +0 -0
  2287. /package/{types → esm}/redux/_router/types.d.ts +0 -0
  2288. /package/{lib → esm}/redux/_router/types.js.flow +0 -0
  2289. /package/{types → esm}/redux/actions/Application.d.ts +0 -0
  2290. /package/{lib → esm}/redux/actions/Application.js.flow +0 -0
  2291. /package/{types → esm}/redux/actions/Authorization.d.ts +0 -0
  2292. /package/{lib → esm}/redux/actions/Authorization.js.flow +0 -0
  2293. /package/{types → esm}/redux/actions/Error.d.ts +0 -0
  2294. /package/{lib → esm}/redux/actions/Error.js.flow +0 -0
  2295. /package/{types → esm}/redux/actions/Form.d.ts +0 -0
  2296. /package/{lib → esm}/redux/actions/Form.js.flow +0 -0
  2297. /package/{types → esm}/redux/actions/FormAttributeSet.d.ts +0 -0
  2298. /package/{lib → esm}/redux/actions/FormAttributeSet.js.flow +0 -0
  2299. /package/{types → esm}/redux/actions/FormAttributeSetRepeatable.d.ts +0 -0
  2300. /package/{lib → esm}/redux/actions/FormAttributeSetRepeatable.js.flow +0 -0
  2301. /package/{types → esm}/redux/actions/FormAutosave.d.ts +0 -0
  2302. /package/{lib → esm}/redux/actions/FormAutosave.js.flow +0 -0
  2303. /package/{types → esm}/redux/actions/FormAutosubmit.d.ts +0 -0
  2304. /package/{lib → esm}/redux/actions/FormAutosubmit.js.flow +0 -0
  2305. /package/{types → esm}/redux/actions/FormAutoupdate.d.ts +0 -0
  2306. /package/{lib → esm}/redux/actions/FormAutoupdate.js.flow +0 -0
  2307. /package/{types → esm}/redux/actions/FormValidations.d.ts +0 -0
  2308. /package/{lib → esm}/redux/actions/FormValidations.js.flow +0 -0
  2309. /package/{types → esm}/redux/actions/Modals.d.ts +0 -0
  2310. /package/{lib → esm}/redux/actions/Modals.js.flow +0 -0
  2311. /package/{types → esm}/redux/actions/ModelCatalog.d.ts +0 -0
  2312. /package/{lib → esm}/redux/actions/ModelCatalog.js.flow +0 -0
  2313. /package/{lib → esm}/redux/actions/Notification.js.flow +0 -0
  2314. /package/{types → esm}/redux/actions/Preferences.d.ts +0 -0
  2315. /package/{lib → esm}/redux/actions/Preferences.js.flow +0 -0
  2316. /package/{types → esm}/redux/actions/ProgressIndicator.d.ts +0 -0
  2317. /package/{lib → esm}/redux/actions/ProgressIndicator.js.flow +0 -0
  2318. /package/{types → esm}/redux/actions/SignIn.d.ts +0 -0
  2319. /package/{lib → esm}/redux/actions/SignIn.js.flow +0 -0
  2320. /package/{types → esm}/redux/actions/SignOut.d.ts +0 -0
  2321. /package/{lib → esm}/redux/actions/SignOut.js.flow +0 -0
  2322. /package/{lib → esm}/redux/actions/__tests__/Application.spec.js.flow +0 -0
  2323. /package/{lib → esm}/redux/actions/__tests__/Authorization.spec.js.flow +0 -0
  2324. /package/{lib → esm}/redux/actions/__tests__/CustomErrorResponseHandler.spec.js.flow +0 -0
  2325. /package/{lib → esm}/redux/actions/__tests__/Error-server.spec.js.flow +0 -0
  2326. /package/{lib → esm}/redux/actions/__tests__/Error.spec.js.flow +0 -0
  2327. /package/{lib → esm}/redux/actions/__tests__/Form.spec.js.flow +0 -0
  2328. /package/{lib → esm}/redux/actions/__tests__/Modals.spec.js.flow +0 -0
  2329. /package/{lib → esm}/redux/actions/__tests__/Notification.spec.js.flow +0 -0
  2330. /package/{lib → esm}/redux/actions/__tests__/Preferences.spec.js.flow +0 -0
  2331. /package/{lib → esm}/redux/actions/__tests__/ProgressIndicator.spec.js.flow +0 -0
  2332. /package/{types → esm}/redux/actions/index.d.ts +0 -0
  2333. /package/{lib → esm}/redux/actions/index.js.flow +0 -0
  2334. /package/{types → esm}/redux/connectors/Application.d.ts +0 -0
  2335. /package/{lib → esm}/redux/connectors/Application.js.flow +0 -0
  2336. /package/{types → esm}/redux/connectors/Breadcrumb.d.ts +0 -0
  2337. /package/{lib → esm}/redux/connectors/Breadcrumb.js.flow +0 -0
  2338. /package/{types → esm}/redux/connectors/CaseView.d.ts +0 -0
  2339. /package/{lib → esm}/redux/connectors/CaseView.js.flow +0 -0
  2340. /package/{types → esm}/redux/connectors/ConceptDetail.d.ts +0 -0
  2341. /package/{lib → esm}/redux/connectors/ConceptDetail.js.flow +0 -0
  2342. /package/{types → esm}/redux/connectors/ContentBrowser.d.ts +0 -0
  2343. /package/{lib → esm}/redux/connectors/ContentBrowser.js.flow +0 -0
  2344. /package/{types → esm}/redux/connectors/ContentDetail.d.ts +0 -0
  2345. /package/{lib → esm}/redux/connectors/ContentDetail.js.flow +0 -0
  2346. /package/{types → esm}/redux/connectors/ContentDetailSection.d.ts +0 -0
  2347. /package/{lib → esm}/redux/connectors/ContentDetailSection.js.flow +0 -0
  2348. /package/{types → esm}/redux/connectors/Form.d.ts +0 -0
  2349. /package/{lib → esm}/redux/connectors/Form.js.flow +0 -0
  2350. /package/{types → esm}/redux/connectors/FormAttributeSet.d.ts +0 -0
  2351. /package/{lib → esm}/redux/connectors/FormAttributeSet.js.flow +0 -0
  2352. /package/{types → esm}/redux/connectors/ListDetail.d.ts +0 -0
  2353. /package/{lib → esm}/redux/connectors/ListDetail.js.flow +0 -0
  2354. /package/{types → esm}/redux/connectors/Modal.d.ts +0 -0
  2355. /package/{lib → esm}/redux/connectors/Modal.js.flow +0 -0
  2356. /package/{types → esm}/redux/connectors/ModelCatalog.d.ts +0 -0
  2357. /package/{lib → esm}/redux/connectors/ModelCatalog.js.flow +0 -0
  2358. /package/{types → esm}/redux/connectors/Notification.d.ts +0 -0
  2359. /package/{lib → esm}/redux/connectors/Notification.js.flow +0 -0
  2360. /package/{types → esm}/redux/connectors/PanelRenderer.d.ts +0 -0
  2361. /package/{lib → esm}/redux/connectors/PanelRenderer.js.flow +0 -0
  2362. /package/{types → esm}/redux/connectors/Preferences.d.ts +0 -0
  2363. /package/{lib → esm}/redux/connectors/Preferences.js.flow +0 -0
  2364. /package/{types → esm}/redux/connectors/Progress.d.ts +0 -0
  2365. /package/{lib → esm}/redux/connectors/Progress.js.flow +0 -0
  2366. /package/{types → esm}/redux/connectors/ProgressIndicator.d.ts +0 -0
  2367. /package/{lib → esm}/redux/connectors/ProgressIndicator.js.flow +0 -0
  2368. /package/{types → esm}/redux/connectors/QuickSearch.d.ts +0 -0
  2369. /package/{lib → esm}/redux/connectors/QuickSearch.js.flow +0 -0
  2370. /package/{types → esm}/redux/connectors/SignIn.d.ts +0 -0
  2371. /package/{lib → esm}/redux/connectors/SignIn.js.flow +0 -0
  2372. /package/{types → esm}/redux/connectors/SignOut.d.ts +0 -0
  2373. /package/{lib → esm}/redux/connectors/SignOut.js.flow +0 -0
  2374. /package/{types → esm}/redux/connectors/Tab.d.ts +0 -0
  2375. /package/{lib → esm}/redux/connectors/Tab.js.flow +0 -0
  2376. /package/{types → esm}/redux/connectors/index.d.ts +0 -0
  2377. /package/{lib → esm}/redux/connectors/index.js.flow +0 -0
  2378. /package/{types → esm}/redux/index.d.ts +0 -0
  2379. /package/{lib → esm}/redux/index.js.flow +0 -0
  2380. /package/{types → esm}/redux/reducers/AuthReducer.d.ts +0 -0
  2381. /package/{lib → esm}/redux/reducers/AuthReducer.js.flow +0 -0
  2382. /package/{types → esm}/redux/reducers/ErrorReducer.d.ts +0 -0
  2383. /package/{lib → esm}/redux/reducers/ErrorReducer.js.flow +0 -0
  2384. /package/{types → esm}/redux/reducers/ModalsReducer.d.ts +0 -0
  2385. /package/{lib → esm}/redux/reducers/ModalsReducer.js.flow +0 -0
  2386. /package/{types → esm}/redux/reducers/ModelCatalogReducer.d.ts +0 -0
  2387. /package/{lib → esm}/redux/reducers/ModelCatalogReducer.js.flow +0 -0
  2388. /package/{types → esm}/redux/reducers/NotificationReducer.d.ts +0 -0
  2389. /package/{lib → esm}/redux/reducers/NotificationReducer.js.flow +0 -0
  2390. /package/{types → esm}/redux/reducers/PreferencesReducer.d.ts +0 -0
  2391. /package/{lib → esm}/redux/reducers/PreferencesReducer.js.flow +0 -0
  2392. /package/{types → esm}/redux/reducers/ProgressIndicatorReducer.d.ts +0 -0
  2393. /package/{lib → esm}/redux/reducers/ProgressIndicatorReducer.js.flow +0 -0
  2394. /package/{lib → esm}/redux/reducers/__tests__/AuthReducer.spec.js.flow +0 -0
  2395. /package/{lib → esm}/redux/reducers/__tests__/ErrorReducer.spec.js.flow +0 -0
  2396. /package/{lib → esm}/redux/reducers/__tests__/ModalsReducer.spec.js.flow +0 -0
  2397. /package/{lib → esm}/redux/reducers/__tests__/ModelCatalogReducer.spec.js.flow +0 -0
  2398. /package/{lib → esm}/redux/reducers/__tests__/NotificationReducer.spec.js.flow +0 -0
  2399. /package/{lib → esm}/redux/reducers/__tests__/PreferencesReducer.spec.js.flow +0 -0
  2400. /package/{lib → esm}/redux/reducers/__tests__/ProgressIndicatorReducer.spec.js.flow +0 -0
  2401. /package/{types → esm}/redux/reducers/createReducer.d.ts +0 -0
  2402. /package/{lib → esm}/redux/reducers/createReducer.js.flow +0 -0
  2403. /package/{types → esm}/redux/reducers/index.d.ts +0 -0
  2404. /package/{lib → esm}/redux/reducers/index.js.flow +0 -0
  2405. /package/{types → esm}/redux/selectors/i18n.d.ts +0 -0
  2406. /package/{lib → esm}/redux/selectors/i18n.js.flow +0 -0
  2407. /package/{types → esm}/redux/selectors/index.d.ts +0 -0
  2408. /package/{lib → esm}/redux/selectors/index.js.flow +0 -0
  2409. /package/{types → esm}/redux/selectors/modelcatalog.d.ts +0 -0
  2410. /package/{lib → esm}/redux/selectors/modelcatalog.js.flow +0 -0
  2411. /package/{lib → esm}/redux/store/__tests__/beforeRenderHooks.spec.js.flow +0 -0
  2412. /package/{lib → esm}/redux/store/beforeRenderHooks.js.flow +0 -0
  2413. /package/{lib → esm}/redux/store/configureStore.js.flow +0 -0
  2414. /package/{types → esm}/redux/types.d.ts +0 -0
  2415. /package/{lib → esm}/redux/types.js.flow +0 -0
  2416. /package/{types → esm}/utils/browser/Cache.d.ts +0 -0
  2417. /package/{lib → esm}/utils/browser/Cache.js.flow +0 -0
  2418. /package/{types → esm}/utils/browser/Cookies.d.ts +0 -0
  2419. /package/{lib → esm}/utils/browser/Cookies.js.flow +0 -0
  2420. /package/{lib → esm}/utils/browser/__tests__/Cookies.spec.js.flow +0 -0
  2421. /package/{types → esm}/utils/datetime/DateTimeUtil.d.ts +0 -0
  2422. /package/{lib → esm}/utils/datetime/DateTimeUtil.js.flow +0 -0
  2423. /package/{lib → esm}/utils/datetime/__tests__/DateTime.spec.js.flow +0 -0
  2424. /package/{lib → esm}/utils/datetime/__tests__/DateTimeFormat.spec.js.flow +0 -0
  2425. /package/{types → esm}/utils/fetch/__mocks__/universalFetch.d.ts +0 -0
  2426. /package/{lib → esm}/utils/fetch/__mocks__/universalFetch.js.flow +0 -0
  2427. /package/{lib → esm}/utils/fetch/__tests__/xhr.spec.js.flow +0 -0
  2428. /package/{types → esm}/utils/fetch/serverFetch.d.ts +0 -0
  2429. /package/{lib → esm}/utils/fetch/serverFetch.js.flow +0 -0
  2430. /package/{types → esm}/utils/fetch/types.d.ts +0 -0
  2431. /package/{lib → esm}/utils/fetch/types.js.flow +0 -0
  2432. /package/{types → esm}/utils/fetch/universalFetch.d.ts +0 -0
  2433. /package/{lib → esm}/utils/fetch/universalFetch.js.flow +0 -0
  2434. /package/{types → esm}/utils/fetch/xhr.d.ts +0 -0
  2435. /package/{lib → esm}/utils/fetch/xhr.js.flow +0 -0
  2436. /package/{lib → esm}/utils/helpers/__tests__/checkResource.spec.js.flow +0 -0
  2437. /package/{lib → esm}/utils/helpers/__tests__/createHash.spec.js.flow +0 -0
  2438. /package/{lib → esm}/utils/helpers/__tests__/createHref.spec.js.flow +0 -0
  2439. /package/{lib → esm}/utils/helpers/__tests__/objects.spec.js.flow +0 -0
  2440. /package/{lib → esm}/utils/helpers/__tests__/sanitizeHTML.spec.js.flow +0 -0
  2441. /package/{types → esm}/utils/helpers/checkResource.d.ts +0 -0
  2442. /package/{lib → esm}/utils/helpers/checkResource.js.flow +0 -0
  2443. /package/{types → esm}/utils/helpers/createHash.d.ts +0 -0
  2444. /package/{lib → esm}/utils/helpers/createHash.js.flow +0 -0
  2445. /package/{types → esm}/utils/helpers/createHref.d.ts +0 -0
  2446. /package/{lib → esm}/utils/helpers/createHref.js.flow +0 -0
  2447. /package/{types → esm}/utils/helpers/createUUID.d.ts +0 -0
  2448. /package/{lib → esm}/utils/helpers/createUUID.js.flow +0 -0
  2449. /package/{types → esm}/utils/helpers/index.d.ts +0 -0
  2450. /package/{lib → esm}/utils/helpers/index.js.flow +0 -0
  2451. /package/{types → esm}/utils/helpers/objects.d.ts +0 -0
  2452. /package/{lib → esm}/utils/helpers/objects.js.flow +0 -0
  2453. /package/{types → esm}/utils/helpers/repositoryResource.d.ts +0 -0
  2454. /package/{lib → esm}/utils/helpers/repositoryResource.js.flow +0 -0
  2455. /package/{types → esm}/utils/helpers/sanitizeHtml.d.ts +0 -0
  2456. /package/{lib → esm}/utils/helpers/sanitizeHtml.js.flow +0 -0
  2457. /package/{types → esm}/utils/helpers/text.d.ts +0 -0
  2458. /package/{lib → esm}/utils/helpers/text.js.flow +0 -0
  2459. /package/{types → esm}/utils/index.d.ts +0 -0
  2460. /package/{lib → esm}/utils/index.js.flow +0 -0
  2461. /package/{types → esm}/utils/number/DecimalFormat.d.ts +0 -0
  2462. /package/{lib → esm}/utils/number/DecimalFormat.js.flow +0 -0
  2463. /package/{lib → esm}/utils/number/__tests__/formatValue.spec.js.flow +0 -0
  2464. /package/{lib → esm}/utils/number/__tests__/parseNumbers.spec.js.flow +0 -0
  2465. /package/{types → esm}/utils/number/formatValue.d.ts +0 -0
  2466. /package/{lib → esm}/utils/number/formatValue.js.flow +0 -0
  2467. /package/{types → esm}/utils/number/parseNumbers.d.ts +0 -0
  2468. /package/{lib → esm}/utils/number/parseNumbers.js.flow +0 -0
@@ -1 +0,0 @@
1
- {"version":3,"file":"CompositeAttributeModel.js","names":["_AttributeModel","_interopRequireDefault","require","_CompositeAttributeChildCollection","_ConstraintCollection","_RangeConstraint","_MandatoryRangeConstraint","_constants","_exceptions","_NumberAttributeModel","_DatetimeAttributeModel","CompositeAttributeModel","AttributeModel","constructor","data","contributions","modelOptions","_defineProperty2","default","_children","CompositeAttributeChildCollection","create","setChildrenOptionality","isApplicableModel","type","_includes","call","getInitialChildModelLinks","children","setChildModels","models","errors","key","isRange","includes","isRangeAttribute","attribute","NumberAttributeModel","DatetimeAttributeModel","start","all","end","size","getInputValue","hasValue","some","child","constraintCollection","constraints","ConstraintCollection","add","_serverConstraints","addConstraints","setUseClientsideValidation","enabled","_useClientsideValidation","forEach","validate","value","useClientsideValidation","_isValid","startAttribute","endAttribute","allChildsEntered","every","RangeConstraint","mandatory","allChildsOptional","MandatoryRangeConstraint","isValid","hasServerErrors","errorCollection","serverErrors","length","hasErrors","hasItems","reset","getChildByAttribute","_context","_find","equals","getChildByKey","_context2","mergeAttribute","oldAttribute","concept","withChildAttribute","update","changedAttribute","IllegalArgumentException","updateLastModification","updateByAttribute","otherAttribute","otherChild","console","error","childrenAreOptional","configuredMandatory","readonly","readonlyvalue","initvalue","getFormData","name","getValue","getChildrenIds","values","Array","isArray","_map","val","_id","isResult","_isResult","indicateContentConfiguration","contentConfiguration","parentKey","readonlyWidth","ATTRIBUTE_WIDTH","LARGE","EXTRA_LARGE","MEDIUM","_default","exports"],"sources":["../../../src/models/attributes/CompositeAttributeModel.js"],"sourcesContent":["// @flow\nimport AttributeModel from \"./AttributeModel\";\n\nimport CompositeAttributeChildCollection from \"./CompositeAttributeChildCollection\";\nimport ConstraintCollection from \"./input-constraints/ConstraintCollection\";\nimport RangeConstraint from \"./input-constraints/RangeConstraint\";\nimport MandatoryRangeConstraint from \"./input-constraints/MandatoryRangeConstraint\";\n\nimport { ATTRIBUTE_WIDTH } from \"../../constants\";\nimport { IllegalArgumentException } from \"../../exceptions\";\n\nimport NumberAttributeModel from \"./NumberAttributeModel\";\nimport DatetimeAttributeModel from \"./DatetimeAttributeModel\";\n\nimport type { ModularUIModel, AttributeType, ModelOptions } from \"../types\";\nimport type ContentConfiguration from \"../contentconfiguration/ContentConfiguration\";\nimport type LinkModel from \"../links/LinkModel\";\nimport type ErrorResponse from \"../error/ErrorResponse\";\n\n/**\n */\nclass CompositeAttributeModel extends AttributeModel {\n _children: CompositeAttributeChildCollection;\n\n /**\n */\n constructor(\n data: Object,\n contributions: Object,\n modelOptions?: ModelOptions,\n ) {\n super(data, contributions, modelOptions);\n\n this._children = CompositeAttributeChildCollection.create(\n data,\n contributions,\n modelOptions,\n );\n\n this.setChildrenOptionality();\n }\n\n /**\n */\n static isApplicableModel(contributions: Object): boolean {\n const type = contributions?.type;\n return type && (type === \"composite\" || type.includes(\"range\"));\n }\n\n /**\n */\n getInitialChildModelLinks(): Array<LinkModel> {\n return this.children.getInitialChildModelLinks();\n }\n\n /**\n */\n setChildModels(models: Array<ModularUIModel>, errors: Array<ErrorResponse>) {\n this.children.setChildModels(models, errors);\n }\n\n /**\n */\n get type(): string {\n // temp fix for results and given answers on list result detail panel\n if (this.key === \"results\" || this.key === \"givenAnswers\") {\n return \"composite\";\n }\n\n return this.isRange ? \"range\" : \"composite\";\n }\n\n /**\n */\n get isRange(): boolean {\n return this.contributions?.type?.includes(\"range\");\n }\n\n /**\n */\n get children(): CompositeAttributeChildCollection {\n return this._children;\n }\n\n /**\n */\n set children(children: CompositeAttributeChildCollection) {\n this._children = children;\n }\n\n /**\n */\n isRangeAttribute(attribute: AttributeType): boolean {\n return (\n attribute instanceof NumberAttributeModel ||\n attribute instanceof DatetimeAttributeModel\n );\n }\n\n /**\n */\n get start(): AttributeType | null {\n return this.children.all[0];\n }\n\n /**\n */\n get end(): AttributeType {\n return this.children.all[this.children.size - 1];\n }\n\n /**\n * Get input value of attribute\n */\n getInputValue(): string {\n return this.children.getInputValue();\n }\n\n /**\n * Check if at least one child has value\n */\n hasValue(): boolean {\n return this.children.some((child) => child.hasValue());\n }\n\n /**\n */\n get constraintCollection(): ConstraintCollection {\n const constraints = new ConstraintCollection();\n\n constraints.add(this._serverConstraints);\n constraints.add(this.addConstraints());\n\n return constraints;\n }\n\n /**\n * Used to programmatically overwrite the setting USE_CLIENTSIDE_VALIDATION\n */\n setUseClientsideValidation(enabled: boolean) {\n super._useClientsideValidation = enabled;\n\n this.children.all.forEach((child) =>\n child.setUseClientsideValidation(enabled),\n );\n }\n\n /**\n * Validate input\n */\n // eslint-disable-next-line no-unused-vars\n validate(value: string): boolean {\n // when client side validation is disabled, this attribute is always valid\n if (!this.useClientsideValidation()) {\n return true;\n }\n\n this._isValid = this.children.validate();\n\n if (this._isValid) {\n this._isValid = this.constraintCollection.validate();\n }\n\n return this._isValid;\n }\n\n /**\n * Add Date constraints for attribute\n */\n addConstraints(): ConstraintCollection {\n const constraints = new ConstraintCollection();\n\n const startAttribute = this.start;\n const endAttribute = this.end;\n if (this.isRange && startAttribute != null && endAttribute != null) {\n const allChildsEntered = this.children.every((child) => child.hasValue());\n if (allChildsEntered) {\n constraints.add(new RangeConstraint(startAttribute, endAttribute));\n }\n }\n\n if (this.isRange && this.mandatory && startAttribute !== null) {\n const allChildsOptional = this.children.every(\n (child) => !child.mandatory,\n );\n if (allChildsOptional) {\n constraints.add(\n new MandatoryRangeConstraint(startAttribute.type, this.children),\n );\n }\n }\n\n return constraints;\n }\n\n /**\n * Indicates if attribute input is valid\n */\n get isValid(): boolean {\n return this.validate(\"\");\n }\n\n /**\n */\n hasServerErrors(): boolean {\n return (\n this.errorCollection.serverErrors.length > 0 ||\n this.children.some((child) => child.hasServerErrors())\n );\n }\n\n /**\n */\n hasErrors(): boolean {\n return (\n this.errorCollection.hasItems ||\n this.children.some((child) => child.hasErrors())\n );\n }\n\n /**\n * Reset attribute to empty string\n */\n reset() {\n this.children.reset();\n }\n\n /**\n */\n getChildByAttribute(attribute: AttributeType): ?AttributeType {\n return this.children.find((child) => {\n if (child.equals(attribute)) {\n return true;\n } else if (child instanceof CompositeAttributeModel) {\n return child.getChildByAttribute(attribute);\n }\n\n return false;\n });\n }\n\n /**\n */\n getChildByKey(key: string): ?AttributeType {\n return (\n this.children.find((child) => {\n if (child.key === key) {\n return true;\n } else if (child instanceof CompositeAttributeModel) {\n return child.getChildByKey(key);\n }\n\n return false;\n }) || null\n );\n }\n\n /**\n */\n mergeAttribute(oldAttribute: AttributeType) {\n this.concept = oldAttribute.concept;\n\n this.children.forEach((child) => {\n if (oldAttribute instanceof CompositeAttributeModel) {\n const withChildAttribute = oldAttribute.getChildByKey(child.key);\n if (withChildAttribute) {\n child.mergeAttribute(withChildAttribute);\n }\n }\n });\n }\n\n /**\n */\n update(\n value: string,\n changedAttribute: ?AttributeType,\n ): CompositeAttributeModel {\n if (!changedAttribute) {\n throw new IllegalArgumentException(\n \"Composite attribute needs changed attribute on update call\",\n );\n }\n\n this.updateLastModification();\n\n this.children.forEach((child) => {\n if (child instanceof CompositeAttributeModel) {\n child.update(value, changedAttribute);\n } else if (child.equals(changedAttribute)) {\n child.update(value);\n }\n });\n\n this.setChildrenOptionality();\n\n this.validate(value);\n\n return this;\n }\n\n /**\n */\n updateByAttribute(otherAttribute: AttributeType): void {\n if (otherAttribute instanceof CompositeAttributeModel) {\n otherAttribute.children.forEach((otherChild) => {\n const child = this.getChildByAttribute(otherChild);\n if (child) {\n child.updateByAttribute(otherChild);\n }\n });\n } else {\n console.error(\n `update of composite attribute with ${otherAttribute.type} not supported`,\n );\n }\n }\n\n /**\n */\n setChildrenOptionality() {\n const childrenAreOptional =\n !this.mandatory && this.children.every((child) => child.value === null);\n\n this.children.forEach((child) => {\n child.mandatory =\n childrenAreOptional || !child.configuredMandatory\n ? false\n : child.configuredMandatory;\n });\n }\n\n /**\n */\n get readonly(): boolean {\n return super.readonly || this.children.every((child) => child.readonly);\n }\n\n /**\n */\n set readonly(readonly: boolean) {\n super.readonly = readonly;\n }\n\n /**\n */\n get readonlyvalue(): string {\n return this.children.readonlyvalue;\n }\n\n /**\n */\n get initvalue(): any {\n return this.children.initvalue;\n }\n\n /**\n */\n getFormData(): { [string]: any } | null {\n return { [this.name]: this.value };\n }\n\n /**\n */\n getValue(): any {\n return this.children.value;\n }\n\n /**\n */\n getChildrenIds(): Array<string> {\n const values = this.data.value;\n if (Array.isArray(values)) {\n return values.map((val) => val._id);\n } else if (values != null) {\n return [values._id];\n }\n return [];\n }\n\n /**\n */\n get isResult(): boolean {\n return this._isResult;\n }\n\n /**\n */\n set isResult(isResult: boolean) {\n this._isResult = isResult;\n\n this.children.forEach((child) => {\n child.isResult = isResult;\n });\n }\n\n /**\n */\n indicateContentConfiguration(contentConfiguration: ContentConfiguration) {\n if (contentConfiguration) {\n this.children.forEach((child) => {\n child.indicateContentConfiguration(contentConfiguration);\n });\n }\n }\n\n /**\n */\n equals(otherAttribute: AttributeType): boolean {\n return (\n (this.key === otherAttribute.key &&\n this.parentKey === otherAttribute.parentKey) ||\n this.children.some(\n //$FlowFixMe[method-unbinding]\n (child) => child.equals && child.equals(otherAttribute),\n )\n );\n }\n\n /**\n */\n get readonlyWidth(): $Keys<typeof ATTRIBUTE_WIDTH> {\n if (this.type === \"composite\") {\n return ATTRIBUTE_WIDTH.LARGE;\n }\n\n // range\n switch (this.start?.type) {\n case \"datetime\":\n return ATTRIBUTE_WIDTH.LARGE;\n case \"timestamp\":\n return ATTRIBUTE_WIDTH.EXTRA_LARGE;\n default:\n return ATTRIBUTE_WIDTH.MEDIUM;\n }\n }\n}\n\nexport default CompositeAttributeModel;\n"],"mappings":"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","ignoreList":[]}
@@ -1,465 +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 _includes = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/includes"));
9
- var _trim = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/trim"));
10
- var _set = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/set"));
11
- var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
12
- var _objects = require("../../utils/helpers/objects");
13
- var _DateTimeUtil = require("../../utils/datetime/DateTimeUtil");
14
- var _StringAttributeModel = _interopRequireDefault(require("./StringAttributeModel"));
15
- var _ConstraintCollection = _interopRequireDefault(require("./input-constraints/ConstraintCollection"));
16
- var _DateTimeDateFormatConstraint = _interopRequireDefault(require("./input-constraints/DateTimeDateFormatConstraint"));
17
- var _DateTimeTimeFormatConstraint = _interopRequireDefault(require("./input-constraints/DateTimeTimeFormatConstraint"));
18
- var _DatetimeFormatConstraint = _interopRequireDefault(require("./input-constraints/DatetimeFormatConstraint"));
19
- var _DateBoundaryConstraint = _interopRequireDefault(require("./input-constraints/DateBoundaryConstraint"));
20
- var _constants = require("../../constants");
21
- /**
22
- */
23
- class DatetimeAttributeModel extends _StringAttributeModel.default {
24
- /**
25
- */
26
- constructor(attribute, attributeContributions, modelOptions) {
27
- super(attribute, attributeContributions, modelOptions);
28
- (0, _defineProperty2.default)(this, "_dateInputFormat", void 0);
29
- (0, _defineProperty2.default)(this, "_timeInputFormat", void 0);
30
- this.updateInitValue();
31
- }
32
-
33
- /**
34
- */
35
- static isApplicableModel(contributions) {
36
- var _context;
37
- return (0, _includes.default)(_context = ["date", "time", "datetime", "timestamp"]).call(_context, contributions.type);
38
- }
39
-
40
- /**
41
- */
42
- get formatUtil() {
43
- switch (this.type) {
44
- case "time":
45
- return _DateTimeUtil.TimeUtil;
46
- case "timestamp":
47
- return _DateTimeUtil.TimestampUtil;
48
- case "datetime":
49
- return _DateTimeUtil.DateTimeUtil;
50
- default:
51
- return _DateTimeUtil.DateUtil;
52
- }
53
- }
54
-
55
- /**
56
- */
57
- getInitValue() {
58
- let value = this.data.value;
59
- if (value != null) {
60
- if (this.type === "time" && value.length === 5) {
61
- value = `${value}:00`;
62
- }
63
-
64
- // handle old datetime values, which contained ms
65
- if (this.type === "datetime" && (0, _includes.default)(value).call(value, ".")) {
66
- value = _DateTimeUtil.TimestampUtil.toFormat(value, _DateTimeUtil.DateTimeUtil.getIsoFormat());
67
- } else {
68
- value = this.formatUtil.toISO(value);
69
- }
70
- if (this.hasTime) {
71
- value = this.getTimeValue(value);
72
- }
73
- }
74
- return value;
75
- }
76
-
77
- /**
78
- */
79
- getTimeValue(value) {
80
- var _context2, _context3, _context4, _context5;
81
- let timeValue = value;
82
- if (!(0, _includes.default)(_context2 = this.timeInputFormat.toLowerCase()).call(_context2, "h")) {
83
- timeValue = this.formatUtil.setHour(value, 0);
84
- }
85
- if (!(0, _includes.default)(_context3 = this.timeInputFormat).call(_context3, "m")) {
86
- timeValue = this.formatUtil.setMinute(value, 0);
87
- }
88
- if (!(0, _includes.default)(_context4 = this.timeInputFormat).call(_context4, "s")) {
89
- timeValue = this.formatUtil.setSecond(value, 0);
90
- }
91
- if (this.type === "timestamp" && !(0, _includes.default)(_context5 = this.timeInputFormat).call(_context5, "S")) {
92
- timeValue = this.formatUtil.setMilliseconds(value, 0);
93
- }
94
- if ((0, _constants.isIncludeTimeOffsetInDateTimes)()) {
95
- // https://github.com/date-fns/date-fns/issues/3579
96
- const oldOffset = this.formatUtil.toFormat(value, _constants.DATETIME_OFFSET_FORMAT);
97
- const newOffset = this.formatUtil.toFormat(timeValue, _constants.DATETIME_OFFSET_FORMAT);
98
- timeValue = timeValue.replace(newOffset, oldOffset);
99
- }
100
- return timeValue;
101
- }
102
-
103
- /**
104
- * Set time in the correct value based on available elements in the time format
105
- */
106
- updateInitValue() {
107
- const value = this.getInitValue();
108
- if (value != null) {
109
- this._initvalue = value;
110
- this._inputvalue = this.getInitialInputValue(value);
111
- this._value = value;
112
- }
113
- }
114
-
115
- /**
116
- * Get initial user input value
117
- */
118
- getInitialInputValue(value) {
119
- if (!value) {
120
- return "";
121
- }
122
- let initValue = value;
123
- if (this.type === "time" && value.length === 5) {
124
- initValue = `${value}:00`;
125
- }
126
- return this.formatUtil.toFormat(initValue, this.inputFormat);
127
- }
128
-
129
- /**
130
- * Set type to date
131
- */
132
- get type() {
133
- return this.getContribution("type", "date");
134
- }
135
-
136
- /**
137
- * Returns the value as entered by the user. This can differ from the internal iso value that is stored
138
- */
139
- getInputValue() {
140
- return this._inputvalue ? this._inputvalue.toString() : "";
141
- }
142
-
143
- /**
144
- * Get input value
145
- */
146
- get inputvalue() {
147
- return this.getInputValue();
148
- }
149
-
150
- /**
151
- * Sets the input value to the value entered by the user
152
- */
153
- set inputvalue(value) {
154
- this.validate(value);
155
- this._inputvalue = value;
156
- this.value = value !== null && value !== "" ? this.formatUtil.toISO(value, this.inputFormat) : null;
157
- }
158
-
159
- /**
160
- * Get date format
161
- */
162
- get format() {
163
- const format = this.getContribution("format", "");
164
- return this.formatUtil.convertFormat(format);
165
- }
166
-
167
- /**
168
- */
169
- get hasDate() {
170
- return this.type === "date" || this.type === "datetime" || this.type === "timestamp";
171
- }
172
-
173
- /**
174
- */
175
- get hasTime() {
176
- return this.type === "time" || this.type === "datetime" || this.type === "timestamp";
177
- }
178
-
179
- /**
180
- */
181
- get formatLabel() {
182
- switch (this.type) {
183
- case "date":
184
- return this.dateInputFormat.toLowerCase();
185
- case "time":
186
- return this.timeInputFormat.toLowerCase();
187
- default:
188
- return this.format.toLowerCase();
189
- }
190
- }
191
-
192
- /**
193
- */
194
- get inputFormatWithoutOffset() {
195
- if (this.hasDate && this.hasTime) {
196
- var _context6;
197
- return (0, _trim.default)(_context6 = `${this.dateInputFormat} ${this.timeInputFormat}`).call(_context6);
198
- }
199
- if (this.hasDate) {
200
- return this.dateInputFormat;
201
- }
202
- if (this.hasTime) {
203
- return this.timeInputFormat;
204
- }
205
- return "";
206
- }
207
-
208
- /**
209
- */
210
- get inputFormat() {
211
- if ((0, _constants.isIncludeTimeOffsetInDateTimes)() && this.dateInputFormat !== "" && this.timeInputFormat !== "") {
212
- return `${this.inputFormatWithoutOffset} ${_constants.DATETIME_OFFSET_FORMAT}`;
213
- }
214
- return this.inputFormatWithoutOffset;
215
- }
216
-
217
- /**
218
- */
219
- extractDateInputFormat() {
220
- const dateEraChars = new _set.default("yMLdQDEewGu");
221
- const timeOffsetChars = new _set.default("HhaKmsSZzXxO");
222
- const format = this.format;
223
- let inputFormat = "";
224
- let isInQuotes = false;
225
- let keep = false;
226
- for (let i = 0; i < format.length; i++) {
227
- const prevChar = i > 0 ? format[i - 1] : "";
228
- const nextChar = i < format.length ? format[i + 1] : "";
229
- const char = format[i];
230
- if (char === "'") {
231
- isInQuotes = prevChar === "'" || nextChar === "'" || !isInQuotes;
232
- } else if (!isInQuotes && dateEraChars.has(char)) {
233
- keep = true;
234
- } else if (!isInQuotes && timeOffsetChars.has(char)) {
235
- keep = false;
236
- }
237
- if (keep) {
238
- inputFormat += char;
239
- }
240
- }
241
- return (0, _trim.default)(inputFormat).call(inputFormat);
242
- }
243
-
244
- /**
245
- */
246
- get dateInputFormat() {
247
- if (!this.hasDate) {
248
- return "";
249
- }
250
- if (!this._dateInputFormat) {
251
- this._dateInputFormat = this.extractDateInputFormat();
252
- }
253
- return this._dateInputFormat;
254
- }
255
-
256
- /**
257
- */
258
- get dateReadonlyFormat() {
259
- var _context7;
260
- if (!this.hasDate) {
261
- return "";
262
- }
263
- return this.hasTime ? (0, _trim.default)(_context7 = this.format.replace(this.timeInputFormat, "")).call(_context7) : this.format;
264
- }
265
-
266
- /**
267
- * return attribute placeholder or return formatlabel without time input format from contributions
268
- */
269
- get placeholder() {
270
- if (this._placeholder !== "") {
271
- return this._placeholder;
272
- }
273
- const formatLabel = this.getContribution("formatlabel", "");
274
- if (this.hasDate && this.hasTime && (0, _includes.default)(formatLabel).call(formatLabel, " ")) {
275
- // return first part of formatlabel to keep placeholder matching date input
276
- return formatLabel.split(" ")[0];
277
- }
278
- return formatLabel;
279
- }
280
-
281
- /**
282
- * Set placeholder text
283
- */
284
- set placeholder(placeholder) {
285
- this._placeholder = placeholder;
286
- }
287
-
288
- /**
289
- */
290
- get timeInputFormat() {
291
- if (!this.hasTime) {
292
- return "";
293
- }
294
- if (this._timeInputFormat) {
295
- return this._timeInputFormat;
296
- }
297
- const format = this.format;
298
- let timeFormatParts = [];
299
- if ((0, _includes.default)(format).call(format, "H")) {
300
- timeFormatParts.push("HH");
301
- } else if ((0, _includes.default)(format).call(format, "h")) {
302
- timeFormatParts.push("hh");
303
- }
304
- if ((0, _includes.default)(format).call(format, "m")) {
305
- timeFormatParts.push("mm");
306
- }
307
- if ((0, _includes.default)(format).call(format, "s")) {
308
- timeFormatParts.push("ss");
309
- }
310
- let timeFormat = timeFormatParts.join(":");
311
- if ((0, _includes.default)(format).call(format, "S")) {
312
- timeFormat = `${timeFormat}.SSS`;
313
- }
314
- if ((0, _includes.default)(format).call(format, "a")) {
315
- timeFormat = `${timeFormat} a`;
316
- }
317
- this._timeInputFormat = timeFormat;
318
- return this._timeInputFormat;
319
- }
320
-
321
- /**
322
- */
323
- get timeReadonlyFormat() {
324
- if (!this.hasTime) {
325
- return "";
326
- }
327
- return this.timeInputFormat;
328
- }
329
-
330
- /**
331
- */
332
- get dateInputValue() {
333
- return typeof this.value === "string" && this.dateInputFormat !== "" ? this.formatUtil.toFormat(this.value, this.dateInputFormat) : "";
334
- }
335
-
336
- /**
337
- */
338
- get timeInputValue() {
339
- return typeof this.value === "string" && this.timeInputFormat !== "" ? this.formatUtil.toFormat(this.value, this.timeInputFormat) : "";
340
- }
341
-
342
- /**
343
- * format value in readonly rendering
344
- */
345
- formatValue(value) {
346
- if (value == null || value.toString() === "") {
347
- return "";
348
- }
349
-
350
- // when the value is exactly an iso date, render as date
351
- if ((this.type === "datetime" || this.type === "timestamp") && _DateTimeUtil.DateUtil.hasFormat(value, _constants.ISO_DATE_FORMAT)) {
352
- return _DateTimeUtil.DateUtil.toFormat(value, this.dateReadonlyFormat);
353
- }
354
- return this.formatUtil.toFormat(value, this.format);
355
- }
356
-
357
- /**
358
- * Retrieve readonly value, the date in the configurated format
359
- */
360
- get readonlyvalue() {
361
- if (typeof this.value === "string") {
362
- return this.formatValue(this.value.toString());
363
- }
364
- return "";
365
- }
366
-
367
- /**
368
- */
369
- get isAmbiguous() {
370
- if (typeof this.value === "string") {
371
- return this.formatUtil.isAmbiguous(this.value);
372
- }
373
- return false;
374
- }
375
-
376
- /**
377
- */
378
- get offset() {
379
- if (typeof this.value === "string") {
380
- return this.formatUtil.getOffset(this.value);
381
- }
382
- return null;
383
- }
384
-
385
- /**
386
- * Get minimum date
387
- */
388
- get mindate() {
389
- return this.getContribution("mindate");
390
- }
391
-
392
- /**
393
- * Get maximum date
394
- */
395
- get maxdate() {
396
- return this.getContribution("maxdate");
397
- }
398
-
399
- /**
400
- * Registers an error that was received from a server response
401
- */
402
- addServerError(error) {
403
- const {
404
- id,
405
- message,
406
- properties,
407
- layouthint
408
- } = error;
409
- if (properties && (0, _objects.has)(properties, "format") && this.formatLabel) {
410
- properties.format = this.formatLabel;
411
- }
412
- this._errorCollection.addServerError(id, message, properties, layouthint);
413
- }
414
-
415
- /**
416
- */
417
- getFormatConstraint() {
418
- switch (this.type) {
419
- case "date":
420
- return new _DateTimeDateFormatConstraint.default(this.dateInputFormat, this.formatLabel);
421
- case "time":
422
- return new _DateTimeTimeFormatConstraint.default(this.timeInputFormat, this.formatLabel);
423
- default:
424
- return new _DatetimeFormatConstraint.default(this.type, this.inputFormat, this.formatLabel);
425
- }
426
- }
427
-
428
- /**
429
- * Add Date constraints for attribute
430
- */
431
- addConstraints() {
432
- const constraints = new _ConstraintCollection.default();
433
- constraints.add(this.getFormatConstraint());
434
- if (this.mindate || this.maxdate) {
435
- constraints.add(new _DateBoundaryConstraint.default(this.type, this.mindate, this.maxdate, this.inputFormat));
436
- }
437
- return constraints;
438
- }
439
-
440
- /**
441
- */
442
- get readonlyWidth() {
443
- if (this.type === "date" || this.type === "time") {
444
- return _constants.ATTRIBUTE_WIDTH.SMALL;
445
- }
446
- return _constants.ATTRIBUTE_WIDTH.MEDIUM;
447
- }
448
-
449
- /**
450
- */
451
- updateByAttribute(otherAttribute) {
452
- this.reset();
453
- if (otherAttribute instanceof DatetimeAttributeModel) {
454
- const otherValue = otherAttribute.value;
455
- if (otherValue != null) {
456
- const inputValue = this.formatUtil.toFormat(otherValue, this.inputFormat);
457
- this.update(inputValue);
458
- }
459
- } else {
460
- console.error(`update of datetime attribute with ${otherAttribute.type} not supported`);
461
- }
462
- }
463
- }
464
- var _default = exports.default = DatetimeAttributeModel;
465
- //# sourceMappingURL=DatetimeAttributeModel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"DatetimeAttributeModel.js","names":["_objects","require","_DateTimeUtil","_StringAttributeModel","_interopRequireDefault","_ConstraintCollection","_DateTimeDateFormatConstraint","_DateTimeTimeFormatConstraint","_DatetimeFormatConstraint","_DateBoundaryConstraint","_constants","DatetimeAttributeModel","StringAttributeModel","constructor","attribute","attributeContributions","modelOptions","_defineProperty2","default","updateInitValue","isApplicableModel","contributions","_context","_includes","call","type","formatUtil","TimeUtil","TimestampUtil","DateTimeUtil","DateUtil","getInitValue","value","data","length","toFormat","getIsoFormat","toISO","hasTime","getTimeValue","_context2","_context3","_context4","_context5","timeValue","timeInputFormat","toLowerCase","setHour","setMinute","setSecond","setMilliseconds","isIncludeTimeOffsetInDateTimes","oldOffset","DATETIME_OFFSET_FORMAT","newOffset","replace","_initvalue","_inputvalue","getInitialInputValue","_value","initValue","inputFormat","getContribution","getInputValue","toString","inputvalue","validate","format","convertFormat","hasDate","formatLabel","dateInputFormat","inputFormatWithoutOffset","_context6","_trim","extractDateInputFormat","dateEraChars","_set","timeOffsetChars","isInQuotes","keep","i","prevChar","nextChar","char","has","_dateInputFormat","dateReadonlyFormat","_context7","placeholder","_placeholder","split","_timeInputFormat","timeFormatParts","push","timeFormat","join","timeReadonlyFormat","dateInputValue","timeInputValue","formatValue","hasFormat","ISO_DATE_FORMAT","readonlyvalue","isAmbiguous","offset","getOffset","mindate","maxdate","addServerError","error","id","message","properties","layouthint","_errorCollection","getFormatConstraint","DateTimeDateFormatConstraint","DateTimeTimeFormatConstraint","DatetimeFormatConstraint","addConstraints","constraints","ConstraintCollection","add","DateBoundaryConstraint","readonlyWidth","ATTRIBUTE_WIDTH","SMALL","MEDIUM","updateByAttribute","otherAttribute","reset","otherValue","inputValue","update","console","_default","exports"],"sources":["../../../src/models/attributes/DatetimeAttributeModel.js"],"sourcesContent":["// @flow\nimport { has } from \"../../utils/helpers/objects\";\n\nimport {\n DateUtil,\n DateTimeUtil,\n TimeUtil,\n TimestampUtil,\n} from \"../../utils/datetime/DateTimeUtil\";\n\nimport StringAttributeModel from \"./StringAttributeModel\";\n\nimport ConstraintCollection from \"./input-constraints/ConstraintCollection\";\nimport DateTimeDateFormatConstraint from \"./input-constraints/DateTimeDateFormatConstraint\";\nimport DateTimeTimeFormatConstraint from \"./input-constraints/DateTimeTimeFormatConstraint\";\nimport DatetimeFormatConstraint from \"./input-constraints/DatetimeFormatConstraint\";\nimport DateBoundaryConstraint from \"./input-constraints/DateBoundaryConstraint\";\n\nimport {\n isIncludeTimeOffsetInDateTimes,\n ATTRIBUTE_WIDTH,\n DATETIME_OFFSET_FORMAT,\n ISO_DATE_FORMAT,\n} from \"../../constants\";\n\nimport type {\n FormErrorAnchor,\n IConstraintModel,\n AttributeType,\n ModelOptions,\n} from \"../types\";\nimport type { OffsetInfo } from \"../../utils/datetime/DateTimeUtil\";\n\n/**\n */\nclass DatetimeAttributeModel extends StringAttributeModel {\n _dateInputFormat: ?string;\n _timeInputFormat: ?string;\n\n /**\n */\n constructor(\n attribute: Object,\n attributeContributions: Object,\n modelOptions?: ModelOptions,\n ) {\n super(attribute, attributeContributions, modelOptions);\n\n this.updateInitValue();\n }\n\n /**\n */\n static isApplicableModel(contributions: Object): boolean {\n return [\"date\", \"time\", \"datetime\", \"timestamp\"].includes(\n contributions.type,\n );\n }\n\n /**\n */\n get formatUtil():\n | typeof TimeUtil\n | typeof TimestampUtil\n | typeof DateTimeUtil\n | typeof DateUtil {\n switch (this.type) {\n case \"time\":\n return TimeUtil;\n case \"timestamp\":\n return TimestampUtil;\n case \"datetime\":\n return DateTimeUtil;\n default:\n return DateUtil;\n }\n }\n\n /**\n */\n getInitValue(): string | null {\n let value = this.data.value;\n if (value != null) {\n if (this.type === \"time\" && value.length === 5) {\n value = `${value}:00`;\n }\n\n // handle old datetime values, which contained ms\n if (this.type === \"datetime\" && value.includes(\".\")) {\n value = TimestampUtil.toFormat(value, DateTimeUtil.getIsoFormat());\n } else {\n value = this.formatUtil.toISO(value);\n }\n\n if (this.hasTime) {\n value = this.getTimeValue(value);\n }\n }\n\n return value;\n }\n\n /**\n */\n getTimeValue(value: string): string {\n let timeValue = value;\n if (!this.timeInputFormat.toLowerCase().includes(\"h\")) {\n timeValue = this.formatUtil.setHour(value, 0);\n }\n if (!this.timeInputFormat.includes(\"m\")) {\n timeValue = this.formatUtil.setMinute(value, 0);\n }\n if (!this.timeInputFormat.includes(\"s\")) {\n timeValue = this.formatUtil.setSecond(value, 0);\n }\n if (this.type === \"timestamp\" && !this.timeInputFormat.includes(\"S\")) {\n timeValue = this.formatUtil.setMilliseconds(value, 0);\n }\n\n if (isIncludeTimeOffsetInDateTimes()) {\n // https://github.com/date-fns/date-fns/issues/3579\n const oldOffset = this.formatUtil.toFormat(value, DATETIME_OFFSET_FORMAT);\n const newOffset = this.formatUtil.toFormat(\n timeValue,\n DATETIME_OFFSET_FORMAT,\n );\n timeValue = timeValue.replace(newOffset, oldOffset);\n }\n\n return timeValue;\n }\n\n /**\n * Set time in the correct value based on available elements in the time format\n */\n updateInitValue() {\n const value = this.getInitValue();\n if (value != null) {\n this._initvalue = value;\n this._inputvalue = this.getInitialInputValue(value);\n this._value = value;\n }\n }\n\n /**\n * Get initial user input value\n */\n getInitialInputValue(value?: string): string {\n if (!value) {\n return \"\";\n }\n\n let initValue = value;\n if (this.type === \"time\" && value.length === 5) {\n initValue = `${value}:00`;\n }\n\n return this.formatUtil.toFormat(initValue, this.inputFormat);\n }\n\n /**\n * Set type to date\n */\n get type(): string {\n return this.getContribution(\"type\", \"date\");\n }\n\n /**\n * Returns the value as entered by the user. This can differ from the internal iso value that is stored\n */\n getInputValue(): string {\n return this._inputvalue ? this._inputvalue.toString() : \"\";\n }\n\n /**\n * Get input value\n */\n get inputvalue(): string {\n return this.getInputValue();\n }\n\n /**\n * Sets the input value to the value entered by the user\n */\n set inputvalue(value: string) {\n this.validate(value);\n\n this._inputvalue = value;\n\n this.value =\n value !== null && value !== \"\"\n ? this.formatUtil.toISO(value, this.inputFormat)\n : null;\n }\n\n /**\n * Get date format\n */\n get format(): string {\n const format = this.getContribution(\"format\", \"\");\n return this.formatUtil.convertFormat(format);\n }\n\n /**\n */\n get hasDate(): boolean {\n return (\n this.type === \"date\" ||\n this.type === \"datetime\" ||\n this.type === \"timestamp\"\n );\n }\n\n /**\n */\n get hasTime(): boolean {\n return (\n this.type === \"time\" ||\n this.type === \"datetime\" ||\n this.type === \"timestamp\"\n );\n }\n\n /**\n */\n get formatLabel(): string {\n switch (this.type) {\n case \"date\":\n return this.dateInputFormat.toLowerCase();\n case \"time\":\n return this.timeInputFormat.toLowerCase();\n default:\n return this.format.toLowerCase();\n }\n }\n\n /**\n */\n get inputFormatWithoutOffset(): string {\n if (this.hasDate && this.hasTime) {\n return `${this.dateInputFormat} ${this.timeInputFormat}`.trim();\n }\n\n if (this.hasDate) {\n return this.dateInputFormat;\n }\n\n if (this.hasTime) {\n return this.timeInputFormat;\n }\n\n return \"\";\n }\n\n /**\n */\n get inputFormat(): string {\n if (\n isIncludeTimeOffsetInDateTimes() &&\n this.dateInputFormat !== \"\" &&\n this.timeInputFormat !== \"\"\n ) {\n return `${this.inputFormatWithoutOffset} ${DATETIME_OFFSET_FORMAT}`;\n }\n return this.inputFormatWithoutOffset;\n }\n\n /**\n */\n extractDateInputFormat(): string {\n const dateEraChars = new Set(\"yMLdQDEewGu\");\n const timeOffsetChars = new Set(\"HhaKmsSZzXxO\");\n\n const format = this.format;\n let inputFormat = \"\";\n\n let isInQuotes = false;\n let keep = false;\n\n for (let i = 0; i < format.length; i++) {\n const prevChar = i > 0 ? format[i - 1] : \"\";\n const nextChar = i < format.length ? format[i + 1] : \"\";\n const char = format[i];\n\n if (char === \"'\") {\n isInQuotes = prevChar === \"'\" || nextChar === \"'\" || !isInQuotes;\n } else if (!isInQuotes && dateEraChars.has(char)) {\n keep = true;\n } else if (!isInQuotes && timeOffsetChars.has(char)) {\n keep = false;\n }\n\n if (keep) {\n inputFormat += char;\n }\n }\n\n return inputFormat.trim();\n }\n\n /**\n */\n get dateInputFormat(): string {\n if (!this.hasDate) {\n return \"\";\n }\n\n if (!this._dateInputFormat) {\n this._dateInputFormat = this.extractDateInputFormat();\n }\n\n return this._dateInputFormat;\n }\n\n /**\n */\n get dateReadonlyFormat(): string {\n if (!this.hasDate) {\n return \"\";\n }\n\n return this.hasTime\n ? this.format.replace(this.timeInputFormat, \"\").trim()\n : this.format;\n }\n\n /**\n * return attribute placeholder or return formatlabel without time input format from contributions\n */\n get placeholder(): string {\n if (this._placeholder !== \"\") {\n return this._placeholder;\n }\n\n const formatLabel = this.getContribution(\"formatlabel\", \"\");\n\n if (this.hasDate && this.hasTime && formatLabel.includes(\" \")) {\n // return first part of formatlabel to keep placeholder matching date input\n return formatLabel.split(\" \")[0];\n }\n\n return formatLabel;\n }\n\n /**\n * Set placeholder text\n */\n set placeholder(placeholder: string) {\n this._placeholder = placeholder;\n }\n\n /**\n */\n get timeInputFormat(): string {\n if (!this.hasTime) {\n return \"\";\n }\n\n if (this._timeInputFormat) {\n return this._timeInputFormat;\n }\n\n const format = this.format;\n\n let timeFormatParts = [];\n if (format.includes(\"H\")) {\n timeFormatParts.push(\"HH\");\n } else if (format.includes(\"h\")) {\n timeFormatParts.push(\"hh\");\n }\n if (format.includes(\"m\")) {\n timeFormatParts.push(\"mm\");\n }\n if (format.includes(\"s\")) {\n timeFormatParts.push(\"ss\");\n }\n\n let timeFormat = timeFormatParts.join(\":\");\n if (format.includes(\"S\")) {\n timeFormat = `${timeFormat}.SSS`;\n }\n if (format.includes(\"a\")) {\n timeFormat = `${timeFormat} a`;\n }\n\n this._timeInputFormat = timeFormat;\n return this._timeInputFormat;\n }\n\n /**\n */\n get timeReadonlyFormat(): string {\n if (!this.hasTime) {\n return \"\";\n }\n\n return this.timeInputFormat;\n }\n\n /**\n */\n get dateInputValue(): string {\n return typeof this.value === \"string\" && this.dateInputFormat !== \"\"\n ? this.formatUtil.toFormat(this.value, this.dateInputFormat)\n : \"\";\n }\n\n /**\n */\n get timeInputValue(): string {\n return typeof this.value === \"string\" && this.timeInputFormat !== \"\"\n ? this.formatUtil.toFormat(this.value, this.timeInputFormat)\n : \"\";\n }\n\n /**\n * format value in readonly rendering\n */\n formatValue(value: ?string): string {\n if (value == null || value.toString() === \"\") {\n return \"\";\n }\n\n // when the value is exactly an iso date, render as date\n if (\n (this.type === \"datetime\" || this.type === \"timestamp\") &&\n DateUtil.hasFormat(value, ISO_DATE_FORMAT)\n ) {\n return DateUtil.toFormat(value, this.dateReadonlyFormat);\n }\n\n return this.formatUtil.toFormat(value, this.format);\n }\n\n /**\n * Retrieve readonly value, the date in the configurated format\n */\n get readonlyvalue(): string {\n if (typeof this.value === \"string\") {\n return this.formatValue(this.value.toString());\n }\n\n return \"\";\n }\n\n /**\n */\n get isAmbiguous(): boolean {\n if (typeof this.value === \"string\") {\n return this.formatUtil.isAmbiguous(this.value);\n }\n return false;\n }\n\n /**\n */\n get offset(): OffsetInfo | null {\n if (typeof this.value === \"string\") {\n return this.formatUtil.getOffset(this.value);\n }\n return null;\n }\n\n /**\n * Get minimum date\n */\n get mindate(): string | null {\n return this.getContribution(\"mindate\");\n }\n\n /**\n * Get maximum date\n */\n get maxdate(): string | null {\n return this.getContribution(\"maxdate\");\n }\n\n /**\n * Registers an error that was received from a server response\n */\n addServerError(error: FormErrorAnchor) {\n const { id, message, properties, layouthint } = error;\n if (properties && has(properties, \"format\") && this.formatLabel) {\n properties.format = this.formatLabel;\n }\n\n this._errorCollection.addServerError(id, message, properties, layouthint);\n }\n\n /**\n */\n getFormatConstraint(): IConstraintModel {\n switch (this.type) {\n case \"date\":\n return new DateTimeDateFormatConstraint(\n this.dateInputFormat,\n this.formatLabel,\n );\n case \"time\":\n return new DateTimeTimeFormatConstraint(\n this.timeInputFormat,\n this.formatLabel,\n );\n default:\n return new DatetimeFormatConstraint(\n this.type,\n this.inputFormat,\n this.formatLabel,\n );\n }\n }\n\n /**\n * Add Date constraints for attribute\n */\n addConstraints(): ConstraintCollection {\n const constraints = new ConstraintCollection();\n\n constraints.add(this.getFormatConstraint());\n\n if (this.mindate || this.maxdate) {\n constraints.add(\n new DateBoundaryConstraint(\n this.type,\n this.mindate,\n this.maxdate,\n this.inputFormat,\n ),\n );\n }\n\n return constraints;\n }\n\n /**\n */\n get readonlyWidth(): $Keys<typeof ATTRIBUTE_WIDTH> {\n if (this.type === \"date\" || this.type === \"time\") {\n return ATTRIBUTE_WIDTH.SMALL;\n }\n\n return ATTRIBUTE_WIDTH.MEDIUM;\n }\n\n /**\n */\n updateByAttribute(otherAttribute: AttributeType): void {\n this.reset();\n if (otherAttribute instanceof DatetimeAttributeModel) {\n const otherValue = otherAttribute.value;\n if (otherValue != null) {\n const inputValue = this.formatUtil.toFormat(\n otherValue,\n this.inputFormat,\n );\n this.update(inputValue);\n }\n } else {\n console.error(\n `update of datetime attribute with ${otherAttribute.type} not supported`,\n );\n }\n }\n}\n\nexport default DatetimeAttributeModel;\n"],"mappings":"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","ignoreList":[]}
@@ -1,55 +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 _objects = require("../../utils/helpers/objects");
9
- var _AttributeModel = _interopRequireDefault(require("./AttributeModel"));
10
- /**
11
- * Helptext attribute
12
- */
13
- class HelptextAttributeModel extends _AttributeModel.default {
14
- /**
15
- */
16
- static isApplicableModel(contributions) {
17
- return contributions.type === "helptext" || contributions.readonly && (0, _objects.has)(contributions, "text");
18
- }
19
-
20
- /**
21
- */
22
- get type() {
23
- return "helptext";
24
- }
25
-
26
- /**
27
- * Get helptext text
28
- */
29
- get text() {
30
- const dataContent = this.getData("content");
31
- if (dataContent?.text) {
32
- return dataContent.text.message;
33
- }
34
- const contributionText = this.getContribution("text");
35
- if (contributionText) {
36
- return contributionText.message ?? contributionText;
37
- }
38
- return null;
39
- }
40
-
41
- /**
42
- */
43
- // eslint-disable-next-line no-unused-vars
44
- update(value) {
45
- return this;
46
- }
47
-
48
- /**
49
- */
50
- getFormData() {
51
- return null;
52
- }
53
- }
54
- exports.default = HelptextAttributeModel;
55
- //# sourceMappingURL=HelptextAttributeModel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"HelptextAttributeModel.js","names":["_objects","require","_AttributeModel","_interopRequireDefault","HelptextAttributeModel","AttributeModel","isApplicableModel","contributions","type","readonly","has","text","dataContent","getData","message","contributionText","getContribution","update","value","getFormData","exports","default"],"sources":["../../../src/models/attributes/HelptextAttributeModel.js"],"sourcesContent":["// @flow\nimport { has } from \"../../utils/helpers/objects\";\n\nimport AttributeModel from \"./AttributeModel\";\n\n/**\n * Helptext attribute\n */\nexport default class HelptextAttributeModel extends AttributeModel {\n /**\n */\n static isApplicableModel(contributions: Object): boolean {\n return (\n contributions.type === \"helptext\" ||\n (contributions.readonly && has(contributions, \"text\"))\n );\n }\n\n /**\n */\n get type(): string {\n return \"helptext\";\n }\n\n /**\n * Get helptext text\n */\n get text(): string | null {\n const dataContent = this.getData(\"content\");\n if (dataContent?.text) {\n return dataContent.text.message;\n }\n\n const contributionText = this.getContribution(\"text\");\n if (contributionText) {\n return contributionText.message ?? contributionText;\n }\n\n return null;\n }\n\n /**\n */\n // eslint-disable-next-line no-unused-vars\n update(value: string): HelptextAttributeModel {\n return this;\n }\n\n /**\n */\n getFormData(): null {\n return null;\n }\n}\n"],"mappings":";;;;;;;AACA,IAAAA,QAAA,GAAAC,OAAA;AAEA,IAAAC,eAAA,GAAAC,sBAAA,CAAAF,OAAA;AAEA;AACA;AACA;AACe,MAAMG,sBAAsB,SAASC,uBAAc,CAAC;EACjE;AACF;EACE,OAAOC,iBAAiBA,CAACC,aAAqB,EAAW;IACvD,OACEA,aAAa,CAACC,IAAI,KAAK,UAAU,IAChCD,aAAa,CAACE,QAAQ,IAAI,IAAAC,YAAG,EAACH,aAAa,EAAE,MAAM,CAAE;EAE1D;;EAEA;AACF;EACE,IAAIC,IAAIA,CAAA,EAAW;IACjB,OAAO,UAAU;EACnB;;EAEA;AACF;AACA;EACE,IAAIG,IAAIA,CAAA,EAAkB;IACxB,MAAMC,WAAW,GAAG,IAAI,CAACC,OAAO,CAAC,SAAS,CAAC;IAC3C,IAAID,WAAW,EAAED,IAAI,EAAE;MACrB,OAAOC,WAAW,CAACD,IAAI,CAACG,OAAO;IACjC;IAEA,MAAMC,gBAAgB,GAAG,IAAI,CAACC,eAAe,CAAC,MAAM,CAAC;IACrD,IAAID,gBAAgB,EAAE;MACpB,OAAOA,gBAAgB,CAACD,OAAO,IAAIC,gBAAgB;IACrD;IAEA,OAAO,IAAI;EACb;;EAEA;AACF;EACE;EACAE,MAAMA,CAACC,KAAa,EAA0B;IAC5C,OAAO,IAAI;EACb;;EAEA;AACF;EACEC,WAAWA,CAAA,EAAS;IAClB,OAAO,IAAI;EACb;AACF;AAACC,OAAA,CAAAC,OAAA,GAAAjB,sBAAA","ignoreList":[]}