@finsemble/finsemble-ui 8.3.0-beta.8 → 8.3.1

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 (683) hide show
  1. package/FEA.d.ts +102 -28
  2. package/FEA.d.ts.map +1 -1
  3. package/FEA.js.map +1 -1
  4. package/clients/Interop/FinsembleDesktopAgent.d.ts +1 -0
  5. package/clients/Interop/FinsembleDesktopAgent.d.ts.map +1 -1
  6. package/clients/Interop/FinsembleDesktopAgent.js +17 -16
  7. package/clients/Interop/FinsembleDesktopAgent.js.map +1 -1
  8. package/clients/Interop/types.d.ts +1 -0
  9. package/clients/Interop/types.d.ts.map +1 -1
  10. package/clients/Startup/FSBLDesktop.d.ts +2 -8
  11. package/clients/Startup/FSBLDesktop.d.ts.map +1 -1
  12. package/clients/Startup/FSBLDesktop.js +2 -4
  13. package/clients/Startup/FSBLDesktop.js.map +1 -1
  14. package/clients/Startup/unhandledErrors.d.ts.map +1 -1
  15. package/clients/Startup/unhandledErrors.js +6 -4
  16. package/clients/Startup/unhandledErrors.js.map +1 -1
  17. package/clients/Startup/windowStartup.d.ts.map +1 -1
  18. package/clients/Startup/windowStartup.js +125 -112
  19. package/clients/Startup/windowStartup.js.map +1 -1
  20. package/clients/StoreModel.d.ts +8 -8
  21. package/clients/StoreModel.js +9 -9
  22. package/clients/StoreModel.js.map +1 -1
  23. package/clients/appsClient.d.ts +463 -0
  24. package/clients/appsClient.d.ts.map +1 -0
  25. package/clients/appsClient.js +696 -0
  26. package/clients/appsClient.js.map +1 -0
  27. package/clients/authenticationClient.d.ts +36 -27
  28. package/clients/authenticationClient.d.ts.map +1 -1
  29. package/clients/authenticationClient.js +18 -15
  30. package/clients/authenticationClient.js.map +1 -1
  31. package/clients/configClient.d.ts +189 -71
  32. package/clients/configClient.d.ts.map +1 -1
  33. package/clients/configClient.js +185 -114
  34. package/clients/configClient.js.map +1 -1
  35. package/clients/controller/DialogManagerClientController.d.ts +78 -0
  36. package/clients/controller/DialogManagerClientController.d.ts.map +1 -0
  37. package/clients/controller/DialogManagerClientController.js +213 -0
  38. package/clients/controller/DialogManagerClientController.js.map +1 -0
  39. package/clients/dialogManagerClient.d.ts +11 -75
  40. package/clients/dialogManagerClient.d.ts.map +1 -1
  41. package/clients/dialogManagerClient.js +11 -208
  42. package/clients/dialogManagerClient.js.map +1 -1
  43. package/clients/distributedStoreClient.d.ts +4 -0
  44. package/clients/distributedStoreClient.d.ts.map +1 -1
  45. package/clients/distributedStoreClient.js +4 -0
  46. package/clients/distributedStoreClient.js.map +1 -1
  47. package/clients/hotkeyClient.d.ts +23 -9
  48. package/clients/hotkeyClient.d.ts.map +1 -1
  49. package/clients/hotkeyClient.js +35 -14
  50. package/clients/hotkeyClient.js.map +1 -1
  51. package/clients/index.d.ts +2 -0
  52. package/clients/index.d.ts.map +1 -1
  53. package/clients/index.js +2 -0
  54. package/clients/index.js.map +1 -1
  55. package/clients/launcherClient.d.ts +55 -209
  56. package/clients/launcherClient.d.ts.map +1 -1
  57. package/clients/launcherClient.js +37 -422
  58. package/clients/launcherClient.js.map +1 -1
  59. package/clients/logger.d.ts +6 -0
  60. package/clients/logger.d.ts.map +1 -1
  61. package/clients/logger.js +49 -41
  62. package/clients/logger.js.map +1 -1
  63. package/clients/notificationClient.d.ts +32 -8
  64. package/clients/notificationClient.d.ts.map +1 -1
  65. package/clients/notificationClient.js +32 -8
  66. package/clients/notificationClient.js.map +1 -1
  67. package/clients/routerClient.d.ts +39 -21
  68. package/clients/routerClient.d.ts.map +1 -1
  69. package/clients/routerClient.js +38 -20
  70. package/clients/routerClient.js.map +1 -1
  71. package/clients/searchClient.d.ts +7 -2
  72. package/clients/searchClient.d.ts.map +1 -1
  73. package/clients/searchClient.js +7 -2
  74. package/clients/searchClient.js.map +1 -1
  75. package/clients/storageClient.d.ts +19 -6
  76. package/clients/storageClient.d.ts.map +1 -1
  77. package/clients/storageClient.js +18 -6
  78. package/clients/storageClient.js.map +1 -1
  79. package/clients/windowClient.d.ts +207 -80
  80. package/clients/windowClient.d.ts.map +1 -1
  81. package/clients/windowClient.js +291 -139
  82. package/clients/windowClient.js.map +1 -1
  83. package/clients/workspaceClient.d.ts +45 -18
  84. package/clients/workspaceClient.d.ts.map +1 -1
  85. package/clients/workspaceClient.js +41 -13
  86. package/clients/workspaceClient.js.map +1 -1
  87. package/common/Desktop.d.ts +12 -50
  88. package/common/Desktop.d.ts.map +1 -1
  89. package/common/Desktop.js +14 -64
  90. package/common/Desktop.js.map +1 -1
  91. package/common/FinsembleWindow.d.ts +5 -108
  92. package/common/FinsembleWindow.d.ts.map +1 -1
  93. package/common/FinsembleWindow.js +28 -349
  94. package/common/FinsembleWindow.js.map +1 -1
  95. package/common/Monitors.d.ts +30 -18
  96. package/common/Monitors.d.ts.map +1 -1
  97. package/common/Monitors.js +45 -80
  98. package/common/Monitors.js.map +1 -1
  99. package/common/Singleton.d.ts +7 -1
  100. package/common/Singleton.d.ts.map +1 -1
  101. package/common/Singleton.js +24 -11
  102. package/common/Singleton.js.map +1 -1
  103. package/common/constants.d.ts +3 -9
  104. package/common/constants.d.ts.map +1 -1
  105. package/common/constants.js +3 -14
  106. package/common/constants.js.map +1 -1
  107. package/common/events/FinsembleEvent.d.ts +1 -1
  108. package/common/events/FinsembleEvent.d.ts.map +1 -1
  109. package/common/redux/getRemoteStore.d.ts +53 -0
  110. package/common/redux/getRemoteStore.d.ts.map +1 -0
  111. package/common/redux/getRemoteStore.js +50 -0
  112. package/common/redux/getRemoteStore.js.map +1 -0
  113. package/common/redux/remoteReduxEnhancer.d.ts +7 -7
  114. package/common/redux/remoteReduxEnhancer.d.ts.map +1 -1
  115. package/common/redux/remoteReduxEnhancer.js +35 -20
  116. package/common/redux/remoteReduxEnhancer.js.map +1 -1
  117. package/common/redux/types.d.ts +14 -1
  118. package/common/redux/types.d.ts.map +1 -1
  119. package/common/systemManagerClient.d.ts +11 -5
  120. package/common/systemManagerClient.d.ts.map +1 -1
  121. package/common/systemManagerClient.js +25 -8
  122. package/common/systemManagerClient.js.map +1 -1
  123. package/common/util.d.ts +1 -7
  124. package/common/util.d.ts.map +1 -1
  125. package/common/util.js +1 -14
  126. package/common/util.js.map +1 -1
  127. package/deprecated/deprecatedFunctions.d.ts +1 -1
  128. package/deprecated/deprecatedFunctions.d.ts.map +1 -1
  129. package/deprecated/deprecatedFunctions.js +3 -4
  130. package/deprecated/deprecatedFunctions.js.map +1 -1
  131. package/deprecated/deprecatedlauncherClient.d.ts +1 -1
  132. package/deprecated/deprecatedlauncherClient.d.ts.map +1 -1
  133. package/deprecated/deprecatedlauncherClient.js.map +1 -1
  134. package/deprecated/dragAndDropClient.d.ts +4 -3
  135. package/deprecated/dragAndDropClient.d.ts.map +1 -1
  136. package/deprecated/dragAndDropClient.js +15 -4
  137. package/deprecated/dragAndDropClient.js.map +1 -1
  138. package/deprecated/linkerClient.d.ts +1 -1
  139. package/deprecated/linkerClient.d.ts.map +1 -1
  140. package/main.d.ts +289 -171
  141. package/main.d.ts.map +1 -1
  142. package/main.js +3 -1
  143. package/main.js.map +1 -1
  144. package/package.json +4 -4
  145. package/platform/services/Interop/modules/types.d.ts +2 -0
  146. package/platform/services/Interop/modules/types.d.ts.map +1 -1
  147. package/platform/services/Interop/types.d.ts +24 -2
  148. package/platform/services/Interop/types.d.ts.map +1 -1
  149. package/platform/services/Interop/types.js.map +1 -1
  150. package/platform/services/router/types.d.ts +5 -6
  151. package/platform/services/router/types.d.ts.map +1 -1
  152. package/platform/services/systemManager/_constants.d.ts +1 -0
  153. package/platform/services/systemManager/_constants.d.ts.map +1 -1
  154. package/platform/services/systemManager/_constants.js +2 -0
  155. package/platform/services/systemManager/_constants.js.map +1 -1
  156. package/platform/services/systemManager/types.d.ts +1 -1
  157. package/platform/services/systemManager/types.d.ts.map +1 -1
  158. package/platform/services/systemManager/types.js.map +1 -1
  159. package/platform/services/window/modules/actions.d.ts +68 -0
  160. package/platform/services/window/modules/actions.d.ts.map +1 -0
  161. package/platform/services/window/modules/actions.js +60 -0
  162. package/platform/services/window/modules/actions.js.map +1 -0
  163. package/platform/services/window/types.d.ts +275 -51
  164. package/platform/services/window/types.d.ts.map +1 -1
  165. package/platform/services/workspace/types.d.ts +4 -3
  166. package/platform/services/workspace/types.d.ts.map +1 -1
  167. package/react/actions/smartDesktopDesignerActions.d.ts +7 -1
  168. package/react/actions/smartDesktopDesignerActions.d.ts.map +1 -1
  169. package/react/actions/smartDesktopDesignerActions.js +3 -0
  170. package/react/actions/smartDesktopDesignerActions.js.map +1 -1
  171. package/react/assets/css/core/icons.css +0 -5
  172. package/react/assets/css/dialogs.css +2 -1
  173. package/react/assets/css/fonts/icons-reference.html +1 -1
  174. package/react/assets/css/processMonitor.css +9 -4
  175. package/react/assets/css/userPreferences.css +1 -1
  176. package/react/assets/css/windowTitleBar.css +101 -285
  177. package/react/assets/icons/chevron-down.svg +1 -0
  178. package/react/assets/icons/chevron-up.svg +1 -0
  179. package/react/components/appCatalog/AppCatalog.d.ts +3 -0
  180. package/react/components/appCatalog/AppCatalog.d.ts.map +1 -1
  181. package/react/components/appCatalog/AppCatalog.js +3 -0
  182. package/react/components/appCatalog/AppCatalog.js.map +1 -1
  183. package/react/components/appCatalog/AppCatalogComponent.d.ts +4 -0
  184. package/react/components/appCatalog/AppCatalogComponent.d.ts.map +1 -1
  185. package/react/components/appCatalog/AppCatalogComponent.js +6 -2
  186. package/react/components/appCatalog/AppCatalogComponent.js.map +1 -1
  187. package/react/components/common/ButtonRow.d.ts.map +1 -1
  188. package/react/components/common/ButtonRow.js +4 -9
  189. package/react/components/common/ButtonRow.js.map +1 -1
  190. package/react/components/common/Checkbox.d.ts +1 -0
  191. package/react/components/common/Checkbox.d.ts.map +1 -1
  192. package/react/components/common/Checkbox.js +14 -2
  193. package/react/components/common/Checkbox.js.map +1 -1
  194. package/react/components/common/ContextMenu.d.ts.map +1 -1
  195. package/react/components/common/ContextMenu.js +5 -11
  196. package/react/components/common/ContextMenu.js.map +1 -1
  197. package/react/components/common/DropdownButton.d.ts.map +1 -1
  198. package/react/components/common/DropdownButton.js +11 -24
  199. package/react/components/common/DropdownButton.js.map +1 -1
  200. package/react/components/common/FinsembleIcon.d.ts +1 -1
  201. package/react/components/common/FinsembleIcon.d.ts.map +1 -1
  202. package/react/components/common/FinsembleIcon.js +6 -4
  203. package/react/components/common/FinsembleIcon.js.map +1 -1
  204. package/react/components/common/FinsembleLink.d.ts +7 -0
  205. package/react/components/common/FinsembleLink.d.ts.map +1 -0
  206. package/react/components/common/FinsembleLink.js +13 -0
  207. package/react/components/common/FinsembleLink.js.map +1 -0
  208. package/react/components/common/Header.d.ts +1 -0
  209. package/react/components/common/Header.d.ts.map +1 -1
  210. package/react/components/common/Header.js +4 -2
  211. package/react/components/common/Header.js.map +1 -1
  212. package/react/components/common/css/accordion.css +9 -21
  213. package/react/components/common/css/application-edit-page.css +0 -15
  214. package/react/components/common/css/application-list.css +54 -23
  215. package/react/components/common/css/button.css +20 -0
  216. package/react/components/common/css/selector.css +3 -1
  217. package/react/components/downloadManager/DownloadManager.d.ts +1 -1
  218. package/react/components/downloadManager/DownloadManager.d.ts.map +1 -1
  219. package/react/components/downloadManager/DownloadManager.js +2 -4
  220. package/react/components/downloadManager/DownloadManager.js.map +1 -1
  221. package/react/components/fdc3Resolver/ResolverContainer.d.ts +6 -0
  222. package/react/components/fdc3Resolver/ResolverContainer.d.ts.map +1 -1
  223. package/react/components/fdc3Resolver/ResolverContainer.js +37 -89
  224. package/react/components/fdc3Resolver/ResolverContainer.js.map +1 -1
  225. package/react/components/fdc3Resolver/ResolverDialog.d.ts +10 -1
  226. package/react/components/fdc3Resolver/ResolverDialog.d.ts.map +1 -1
  227. package/react/components/fdc3Resolver/ResolverDialog.js +78 -66
  228. package/react/components/fdc3Resolver/ResolverDialog.js.map +1 -1
  229. package/react/components/icon/Icon.js +1 -1
  230. package/react/components/icon/Icon.js.map +1 -1
  231. package/react/components/legacyControls/FinsembleDialogTextInput.d.ts +1 -1
  232. package/react/components/legacyControls/FinsembleDialogTextInput.d.ts.map +1 -1
  233. package/react/components/linker/remoteRedux.d.ts +2 -9
  234. package/react/components/linker/remoteRedux.d.ts.map +1 -1
  235. package/react/components/linker/remoteRedux.js +2 -22
  236. package/react/components/linker/remoteRedux.js.map +1 -1
  237. package/react/components/notifications/components/shared/IconButton.d.ts +1 -1
  238. package/react/components/notifications/components/shared/IconButton.d.ts.map +1 -1
  239. package/react/components/notifications/components/shared/IconButton.js +2 -2
  240. package/react/components/notifications/components/shared/IconButton.js.map +1 -1
  241. package/react/components/notifications/components/shared/NotificationCardShell.d.ts +1 -1
  242. package/react/components/notifications/components/shared/NotificationCardShell.d.ts.map +1 -1
  243. package/react/components/notifications/components/shared/notificationCard/NotificationCardHeaderControls.d.ts +1 -1
  244. package/react/components/notifications/components/shared/notificationCard/NotificationCardHeaderControls.d.ts.map +1 -1
  245. package/react/components/notifications/components/shared/notificationCard/NotificationCardHeaderShell.d.ts +1 -1
  246. package/react/components/notifications/components/shared/notificationCard/NotificationCardHeaderShell.d.ts.map +1 -1
  247. package/react/components/notifications/css/notification-center.css +2 -0
  248. package/react/components/processMonitor/ProcessMonitor.d.ts.map +1 -1
  249. package/react/components/processMonitor/ProcessMonitor.js +14 -36
  250. package/react/components/processMonitor/ProcessMonitor.js.map +1 -1
  251. package/react/components/processMonitor/ProcessMonitorTypes.d.ts +0 -4
  252. package/react/components/processMonitor/ProcessMonitorTypes.d.ts.map +1 -1
  253. package/react/components/processMonitor/ProcessMonitorTypes.js +1 -5
  254. package/react/components/processMonitor/ProcessMonitorTypes.js.map +1 -1
  255. package/react/components/processMonitor/components/ChildWindow.d.ts +2 -3
  256. package/react/components/processMonitor/components/ChildWindow.d.ts.map +1 -1
  257. package/react/components/processMonitor/components/ChildWindow.js +5 -9
  258. package/react/components/processMonitor/components/ChildWindow.js.map +1 -1
  259. package/react/components/processMonitor/components/ListHeader.d.ts +1 -5
  260. package/react/components/processMonitor/components/ListHeader.d.ts.map +1 -1
  261. package/react/components/processMonitor/components/ListHeader.js +3 -2
  262. package/react/components/processMonitor/components/ListHeader.js.map +1 -1
  263. package/react/components/processMonitor/components/Process.d.ts +10 -0
  264. package/react/components/processMonitor/components/Process.d.ts.map +1 -0
  265. package/react/components/processMonitor/components/Process.js +11 -0
  266. package/react/components/processMonitor/components/Process.js.map +1 -0
  267. package/react/components/processMonitor/components/ProcessStatistics.d.ts +5 -4
  268. package/react/components/processMonitor/components/ProcessStatistics.d.ts.map +1 -1
  269. package/react/components/processMonitor/components/ProcessStatistics.js +10 -7
  270. package/react/components/processMonitor/components/ProcessStatistics.js.map +1 -1
  271. package/react/components/processMonitor/constants.d.ts +1 -2
  272. package/react/components/processMonitor/constants.d.ts.map +1 -1
  273. package/react/components/processMonitor/constants.js +2 -8
  274. package/react/components/processMonitor/constants.js.map +1 -1
  275. package/react/components/processMonitor/helpers.d.ts +0 -1
  276. package/react/components/processMonitor/helpers.d.ts.map +1 -1
  277. package/react/components/processMonitor/helpers.js +2 -9
  278. package/react/components/processMonitor/helpers.js.map +1 -1
  279. package/react/components/processMonitor/stores/ProcessMonitorStore.d.ts +0 -4
  280. package/react/components/processMonitor/stores/ProcessMonitorStore.d.ts.map +1 -1
  281. package/react/components/processMonitor/stores/ProcessMonitorStore.js +0 -29
  282. package/react/components/processMonitor/stores/ProcessMonitorStore.js.map +1 -1
  283. package/react/components/sdd/Content.d.ts +9 -0
  284. package/react/components/sdd/Content.d.ts.map +1 -0
  285. package/react/components/sdd/Content.js +7 -0
  286. package/react/components/sdd/Content.js.map +1 -0
  287. package/react/components/sdd/Dashboard.d.ts +20 -0
  288. package/react/components/sdd/Dashboard.d.ts.map +1 -0
  289. package/react/components/sdd/Dashboard.js +103 -0
  290. package/react/components/sdd/Dashboard.js.map +1 -0
  291. package/react/components/sdd/Export.d.ts +24 -0
  292. package/react/components/sdd/Export.d.ts.map +1 -0
  293. package/react/components/sdd/Export.js +133 -0
  294. package/react/components/sdd/Export.js.map +1 -0
  295. package/react/components/sdd/ExportCloud.d.ts +7 -0
  296. package/react/components/sdd/ExportCloud.d.ts.map +1 -0
  297. package/react/components/sdd/ExportCloud.js +38 -0
  298. package/react/components/sdd/ExportCloud.js.map +1 -0
  299. package/react/components/sdd/ExportDeployInfo.d.ts +3 -0
  300. package/react/components/sdd/ExportDeployInfo.d.ts.map +1 -0
  301. package/react/components/sdd/ExportDeployInfo.js +18 -0
  302. package/react/components/sdd/ExportDeployInfo.js.map +1 -0
  303. package/react/components/sdd/ExportZip.d.ts +7 -0
  304. package/react/components/sdd/ExportZip.d.ts.map +1 -0
  305. package/react/components/sdd/ExportZip.js +43 -0
  306. package/react/components/sdd/ExportZip.js.map +1 -0
  307. package/react/components/sdd/ProjectErrors.d.ts +12 -0
  308. package/react/components/sdd/ProjectErrors.d.ts.map +1 -0
  309. package/react/components/sdd/ProjectErrors.js +26 -0
  310. package/react/components/sdd/ProjectErrors.js.map +1 -0
  311. package/react/components/sdd/ProjectMasonry.d.ts +13 -0
  312. package/react/components/sdd/ProjectMasonry.d.ts.map +1 -0
  313. package/react/components/sdd/ProjectMasonry.js +22 -0
  314. package/react/components/sdd/ProjectMasonry.js.map +1 -0
  315. package/react/components/sdd/Publish.d.ts +9 -0
  316. package/react/components/sdd/Publish.d.ts.map +1 -0
  317. package/react/components/sdd/Publish.js +113 -0
  318. package/react/components/sdd/Publish.js.map +1 -0
  319. package/react/components/sdd/PublishProgress.d.ts +10 -0
  320. package/react/components/sdd/PublishProgress.d.ts.map +1 -0
  321. package/react/components/sdd/PublishProgress.js +24 -0
  322. package/react/components/sdd/PublishProgress.js.map +1 -0
  323. package/react/components/sdd/View.d.ts +9 -0
  324. package/react/components/sdd/View.d.ts.map +1 -0
  325. package/react/components/sdd/View.js +7 -0
  326. package/react/components/sdd/View.js.map +1 -0
  327. package/react/components/sdd/css/addApp.css +62 -8
  328. package/react/components/sdd/css/appD.css +81 -0
  329. package/react/components/sdd/css/appDViewer.css +93 -0
  330. package/react/components/sdd/css/applications.css +53 -15
  331. package/react/components/sdd/css/exportAppD.css +31 -0
  332. package/react/components/sdd/css/horizontalScroll.css +9 -0
  333. package/react/components/sdd/css/project-header.css +2 -1
  334. package/react/components/sdd/css/views.css +3 -0
  335. package/react/components/sdd/smartDesktopClient.d.ts +627 -0
  336. package/react/components/sdd/smartDesktopClient.d.ts.map +1 -0
  337. package/react/components/sdd/smartDesktopClient.js +1222 -0
  338. package/react/components/sdd/smartDesktopClient.js.map +1 -0
  339. package/react/components/sdd/types.d.ts +9 -0
  340. package/react/components/sdd/types.d.ts.map +1 -0
  341. package/react/components/sdd/types.js +2 -0
  342. package/react/components/sdd/types.js.map +1 -0
  343. package/react/components/search/SearchInput.d.ts +1 -2
  344. package/react/components/search/SearchInput.d.ts.map +1 -1
  345. package/react/components/search/SearchInput.js +11 -13
  346. package/react/components/search/SearchInput.js.map +1 -1
  347. package/react/components/search/SearchResults.d.ts.map +1 -1
  348. package/react/components/search/SearchResults.js +6 -6
  349. package/react/components/search/SearchResults.js.map +1 -1
  350. package/react/components/shared/openQuitConfirmationDialog.d.ts.map +1 -1
  351. package/react/components/shared/openQuitConfirmationDialog.js +31 -4
  352. package/react/components/shared/openQuitConfirmationDialog.js.map +1 -1
  353. package/react/components/singleInputDialog/SingleInputDialog.d.ts.map +1 -1
  354. package/react/components/singleInputDialog/SingleInputDialog.js +83 -100
  355. package/react/components/singleInputDialog/SingleInputDialog.js.map +1 -1
  356. package/react/components/toolbar/DownloadButton.d.ts +1 -1
  357. package/react/components/toolbar/DownloadButton.d.ts.map +1 -1
  358. package/react/components/toolbar/DownloadButton.js +3 -6
  359. package/react/components/toolbar/DownloadButton.js.map +1 -1
  360. package/react/components/toolbar/DragHandle.d.ts.map +1 -1
  361. package/react/components/toolbar/DragHandle.js +8 -5
  362. package/react/components/toolbar/DragHandle.js.map +1 -1
  363. package/react/components/toolbar/ToolbarIcon.d.ts.map +1 -1
  364. package/react/components/toolbar/ToolbarIcon.js +10 -1
  365. package/react/components/toolbar/ToolbarIcon.js.map +1 -1
  366. package/react/components/toolbar/ToolbarShell.d.ts +1 -0
  367. package/react/components/toolbar/ToolbarShell.d.ts.map +1 -1
  368. package/react/components/toolbar/ToolbarShell.js +3 -2
  369. package/react/components/toolbar/ToolbarShell.js.map +1 -1
  370. package/react/components/toolbar/advancedAppLauncher/components/LeftNavBottomLinks.d.ts.map +1 -1
  371. package/react/components/toolbar/advancedAppLauncher/components/LeftNavBottomLinks.js +3 -0
  372. package/react/components/toolbar/advancedAppLauncher/components/LeftNavBottomLinks.js.map +1 -1
  373. package/react/components/userPreferences/components/content/Workspaces.d.ts +5 -0
  374. package/react/components/userPreferences/components/content/Workspaces.d.ts.map +1 -1
  375. package/react/components/userPreferences/components/content/Workspaces.js +14 -1
  376. package/react/components/userPreferences/components/content/Workspaces.js.map +1 -1
  377. package/react/components/userPreferences/components/content/notificationViews/NotificationsSourceTypes.d.ts.map +1 -1
  378. package/react/components/userPreferences/components/content/notificationViews/NotificationsSourceTypes.js +1 -1
  379. package/react/components/userPreferences/components/content/notificationViews/NotificationsSourceTypes.js.map +1 -1
  380. package/react/components/userPreferences/components/content/notificationViews/NotificationsSourcesPreferences.d.ts.map +1 -1
  381. package/react/components/userPreferences/components/content/notificationViews/NotificationsSourcesPreferences.js +1 -1
  382. package/react/components/userPreferences/components/content/notificationViews/NotificationsSourcesPreferences.js.map +1 -1
  383. package/react/components/utils.d.ts +50 -0
  384. package/react/components/utils.d.ts.map +1 -0
  385. package/react/components/utils.js +60 -0
  386. package/react/components/utils.js.map +1 -0
  387. package/react/components/windowTitleBar/AlwaysOnTopButton.d.ts +9 -0
  388. package/react/components/windowTitleBar/AlwaysOnTopButton.d.ts.map +1 -0
  389. package/react/components/windowTitleBar/AlwaysOnTopButton.js +29 -0
  390. package/react/components/windowTitleBar/AlwaysOnTopButton.js.map +1 -0
  391. package/react/components/windowTitleBar/CloseButton.d.ts.map +1 -0
  392. package/react/components/windowTitleBar/CloseButton.js +22 -0
  393. package/react/components/windowTitleBar/CloseButton.js.map +1 -0
  394. package/react/components/windowTitleBar/GroupingButton.d.ts +3 -0
  395. package/react/components/windowTitleBar/GroupingButton.d.ts.map +1 -0
  396. package/react/components/windowTitleBar/GroupingButton.js +25 -0
  397. package/react/components/windowTitleBar/GroupingButton.js.map +1 -0
  398. package/react/components/windowTitleBar/LinkerButton.d.ts.map +1 -0
  399. package/react/components/windowTitleBar/{components/left/LinkerButton.js → LinkerButton.js} +4 -4
  400. package/react/components/windowTitleBar/LinkerButton.js.map +1 -0
  401. package/react/components/windowTitleBar/LinkerButtonDeprecated.d.ts +11 -0
  402. package/react/components/windowTitleBar/LinkerButtonDeprecated.d.ts.map +1 -0
  403. package/react/components/windowTitleBar/LinkerButtonDeprecated.js +63 -0
  404. package/react/components/windowTitleBar/LinkerButtonDeprecated.js.map +1 -0
  405. package/react/components/windowTitleBar/LinkerGroups.d.ts.map +1 -0
  406. package/react/components/windowTitleBar/{components/left/LinkerGroups.js → LinkerGroups.js} +2 -3
  407. package/react/components/windowTitleBar/LinkerGroups.js.map +1 -0
  408. package/react/components/windowTitleBar/LinkerGroupsDeprecated.d.ts +7 -0
  409. package/react/components/windowTitleBar/LinkerGroupsDeprecated.d.ts.map +1 -0
  410. package/react/components/windowTitleBar/LinkerGroupsDeprecated.js +35 -0
  411. package/react/components/windowTitleBar/LinkerGroupsDeprecated.js.map +1 -0
  412. package/react/components/windowTitleBar/MaximizeButton.d.ts +3 -0
  413. package/react/components/windowTitleBar/MaximizeButton.d.ts.map +1 -0
  414. package/react/components/windowTitleBar/MaximizeButton.js +18 -0
  415. package/react/components/windowTitleBar/MaximizeButton.js.map +1 -0
  416. package/react/components/windowTitleBar/MinimizeButton.d.ts +3 -0
  417. package/react/components/windowTitleBar/MinimizeButton.d.ts.map +1 -0
  418. package/react/components/windowTitleBar/MinimizeButton.js +21 -0
  419. package/react/components/windowTitleBar/MinimizeButton.js.map +1 -0
  420. package/react/components/windowTitleBar/ShareButton.d.ts +3 -0
  421. package/react/components/windowTitleBar/ShareButton.d.ts.map +1 -0
  422. package/react/components/windowTitleBar/ShareButton.js +24 -0
  423. package/react/components/windowTitleBar/ShareButton.js.map +1 -0
  424. package/react/components/windowTitleBar/TabRegion.d.ts +7 -0
  425. package/react/components/windowTitleBar/TabRegion.d.ts.map +1 -0
  426. package/react/components/windowTitleBar/TabRegion.js +479 -0
  427. package/react/components/windowTitleBar/TabRegion.js.map +1 -0
  428. package/react/components/windowTitleBar/TabTitle.d.ts +8 -0
  429. package/react/components/windowTitleBar/TabTitle.d.ts.map +1 -0
  430. package/react/components/windowTitleBar/TabTitle.js +17 -0
  431. package/react/components/windowTitleBar/TabTitle.js.map +1 -0
  432. package/react/components/windowTitleBar/TitleEdit.d.ts +10 -0
  433. package/react/components/windowTitleBar/TitleEdit.d.ts.map +1 -0
  434. package/react/components/windowTitleBar/TitleEdit.js +30 -0
  435. package/react/components/windowTitleBar/TitleEdit.js.map +1 -0
  436. package/react/components/windowTitleBar/WindowTitleBarContext.d.ts +12 -0
  437. package/react/components/windowTitleBar/WindowTitleBarContext.d.ts.map +1 -0
  438. package/react/components/windowTitleBar/WindowTitleBarContext.js +3 -0
  439. package/react/components/windowTitleBar/WindowTitleBarContext.js.map +1 -0
  440. package/react/components/windowTitleBar/WindowTitleBarShell.d.ts +14 -272
  441. package/react/components/windowTitleBar/WindowTitleBarShell.d.ts.map +1 -1
  442. package/react/components/windowTitleBar/WindowTitleBarShell.js +41 -929
  443. package/react/components/windowTitleBar/WindowTitleBarShell.js.map +1 -1
  444. package/react/components/windowTitleBar/index.d.ts +9 -8
  445. package/react/components/windowTitleBar/index.d.ts.map +1 -1
  446. package/react/components/windowTitleBar/index.js +9 -8
  447. package/react/components/windowTitleBar/index.js.map +1 -1
  448. package/react/components/windowTitleBar/useKeyboardNavigation.d.ts +7 -0
  449. package/react/components/windowTitleBar/useKeyboardNavigation.d.ts.map +1 -0
  450. package/react/components/windowTitleBar/useKeyboardNavigation.js +57 -0
  451. package/react/components/windowTitleBar/useKeyboardNavigation.js.map +1 -0
  452. package/react/components/windowTitleBar/useMaximize.d.ts +5 -0
  453. package/react/components/windowTitleBar/useMaximize.d.ts.map +1 -0
  454. package/react/components/windowTitleBar/useMaximize.js +23 -0
  455. package/react/components/windowTitleBar/useMaximize.js.map +1 -0
  456. package/react/components/yesNoDialog/timer.js +2 -1
  457. package/react/components/yesNoDialog/timer.js.map +1 -1
  458. package/react/hooks/useDashbar.d.ts.map +1 -1
  459. package/react/hooks/useDashbar.js.map +1 -1
  460. package/react/hooks/useDragRegion.d.ts +27 -0
  461. package/react/hooks/useDragRegion.d.ts.map +1 -0
  462. package/react/hooks/useDragRegion.js +74 -0
  463. package/react/hooks/useDragRegion.js.map +1 -0
  464. package/react/hooks/useInjectedTitleBar.d.ts +3 -0
  465. package/react/hooks/useInjectedTitleBar.d.ts.map +1 -0
  466. package/react/hooks/useInjectedTitleBar.js +437 -0
  467. package/react/hooks/useInjectedTitleBar.js.map +1 -0
  468. package/react/hooks/useNotifications.d.ts +1 -1
  469. package/react/hooks/useToolbar.d.ts +1 -0
  470. package/react/hooks/useToolbar.d.ts.map +1 -1
  471. package/react/hooks/useToolbar.js +13 -3
  472. package/react/hooks/useToolbar.js.map +1 -1
  473. package/react/reducers/rootReducer.d.ts +12 -0
  474. package/react/reducers/rootReducer.d.ts.map +1 -1
  475. package/react/reducers/smartDesktopDesignerReducer.d.ts.map +1 -1
  476. package/react/reducers/smartDesktopDesignerReducer.js +12 -0
  477. package/react/reducers/smartDesktopDesignerReducer.js.map +1 -1
  478. package/react/store.d.ts +24 -0
  479. package/react/store.d.ts.map +1 -1
  480. package/react/types/smartDesktopDesignerTypes.d.ts +42 -1
  481. package/react/types/smartDesktopDesignerTypes.d.ts.map +1 -1
  482. package/react/types/smartDesktopDesignerTypes.js.map +1 -1
  483. package/typedefs/FDC3/api/AppMetadata.d.ts +1 -0
  484. package/typedefs/FDC3/api/AppMetadata.d.ts.map +1 -1
  485. package/typedoc-types.d.ts +9 -0
  486. package/typedoc-types.d.ts.map +1 -0
  487. package/typedoc-types.js +6 -0
  488. package/typedoc-types.js.map +1 -0
  489. package/types.d.ts +5 -11
  490. package/types.d.ts.map +1 -1
  491. package/types.js +2 -0
  492. package/types.js.map +1 -1
  493. package/common/events/PrivateEventManager.d.ts +0 -95
  494. package/common/events/PrivateEventManager.d.ts.map +0 -1
  495. package/common/events/PrivateEventManager.js +0 -295
  496. package/common/events/PrivateEventManager.js.map +0 -1
  497. package/common/events/PrivateFinsembleEvent.d.ts +0 -30
  498. package/common/events/PrivateFinsembleEvent.d.ts.map +0 -1
  499. package/common/events/PrivateFinsembleEvent.js +0 -65
  500. package/common/events/PrivateFinsembleEvent.js.map +0 -1
  501. package/common/redux/createReducer.d.ts +0 -128
  502. package/common/redux/createReducer.d.ts.map +0 -1
  503. package/common/redux/createReducer.js +0 -298
  504. package/common/redux/createReducer.js.map +0 -1
  505. package/common/redux/index.d.ts +0 -3
  506. package/common/redux/index.d.ts.map +0 -1
  507. package/common/redux/index.js +0 -3
  508. package/common/redux/index.js.map +0 -1
  509. package/platform/services/window/Common/Pools/ObjectPool.d.ts +0 -11
  510. package/platform/services/window/Common/Pools/ObjectPool.d.ts.map +0 -1
  511. package/platform/services/window/Common/Pools/ObjectPool.js +0 -43
  512. package/platform/services/window/Common/Pools/ObjectPool.js.map +0 -1
  513. package/platform/services/window/Common/Pools/PoolSingletons.d.ts +0 -10
  514. package/platform/services/window/Common/Pools/PoolSingletons.d.ts.map +0 -1
  515. package/platform/services/window/Common/Pools/PoolSingletons.js +0 -10
  516. package/platform/services/window/Common/Pools/PoolSingletons.js.map +0 -1
  517. package/platform/services/window/Common/Pools/WindowPool.d.ts +0 -7
  518. package/platform/services/window/Common/Pools/WindowPool.d.ts.map +0 -1
  519. package/platform/services/window/Common/Pools/WindowPool.js +0 -16
  520. package/platform/services/window/Common/Pools/WindowPool.js.map +0 -1
  521. package/platform/services/window/Docking/boxMath.d.ts +0 -144
  522. package/platform/services/window/Docking/boxMath.d.ts.map +0 -1
  523. package/platform/services/window/Docking/boxMath.js +0 -511
  524. package/platform/services/window/Docking/boxMath.js.map +0 -1
  525. package/platform/services/window/Docking/constants.d.ts +0 -29
  526. package/platform/services/window/Docking/constants.d.ts.map +0 -1
  527. package/platform/services/window/Docking/constants.js +0 -29
  528. package/platform/services/window/Docking/constants.js.map +0 -1
  529. package/platform/services/window/Docking/dockableBox.d.ts +0 -117
  530. package/platform/services/window/Docking/dockableBox.d.ts.map +0 -1
  531. package/platform/services/window/Docking/dockableBox.js +0 -525
  532. package/platform/services/window/Docking/dockableBox.js.map +0 -1
  533. package/platform/services/window/Docking/dockableGroup.d.ts +0 -252
  534. package/platform/services/window/Docking/dockableGroup.d.ts.map +0 -1
  535. package/platform/services/window/Docking/dockableGroup.js +0 -1054
  536. package/platform/services/window/Docking/dockableGroup.js.map +0 -1
  537. package/platform/services/window/Docking/dockableMonitor.d.ts +0 -99
  538. package/platform/services/window/Docking/dockableMonitor.d.ts.map +0 -1
  539. package/platform/services/window/Docking/dockableMonitor.js +0 -427
  540. package/platform/services/window/Docking/dockableMonitor.js.map +0 -1
  541. package/platform/services/window/Docking/dockableWindow.d.ts +0 -272
  542. package/platform/services/window/Docking/dockableWindow.d.ts.map +0 -1
  543. package/platform/services/window/Docking/dockableWindow.js +0 -1239
  544. package/platform/services/window/Docking/dockableWindow.js.map +0 -1
  545. package/platform/services/window/Docking/dockingCalculator.d.ts +0 -741
  546. package/platform/services/window/Docking/dockingCalculator.d.ts.map +0 -1
  547. package/platform/services/window/Docking/dockingCalculator.js +0 -3438
  548. package/platform/services/window/Docking/dockingCalculator.js.map +0 -1
  549. package/platform/services/window/Docking/dockingMain.d.ts +0 -349
  550. package/platform/services/window/Docking/dockingMain.d.ts.map +0 -1
  551. package/platform/services/window/Docking/dockingMain.js +0 -2541
  552. package/platform/services/window/Docking/dockingMain.js.map +0 -1
  553. package/platform/services/window/Docking/maskBoundsCalculator.d.ts +0 -28
  554. package/platform/services/window/Docking/maskBoundsCalculator.d.ts.map +0 -1
  555. package/platform/services/window/Docking/maskBoundsCalculator.js +0 -67
  556. package/platform/services/window/Docking/maskBoundsCalculator.js.map +0 -1
  557. package/platform/services/window/Docking/monitorUpdateHandler.d.ts +0 -32
  558. package/platform/services/window/Docking/monitorUpdateHandler.d.ts.map +0 -1
  559. package/platform/services/window/Docking/monitorUpdateHandler.js +0 -117
  560. package/platform/services/window/Docking/monitorUpdateHandler.js.map +0 -1
  561. package/platform/services/window/Docking/types.d.ts +0 -334
  562. package/platform/services/window/Docking/types.d.ts.map +0 -1
  563. package/platform/services/window/Docking/types.js +0 -12
  564. package/platform/services/window/Docking/types.js.map +0 -1
  565. package/platform/services/window/MultiWindowFeatures/autoArrange.d.ts +0 -90
  566. package/platform/services/window/MultiWindowFeatures/autoArrange.d.ts.map +0 -1
  567. package/platform/services/window/MultiWindowFeatures/autoArrange.js +0 -510
  568. package/platform/services/window/MultiWindowFeatures/autoArrange.js.map +0 -1
  569. package/platform/services/window/StackedWindowManager/stackedWindowManager.d.ts +0 -411
  570. package/platform/services/window/StackedWindowManager/stackedWindowManager.d.ts.map +0 -1
  571. package/platform/services/window/StackedWindowManager/stackedWindowManager.js +0 -1641
  572. package/platform/services/window/StackedWindowManager/stackedWindowManager.js.map +0 -1
  573. package/platform/services/window/WindowAbstractions/BaseWindow.d.ts +0 -469
  574. package/platform/services/window/WindowAbstractions/BaseWindow.d.ts.map +0 -1
  575. package/platform/services/window/WindowAbstractions/BaseWindow.js +0 -1347
  576. package/platform/services/window/WindowAbstractions/BaseWindow.js.map +0 -1
  577. package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.d.ts +0 -9
  578. package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.d.ts.map +0 -1
  579. package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.js +0 -23
  580. package/platform/services/window/WindowAbstractions/FinsembleWindowInternal.js.map +0 -1
  581. package/platform/services/window/WindowAbstractions/WebWindowWrapper.d.ts +0 -227
  582. package/platform/services/window/WindowAbstractions/WebWindowWrapper.d.ts.map +0 -1
  583. package/platform/services/window/WindowAbstractions/WebWindowWrapper.js +0 -1168
  584. package/platform/services/window/WindowAbstractions/WebWindowWrapper.js.map +0 -1
  585. package/platform/services/window/WindowAbstractions/externalWindowWrapper.d.ts +0 -121
  586. package/platform/services/window/WindowAbstractions/externalWindowWrapper.d.ts.map +0 -1
  587. package/platform/services/window/WindowAbstractions/externalWindowWrapper.js +0 -591
  588. package/platform/services/window/WindowAbstractions/externalWindowWrapper.js.map +0 -1
  589. package/platform/services/window/WindowAbstractions/stackedWindowWrapper.d.ts +0 -194
  590. package/platform/services/window/WindowAbstractions/stackedWindowWrapper.d.ts.map +0 -1
  591. package/platform/services/window/WindowAbstractions/stackedWindowWrapper.js +0 -680
  592. package/platform/services/window/WindowAbstractions/stackedWindowWrapper.js.map +0 -1
  593. package/platform/services/window/windowGroup.d.ts +0 -86
  594. package/platform/services/window/windowGroup.d.ts.map +0 -1
  595. package/platform/services/window/windowGroup.js +0 -323
  596. package/platform/services/window/windowGroup.js.map +0 -1
  597. package/platform/services/workspace/windowStorageManager.d.ts +0 -180
  598. package/platform/services/workspace/windowStorageManager.d.ts.map +0 -1
  599. package/platform/services/workspace/windowStorageManager.js +0 -195
  600. package/platform/services/workspace/windowStorageManager.js.map +0 -1
  601. package/react/assets/icons/question-circle.svg +0 -6
  602. package/react/components/legacyControls/FinsembleHoverDetector.d.ts +0 -23
  603. package/react/components/legacyControls/FinsembleHoverDetector.d.ts.map +0 -1
  604. package/react/components/legacyControls/FinsembleHoverDetector.js +0 -57
  605. package/react/components/legacyControls/FinsembleHoverDetector.js.map +0 -1
  606. package/react/components/sdd/Appearance.helpers.d.ts +0 -2
  607. package/react/components/sdd/Appearance.helpers.d.ts.map +0 -1
  608. package/react/components/sdd/Appearance.helpers.js +0 -2
  609. package/react/components/sdd/Appearance.helpers.js.map +0 -1
  610. package/react/components/shared/linkerUtil.d.ts +0 -4
  611. package/react/components/shared/linkerUtil.d.ts.map +0 -1
  612. package/react/components/shared/linkerUtil.js +0 -10
  613. package/react/components/shared/linkerUtil.js.map +0 -1
  614. package/react/components/windowTitleBar/components/center/Tab.d.ts +0 -31
  615. package/react/components/windowTitleBar/components/center/Tab.d.ts.map +0 -1
  616. package/react/components/windowTitleBar/components/center/Tab.js +0 -58
  617. package/react/components/windowTitleBar/components/center/Tab.js.map +0 -1
  618. package/react/components/windowTitleBar/components/center/TabList.d.ts +0 -138
  619. package/react/components/windowTitleBar/components/center/TabList.d.ts.map +0 -1
  620. package/react/components/windowTitleBar/components/center/TabList.js +0 -614
  621. package/react/components/windowTitleBar/components/center/TabList.js.map +0 -1
  622. package/react/components/windowTitleBar/components/center/TabRegion.d.ts +0 -3
  623. package/react/components/windowTitleBar/components/center/TabRegion.d.ts.map +0 -1
  624. package/react/components/windowTitleBar/components/center/TabRegion.js +0 -13
  625. package/react/components/windowTitleBar/components/center/TabRegion.js.map +0 -1
  626. package/react/components/windowTitleBar/components/left/LinkerButton.d.ts.map +0 -1
  627. package/react/components/windowTitleBar/components/left/LinkerButton.js.map +0 -1
  628. package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.d.ts +0 -85
  629. package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.d.ts.map +0 -1
  630. package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.js +0 -172
  631. package/react/components/windowTitleBar/components/left/LinkerButtonDeprecated.js.map +0 -1
  632. package/react/components/windowTitleBar/components/left/LinkerGroups.d.ts.map +0 -1
  633. package/react/components/windowTitleBar/components/left/LinkerGroups.js.map +0 -1
  634. package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.d.ts +0 -50
  635. package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.d.ts.map +0 -1
  636. package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.js +0 -120
  637. package/react/components/windowTitleBar/components/left/LinkerGroupsDeprecated.js.map +0 -1
  638. package/react/components/windowTitleBar/components/left/ShareButton.d.ts +0 -42
  639. package/react/components/windowTitleBar/components/left/ShareButton.d.ts.map +0 -1
  640. package/react/components/windowTitleBar/components/left/ShareButton.js +0 -82
  641. package/react/components/windowTitleBar/components/left/ShareButton.js.map +0 -1
  642. package/react/components/windowTitleBar/components/right/AlwaysOnTopButton.d.ts +0 -3
  643. package/react/components/windowTitleBar/components/right/AlwaysOnTopButton.d.ts.map +0 -1
  644. package/react/components/windowTitleBar/components/right/AlwaysOnTopButton.js +0 -15
  645. package/react/components/windowTitleBar/components/right/AlwaysOnTopButton.js.map +0 -1
  646. package/react/components/windowTitleBar/components/right/CloseButton.d.ts.map +0 -1
  647. package/react/components/windowTitleBar/components/right/CloseButton.js +0 -16
  648. package/react/components/windowTitleBar/components/right/CloseButton.js.map +0 -1
  649. package/react/components/windowTitleBar/components/right/GroupingButton.d.ts +0 -50
  650. package/react/components/windowTitleBar/components/right/GroupingButton.d.ts.map +0 -1
  651. package/react/components/windowTitleBar/components/right/GroupingButton.js +0 -82
  652. package/react/components/windowTitleBar/components/right/GroupingButton.js.map +0 -1
  653. package/react/components/windowTitleBar/components/right/MaximizeButton.d.ts +0 -59
  654. package/react/components/windowTitleBar/components/right/MaximizeButton.d.ts.map +0 -1
  655. package/react/components/windowTitleBar/components/right/MaximizeButton.js +0 -96
  656. package/react/components/windowTitleBar/components/right/MaximizeButton.js.map +0 -1
  657. package/react/components/windowTitleBar/components/right/MinimizeButton.d.ts +0 -26
  658. package/react/components/windowTitleBar/components/right/MinimizeButton.d.ts.map +0 -1
  659. package/react/components/windowTitleBar/components/right/MinimizeButton.js +0 -32
  660. package/react/components/windowTitleBar/components/right/MinimizeButton.js.map +0 -1
  661. package/react/components/windowTitleBar/components/windowTitle.d.ts +0 -67
  662. package/react/components/windowTitleBar/components/windowTitle.d.ts.map +0 -1
  663. package/react/components/windowTitleBar/components/windowTitle.js +0 -382
  664. package/react/components/windowTitleBar/components/windowTitle.js.map +0 -1
  665. package/react/components/windowTitleBar/stores/windowTitleBarStore.d.ts +0 -69
  666. package/react/components/windowTitleBar/stores/windowTitleBarStore.d.ts.map +0 -1
  667. package/react/components/windowTitleBar/stores/windowTitleBarStore.js +0 -610
  668. package/react/components/windowTitleBar/stores/windowTitleBarStore.js.map +0 -1
  669. package/react/components/windowTitleBar/stores/windowTitleBarStoreDefaults.d.ts +0 -44
  670. package/react/components/windowTitleBar/stores/windowTitleBarStoreDefaults.d.ts.map +0 -1
  671. package/react/components/windowTitleBar/stores/windowTitleBarStoreDefaults.js +0 -43
  672. package/react/components/windowTitleBar/stores/windowTitleBarStoreDefaults.js.map +0 -1
  673. package/react/components/windowTitleBar/windowTitleBarContext.d.ts +0 -23
  674. package/react/components/windowTitleBar/windowTitleBarContext.d.ts.map +0 -1
  675. package/react/components/windowTitleBar/windowTitleBarContext.js +0 -22
  676. package/react/components/windowTitleBar/windowTitleBarContext.js.map +0 -1
  677. package/react/types/windowTitleBar.d.ts +0 -49
  678. package/react/types/windowTitleBar.d.ts.map +0 -1
  679. package/react/types/windowTitleBar.js +0 -2
  680. package/react/types/windowTitleBar.js.map +0 -1
  681. /package/react/components/windowTitleBar/{components/right/CloseButton.d.ts → CloseButton.d.ts} +0 -0
  682. /package/react/components/windowTitleBar/{components/left/LinkerButton.d.ts → LinkerButton.d.ts} +0 -0
  683. /package/react/components/windowTitleBar/{components/left/LinkerGroups.d.ts → LinkerGroups.d.ts} +0 -0
