@beinformed/ui 1.28.6 → 1.29.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/esm/constants/Settings.js +7 -0
  3. package/esm/constants/Settings.js.map +1 -1
  4. package/esm/models/index.js +2 -1
  5. package/esm/models/index.js.map +1 -1
  6. package/lib/constants/Settings.js +10 -2
  7. package/lib/constants/Settings.js.flow +7 -0
  8. package/lib/constants/Settings.js.map +1 -1
  9. package/lib/models/index.js +7 -0
  10. package/lib/models/index.js.flow +3 -0
  11. package/lib/models/index.js.map +1 -1
  12. package/package.json +8 -8
  13. package/src/constants/Settings.js +7 -0
  14. package/src/models/index.js +3 -0
  15. package/types/constants/Constants.d.ts +145 -145
  16. package/types/constants/LayoutHintConfig.d.ts +226 -226
  17. package/types/constants/LayoutHints.d.ts +74 -74
  18. package/types/constants/Settings.d.ts +29 -28
  19. package/types/constants/index.d.ts +3 -3
  20. package/types/exceptions/ConfigurationException.d.ts +6 -6
  21. package/types/exceptions/FetchException.d.ts +31 -31
  22. package/types/exceptions/IllegalArgumentException.d.ts +6 -6
  23. package/types/exceptions/IllegalReturnException.d.ts +5 -5
  24. package/types/exceptions/IllegalStateException.d.ts +6 -6
  25. package/types/exceptions/JsonParseException.d.ts +6 -6
  26. package/types/exceptions/MissingPropertyException.d.ts +6 -6
  27. package/types/exceptions/NetworkException.d.ts +9 -9
  28. package/types/exceptions/NotAllowedUriException.d.ts +6 -6
  29. package/types/exceptions/NotFoundException.d.ts +10 -10
  30. package/types/exceptions/ServerRequestException.d.ts +6 -6
  31. package/types/exceptions/ThemePropertyException.d.ts +6 -6
  32. package/types/exceptions/TimeoutException.d.ts +7 -7
  33. package/types/exceptions/UnauthorizedException.d.ts +11 -11
  34. package/types/exceptions/UnsupportedOperationException.d.ts +6 -6
  35. package/types/exceptions/index.d.ts +15 -15
  36. package/types/hooks/useI18n.d.ts +9 -9
  37. package/types/i18n/Locale.d.ts +53 -53
  38. package/types/i18n/Locales.d.ts +55 -55
  39. package/types/i18n/Message.d.ts +6 -6
  40. package/types/i18n/index.d.ts +5 -5
  41. package/types/i18n/languages.d.ts +215 -215
  42. package/types/i18n/translations/beinformed_error_messages_en.nl.d.ts +97 -97
  43. package/types/i18n/translations/beinformed_error_messages_nl.nl.d.ts +97 -97
  44. package/types/i18n/types.d.ts +11 -11
  45. package/types/i18n/withMessage.d.ts +3 -3
  46. package/types/index.d.ts +6 -6
  47. package/types/models/actions/ActionCollection.d.ts +29 -29
  48. package/types/models/actions/ActionModel.d.ts +84 -84
  49. package/types/models/application/ApplicationModel.d.ts +41 -41
  50. package/types/models/attributes/AttributeCollection.d.ts +96 -96
  51. package/types/models/attributes/AttributeContent.d.ts +64 -64
  52. package/types/models/attributes/AttributeDataHelper.d.ts +67 -67
  53. package/types/models/attributes/AttributeModel.d.ts +395 -395
  54. package/types/models/attributes/AttributeSetModel.d.ts +28 -28
  55. package/types/models/attributes/BooleanAttributeModel.d.ts +65 -65
  56. package/types/models/attributes/CaptchaAttributeModel.d.ts +19 -19
  57. package/types/models/attributes/ChoiceAttributeModel.d.ts +76 -76
  58. package/types/models/attributes/ChoiceAttributeOptionCollection.d.ts +79 -79
  59. package/types/models/attributes/ChoiceAttributeOptionModel.d.ts +133 -133
  60. package/types/models/attributes/CompositeAttributeChildCollection.d.ts +56 -56
  61. package/types/models/attributes/CompositeAttributeModel.d.ts +44 -44
  62. package/types/models/attributes/DatetimeAttributeModel.d.ts +117 -117
  63. package/types/models/attributes/HelptextAttributeModel.d.ts +16 -16
  64. package/types/models/attributes/LabelAttributeModel.d.ts +12 -12
  65. package/types/models/attributes/MemoAttributeModel.d.ts +14 -14
  66. package/types/models/attributes/MoneyAttributeModel.d.ts +14 -14
  67. package/types/models/attributes/NumberAttributeModel.d.ts +49 -49
  68. package/types/models/attributes/PasswordAttributeModel.d.ts +62 -62
  69. package/types/models/attributes/StringAttributeModel.d.ts +62 -62
  70. package/types/models/attributes/UploadAttributeModel.d.ts +60 -60
  71. package/types/models/attributes/XMLAttributeModel.d.ts +10 -10
  72. package/types/models/attributes/_createAttribute.d.ts +6 -6
  73. package/types/models/attributes/input-constraints/BSNConstraint.d.ts +26 -26
  74. package/types/models/attributes/input-constraints/ConstraintCollection.d.ts +24 -24
  75. package/types/models/attributes/input-constraints/ConstraintModel.d.ts +34 -34
  76. package/types/models/attributes/input-constraints/DateBoundaryConstraint.d.ts +109 -109
  77. package/types/models/attributes/input-constraints/DateTimeDateFormatConstraint.d.ts +36 -36
  78. package/types/models/attributes/input-constraints/DateTimeTimeFormatConstraint.d.ts +36 -36
  79. package/types/models/attributes/input-constraints/DatetimeFormatConstraint.d.ts +92 -92
  80. package/types/models/attributes/input-constraints/FileExtensionConstraint.d.ts +33 -33
  81. package/types/models/attributes/input-constraints/FileSizeConstraint.d.ts +42 -42
  82. package/types/models/attributes/input-constraints/IBANConstraint.d.ts +23 -23
  83. package/types/models/attributes/input-constraints/MandatoryConstraint.d.ts +23 -23
  84. package/types/models/attributes/input-constraints/MandatoryRangeConstraint.d.ts +36 -36
  85. package/types/models/attributes/input-constraints/NumberBoundaryConstraint.d.ts +61 -61
  86. package/types/models/attributes/input-constraints/NumberFormatConstraint.d.ts +52 -52
  87. package/types/models/attributes/input-constraints/NumberGroupingConstraint.d.ts +46 -46
  88. package/types/models/attributes/input-constraints/PasswordConfirmConstraint.d.ts +36 -36
  89. package/types/models/attributes/input-constraints/PasswordLowerAndUpperCaseConstraint.d.ts +23 -23
  90. package/types/models/attributes/input-constraints/PasswordMinNumericCharactersConstraint.d.ts +32 -32
  91. package/types/models/attributes/input-constraints/PasswordMinSpecialCharactersConstraint.d.ts +32 -32
  92. package/types/models/attributes/input-constraints/PasswordThreeConsecutiveCharactersNotAllowedConstraint.d.ts +35 -35
  93. package/types/models/attributes/input-constraints/RangeConstraint.d.ts +97 -97
  94. package/types/models/attributes/input-constraints/RegexConstraint.d.ts +37 -37
  95. package/types/models/attributes/input-constraints/StringLengthConstraint.d.ts +46 -46
  96. package/types/models/attributes/input-constraints/XMLConstraint.d.ts +26 -26
  97. package/types/models/attributes/layouthint-rules/BaseLayoutHintRule.d.ts +46 -46
  98. package/types/models/attributes/layouthint-rules/DependentAttribute.d.ts +57 -57
  99. package/types/models/attributes/layouthint-rules/LayoutHintRuleCollection.d.ts +27 -27
  100. package/types/models/attributes/layouthint-rules/RemainingTotalUploadSize.d.ts +17 -17
  101. package/types/models/base/BaseCollection.d.ts +89 -89
  102. package/types/models/base/BaseModel.d.ts +67 -67
  103. package/types/models/base/ResourceCollection.d.ts +19 -19
  104. package/types/models/base/ResourceModel.d.ts +97 -97
  105. package/types/models/caseview/CaseViewModel.d.ts +45 -45
  106. package/types/models/concepts/BusinessScenarioModel.d.ts +20 -20
  107. package/types/models/concepts/ConceptDetailModel.d.ts +69 -69
  108. package/types/models/concepts/ConceptIndexModel.d.ts +36 -36
  109. package/types/models/concepts/ConceptLinkModel.d.ts +65 -65
  110. package/types/models/concepts/ConceptRelationCollection.d.ts +34 -34
  111. package/types/models/concepts/ConceptRelationModel.d.ts +44 -44
  112. package/types/models/concepts/ConceptTypeDetailModel.d.ts +39 -39
  113. package/types/models/concepts/SourceReferenceCollection.d.ts +13 -13
  114. package/types/models/concepts/SourceReferenceModel.d.ts +30 -30
  115. package/types/models/content/ContentIndexModel.d.ts +34 -34
  116. package/types/models/content/ContentLinkModel.d.ts +81 -81
  117. package/types/models/content/ContentModel.d.ts +74 -74
  118. package/types/models/content/ContentTOCModel.d.ts +37 -37
  119. package/types/models/content/ContentTypeModel.d.ts +26 -26
  120. package/types/models/content/SectionModel.d.ts +75 -75
  121. package/types/models/content/SubSectionModel.d.ts +64 -64
  122. package/types/models/contentconfiguration/ContentConfiguration.d.ts +28 -28
  123. package/types/models/contentconfiguration/ContentConfigurationElements.d.ts +47 -47
  124. package/types/models/contentconfiguration/ContentConfigurationEndResults.d.ts +16 -16
  125. package/types/models/contentconfiguration/ContentConfigurationQuestions.d.ts +22 -22
  126. package/types/models/contentconfiguration/ContentConfigurationResults.d.ts +39 -39
  127. package/types/models/detail/DetailModel.d.ts +72 -72
  128. package/types/models/error/ErrorCollection.d.ts +51 -51
  129. package/types/models/error/ErrorModel.d.ts +41 -41
  130. package/types/models/error/ErrorResponse.d.ts +148 -148
  131. package/types/models/filters/AssignmentFilterModel.d.ts +35 -35
  132. package/types/models/filters/BaseFilterModel.d.ts +85 -85
  133. package/types/models/filters/ConceptIndexFilterModel.d.ts +6 -6
  134. package/types/models/filters/FilterCollection.d.ts +48 -48
  135. package/types/models/filters/FilterModel.d.ts +5 -5
  136. package/types/models/filters/RangeFilterModel.d.ts +6 -6
  137. package/types/models/form/FormModel.d.ts +312 -312
  138. package/types/models/form/FormObjectModel.d.ts +196 -196
  139. package/types/models/grouping/GroupingModel.d.ts +85 -85
  140. package/types/models/href/Href.d.ts +196 -196
  141. package/types/models/href/ListHref.d.ts +64 -64
  142. package/types/models/index.d.ts +94 -94
  143. package/types/models/layouthint/LayoutHintCollection.d.ts +43 -43
  144. package/types/models/links/LinkCollection.d.ts +62 -62
  145. package/types/models/links/LinkModel.d.ts +92 -92
  146. package/types/models/links/normalizeLinkJSON.d.ts +9 -9
  147. package/types/models/list/ListDetailModel.d.ts +69 -69
  148. package/types/models/list/ListHeaderModel.d.ts +64 -64
  149. package/types/models/list/ListItemCollection.d.ts +21 -21
  150. package/types/models/list/ListItemModel.d.ts +34 -34
  151. package/types/models/list/ListModel.d.ts +135 -135
  152. package/types/models/lookup/LookupOptionCollection.d.ts +11 -11
  153. package/types/models/lookup/LookupOptionsModel.d.ts +19 -19
  154. package/types/models/modelcatalog/ModelCatalogModel.d.ts +18 -18
  155. package/types/models/paging/PagesizeModel.d.ts +25 -25
  156. package/types/models/paging/PagingModel.d.ts +49 -49
  157. package/types/models/panels/GroupingPanelModel.d.ts +39 -39
  158. package/types/models/parameter/Parameter.d.ts +40 -40
  159. package/types/models/process/ProcessStatusSettingsModel.d.ts +38 -38
  160. package/types/models/resolveModel.d.ts +7 -7
  161. package/types/models/search/CaseSearchModel.d.ts +14 -14
  162. package/types/models/sorting/SortOptionModel.d.ts +48 -48
  163. package/types/models/sorting/SortingModel.d.ts +42 -42
  164. package/types/models/tab/TabModel.d.ts +44 -44
  165. package/types/models/taskgroup/TaskGroupCollection.d.ts +12 -12
  166. package/types/models/taskgroup/TaskGroupModel.d.ts +15 -15
  167. package/types/models/types.d.ts +161 -161
  168. package/types/models/user/UserModel.d.ts +14 -14
  169. package/types/models/user/UserProfileModel.d.ts +12 -12
  170. package/types/models/user/UserServicesModel.d.ts +28 -28
  171. package/types/modularui/Authenticate.d.ts +49 -49
  172. package/types/modularui/CaptchaRequest.d.ts +45 -45
  173. package/types/modularui/ModularUIError.d.ts +10 -10
  174. package/types/modularui/ModularUIRequest.d.ts +198 -198
  175. package/types/modularui/ModularUIResponse.d.ts +56 -56
  176. package/types/modularui/UploadRequest.d.ts +35 -35
  177. package/types/modularui/index.d.ts +5 -5
  178. package/types/modularui/types.d.ts +2 -2
  179. package/types/redux/_i18n/types.d.ts +13 -13
  180. package/types/redux/_modularui/types.d.ts +61 -61
  181. package/types/redux/_router/types.d.ts +35 -35
  182. package/types/redux/selectors/i18n.d.ts +4 -4
  183. package/types/redux/types.d.ts +105 -105
  184. package/types/utils/browser/Cache.d.ts +45 -45
  185. package/types/utils/browser/Cookies.d.ts +9 -9
  186. package/types/utils/datetime/DateTimeUtil.d.ts +164 -164
  187. package/types/utils/fetch/serverFetch.d.ts +5 -5
  188. package/types/utils/fetch/types.d.ts +40 -40
  189. package/types/utils/fetch/universalFetch.d.ts +7 -7
  190. package/types/utils/fetch/xhr.d.ts +5 -5
  191. package/types/utils/helpers/checkResource.d.ts +3 -3
  192. package/types/utils/helpers/createHash.d.ts +8 -8
  193. package/types/utils/helpers/createUUID.d.ts +4 -4
  194. package/types/utils/helpers/index.d.ts +7 -7
  195. package/types/utils/helpers/objects.d.ts +11 -11
  196. package/types/utils/helpers/repositoryResource.d.ts +1 -1
  197. package/types/utils/helpers/sanitizeHtml.d.ts +9 -9
  198. package/types/utils/helpers/text.d.ts +7 -7
  199. package/types/utils/index.d.ts +11 -11
  200. package/types/utils/number/DecimalFormat.d.ts +90 -90
  201. package/types/utils/number/formatValue.d.ts +4 -4
  202. package/types/utils/number/parseNumbers.d.ts +9 -9
