@beinformed/ui 1.59.21 → 1.59.23

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 (1237) hide show
  1. package/CHANGELOG.md +14 -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.d.ts +1 -0
  82. package/lib/builder/mergeLayoutHintConfigurations.d.ts +1 -0
  83. package/lib/constants/Constants.d.ts +158 -0
  84. package/lib/constants/LayoutHintConfig.d.ts +267 -0
  85. package/lib/constants/LayoutHints.d.ts +83 -0
  86. package/lib/constants/Settings.d.ts +32 -0
  87. package/lib/constants/index.d.ts +3 -0
  88. package/lib/exceptions/ConfigurationException.d.ts +7 -0
  89. package/lib/exceptions/FetchException.d.ts +31 -0
  90. package/lib/exceptions/IllegalArgumentException.d.ts +7 -0
  91. package/lib/exceptions/IllegalReturnException.d.ts +6 -0
  92. package/lib/exceptions/IllegalStateException.d.ts +7 -0
  93. package/lib/exceptions/JsonParseException.d.ts +7 -0
  94. package/lib/exceptions/MissingPropertyException.d.ts +7 -0
  95. package/lib/exceptions/NetworkException.d.ts +9 -0
  96. package/lib/exceptions/NotAllowedUriException.d.ts +7 -0
  97. package/lib/exceptions/NotFoundException.d.ts +10 -0
  98. package/lib/exceptions/ServerRequestException.d.ts +7 -0
  99. package/lib/exceptions/ThemePropertyException.d.ts +7 -0
  100. package/lib/exceptions/TimeoutException.d.ts +7 -0
  101. package/lib/exceptions/UnauthorizedException.d.ts +11 -0
  102. package/lib/exceptions/UnsupportedOperationException.d.ts +7 -0
  103. package/lib/exceptions/index.d.ts +15 -0
  104. package/lib/hooks/index.d.ts +16 -0
  105. package/lib/hooks/useAllFormsOnModel.d.ts +7 -0
  106. package/lib/hooks/useAuthentication.d.ts +16 -0
  107. package/lib/hooks/useContent.d.ts +3 -0
  108. package/lib/hooks/useDeepCompareEffect.d.ts +6 -0
  109. package/lib/hooks/useForm.d.ts +21 -0
  110. package/lib/hooks/useI18n.d.ts +13 -0
  111. package/lib/hooks/useModal.d.ts +12 -0
  112. package/lib/hooks/useModelCatalog.d.ts +32 -0
  113. package/lib/hooks/useModels.d.ts +10 -0
  114. package/lib/hooks/useModularUI.d.ts +3 -0
  115. package/lib/hooks/useModularUIBasic.d.ts +9 -0
  116. package/lib/hooks/useModularUIModel.d.ts +27 -0
  117. package/lib/hooks/useModularUIRequest.d.ts +4 -0
  118. package/lib/hooks/useNotification.d.ts +8 -0
  119. package/lib/hooks/usePreference.d.ts +2 -0
  120. package/lib/hooks/useProgressIndicator.d.ts +9 -0
  121. package/lib/hooks/useRouter.d.ts +23 -0
  122. package/lib/i18n/Locale.d.ts +53 -0
  123. package/lib/i18n/Locales.d.ts +59 -0
  124. package/lib/i18n/Message.d.ts +6 -0
  125. package/lib/i18n/index.d.ts +5 -0
  126. package/lib/i18n/languages.d.ts +215 -0
  127. package/lib/i18n/translations/beinformed_error_messages_en.nl.d.ts +97 -0
  128. package/lib/i18n/translations/beinformed_error_messages_nl.nl.d.ts +97 -0
  129. package/lib/i18n/types.d.ts +11 -0
  130. package/lib/i18n/withMessage.d.ts +3 -0
  131. package/lib/index.d.ts +6 -0
  132. package/lib/models/actions/ActionCollection.d.ts +30 -0
  133. package/lib/models/actions/ActionModel.d.ts +82 -0
  134. package/lib/models/application/ApplicationModel.d.ts +48 -0
  135. package/lib/models/attributes/AttributeCollection.d.ts +102 -0
  136. package/lib/models/attributes/AttributeContent.d.ts +64 -0
  137. package/lib/models/attributes/AttributeDataHelper.d.ts +67 -0
  138. package/lib/models/attributes/AttributeModel.d.ts +398 -0
  139. package/lib/models/attributes/AttributeSetModel.d.ts +36 -0
  140. package/lib/models/attributes/BooleanAttributeModel.d.ts +69 -0
  141. package/lib/models/attributes/CaptchaAttributeModel.d.ts +19 -0
  142. package/lib/models/attributes/ChoiceAttributeModel.d.ts +85 -0
  143. package/lib/models/attributes/ChoiceAttributeOptionCollection.d.ts +81 -0
  144. package/lib/models/attributes/ChoiceAttributeOptionModel.d.ts +151 -0
  145. package/lib/models/attributes/CompositeAttributeChildCollection.d.ts +57 -0
  146. package/lib/models/attributes/CompositeAttributeModel.d.ts +42 -0
  147. package/lib/models/attributes/DatetimeAttributeModel.d.ts +85 -0
  148. package/lib/models/attributes/HelptextAttributeModel.d.ts +16 -0
  149. package/lib/models/attributes/LabelAttributeModel.d.ts +12 -0
  150. package/lib/models/attributes/MemoAttributeModel.d.ts +14 -0
  151. package/lib/models/attributes/MoneyAttributeModel.d.ts +14 -0
  152. package/lib/models/attributes/NumberAttributeModel.d.ts +49 -0
  153. package/lib/models/attributes/PasswordAttributeModel.d.ts +62 -0
  154. package/lib/models/attributes/StringAttributeModel.d.ts +65 -0
  155. package/lib/models/attributes/UploadAttributeModel.d.ts +60 -0
  156. package/lib/models/attributes/XMLAttributeModel.d.ts +10 -0
  157. package/lib/models/attributes/_createAttribute.d.ts +7 -0
  158. package/lib/models/attributes/input-constraints/BSNConstraint.d.ts +26 -0
  159. package/lib/models/attributes/input-constraints/ConstraintCollection.d.ts +24 -0
  160. package/lib/models/attributes/input-constraints/ConstraintModel.d.ts +34 -0
  161. package/lib/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +65 -0
  162. package/lib/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +36 -0
  163. package/lib/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +36 -0
  164. package/lib/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +50 -0
  165. package/lib/models/attributes/input-constraints/FileExtensionConstraint.d.ts +33 -0
  166. package/lib/models/attributes/input-constraints/FileSizeConstraint.d.ts +42 -0
  167. package/lib/models/attributes/input-constraints/IBANConstraint.d.ts +23 -0
  168. package/lib/models/attributes/input-constraints/MandatoryConstraint.d.ts +23 -0
  169. package/lib/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -0
  170. package/lib/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -0
  171. package/lib/models/attributes/input-constraints/NumberFormatConstraint.d.ts +52 -0
  172. package/lib/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +46 -0
  173. package/lib/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +36 -0
  174. package/lib/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +23 -0
  175. package/lib/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +32 -0
  176. package/lib/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +32 -0
  177. package/lib/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +35 -0
  178. package/lib/models/attributes/input-constraints/RangeConstraint.d.ts +51 -0
  179. package/lib/models/attributes/input-constraints/RegexConstraint.d.ts +37 -0
  180. package/lib/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -0
  181. package/lib/models/attributes/input-constraints/XMLConstraint.d.ts +26 -0
  182. package/lib/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +45 -0
  183. package/lib/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -0
  184. package/lib/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -0
  185. package/lib/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +17 -0
  186. package/lib/models/base/BaseCollection.d.ts +89 -0
  187. package/lib/models/base/BaseModel.d.ts +78 -0
  188. package/lib/models/base/ResourceCollection.d.ts +20 -0
  189. package/lib/models/base/ResourceModel.d.ts +102 -0
  190. package/lib/models/caseview/CaseViewModel.d.ts +46 -0
  191. package/lib/models/concepts/BusinessScenarioModel.d.ts +20 -0
  192. package/lib/models/concepts/ConceptDetailModel.d.ts +86 -0
  193. package/lib/models/concepts/ConceptIndexModel.d.ts +44 -0
  194. package/lib/models/concepts/ConceptLinkModel.d.ts +70 -0
  195. package/lib/models/concepts/ConceptRelationCollection.d.ts +36 -0
  196. package/lib/models/concepts/ConceptRelationModel.d.ts +61 -0
  197. package/lib/models/concepts/ConceptTypeDetailModel.d.ts +54 -0
  198. package/lib/models/concepts/SourceReferenceCollection.d.ts +14 -0
  199. package/lib/models/concepts/SourceReferenceModel.d.ts +32 -0
  200. package/lib/models/content/ContentIndexModel.d.ts +41 -0
  201. package/lib/models/content/ContentLinkModel.d.ts +85 -0
  202. package/lib/models/content/ContentModel.d.ts +80 -0
  203. package/lib/models/content/ContentTOCModel.d.ts +41 -0
  204. package/lib/models/content/ContentTypeModel.d.ts +26 -0
  205. package/lib/models/content/SectionModel.d.ts +76 -0
  206. package/lib/models/content/SubSectionModel.d.ts +69 -0
  207. package/lib/models/contentconfiguration/ContentConfiguration.d.ts +28 -0
  208. package/lib/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -0
  209. package/lib/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -0
  210. package/lib/models/contentconfiguration/ContentConfigurationQuestions.d.ts +22 -0
  211. package/lib/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -0
  212. package/lib/models/detail/DetailModel.d.ts +80 -0
  213. package/lib/models/error/ErrorCollection.d.ts +51 -0
  214. package/lib/models/error/ErrorModel.d.ts +41 -0
  215. package/lib/models/error/ErrorResponse.d.ts +156 -0
  216. package/lib/models/filters/AssignmentFilterModel.d.ts +35 -0
  217. package/lib/models/filters/BaseFilterModel.d.ts +101 -0
  218. package/lib/models/filters/ConceptIndexFilterModel.d.ts +6 -0
  219. package/lib/models/filters/FilterCollection.d.ts +49 -0
  220. package/lib/models/filters/FilterModel.d.ts +5 -0
  221. package/lib/models/filters/RangeFilterModel.d.ts +6 -0
  222. package/lib/models/filters/StringFilterModel.d.ts +30 -0
  223. package/lib/models/form/FormModel.d.ts +350 -0
  224. package/lib/models/form/FormObjectModel.d.ts +209 -0
  225. package/lib/models/grouping/GroupingModel.d.ts +86 -0
  226. package/lib/models/href/Href.d.ts +218 -0
  227. package/lib/models/href/ListHref.d.ts +64 -0
  228. package/lib/models/index.d.ts +96 -0
  229. package/lib/models/layouthint/LayoutHintCollection.d.ts +43 -0
  230. package/lib/models/links/LinkCollection.d.ts +71 -0
  231. package/lib/models/links/LinkModel.d.ts +93 -0
  232. package/lib/models/links/normalizeLinkJSON.d.ts +9 -0
  233. package/lib/models/list/ListDetailModel.d.ts +69 -0
  234. package/lib/models/list/ListHeaderModel.d.ts +53 -0
  235. package/lib/models/list/ListItemCollection.d.ts +21 -0
  236. package/lib/models/list/ListItemModel.d.ts +35 -0
  237. package/lib/models/list/ListModel.d.ts +143 -0
  238. package/lib/models/lookup/LookupOptionCollection.d.ts +15 -0
  239. package/lib/models/lookup/LookupOptionsModel.d.ts +23 -0
  240. package/lib/models/modelcatalog/ModelCatalogModel.d.ts +23 -0
  241. package/lib/models/modelcatalog/ModelCategoryCollection.d.ts +11 -0
  242. package/lib/models/modelcatalog/ModelCategoryModel.d.ts +39 -0
  243. package/lib/models/paging/PagesizeModel.d.ts +25 -0
  244. package/lib/models/paging/PagingModel.d.ts +49 -0
  245. package/lib/models/panels/GroupingPanelModel.d.ts +49 -0
  246. package/lib/models/parameter/Parameter.d.ts +40 -0
  247. package/lib/models/process/ProcessStatusSettingsModel.d.ts +38 -0
  248. package/lib/models/resolveModel.d.ts +7 -0
  249. package/lib/models/search/CaseSearchModel.d.ts +14 -0
  250. package/lib/models/sorting/SortOptionModel.d.ts +48 -0
  251. package/lib/models/sorting/SortingModel.d.ts +42 -0
  252. package/lib/models/tab/TabModel.d.ts +53 -0
  253. package/lib/models/taskgroup/TaskGroupCollection.d.ts +12 -0
  254. package/lib/models/taskgroup/TaskGroupModel.d.ts +25 -0
  255. package/lib/models/types.d.ts +166 -0
  256. package/lib/models/user/UserModel.d.ts +18 -0
  257. package/lib/models/user/UserProfileModel.d.ts +17 -0
  258. package/lib/models/user/UserServicesModel.d.ts +39 -0
  259. package/lib/modularui/Authenticate.d.ts +46 -0
  260. package/lib/modularui/CaptchaRequest.d.ts +54 -0
  261. package/lib/modularui/ModularUIError.d.ts +10 -0
  262. package/lib/modularui/ModularUIRequest.d.ts +207 -0
  263. package/lib/modularui/ModularUIResponse.d.ts +78 -0
  264. package/lib/modularui/UploadRequest.d.ts +41 -0
  265. package/lib/modularui/index.d.ts +5 -0
  266. package/lib/modularui/types.d.ts +2 -0
  267. package/lib/react/ErrorBoundary.d.ts +31 -0
  268. package/lib/react/ErrorBoundaryFallback.d.ts +8 -0
  269. package/lib/react/index.d.ts +2 -0
  270. package/lib/react/utils.d.ts +5 -0
  271. package/lib/react-client/Init.d.ts +6 -0
  272. package/lib/react-client/client.d.ts +25 -0
  273. package/lib/react-client/contextPath.d.ts +1 -0
  274. package/lib/react-client/index.d.ts +3 -0
  275. package/lib/react-client/rehydrate.d.ts +5 -0
  276. package/lib/react-server/contextPath.d.ts +1 -0
  277. package/lib/react-server/createSSRComplete.d.ts +5 -0
  278. package/lib/react-server/htmlpage.d.ts +11 -0
  279. package/lib/react-server/index.d.ts +8 -0
  280. package/lib/react-server/renderSSRComplete.d.ts +13 -0
  281. package/lib/react-server/renderSSRMinimal.d.ts +11 -0
  282. package/lib/react-server/requestInformation.d.ts +6 -0
  283. package/lib/react-server/serverNoSSR.d.ts +15 -0
  284. package/lib/react-server/serverSSR.d.ts +15 -0
  285. package/lib/react-server/serverUtil.d.ts +46 -0
  286. package/lib/react-theme/ThemeProvider.d.ts +8 -0
  287. package/lib/react-theme/createTheme.d.ts +53 -0
  288. package/lib/react-theme/index.d.ts +10 -0
  289. package/lib/react-theme/types.d.ts +13 -0
  290. package/lib/react-theme/useTheme.d.ts +4 -0
  291. package/lib/react-theme/utils/background.d.ts +4 -0
  292. package/lib/react-theme/utils/colors.d.ts +9 -0
  293. package/lib/react-theme/utils/contrast.d.ts +18 -0
  294. package/lib/react-theme/utils/corners.d.ts +3 -0
  295. package/lib/react-theme/utils/spacers.d.ts +9 -0
  296. package/lib/react-theme/utils/themeProps.d.ts +7 -0
  297. package/lib/redux/_i18n/I18nActions.d.ts +7 -0
  298. package/lib/redux/_i18n/I18nReducer.d.ts +7 -0
  299. package/lib/redux/_i18n/index.d.ts +3 -0
  300. package/lib/redux/_i18n/types.d.ts +13 -0
  301. package/lib/redux/_modularui/ModularUIActions.d.ts +26 -0
  302. package/lib/redux/_modularui/ModularUIConnector.d.ts +7 -0
  303. package/lib/redux/_modularui/ModularUIMiddleware.d.ts +7 -0
  304. package/lib/redux/_modularui/ModularUIReducer.d.ts +7 -0
  305. package/lib/redux/_modularui/ModularUISelectors.d.ts +3 -0
  306. package/lib/redux/_modularui/ModularUIUtils.d.ts +5 -0
  307. package/lib/redux/_modularui/index.d.ts +8 -0
  308. package/lib/redux/_modularui/types.d.ts +83 -0
  309. package/lib/redux/_modularui/withModularUI.d.ts +3 -0
  310. package/lib/redux/_router/RouterActions.d.ts +10 -0
  311. package/lib/redux/_router/RouterConnectors.d.ts +6 -0
  312. package/lib/redux/_router/RouterMiddleware.d.ts +5 -0
  313. package/lib/redux/_router/RouterReducer.d.ts +7 -0
  314. package/lib/redux/_router/index.d.ts +5 -0
  315. package/lib/redux/_router/types.d.ts +35 -0
  316. package/lib/redux/actions/Application.d.ts +4 -0
  317. package/lib/redux/actions/Authorization.d.ts +3 -0
  318. package/lib/redux/actions/Error.d.ts +7 -0
  319. package/lib/redux/actions/Form.d.ts +5 -0
  320. package/lib/redux/actions/FormAttributeSet.d.ts +6 -0
  321. package/lib/redux/actions/FormAttributeSetRepeatable.d.ts +6 -0
  322. package/lib/redux/actions/FormAutosave.d.ts +3 -0
  323. package/lib/redux/actions/FormAutosubmit.d.ts +4 -0
  324. package/lib/redux/actions/FormAutoupdate.d.ts +4 -0
  325. package/lib/redux/actions/FormValidations.d.ts +3 -0
  326. package/lib/redux/actions/Modals.d.ts +4 -0
  327. package/lib/redux/actions/ModelCatalog.d.ts +2 -0
  328. package/lib/redux/actions/Notification.d.ts +10 -0
  329. package/lib/redux/actions/Preferences.d.ts +11 -0
  330. package/lib/redux/actions/ProgressIndicator.d.ts +8 -0
  331. package/lib/redux/actions/SignIn.d.ts +10 -0
  332. package/lib/redux/actions/SignOut.d.ts +4 -0
  333. package/lib/redux/actions/index.d.ts +16 -0
  334. package/lib/redux/connectors/Application.d.ts +4 -0
  335. package/lib/redux/connectors/Breadcrumb.d.ts +3 -0
  336. package/lib/redux/connectors/CaseView.d.ts +4 -0
  337. package/lib/redux/connectors/ConceptDetail.d.ts +4 -0
  338. package/lib/redux/connectors/ContentBrowser.d.ts +4 -0
  339. package/lib/redux/connectors/ContentDetail.d.ts +4 -0
  340. package/lib/redux/connectors/ContentDetailSection.d.ts +4 -0
  341. package/lib/redux/connectors/Form.d.ts +16 -0
  342. package/lib/redux/connectors/FormAttributeSet.d.ts +5 -0
  343. package/lib/redux/connectors/ListDetail.d.ts +4 -0
  344. package/lib/redux/connectors/Modal.d.ts +4 -0
  345. package/lib/redux/connectors/ModelCatalog.d.ts +4 -0
  346. package/lib/redux/connectors/Notification.d.ts +4 -0
  347. package/lib/redux/connectors/PanelRenderer.d.ts +4 -0
  348. package/lib/redux/connectors/Preferences.d.ts +2 -0
  349. package/lib/redux/connectors/Progress.d.ts +3 -0
  350. package/lib/redux/connectors/ProgressIndicator.d.ts +3 -0
  351. package/lib/redux/connectors/QuickSearch.d.ts +11 -0
  352. package/lib/redux/connectors/SignIn.d.ts +4 -0
  353. package/lib/redux/connectors/SignOut.d.ts +4 -0
  354. package/lib/redux/connectors/Tab.d.ts +4 -0
  355. package/lib/redux/connectors/index.d.ts +21 -0
  356. package/lib/redux/index.d.ts +9 -0
  357. package/lib/redux/reducers/AuthReducer.d.ts +8 -0
  358. package/lib/redux/reducers/ErrorReducer.d.ts +8 -0
  359. package/lib/redux/reducers/ModalsReducer.d.ts +8 -0
  360. package/lib/redux/reducers/ModelCatalogReducer.d.ts +8 -0
  361. package/lib/redux/reducers/NotificationReducer.d.ts +8 -0
  362. package/lib/redux/reducers/PreferencesReducer.d.ts +8 -0
  363. package/lib/redux/reducers/ProgressIndicatorReducer.d.ts +8 -0
  364. package/lib/redux/reducers/createReducer.d.ts +14 -0
  365. package/lib/redux/reducers/index.d.ts +8 -0
  366. package/lib/redux/selectors/i18n.d.ts +4 -0
  367. package/lib/redux/selectors/index.d.ts +2 -0
  368. package/lib/redux/selectors/modelcatalog.d.ts +2 -0
  369. package/lib/redux/store/beforeRenderHooks.d.ts +7 -0
  370. package/lib/redux/store/configureStore.d.ts +9 -0
  371. package/lib/redux/types.d.ts +113 -0
  372. package/lib/utils/browser/Cache.d.ts +45 -0
  373. package/lib/utils/browser/Cookies.d.ts +9 -0
  374. package/lib/utils/datetime/DateTimeUtil.d.ts +214 -0
  375. package/lib/utils/fetch/__mocks__/universalFetch.d.ts +3 -0
  376. package/lib/utils/fetch/serverFetch.d.ts +5 -0
  377. package/lib/utils/fetch/types.d.ts +44 -0
  378. package/lib/utils/fetch/universalFetch.d.ts +7 -0
  379. package/lib/utils/fetch/xhr.d.ts +5 -0
  380. package/lib/utils/helpers/checkResource.d.ts +3 -0
  381. package/lib/utils/helpers/createHash.d.ts +8 -0
  382. package/lib/utils/helpers/createHref.d.ts +8 -0
  383. package/lib/utils/helpers/createUUID.d.ts +4 -0
  384. package/lib/utils/helpers/index.d.ts +8 -0
  385. package/lib/utils/helpers/objects.d.ts +11 -0
  386. package/lib/utils/helpers/repositoryResource.d.ts +1 -0
  387. package/lib/utils/helpers/sanitizeHtml.d.ts +9 -0
  388. package/lib/utils/helpers/text.d.ts +7 -0
  389. package/lib/utils/index.d.ts +11 -0
  390. package/lib/utils/number/DecimalFormat.d.ts +90 -0
  391. package/lib/utils/number/formatValue.d.ts +4 -0
  392. package/lib/utils/number/parseNumbers.d.ts +9 -0
  393. package/package.json +39 -56
  394. package/builder/package.json +0 -12
  395. package/constants/package.json +0 -12
  396. package/exceptions/package.json +0 -12
  397. package/hooks/package.json +0 -12
  398. package/i18n/package.json +0 -12
  399. package/models/package.json +0 -12
  400. package/modularui/package.json +0 -12
  401. package/react/package.json +0 -12
  402. package/react-client/package.json +0 -12
  403. package/react-server/package.json +0 -12
  404. package/react-theme/package.json +0 -12
  405. package/redux/package.json +0 -12
  406. package/tsconfig.json +0 -29
  407. package/types/hooks/useI18n.d.ts +0 -13
  408. package/types/hooks/useModelCatalog.d.ts +0 -31
  409. package/types/i18n/Locales.d.ts +0 -55
  410. package/types/models/actions/ActionModel.d.ts +0 -84
  411. package/types/models/application/ApplicationModel.d.ts +0 -48
  412. package/types/models/attributes/AttributeCollection.d.ts +0 -100
  413. package/types/models/attributes/AttributeContent.d.ts +0 -64
  414. package/types/models/attributes/AttributeDataHelper.d.ts +0 -67
  415. package/types/models/attributes/AttributeModel.d.ts +0 -401
  416. package/types/models/attributes/BooleanAttributeModel.d.ts +0 -64
  417. package/types/models/attributes/ChoiceAttributeModel.d.ts +0 -85
  418. package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +0 -81
  419. package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +0 -151
  420. package/types/models/attributes/DatetimeAttributeModel.d.ts +0 -147
  421. package/types/models/attributes/PasswordAttributeModel.d.ts +0 -62
  422. package/types/models/attributes/UploadAttributeModel.d.ts +0 -60
  423. package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +0 -127
  424. package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +0 -114
  425. package/types/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +0 -36
  426. package/types/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +0 -61
  427. package/types/models/attributes/input-constraints/RangeConstraint.d.ts +0 -113
  428. package/types/models/attributes/input-constraints/StringLengthConstraint.d.ts +0 -46
  429. package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +0 -57
  430. package/types/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +0 -27
  431. package/types/models/base/BaseCollection.d.ts +0 -89
  432. package/types/models/base/BaseModel.d.ts +0 -78
  433. package/types/models/base/ResourceModel.d.ts +0 -102
  434. package/types/models/caseview/CaseViewModel.d.ts +0 -45
  435. package/types/models/concepts/BusinessScenarioModel.d.ts +0 -20
  436. package/types/models/concepts/ConceptDetailModel.d.ts +0 -86
  437. package/types/models/concepts/ConceptLinkModel.d.ts +0 -70
  438. package/types/models/concepts/ConceptRelationCollection.d.ts +0 -36
  439. package/types/models/concepts/ConceptRelationModel.d.ts +0 -61
  440. package/types/models/concepts/ConceptTypeDetailModel.d.ts +0 -54
  441. package/types/models/content/ContentLinkModel.d.ts +0 -85
  442. package/types/models/content/ContentModel.d.ts +0 -80
  443. package/types/models/content/ContentTOCModel.d.ts +0 -41
  444. package/types/models/content/SectionModel.d.ts +0 -76
  445. package/types/models/content/SubSectionModel.d.ts +0 -69
  446. package/types/models/contentconfiguration/ContentConfiguration.d.ts +0 -28
  447. package/types/models/contentconfiguration/ContentConfigurationElements.d.ts +0 -47
  448. package/types/models/contentconfiguration/ContentConfigurationEndResults.d.ts +0 -16
  449. package/types/models/contentconfiguration/ContentConfigurationResults.d.ts +0 -39
  450. package/types/models/detail/DetailModel.d.ts +0 -80
  451. package/types/models/error/ErrorCollection.d.ts +0 -51
  452. package/types/models/error/ErrorResponse.d.ts +0 -156
  453. package/types/models/filters/BaseFilterModel.d.ts +0 -101
  454. package/types/models/form/FormModel.d.ts +0 -350
  455. package/types/models/form/FormObjectModel.d.ts +0 -207
  456. package/types/models/grouping/GroupingModel.d.ts +0 -86
  457. package/types/models/href/Href.d.ts +0 -226
  458. package/types/models/href/ListHref.d.ts +0 -64
  459. package/types/models/layouthint/LayoutHintCollection.d.ts +0 -43
  460. package/types/models/links/LinkCollection.d.ts +0 -71
  461. package/types/models/links/LinkModel.d.ts +0 -93
  462. package/types/models/list/ListDetailModel.d.ts +0 -69
  463. package/types/models/list/ListHeaderModel.d.ts +0 -64
  464. package/types/models/list/ListModel.d.ts +0 -143
  465. package/types/models/paging/PagesizeModel.d.ts +0 -25
  466. package/types/models/panels/GroupingPanelModel.d.ts +0 -48
  467. package/types/models/sorting/SortOptionModel.d.ts +0 -48
  468. package/types/models/sorting/SortingModel.d.ts +0 -42
  469. package/types/models/tab/TabModel.d.ts +0 -52
  470. package/types/models/user/UserServicesModel.d.ts +0 -38
  471. package/types/modularui/Authenticate.d.ts +0 -49
  472. package/types/modularui/ModularUIRequest.d.ts +0 -215
  473. package/types/modularui/ModularUIResponse.d.ts +0 -78
  474. package/types/react-server/serverUtil.d.ts +0 -45
  475. package/types/react-theme/utils/background.d.ts +0 -5
  476. package/types/react-theme/utils/colors.d.ts +0 -10
  477. package/types/react-theme/utils/contrast.d.ts +0 -19
  478. package/types/react-theme/utils/corners.d.ts +0 -4
  479. package/types/react-theme/utils/spacers.d.ts +0 -10
  480. package/types/react-theme/utils/themeProps.d.ts +0 -7
  481. package/types/redux/_modularui/ModularUIActions.d.ts +0 -29
  482. package/types/redux/_modularui/types.d.ts +0 -81
  483. package/types/redux/actions/Notification.d.ts +0 -14
  484. package/types/redux/store/beforeRenderHooks.d.ts +0 -7
  485. package/types/redux/store/configureStore.d.ts +0 -8
  486. package/utils/package.json +0 -12
  487. /package/{lib → esm}/builder/__tests__/mergeLayoutHintConfigurations.spec.js.flow +0 -0
  488. /package/{types → esm}/builder/index.d.ts +0 -0
  489. /package/{lib → esm}/builder/index.js.flow +0 -0
  490. /package/{types → esm}/builder/mergeLayoutHintConfigurations.d.ts +0 -0
  491. /package/{lib → esm}/builder/mergeLayoutHintConfigurations.js.flow +0 -0
  492. /package/{types → esm}/constants/Constants.d.ts +0 -0
  493. /package/{lib → esm}/constants/Constants.js.flow +0 -0
  494. /package/{types → esm}/constants/LayoutHintConfig.d.ts +0 -0
  495. /package/{lib → esm}/constants/LayoutHintConfig.js.flow +0 -0
  496. /package/{types → esm}/constants/LayoutHints.d.ts +0 -0
  497. /package/{lib → esm}/constants/LayoutHints.js.flow +0 -0
  498. /package/{types → esm}/constants/Settings.d.ts +0 -0
  499. /package/{lib → esm}/constants/Settings.js.flow +0 -0
  500. /package/{types → esm}/constants/index.d.ts +0 -0
  501. /package/{lib → esm}/constants/index.js.flow +0 -0
  502. /package/{types → esm}/exceptions/ConfigurationException.d.ts +0 -0
  503. /package/{lib → esm}/exceptions/ConfigurationException.js.flow +0 -0
  504. /package/{types → esm}/exceptions/FetchException.d.ts +0 -0
  505. /package/{lib → esm}/exceptions/FetchException.js.flow +0 -0
  506. /package/{types → esm}/exceptions/IllegalArgumentException.d.ts +0 -0
  507. /package/{lib → esm}/exceptions/IllegalArgumentException.js.flow +0 -0
  508. /package/{types → esm}/exceptions/IllegalReturnException.d.ts +0 -0
  509. /package/{lib → esm}/exceptions/IllegalReturnException.js.flow +0 -0
  510. /package/{types → esm}/exceptions/IllegalStateException.d.ts +0 -0
  511. /package/{lib → esm}/exceptions/IllegalStateException.js.flow +0 -0
  512. /package/{types → esm}/exceptions/JsonParseException.d.ts +0 -0
  513. /package/{lib → esm}/exceptions/JsonParseException.js.flow +0 -0
  514. /package/{types → esm}/exceptions/MissingPropertyException.d.ts +0 -0
  515. /package/{lib → esm}/exceptions/MissingPropertyException.js.flow +0 -0
  516. /package/{types → esm}/exceptions/NetworkException.d.ts +0 -0
  517. /package/{lib → esm}/exceptions/NetworkException.js.flow +0 -0
  518. /package/{types → esm}/exceptions/NotAllowedUriException.d.ts +0 -0
  519. /package/{lib → esm}/exceptions/NotAllowedUriException.js.flow +0 -0
  520. /package/{types → esm}/exceptions/NotFoundException.d.ts +0 -0
  521. /package/{lib → esm}/exceptions/NotFoundException.js.flow +0 -0
  522. /package/{types → esm}/exceptions/ServerRequestException.d.ts +0 -0
  523. /package/{lib → esm}/exceptions/ServerRequestException.js.flow +0 -0
  524. /package/{types → esm}/exceptions/ThemePropertyException.d.ts +0 -0
  525. /package/{lib → esm}/exceptions/ThemePropertyException.js.flow +0 -0
  526. /package/{types → esm}/exceptions/TimeoutException.d.ts +0 -0
  527. /package/{lib → esm}/exceptions/TimeoutException.js.flow +0 -0
  528. /package/{types → esm}/exceptions/UnauthorizedException.d.ts +0 -0
  529. /package/{lib → esm}/exceptions/UnauthorizedException.js.flow +0 -0
  530. /package/{types → esm}/exceptions/UnsupportedOperationException.d.ts +0 -0
  531. /package/{lib → esm}/exceptions/UnsupportedOperationException.js.flow +0 -0
  532. /package/{types → esm}/exceptions/index.d.ts +0 -0
  533. /package/{lib → esm}/exceptions/index.js.flow +0 -0
  534. /package/{lib → esm}/hooks/__tests__/UseModularUIModel.spec.js.flow +0 -0
  535. /package/{lib → esm}/hooks/__tests__/useAuthentication.spec.js.flow +0 -0
  536. /package/{lib → esm}/hooks/__tests__/useForm.spec.js.flow +0 -0
  537. /package/{lib → esm}/hooks/__tests__/useI18n.spec.js.flow +0 -0
  538. /package/{lib → esm}/hooks/__tests__/useModal.spec.js.flow +0 -0
  539. /package/{lib → esm}/hooks/__tests__/useModelCatalog.spec.js.flow +0 -0
  540. /package/{lib → esm}/hooks/__tests__/useModels.spec.js.flow +0 -0
  541. /package/{lib → esm}/hooks/__tests__/useModularUIBasic.spec.js.flow +0 -0
  542. /package/{lib → esm}/hooks/__tests__/useNotification.spec.js.flow +0 -0
  543. /package/{lib → esm}/hooks/__tests__/usePreference.spec.js.flow +0 -0
  544. /package/{lib → esm}/hooks/__tests__/useProgressIndicator.spec.js.flow +0 -0
  545. /package/{types → esm}/hooks/index.d.ts +0 -0
  546. /package/{lib → esm}/hooks/index.js.flow +0 -0
  547. /package/{types → esm}/hooks/useAllFormsOnModel.d.ts +0 -0
  548. /package/{lib → esm}/hooks/useAllFormsOnModel.js.flow +0 -0
  549. /package/{types → esm}/hooks/useAuthentication.d.ts +0 -0
  550. /package/{lib → esm}/hooks/useAuthentication.js.flow +0 -0
  551. /package/{types → esm}/hooks/useContent.d.ts +0 -0
  552. /package/{lib → esm}/hooks/useContent.js.flow +0 -0
  553. /package/{types → esm}/hooks/useDeepCompareEffect.d.ts +0 -0
  554. /package/{lib → esm}/hooks/useDeepCompareEffect.js.flow +0 -0
  555. /package/{types → esm}/hooks/useForm.d.ts +0 -0
  556. /package/{lib → esm}/hooks/useForm.js.flow +0 -0
  557. /package/{lib → esm}/hooks/useI18n.js.flow +0 -0
  558. /package/{types → esm}/hooks/useModal.d.ts +0 -0
  559. /package/{lib → esm}/hooks/useModal.js.flow +0 -0
  560. /package/{lib → esm}/hooks/useModelCatalog.js.flow +0 -0
  561. /package/{types → esm}/hooks/useModels.d.ts +0 -0
  562. /package/{lib → esm}/hooks/useModels.js.flow +0 -0
  563. /package/{types → esm}/hooks/useModularUI.d.ts +0 -0
  564. /package/{lib → esm}/hooks/useModularUI.js.flow +0 -0
  565. /package/{types → esm}/hooks/useModularUIBasic.d.ts +0 -0
  566. /package/{lib → esm}/hooks/useModularUIBasic.js.flow +0 -0
  567. /package/{types → esm}/hooks/useModularUIModel.d.ts +0 -0
  568. /package/{lib → esm}/hooks/useModularUIModel.js.flow +0 -0
  569. /package/{types → esm}/hooks/useModularUIRequest.d.ts +0 -0
  570. /package/{lib → esm}/hooks/useModularUIRequest.js.flow +0 -0
  571. /package/{types → esm}/hooks/useNotification.d.ts +0 -0
  572. /package/{lib → esm}/hooks/useNotification.js.flow +0 -0
  573. /package/{types → esm}/hooks/usePreference.d.ts +0 -0
  574. /package/{lib → esm}/hooks/usePreference.js.flow +0 -0
  575. /package/{types → esm}/hooks/useProgressIndicator.d.ts +0 -0
  576. /package/{lib → esm}/hooks/useProgressIndicator.js.flow +0 -0
  577. /package/{types → esm}/hooks/useRouter.d.ts +0 -0
  578. /package/{lib → esm}/hooks/useRouter.js.flow +0 -0
  579. /package/{types → esm}/i18n/Locale.d.ts +0 -0
  580. /package/{lib → esm}/i18n/Locale.js.flow +0 -0
  581. /package/{lib → esm}/i18n/Locales.js.flow +0 -0
  582. /package/{types → esm}/i18n/Message.d.ts +0 -0
  583. /package/{lib → esm}/i18n/Message.js.flow +0 -0
  584. /package/{lib → esm}/i18n/__tests__/Locale.spec.js.flow +0 -0
  585. /package/{lib → esm}/i18n/__tests__/Locales.spec.js.flow +0 -0
  586. /package/{types → esm}/i18n/index.d.ts +0 -0
  587. /package/{lib → esm}/i18n/index.js.flow +0 -0
  588. /package/{types → esm}/i18n/languages.d.ts +0 -0
  589. /package/{lib → esm}/i18n/languages.js.flow +0 -0
  590. /package/{types → esm}/i18n/translations/beinformed_error_messages_en.nl.d.ts +0 -0
  591. /package/{lib → esm}/i18n/translations/beinformed_error_messages_en.nl.js.flow +0 -0
  592. /package/{types → esm}/i18n/translations/beinformed_error_messages_nl.nl.d.ts +0 -0
  593. /package/{lib → esm}/i18n/translations/beinformed_error_messages_nl.nl.js.flow +0 -0
  594. /package/{types → esm}/i18n/types.d.ts +0 -0
  595. /package/{lib → esm}/i18n/types.js.flow +0 -0
  596. /package/{types → esm}/i18n/withMessage.d.ts +0 -0
  597. /package/{lib → esm}/i18n/withMessage.js.flow +0 -0
  598. /package/{types → esm}/index.d.ts +0 -0
  599. /package/{lib → esm}/index.js.flow +0 -0
  600. /package/{lib → esm}/models/__tests__/resolveModel.spec.js.flow +0 -0
  601. /package/{types → esm}/models/actions/ActionCollection.d.ts +0 -0
  602. /package/{lib → esm}/models/actions/ActionCollection.js.flow +0 -0
  603. /package/{lib → esm}/models/actions/ActionModel.js.flow +0 -0
  604. /package/{lib → esm}/models/actions/__mock__/action.js.flow +0 -0
  605. /package/{lib → esm}/models/actions/__tests__/ActionCollection.spec.js.flow +0 -0
  606. /package/{lib → esm}/models/actions/__tests__/ActionModel.spec.js.flow +0 -0
  607. /package/{lib → esm}/models/application/ApplicationModel.js.flow +0 -0
  608. /package/{lib → esm}/models/application/__mock__/application.js.flow +0 -0
  609. /package/{lib → esm}/models/application/__tests__/Application.spec.js.flow +0 -0
  610. /package/{lib → esm}/models/attributes/AttributeCollection.js.flow +0 -0
  611. /package/{lib → esm}/models/attributes/AttributeContent.js.flow +0 -0
  612. /package/{lib → esm}/models/attributes/AttributeDataHelper.js.flow +0 -0
  613. /package/{lib → esm}/models/attributes/AttributeModel.js.flow +0 -0
  614. /package/{types → esm}/models/attributes/AttributeSetModel.d.ts +0 -0
  615. /package/{lib → esm}/models/attributes/AttributeSetModel.js.flow +0 -0
  616. /package/{lib → esm}/models/attributes/BooleanAttributeModel.js.flow +0 -0
  617. /package/{types → esm}/models/attributes/CaptchaAttributeModel.d.ts +0 -0
  618. /package/{lib → esm}/models/attributes/CaptchaAttributeModel.js.flow +0 -0
  619. /package/{lib → esm}/models/attributes/ChoiceAttributeModel.js.flow +0 -0
  620. /package/{lib → esm}/models/attributes/ChoiceAttributeOptionCollection.js.flow +0 -0
  621. /package/{lib → esm}/models/attributes/ChoiceAttributeOptionModel.js.flow +0 -0
  622. /package/{types → esm}/models/attributes/CompositeAttributeChildCollection.d.ts +0 -0
  623. /package/{lib → esm}/models/attributes/CompositeAttributeChildCollection.js.flow +0 -0
  624. /package/{types → esm}/models/attributes/CompositeAttributeModel.d.ts +0 -0
  625. /package/{lib → esm}/models/attributes/CompositeAttributeModel.js.flow +0 -0
  626. /package/{lib → esm}/models/attributes/DatetimeAttributeModel.js.flow +0 -0
  627. /package/{types → esm}/models/attributes/HelptextAttributeModel.d.ts +0 -0
  628. /package/{lib → esm}/models/attributes/HelptextAttributeModel.js.flow +0 -0
  629. /package/{types → esm}/models/attributes/LabelAttributeModel.d.ts +0 -0
  630. /package/{lib → esm}/models/attributes/LabelAttributeModel.js.flow +0 -0
  631. /package/{types → esm}/models/attributes/MemoAttributeModel.d.ts +0 -0
  632. /package/{lib → esm}/models/attributes/MemoAttributeModel.js.flow +0 -0
  633. /package/{types → esm}/models/attributes/MoneyAttributeModel.d.ts +0 -0
  634. /package/{lib → esm}/models/attributes/MoneyAttributeModel.js.flow +0 -0
  635. /package/{types → esm}/models/attributes/NumberAttributeModel.d.ts +0 -0
  636. /package/{lib → esm}/models/attributes/NumberAttributeModel.js.flow +0 -0
  637. /package/{lib → esm}/models/attributes/PasswordAttributeModel.js.flow +0 -0
  638. /package/{types → esm}/models/attributes/StringAttributeModel.d.ts +0 -0
  639. /package/{lib → esm}/models/attributes/StringAttributeModel.js.flow +0 -0
  640. /package/{lib → esm}/models/attributes/UploadAttributeModel.js.flow +0 -0
  641. /package/{types → esm}/models/attributes/XMLAttributeModel.d.ts +0 -0
  642. /package/{lib → esm}/models/attributes/XMLAttributeModel.js.flow +0 -0
  643. /package/{lib → esm}/models/attributes/__mock__/form.js.flow +0 -0
  644. /package/{lib → esm}/models/attributes/__mock__/list.js.flow +0 -0
  645. /package/{lib → esm}/models/attributes/__tests__/AttributeCollection.spec.js.flow +0 -0
  646. /package/{lib → esm}/models/attributes/__tests__/AttributeCollectionComposite.spec.js.flow +0 -0
  647. /package/{lib → esm}/models/attributes/__tests__/AttributeContent.spec.js.flow +0 -0
  648. /package/{lib → esm}/models/attributes/__tests__/AttributeDataHelper.spec.js.flow +0 -0
  649. /package/{lib → esm}/models/attributes/__tests__/AttributeModel.spec.js.flow +0 -0
  650. /package/{lib → esm}/models/attributes/__tests__/AttributeSetModel.spec.js.flow +0 -0
  651. /package/{lib → esm}/models/attributes/__tests__/BooleanAttributeModel.spec.js.flow +0 -0
  652. /package/{lib → esm}/models/attributes/__tests__/CaptchaAttributeModel.spec.js.flow +0 -0
  653. /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeModel.spec.js.flow +0 -0
  654. /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionCollection.spec.js.flow +0 -0
  655. /package/{lib → esm}/models/attributes/__tests__/ChoiceAttributeOptionModel.spec.js.flow +0 -0
  656. /package/{lib → esm}/models/attributes/__tests__/CompositeAttributeModel.spec.js.flow +0 -0
  657. /package/{lib → esm}/models/attributes/__tests__/DateAttributeModel.spec.js.flow +0 -0
  658. /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel.spec.js.flow +0 -0
  659. /package/{lib → esm}/models/attributes/__tests__/DatetimeAttributeModel_offset.spec.js.flow +0 -0
  660. /package/{lib → esm}/models/attributes/__tests__/HelptextAttributeModel.spec.js.flow +0 -0
  661. /package/{lib → esm}/models/attributes/__tests__/LabelAttributeModel.spec.js.flow +0 -0
  662. /package/{lib → esm}/models/attributes/__tests__/LookupAttributeModel.spec.js.flow +0 -0
  663. /package/{lib → esm}/models/attributes/__tests__/MemoAttributeModel.spec.js.flow +0 -0
  664. /package/{lib → esm}/models/attributes/__tests__/MoneyAttributeModel.spec.js.flow +0 -0
  665. /package/{lib → esm}/models/attributes/__tests__/NumberAttributeModel.spec.js.flow +0 -0
  666. /package/{lib → esm}/models/attributes/__tests__/PasswordAttributeModel.spec.js.flow +0 -0
  667. /package/{lib → esm}/models/attributes/__tests__/StringAttributeModel.spec.js.flow +0 -0
  668. /package/{lib → esm}/models/attributes/__tests__/TimeAttributeModel.spec.js.flow +0 -0
  669. /package/{lib → esm}/models/attributes/__tests__/TimestampModel.spec.js.flow +0 -0
  670. /package/{lib → esm}/models/attributes/__tests__/UploadAttributeModel.spec.js.flow +0 -0
  671. /package/{lib → esm}/models/attributes/__tests__/XMLAttributeModel.spec.js.flow +0 -0
  672. /package/{lib → esm}/models/attributes/__tests__/_createAttribute.spec.js.flow +0 -0
  673. /package/{lib → esm}/models/attributes/__tests__/createAttributeComposite.spec.js.flow +0 -0
  674. /package/{lib → esm}/models/attributes/__tests__/createAttributeDynamicSchema.spec.js.flow +0 -0
  675. /package/{types → esm}/models/attributes/_createAttribute.d.ts +0 -0
  676. /package/{lib → esm}/models/attributes/_createAttribute.js.flow +0 -0
  677. /package/{types → esm}/models/attributes/input-constraints/BSNConstraint.d.ts +0 -0
  678. /package/{lib → esm}/models/attributes/input-constraints/BSNConstraint.js.flow +0 -0
  679. /package/{types → esm}/models/attributes/input-constraints/ConstraintCollection.d.ts +0 -0
  680. /package/{lib → esm}/models/attributes/input-constraints/ConstraintCollection.js.flow +0 -0
  681. /package/{types → esm}/models/attributes/input-constraints/ConstraintModel.d.ts +0 -0
  682. /package/{lib → esm}/models/attributes/input-constraints/ConstraintModel.js.flow +0 -0
  683. /package/{lib → esm}/models/attributes/input-constraints/DateBoundaryConstraint.js.flow +0 -0
  684. /package/{types → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +0 -0
  685. /package/{lib → esm}/models/attributes/input-constraints/DateTimeDateFormatConstraint.js.flow +0 -0
  686. /package/{types → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +0 -0
  687. /package/{lib → esm}/models/attributes/input-constraints/DateTimeTimeFormatConstraint.js.flow +0 -0
  688. /package/{lib → esm}/models/attributes/input-constraints/DatetimeFormatConstraint.js.flow +0 -0
  689. /package/{types → esm}/models/attributes/input-constraints/FileExtensionConstraint.d.ts +0 -0
  690. /package/{lib → esm}/models/attributes/input-constraints/FileExtensionConstraint.js.flow +0 -0
  691. /package/{types → esm}/models/attributes/input-constraints/FileSizeConstraint.d.ts +0 -0
  692. /package/{lib → esm}/models/attributes/input-constraints/FileSizeConstraint.js.flow +0 -0
  693. /package/{types → esm}/models/attributes/input-constraints/IBANConstraint.d.ts +0 -0
  694. /package/{lib → esm}/models/attributes/input-constraints/IBANConstraint.js.flow +0 -0
  695. /package/{types → esm}/models/attributes/input-constraints/MandatoryConstraint.d.ts +0 -0
  696. /package/{lib → esm}/models/attributes/input-constraints/MandatoryConstraint.js.flow +0 -0
  697. /package/{lib → esm}/models/attributes/input-constraints/MandatoryRangeConstraint.js.flow +0 -0
  698. /package/{lib → esm}/models/attributes/input-constraints/NumberBoundaryConstraint.js.flow +0 -0
  699. /package/{types → esm}/models/attributes/input-constraints/NumberFormatConstraint.d.ts +0 -0
  700. /package/{lib → esm}/models/attributes/input-constraints/NumberFormatConstraint.js.flow +0 -0
  701. /package/{types → esm}/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +0 -0
  702. /package/{lib → esm}/models/attributes/input-constraints/NumberGroupingConstraint.js.flow +0 -0
  703. /package/{types → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +0 -0
  704. /package/{lib → esm}/models/attributes/input-constraints/PasswordConfirmConstraint.js.flow +0 -0
  705. /package/{types → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +0 -0
  706. /package/{lib → esm}/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.js.flow +0 -0
  707. /package/{types → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +0 -0
  708. /package/{lib → esm}/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.js.flow +0 -0
  709. /package/{types → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +0 -0
  710. /package/{lib → esm}/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.js.flow +0 -0
  711. /package/{types → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +0 -0
  712. /package/{lib → esm}/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.js.flow +0 -0
  713. /package/{lib → esm}/models/attributes/input-constraints/RangeConstraint.js.flow +0 -0
  714. /package/{types → esm}/models/attributes/input-constraints/RegexConstraint.d.ts +0 -0
  715. /package/{lib → esm}/models/attributes/input-constraints/RegexConstraint.js.flow +0 -0
  716. /package/{lib → esm}/models/attributes/input-constraints/StringLengthConstraint.js.flow +0 -0
  717. /package/{types → esm}/models/attributes/input-constraints/XMLConstraint.d.ts +0 -0
  718. /package/{lib → esm}/models/attributes/input-constraints/XMLConstraint.js.flow +0 -0
  719. /package/{lib → esm}/models/attributes/input-constraints/__tests__/BSNConstraint.spec.js.flow +0 -0
  720. /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintCollection.spec.js.flow +0 -0
  721. /package/{lib → esm}/models/attributes/input-constraints/__tests__/ConstraintModel.spec.js.flow +0 -0
  722. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateBoundaryConstraint.spec.js.flow +0 -0
  723. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeDateFormatConstraint.spec.js.flow +0 -0
  724. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DateTimeTimeFormatConstraint.spec.js.flow +0 -0
  725. /package/{lib → esm}/models/attributes/input-constraints/__tests__/DatetimeFormatConstraint.spec.js.flow +0 -0
  726. /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileExtensionConstraint.spec.js.flow +0 -0
  727. /package/{lib → esm}/models/attributes/input-constraints/__tests__/FileSizeConstraint.spec.js.flow +0 -0
  728. /package/{lib → esm}/models/attributes/input-constraints/__tests__/IBANConstraint.spec.js.flow +0 -0
  729. /package/{lib → esm}/models/attributes/input-constraints/__tests__/MandatoryConstraint.spec.js.flow +0 -0
  730. /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberBoundaryConstraint.spec.js.flow +0 -0
  731. /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberFormatConstraint.spec.js.flow +0 -0
  732. /package/{lib → esm}/models/attributes/input-constraints/__tests__/NumberGroupingConstraint.spec.js.flow +0 -0
  733. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordConfirmConstraint.spec.js.flow +0 -0
  734. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordLowerAndUpperCaseConstraint.spec.js.flow +0 -0
  735. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinNumericCharactersConstraint.spec.js.flow +0 -0
  736. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordMinSpecialCharactersConstraint.spec.js.flow +0 -0
  737. /package/{lib → esm}/models/attributes/input-constraints/__tests__/PasswordThreeConsecutiveCharactersNotAllowedConstraint.spec.js.flow +0 -0
  738. /package/{lib → esm}/models/attributes/input-constraints/__tests__/RegexConstraint.spec.js.flow +0 -0
  739. /package/{lib → esm}/models/attributes/input-constraints/__tests__/StringLengthConstraint.spec.js.flow +0 -0
  740. /package/{lib → esm}/models/attributes/input-constraints/__tests__/XMLConstraint.spec.js.flow +0 -0
  741. /package/{types → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +0 -0
  742. /package/{lib → esm}/models/attributes/layouthint-rules/BaseLayoutHintRule.js.flow +0 -0
  743. /package/{lib → esm}/models/attributes/layouthint-rules/DependentAttribute.js.flow +0 -0
  744. /package/{lib → esm}/models/attributes/layouthint-rules/LayoutHintRuleCollection.js.flow +0 -0
  745. /package/{types → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +0 -0
  746. /package/{lib → esm}/models/attributes/layouthint-rules/RemainingTotalUploadSize.js.flow +0 -0
  747. /package/{lib → esm}/models/attributes/layouthint-rules/__mock__/MockedCollectionFactory.js.flow +0 -0
  748. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/BaseLayoutHintRule.spec.js.flow +0 -0
  749. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/DependentAttribute.spec.js.flow +0 -0
  750. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/LayoutHintRuleCollection.spec.js.flow +0 -0
  751. /package/{lib → esm}/models/attributes/layouthint-rules/__tests__/RemainingTotalUploadSize.spec.js.flow +0 -0
  752. /package/{lib → esm}/models/base/BaseCollection.js.flow +0 -0
  753. /package/{lib → esm}/models/base/BaseModel.js.flow +0 -0
  754. /package/{types → esm}/models/base/ResourceCollection.d.ts +0 -0
  755. /package/{lib → esm}/models/base/ResourceCollection.js.flow +0 -0
  756. /package/{lib → esm}/models/base/ResourceModel.js.flow +0 -0
  757. /package/{lib → esm}/models/base/__tests__/BaseCollection.spec.js.flow +0 -0
  758. /package/{lib → esm}/models/base/__tests__/BaseModel.spec.js.flow +0 -0
  759. /package/{lib → esm}/models/base/__tests__/ResourceCollection.spec.js.flow +0 -0
  760. /package/{lib → esm}/models/base/__tests__/ResourceModel.spec.js.flow +0 -0
  761. /package/{lib → esm}/models/caseview/CaseViewModel.js.flow +0 -0
  762. /package/{lib → esm}/models/caseview/__mock__/caseview.js.flow +0 -0
  763. /package/{lib → esm}/models/caseview/__tests__/CaseViewModel.spec.js.flow +0 -0
  764. /package/{lib → esm}/models/concepts/BusinessScenarioModel.js.flow +0 -0
  765. /package/{lib → esm}/models/concepts/ConceptDetailModel.js.flow +0 -0
  766. /package/{types → esm}/models/concepts/ConceptIndexModel.d.ts +0 -0
  767. /package/{lib → esm}/models/concepts/ConceptIndexModel.js.flow +0 -0
  768. /package/{lib → esm}/models/concepts/ConceptLinkModel.js.flow +0 -0
  769. /package/{lib → esm}/models/concepts/ConceptRelationCollection.js.flow +0 -0
  770. /package/{lib → esm}/models/concepts/ConceptRelationModel.js.flow +0 -0
  771. /package/{lib → esm}/models/concepts/ConceptTypeDetailModel.js.flow +0 -0
  772. /package/{types → esm}/models/concepts/SourceReferenceCollection.d.ts +0 -0
  773. /package/{lib → esm}/models/concepts/SourceReferenceCollection.js.flow +0 -0
  774. /package/{types → esm}/models/concepts/SourceReferenceModel.d.ts +0 -0
  775. /package/{lib → esm}/models/concepts/SourceReferenceModel.js.flow +0 -0
  776. /package/{lib → esm}/models/concepts/__mock__/business_scenario.js.flow +0 -0
  777. /package/{lib → esm}/models/concepts/__mock__/conceptdetail.js.flow +0 -0
  778. /package/{lib → esm}/models/concepts/__mock__/conceptindex.js.flow +0 -0
  779. /package/{lib → esm}/models/concepts/__mock__/concepttype.js.flow +0 -0
  780. /package/{lib → esm}/models/concepts/__mock__/concepttype_hierarchy.js.flow +0 -0
  781. /package/{lib → esm}/models/concepts/__mock__/relation_with_props_and_tf_data.js.flow +0 -0
  782. /package/{lib → esm}/models/concepts/__tests__/BusinessScenarioModel.spec.js.flow +0 -0
  783. /package/{lib → esm}/models/concepts/__tests__/ConceptDetailModel.spec.js.flow +0 -0
  784. /package/{lib → esm}/models/concepts/__tests__/ConceptIndexModel.spec.js.flow +0 -0
  785. /package/{lib → esm}/models/concepts/__tests__/ConceptLinkModel.spec.js.flow +0 -0
  786. /package/{lib → esm}/models/concepts/__tests__/ConceptRelationCollection.spec.js.flow +0 -0
  787. /package/{lib → esm}/models/concepts/__tests__/ConceptRelationModel.spec.js.flow +0 -0
  788. /package/{lib → esm}/models/concepts/__tests__/ConceptTypeDetailModel.spec.js.flow +0 -0
  789. /package/{lib → esm}/models/concepts/__tests__/SourceReferenceCollection.spec.js.flow +0 -0
  790. /package/{lib → esm}/models/concepts/__tests__/SourceReferenceModel.spec.js.flow +0 -0
  791. /package/{types → esm}/models/content/ContentIndexModel.d.ts +0 -0
  792. /package/{lib → esm}/models/content/ContentIndexModel.js.flow +0 -0
  793. /package/{lib → esm}/models/content/ContentLinkModel.js.flow +0 -0
  794. /package/{lib → esm}/models/content/ContentModel.js.flow +0 -0
  795. /package/{lib → esm}/models/content/ContentTOCModel.js.flow +0 -0
  796. /package/{types → esm}/models/content/ContentTypeModel.d.ts +0 -0
  797. /package/{lib → esm}/models/content/ContentTypeModel.js.flow +0 -0
  798. /package/{lib → esm}/models/content/SectionModel.js.flow +0 -0
  799. /package/{lib → esm}/models/content/SubSectionModel.js.flow +0 -0
  800. /package/{lib → esm}/models/content/__tests__/ContentIndexModel.spec.js.flow +0 -0
  801. /package/{lib → esm}/models/content/__tests__/ContentLinkModel.spec.js.flow +0 -0
  802. /package/{lib → esm}/models/content/__tests__/ContentModel.spec.js.flow +0 -0
  803. /package/{lib → esm}/models/contentconfiguration/ContentConfiguration.js.flow +0 -0
  804. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationElements.js.flow +0 -0
  805. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationEndResults.js.flow +0 -0
  806. /package/{types → esm}/models/contentconfiguration/ContentConfigurationQuestions.d.ts +0 -0
  807. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationQuestions.js.flow +0 -0
  808. /package/{lib → esm}/models/contentconfiguration/ContentConfigurationResults.js.flow +0 -0
  809. /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationElements.spec.js.flow +0 -0
  810. /package/{lib → esm}/models/contentconfiguration/__tests__/ContentConfigurationResults.spec.js.flow +0 -0
  811. /package/{lib → esm}/models/detail/DetailModel.js.flow +0 -0
  812. /package/{lib → esm}/models/detail/__tests__/DetailModel.spec.js.flow +0 -0
  813. /package/{lib → esm}/models/error/ErrorCollection.js.flow +0 -0
  814. /package/{types → esm}/models/error/ErrorModel.d.ts +0 -0
  815. /package/{lib → esm}/models/error/ErrorModel.js.flow +0 -0
  816. /package/{lib → esm}/models/error/ErrorResponse.js.flow +0 -0
  817. /package/{lib → esm}/models/error/__tests__/ErrorCollection.spec.js.flow +0 -0
  818. /package/{lib → esm}/models/error/__tests__/ErrorModel.spec.js.flow +0 -0
  819. /package/{types → esm}/models/filters/AssignmentFilterModel.d.ts +0 -0
  820. /package/{lib → esm}/models/filters/AssignmentFilterModel.js.flow +0 -0
  821. /package/{lib → esm}/models/filters/BaseFilterModel.js.flow +0 -0
  822. /package/{types → esm}/models/filters/ConceptIndexFilterModel.d.ts +0 -0
  823. /package/{lib → esm}/models/filters/ConceptIndexFilterModel.js.flow +0 -0
  824. /package/{types → esm}/models/filters/FilterCollection.d.ts +0 -0
  825. /package/{lib → esm}/models/filters/FilterCollection.js.flow +0 -0
  826. /package/{types → esm}/models/filters/FilterModel.d.ts +0 -0
  827. /package/{lib → esm}/models/filters/FilterModel.js.flow +0 -0
  828. /package/{types → esm}/models/filters/RangeFilterModel.d.ts +0 -0
  829. /package/{lib → esm}/models/filters/RangeFilterModel.js.flow +0 -0
  830. /package/{types → esm}/models/filters/StringFilterModel.d.ts +0 -0
  831. /package/{lib → esm}/models/filters/StringFilterModel.js.flow +0 -0
  832. /package/{lib → esm}/models/filters/__tests__/AssignmentFilterModel.spec.js.flow +0 -0
  833. /package/{lib → esm}/models/filters/__tests__/FilterCollection.spec.js.flow +0 -0
  834. /package/{lib → esm}/models/filters/__tests__/FilterModel.spec.js.flow +0 -0
  835. /package/{lib → esm}/models/filters/__tests__/RangeFilterModel.spec.js.flow +0 -0
  836. /package/{lib → esm}/models/filters/__tests__/ZipcodeFilter.spec.js.flow +0 -0
  837. /package/{lib → esm}/models/form/FormModel.js.flow +0 -0
  838. /package/{lib → esm}/models/form/FormObjectModel.js.flow +0 -0
  839. /package/{lib → esm}/models/form/__mock__/form.js.flow +0 -0
  840. /package/{lib → esm}/models/form/__tests__/FormModel.getters.spec.js.flow +0 -0
  841. /package/{lib → esm}/models/form/__tests__/FormModel.instrument.spec.js.flow +0 -0
  842. /package/{lib → esm}/models/form/__tests__/FormModel.repeating.spec.js.flow +0 -0
  843. /package/{lib → esm}/models/form/__tests__/FormModel.selfhref.spec.js.flow +0 -0
  844. /package/{lib → esm}/models/form/__tests__/FormModel.spec.js.flow +0 -0
  845. /package/{lib → esm}/models/form/__tests__/FormModel.unknown-repeat.spec.js.flow +0 -0
  846. /package/{lib → esm}/models/form/__tests__/FormObjectModel.spec.js.flow +0 -0
  847. /package/{lib → esm}/models/form/__tests__/FormResultData.spec.js.flow +0 -0
  848. /package/{lib → esm}/models/form/__tests__/FormWithContent.spec.js.flow +0 -0
  849. /package/{lib → esm}/models/grouping/GroupingModel.js.flow +0 -0
  850. /package/{lib → esm}/models/grouping/__tests__/GroupingModel.spec.js.flow +0 -0
  851. /package/{lib → esm}/models/href/Href.js.flow +0 -0
  852. /package/{lib → esm}/models/href/ListHref.js.flow +0 -0
  853. /package/{lib → esm}/models/href/__tests__/Href.spec.js.flow +0 -0
  854. /package/{lib → esm}/models/href/__tests__/ListHref.spec.js.flow +0 -0
  855. /package/{types → esm}/models/index.d.ts +0 -0
  856. /package/{lib → esm}/models/index.js.flow +0 -0
  857. /package/{lib → esm}/models/layouthint/LayoutHintCollection.js.flow +0 -0
  858. /package/{lib → esm}/models/layouthint/__tests__/LayoutHintCollection.spec.js.flow +0 -0
  859. /package/{lib → esm}/models/links/LinkCollection.js.flow +0 -0
  860. /package/{lib → esm}/models/links/LinkModel.js.flow +0 -0
  861. /package/{lib → esm}/models/links/__tests__/LinkCollection.spec.js.flow +0 -0
  862. /package/{lib → esm}/models/links/__tests__/LinkModel.spec.js.flow +0 -0
  863. /package/{lib → esm}/models/links/__tests__/normalizeLinkJSON.spec.js.flow +0 -0
  864. /package/{types → esm}/models/links/normalizeLinkJSON.d.ts +0 -0
  865. /package/{lib → esm}/models/links/normalizeLinkJSON.js.flow +0 -0
  866. /package/{lib → esm}/models/list/ListDetailModel.js.flow +0 -0
  867. /package/{lib → esm}/models/list/ListHeaderModel.js.flow +0 -0
  868. /package/{types → esm}/models/list/ListItemCollection.d.ts +0 -0
  869. /package/{lib → esm}/models/list/ListItemCollection.js.flow +0 -0
  870. /package/{types → esm}/models/list/ListItemModel.d.ts +0 -0
  871. /package/{lib → esm}/models/list/ListItemModel.js.flow +0 -0
  872. /package/{lib → esm}/models/list/ListModel.js.flow +0 -0
  873. /package/{lib → esm}/models/list/__mock__/caselist.js.flow +0 -0
  874. /package/{lib → esm}/models/list/__tests__/ListDetailModel.hierarchy.spec.js.flow +0 -0
  875. /package/{lib → esm}/models/list/__tests__/ListDetailModel.spec.js.flow +0 -0
  876. /package/{lib → esm}/models/list/__tests__/ListItemCollection.spec.js.flow +0 -0
  877. /package/{lib → esm}/models/list/__tests__/ListModel.spec.js.flow +0 -0
  878. /package/{lib → esm}/models/list/__tests__/ListResultDetail.spec.js.flow +0 -0
  879. /package/{types → esm}/models/lookup/LookupOptionCollection.d.ts +0 -0
  880. /package/{lib → esm}/models/lookup/LookupOptionCollection.js.flow +0 -0
  881. /package/{types → esm}/models/lookup/LookupOptionsModel.d.ts +0 -0
  882. /package/{lib → esm}/models/lookup/LookupOptionsModel.js.flow +0 -0
  883. /package/{lib → esm}/models/lookup/__tests__/LookupOptionCollection.spec.js.flow +0 -0
  884. /package/{lib → esm}/models/lookup/__tests__/LookupOptionsModel.spec.js.flow +0 -0
  885. /package/{types → esm}/models/modelcatalog/ModelCatalogModel.d.ts +0 -0
  886. /package/{lib → esm}/models/modelcatalog/ModelCatalogModel.js.flow +0 -0
  887. /package/{types → esm}/models/modelcatalog/ModelCategoryCollection.d.ts +0 -0
  888. /package/{lib → esm}/models/modelcatalog/ModelCategoryCollection.js.flow +0 -0
  889. /package/{types → esm}/models/modelcatalog/ModelCategoryModel.d.ts +0 -0
  890. /package/{lib → esm}/models/modelcatalog/ModelCategoryModel.js.flow +0 -0
  891. /package/{lib → esm}/models/modelcatalog/__mock__/modelcatalog.js.flow +0 -0
  892. /package/{lib → esm}/models/modelcatalog/__tests__/ModelCatalogModel.spec.js.flow +0 -0
  893. /package/{lib → esm}/models/paging/PagesizeModel.js.flow +0 -0
  894. /package/{types → esm}/models/paging/PagingModel.d.ts +0 -0
  895. /package/{lib → esm}/models/paging/PagingModel.js.flow +0 -0
  896. /package/{lib → esm}/models/paging/__tests__/PageSizeModel.spec.js.flow +0 -0
  897. /package/{lib → esm}/models/paging/__tests__/PagingModel.spec.js.flow +0 -0
  898. /package/{lib → esm}/models/panels/GroupingPanelModel.js.flow +0 -0
  899. /package/{lib → esm}/models/panels/__tests__/GroupingPanelModel.spec.js.flow +0 -0
  900. /package/{types → esm}/models/parameter/Parameter.d.ts +0 -0
  901. /package/{lib → esm}/models/parameter/Parameter.js.flow +0 -0
  902. /package/{lib → esm}/models/parameter/__tests__/Parameter.spec.js.flow +0 -0
  903. /package/{types → esm}/models/process/ProcessStatusSettingsModel.d.ts +0 -0
  904. /package/{lib → esm}/models/process/ProcessStatusSettingsModel.js.flow +0 -0
  905. /package/{lib → esm}/models/process/__tests__/ProcessStatusSettingsModel.spec.js.flow +0 -0
  906. /package/{types → esm}/models/resolveModel.d.ts +0 -0
  907. /package/{lib → esm}/models/resolveModel.js.flow +0 -0
  908. /package/{types → esm}/models/search/CaseSearchModel.d.ts +0 -0
  909. /package/{lib → esm}/models/search/CaseSearchModel.js.flow +0 -0
  910. /package/{lib → esm}/models/search/__tests__/CaseSearchModel.spec.js.flow +0 -0
  911. /package/{lib → esm}/models/sorting/SortOptionModel.js.flow +0 -0
  912. /package/{lib → esm}/models/sorting/SortingModel.js.flow +0 -0
  913. /package/{lib → esm}/models/sorting/__tests__/SortingModel.spec.js.flow +0 -0
  914. /package/{lib → esm}/models/tab/TabModel.js.flow +0 -0
  915. /package/{lib → esm}/models/tab/__mock__/tab.js.flow +0 -0
  916. /package/{lib → esm}/models/tab/__mock__/tabPerson.js.flow +0 -0
  917. /package/{lib → esm}/models/tab/__tests__/TabModel.spec.js.flow +0 -0
  918. /package/{types → esm}/models/taskgroup/TaskGroupCollection.d.ts +0 -0
  919. /package/{lib → esm}/models/taskgroup/TaskGroupCollection.js.flow +0 -0
  920. /package/{types → esm}/models/taskgroup/TaskGroupModel.d.ts +0 -0
  921. /package/{lib → esm}/models/taskgroup/TaskGroupModel.js.flow +0 -0
  922. /package/{lib → esm}/models/taskgroup/__mock__/taskgroup.js.flow +0 -0
  923. /package/{lib → esm}/models/taskgroup/__tests__/TaskGroupModel.spec.js.flow +0 -0
  924. /package/{types → esm}/models/types.d.ts +0 -0
  925. /package/{lib → esm}/models/types.js.flow +0 -0
  926. /package/{types → esm}/models/user/UserModel.d.ts +0 -0
  927. /package/{lib → esm}/models/user/UserModel.js.flow +0 -0
  928. /package/{types → esm}/models/user/UserProfileModel.d.ts +0 -0
  929. /package/{lib → esm}/models/user/UserProfileModel.js.flow +0 -0
  930. /package/{lib → esm}/models/user/UserServicesModel.js.flow +0 -0
  931. /package/{lib → esm}/models/user/__tests__/UserModel.spec.js.flow +0 -0
  932. /package/{lib → esm}/models/user/__tests__/UserProfileModel.spec.js.flow +0 -0
  933. /package/{lib → esm}/models/user/__tests__/UserServicesModel.spec.js.flow +0 -0
  934. /package/{lib → esm}/modularui/Authenticate.js.flow +0 -0
  935. /package/{types → esm}/modularui/CaptchaRequest.d.ts +0 -0
  936. /package/{lib → esm}/modularui/CaptchaRequest.js.flow +0 -0
  937. /package/{types → esm}/modularui/ModularUIError.d.ts +0 -0
  938. /package/{lib → esm}/modularui/ModularUIError.js.flow +0 -0
  939. /package/{lib → esm}/modularui/ModularUIRequest.js.flow +0 -0
  940. /package/{lib → esm}/modularui/ModularUIResponse.js.flow +0 -0
  941. /package/{types → esm}/modularui/UploadRequest.d.ts +0 -0
  942. /package/{lib → esm}/modularui/UploadRequest.js.flow +0 -0
  943. /package/{lib → esm}/modularui/__tests__/CustomContextPath.spec.js.flow +0 -0
  944. /package/{lib → esm}/modularui/__tests__/ModularUIError.spec.js.flow +0 -0
  945. /package/{lib → esm}/modularui/__tests__/ModularUIRequest.spec.js.flow +0 -0
  946. /package/{types → esm}/modularui/index.d.ts +0 -0
  947. /package/{lib → esm}/modularui/index.js.flow +0 -0
  948. /package/{types → esm}/modularui/types.d.ts +0 -0
  949. /package/{lib → esm}/modularui/types.js.flow +0 -0
  950. /package/{types → esm}/react/ErrorBoundary.d.ts +0 -0
  951. /package/{lib → esm}/react/ErrorBoundary.js.flow +0 -0
  952. /package/{types → esm}/react/ErrorBoundaryFallback.d.ts +0 -0
  953. /package/{lib → esm}/react/ErrorBoundaryFallback.js.flow +0 -0
  954. /package/{types → esm}/react/index.d.ts +0 -0
  955. /package/{lib → esm}/react/index.js.flow +0 -0
  956. /package/{types → esm}/react/utils.d.ts +0 -0
  957. /package/{lib → esm}/react/utils.js.flow +0 -0
  958. /package/{types → esm}/react-client/Init.d.ts +0 -0
  959. /package/{lib → esm}/react-client/Init.js.flow +0 -0
  960. /package/{types → esm}/react-client/client.d.ts +0 -0
  961. /package/{lib → esm}/react-client/client.js.flow +0 -0
  962. /package/{types → esm}/react-client/contextPath.d.ts +0 -0
  963. /package/{lib → esm}/react-client/contextPath.js.flow +0 -0
  964. /package/{types → esm}/react-client/index.d.ts +0 -0
  965. /package/{lib → esm}/react-client/index.js.flow +0 -0
  966. /package/{types → esm}/react-client/rehydrate.d.ts +0 -0
  967. /package/{lib → esm}/react-client/rehydrate.js.flow +0 -0
  968. /package/{lib → esm}/react-server/__tests__/htmlpage.spec.js.flow +0 -0
  969. /package/{lib → esm}/react-server/__tests__/serverUtil.spec.js.flow +0 -0
  970. /package/{types → esm}/react-server/contextPath.d.ts +0 -0
  971. /package/{lib → esm}/react-server/contextPath.js.flow +0 -0
  972. /package/{types → esm}/react-server/createSSRComplete.d.ts +0 -0
  973. /package/{lib → esm}/react-server/createSSRComplete.js.flow +0 -0
  974. /package/{types → esm}/react-server/htmlpage.d.ts +0 -0
  975. /package/{lib → esm}/react-server/htmlpage.js.flow +0 -0
  976. /package/{types → esm}/react-server/index.d.ts +0 -0
  977. /package/{lib → esm}/react-server/index.js.flow +0 -0
  978. /package/{types → esm}/react-server/renderSSRComplete.d.ts +0 -0
  979. /package/{lib → esm}/react-server/renderSSRComplete.js.flow +0 -0
  980. /package/{types → esm}/react-server/renderSSRMinimal.d.ts +0 -0
  981. /package/{lib → esm}/react-server/renderSSRMinimal.js.flow +0 -0
  982. /package/{types → esm}/react-server/requestInformation.d.ts +0 -0
  983. /package/{lib → esm}/react-server/requestInformation.js.flow +0 -0
  984. /package/{types → esm}/react-server/serverNoSSR.d.ts +0 -0
  985. /package/{lib → esm}/react-server/serverNoSSR.js.flow +0 -0
  986. /package/{types → esm}/react-server/serverSSR.d.ts +0 -0
  987. /package/{lib → esm}/react-server/serverSSR.js.flow +0 -0
  988. /package/{lib → esm}/react-server/serverUtil.js.flow +0 -0
  989. /package/{types → esm}/react-theme/ThemeProvider.d.ts +0 -0
  990. /package/{lib → esm}/react-theme/ThemeProvider.js.flow +0 -0
  991. /package/{lib → esm}/react-theme/__tests__/ThemeProvider.spec.js.flow +0 -0
  992. /package/{lib → esm}/react-theme/__tests__/createTheme.spec.js.flow +0 -0
  993. /package/{types → esm}/react-theme/createTheme.d.ts +0 -0
  994. /package/{lib → esm}/react-theme/createTheme.js.flow +0 -0
  995. /package/{types → esm}/react-theme/index.d.ts +0 -0
  996. /package/{lib → esm}/react-theme/index.js.flow +0 -0
  997. /package/{types → esm}/react-theme/types.d.ts +0 -0
  998. /package/{lib → esm}/react-theme/types.js.flow +0 -0
  999. /package/{types → esm}/react-theme/useTheme.d.ts +0 -0
  1000. /package/{lib → esm}/react-theme/useTheme.js.flow +0 -0
  1001. /package/{lib → esm}/react-theme/utils/__tests__/background.spec.js.flow +0 -0
  1002. /package/{lib → esm}/react-theme/utils/__tests__/colors.spec.js.flow +0 -0
  1003. /package/{lib → esm}/react-theme/utils/__tests__/contrast.spec.js.flow +0 -0
  1004. /package/{lib → esm}/react-theme/utils/__tests__/corners.spec.js.flow +0 -0
  1005. /package/{lib → esm}/react-theme/utils/__tests__/spacers.spec.js.flow +0 -0
  1006. /package/{lib → esm}/react-theme/utils/__tests__/themeProps.spec.js.flow +0 -0
  1007. /package/{lib → esm}/react-theme/utils/background.js.flow +0 -0
  1008. /package/{lib → esm}/react-theme/utils/colors.js.flow +0 -0
  1009. /package/{lib → esm}/react-theme/utils/contrast.js.flow +0 -0
  1010. /package/{lib → esm}/react-theme/utils/corners.js.flow +0 -0
  1011. /package/{lib → esm}/react-theme/utils/spacers.js.flow +0 -0
  1012. /package/{lib → esm}/react-theme/utils/themeProps.js.flow +0 -0
  1013. /package/{types → esm}/redux/_i18n/I18nActions.d.ts +0 -0
  1014. /package/{lib → esm}/redux/_i18n/I18nActions.js.flow +0 -0
  1015. /package/{types → esm}/redux/_i18n/I18nReducer.d.ts +0 -0
  1016. /package/{lib → esm}/redux/_i18n/I18nReducer.js.flow +0 -0
  1017. /package/{lib → esm}/redux/_i18n/__tests__/actions.spec.js.flow +0 -0
  1018. /package/{lib → esm}/redux/_i18n/__tests__/reducer.spec.js.flow +0 -0
  1019. /package/{types → esm}/redux/_i18n/index.d.ts +0 -0
  1020. /package/{lib → esm}/redux/_i18n/index.js.flow +0 -0
  1021. /package/{types → esm}/redux/_i18n/types.d.ts +0 -0
  1022. /package/{lib → esm}/redux/_i18n/types.js.flow +0 -0
  1023. /package/{lib → esm}/redux/_modularui/ModularUIActions.js.flow +0 -0
  1024. /package/{types → esm}/redux/_modularui/ModularUIConnector.d.ts +0 -0
  1025. /package/{lib → esm}/redux/_modularui/ModularUIConnector.js.flow +0 -0
  1026. /package/{types → esm}/redux/_modularui/ModularUIMiddleware.d.ts +0 -0
  1027. /package/{lib → esm}/redux/_modularui/ModularUIMiddleware.js.flow +0 -0
  1028. /package/{types → esm}/redux/_modularui/ModularUIReducer.d.ts +0 -0
  1029. /package/{lib → esm}/redux/_modularui/ModularUIReducer.js.flow +0 -0
  1030. /package/{types → esm}/redux/_modularui/ModularUISelectors.d.ts +0 -0
  1031. /package/{lib → esm}/redux/_modularui/ModularUISelectors.js.flow +0 -0
  1032. /package/{types → esm}/redux/_modularui/ModularUIUtils.d.ts +0 -0
  1033. /package/{lib → esm}/redux/_modularui/ModularUIUtils.js.flow +0 -0
  1034. /package/{lib → esm}/redux/_modularui/__tests__/actions.spec.js.flow +0 -0
  1035. /package/{lib → esm}/redux/_modularui/__tests__/reducer.spec.js.flow +0 -0
  1036. /package/{lib → esm}/redux/_modularui/__tests__/selectors.spec.js.flow +0 -0
  1037. /package/{types → esm}/redux/_modularui/index.d.ts +0 -0
  1038. /package/{lib → esm}/redux/_modularui/index.js.flow +0 -0
  1039. /package/{lib → esm}/redux/_modularui/types.js.flow +0 -0
  1040. /package/{types → esm}/redux/_modularui/withModularUI.d.ts +0 -0
  1041. /package/{lib → esm}/redux/_modularui/withModularUI.js.flow +0 -0
  1042. /package/{types → esm}/redux/_router/RouterActions.d.ts +0 -0
  1043. /package/{lib → esm}/redux/_router/RouterActions.js.flow +0 -0
  1044. /package/{types → esm}/redux/_router/RouterConnectors.d.ts +0 -0
  1045. /package/{lib → esm}/redux/_router/RouterConnectors.js.flow +0 -0
  1046. /package/{types → esm}/redux/_router/RouterMiddleware.d.ts +0 -0
  1047. /package/{lib → esm}/redux/_router/RouterMiddleware.js.flow +0 -0
  1048. /package/{types → esm}/redux/_router/RouterReducer.d.ts +0 -0
  1049. /package/{lib → esm}/redux/_router/RouterReducer.js.flow +0 -0
  1050. /package/{lib → esm}/redux/_router/__tests__/actions.spec.js.flow +0 -0
  1051. /package/{lib → esm}/redux/_router/__tests__/hooks.spec.js.flow +0 -0
  1052. /package/{lib → esm}/redux/_router/__tests__/middleware.spec.js.flow +0 -0
  1053. /package/{lib → esm}/redux/_router/__tests__/reducer.spec.js.flow +0 -0
  1054. /package/{types → esm}/redux/_router/index.d.ts +0 -0
  1055. /package/{lib → esm}/redux/_router/index.js.flow +0 -0
  1056. /package/{types → esm}/redux/_router/types.d.ts +0 -0
  1057. /package/{lib → esm}/redux/_router/types.js.flow +0 -0
  1058. /package/{types → esm}/redux/actions/Application.d.ts +0 -0
  1059. /package/{lib → esm}/redux/actions/Application.js.flow +0 -0
  1060. /package/{types → esm}/redux/actions/Authorization.d.ts +0 -0
  1061. /package/{lib → esm}/redux/actions/Authorization.js.flow +0 -0
  1062. /package/{types → esm}/redux/actions/Error.d.ts +0 -0
  1063. /package/{lib → esm}/redux/actions/Error.js.flow +0 -0
  1064. /package/{types → esm}/redux/actions/Form.d.ts +0 -0
  1065. /package/{lib → esm}/redux/actions/Form.js.flow +0 -0
  1066. /package/{types → esm}/redux/actions/FormAttributeSet.d.ts +0 -0
  1067. /package/{lib → esm}/redux/actions/FormAttributeSet.js.flow +0 -0
  1068. /package/{types → esm}/redux/actions/FormAttributeSetRepeatable.d.ts +0 -0
  1069. /package/{lib → esm}/redux/actions/FormAttributeSetRepeatable.js.flow +0 -0
  1070. /package/{types → esm}/redux/actions/FormAutosave.d.ts +0 -0
  1071. /package/{lib → esm}/redux/actions/FormAutosave.js.flow +0 -0
  1072. /package/{types → esm}/redux/actions/FormAutosubmit.d.ts +0 -0
  1073. /package/{lib → esm}/redux/actions/FormAutosubmit.js.flow +0 -0
  1074. /package/{types → esm}/redux/actions/FormAutoupdate.d.ts +0 -0
  1075. /package/{lib → esm}/redux/actions/FormAutoupdate.js.flow +0 -0
  1076. /package/{types → esm}/redux/actions/FormValidations.d.ts +0 -0
  1077. /package/{lib → esm}/redux/actions/FormValidations.js.flow +0 -0
  1078. /package/{types → esm}/redux/actions/Modals.d.ts +0 -0
  1079. /package/{lib → esm}/redux/actions/Modals.js.flow +0 -0
  1080. /package/{types → esm}/redux/actions/ModelCatalog.d.ts +0 -0
  1081. /package/{lib → esm}/redux/actions/ModelCatalog.js.flow +0 -0
  1082. /package/{lib → esm}/redux/actions/Notification.js.flow +0 -0
  1083. /package/{types → esm}/redux/actions/Preferences.d.ts +0 -0
  1084. /package/{lib → esm}/redux/actions/Preferences.js.flow +0 -0
  1085. /package/{types → esm}/redux/actions/ProgressIndicator.d.ts +0 -0
  1086. /package/{lib → esm}/redux/actions/ProgressIndicator.js.flow +0 -0
  1087. /package/{types → esm}/redux/actions/SignIn.d.ts +0 -0
  1088. /package/{lib → esm}/redux/actions/SignIn.js.flow +0 -0
  1089. /package/{types → esm}/redux/actions/SignOut.d.ts +0 -0
  1090. /package/{lib → esm}/redux/actions/SignOut.js.flow +0 -0
  1091. /package/{lib → esm}/redux/actions/__tests__/Application.spec.js.flow +0 -0
  1092. /package/{lib → esm}/redux/actions/__tests__/Authorization.spec.js.flow +0 -0
  1093. /package/{lib → esm}/redux/actions/__tests__/CustomErrorResponseHandler.spec.js.flow +0 -0
  1094. /package/{lib → esm}/redux/actions/__tests__/Error-server.spec.js.flow +0 -0
  1095. /package/{lib → esm}/redux/actions/__tests__/Error.spec.js.flow +0 -0
  1096. /package/{lib → esm}/redux/actions/__tests__/Form.spec.js.flow +0 -0
  1097. /package/{lib → esm}/redux/actions/__tests__/Modals.spec.js.flow +0 -0
  1098. /package/{lib → esm}/redux/actions/__tests__/Notification.spec.js.flow +0 -0
  1099. /package/{lib → esm}/redux/actions/__tests__/Preferences.spec.js.flow +0 -0
  1100. /package/{lib → esm}/redux/actions/__tests__/ProgressIndicator.spec.js.flow +0 -0
  1101. /package/{types → esm}/redux/actions/index.d.ts +0 -0
  1102. /package/{lib → esm}/redux/actions/index.js.flow +0 -0
  1103. /package/{types → esm}/redux/connectors/Application.d.ts +0 -0
  1104. /package/{lib → esm}/redux/connectors/Application.js.flow +0 -0
  1105. /package/{types → esm}/redux/connectors/Breadcrumb.d.ts +0 -0
  1106. /package/{lib → esm}/redux/connectors/Breadcrumb.js.flow +0 -0
  1107. /package/{types → esm}/redux/connectors/CaseView.d.ts +0 -0
  1108. /package/{lib → esm}/redux/connectors/CaseView.js.flow +0 -0
  1109. /package/{types → esm}/redux/connectors/ConceptDetail.d.ts +0 -0
  1110. /package/{lib → esm}/redux/connectors/ConceptDetail.js.flow +0 -0
  1111. /package/{types → esm}/redux/connectors/ContentBrowser.d.ts +0 -0
  1112. /package/{lib → esm}/redux/connectors/ContentBrowser.js.flow +0 -0
  1113. /package/{types → esm}/redux/connectors/ContentDetail.d.ts +0 -0
  1114. /package/{lib → esm}/redux/connectors/ContentDetail.js.flow +0 -0
  1115. /package/{types → esm}/redux/connectors/ContentDetailSection.d.ts +0 -0
  1116. /package/{lib → esm}/redux/connectors/ContentDetailSection.js.flow +0 -0
  1117. /package/{types → esm}/redux/connectors/Form.d.ts +0 -0
  1118. /package/{lib → esm}/redux/connectors/Form.js.flow +0 -0
  1119. /package/{types → esm}/redux/connectors/FormAttributeSet.d.ts +0 -0
  1120. /package/{lib → esm}/redux/connectors/FormAttributeSet.js.flow +0 -0
  1121. /package/{types → esm}/redux/connectors/ListDetail.d.ts +0 -0
  1122. /package/{lib → esm}/redux/connectors/ListDetail.js.flow +0 -0
  1123. /package/{types → esm}/redux/connectors/Modal.d.ts +0 -0
  1124. /package/{lib → esm}/redux/connectors/Modal.js.flow +0 -0
  1125. /package/{types → esm}/redux/connectors/ModelCatalog.d.ts +0 -0
  1126. /package/{lib → esm}/redux/connectors/ModelCatalog.js.flow +0 -0
  1127. /package/{types → esm}/redux/connectors/Notification.d.ts +0 -0
  1128. /package/{lib → esm}/redux/connectors/Notification.js.flow +0 -0
  1129. /package/{types → esm}/redux/connectors/PanelRenderer.d.ts +0 -0
  1130. /package/{lib → esm}/redux/connectors/PanelRenderer.js.flow +0 -0
  1131. /package/{types → esm}/redux/connectors/Preferences.d.ts +0 -0
  1132. /package/{lib → esm}/redux/connectors/Preferences.js.flow +0 -0
  1133. /package/{types → esm}/redux/connectors/Progress.d.ts +0 -0
  1134. /package/{lib → esm}/redux/connectors/Progress.js.flow +0 -0
  1135. /package/{types → esm}/redux/connectors/ProgressIndicator.d.ts +0 -0
  1136. /package/{lib → esm}/redux/connectors/ProgressIndicator.js.flow +0 -0
  1137. /package/{types → esm}/redux/connectors/QuickSearch.d.ts +0 -0
  1138. /package/{lib → esm}/redux/connectors/QuickSearch.js.flow +0 -0
  1139. /package/{types → esm}/redux/connectors/SignIn.d.ts +0 -0
  1140. /package/{lib → esm}/redux/connectors/SignIn.js.flow +0 -0
  1141. /package/{types → esm}/redux/connectors/SignOut.d.ts +0 -0
  1142. /package/{lib → esm}/redux/connectors/SignOut.js.flow +0 -0
  1143. /package/{types → esm}/redux/connectors/Tab.d.ts +0 -0
  1144. /package/{lib → esm}/redux/connectors/Tab.js.flow +0 -0
  1145. /package/{types → esm}/redux/connectors/index.d.ts +0 -0
  1146. /package/{lib → esm}/redux/connectors/index.js.flow +0 -0
  1147. /package/{types → esm}/redux/index.d.ts +0 -0
  1148. /package/{lib → esm}/redux/index.js.flow +0 -0
  1149. /package/{types → esm}/redux/reducers/AuthReducer.d.ts +0 -0
  1150. /package/{lib → esm}/redux/reducers/AuthReducer.js.flow +0 -0
  1151. /package/{types → esm}/redux/reducers/ErrorReducer.d.ts +0 -0
  1152. /package/{lib → esm}/redux/reducers/ErrorReducer.js.flow +0 -0
  1153. /package/{types → esm}/redux/reducers/ModalsReducer.d.ts +0 -0
  1154. /package/{lib → esm}/redux/reducers/ModalsReducer.js.flow +0 -0
  1155. /package/{types → esm}/redux/reducers/ModelCatalogReducer.d.ts +0 -0
  1156. /package/{lib → esm}/redux/reducers/ModelCatalogReducer.js.flow +0 -0
  1157. /package/{types → esm}/redux/reducers/NotificationReducer.d.ts +0 -0
  1158. /package/{lib → esm}/redux/reducers/NotificationReducer.js.flow +0 -0
  1159. /package/{types → esm}/redux/reducers/PreferencesReducer.d.ts +0 -0
  1160. /package/{lib → esm}/redux/reducers/PreferencesReducer.js.flow +0 -0
  1161. /package/{types → esm}/redux/reducers/ProgressIndicatorReducer.d.ts +0 -0
  1162. /package/{lib → esm}/redux/reducers/ProgressIndicatorReducer.js.flow +0 -0
  1163. /package/{lib → esm}/redux/reducers/__tests__/AuthReducer.spec.js.flow +0 -0
  1164. /package/{lib → esm}/redux/reducers/__tests__/ErrorReducer.spec.js.flow +0 -0
  1165. /package/{lib → esm}/redux/reducers/__tests__/ModalsReducer.spec.js.flow +0 -0
  1166. /package/{lib → esm}/redux/reducers/__tests__/ModelCatalogReducer.spec.js.flow +0 -0
  1167. /package/{lib → esm}/redux/reducers/__tests__/NotificationReducer.spec.js.flow +0 -0
  1168. /package/{lib → esm}/redux/reducers/__tests__/PreferencesReducer.spec.js.flow +0 -0
  1169. /package/{lib → esm}/redux/reducers/__tests__/ProgressIndicatorReducer.spec.js.flow +0 -0
  1170. /package/{types → esm}/redux/reducers/createReducer.d.ts +0 -0
  1171. /package/{lib → esm}/redux/reducers/createReducer.js.flow +0 -0
  1172. /package/{types → esm}/redux/reducers/index.d.ts +0 -0
  1173. /package/{lib → esm}/redux/reducers/index.js.flow +0 -0
  1174. /package/{types → esm}/redux/selectors/i18n.d.ts +0 -0
  1175. /package/{lib → esm}/redux/selectors/i18n.js.flow +0 -0
  1176. /package/{types → esm}/redux/selectors/index.d.ts +0 -0
  1177. /package/{lib → esm}/redux/selectors/index.js.flow +0 -0
  1178. /package/{types → esm}/redux/selectors/modelcatalog.d.ts +0 -0
  1179. /package/{lib → esm}/redux/selectors/modelcatalog.js.flow +0 -0
  1180. /package/{lib → esm}/redux/store/__tests__/beforeRenderHooks.spec.js.flow +0 -0
  1181. /package/{lib → esm}/redux/store/beforeRenderHooks.js.flow +0 -0
  1182. /package/{lib → esm}/redux/store/configureStore.js.flow +0 -0
  1183. /package/{types → esm}/redux/types.d.ts +0 -0
  1184. /package/{lib → esm}/redux/types.js.flow +0 -0
  1185. /package/{types → esm}/utils/browser/Cache.d.ts +0 -0
  1186. /package/{lib → esm}/utils/browser/Cache.js.flow +0 -0
  1187. /package/{types → esm}/utils/browser/Cookies.d.ts +0 -0
  1188. /package/{lib → esm}/utils/browser/Cookies.js.flow +0 -0
  1189. /package/{lib → esm}/utils/browser/__tests__/Cookies.spec.js.flow +0 -0
  1190. /package/{types → esm}/utils/datetime/DateTimeUtil.d.ts +0 -0
  1191. /package/{lib → esm}/utils/datetime/DateTimeUtil.js.flow +0 -0
  1192. /package/{lib → esm}/utils/datetime/__tests__/DateTime.spec.js.flow +0 -0
  1193. /package/{lib → esm}/utils/datetime/__tests__/DateTimeFormat.spec.js.flow +0 -0
  1194. /package/{types → esm}/utils/fetch/__mocks__/universalFetch.d.ts +0 -0
  1195. /package/{lib → esm}/utils/fetch/__mocks__/universalFetch.js.flow +0 -0
  1196. /package/{lib → esm}/utils/fetch/__tests__/xhr.spec.js.flow +0 -0
  1197. /package/{types → esm}/utils/fetch/serverFetch.d.ts +0 -0
  1198. /package/{lib → esm}/utils/fetch/serverFetch.js.flow +0 -0
  1199. /package/{types → esm}/utils/fetch/types.d.ts +0 -0
  1200. /package/{lib → esm}/utils/fetch/types.js.flow +0 -0
  1201. /package/{types → esm}/utils/fetch/universalFetch.d.ts +0 -0
  1202. /package/{lib → esm}/utils/fetch/universalFetch.js.flow +0 -0
  1203. /package/{types → esm}/utils/fetch/xhr.d.ts +0 -0
  1204. /package/{lib → esm}/utils/fetch/xhr.js.flow +0 -0
  1205. /package/{lib → esm}/utils/helpers/__tests__/checkResource.spec.js.flow +0 -0
  1206. /package/{lib → esm}/utils/helpers/__tests__/createHash.spec.js.flow +0 -0
  1207. /package/{lib → esm}/utils/helpers/__tests__/createHref.spec.js.flow +0 -0
  1208. /package/{lib → esm}/utils/helpers/__tests__/objects.spec.js.flow +0 -0
  1209. /package/{lib → esm}/utils/helpers/__tests__/sanitizeHTML.spec.js.flow +0 -0
  1210. /package/{types → esm}/utils/helpers/checkResource.d.ts +0 -0
  1211. /package/{lib → esm}/utils/helpers/checkResource.js.flow +0 -0
  1212. /package/{types → esm}/utils/helpers/createHash.d.ts +0 -0
  1213. /package/{lib → esm}/utils/helpers/createHash.js.flow +0 -0
  1214. /package/{types → esm}/utils/helpers/createHref.d.ts +0 -0
  1215. /package/{lib → esm}/utils/helpers/createHref.js.flow +0 -0
  1216. /package/{types → esm}/utils/helpers/createUUID.d.ts +0 -0
  1217. /package/{lib → esm}/utils/helpers/createUUID.js.flow +0 -0
  1218. /package/{types → esm}/utils/helpers/index.d.ts +0 -0
  1219. /package/{lib → esm}/utils/helpers/index.js.flow +0 -0
  1220. /package/{types → esm}/utils/helpers/objects.d.ts +0 -0
  1221. /package/{lib → esm}/utils/helpers/objects.js.flow +0 -0
  1222. /package/{types → esm}/utils/helpers/repositoryResource.d.ts +0 -0
  1223. /package/{lib → esm}/utils/helpers/repositoryResource.js.flow +0 -0
  1224. /package/{types → esm}/utils/helpers/sanitizeHtml.d.ts +0 -0
  1225. /package/{lib → esm}/utils/helpers/sanitizeHtml.js.flow +0 -0
  1226. /package/{types → esm}/utils/helpers/text.d.ts +0 -0
  1227. /package/{lib → esm}/utils/helpers/text.js.flow +0 -0
  1228. /package/{types → esm}/utils/index.d.ts +0 -0
  1229. /package/{lib → esm}/utils/index.js.flow +0 -0
  1230. /package/{types → esm}/utils/number/DecimalFormat.d.ts +0 -0
  1231. /package/{lib → esm}/utils/number/DecimalFormat.js.flow +0 -0
  1232. /package/{lib → esm}/utils/number/__tests__/formatValue.spec.js.flow +0 -0
  1233. /package/{lib → esm}/utils/number/__tests__/parseNumbers.spec.js.flow +0 -0
  1234. /package/{types → esm}/utils/number/formatValue.d.ts +0 -0
  1235. /package/{lib → esm}/utils/number/formatValue.js.flow +0 -0
  1236. /package/{types → esm}/utils/number/parseNumbers.d.ts +0 -0
  1237. /package/{lib → esm}/utils/number/parseNumbers.js.flow +0 -0
@@ -0,0 +1,5 @@
1
+ export const connectFormAttributeSet: ComponentType<any>;
2
+ export const OwnProps: any;
3
+ export const _: any;
4
+ export const DispatchProps: any;
5
+ import { ComponentType } from "react";
@@ -0,0 +1,4 @@
1
+ /**
2
+ */
3
+ export const connectListDetail: ModularUIConnector;
4
+ import { ModularUIConnector } from "../_modularui/types";
@@ -0,0 +1,4 @@
1
+ export const connectModal: ComponentType<any>;
2
+ export const StateProps: any;
3
+ export const _: any;
4
+ import { ComponentType } from "react";
@@ -0,0 +1,4 @@
1
+ /**
2
+ */
3
+ export const connectModelCatalog: ModularUIConnector;
4
+ import { ModularUIConnector } from "../_modularui/types";
@@ -0,0 +1,4 @@
1
+ export const connectNotification: ComponentType<any>;
2
+ export const StateProps: any;
3
+ export const _: any;
4
+ import { ComponentType } from "react";
@@ -0,0 +1,4 @@
1
+ /**
2
+ */
3
+ export const connectPanel: ModularUIConnector;
4
+ import { ModularUIConnector } from "../_modularui/types";
@@ -0,0 +1,2 @@
1
+ export function connectPreferences(WrappedComponent: AbstractComponent<any>, preferenceName: string | Array<string>): ComponentType<any>;
2
+ import { ComponentType } from "react";
@@ -0,0 +1,3 @@
1
+ export const connectProgress: ComponentType<any>;
2
+ export const _: any;
3
+ import { ComponentType } from "react";
@@ -0,0 +1,3 @@
1
+ export const connectProgressIndicator: ComponentType<any>;
2
+ export const _: any;
3
+ import { ComponentType } from "react";
@@ -0,0 +1,11 @@
1
+ /**
2
+ */
3
+ export const connectQuickSearch: (Component: AbstractComponent<Props>) => AbstractComponent<OwnProps>;
4
+ type Props = {
5
+ OwnProps: any;
6
+ DispatchProps: any;
7
+ };
8
+ type OwnProps = {
9
+ href: Href;
10
+ };
11
+ export {};
@@ -0,0 +1,4 @@
1
+ export const connectSignIn: ComponentType<any>;
2
+ export const StateProps: any;
3
+ export const _: any;
4
+ import { ComponentType } from "react";
@@ -0,0 +1,4 @@
1
+ export const connectSignOut: ComponentType<any>;
2
+ export const StateProps: any;
3
+ export const _: any;
4
+ import { ComponentType } from "react";
@@ -0,0 +1,4 @@
1
+ /**
2
+ */
3
+ export const connectTab: ModularUIConnector;
4
+ import { ModularUIConnector } from "../_modularui/types";
@@ -0,0 +1,21 @@
1
+ export { connectApplication } from "./Application";
2
+ export { connectBreadcrumb } from "./Breadcrumb";
3
+ export { connectCaseView } from "./CaseView";
4
+ export { connectConceptDetail } from "./ConceptDetail";
5
+ export { connectContentBrowser } from "./ContentBrowser";
6
+ export { connectContentDetail } from "./ContentDetail";
7
+ export { connectContentDetailSection } from "./ContentDetailSection";
8
+ export { connectForm } from "./Form";
9
+ export { connectFormAttributeSet } from "./FormAttributeSet";
10
+ export { connectListDetail } from "./ListDetail";
11
+ export { connectModal } from "./Modal";
12
+ export { connectModelCatalog } from "./ModelCatalog";
13
+ export { connectNotification } from "./Notification";
14
+ export { connectPanel } from "./PanelRenderer";
15
+ export { connectPreferences } from "./Preferences";
16
+ export { connectProgress } from "./Progress";
17
+ export { connectProgressIndicator } from "./ProgressIndicator";
18
+ export { connectQuickSearch } from "./QuickSearch";
19
+ export { connectSignIn } from "./SignIn";
20
+ export { connectSignOut } from "./SignOut";
21
+ export { connectTab } from "./Tab";
@@ -0,0 +1,9 @@
1
+ export * from "./_router/index";
2
+ export * from "./_i18n/index";
3
+ export * from "./_modularui/index";
4
+ export * from "./actions/index";
5
+ export * from "./connectors/index";
6
+ export * from "./reducers/index";
7
+ export * from "./selectors/index";
8
+ export type * from "./types";
9
+ export { default as configureStore } from "./store/configureStore";
@@ -0,0 +1,8 @@
1
+ export default AuthReducer;
2
+ /**
3
+ * Auth reducer
4
+ */
5
+ declare const AuthReducer: Reducer<AuthState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { AuthState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,8 @@
1
+ export default ErrorReducer;
2
+ /**
3
+ * Error reducer
4
+ */
5
+ declare const ErrorReducer: Reducer<ErrorState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { ErrorState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,8 @@
1
+ export default ModalsReducer;
2
+ /**
3
+ * Modals reducer
4
+ */
5
+ declare const ModalsReducer: Reducer<ModalsState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { ModalsState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,8 @@
1
+ export default ModelCatalogReducer;
2
+ /**
3
+ * Keep track of the entry date for the modelcatalog
4
+ */
5
+ declare const ModelCatalogReducer: Reducer<ModelCatalogState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { ModelCatalogState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,8 @@
1
+ export default NotificationReducer;
2
+ /**
3
+ * Form reducer
4
+ */
5
+ declare const NotificationReducer: Reducer<NotificationState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { NotificationState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,8 @@
1
+ export default PreferencesReducer;
2
+ /**
3
+ * Pref reducer
4
+ */
5
+ declare const PreferencesReducer: Reducer<PreferencesState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { PreferencesState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,8 @@
1
+ export default progressIndicatorReducer;
2
+ /**
3
+ * Keep state for the progress indicator
4
+ */
5
+ declare const progressIndicatorReducer: Reducer<ProgressIndicatorState, ReduxAction>;
6
+ import { Reducer } from "redux";
7
+ import { ProgressIndicatorState } from "../types";
8
+ import { ReduxAction } from "../types";
@@ -0,0 +1,14 @@
1
+ export function createReducer(): Reducers;
2
+ type Reducers = {
3
+ auth: Reducer<AuthState, ReduxAction>;
4
+ error: Reducer<ErrorState, ReduxAction>;
5
+ i18n: Reducer<I18nState, ReduxAction>;
6
+ modals: Reducer<ModalsState, ReduxAction>;
7
+ modelcatalog: Reducer<ModelCatalogState, ReduxAction>;
8
+ modularui: Reducer<ModularUIState, ReduxAction>;
9
+ notification: Reducer<NotificationState, ReduxAction>;
10
+ preferences: Reducer<PreferencesState, ReduxAction>;
11
+ progressindicator: Reducer<ProgressIndicatorState, ReduxAction>;
12
+ router: Reducer<RouterState, ReduxAction>;
13
+ };
14
+ export {};
@@ -0,0 +1,8 @@
1
+ export * from "./createReducer";
2
+ export { default as AuthReducer } from "./AuthReducer";
3
+ export { default as ModelCatalogReducer } from "./ModelCatalogReducer";
4
+ export { default as ErrorReducer } from "./ErrorReducer";
5
+ export { default as ModalsReducer } from "./ModalsReducer";
6
+ export { default as NotificationReducer } from "./NotificationReducer";
7
+ export { default as PreferencesReducer } from "./PreferencesReducer";
8
+ export { default as ProgressIndicatorReducer } from "./ProgressIndicatorReducer";
@@ -0,0 +1,4 @@
1
+ export function getLocale(state: ReduxState): string;
2
+ export function getLocales(state: ReduxState): Locales;
3
+ import { ReduxState } from "../types";
4
+ import Locales from "../../i18n/Locales";
@@ -0,0 +1,2 @@
1
+ export * from "./i18n";
2
+ export * from "./modelcatalog";
@@ -0,0 +1,2 @@
1
+ export function getEntryDate(state: ReduxState): ISO_DATE;
2
+ import { ReduxState } from "../types";
@@ -0,0 +1,7 @@
1
+ type BeforeRenderHookProps = {
2
+ store: ReduxStore;
3
+ request?: any;
4
+ };
5
+ type BeforeRenderHook = (props: BeforeRenderHookProps) => void;
6
+ export function handleBeforeRenderHooks(beforeRenderHooks: Array<BeforeRenderHook> | undefined, props: BeforeRenderHookProps): void;
7
+ export {};
@@ -0,0 +1,9 @@
1
+ export default configureStore;
2
+ /**
3
+ */
4
+ declare function configureStore(routerHistory: RouterHistory, customReducers?: Object, initialState?: $Shape<ReduxState>): {
5
+ routerHistory: RouterHistory;
6
+ store: ReduxStore;
7
+ };
8
+ import { ReduxState } from "../types";
9
+ import { ReduxStore } from "../types";
@@ -0,0 +1,113 @@
1
+ type PreferenceValue = string | boolean | {
2
+ [key: string]: any;
3
+ } | PreferenceValue[] | null;
4
+ type UpdateFormOptions = {
5
+ autosubmit: boolean;
6
+ autosave: boolean;
7
+ autoupdate: boolean;
8
+ forceUpdate?: boolean | undefined;
9
+ /** Default true: Activate/deactivate the form object validate by an update */
10
+ validate?: boolean | undefined;
11
+ };
12
+ type NoAction = {
13
+ type: "NO_ACTION";
14
+ };
15
+ type SaveErrorAction = {
16
+ type: "SAVE_ERROR";
17
+ payload: ErrorResponse;
18
+ };
19
+ type ShowModalAction = {
20
+ type: "SHOW_MODAL";
21
+ payload: string;
22
+ };
23
+ type CloseModalAction = {
24
+ type: "CLOSE_MODAL";
25
+ payload: string;
26
+ };
27
+ type DismissNotificationAction = {
28
+ type: "DISMISS_NOTIFICATION";
29
+ };
30
+ type ShowNotificationAction = {
31
+ type: "SHOW_NOTIFICATION";
32
+ payload: {
33
+ type: $Keys<NOTIFICATION_TYPES>;
34
+ message: MessageObject;
35
+ error: ErrorResponse | null;
36
+ };
37
+ };
38
+ type SetPreferenceAction = {
39
+ type: "SET_PREFERENCE";
40
+ payload: {
41
+ [name: string]: PreferenceValue;
42
+ };
43
+ };
44
+ type SetPreferencesAction = {
45
+ type: "SET_PREFERENCES";
46
+ payload: {
47
+ [name: string]: PreferenceValue;
48
+ };
49
+ };
50
+ type StartProgressAction = {
51
+ type: "START_PROGRESS";
52
+ };
53
+ type FinishProgressAction = {
54
+ type: "FINISH_PROGRESS";
55
+ };
56
+ type ResetProgressAction = {
57
+ type: "RESET_PROGRESS";
58
+ };
59
+ type UpdateProgressAction = {
60
+ type: "UPDATE_PROGRESS";
61
+ payload: {
62
+ percentComplete: number;
63
+ };
64
+ };
65
+ type SendAuthenticationErrorAction = {
66
+ type: "AUTHENTICATION_ERROR";
67
+ payload: string;
68
+ };
69
+ type ResetAuthErrorsAction = {
70
+ type: "AUTHENTICATION_RESET_ERRORS";
71
+ };
72
+ type LoginSuccessAction = {
73
+ type: "AUTHENTICATION_SUCCESS";
74
+ };
75
+ type ChangePasswordAction = {
76
+ type: "CHANGE_PASSWORD";
77
+ };
78
+ type LogoutSuccessAction = {
79
+ type: "AUTHENTICATION_LOGOUT";
80
+ };
81
+ type UpdateAutosaveAction = {
82
+ type: "UPDATE_AUTOSAVE_STATUS";
83
+ payload: {
84
+ status: $Keys<AUTOSAVE_STATUS>;
85
+ model: FormModel;
86
+ };
87
+ };
88
+ type UpdateEntryDateAction = {
89
+ type: "UPDATE_ENTRYDATE";
90
+ payload: ISO_DATE;
91
+ };
92
+ type ReduxAction = UpdateLocaleAction | SetLocalesAction | SetModelAction | InitModelAction | UpdateModelAction | UpdateFormAction | UpdateStatusAction | RemoveModelByKeyAction | NoAction | ModularUIAction | ResetModularUIAction | LocationChangeAction | PushAction | ReplaceAction | GoAction | GoBackAction | GoForwardAction | SaveErrorAction | ShowModalAction | CloseModalAction | DismissNotificationAction | ShowNotificationAction | SetPreferenceAction | SetPreferencesAction | StartProgressAction | FinishProgressAction | ResetProgressAction | UpdateProgressAction | SendAuthenticationErrorAction | ResetAuthErrorsAction | LoginSuccessAction | ChangePasswordAction | LogoutSuccessAction | UpdateAutosaveAction | UpdateEntryDateAction;
93
+ type AuthState = {};
94
+ type ErrorState = ErrorResponse | null;
95
+ type ModalState = {};
96
+ type ModalsState = {};
97
+ type NotificationState = {};
98
+ type PreferencesState = {};
99
+ type ProgressIndicatorState = {};
100
+ type ModelCatalogState = {
101
+ entryDate: any;
102
+ };
103
+ type ReduxState = {};
104
+ type GetState = () => ReduxState;
105
+ type ThunkAction = (dispatch: DispatchAPI<PossibleAction>, getState: GetState) => any;
106
+ type PromiseAction = Promise<PossibleAction>;
107
+ type Dispatch = DispatchAPI<PossibleAction>;
108
+ type ReduxStore = Store<ReduxState, ReduxAction>;
109
+ type PossibleAction = ReduxAction | ThunkAction | PromiseAction;
110
+ type CustomReducers = {
111
+ [reducerKey: string]: any;
112
+ };
113
+ export {};
@@ -0,0 +1,45 @@
1
+ declare const _default: Cache;
2
+ export default _default;
3
+ /**
4
+ * Manage the browser cache
5
+ */
6
+ declare class Cache {
7
+ _cache: Storage;
8
+ /**
9
+ * Create a key that can be used to cache resources, needs the request arguments and uses url, params and header of the request args
10
+ * to create a key that is unique for time versions and locale
11
+ */
12
+ createResourceKey(requestArgs: RequestOptions): string;
13
+ /**
14
+ * Get a cached item by it's key
15
+ */
16
+ getItem(key: string): any;
17
+ /**
18
+ * Check if the item with key exists in the browser cache
19
+ */
20
+ hasItem(key: string): boolean;
21
+ /**
22
+ * Add an item to the cache
23
+ */
24
+ addItem(key: string, value: string | Object): void;
25
+ /**
26
+ */
27
+ setItem(key: string, value: string | Object): void;
28
+ /**
29
+ */
30
+ removeItem(key: string): void;
31
+ /**
32
+ * Clear complete cache storage
33
+ */
34
+ clear(pattern: string | null): void;
35
+ /**
36
+ */
37
+ loadOtherBrowserTabs(callback: Function): void;
38
+ /**
39
+ */
40
+ sendSessionStorage(e: StorageEvent): void;
41
+ /**
42
+ */
43
+ receiveSessionStorage(e: StorageEvent, callback: Function): any;
44
+ }
45
+ import { RequestOptions } from "../fetch/types";
@@ -0,0 +1,9 @@
1
+ export function getCookie(name: string): null | string;
2
+ export function setCookie(name: string, value: any, options?: CookieOptions): void;
3
+ export function clearCookie(name: string): void;
4
+ type CookieOptions = {
5
+ days?: number | undefined;
6
+ sameSite?: "None" | "Lax" | "Strict" | undefined;
7
+ secure?: boolean | undefined;
8
+ };
9
+ export {};
@@ -0,0 +1,214 @@
1
+ type OffsetInfo = {
2
+ abbr: string;
3
+ label: string;
4
+ value: string;
5
+ };
6
+ /**
7
+ * DateUtil
8
+ */
9
+ export const DateUtil: BaseDateTimeUtil;
10
+ /**
11
+ * DateTimeUtil
12
+ */
13
+ export const DateTimeUtil: BaseDateTimeUtil;
14
+ /**
15
+ * TimeUtil
16
+ */
17
+ export const TimeUtil: BaseDateTimeUtil;
18
+ /**
19
+ * TimestampUtil
20
+ */
21
+ export const TimestampUtil: BaseDateTimeUtil;
22
+ /**
23
+ * @hideconstructor
24
+ */
25
+ declare class BaseDateTimeUtil {
26
+ constructor(isoFormat: string, doOffsets?: boolean);
27
+ _isoFormat: string;
28
+ _doOffsets: boolean;
29
+ _timeZone: string;
30
+ /**
31
+ * Indicates if offsets and timezones are relevant
32
+ */
33
+ get doOffsets(): boolean;
34
+ /**
35
+ * Returns the options defined in settings
36
+ */
37
+ getOptions(): {
38
+ weekStartsOn: 0 | 1 | 2 | 3 | 4 | 5 | 6;
39
+ firstWeekContainsDate: 1 | 2 | 3 | 4 | 5 | 6 | 7;
40
+ };
41
+ /**
42
+ */
43
+ getIsoFormat(): string;
44
+ /**
45
+ */
46
+ convertFormat(javaFormat: string): string;
47
+ /**
48
+ */
49
+ getLocale(): typeof nl | typeof enGB;
50
+ /**
51
+ */
52
+ toDate(date: string | Date, inputFormat?: string): Date;
53
+ /**
54
+ */
55
+ toFormat(date: string | Date, targetFormat: string, inputFormat?: string): string;
56
+ /**
57
+ */
58
+ toISO(date: string | Date, sourceFormat?: string): string;
59
+ /**
60
+ */
61
+ now(): string;
62
+ /**
63
+ */
64
+ hasFormat(date: string, sourceFormat: string): boolean;
65
+ /**
66
+ */
67
+ isValid(date: string | Date | null | void, inputFormat?: string): boolean;
68
+ /**
69
+ */
70
+ isAfter(inputDate: string | Date, afterISODate: (string | Date) | null, inputFormat?: string): boolean;
71
+ /**
72
+ */
73
+ isSameOrAfter(inputDate: string | Date, afterISODate: (string | Date) | null, inputFormat?: string): boolean;
74
+ /**
75
+ */
76
+ isBefore(inputDate: string | Date, beforeISODate: (string | Date) | null, inputFormat?: string): boolean;
77
+ /**
78
+ */
79
+ isSameOrBefore(inputDate: string | Date, beforeISODate: (string | Date) | null, inputFormat?: string): boolean;
80
+ /**
81
+ */
82
+ isSame(inputDate: string | Date, compareDate: (string | Date) | null, inputFormat?: string): boolean;
83
+ /**
84
+ */
85
+ isSameDay(inputDate: string | Date, compareDate: string | Date, inputFormat?: string): boolean;
86
+ /**
87
+ */
88
+ isOther(inputDate: string | Date, compareDate: (string | Date) | null, inputFormat?: string): boolean;
89
+ /**
90
+ */
91
+ isWeekend(inputDate: string | Date): boolean;
92
+ /**
93
+ * Checks if a given local date and time is ambiguous in the specified timezone.
94
+ * Ambiguity happens during the end of daylight saving time (DST) transitions.
95
+ */
96
+ isAmbiguous(inputDate: string | Date, inputFormat?: string): boolean;
97
+ /**
98
+ * @private
99
+ */
100
+ private _calculate;
101
+ /**
102
+ */
103
+ addSeconds(date: string, amount: number, inputFormat?: string): string;
104
+ /**
105
+ */
106
+ addMinutes(date: string, amount: number, inputFormat?: string): string;
107
+ /**
108
+ */
109
+ addHours(date: string, amount: number, inputFormat?: string): string;
110
+ /**
111
+ */
112
+ addDays(date: string, amount: number, inputFormat?: string): string;
113
+ /**
114
+ */
115
+ addWeeks(date: string, amount: number, inputFormat?: string): string;
116
+ /**
117
+ */
118
+ addMonths(date: string, amount: number, inputFormat?: string): string;
119
+ /**
120
+ */
121
+ addYears(date: string, amount: number, inputFormat?: string): string;
122
+ /**
123
+ */
124
+ subtractSeconds(date: string, amount: number, inputFormat?: string): string;
125
+ /**
126
+ */
127
+ subtractMinutes(date: string, amount: number, inputFormat?: string): string;
128
+ /**
129
+ */
130
+ subtractHours(date: string, amount: number, inputFormat?: string): string;
131
+ /**
132
+ */
133
+ subtractDays(date: string, amount: number, inputFormat?: string): string;
134
+ /**
135
+ */
136
+ subtractWeeks(date: string, amount: number, inputFormat?: string): string;
137
+ /**
138
+ */
139
+ subtractMonths(date: string, amount: number, inputFormat?: string): string;
140
+ /**
141
+ */
142
+ subtractYears(date: string, amount: number, inputFormat?: string): string;
143
+ /**
144
+ * @private
145
+ */
146
+ private _get;
147
+ /**
148
+ */
149
+ startOfMonth(date: string | Date, inputFormat?: string): string;
150
+ /**
151
+ */
152
+ endOfMonth(date: string | Date, inputFormat?: string): string;
153
+ /**
154
+ */
155
+ startOfWeek(date: string | Date, inputFormat?: string): string;
156
+ /**
157
+ */
158
+ getHours(date: string | Date, inputFormat?: string): number;
159
+ /**
160
+ */
161
+ getMinutes(date: string | Date, inputFormat?: string): number;
162
+ /**
163
+ */
164
+ getWeek(date: string | Date, inputFormat?: string): number;
165
+ /**
166
+ * @private
167
+ */
168
+ private _set;
169
+ /**
170
+ */
171
+ setYear(date: string | Date, year: number, inputFormat?: string): string;
172
+ /**
173
+ */
174
+ setMonth(date: string | Date, month: number, inputFormat?: string): string;
175
+ /**
176
+ */
177
+ setDay(date: string | Date, day: number, inputFormat?: string): string;
178
+ /**
179
+ */
180
+ setHour(date: string | Date, hour: number, inputFormat?: string): string;
181
+ /**
182
+ */
183
+ setMinute(date: string | Date, minute: number, inputFormat?: string): string;
184
+ /**
185
+ */
186
+ setSecond(date: string | Date, second: number, inputFormat?: string): string;
187
+ /**
188
+ */
189
+ setMilliseconds(date: string | Date, millisecond: number, inputFormat?: string): string;
190
+ /**
191
+ */
192
+ setTime(date: string, hours: number, minutes: number, seconds: number, milliseconds: number, inputFormat?: string): string;
193
+ /**
194
+ */
195
+ getTimeZone(): string;
196
+ /**
197
+ */
198
+ setTimeZone(timeZone: string): void;
199
+ /**
200
+ */
201
+ getDateFnsContext(): null | Function;
202
+ /**
203
+ */
204
+ getOffset(date: string | Date, inputFormat?: string): OffsetInfo | null;
205
+ /**
206
+ */
207
+ getTimezoneOffsets(): {
208
+ standard?: OffsetInfo;
209
+ daylight?: OffsetInfo;
210
+ };
211
+ }
212
+ import { nl } from "date-fns/locale";
213
+ import { enGB } from "date-fns/locale";
214
+ export {};
@@ -0,0 +1,3 @@
1
+ /**
2
+ */
3
+ export default function universalFetch(args: any): Promise<any>;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Fetch data from server (uses nashorn and datafetcher).
3
+ */
4
+ export default function serverFetch(args: RequestOptions): Promise<any>;
5
+ import { RequestOptions } from "./types";