@@ -102,6 +102,7 @@ const changeSub = async (change) => {
102
102
  }
103
103
  };
104
104
  /**
105
+ * @language javascript, dotnet
105
106
  * Retrieves the entire manifest
106
107
  *
107
108
  * ```javascript
@@ -116,6 +117,7 @@ export const getManifest = async (cb) => {
116
117
  return { err, data: response.data };
117
118
  };
118
119
  /**
120
+ * @language javascript, java
119
121
  * Get a value from the config.
120
122
  *
121
123
  * If a field does not exists in the configuration, `data` will be undefined and `err` will
@@ -123,14 +125,18 @@ export const getManifest = async (cb) => {
123
125
  *
124
126
  * ```javascript
125
127
  * FSBL.Clients.ConfigClient.get(
126
- ['field1', 'property1'], // field1.property1
127
- function(err,value){ }
128
- );
128
+ * ['field1', 'property1'], // field1.property1
129
+ * function(err,value){ }
130
+ * );
129
131
  *
130
132
  * const {err, data} = await FSBL.Clients.ConfigClient.get(
131
- ['field1', 'property1'] // field1.property1
132
- );
133
+ * ['field1', 'property1'] // field1.property1
134
+ * );
133
135
  * ```
136
+ *
137
+ * :::note
138
+ * In Java, this method is named `getValue`.
139
+ * :::
134
140
  * @param {Function} cb Will return the value if found.
135
141
  */