package/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [1.29.0](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.28.7...v1.29.0) (2023-03-10)
6
+
7
+
8
+ ### Features
9
+
10
+ * **LayoutHintCollection:** export LayoutHintCollection ([8f09649](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/commit/8f0964948388a0705b40dd950b792b0071bdb0de))
11
+
12
+ ## [1.28.7](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.28.6...v1.28.7) (2023-03-09)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **context-path:** add convencience method setContextPath to settings ([babd09b](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/commit/babd09b399ad7d01de5e99472a5948b9744f9771))
17
+
5
18
  ## [1.28.6](https://git.beinformed.com/public/nl.beinformed.bi.layout.lib.ui/compare/v1.28.5...v1.28.6) (2023-03-01)
6
19
 
7
20
  ### Bug Fixes
@@ -153,6 +153,13 @@ export const getSwimLaneDiagramConfiguration = () => {
153
153
  return getRepositoryResourceUrl(configLocation);
154
154
  };
155
155
 
156
+ /**
157
+ * Set the context path for requests to be informed
158
+ */
159
+ export const setContextPath = contextPath => {
160
+ setSetting("CONTEXT_PATH", contextPath);
161
+ };
162
+
156
163
  /**
157
164
  * Backwards compatible export of BASE constant
158
165
  */
@@ -1 +1 @@
1
- {"version":3,"file":"Settings.js","names":["isPlainObject","has","getRepositoryResourceUrl","ALL_CONTENT_IN_DATA_SETTING","INTERNAL_LOGIN_TYPE","LOGIN_TYPE","LOGIN_PATH_SETTING","LOGIN_USERNAME_SETTING","LOGIN_PASSWORD_SETTING","LOGOUT_PATH_SETTING","UPLOAD_PATH","CAPTCHA_PATH","serverBase","__CONTEXT_PATH__","defaultSettings","CONTEXT_PATH","window","contextPath","CACHE_CONTRIBUTIONS","DEBUG_I18N_MESSAGE_NOT_FOUND","HIDE_NOTIFICATION_TIMEOUT","ALWAYS_COMMIT_FORM","RENDER_QUESTION_LABELS","RENDER_MANDATORY_ATTRIBUTE_INDICATION","RENDER_OPTIONAL_ATTRIBUTE_INDICATION","AVAILABLE_LIST_VIEWS","USE_CLIENTSIDE_VALIDATION","USE_INSTANT_SERVER_VALIDATION","ENABLED_LOCALES","RENDER_GLOBAL_LOGIN_PAGE","RENDER_GLOBAL_LOGOUT_PAGE","RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE","LOGIN_PATH","ADMINISTRATOR_LOGIN_PATH","LOGOUT_PATH","RENDER_FORMS_IN_MODAL","SHOW_SUBMIT_WAIT_TIMEOUT","SWIM_LANE_DIAGRAM_CONFIGURATION","BUSINESS_SCENARIO_CONCEPT_TYPE","BUSINESS_SCENARIO_STEP_CONCEPT_TYPE","BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE","CALENDAR_WEEK_STARTS_ON","CALENDAR_FIRST_WEEK_CONTAINS_DATE","UI_PARAMETERS","ALLOW_HIDE_WHEN_EMPTY_ON_TABS","PAGE_RELOAD_ON_UNAUTHORIZED_ERROR","XHR_TIMEOUT_MS","HIDE_WHEN_EMPTY_IGNORE_TASKS","settings","setSettings","config","_Object$assign","getSetting","key","defaultValue","undefined","Error","setSetting","value","allSettings","cacheContributions","getBasePath","getUploadPath","getCaptchaPath","hasAllContentInData","loginType","JAAS","loginPath","loginUsernameField","loginPasswordField","logoutPath","getSwimLaneDiagramConfiguration","configLocation","_startsWithInstanceProperty","call","BASE"],"sources":["../../src/constants/Settings.js"],"sourcesContent":["// @flow\nimport { isPlainObject, has } from \"../utils/helpers/objects\";\nimport { getRepositoryResourceUrl } from \"../utils/helpers/repositoryResource\";\nimport {\n ALL_CONTENT_IN_DATA_SETTING,\n INTERNAL_LOGIN_TYPE,\n LOGIN_TYPE,\n LOGIN_PATH_SETTING,\n LOGIN_USERNAME_SETTING,\n LOGIN_PASSWORD_SETTING,\n LOGOUT_PATH_SETTING,\n UPLOAD_PATH,\n CAPTCHA_PATH,\n} from \"./Constants\";\n\ntype Setting = boolean | string | number | Array<string>;\n\nconst serverBase =\n typeof __CONTEXT_PATH__ === \"undefined\" ? null : __CONTEXT_PATH__;\n\nconst defaultSettings: { [name: string]: Setting } = {\n // This uses contextPath set from property from server\n CONTEXT_PATH:\n serverBase ??\n (typeof window !== \"undefined\" && window.contextPath\n ? window.contextPath\n : \"/BeInformed\"),\n\n // Indicates if contributions should be cached\n CACHE_CONTRIBUTIONS: true,\n\n // Debug missing i18n messages in layout\n DEBUG_I18N_MESSAGE_NOT_FOUND: true,\n\n // Time to show the notification bar\n HIDE_NOTIFICATION_TIMEOUT: 5000,\n\n // Always commit form, does not show result pages for instruments\n ALWAYS_COMMIT_FORM: false,\n\n // Render instrument and event question labels on forms (might result in duplicate labels)\n RENDER_QUESTION_LABELS: true,\n\n // Render mandatory indications on attributes\n RENDER_MANDATORY_ATTRIBUTE_INDICATION: true,\n\n // Render optional indications on attributes\n RENDER_OPTIONAL_ATTRIBUTE_INDICATION: false,\n\n // Renders a toggle with supported list views, options are ListView and TableView\n AVAILABLE_LIST_VIEWS: [\"ListView\", \"TableView\"],\n\n // Toggle client side validation\n USE_CLIENTSIDE_VALIDATION: true,\n\n // Indicates if server validation should be used when a form field is changed\n USE_INSTANT_SERVER_VALIDATION: true,\n\n // Indicates which locales are enabled\n ENABLED_LOCALES: [\"en\", \"nl\"],\n\n // Renders the global log in page\n RENDER_GLOBAL_LOGIN_PAGE: false,\n\n // Renders the global log out page\n RENDER_GLOBAL_LOGOUT_PAGE: false,\n\n // Renders the login variants as option on the global logout page\n RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE: false,\n\n // Path to login page / component\n LOGIN_PATH: \"/signin\",\n\n // Path to administrator login page / component\n ADMINISTRATOR_LOGIN_PATH: \"\",\n\n // Path to logout page / component\n LOGOUT_PATH: \"/signout\",\n\n // Render forms in a modal\n RENDER_FORMS_IN_MODAL: true,\n\n // Wait timeout before rendering submit wait icon\n SHOW_SUBMIT_WAIT_TIMEOUT: 300,\n\n // Swim lane diagram configuration file\n SWIM_LANE_DIAGRAM_CONFIGURATION: \"/Library/Diagrams/Overviews.json\",\n\n // Business scenario concept types\n BUSINESS_SCENARIO_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/BusinessScenario\",\n ],\n BUSINESS_SCENARIO_STEP_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/ScenarioStep\",\n ],\n BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/Persona\",\n ],\n\n // indicates on what day the week starts (0 = Sunday)\n CALENDAR_WEEK_STARTS_ON: 1,\n\n // indicates which date indicates the first week of the year\n CALENDAR_FIRST_WEEK_CONTAINS_DATE: 1,\n\n // parameters that are added for the ui state, but should not be send to the modular ui\n UI_PARAMETERS: [],\n\n // disable hide-when-empty hint for layouts running on Be Informed versions older than 21.1\n ALLOW_HIDE_WHEN_EMPTY_ON_TABS: true,\n\n // reload the complete page on signout, usefull when third party authentication is in place\n PAGE_RELOAD_ON_UNAUTHORIZED_ERROR: false,\n\n XHR_TIMEOUT_MS: 300000,\n\n HIDE_WHEN_EMPTY_IGNORE_TASKS: false,\n};\n\nlet settings = defaultSettings;\n\n/**\n */\nexport const setSettings = (config: Object) => {\n if (isPlainObject(config)) {\n settings = Object.assign(defaultSettings, config);\n }\n};\n\n/**\n */\nexport const getSetting = (key: string, defaultValue?: any): any => {\n if (!has(settings, key) && defaultValue === undefined) {\n throw new Error(\n `Setting with name ${key} not found and no defaultValue given`\n );\n }\n\n return settings[key] ?? defaultValue;\n};\n\n/**\n */\nexport const setSetting = (key: string, value: any) => {\n settings[key] = value;\n};\n\n/**\n */\nexport const allSettings = (): { [name: string]: Setting } => settings;\n\n/**\n * Indicates if contributions must be cached\n */\nexport const cacheContributions = (): boolean =>\n getSetting(\"CACHE_CONTRIBUTIONS\", true);\n\n/**\n * Base path\n * This uses contextPath set from property from server\n * When requesting a remote server with CORS enabled, add the origin, for example:\n * export const BEINFORMED_PATH = 'http://192.168.128.61:8080/BeInformed';\n */\nexport const getBasePath = (): string =>\n getSetting(\"CONTEXT_PATH\", \"/BeInformed\");\n\n/**\n * Path to upload service\n */\nexport const getUploadPath = (): string => `${getBasePath()}${UPLOAD_PATH}`;\n\n/**\n * Path to captcha service\n */\nexport const getCaptchaPath = (): string => `${getBasePath()}${CAPTCHA_PATH}`;\n\n/**\n */\nexport const hasAllContentInData = (): boolean =>\n getSetting(ALL_CONTENT_IN_DATA_SETTING, true);\n\n/**\n * Login type, only available when pac4j is configured\n *\n * Preview does not support pac4j, thus is probably not configured when started, which results in login type JAAS\n */\nexport const loginType = (): string =>\n getSetting(LOGIN_TYPE, INTERNAL_LOGIN_TYPE.JAAS);\n\n/**\n */\nexport const loginPath = (): string =>\n getSetting(LOGIN_PATH_SETTING, \"/callback?client_name=FormClient\");\n/**\n */\nexport const loginUsernameField = (): string =>\n getSetting(LOGIN_USERNAME_SETTING, \"j_username\");\n/**\n */\nexport const loginPasswordField = (): string =>\n getSetting(LOGIN_PASSWORD_SETTING, \"j_password\");\n/**\n */\nexport const logoutPath = (): string =>\n getSetting(LOGOUT_PATH_SETTING, \"/logout\");\n\nexport const LOGIN_PATH: string = loginPath();\nexport const LOGOUT_PATH: string = logoutPath();\n\n/**\n * Model overview swim lane configuration\n */\nexport const getSwimLaneDiagramConfiguration: Object = () => {\n let configLocation = getSetting(\n \"SWIM_LANE_DIAGRAM_CONFIGURATION\",\n \"/Library/Diagrams/Overviews.json\"\n );\n if (!configLocation.startsWith(\"/\")) {\n configLocation = `/${configLocation}`;\n }\n return getRepositoryResourceUrl(configLocation);\n};\n\n/**\n * Backwards compatible export of BASE constant\n */\nexport const BASE: string = getBasePath();\n"],"mappings":";;AACA,SAASA,aAAa,EAAEC,GAAG,QAAQ,0BAA0B;AAC7D,SAASC,wBAAwB,QAAQ,qCAAqC;AAC9E,SACEC,2BAA2B,EAC3BC,mBAAmB,EACnBC,UAAU,EACVC,kBAAkB,EAClBC,sBAAsB,EACtBC,sBAAsB,EACtBC,mBAAmB,EACnBC,WAAW,EACXC,YAAY,QACP,aAAa;AAIpB,MAAMC,UAAU,GACd,OAAOC,gBAAgB,KAAK,WAAW,GAAG,IAAI,GAAGA,gBAAgB;AAEnE,MAAMC,eAA4C,GAAG;EACnD;EACAC,YAAY,EACVH,UAAU,KACT,OAAOI,MAAM,KAAK,WAAW,IAAIA,MAAM,CAACC,WAAW,GAChDD,MAAM,CAACC,WAAW,GAClB,aAAa,CAAC;EAEpB;EACAC,mBAAmB,EAAE,IAAI;EAEzB;EACAC,4BAA4B,EAAE,IAAI;EAElC;EACAC,yBAAyB,EAAE,IAAI;EAE/B;EACAC,kBAAkB,EAAE,KAAK;EAEzB;EACAC,sBAAsB,EAAE,IAAI;EAE5B;EACAC,qCAAqC,EAAE,IAAI;EAE3C;EACAC,oCAAoC,EAAE,KAAK;EAE3C;EACAC,oBAAoB,EAAE,CAAC,UAAU,EAAE,WAAW,CAAC;EAE/C;EACAC,yBAAyB,EAAE,IAAI;EAE/B;EACAC,6BAA6B,EAAE,IAAI;EAEnC;EACAC,eAAe,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC;EAE7B;EACAC,wBAAwB,EAAE,KAAK;EAE/B;EACAC,yBAAyB,EAAE,KAAK;EAEhC;EACAC,wCAAwC,EAAE,KAAK;EAE/C;EACAC,UAAU,EAAE,SAAS;EAErB;EACAC,wBAAwB,EAAE,EAAE;EAE5B;EACAC,WAAW,EAAE,UAAU;EAEvB;EACAC,qBAAqB,EAAE,IAAI;EAE3B;EACAC,wBAAwB,EAAE,GAAG;EAE7B;EACAC,+BAA+B,EAAE,kCAAkC;EAEnE;EACAC,8BAA8B,EAAE,CAC9B,yDAAyD,CAC1D;EACDC,mCAAmC,EAAE,CACnC,qDAAqD,CACtD;EACDC,sCAAsC,EAAE,CACtC,gDAAgD,CACjD;EAED;EACAC,uBAAuB,EAAE,CAAC;EAE1B;EACAC,iCAAiC,EAAE,CAAC;EAEpC;EACAC,aAAa,EAAE,EAAE;EAEjB;EACAC,6BAA6B,EAAE,IAAI;EAEnC;EACAC,iCAAiC,EAAE,KAAK;EAExCC,cAAc,EAAE,MAAM;EAEtBC,4BAA4B,EAAE;AAChC,CAAC;AAED,IAAIC,QAAQ,GAAGlC,eAAe;;AAE9B;AACA;AACA,OAAO,MAAMmC,WAAW,GAAIC,MAAc,IAAK;EAC7C,IAAIlD,aAAa,CAACkD,MAAM,CAAC,EAAE;IACzBF,QAAQ,GAAGG,cAAA,CAAcrC,eAAe,EAAEoC,MAAM,CAAC;EACnD;AACF,CAAC;;AAED;AACA;AACA,OAAO,MAAME,UAAU,GAAGA,CAACC,GAAW,EAAEC,YAAkB,KAAU;EAClE,IAAI,CAACrD,GAAG,CAAC+C,QAAQ,EAAEK,GAAG,CAAC,IAAIC,YAAY,KAAKC,SAAS,EAAE;IACrD,MAAM,IAAIC,KAAK,CACZ,qBAAoBH,GAAI,sCAAqC,CAC/D;EACH;EAEA,OAAOL,QAAQ,CAACK,GAAG,CAAC,IAAIC,YAAY;AACtC,CAAC;;AAED;AACA;AACA,OAAO,MAAMG,UAAU,GAAGA,CAACJ,GAAW,EAAEK,KAAU,KAAK;EACrDV,QAAQ,CAACK,GAAG,CAAC,GAAGK,KAAK;AACvB,CAAC;;AAED;AACA;AACA,OAAO,MAAMC,WAAW,GAAGA,CAAA,KAAmCX,QAAQ;;AAEtE;AACA;AACA;AACA,OAAO,MAAMY,kBAAkB,GAAGA,CAAA,KAChCR,UAAU,CAAC,qBAAqB,EAAE,IAAI,CAAC;;AAEzC;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMS,WAAW,GAAGA,CAAA,KACzBT,UAAU,CAAC,cAAc,EAAE,aAAa,CAAC;;AAE3C;AACA;AACA;AACA,OAAO,MAAMU,aAAa,GAAGA,CAAA,KAAe,GAAED,WAAW,EAAG,GAAEnD,WAAY,EAAC;;AAE3E;AACA;AACA;AACA,OAAO,MAAMqD,cAAc,GAAGA,CAAA,KAAe,GAAEF,WAAW,EAAG,GAAElD,YAAa,EAAC;;AAE7E;AACA;AACA,OAAO,MAAMqD,mBAAmB,GAAGA,CAAA,KACjCZ,UAAU,CAACjD,2BAA2B,EAAE,IAAI,CAAC;;AAE/C;AACA;AACA;AACA;AACA;AACA,OAAO,MAAM8D,SAAS,GAAGA,CAAA,KACvBb,UAAU,CAAC/C,UAAU,EAAED,mBAAmB,CAAC8D,IAAI,CAAC;;AAElD;AACA;AACA,OAAO,MAAMC,SAAS,GAAGA,CAAA,KACvBf,UAAU,CAAC9C,kBAAkB,EAAE,kCAAkC,CAAC;AACpE;AACA;AACA,OAAO,MAAM8D,kBAAkB,GAAGA,CAAA,KAChChB,UAAU,CAAC7C,sBAAsB,EAAE,YAAY,CAAC;AAClD;AACA;AACA,OAAO,MAAM8D,kBAAkB,GAAGA,CAAA,KAChCjB,UAAU,CAAC5C,sBAAsB,EAAE,YAAY,CAAC;AAClD;AACA;AACA,OAAO,MAAM8D,UAAU,GAAGA,CAAA,KACxBlB,UAAU,CAAC3C,mBAAmB,EAAE,SAAS,CAAC;AAE5C,OAAO,MAAMuB,UAAkB,GAAGmC,SAAS,EAAE;AAC7C,OAAO,MAAMjC,WAAmB,GAAGoC,UAAU,EAAE;;AAE/C;AACA;AACA;AACA,OAAO,MAAMC,+BAAuC,GAAGA,CAAA,KAAM;EAC3D,IAAIC,cAAc,GAAGpB,UAAU,CAC7B,iCAAiC,EACjC,kCAAkC,CACnC;EACD,IAAI,CAACqB,2BAAA,CAAAD,cAAc,EAAAE,IAAA,CAAdF,cAAc,EAAY,GAAG,CAAC,EAAE;IACnCA,cAAc,GAAI,IAAGA,cAAe,EAAC;EACvC;EACA,OAAOtE,wBAAwB,CAACsE,cAAc,CAAC;AACjD,CAAC;;AAED;AACA;AACA;AACA,OAAO,MAAMG,IAAY,GAAGd,WAAW,EAAE"}
1
+ {"version":3,"file":"Settings.js","names":["isPlainObject","has","getRepositoryResourceUrl","ALL_CONTENT_IN_DATA_SETTING","INTERNAL_LOGIN_TYPE","LOGIN_TYPE","LOGIN_PATH_SETTING","LOGIN_USERNAME_SETTING","LOGIN_PASSWORD_SETTING","LOGOUT_PATH_SETTING","UPLOAD_PATH","CAPTCHA_PATH","serverBase","__CONTEXT_PATH__","defaultSettings","CONTEXT_PATH","window","contextPath","CACHE_CONTRIBUTIONS","DEBUG_I18N_MESSAGE_NOT_FOUND","HIDE_NOTIFICATION_TIMEOUT","ALWAYS_COMMIT_FORM","RENDER_QUESTION_LABELS","RENDER_MANDATORY_ATTRIBUTE_INDICATION","RENDER_OPTIONAL_ATTRIBUTE_INDICATION","AVAILABLE_LIST_VIEWS","USE_CLIENTSIDE_VALIDATION","USE_INSTANT_SERVER_VALIDATION","ENABLED_LOCALES","RENDER_GLOBAL_LOGIN_PAGE","RENDER_GLOBAL_LOGOUT_PAGE","RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE","LOGIN_PATH","ADMINISTRATOR_LOGIN_PATH","LOGOUT_PATH","RENDER_FORMS_IN_MODAL","SHOW_SUBMIT_WAIT_TIMEOUT","SWIM_LANE_DIAGRAM_CONFIGURATION","BUSINESS_SCENARIO_CONCEPT_TYPE","BUSINESS_SCENARIO_STEP_CONCEPT_TYPE","BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE","CALENDAR_WEEK_STARTS_ON","CALENDAR_FIRST_WEEK_CONTAINS_DATE","UI_PARAMETERS","ALLOW_HIDE_WHEN_EMPTY_ON_TABS","PAGE_RELOAD_ON_UNAUTHORIZED_ERROR","XHR_TIMEOUT_MS","HIDE_WHEN_EMPTY_IGNORE_TASKS","settings","setSettings","config","_Object$assign","getSetting","key","defaultValue","undefined","Error","setSetting","value","allSettings","cacheContributions","getBasePath","getUploadPath","getCaptchaPath","hasAllContentInData","loginType","JAAS","loginPath","loginUsernameField","loginPasswordField","logoutPath","getSwimLaneDiagramConfiguration","configLocation","_startsWithInstanceProperty","call","setContextPath","BASE"],"sources":["../../src/constants/Settings.js"],"sourcesContent":["// @flow\nimport { isPlainObject, has } from \"../utils/helpers/objects\";\nimport { getRepositoryResourceUrl } from \"../utils/helpers/repositoryResource\";\nimport {\n ALL_CONTENT_IN_DATA_SETTING,\n INTERNAL_LOGIN_TYPE,\n LOGIN_TYPE,\n LOGIN_PATH_SETTING,\n LOGIN_USERNAME_SETTING,\n LOGIN_PASSWORD_SETTING,\n LOGOUT_PATH_SETTING,\n UPLOAD_PATH,\n CAPTCHA_PATH,\n} from \"./Constants\";\n\ntype Setting = boolean | string | number | Array<string>;\n\nconst serverBase =\n typeof __CONTEXT_PATH__ === \"undefined\" ? null : __CONTEXT_PATH__;\n\nconst defaultSettings: { [name: string]: Setting } = {\n // This uses contextPath set from property from server\n CONTEXT_PATH:\n serverBase ??\n (typeof window !== \"undefined\" && window.contextPath\n ? window.contextPath\n : \"/BeInformed\"),\n\n // Indicates if contributions should be cached\n CACHE_CONTRIBUTIONS: true,\n\n // Debug missing i18n messages in layout\n DEBUG_I18N_MESSAGE_NOT_FOUND: true,\n\n // Time to show the notification bar\n HIDE_NOTIFICATION_TIMEOUT: 5000,\n\n // Always commit form, does not show result pages for instruments\n ALWAYS_COMMIT_FORM: false,\n\n // Render instrument and event question labels on forms (might result in duplicate labels)\n RENDER_QUESTION_LABELS: true,\n\n // Render mandatory indications on attributes\n RENDER_MANDATORY_ATTRIBUTE_INDICATION: true,\n\n // Render optional indications on attributes\n RENDER_OPTIONAL_ATTRIBUTE_INDICATION: false,\n\n // Renders a toggle with supported list views, options are ListView and TableView\n AVAILABLE_LIST_VIEWS: [\"ListView\", \"TableView\"],\n\n // Toggle client side validation\n USE_CLIENTSIDE_VALIDATION: true,\n\n // Indicates if server validation should be used when a form field is changed\n USE_INSTANT_SERVER_VALIDATION: true,\n\n // Indicates which locales are enabled\n ENABLED_LOCALES: [\"en\", \"nl\"],\n\n // Renders the global log in page\n RENDER_GLOBAL_LOGIN_PAGE: false,\n\n // Renders the global log out page\n RENDER_GLOBAL_LOGOUT_PAGE: false,\n\n // Renders the login variants as option on the global logout page\n RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE: false,\n\n // Path to login page / component\n LOGIN_PATH: \"/signin\",\n\n // Path to administrator login page / component\n ADMINISTRATOR_LOGIN_PATH: \"\",\n\n // Path to logout page / component\n LOGOUT_PATH: \"/signout\",\n\n // Render forms in a modal\n RENDER_FORMS_IN_MODAL: true,\n\n // Wait timeout before rendering submit wait icon\n SHOW_SUBMIT_WAIT_TIMEOUT: 300,\n\n // Swim lane diagram configuration file\n SWIM_LANE_DIAGRAM_CONFIGURATION: \"/Library/Diagrams/Overviews.json\",\n\n // Business scenario concept types\n BUSINESS_SCENARIO_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/BusinessScenario\",\n ],\n BUSINESS_SCENARIO_STEP_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/ScenarioStep\",\n ],\n BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/Persona\",\n ],\n\n // indicates on what day the week starts (0 = Sunday)\n CALENDAR_WEEK_STARTS_ON: 1,\n\n // indicates which date indicates the first week of the year\n CALENDAR_FIRST_WEEK_CONTAINS_DATE: 1,\n\n // parameters that are added for the ui state, but should not be send to the modular ui\n UI_PARAMETERS: [],\n\n // disable hide-when-empty hint for layouts running on Be Informed versions older than 21.1\n ALLOW_HIDE_WHEN_EMPTY_ON_TABS: true,\n\n // reload the complete page on signout, usefull when third party authentication is in place\n PAGE_RELOAD_ON_UNAUTHORIZED_ERROR: false,\n\n XHR_TIMEOUT_MS: 300000,\n\n HIDE_WHEN_EMPTY_IGNORE_TASKS: false,\n};\n\nlet settings = defaultSettings;\n\n/**\n */\nexport const setSettings = (config: Object) => {\n if (isPlainObject(config)) {\n settings = Object.assign(defaultSettings, config);\n }\n};\n\n/**\n */\nexport const getSetting = (key: string, defaultValue?: any): any => {\n if (!has(settings, key) && defaultValue === undefined) {\n throw new Error(\n `Setting with name ${key} not found and no defaultValue given`\n );\n }\n\n return settings[key] ?? defaultValue;\n};\n\n/**\n */\nexport const setSetting = (key: string, value: any) => {\n settings[key] = value;\n};\n\n/**\n */\nexport const allSettings = (): { [name: string]: Setting } => settings;\n\n/**\n * Indicates if contributions must be cached\n */\nexport const cacheContributions = (): boolean =>\n getSetting(\"CACHE_CONTRIBUTIONS\", true);\n\n/**\n * Base path\n * This uses contextPath set from property from server\n * When requesting a remote server with CORS enabled, add the origin, for example:\n * export const BEINFORMED_PATH = 'http://192.168.128.61:8080/BeInformed';\n */\nexport const getBasePath = (): string =>\n getSetting(\"CONTEXT_PATH\", \"/BeInformed\");\n\n/**\n * Path to upload service\n */\nexport const getUploadPath = (): string => `${getBasePath()}${UPLOAD_PATH}`;\n\n/**\n * Path to captcha service\n */\nexport const getCaptchaPath = (): string => `${getBasePath()}${CAPTCHA_PATH}`;\n\n/**\n */\nexport const hasAllContentInData = (): boolean =>\n getSetting(ALL_CONTENT_IN_DATA_SETTING, true);\n\n/**\n * Login type, only available when pac4j is configured\n *\n * Preview does not support pac4j, thus is probably not configured when started, which results in login type JAAS\n */\nexport const loginType = (): string =>\n getSetting(LOGIN_TYPE, INTERNAL_LOGIN_TYPE.JAAS);\n\n/**\n */\nexport const loginPath = (): string =>\n getSetting(LOGIN_PATH_SETTING, \"/callback?client_name=FormClient\");\n/**\n */\nexport const loginUsernameField = (): string =>\n getSetting(LOGIN_USERNAME_SETTING, \"j_username\");\n/**\n */\nexport const loginPasswordField = (): string =>\n getSetting(LOGIN_PASSWORD_SETTING, \"j_password\");\n/**\n */\nexport const logoutPath = (): string =>\n getSetting(LOGOUT_PATH_SETTING, \"/logout\");\n\nexport const LOGIN_PATH: string = loginPath();\nexport const LOGOUT_PATH: string = logoutPath();\n\n/**\n * Model overview swim lane configuration\n */\nexport const getSwimLaneDiagramConfiguration: Object = () => {\n let configLocation = getSetting(\n \"SWIM_LANE_DIAGRAM_CONFIGURATION\",\n \"/Library/Diagrams/Overviews.json\"\n );\n if (!configLocation.startsWith(\"/\")) {\n configLocation = `/${configLocation}`;\n }\n return getRepositoryResourceUrl(configLocation);\n};\n\n/**\n * Set the context path for requests to be informed\n */\nexport const setContextPath = (contextPath: string) => {\n setSetting(\"CONTEXT_PATH\", contextPath);\n};\n\n/**\n * Backwards compatible export of BASE constant\n */\nexport const BASE: string = getBasePath();\n"],"mappings":"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"}
@@ -28,6 +28,7 @@ export { default as LayoutHintRuleCollection, addLayoutHintRule, updateLayoutHin
28
28
  export { default as BaseLayoutHintRule } from "./attributes/layouthint-rules/BaseLayoutHintRule";
29
29
  export { default as DependentAttribute } from "./attributes/layouthint-rules/DependentAttribute";
30
30
  export { default as RemainingTotalUploadSize } from "./attributes/layouthint-rules/RemainingTotalUploadSize";
31
+ import { default as LayoutHintCollection } from "./layouthint/LayoutHintCollection";
31
32
  import { default as CaseViewModel } from "./caseview/CaseViewModel";
32
33
  import { default as BusinessScenarioModel } from "./concepts/BusinessScenarioModel";
33
34
  import { default as ConceptDetailModel } from "./concepts/ConceptDetailModel";
@@ -90,5 +91,5 @@ import { default as TaskGroupModel } from "./taskgroup/TaskGroupModel";
90
91
  import { default as UserModel } from "./user/UserModel";
91
92
  import { default as UserProfileModel } from "./user/UserProfileModel";
92
93
  import { default as UserServicesModel } from "./user/UserServicesModel";
93
- export { ApplicationModel, CaseSearchModel, CaseViewModel, ListDetailModel, DetailModel, FormModel, GroupingPanelModel, ListModel, TabModel, TaskGroupModel, UserModel, UserProfileModel, UserServicesModel, ModelCatalogModel, ConceptIndexModel, ConceptDetailModel, BusinessScenarioModel, ConceptTypeDetailModel, ContentIndexModel, ContentTOCModel, ContentModel, ContentTypeModel, BooleanAttributeModel, CaptchaAttributeModel, ChoiceAttributeModel, DatetimeAttributeModel, HelptextAttributeModel, LabelAttributeModel, MemoAttributeModel, MoneyAttributeModel, NumberAttributeModel, PasswordAttributeModel, CompositeAttributeModel, StringAttributeModel, UploadAttributeModel, XMLAttributeModel, AssignmentFilterModel, FilterModel, RangeFilterModel, ConceptIndexFilterModel };
94
+ export { ApplicationModel, CaseSearchModel, CaseViewModel, ListDetailModel, DetailModel, FormModel, GroupingPanelModel, ListModel, TabModel, TaskGroupModel, UserModel, UserProfileModel, UserServicesModel, ModelCatalogModel, ConceptIndexModel, ConceptDetailModel, BusinessScenarioModel, ConceptTypeDetailModel, ContentIndexModel, ContentTOCModel, ContentModel, ContentTypeModel, BooleanAttributeModel, CaptchaAttributeModel, ChoiceAttributeModel, DatetimeAttributeModel, HelptextAttributeModel, LabelAttributeModel, MemoAttributeModel, MoneyAttributeModel, NumberAttributeModel, PasswordAttributeModel, CompositeAttributeModel, StringAttributeModel, UploadAttributeModel, XMLAttributeModel, AssignmentFilterModel, FilterModel, RangeFilterModel, ConceptIndexFilterModel, LayoutHintCollection };
94
95
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["default","resolveModel","BaseCollection","ActionCollection","ActionModel","ApplicationModel","AttributeCollection","AttributeSetModel","AttributeModel","BooleanAttributeModel","CaptchaAttributeModel","ChoiceAttributeModel","ChoiceAttributeOptionCollection","ChoiceAttributeOptionModel","CompositeAttributeModel","CompositeAttributeChildCollection","DatetimeAttributeModel","HelptextAttributeModel","LabelAttributeModel","MemoAttributeModel","MoneyAttributeModel","NumberAttributeModel","PasswordAttributeModel","StringAttributeModel","UploadAttributeModel","XMLAttributeModel","AttributeContent","LayoutHintRuleCollection","addLayoutHintRule","updateLayoutHintRules","BaseLayoutHintRule","DependentAttribute","RemainingTotalUploadSize","CaseViewModel","BusinessScenarioModel","ConceptDetailModel","ConceptIndexModel","ConceptLinkModel","ConceptRelationCollection","ConceptRelationModel","ConceptTypeDetailModel","SourceReferenceCollection","SourceReferenceModel","ConstraintCollection","ConstraintModel","ContentIndexModel","ContentLinkModel","ContentModel","ContentTOCModel","ContentTypeModel","SectionModel","SubSectionModel","ContentConfiguration","ContentConfigurationElements","ContentConfigurationEndResults","ContentConfigurationQuestions","ContentConfigurationResults","DetailModel","ErrorCollection","ErrorModel","ErrorResponse","AssignmentFilterModel","FilterModel","RangeFilterModel","ConceptIndexFilterModel","FilterCollection","FormModel","FormObjectModel","GroupingModel","GroupModel","Href","ListHref","LinkCollection","LinkModel","ListDetailModel","ListHeaderModel","ListItemCollection","ListItemModel","ListModel","LookupOptionsModel","LookupOptionCollection","ModelCatalogModel","ProcessStatusSettingsModel","PagesizeModel","PagingModel","Parameter","GroupingPanelModel","CaseSearchModel","SortingModel","SortOptionModel","TabModel","TaskGroupCollection","TaskGroupModel","UserModel","UserProfileModel","UserServicesModel"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","names":["default","resolveModel","BaseCollection","ActionCollection","ActionModel","ApplicationModel","AttributeCollection","AttributeSetModel","AttributeModel","BooleanAttributeModel","CaptchaAttributeModel","ChoiceAttributeModel","ChoiceAttributeOptionCollection","ChoiceAttributeOptionModel","CompositeAttributeModel","CompositeAttributeChildCollection","DatetimeAttributeModel","HelptextAttributeModel","LabelAttributeModel","MemoAttributeModel","MoneyAttributeModel","NumberAttributeModel","PasswordAttributeModel","StringAttributeModel","UploadAttributeModel","XMLAttributeModel","AttributeContent","LayoutHintRuleCollection","addLayoutHintRule","updateLayoutHintRules","BaseLayoutHintRule","DependentAttribute","RemainingTotalUploadSize","LayoutHintCollection","CaseViewModel","BusinessScenarioModel","ConceptDetailModel","ConceptIndexModel","ConceptLinkModel","ConceptRelationCollection","ConceptRelationModel","ConceptTypeDetailModel","SourceReferenceCollection","SourceReferenceModel","ConstraintCollection","ConstraintModel","ContentIndexModel","ContentLinkModel","ContentModel","ContentTOCModel","ContentTypeModel","SectionModel","SubSectionModel","ContentConfiguration","ContentConfigurationElements","ContentConfigurationEndResults","ContentConfigurationQuestions","ContentConfigurationResults","DetailModel","ErrorCollection","ErrorModel","ErrorResponse","AssignmentFilterModel","FilterModel","RangeFilterModel","ConceptIndexFilterModel","FilterCollection","FormModel","FormObjectModel","GroupingModel","GroupModel","Href","ListHref","LinkCollection","LinkModel","ListDetailModel","ListHeaderModel","ListItemCollection","ListItemModel","ListModel","LookupOptionsModel","LookupOptionCollection","ModelCatalogModel","ProcessStatusSettingsModel","PagesizeModel","PagingModel","Parameter","GroupingPanelModel","CaseSearchModel","SortingModel","SortOptionModel","TabModel","TaskGroupCollection","TaskGroupModel","UserModel","UserProfileModel","UserServicesModel"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as LayoutHintCollection } from \"./layouthint/LayoutHintCollection\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n LayoutHintCollection,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.setSettings = exports.setSetting = exports.logoutPath = exports.loginUsernameField = exports.loginType = exports.loginPath = exports.loginPasswordField = exports.hasAllContentInData = exports.getUploadPath = exports.getSwimLaneDiagramConfiguration = exports.getSetting = exports.getCaptchaPath = exports.getBasePath = exports.cacheContributions = exports.allSettings = exports.LOGOUT_PATH = exports.LOGIN_PATH = exports.BASE = void 0;
7
+ exports.setSettings = exports.setSetting = exports.setContextPath = exports.logoutPath = exports.loginUsernameField = exports.loginType = exports.loginPath = exports.loginPasswordField = exports.hasAllContentInData = exports.getUploadPath = exports.getSwimLaneDiagramConfiguration = exports.getSetting = exports.getCaptchaPath = exports.getBasePath = exports.cacheContributions = exports.allSettings = exports.LOGOUT_PATH = exports.LOGIN_PATH = exports.BASE = void 0;
8
8
  var _assign = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/object/assign"));
9
9
  var _startsWith = _interopRequireDefault(require("@babel/runtime-corejs3/core-js-stable/instance/starts-with"));
10
10
  var _objects = require("../utils/helpers/objects");
@@ -177,9 +177,17 @@ const getSwimLaneDiagramConfiguration = () => {
177
177
  };
178
178
 
179
179
  /**
180
- * Backwards compatible export of BASE constant
180
+ * Set the context path for requests to be informed
181
181
  */
182
182
  exports.getSwimLaneDiagramConfiguration = getSwimLaneDiagramConfiguration;
183
+ const setContextPath = contextPath => {
184
+ setSetting("CONTEXT_PATH", contextPath);
185
+ };
186
+
187
+ /**
188
+ * Backwards compatible export of BASE constant
189
+ */
190
+ exports.setContextPath = setContextPath;
183
191
  const BASE = getBasePath();
184
192
  exports.BASE = BASE;
185
193
  //# sourceMappingURL=Settings.js.map
@@ -221,6 +221,13 @@ export const getSwimLaneDiagramConfiguration: Object = () => {
221
221
  return getRepositoryResourceUrl(configLocation);
222
222
  };
223
223
 
224
+ /**
225
+ * Set the context path for requests to be informed
226
+ */
227
+ export const setContextPath = (contextPath: string) => {
228
+ setSetting("CONTEXT_PATH", contextPath);
229
+ };
230
+
224
231
  /**
225
232
  * Backwards compatible export of BASE constant
226
233
  */
@@ -1 +1 @@
1
- {"version":3,"file":"Settings.js","names":["_objects","require","_repositoryResource","_Constants","serverBase","__CONTEXT_PATH__","defaultSettings","CONTEXT_PATH","window","contextPath","CACHE_CONTRIBUTIONS","DEBUG_I18N_MESSAGE_NOT_FOUND","HIDE_NOTIFICATION_TIMEOUT","ALWAYS_COMMIT_FORM","RENDER_QUESTION_LABELS","RENDER_MANDATORY_ATTRIBUTE_INDICATION","RENDER_OPTIONAL_ATTRIBUTE_INDICATION","AVAILABLE_LIST_VIEWS","USE_CLIENTSIDE_VALIDATION","USE_INSTANT_SERVER_VALIDATION","ENABLED_LOCALES","RENDER_GLOBAL_LOGIN_PAGE","RENDER_GLOBAL_LOGOUT_PAGE","RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE","LOGIN_PATH","ADMINISTRATOR_LOGIN_PATH","LOGOUT_PATH","RENDER_FORMS_IN_MODAL","SHOW_SUBMIT_WAIT_TIMEOUT","SWIM_LANE_DIAGRAM_CONFIGURATION","BUSINESS_SCENARIO_CONCEPT_TYPE","BUSINESS_SCENARIO_STEP_CONCEPT_TYPE","BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE","CALENDAR_WEEK_STARTS_ON","CALENDAR_FIRST_WEEK_CONTAINS_DATE","UI_PARAMETERS","ALLOW_HIDE_WHEN_EMPTY_ON_TABS","PAGE_RELOAD_ON_UNAUTHORIZED_ERROR","XHR_TIMEOUT_MS","HIDE_WHEN_EMPTY_IGNORE_TASKS","settings","setSettings","config","isPlainObject","_assign","default","exports","getSetting","key","defaultValue","has","undefined","Error","setSetting","value","allSettings","cacheContributions","getBasePath","getUploadPath","UPLOAD_PATH","getCaptchaPath","CAPTCHA_PATH","hasAllContentInData","ALL_CONTENT_IN_DATA_SETTING","loginType","LOGIN_TYPE","INTERNAL_LOGIN_TYPE","JAAS","loginPath","LOGIN_PATH_SETTING","loginUsernameField","LOGIN_USERNAME_SETTING","loginPasswordField","LOGIN_PASSWORD_SETTING","logoutPath","LOGOUT_PATH_SETTING","getSwimLaneDiagramConfiguration","configLocation","_startsWith","call","getRepositoryResourceUrl","BASE"],"sources":["../../src/constants/Settings.js"],"sourcesContent":["// @flow\nimport { isPlainObject, has } from \"../utils/helpers/objects\";\nimport { getRepositoryResourceUrl } from \"../utils/helpers/repositoryResource\";\nimport {\n ALL_CONTENT_IN_DATA_SETTING,\n INTERNAL_LOGIN_TYPE,\n LOGIN_TYPE,\n LOGIN_PATH_SETTING,\n LOGIN_USERNAME_SETTING,\n LOGIN_PASSWORD_SETTING,\n LOGOUT_PATH_SETTING,\n UPLOAD_PATH,\n CAPTCHA_PATH,\n} from \"./Constants\";\n\ntype Setting = boolean | string | number | Array<string>;\n\nconst serverBase =\n typeof __CONTEXT_PATH__ === \"undefined\" ? null : __CONTEXT_PATH__;\n\nconst defaultSettings: { [name: string]: Setting } = {\n // This uses contextPath set from property from server\n CONTEXT_PATH:\n serverBase ??\n (typeof window !== \"undefined\" && window.contextPath\n ? window.contextPath\n : \"/BeInformed\"),\n\n // Indicates if contributions should be cached\n CACHE_CONTRIBUTIONS: true,\n\n // Debug missing i18n messages in layout\n DEBUG_I18N_MESSAGE_NOT_FOUND: true,\n\n // Time to show the notification bar\n HIDE_NOTIFICATION_TIMEOUT: 5000,\n\n // Always commit form, does not show result pages for instruments\n ALWAYS_COMMIT_FORM: false,\n\n // Render instrument and event question labels on forms (might result in duplicate labels)\n RENDER_QUESTION_LABELS: true,\n\n // Render mandatory indications on attributes\n RENDER_MANDATORY_ATTRIBUTE_INDICATION: true,\n\n // Render optional indications on attributes\n RENDER_OPTIONAL_ATTRIBUTE_INDICATION: false,\n\n // Renders a toggle with supported list views, options are ListView and TableView\n AVAILABLE_LIST_VIEWS: [\"ListView\", \"TableView\"],\n\n // Toggle client side validation\n USE_CLIENTSIDE_VALIDATION: true,\n\n // Indicates if server validation should be used when a form field is changed\n USE_INSTANT_SERVER_VALIDATION: true,\n\n // Indicates which locales are enabled\n ENABLED_LOCALES: [\"en\", \"nl\"],\n\n // Renders the global log in page\n RENDER_GLOBAL_LOGIN_PAGE: false,\n\n // Renders the global log out page\n RENDER_GLOBAL_LOGOUT_PAGE: false,\n\n // Renders the login variants as option on the global logout page\n RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE: false,\n\n // Path to login page / component\n LOGIN_PATH: \"/signin\",\n\n // Path to administrator login page / component\n ADMINISTRATOR_LOGIN_PATH: \"\",\n\n // Path to logout page / component\n LOGOUT_PATH: \"/signout\",\n\n // Render forms in a modal\n RENDER_FORMS_IN_MODAL: true,\n\n // Wait timeout before rendering submit wait icon\n SHOW_SUBMIT_WAIT_TIMEOUT: 300,\n\n // Swim lane diagram configuration file\n SWIM_LANE_DIAGRAM_CONFIGURATION: \"/Library/Diagrams/Overviews.json\",\n\n // Business scenario concept types\n BUSINESS_SCENARIO_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/BusinessScenario\",\n ],\n BUSINESS_SCENARIO_STEP_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/ScenarioStep\",\n ],\n BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/Persona\",\n ],\n\n // indicates on what day the week starts (0 = Sunday)\n CALENDAR_WEEK_STARTS_ON: 1,\n\n // indicates which date indicates the first week of the year\n CALENDAR_FIRST_WEEK_CONTAINS_DATE: 1,\n\n // parameters that are added for the ui state, but should not be send to the modular ui\n UI_PARAMETERS: [],\n\n // disable hide-when-empty hint for layouts running on Be Informed versions older than 21.1\n ALLOW_HIDE_WHEN_EMPTY_ON_TABS: true,\n\n // reload the complete page on signout, usefull when third party authentication is in place\n PAGE_RELOAD_ON_UNAUTHORIZED_ERROR: false,\n\n XHR_TIMEOUT_MS: 300000,\n\n HIDE_WHEN_EMPTY_IGNORE_TASKS: false,\n};\n\nlet settings = defaultSettings;\n\n/**\n */\nexport const setSettings = (config: Object) => {\n if (isPlainObject(config)) {\n settings = Object.assign(defaultSettings, config);\n }\n};\n\n/**\n */\nexport const getSetting = (key: string, defaultValue?: any): any => {\n if (!has(settings, key) && defaultValue === undefined) {\n throw new Error(\n `Setting with name ${key} not found and no defaultValue given`\n );\n }\n\n return settings[key] ?? defaultValue;\n};\n\n/**\n */\nexport const setSetting = (key: string, value: any) => {\n settings[key] = value;\n};\n\n/**\n */\nexport const allSettings = (): { [name: string]: Setting } => settings;\n\n/**\n * Indicates if contributions must be cached\n */\nexport const cacheContributions = (): boolean =>\n getSetting(\"CACHE_CONTRIBUTIONS\", true);\n\n/**\n * Base path\n * This uses contextPath set from property from server\n * When requesting a remote server with CORS enabled, add the origin, for example:\n * export const BEINFORMED_PATH = 'http://192.168.128.61:8080/BeInformed';\n */\nexport const getBasePath = (): string =>\n getSetting(\"CONTEXT_PATH\", \"/BeInformed\");\n\n/**\n * Path to upload service\n */\nexport const getUploadPath = (): string => `${getBasePath()}${UPLOAD_PATH}`;\n\n/**\n * Path to captcha service\n */\nexport const getCaptchaPath = (): string => `${getBasePath()}${CAPTCHA_PATH}`;\n\n/**\n */\nexport const hasAllContentInData = (): boolean =>\n getSetting(ALL_CONTENT_IN_DATA_SETTING, true);\n\n/**\n * Login type, only available when pac4j is configured\n *\n * Preview does not support pac4j, thus is probably not configured when started, which results in login type JAAS\n */\nexport const loginType = (): string =>\n getSetting(LOGIN_TYPE, INTERNAL_LOGIN_TYPE.JAAS);\n\n/**\n */\nexport const loginPath = (): string =>\n getSetting(LOGIN_PATH_SETTING, \"/callback?client_name=FormClient\");\n/**\n */\nexport const loginUsernameField = (): string =>\n getSetting(LOGIN_USERNAME_SETTING, \"j_username\");\n/**\n */\nexport const loginPasswordField = (): string =>\n getSetting(LOGIN_PASSWORD_SETTING, \"j_password\");\n/**\n */\nexport const logoutPath = (): string =>\n getSetting(LOGOUT_PATH_SETTING, \"/logout\");\n\nexport const LOGIN_PATH: string = loginPath();\nexport const LOGOUT_PATH: string = logoutPath();\n\n/**\n * Model overview swim lane configuration\n */\nexport const getSwimLaneDiagramConfiguration: Object = () => {\n let configLocation = getSetting(\n \"SWIM_LANE_DIAGRAM_CONFIGURATION\",\n \"/Library/Diagrams/Overviews.json\"\n );\n if (!configLocation.startsWith(\"/\")) {\n configLocation = `/${configLocation}`;\n }\n return getRepositoryResourceUrl(configLocation);\n};\n\n/**\n * Backwards compatible export of BASE constant\n */\nexport const BASE: string = getBasePath();\n"],"mappings":"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"}
1
+ {"version":3,"file":"Settings.js","names":["_objects","require","_repositoryResource","_Constants","serverBase","__CONTEXT_PATH__","defaultSettings","CONTEXT_PATH","window","contextPath","CACHE_CONTRIBUTIONS","DEBUG_I18N_MESSAGE_NOT_FOUND","HIDE_NOTIFICATION_TIMEOUT","ALWAYS_COMMIT_FORM","RENDER_QUESTION_LABELS","RENDER_MANDATORY_ATTRIBUTE_INDICATION","RENDER_OPTIONAL_ATTRIBUTE_INDICATION","AVAILABLE_LIST_VIEWS","USE_CLIENTSIDE_VALIDATION","USE_INSTANT_SERVER_VALIDATION","ENABLED_LOCALES","RENDER_GLOBAL_LOGIN_PAGE","RENDER_GLOBAL_LOGOUT_PAGE","RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE","LOGIN_PATH","ADMINISTRATOR_LOGIN_PATH","LOGOUT_PATH","RENDER_FORMS_IN_MODAL","SHOW_SUBMIT_WAIT_TIMEOUT","SWIM_LANE_DIAGRAM_CONFIGURATION","BUSINESS_SCENARIO_CONCEPT_TYPE","BUSINESS_SCENARIO_STEP_CONCEPT_TYPE","BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE","CALENDAR_WEEK_STARTS_ON","CALENDAR_FIRST_WEEK_CONTAINS_DATE","UI_PARAMETERS","ALLOW_HIDE_WHEN_EMPTY_ON_TABS","PAGE_RELOAD_ON_UNAUTHORIZED_ERROR","XHR_TIMEOUT_MS","HIDE_WHEN_EMPTY_IGNORE_TASKS","settings","setSettings","config","isPlainObject","_assign","default","exports","getSetting","key","defaultValue","has","undefined","Error","setSetting","value","allSettings","cacheContributions","getBasePath","getUploadPath","UPLOAD_PATH","getCaptchaPath","CAPTCHA_PATH","hasAllContentInData","ALL_CONTENT_IN_DATA_SETTING","loginType","LOGIN_TYPE","INTERNAL_LOGIN_TYPE","JAAS","loginPath","LOGIN_PATH_SETTING","loginUsernameField","LOGIN_USERNAME_SETTING","loginPasswordField","LOGIN_PASSWORD_SETTING","logoutPath","LOGOUT_PATH_SETTING","getSwimLaneDiagramConfiguration","configLocation","_startsWith","call","getRepositoryResourceUrl","setContextPath","BASE"],"sources":["../../src/constants/Settings.js"],"sourcesContent":["// @flow\nimport { isPlainObject, has } from \"../utils/helpers/objects\";\nimport { getRepositoryResourceUrl } from \"../utils/helpers/repositoryResource\";\nimport {\n ALL_CONTENT_IN_DATA_SETTING,\n INTERNAL_LOGIN_TYPE,\n LOGIN_TYPE,\n LOGIN_PATH_SETTING,\n LOGIN_USERNAME_SETTING,\n LOGIN_PASSWORD_SETTING,\n LOGOUT_PATH_SETTING,\n UPLOAD_PATH,\n CAPTCHA_PATH,\n} from \"./Constants\";\n\ntype Setting = boolean | string | number | Array<string>;\n\nconst serverBase =\n typeof __CONTEXT_PATH__ === \"undefined\" ? null : __CONTEXT_PATH__;\n\nconst defaultSettings: { [name: string]: Setting } = {\n // This uses contextPath set from property from server\n CONTEXT_PATH:\n serverBase ??\n (typeof window !== \"undefined\" && window.contextPath\n ? window.contextPath\n : \"/BeInformed\"),\n\n // Indicates if contributions should be cached\n CACHE_CONTRIBUTIONS: true,\n\n // Debug missing i18n messages in layout\n DEBUG_I18N_MESSAGE_NOT_FOUND: true,\n\n // Time to show the notification bar\n HIDE_NOTIFICATION_TIMEOUT: 5000,\n\n // Always commit form, does not show result pages for instruments\n ALWAYS_COMMIT_FORM: false,\n\n // Render instrument and event question labels on forms (might result in duplicate labels)\n RENDER_QUESTION_LABELS: true,\n\n // Render mandatory indications on attributes\n RENDER_MANDATORY_ATTRIBUTE_INDICATION: true,\n\n // Render optional indications on attributes\n RENDER_OPTIONAL_ATTRIBUTE_INDICATION: false,\n\n // Renders a toggle with supported list views, options are ListView and TableView\n AVAILABLE_LIST_VIEWS: [\"ListView\", \"TableView\"],\n\n // Toggle client side validation\n USE_CLIENTSIDE_VALIDATION: true,\n\n // Indicates if server validation should be used when a form field is changed\n USE_INSTANT_SERVER_VALIDATION: true,\n\n // Indicates which locales are enabled\n ENABLED_LOCALES: [\"en\", \"nl\"],\n\n // Renders the global log in page\n RENDER_GLOBAL_LOGIN_PAGE: false,\n\n // Renders the global log out page\n RENDER_GLOBAL_LOGOUT_PAGE: false,\n\n // Renders the login variants as option on the global logout page\n RENDER_MULTI_LOGIN_ON_GLOBAL_LOGOUT_PAGE: false,\n\n // Path to login page / component\n LOGIN_PATH: \"/signin\",\n\n // Path to administrator login page / component\n ADMINISTRATOR_LOGIN_PATH: \"\",\n\n // Path to logout page / component\n LOGOUT_PATH: \"/signout\",\n\n // Render forms in a modal\n RENDER_FORMS_IN_MODAL: true,\n\n // Wait timeout before rendering submit wait icon\n SHOW_SUBMIT_WAIT_TIMEOUT: 300,\n\n // Swim lane diagram configuration file\n SWIM_LANE_DIAGRAM_CONFIGURATION: \"/Library/Diagrams/Overviews.json\",\n\n // Business scenario concept types\n BUSINESS_SCENARIO_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/BusinessScenario\",\n ],\n BUSINESS_SCENARIO_STEP_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/ScenarioStep\",\n ],\n BUSINESS_SCENARIO_PERSONA_CONCEPT_TYPE: [\n \"/Library/KMTs/Business scenarios.bixml/Persona\",\n ],\n\n // indicates on what day the week starts (0 = Sunday)\n CALENDAR_WEEK_STARTS_ON: 1,\n\n // indicates which date indicates the first week of the year\n CALENDAR_FIRST_WEEK_CONTAINS_DATE: 1,\n\n // parameters that are added for the ui state, but should not be send to the modular ui\n UI_PARAMETERS: [],\n\n // disable hide-when-empty hint for layouts running on Be Informed versions older than 21.1\n ALLOW_HIDE_WHEN_EMPTY_ON_TABS: true,\n\n // reload the complete page on signout, usefull when third party authentication is in place\n PAGE_RELOAD_ON_UNAUTHORIZED_ERROR: false,\n\n XHR_TIMEOUT_MS: 300000,\n\n HIDE_WHEN_EMPTY_IGNORE_TASKS: false,\n};\n\nlet settings = defaultSettings;\n\n/**\n */\nexport const setSettings = (config: Object) => {\n if (isPlainObject(config)) {\n settings = Object.assign(defaultSettings, config);\n }\n};\n\n/**\n */\nexport const getSetting = (key: string, defaultValue?: any): any => {\n if (!has(settings, key) && defaultValue === undefined) {\n throw new Error(\n `Setting with name ${key} not found and no defaultValue given`\n );\n }\n\n return settings[key] ?? defaultValue;\n};\n\n/**\n */\nexport const setSetting = (key: string, value: any) => {\n settings[key] = value;\n};\n\n/**\n */\nexport const allSettings = (): { [name: string]: Setting } => settings;\n\n/**\n * Indicates if contributions must be cached\n */\nexport const cacheContributions = (): boolean =>\n getSetting(\"CACHE_CONTRIBUTIONS\", true);\n\n/**\n * Base path\n * This uses contextPath set from property from server\n * When requesting a remote server with CORS enabled, add the origin, for example:\n * export const BEINFORMED_PATH = 'http://192.168.128.61:8080/BeInformed';\n */\nexport const getBasePath = (): string =>\n getSetting(\"CONTEXT_PATH\", \"/BeInformed\");\n\n/**\n * Path to upload service\n */\nexport const getUploadPath = (): string => `${getBasePath()}${UPLOAD_PATH}`;\n\n/**\n * Path to captcha service\n */\nexport const getCaptchaPath = (): string => `${getBasePath()}${CAPTCHA_PATH}`;\n\n/**\n */\nexport const hasAllContentInData = (): boolean =>\n getSetting(ALL_CONTENT_IN_DATA_SETTING, true);\n\n/**\n * Login type, only available when pac4j is configured\n *\n * Preview does not support pac4j, thus is probably not configured when started, which results in login type JAAS\n */\nexport const loginType = (): string =>\n getSetting(LOGIN_TYPE, INTERNAL_LOGIN_TYPE.JAAS);\n\n/**\n */\nexport const loginPath = (): string =>\n getSetting(LOGIN_PATH_SETTING, \"/callback?client_name=FormClient\");\n/**\n */\nexport const loginUsernameField = (): string =>\n getSetting(LOGIN_USERNAME_SETTING, \"j_username\");\n/**\n */\nexport const loginPasswordField = (): string =>\n getSetting(LOGIN_PASSWORD_SETTING, \"j_password\");\n/**\n */\nexport const logoutPath = (): string =>\n getSetting(LOGOUT_PATH_SETTING, \"/logout\");\n\nexport const LOGIN_PATH: string = loginPath();\nexport const LOGOUT_PATH: string = logoutPath();\n\n/**\n * Model overview swim lane configuration\n */\nexport const getSwimLaneDiagramConfiguration: Object = () => {\n let configLocation = getSetting(\n \"SWIM_LANE_DIAGRAM_CONFIGURATION\",\n \"/Library/Diagrams/Overviews.json\"\n );\n if (!configLocation.startsWith(\"/\")) {\n configLocation = `/${configLocation}`;\n }\n return getRepositoryResourceUrl(configLocation);\n};\n\n/**\n * Set the context path for requests to be informed\n */\nexport const setContextPath = (contextPath: string) => {\n setSetting(\"CONTEXT_PATH\", contextPath);\n};\n\n/**\n * Backwards compatible export of BASE constant\n */\nexport const BASE: string = getBasePath();\n"],"mappings":"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"}
@@ -336,6 +336,12 @@ Object.defineProperty(exports, "LabelAttributeModel", {
336
336
  return _LabelAttributeModel.default;
337
337
  }
338
338
  });
339
+ Object.defineProperty(exports, "LayoutHintCollection", {
340
+ enumerable: true,
341
+ get: function () {
342
+ return _LayoutHintCollection.default;
343
+ }
344
+ });
339
345
  Object.defineProperty(exports, "LayoutHintRuleCollection", {
340
346
  enumerable: true,
341
347
  get: function () {
@@ -606,6 +612,7 @@ var _LayoutHintRuleCollection = _interopRequireWildcard(require("./attributes/la
606
612
  var _BaseLayoutHintRule = _interopRequireDefault(require("./attributes/layouthint-rules/BaseLayoutHintRule"));
607
613
  var _DependentAttribute = _interopRequireDefault(require("./attributes/layouthint-rules/DependentAttribute"));
608
614
  var _RemainingTotalUploadSize = _interopRequireDefault(require("./attributes/layouthint-rules/RemainingTotalUploadSize"));
615
+ var _LayoutHintCollection = _interopRequireDefault(require("./layouthint/LayoutHintCollection"));
609
616
  var _CaseViewModel = _interopRequireDefault(require("./caseview/CaseViewModel"));
610
617
  var _BusinessScenarioModel = _interopRequireDefault(require("./concepts/BusinessScenarioModel"));
611
618
  var _ConceptDetailModel = _interopRequireDefault(require("./concepts/ConceptDetailModel"));
@@ -41,6 +41,8 @@ export { default as BaseLayoutHintRule } from "./attributes/layouthint-rules/Bas
41
41
  export { default as DependentAttribute } from "./attributes/layouthint-rules/DependentAttribute";
42
42
  export { default as RemainingTotalUploadSize } from "./attributes/layouthint-rules/RemainingTotalUploadSize";
43
43
 
44
+ import { default as LayoutHintCollection } from "./layouthint/LayoutHintCollection";
45
+
44
46
  import { default as CaseViewModel } from "./caseview/CaseViewModel";
45
47
 
46
48
  import { default as BusinessScenarioModel } from "./concepts/BusinessScenarioModel";
@@ -168,6 +170,7 @@ export {
168
170
  FilterModel,
169
171
  RangeFilterModel,
170
172
  ConceptIndexFilterModel,
173
+ LayoutHintCollection,
171
174
  };
172
175
 
173
176
  export type * from "./types";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["_resolveModel","_interopRequireDefault","require","_BaseCollection","_ActionCollection","_ActionModel","_ApplicationModel","_AttributeCollection","_AttributeSetModel","_AttributeModel","_BooleanAttributeModel","_CaptchaAttributeModel","_ChoiceAttributeModel","_ChoiceAttributeOptionCollection","_ChoiceAttributeOptionModel","_CompositeAttributeModel","_CompositeAttributeChildCollection","_DatetimeAttributeModel","_HelptextAttributeModel","_LabelAttributeModel","_MemoAttributeModel","_MoneyAttributeModel","_NumberAttributeModel","_PasswordAttributeModel","_StringAttributeModel","_UploadAttributeModel","_XMLAttributeModel","_AttributeContent","_LayoutHintRuleCollection","_interopRequireWildcard","_BaseLayoutHintRule","_DependentAttribute","_RemainingTotalUploadSize","_CaseViewModel","_BusinessScenarioModel","_ConceptDetailModel","_ConceptIndexModel","_ConceptLinkModel","_ConceptRelationCollection","_ConceptRelationModel","_ConceptTypeDetailModel","_SourceReferenceCollection","_SourceReferenceModel","_ConstraintCollection","_ConstraintModel","_ContentIndexModel","_ContentLinkModel","_ContentModel","_ContentTOCModel","_ContentTypeModel","_SectionModel","_SubSectionModel","_ContentConfiguration","_ContentConfigurationElements","_ContentConfigurationEndResults","_ContentConfigurationQuestions","_ContentConfigurationResults","_DetailModel","_ErrorCollection","_ErrorModel","_ErrorResponse","_AssignmentFilterModel","_FilterModel","_RangeFilterModel","_ConceptIndexFilterModel","_FilterCollection","_FormModel","_FormObjectModel","_GroupingModel","_Href","_ListHref","_LinkCollection","_LinkModel","_ListDetailModel","_ListHeaderModel","_ListItemCollection","_ListItemModel","_ListModel","_LookupOptionsModel","_LookupOptionCollection","_ModelCatalogModel","_ProcessStatusSettingsModel","_PagesizeModel","_PagingModel","_Parameter","_GroupingPanelModel","_CaseSearchModel","_SortingModel","_SortOptionModel","_TabModel","_TaskGroupCollection","_TaskGroupModel","_UserModel","_UserProfileModel","_UserServicesModel","_getRequireWildcardCache","nodeInterop","_WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","_Object$getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","names":["_resolveModel","_interopRequireDefault","require","_BaseCollection","_ActionCollection","_ActionModel","_ApplicationModel","_AttributeCollection","_AttributeSetModel","_AttributeModel","_BooleanAttributeModel","_CaptchaAttributeModel","_ChoiceAttributeModel","_ChoiceAttributeOptionCollection","_ChoiceAttributeOptionModel","_CompositeAttributeModel","_CompositeAttributeChildCollection","_DatetimeAttributeModel","_HelptextAttributeModel","_LabelAttributeModel","_MemoAttributeModel","_MoneyAttributeModel","_NumberAttributeModel","_PasswordAttributeModel","_StringAttributeModel","_UploadAttributeModel","_XMLAttributeModel","_AttributeContent","_LayoutHintRuleCollection","_interopRequireWildcard","_BaseLayoutHintRule","_DependentAttribute","_RemainingTotalUploadSize","_LayoutHintCollection","_CaseViewModel","_BusinessScenarioModel","_ConceptDetailModel","_ConceptIndexModel","_ConceptLinkModel","_ConceptRelationCollection","_ConceptRelationModel","_ConceptTypeDetailModel","_SourceReferenceCollection","_SourceReferenceModel","_ConstraintCollection","_ConstraintModel","_ContentIndexModel","_ContentLinkModel","_ContentModel","_ContentTOCModel","_ContentTypeModel","_SectionModel","_SubSectionModel","_ContentConfiguration","_ContentConfigurationElements","_ContentConfigurationEndResults","_ContentConfigurationQuestions","_ContentConfigurationResults","_DetailModel","_ErrorCollection","_ErrorModel","_ErrorResponse","_AssignmentFilterModel","_FilterModel","_RangeFilterModel","_ConceptIndexFilterModel","_FilterCollection","_FormModel","_FormObjectModel","_GroupingModel","_Href","_ListHref","_LinkCollection","_LinkModel","_ListDetailModel","_ListHeaderModel","_ListItemCollection","_ListItemModel","_ListModel","_LookupOptionsModel","_LookupOptionCollection","_ModelCatalogModel","_ProcessStatusSettingsModel","_PagesizeModel","_PagingModel","_Parameter","_GroupingPanelModel","_CaseSearchModel","_SortingModel","_SortOptionModel","_TabModel","_TaskGroupCollection","_TaskGroupModel","_UserModel","_UserProfileModel","_UserServicesModel","_getRequireWildcardCache","nodeInterop","_WeakMap","cacheBabelInterop","cacheNodeInterop","obj","__esModule","default","cache","has","get","newObj","hasPropertyDescriptor","Object","defineProperty","_Object$getOwnPropertyDescriptor","key","prototype","hasOwnProperty","call","desc","set"],"sources":["../../src/models/index.js"],"sourcesContent":["// @flow\nexport { default as resolveModel } from \"./resolveModel\";\n\nexport { default as BaseCollection } from \"./base/BaseCollection\";\n\nexport { default as ActionCollection } from \"./actions/ActionCollection\";\nexport { default as ActionModel } from \"./actions/ActionModel\";\n\nimport { default as ApplicationModel } from \"./application/ApplicationModel\";\n\nexport { default as AttributeCollection } from \"./attributes/AttributeCollection\";\nexport { default as AttributeSetModel } from \"./attributes/AttributeSetModel\";\n\nexport { default as AttributeModel } from \"./attributes/AttributeModel\";\nimport { default as BooleanAttributeModel } from \"./attributes/BooleanAttributeModel\";\nimport { default as CaptchaAttributeModel } from \"./attributes/CaptchaAttributeModel\";\nimport { default as ChoiceAttributeModel } from \"./attributes/ChoiceAttributeModel\";\nexport { default as ChoiceAttributeOptionCollection } from \"./attributes/ChoiceAttributeOptionCollection\";\nexport { default as ChoiceAttributeOptionModel } from \"./attributes/ChoiceAttributeOptionModel\";\nimport { default as CompositeAttributeModel } from \"./attributes/CompositeAttributeModel\";\nexport { default as CompositeAttributeChildCollection } from \"./attributes/CompositeAttributeChildCollection\";\nimport { default as DatetimeAttributeModel } from \"./attributes/DatetimeAttributeModel\";\nimport { default as HelptextAttributeModel } from \"./attributes/HelptextAttributeModel\";\nimport { default as LabelAttributeModel } from \"./attributes/LabelAttributeModel\";\nimport { default as MemoAttributeModel } from \"./attributes/MemoAttributeModel\";\nimport { default as MoneyAttributeModel } from \"./attributes/MoneyAttributeModel\";\nimport { default as NumberAttributeModel } from \"./attributes/NumberAttributeModel\";\nimport { default as PasswordAttributeModel } from \"./attributes/PasswordAttributeModel\";\nimport { default as StringAttributeModel } from \"./attributes/StringAttributeModel\";\nimport { default as UploadAttributeModel } from \"./attributes/UploadAttributeModel\";\nimport { default as XMLAttributeModel } from \"./attributes/XMLAttributeModel\";\n\nexport { default as AttributeContent } from \"./attributes/AttributeContent\";\n\nexport {\n default as LayoutHintRuleCollection,\n addLayoutHintRule,\n updateLayoutHintRules,\n} from \"./attributes/layouthint-rules/LayoutHintRuleCollection\";\nexport { default as BaseLayoutHintRule } from \"./attributes/layouthint-rules/BaseLayoutHintRule\";\nexport { default as DependentAttribute } from \"./attributes/layouthint-rules/DependentAttribute\";\nexport { default as RemainingTotalUploadSize } from \"./attributes/layouthint-rules/RemainingTotalUploadSize\";\n\nimport { default as LayoutHintCollection } from \"./layouthint/LayoutHintCollection\";\n\nimport { default as CaseViewModel } from \"./caseview/CaseViewModel\";\n\nimport { default as BusinessScenarioModel } from \"./concepts/BusinessScenarioModel\";\nimport { default as ConceptDetailModel } from \"./concepts/ConceptDetailModel\";\nimport { default as ConceptIndexModel } from \"./concepts/ConceptIndexModel\";\nexport { default as ConceptLinkModel } from \"./concepts/ConceptLinkModel\";\nexport { default as ConceptRelationCollection } from \"./concepts/ConceptRelationCollection\";\nexport { default as ConceptRelationModel } from \"./concepts/ConceptRelationModel\";\nimport { default as ConceptTypeDetailModel } from \"./concepts/ConceptTypeDetailModel\";\nexport { default as SourceReferenceCollection } from \"./concepts/SourceReferenceCollection\";\nexport { default as SourceReferenceModel } from \"./concepts/SourceReferenceModel\";\n\nexport { default as ConstraintCollection } from \"./attributes/input-constraints/ConstraintCollection\";\nexport { default as ConstraintModel } from \"./attributes/input-constraints/ConstraintModel\";\n\nimport { default as ContentIndexModel } from \"./content/ContentIndexModel\";\nexport { default as ContentLinkModel } from \"./content/ContentLinkModel\";\nimport { default as ContentModel } from \"./content/ContentModel\";\nimport { default as ContentTOCModel } from \"./content/ContentTOCModel\";\nimport { default as ContentTypeModel } from \"./content/ContentTypeModel\";\nexport { default as SectionModel } from \"./content/SectionModel\";\nexport { default as SubSectionModel } from \"./content/SubSectionModel\";\n\nexport { default as ContentConfiguration } from \"./contentconfiguration/ContentConfiguration\";\nexport { default as ContentConfigurationElements } from \"./contentconfiguration/ContentConfigurationElements\";\nexport { default as ContentConfigurationEndResults } from \"./contentconfiguration/ContentConfigurationEndResults\";\nexport { default as ContentConfigurationQuestions } from \"./contentconfiguration/ContentConfigurationQuestions\";\nexport { default as ContentConfigurationResults } from \"./contentconfiguration/ContentConfigurationResults\";\n\nimport { default as DetailModel } from \"./detail/DetailModel\";\n\nexport { default as ErrorCollection } from \"./error/ErrorCollection\";\nexport { default as ErrorModel } from \"./error/ErrorModel\";\nexport { default as ErrorResponse } from \"./error/ErrorResponse\";\n\nimport { default as AssignmentFilterModel } from \"./filters/AssignmentFilterModel\";\nimport { default as FilterModel } from \"./filters/FilterModel\";\nimport { default as RangeFilterModel } from \"./filters/RangeFilterModel\";\nimport { default as ConceptIndexFilterModel } from \"./filters/ConceptIndexFilterModel\";\nexport { default as FilterCollection } from \"./filters/FilterCollection\";\n\nimport { default as FormModel } from \"./form/FormModel\";\nexport { default as FormObjectModel } from \"./form/FormObjectModel\";\n\nexport { default as GroupingModel, GroupModel } from \"./grouping/GroupingModel\";\n\nexport { default as Href } from \"./href/Href\";\nexport { default as ListHref } from \"./href/ListHref\";\n\nexport { default as LinkCollection } from \"./links/LinkCollection\";\nexport { default as LinkModel } from \"./links/LinkModel\";\n\nimport { default as ListDetailModel } from \"./list/ListDetailModel\";\nexport { default as ListHeaderModel } from \"./list/ListHeaderModel\";\nexport { default as ListItemCollection } from \"./list/ListItemCollection\";\nexport { default as ListItemModel } from \"./list/ListItemModel\";\nimport { default as ListModel } from \"./list/ListModel\";\n\nexport { default as LookupOptionsModel } from \"./lookup/LookupOptionsModel\";\nexport { default as LookupOptionCollection } from \"./lookup/LookupOptionCollection\";\n\nimport { default as ModelCatalogModel } from \"./modelcatalog/ModelCatalogModel\";\n\nexport { default as ProcessStatusSettingsModel } from \"./process/ProcessStatusSettingsModel\";\n\nexport { default as PagesizeModel } from \"./paging/PagesizeModel\";\nexport { default as PagingModel } from \"./paging/PagingModel\";\n\nexport { default as Parameter } from \"./parameter/Parameter\";\n\nimport { default as GroupingPanelModel } from \"./panels/GroupingPanelModel\";\n\nimport { default as CaseSearchModel } from \"./search/CaseSearchModel\";\n\nexport { default as SortingModel } from \"./sorting/SortingModel\";\nexport { default as SortOptionModel } from \"./sorting/SortOptionModel\";\n\nimport { default as TabModel } from \"./tab/TabModel\";\n\nexport { default as TaskGroupCollection } from \"./taskgroup/TaskGroupCollection\";\nimport { default as TaskGroupModel } from \"./taskgroup/TaskGroupModel\";\n\nimport { default as UserModel } from \"./user/UserModel\";\nimport { default as UserProfileModel } from \"./user/UserProfileModel\";\nimport { default as UserServicesModel } from \"./user/UserServicesModel\";\n\nexport {\n ApplicationModel,\n CaseSearchModel,\n CaseViewModel,\n ListDetailModel,\n DetailModel,\n FormModel,\n GroupingPanelModel,\n ListModel,\n TabModel,\n TaskGroupModel,\n UserModel,\n UserProfileModel,\n UserServicesModel,\n ModelCatalogModel,\n ConceptIndexModel,\n ConceptDetailModel,\n BusinessScenarioModel,\n ConceptTypeDetailModel,\n ContentIndexModel,\n ContentTOCModel,\n ContentModel,\n ContentTypeModel,\n BooleanAttributeModel,\n CaptchaAttributeModel,\n ChoiceAttributeModel,\n DatetimeAttributeModel,\n HelptextAttributeModel,\n LabelAttributeModel,\n MemoAttributeModel,\n MoneyAttributeModel,\n NumberAttributeModel,\n PasswordAttributeModel,\n CompositeAttributeModel,\n StringAttributeModel,\n UploadAttributeModel,\n XMLAttributeModel,\n AssignmentFilterModel,\n FilterModel,\n RangeFilterModel,\n ConceptIndexFilterModel,\n LayoutHintCollection,\n};\n\nexport type * from \"./types\";\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beinformed/ui",
3
- "version": "1.28.6",
3
+ "version": "1.29.0",
4
4
  "description": "Toolbox for be informed javascript layouts",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "bugs": "http://support.beinformed.com",
@@ -112,19 +112,19 @@
112
112
  "@commitlint/config-conventional": "^17.4.4",
113
113
  "@testing-library/react": "^14.0.0",
114
114
  "auditjs": "^4.0.39",
115
- "babel-jest": "^29.4.3",
115
+ "babel-jest": "^29.5.0",
116
116
  "babel-plugin-styled-components": "^2.0.7",
117
117
  "cherry-pick": "^0.5.0",
118
118
  "commit-and-tag-version": "^11.1.0",
119
119
  "cross-env": "^7.0.3",
120
120
  "documentation": "^14.0.1",
121
121
  "eslint": "^8.35.0",
122
- "eslint-config-prettier": "^8.6.0",
122
+ "eslint-config-prettier": "^8.7.0",
123
123
  "eslint-plugin-babel": "^5.3.1",
124
124
  "eslint-plugin-ft-flow": "^2.0.3",
125
125
  "eslint-plugin-import": "^2.27.5",
126
126
  "eslint-plugin-jest": "^27.2.1",
127
- "eslint-plugin-jsdoc": "^40.0.0",
127
+ "eslint-plugin-jsdoc": "^40.0.1",
128
128
  "eslint-plugin-react": "^7.32.2",
129
129
  "eslint-plugin-react-hooks": "^4.5.0",
130
130
  "eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
@@ -134,8 +134,8 @@
134
134
  "glob": "^8.1.0",
135
135
  "history": "^4.0.0",
136
136
  "husky": "^8.0.3",
137
- "jest": "^29.4.3",
138
- "jest-environment-jsdom": "^29.4.3",
137
+ "jest": "^29.5.0",
138
+ "jest-environment-jsdom": "^29.5.0",
139
139
  "jest-junit": "^15.0.0",
140
140
  "jest-sonar-reporter": "^2.0.0",
141
141
  "jscodeshift": "^0.14.0",
@@ -151,8 +151,8 @@
151
151
  "redux": "^4.2.1",
152
152
  "redux-mock-store": "^1.5.4",
153
153
  "redux-thunk": "^2.4.2",
154
- "rimraf": "^4.1.2",
155
- "styled-components": "^5.3.6",
154
+ "rimraf": "^4.4.0",
155
+ "styled-components": "^5.3.8",
156
156
  "xhr-mock": "^2.5.1"
157
157
  },
158
158
  "scarfSettings": {
@@ -221,6 +221,13 @@ export const getSwimLaneDiagramConfiguration: Object = () => {
221
221
  return getRepositoryResourceUrl(configLocation);
222
222
  };
223
223
 
224
+ /**
225
+ * Set the context path for requests to be informed
226
+ */
227
+ export const setContextPath = (contextPath: string) => {
228
+ setSetting("CONTEXT_PATH", contextPath);
229
+ };
230
+
224
231
  /**
225
232
  * Backwards compatible export of BASE constant
226
233
  */
@@ -41,6 +41,8 @@ export { default as BaseLayoutHintRule } from "./attributes/layouthint-rules/Bas
41
41
  export { default as DependentAttribute } from "./attributes/layouthint-rules/DependentAttribute";
42
42
  export { default as RemainingTotalUploadSize } from "./attributes/layouthint-rules/RemainingTotalUploadSize";
43
43
 
44
+ import { default as LayoutHintCollection } from "./layouthint/LayoutHintCollection";
45
+
44
46
  import { default as CaseViewModel } from "./caseview/CaseViewModel";
45
47
 
46
48
  import { default as BusinessScenarioModel } from "./concepts/BusinessScenarioModel";
@@ -168,6 +170,7 @@ export {
168
170
  FilterModel,
169
171
  RangeFilterModel,
170
172
  ConceptIndexFilterModel,
173
+ LayoutHintCollection,
171
174
  };
172
175
 
173
176
  export type * from "./types";