136
142
  export const get = async (path, cb) => {
@@ -144,6 +150,8 @@ export const get = async (path, cb) => {
144
150
  return { err, data: response.data };
145
151
  };
146
152
  /**
153
+ * @language javascript, java
154
+ *
147
155
  * Get multiple values from the config.
148
156
  *
149
157
  * If a field does not exists in the configuration, `data` will be undefined and `err` will
@@ -151,13 +159,28 @@ export const get = async (path, cb) => {
151
159
  *
152
160
  * ```javascript
153
161
  * FSBL.Clients.ConfigClient.getMultiple(
154
- [
155
- * ['field1', 'property1', "subproperty1'], // field1.property1.subproperty1
156
- * ['field1', 'property2'] // field1.property2
157
- * ], (err,value) => { ... }
158
- * );
162
+ * [
163
+ * // field1.property1.subproperty1
164
+ * ["field1", "property1", "subproperty1"],
165
+ *
166
+ * // field1.property2
167
+ * ["field1", "property2"]
168
+ * ], (err, values) => {
169
+ * if(!err){
170
+ * console.log("Values: ", values);
171
+ * }
172
+ * });
159
173
  *
160
- * const {err, data} = await FSBL.Clients.ConfigClient.getMultiple([['field1', 'property1'], ['field1', 'property2']]); // field1.property1 AND field1.property2
174
+ * const {err, data} = await FSBL.Clients.ConfigClient.getMultiple([
175
+ * // field1.property1.subproperty1
176
+ * ["field1", "property1", "subproperty1"],
177
+ *
178
+ * // field1.property2
179
+ * ["field1", "property2"] // field1.property2
180
+ * ]);
181
+ * if(!err){
182
+ * console.log("Values: ", data);
183
+ * }
161
184
  * ```
162
185
  * @param {Function} cb Will return the value if found.
163
186
  */
@@ -172,7 +195,9 @@ export const getMultiple = async (paths, cb) => {
172
195
  return { err, data: response.data };
173
196
  };
174
197
  /**
175
- * DEPRECATED: Use `FSBL.Clients.ConfigClient.get()` instead.
198
+ * @language javascript, java, dotnet
199
+ * @deprecated - Use [ `FSBL.Clients.ConfigClient.get()`](#get) instead.
200
+ *
176
201
  * Get a value from the config.
177
202
  *
178
203
  * ```javascript
@@ -183,7 +208,6 @@ export const getMultiple = async (paths, cb) => {
183
208
  * ```
184
209
  * @param {Function} cb Will return the value if found.
185
210
  *
186
- * @deprecated - Use get ConfigClient.get
187
211
  */
188
212
  export const getValue = async (params, cb) => {
189
213
  if (typeof params === "string") {
@@ -202,10 +226,15 @@ export const getValue = async (params, cb) => {
202
226
  return { err, data: response.data };
203
227
  };
204
228
  /**
205
- * DEPRECATED: Use `FSBL.Clients.ConfigClient.getMultiple()` instead.
229
+ * @language javascript, java, dotnet
230
+ * @deprecated - Use [`FSBL.Clients.ConfigClient.getMultiple()`](#getmultiple) instead.
231
+ *
206
232
  * Get multiple values from the config.
207
233
  *
208
- * If there are no fields provided, the complete configuration manifest is returned (use getManifest()).
234
+ * :::caution
235
+ * **Deprecated functionality**: If there are no fields provided, the complete configuration manifest
236
+ * is returned (use [getManifest()](#getmanifest)).
237
+ * :::
209
238
  *
210
239
  * ```javascript
211
240
  * FSBL.Clients.ConfigClient.getValues(['field1','field2'], function(err,values){ });
@@ -214,8 +243,6 @@ export const getValue = async (params, cb) => {
214
243
  * ```
215
244
  * @param {fieldOnlyParam[] | string[]} fields An array of objects containing a field property or an array of string field names.
216
245
  * @param {Function} cb Will return the value if found.
217
- *
218
- * * @deprecated - Use get ConfigClient.getMultiple
219
246
  */
220
247
  export const getValues = async (fields, cb) => {
221
248
  if (typeof fields === "function") {
@@ -231,18 +258,25 @@ export const getValues = async (fields, cb) => {
231
258
  return { err, data: response.data };
232
259
  };
233
260
  /**
261
+ * @language javascript, java
234
262
  * Sets a value in the config.
235
263
  *
236
- * Setting a value will trigger events that you can listen to using <a href="#addlistener">`addListener()`</a>.
264
+ * Setting a value will trigger events that you can listen to using [`addListener()`](#addlistener).
237
265
  *
238
266
  * ```javascript
239
- * FSBL.Clients.ConfigClient.set(
240
- ['field1', 'property1'], "foo", // field1.property1 = "foo"
241
- function(err,value){ }
242
- );
267
+ * // Set field1.property1 = "foo"
268
+ * FSBL.Clients.ConfigClient.set(
269
+ * ['field1', 'property1'],
270
+ * "foo",
271
+ * function(err,value){ }
272
+ * );
243
273
  *
244
- * const {err, data} = await FSBL.Clients.ConfigClient.set(['field1', 'property1'], "foo"); // field1.property1 = "foo"
274
+ * // Set field1.property1 = "foo"
275
+ * const {err, data} = await FSBL.Clients.ConfigClient.set(['field1', 'property1'], "foo");
245
276
  * ```
277
+ * :::note
278
+ * In Java, this method is named `setValue`.
279
+ * :::
246
280
  * @param {Function} cb Optional callback.
247
281
  */
248
282
  export const set = async (path, value, cb) => {
@@ -260,19 +294,32 @@ export const set = async (path, value, cb) => {
260
294
  return { err, data: response.data };
261
295
  };
262
296
  /**
297
+ * @language javascript, java
263
298
  * Sets multiple values in the config.
264
299
  *
265
300
  * Setting a value will trigger events that you can listen to using <a href="#addlistener">`addListener()`</a>.
266
301
  *
267
302
  * ```javascript
268
- * FSBL.Clients.ConfigClient.setMultiple([
303
+ * // Set both field1.property1 = "foo" AND field2.property2 = "bar"
304
+ * FSBL.Clients.ConfigClient.setMultiple(
305
+ * [
269
306
  * {field: ['field1', 'property1'], value: "foo"},
270
- * {field: ['field2', 'property2'], value: "bar"}], function(err,value){ }); // field1.property1 = "foo" AND // field2.property2 = "bar"
307
+ * {field: ['field2', 'property2'], value: "bar"}
308
+ * ],
309
+ * function(err,value){ }
310
+ * );
271
311
  *
312
+ * // Set both field1.property1 = "foo" AND field2.property2 = "bar"
272
313
  * const {err, data} = await FSBL.Clients.ConfigClient.setMultiple([
273
- * {field: ['field1', 'property1'], value: "foo"},
274
- * {field: ['field2', 'property2'], value: "bar"}]); // field1.property1 = "foo" AND // field2.property2 = "bar"
314
+ * {field: ['field1', 'property1'], value: "foo"},
315
+ * {field: ['field2', 'property2'], value: "bar"}
316
+ * ]);
275
317
  * ```
318
+ *
319
+ *
320
+ * :::note
321
+ * In Java, this method is named `setValues`.
322
+ * :::
276
323
  * @param {Function} cb Optional callback.
277
324
  */
278
325
  export const setMultiple = async (pathsAndValues, cb) => {
@@ -286,7 +333,9 @@ export const setMultiple = async (pathsAndValues, cb) => {
286
333
  return { err, data: response.data };
287
334
  };
288
335
  /**
289
- * DEPRECATED: Use `FSBL.Clients.ConfigClient.set()` instead.
336
+ * @language javascript, java, dotnet
337
+ * @deprecated - Use [`FSBL.Clients.ConfigClient.set()`](#set) instead.
338
+ *
290
339
  * Set a value in the config. Setting a value will trigger events that you can listen to using <a href="#addlistener">`addListener()`</a>.
291
340
  *
292
341
  * ```javascript
@@ -294,8 +343,6 @@ export const setMultiple = async (pathsAndValues, cb) => {
294
343
  * const {err} = await FSBL.Clients.ConfigClient.setValue({ field:'field1', value:'new value' })
295
344
  * ```
296
345
  * @param {function} cb Optional callback
297
- *
298
- * @deprecated - Use get ConfigClient.set
299
346
  */
300
347
  export const setValue = async (params, cb) => {
301
348
  const data = {
@@ -308,7 +355,9 @@ export const setValue = async (params, cb) => {
308
355
  return { err };
309
356
  };
310
357
  /**
311
- * DEPRECATED: Use `FSBL.Clients.ConfigClient.setMultiple() instead`
358
+ * @language javascript, java, dotnet
359
+ * @deprecated - Use [FSBL.Clients.ConfigClient.setMultiple()](#setmultiple) instead.
360
+ *
312
361
  * Set multiple values in the config.
313
362
  *
314
363
  * ```javascript
@@ -316,8 +365,6 @@ export const setValue = async (params, cb) => {
316
365
  * const {err} = await FSBL.Clients.ConfigClient.setValues([{ field:'field1', value: "new value" }]);
317
366
  * ```
318
367
  * @param {function} cb Optional callback
319
- *
320
- * * @deprecated - Use get ConfigClient.setMultiple
321
368
  */
322
369
  export const setValues = async (fields, cb) => {
323
370
  if (!fields) {
@@ -338,6 +385,7 @@ export const setValues = async (fields, cb) => {
338
385
  return { err };
339
386
  };
340
387
  /**
388
+ * @language javascript, java
341
389
  * Remove a value (and its key) from the config.
342
390
  *
343
391
  * Removing a value will trigger events that you can listen to using <a href="#addlistener">`addListener()`</a>.
@@ -351,6 +399,10 @@ export const setValues = async (fields, cb) => {
351
399
  * const {err, data} = await FSBL.Clients.ConfigClient.remove(
352
400
  ['field1', 'property1']); // field1.property1
353
401
  * ```
402
+ *
403
+ * :::note
404
+ * In Java, this method is named `removeValue`.
405
+ * :::
354
406
  * @param {Function} cb Optional callback.
355
407
  */
356
408
  export const remove = async (path, cb) => {
@@ -364,21 +416,31 @@ export const remove = async (path, cb) => {
364
416
  return { err, data: response.data };
365
417
  };
366
418
  /**
419
+ * @language javascript, java
367
420
  * Remove multiple values (and their keys) from the config.
368
421
  *
369
422
  * Removing a value will trigger events that you can listen to using <a href="#addlistener">`addListener()`</a>.
370
423
  *
371
424
  * ```javascript
372
- * FSBL.Clients.ConfigClient.remove([
373
- * ['field1', 'property1'], // field1.property1
374
- * ['field2', 'property2']], // field2.property2
375
- function(err,value){ }
376
- );
425
+ * // Remove field1.property1 AND field2.property2
426
+ * FSBL.Clients.ConfigClient.removeMultiple(
427
+ * [
428
+ * ['field1', 'property1'],
429
+ * ['field2', 'property2']
430
+ * ],
431
+ * function(err,value){ }
432
+ * );
377
433
  *
378
- * const {err, data} = await FSBL.Clients.ConfigClient.remove([
379
- * ['field1', 'property1'], // field1.property1
380
- * ['field2', 'property2']]); // field2.property2
434
+ * // Remove field1.property1 AND field2.property2
435
+ * const {err, data} = await FSBL.Clients.ConfigClient.removeMultiple([
436
+ * ['field1', 'property1'],
437
+ * ['field2', 'property2']
438
+ * ]);
381
439
  * ```
440
+ *
441
+ * :::note
442
+ * In Java, this method is named `removeValues`.
443
+ * :::
382
444
  * @param {Function} cb Optional callback.
383
445
  */
384
446
  export const removeMultiple = async (paths, cb) => {
@@ -392,7 +454,9 @@ export const removeMultiple = async (paths, cb) => {
392
454
  return { err, data: response.data };
393
455
  };
394
456
  /**
395
- * DEPRECATED: Use `FSBL.Clients.ConfigClient.remove()` instead.
457
+ * @language javascript, java, dotnet
458
+ * @deprecated - Use [`FSBL.Clients.ConfigClient.remove()`](#remove) instead.
459
+ *
396
460
  * Remove a value from the config.
397
461
  *
398
462
  * ```javascript
@@ -404,8 +468,6 @@ export const removeMultiple = async (paths, cb) => {
404
468
  * ```
405
469
  * @param {String} field - Name of field to remove
406
470
  * @param {Function} cb - Returns an error if there is one
407
- *
408
- * @deprecated - Use get ConfigClient.remove
409
471
  */
410
472
  export const removeValue = async (params, cb) => {
411
473
  if (typeof params === "string") {
@@ -422,7 +484,9 @@ export const removeValue = async (params, cb) => {
422
484
  return { err };
423
485
  };
424
486
  /**
425
- * DEPRECATED: Use `FSBL.Clients.ConfigClient.removeMultiple()` instead.
487
+ * @language javascript, java, dotnet
488
+ * @deprecated - Use [`FSBL.Clients.ConfigClient.removeMultiple()`](#removemultiple) instead.
489
+ *
426
490
  * Removes multiple values from the config.
427
491
  *
428
492
  * ```javascript
@@ -431,8 +495,6 @@ export const removeValue = async (params, cb) => {
431
495
  * ```
432
496
  * @param {FieldOnlyParam[] | string[]} fields - An array of objects containing a field property or an array of string field names.
433
497
  * @param {Function} cb - Returns an error if there is one.
434
- *
435
- * @deprecated - Use get ConfigClient.removeMultiple
436
498
  */
437
499
  export const removeValues = async (fields, cb) => {
438
500
  if (!fields) {
@@ -453,11 +515,12 @@ export const removeValues = async (fields, cb) => {
453
515
  return { err };
454
516
  };
455
517
  /**
518
+ * @language javascript, java, dotnet
456
519
  * Add a listener to the config at either the root config level or field level.
457
520
  * If no field is given, the root config level is used. You can also listen for changes to config fields any number of levels deep -- finsemble.configitem.deeperconfigitem.evendeeperconfigitem
458
521
  *
459
522
  * ```javascript
460
- * const myFunction = function(err,data){ ... };
523
+ * const myFunction = function(err,data){ };
461
524
  *
462
525
  * FSBL.Clients.ConfigClient.addListener({ field:'field1' }, myFunction, cb);
463
526
  * FSBL.Clients.ConfigClient.addListener(['field1', 'property1'], myFunction, cb); // field1.property1
@@ -487,6 +550,7 @@ export const addListener = async (params, fn, cb) => {
487
550
  cb === null || cb === void 0 ? void 0 : cb();
488
551
  };
489
552
  /**
553
+ * @language javascript, java, dotnet
490
554
  * Add an array of listeners as objects, strings or path arrays.
491
555
  * If using strings, you must provide a function callback as the second parameter.
492
556
  *
@@ -546,6 +610,7 @@ export const addListeners = (params, fn, cb) => {
546
610
  cb === null || cb === void 0 ? void 0 : cb();
547
611
  };
548
612
  /**
613
+ * @language javascript, java, dotnet
549
614
  * Remove a listener from config. If no field is given, we look for a config root listener
550
615
  *
551
616
  * ```javascript
@@ -588,15 +653,29 @@ export const removeListener = (params, fn, cb) => {
588
653
  cb === null || cb === void 0 ? void 0 : cb(null, false);
589
654
  };
590
655
  /**
656
+ * @language javascript, java, dotnet
591
657
  * Remove an array of listeners from the config
592
658
  *
593
659
  * ```javascript
594
- * let myFunction = function(err,data){ }
595
- * FSBL.Clients.ConfigClient.removeListeners({
596
- * field: 'field1'
597
- * }, MyFunction, function(bool){ });
598
- * FSBL.Clients.ConfigClient.removeListeners([{ field:'field1', listener: MyFunction }], function(bool){ });
599
- * FSBL.Clients.ConfigClient.removeListeners(['field1'], MyFunction, function(bool) { });
660
+ * let myFunction = function(err,data){ };
661
+ * FSBL.Clients.ConfigClient.removeListeners(
662
+ * {
663
+ * field: 'field1'
664
+ * },
665
+ * MyFunction,
666
+ * function(bool){ }
667
+ * );
668
+ *
669
+ * FSBL.Clients.ConfigClient.removeListeners(
670
+ * [{ field:'field1', listener: MyFunction }],
671
+ * function(bool){ }
672
+ * );
673
+ *
674
+ * FSBL.Clients.ConfigClient.removeListeners(
675
+ * ['field1'],
676
+ * MyFunction,
677
+ * function(bool) { }
678
+ * );
600
679
  * ```
601
680
  * @param {removeListenersType} params
602
681
  * @param {function} fn The listener to remove
@@ -634,13 +713,45 @@ export const removeListeners = (params, fn, cb) => {
634
713
  cb === null || cb === void 0 ? void 0 : cb(null, true);
635
714
  };
636
715
  /**
637
- * Dynamically set config values within the Finsemble configuration. New config properties may be set or existing ones modified. Note that configuration changes will not necessarily dynamically modify the components or services that use the corresponding configuration -- it depends if the component or service handles the corresponding change notifications (either though PubSub or the config's DataStore). Also, these changes do not persist in any config files.
638
- *
639
- * **Note**: Anytime config is set using this API, the newConfig along with the updated manifest will by published to the PubSub topic "Config.changeNotification". To get these notifications any component or service can subscribe to the topic. An example is shown below.
640
- *
641
- * **Note**: Anytime config is set using this API, the dataStore underlying configuration 'Finsemble-Configuration-Store' will also be updated. To get these dataStore events a listener can be set as shown in the example below. However, any config modifications made directly though the DataStore will not result in corresponding PubSub notifications.
642
- *
643
- * **Caution**: During dynamic configuration, Finsemble can overwrite components already in the configuration when `ConfigClient.processAndSet` is called. To prevent this from happening, set `manifest.component.category = "system"` in the config of the component. This setting is used, for example, to prevent system UI components from being dropped out of the config.
716
+ * @language javascript, java, dotnet
717
+ * Dynamically set config values within the Finsemble configuration. You can set new config properties
718
+ * or modify existing ones. Note that configuration changes will not necessarily dynamically modify
719
+ * the components or services that use the corresponding configuration -- it depends if the component
720
+ * or service handles the corresponding change notifications (either though PubSub or the config's
721
+ * DataStore). Also, these changes do not persist in any config files.
722
+ *
723
+ * Only services and components that reside on the same domain as Finsemble can use `proessAndSet`.
724
+ * If you want to use it from a domain other than Finsemble, you can't do so directly. Instead,
725
+ * you need to set up a proxy service that is hosted on the same domain as Finsemble.
726
+ * Because this proxy server is on the same domain as Finsemble, it can use `processAndSet`.
727
+ * Now, you can have an externally hosted service or app communicate with this proxy service.
728
+ *
729
+ * Here is an example:
730
+ * 1. Create a proxy app service on the Finsemble domain and make it subscribe to a channel
731
+ * (for example, "customerName.app.config").
732
+ * 2. The cross domain app publishes the new config on that same channel ("customerName.app.config").
733
+ * 3. When the proxy app service receives this request, it invokes `ConfigClient.processAndSet(...)` using
734
+ * the payload from the router message.
735
+ *
736
+ * :::note
737
+ * Any time you set config by using this API, the newConfig along with the updated manifest will by
738
+ * published to the PubSub topic "Config.changeNotification". To get these notifications any
739
+ * component or service you can subscribe to the topic. See an example below.
740
+ * :::
741
+ *
742
+ * :::note
743
+ * Anytime you set config by using this API, the dataStore underlying configuration
744
+ * 'Finsemble-Configuration-Store' will also be updated. To get these dataStore events, you can set
745
+ * a listener as shown in the example below. However, any config modifications made directly though
746
+ * the DataStore will not result in corresponding PubSub notifications.
747
+ * :::
748
+ *
749
+ * :::caution
750
+ * During dynamic configuration, Finsemble can overwrite components already in the configuration when
751
+ * `ConfigClient.processAndSet` is called. To prevent this from happening, set
752
+ * `manifest.component.category = "system"` in the config of the component. For example, use this setting
753
+ * to prevent system UI components from being dropped out of the config.
754
+ * :::
644
755
  *
645
756
  * ```javascript
646
757
  * // Examples using processAndSet()
@@ -687,7 +798,6 @@ export const removeListeners = (params, fn, cb) => {
687
798
  * @param {boolean} params.overwrite If true then overwrite any preexisting config with new config (can only set to true when running from same origin, not cross-domain); if false then newConfig must not match properties of existing config, including service and component configuration.
688
799
  * @param {boolean} params.replace True specifies any component, app, or service definitions in the new config will place all existing non-system component and service configuration
689
800
  * @param {StandardErrorCallback} callback Callback to be invoked upon task completion.
690
- * @return {Promise<Manifest>} Returns the resulting manifest
691
801
  *
692
802
  */
693
803
  export const processAndSet = async (params, cb) => {
@@ -706,6 +816,7 @@ export const processAndSet = async (params, cb) => {
706
816
  }
707
817
  };
708
818
  /**
819
+ * @language javascript, java, dotnet
709
820
  * Sets a value on the configStore and persists that value to storage. On application restart, this value will overwrite any application defaults.
710
821
  *
711
822
  * ```javascript
@@ -713,9 +824,13 @@ export const processAndSet = async (params, cb) => {
713
824
  * field: "finsemble.initialWorkspace",
714
825
  * value: "Workspace 2"
715
826
  * }, (err, response) => {
716
- * //preference has been set
827
+ * // preference has been set
828
+ * });
829
+ *
830
+ * const {err, data} = await FSBL.Clients.ConfigClient.setPreference({
831
+ * field: "finsemble.initialWorkspace",
832
+ * value: "Workspace 2"
717
833
  * });
718
- * const {err, data} = await FSBL.Clients.ConfigClient.setPreference({field: "finsemble.initialWorkspace", value: "Workspace 2"});
719
834
  * ```
720
835
  * @param {fieldAndValueParam} params
721
836
  * @param {StandardErrorCallback} callback Callback to be invoked when preferences have been retrieved from the service or on error.
@@ -726,7 +841,7 @@ export const setPreference = async (params, cb) => {
726
841
  return { err, data: response.data };
727
842
  };
728
843
  /**
729
- /**
844
+ * @language javascript, java, dotnet
730
845
  * Retrieves all of the preferences set for the application.
731
846
  *
732
847
  * ```javascript
@@ -742,13 +857,14 @@ export const setPreference = async (params, cb) => {
742
857
  */
743
858
  export const getPreferences = async (cb) => {
744
859
  // need to check since preferences doesn't come up until after authentication, so not always ready
745
- await SystemManagerClient.waitForStartup("configService");
860
+ await SystemManagerClient.waitForBootStage("authentication", "stageCompleted");
746
861
  const { err, response } = await RouterClient.query("PreferencesService.getPreferences", {});
747
862
  Logger.system.debug("PreferencesService.getPreferences response", response);
748
863
  cb === null || cb === void 0 ? void 0 : cb(err, response.data);
749
864
  return { err, data: response.data };
750
865
  };
751
866
  /**
867
+ * @language javascript, dotnet
752
868
  * Reset a user preference value to default. On application restart, the application default value will be used instead of the preference.
753
869
  *
754
870
  * ```javascript
@@ -757,7 +873,9 @@ export const getPreferences = async (cb) => {
757
873
  * }, (err, response) => {
758
874
  * //preference has been unset
759
875
  * });
760
- * const {err, data} = await FSBL.Clients.ConfigClient.unsetPreference({field: "finsemble.initialWorkspace"});
876
+ * const {err, data} = await FSBL.Clients.ConfigClient.unsetPreference({
877
+ * field: "finsemble.initialWorkspace"
878
+ * });
761
879
  * ```
762
880
  * @param params The preference field to unset.
763
881
  * @param callback The callback to be invoked after the preference is removed or on error.
@@ -768,51 +886,6 @@ export const unsetPreference = async (params, cb) => {
768
886
  cb === null || cb === void 0 ? void 0 : cb(err, response.data);
769
887
  return { err, data: response.data };
770
888
  };
771
- /**
772
- * Adds new FDC3 App(s) to Finsemble.
773
- *
774
- * ```javascript
775
- * const {err, data} = await FSBL.Clients.ConfigClient.addApps([anFDC3App]);
776
- * ```
777
- *
778
- * @param apps The array of FDC3AppDefinition to add
779
- * @param cb The callback to be invoked after the apps are set or on error.
780
- * @private
781
- */
782
- const addApps = async (apps, cb) => {
783
- if (!Array.isArray(apps)) {
784
- const err = "The input was not an array. Please pass an array of type: FDC3AppDefinition[] (including if only adding a single app)";
785
- cb === null || cb === void 0 ? void 0 : cb(err);
786
- return { err };
787
- }
788
- waitForConfigService();
789
- const { err, response } = await RouterClient.query("configService.addApps", apps);
790
- cb === null || cb === void 0 ? void 0 : cb(err, response.data);
791
- return { err, data: response.data };
792
- };
793
- /**
794
- * Removes an FDC3 App(s) from Finsemble.
795
- *
796
- * ```javascript
797
- * const {err, data} = await FSBL.Clients.ConfigClient.removeApps(["fdc3AppId"]);
798
- * ```
799
- *
800
- * @param apps The array of appIds to remove
801
- * @param cb The callback to be invoked after the apps are removed or on error.
802
- *
803
- * @private
804
- */
805
- const removeApps = async (appIds, cb) => {
806
- if (!Array.isArray(appIds)) {
807
- const err = "The input was not an array. Please pass an array of string appIds to remove (including if only removing a single app)";
808
- cb === null || cb === void 0 ? void 0 : cb(err);
809
- return { err };
810
- }
811
- waitForConfigService();
812
- const { err, response } = await RouterClient.query("configService.removeApps", appIds);
813
- cb === null || cb === void 0 ? void 0 : cb(err, response.data);
814
- return { err, data: response.data };
815
- };
816
889
  /**
817
890
  * @ignore
818
891
  */
@@ -879,8 +952,6 @@ export const ConfigClient = {
879
952
  setMultiple,
880
953
  remove,
881
954
  removeMultiple,
882
- addApps,
883
- removeApps,
884
955
  };
885
956
  /**
886
957
  * @ignore
@@ -1 +1 @@
1
- {"version":3,"file":"configClient.js","sourceRoot":"","sources":["../../../src/clients/configClient.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"configClient.js","sourceRoot":"","sources":["../../../src/clients/configClient.ts"],"names":[],"mappings":"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"}