@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
@@ -1,610 +0,0 @@
1
- /*!
2
- * Copyright 2017 by ChartIQ, Inc.
3
- * All rights reserved.
4
- */
5
- import windowTitleBarStoreDefaults from "./windowTitleBarStoreDefaults";
6
- import { FEAGlobals } from "../../../../common/Globals";
7
- const getWindowNameForDocking = (finsembleWindow) => {
8
- const parent = FEAGlobals.finsembleWindow.parentWindow;
9
- return parent ? parent.name : FEAGlobals.finsembleWindow.name;
10
- };
11
- const getStackedWindow = (params, cb) => {
12
- if (!FEAGlobals.finsembleWindow.parentWindow && params.create) {
13
- const onParentSet = (evt) => {
14
- const { parentName } = evt.data;
15
- FEAGlobals.finsembleWindow.setParent({ windowName: parentName }, (err2, windowWrapper) => {
16
- cb === null || cb === void 0 ? void 0 : cb(err2, windowWrapper);
17
- });
18
- FEAGlobals.finsembleWindow.removeListener("parent-set", onParentSet);
19
- };
20
- FEAGlobals.finsembleWindow.addListener("parent-set", onParentSet);
21
- FEAGlobals.FSBL.Clients.LauncherClient.spawn("StackedWindow", {
22
- windowType: "StackedWindow",
23
- data: { windowIdentifiers: params.windowIdentifiers },
24
- options: { newStack: true },
25
- }, (err) => {
26
- if (!err) {
27
- return;
28
- }
29
- cb === null || cb === void 0 ? void 0 : cb(err, null);
30
- });
31
- }
32
- else {
33
- FEAGlobals.finsembleWindow.getParent(cb);
34
- }
35
- };
36
- let windowTitleBarStore;
37
- /**
38
- * When a group update is publish, we sift through the data to see if this window is snapped or grouped with other windows. Then we publish that info, and the GroupingButton renders the correct icon.
39
- * @param {*} err
40
- * @param {*} response
41
- */
42
- const onDockingGroupUpdate = (err, response) => {
43
- if (err || !response.data || !response.data.groupData) {
44
- return;
45
- }
46
- FEAGlobals.FSBL.Clients.Logger.system.debug("On docking group update", response.data.groupData);
47
- let groupNames = Object.keys(response.data.groupData);
48
- let movableGroups = groupNames
49
- .filter((groupName) => response.data.groupData[groupName].isMovable)
50
- .map((groupName) => response.data.groupData[groupName]);
51
- // This is all movable and snapped groups. It's used later to figure out the icon to display.
52
- windowTitleBarStore.setValue({
53
- field: "Main.allDockingGroups",
54
- value: response.data.groupData,
55
- });
56
- windowTitleBarStore.setValue({
57
- field: "Main.allMovableDockingGroups",
58
- value: movableGroups,
59
- });
60
- let myGroups = Actions.getMyDockingGroups(response.data.groupData);
61
- windowTitleBarStore.setValue({
62
- field: "Main.dockingGroups",
63
- value: myGroups,
64
- });
65
- /**
66
- * Goes through groups and sees if this window is grouped, snapped, or freely hanging out there.
67
- */
68
- let isSnapped = false;
69
- let isInMovableGroup = false;
70
- let isTopRight = false;
71
- let windowName = getWindowNameForDocking(FEAGlobals.finsembleWindow);
72
- for (let i = 0; i < myGroups.length; i++) {
73
- let myGroup = myGroups[i];
74
- if (myGroup.isMovable) {
75
- isInMovableGroup = true;
76
- if (windowName == myGroup.topRightWindow) {
77
- isTopRight = true;
78
- }
79
- }
80
- else {
81
- isSnapped = true;
82
- }
83
- }
84
- let icon = false;
85
- if (isSnapped) {
86
- icon = "joiner";
87
- }
88
- if (isInMovableGroup) {
89
- icon = "ejector";
90
- }
91
- windowTitleBarStore.setValues([
92
- { field: "isSnapped", value: isSnapped },
93
- { field: "isGrouped", value: isInMovableGroup },
94
- { field: "isTopRight", value: isTopRight },
95
- { field: "Main.dockingIcon", value: icon },
96
- ]);
97
- };
98
- /**
99
- * Listen for updates from the dragAndDropClient.
100
- */
101
- const listenForDNDUpdates = () => {
102
- FEAGlobals.FSBL.Clients.RouterClient.subscribe(`${FEAGlobals.FSBL.Clients.WindowClient.options.name}Finsemble.Sharer`, (err, response) => {
103
- if (err) {
104
- return console.error(err);
105
- }
106
- windowTitleBarStore.setValues([
107
- {
108
- field: "Sharer.emitterEnabled",
109
- value: response.data.emitterEnabled,
110
- },
111
- {
112
- field: "Sharer.receiverEnabled",
113
- value: response.data.receiverEnabled,
114
- },
115
- ]);
116
- });
117
- };
118
- /**
119
- * Handles whether to show the linker button.
120
- */
121
- const showLinkerButton = () => {
122
- // Get state (channel membership) from the linkerClient. Then set the value in the header so that the title bar accurately reflects the state.
123
- const cb = (err, response) => {
124
- if (response.channels) {
125
- windowTitleBarStore.setValue({
126
- field: "Linker.channels",
127
- value: response.channels,
128
- });
129
- }
130
- windowTitleBarStore.setValue({
131
- field: "Linker.showLinkerButton",
132
- value: true,
133
- });
134
- };
135
- cb(null, FEAGlobals.FSBL.Clients.LinkerClient.getState());
136
- FEAGlobals.FSBL.Clients.LinkerClient.onStateChange(cb);
137
- };
138
- const processInitialTabList = (err, values) => {
139
- const onParentSet = () => {
140
- Actions.parentWrapper = null;
141
- Actions.getInitialTabList(() => {
142
- FEAGlobals.FSBL.Clients.Logger.system.debug("docking group update after initial tab list");
143
- onDockingGroupUpdate(null, {
144
- data: {
145
- groupData: windowTitleBarStore.getValue({
146
- field: "Main.allDockingGroups",
147
- }),
148
- },
149
- });
150
- });
151
- };
152
- const onParentCleared = () => {
153
- Actions.parentWrapper = null;
154
- FEAGlobals.FSBL.Clients.Logger.system.debug("ClearParent, setting tabs to null");
155
- Actions.stopListeningOnParentWrapper(() => {
156
- Actions.parentWrapperStore = null;
157
- Actions._setTabs(null);
158
- onDockingGroupUpdate(null, {
159
- data: {
160
- groupData: windowTitleBarStore.getValue({
161
- field: "Main.allDockingGroups",
162
- }),
163
- },
164
- });
165
- });
166
- };
167
- FEAGlobals.finsembleWindow.addListener("setParent", onParentSet);
168
- FEAGlobals.finsembleWindow.addListener("clearParent", onParentCleared);
169
- if (err) {
170
- return FEAGlobals.FSBL.Clients.Logger.system.error("Error in getInitialTabList.", err);
171
- }
172
- if (values)
173
- Actions._setTabs(values);
174
- };
175
- /**
176
- * "FSBLHeader" can be true, false or an object. If false then we'll never even be here. If true, then maximize, minimize and close buttons will display. If an object, then the developer can override whether buttons are shown with "hideMaximize", "hideMinimize" and "hideClose"
177
- */
178
- const processFSBLHeader = (FSBLHeader, windowTitleBarConfig, options) => {
179
- var _a, _b;
180
- // Display name is first up for display. If it doesn't exist, we look for a default title (or one that's already set on init). If no title, we display the window's name (e.g., '5434-Welcome Component-2321').
181
- const displayName = (_b = (_a = options.customData) === null || _a === void 0 ? void 0 : _a.component) === null || _b === void 0 ? void 0 : _b.displayName;
182
- const max = !!FSBLHeader.hideMaximize;
183
- windowTitleBarStore.setValues([
184
- { field: "Maximize.hide", value: max },
185
- { field: "Minimize.hide", value: !!FSBLHeader.hideMinimize },
186
- { field: "Close.hide", value: !!FSBLHeader.hideClose },
187
- { field: "AlwaysOnTop.show", value: !!FSBLHeader.alwaysOnTop },
188
- ]);
189
- // By default, we hack the window's scroll bar so that it displays underneath the header. html.overflow: hidden body.overflow:auto
190
- windowTitleBarStore.setValue({
191
- field: "hackScrollbar",
192
- value: windowTitleBarConfig.FSBLHeader.hackScrollbar !== false,
193
- });
194
- windowTitleBarStore.setValue({
195
- field: "adjustContentHeights",
196
- value: windowTitleBarConfig.FSBLHeader.adjustContentHeights !== false,
197
- });
198
- // By default, fixed positioned elements with a top style set to '0px' will be bumped by the header height and the
199
- // DOM will be monitored for nodes that are added dynamically and bump them if they are fixed with a top style of 0px.
200
- windowTitleBarStore.setValue({
201
- field: "bumpElements",
202
- value: Object.assign({ fixed: "0Positioned", bumpBy: "25px", monitorFixedAdditions: true }, windowTitleBarConfig.FSBLHeader.bumpElements),
203
- });
204
- };
205
- // Once the above has been checked the individual component config is checked for customData.foreign.services[windowService || dockingService][!ignoreTilingAndTabbingRequests || allowTabbing]
206
- const getOptionsCallback = (err, opts) => {
207
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
208
- const windowAllowTabbing = (_d = (_c = (_b = (_a = opts.customData) === null || _a === void 0 ? void 0 : _a.foreign) === null || _b === void 0 ? void 0 : _b.services) === null || _c === void 0 ? void 0 : _c.windowService) === null || _d === void 0 ? void 0 : _d.allowTabbing;
209
- const windowIgnoreTabbing = (_h = (_g = (_f = (_e = opts.customData) === null || _e === void 0 ? void 0 : _e.foreign) === null || _f === void 0 ? void 0 : _f.services) === null || _g === void 0 ? void 0 : _g.windowService) === null || _h === void 0 ? void 0 : _h.ignoreTilingAndTabbingRequests;
210
- const dockingAllowTabbing = (_m = (_l = (_k = (_j = opts.customData) === null || _j === void 0 ? void 0 : _j.foreign) === null || _k === void 0 ? void 0 : _k.services) === null || _l === void 0 ? void 0 : _l.dockingService) === null || _m === void 0 ? void 0 : _m.allowTabbing;
211
- const dockingIgnoreTabbing = (_q = (_p = (_o = opts.customData) === null || _o === void 0 ? void 0 : _o.foreign.services) === null || _p === void 0 ? void 0 : _p.dockingService) === null || _q === void 0 ? void 0 : _q.ignoreTilingAndTabbingRequests;
212
- const dontShowTabs = windowAllowTabbing === false ||
213
- windowIgnoreTabbing === true ||
214
- dockingAllowTabbing === false ||
215
- dockingIgnoreTabbing === true;
216
- windowTitleBarStore.setValue({
217
- field: "showTabs",
218
- value: !dontShowTabs,
219
- });
220
- };
221
- const processFEAAndFinsembleConfig = (values, windowTitleBarConfig) => {
222
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
223
- const finsembleConfig = values.finsemble;
224
- // Check FEA config for DOM based movement configuration
225
- const { useDOMBasedMovement } = values["finsemble-electron-adapter"];
226
- windowTitleBarStore.setValue({
227
- field: "Main.useDOMBasedMovement",
228
- value: typeof useDOMBasedMovement === "undefined" ? true : useDOMBasedMovement,
229
- });
230
- // Override defaults if finsemble.Window Manager exists.
231
- const globalWindowManagerConfig = finsembleConfig["Window Manager"] || {
232
- alwaysOnTopIcon: false,
233
- showTabs: false,
234
- };
235
- // Look to see if docking is enabled. Cascade through backward compatibility with old "betaFeatures" and then a default if no config is found at all.
236
- finsembleConfig.servicesConfig = (_a = finsembleConfig.servicesConfig) !== null && _a !== void 0 ? _a : {};
237
- const defaultDockingConfig = {
238
- enabled: true,
239
- };
240
- let dockingConfig = (_e = (_c = (_b = finsembleConfig.servicesConfig.docking) !== null && _b !== void 0 ? _b : finsembleConfig.docking) !== null && _c !== void 0 ? _c : (_d = finsembleConfig.betaFeatures) === null || _d === void 0 ? void 0 : _d.docking) !== null && _e !== void 0 ? _e : defaultDockingConfig;
241
- dockingConfig.tabbing = (_f = dockingConfig.tabbing) !== null && _f !== void 0 ? _f : {};
242
- // Whether the alwaysOnTop pin is displayed depends this component's config (foreign.components["Widow Manager"].alwaysOnTop)
243
- // and then on the global setting (finsemble["Window Manager"].alwaysOnTop)
244
- const alwaysOnTopIcon = (_h = (_g = windowTitleBarConfig.alwaysOnTopIcon) !== null && _g !== void 0 ? _g : globalWindowManagerConfig.alwaysOnTopIcon) !== null && _h !== void 0 ? _h : false;
245
- const servicesConfigWindow = finsembleConfig.servicesConfig.window;
246
- windowTitleBarStore.setValues([
247
- { field: "Main.dockingEnabled", value: dockingConfig.enabled },
248
- {
249
- field: "allowWindowTitleRenaming",
250
- value: (_k = (_j = servicesConfigWindow === null || servicesConfigWindow === void 0 ? void 0 : servicesConfigWindow.allowWindowTitleRenaming) !== null && _j !== void 0 ? _j : dockingConfig.tabbing.allowEditing) !== null && _k !== void 0 ? _k : false,
251
- },
252
- { field: "AlwaysOnTop.show", value: alwaysOnTopIcon },
253
- ]);
254
- // If tabbing is turned off, ignore global/local 'windowManager' config about whether to allow tabbing.
255
- if (dockingConfig.tabbing.enabled === false) {
256
- windowTitleBarStore.setValue({
257
- field: "showTabs",
258
- value: dockingConfig.tabbing.enabled,
259
- });
260
- }
261
- else {
262
- // If tabbing is enabled system-wide, look to the global config for its value. Then look to the local component's config.
263
- // This is the global window manager config.
264
- if (typeof windowTitleBarConfig.showTabs !== "boolean") {
265
- windowTitleBarStore.setValue({
266
- field: "showTabs",
267
- value: globalWindowManagerConfig.showTabs,
268
- });
269
- }
270
- // This is the component's config.
271
- if (windowTitleBarConfig.showTabs || windowTitleBarConfig.showTabs === false) {
272
- windowTitleBarStore.setValue({
273
- field: "showTabs",
274
- value: windowTitleBarConfig.showTabs,
275
- });
276
- }
277
- FEAGlobals.finsembleWindow.getOptions(getOptionsCallback);
278
- }
279
- };
280
- // these are constants that are set inside of setupStore. so they're declared as vars and not constants.
281
- let constants;
282
- const Actions = {
283
- parentWrapperStore: null,
284
- initialize: () => {
285
- // This ensures that our config is correct, even if the developer missed some entries
286
- const { options } = FEAGlobals.FSBL.Clients.WindowClient;
287
- const windowTitleBarConfig = options.customData.foreign.components["Window Manager"];
288
- const { FSBLHeader } = windowTitleBarConfig;
289
- if (FSBLHeader)
290
- processFSBLHeader(FSBLHeader, windowTitleBarConfig, options);
291
- if (windowTitleBarConfig.showLinker)
292
- showLinkerButton();
293
- listenForDNDUpdates();
294
- FEAGlobals.FSBL.Clients.RouterClient.subscribe("Finsemble.WorkspaceService.groupUpdate", onDockingGroupUpdate);
295
- // default title.
296
- windowTitleBarStore.setValue({
297
- field: "Main.windowTitle",
298
- value: FEAGlobals.FSBL.Clients.WindowClient.getWindowTitle(),
299
- });
300
- FEAGlobals.FSBL.Clients.ConfigClient.getValues([{ field: "finsemble" }, { field: "finsemble-electron-adapter" }], (err, config) => {
301
- if (config)
302
- processFEAAndFinsembleConfig(config, windowTitleBarConfig);
303
- });
304
- Actions.getInitialTabList(processInitialTabList);
305
- /**
306
- * This store does not listen on window events (such as "maximized" or "minimized") - that is the
307
- * WindowClient's job. The headerCommandChannel allows the WindowClient to affect the display state
308
- * of the windowTitleBar - such as changing the maximize icon when a "maximized" event is received.
309
- */
310
- FEAGlobals.FSBL.Clients.WindowClient.headerCommandChannel((command, state) => {
311
- Actions.remoteStateUpdate(command, state);
312
- });
313
- },
314
- /**
315
- * Helper function to sift through all of the data coming from the windowService. Outputs an array of groups that the window belongs to.
316
- */
317
- getMyDockingGroups: function (groupData) {
318
- let myGroups = [];
319
- let windowName = getWindowNameForDocking(FEAGlobals.finsembleWindow);
320
- if (FEAGlobals.finsembleWindow.parentWindow) {
321
- windowName = FEAGlobals.finsembleWindow.parentWindow.name;
322
- }
323
- FEAGlobals.FSBL.Clients.Logger.system.debug("Getting docking groups for ", windowName, groupData);
324
- if (groupData) {
325
- for (let groupName in groupData) {
326
- groupData[groupName].groupName = groupName;
327
- if (groupData[groupName].windowNames.includes(windowName)) {
328
- myGroups.push(groupData[groupName]);
329
- }
330
- }
331
- }
332
- return myGroups;
333
- },
334
- onTabListScrollPositionChanged: function (err, response) {
335
- windowTitleBarStore.setValue({
336
- field: "tabListTranslateX",
337
- value: response.data.translateX,
338
- });
339
- },
340
- setTabListScrollPosition: function (translateX) {
341
- FEAGlobals.FSBL.Clients.RouterClient.transmit(constants.TAB_SCROLL_POSITION_CHANGED, {
342
- translateX,
343
- });
344
- },
345
- /**
346
- * Handles messages coming from the windowClient.
347
- */
348
- remoteStateUpdate: function (command, state) {
349
- const key = Object.keys(state)[0];
350
- const field = `${command}.${key}`;
351
- windowTitleBarStore.setValue({ field: field, value: state[key] });
352
- },
353
- /**
354
- * Minimizes the window.
355
- */
356
- clickMinimize: function () {
357
- FEAGlobals.finsembleWindow.minimize(() => { });
358
- },
359
- /**
360
- * Closes the window, allows for cleanup. Removes the window from workspace; this function is only invoked when the user clicks the close button.
361
- */
362
- clickClose: function () {
363
- FEAGlobals.FSBL.Clients.WindowClient.close({
364
- closeWindow: true,
365
- removeFromWorkspace: true,
366
- userInitiated: true,
367
- });
368
- },
369
- /**
370
- * Toggles group membership. If two windows are snapped, and this button is clicked, they become part of the same group that can be moved around together.
371
- */
372
- toggleGroup: function () {
373
- const groups = windowTitleBarStore.getValue({ field: "Main.dockingGroups" });
374
- const isInMovableGroup = groups.some((group) => group.isMovable);
375
- if (isInMovableGroup) {
376
- FEAGlobals.finsembleWindow.ejectFromGroup();
377
- }
378
- else {
379
- FEAGlobals.finsembleWindow.formGroup();
380
- }
381
- },
382
- /**
383
- * Maximizes the window.
384
- */
385
- clickMaximize: function () {
386
- if (FEAGlobals.finsembleWindow.windowOptions.windowState !== FEAGlobals.finsembleWindow.WINDOWSTATE.MAXIMIZED)
387
- return FEAGlobals.finsembleWindow.maximize(() => {
388
- windowTitleBarStore.setValue({
389
- field: "Maximize.maximized",
390
- value: true,
391
- });
392
- });
393
- return FEAGlobals.finsembleWindow.restore(() => {
394
- windowTitleBarStore.setValue({
395
- field: "Maximize.maximized",
396
- value: false,
397
- });
398
- });
399
- },
400
- getTabs() {
401
- return windowTitleBarStore.getValue({ field: "tabs" });
402
- },
403
- _setTabs(tabs) {
404
- FEAGlobals.FSBL.Clients.Logger.system.debug("Set tabs", tabs);
405
- let activeIdentifier = FEAGlobals.finsembleWindow.identifier;
406
- activeIdentifier.title = FEAGlobals.finsembleWindow.windowOptions.title;
407
- return windowTitleBarStore.setValue({
408
- field: "tabs",
409
- value: tabs || [activeIdentifier],
410
- });
411
- },
412
- addTabLocally: function (windowIdentifier, i) {
413
- let tabs = Actions.getTabs();
414
- if (typeof i === "undefined") {
415
- i = tabs.length + 1;
416
- }
417
- tabs.splice(i, 0, windowIdentifier);
418
- Actions._setTabs(tabs);
419
- },
420
- removeTabsLocally: function () {
421
- Actions._setTabs(null);
422
- },
423
- removeTabLocally: function (windowIdentifier) {
424
- let tabs = Actions.getTabs();
425
- let i = tabs.findIndex((el) => el.windowName === windowIdentifier.windowName);
426
- tabs.splice(i, 1);
427
- Actions._setTabs(tabs);
428
- },
429
- reorderTabLocally: function (tab, newIndex) {
430
- let tabs = Actions.getTabs();
431
- let { currentIndex } = Actions.findTab(tab);
432
- if (currentIndex === newIndex)
433
- return;
434
- if (currentIndex === -1) {
435
- return Actions.addTabLocally(tab, newIndex);
436
- }
437
- tabs.splice(currentIndex, 1);
438
- tabs.splice(newIndex, 0, tab);
439
- Actions._setTabs(tabs);
440
- },
441
- addTab: function (windowIdentifier, i) {
442
- let tabs = Actions.getTabs();
443
- tabs.push(windowIdentifier);
444
- // quick UI update
445
- Actions._setTabs(tabs);
446
- let callback = () => {
447
- var _a;
448
- (_a = Actions.parentWrapper) === null || _a === void 0 ? void 0 : _a.setVisibleWindow({ windowIdentifier });
449
- };
450
- if (!Actions.parentWrapper) {
451
- return Actions.createParentWrapper({
452
- windowIdentifiers: FEAGlobals.finsembleWindow.identifier
453
- ? [FEAGlobals.finsembleWindow.identifier, windowIdentifier]
454
- : [windowIdentifier],
455
- visibleWindowIdentifier: windowIdentifier,
456
- create: true,
457
- });
458
- }
459
- return Actions.parentWrapper.addWindow({ windowIdentifier, position: i }, callback);
460
- },
461
- removeTab: function (windowIdentifier, i) {
462
- var _a;
463
- return (_a = Actions.parentWrapper) === null || _a === void 0 ? void 0 : _a.removeWindow({
464
- windowIdentifier,
465
- position: i,
466
- });
467
- },
468
- closeTab: function (windowIdentifier) {
469
- const close = (err, wrap) => {
470
- wrap.close({ removeFromWorkspace: true });
471
- };
472
- FEAGlobals.FSBL.FinsembleWindow.getInstance(windowIdentifier, close);
473
- },
474
- reorderTab: function (tab, newIndex) {
475
- let tabs = Actions.getTabs();
476
- let { currentIndex } = Actions.findTab(tab);
477
- if (currentIndex === -1 || !Actions.parentWrapper) {
478
- return Actions.addTab(tab, newIndex);
479
- }
480
- tabs.splice(currentIndex, 1);
481
- tabs.splice(newIndex, 0, tab);
482
- // Local change, quickly updates the dom.
483
- Actions._setTabs(tabs);
484
- Actions.parentWrapper.reorder({ windowIdentifiers: tabs });
485
- },
486
- findTab: function (tab) {
487
- let tabs = Actions.getTabs();
488
- let currentIndex = tabs.findIndex((el) => tab.windowName === el.windowName);
489
- return { tab, currentIndex };
490
- },
491
- setActiveTab: function (windowIdentifier) {
492
- FEAGlobals.FSBL.Clients.Logger.system.debug("setActiveTab.visibleWindow");
493
- return FEAGlobals.finsembleWindow.parentWindow.setVisibleWindow({ windowIdentifier });
494
- },
495
- parentWrapper: null,
496
- onTabListChanged: function (err, response) {
497
- FEAGlobals.FSBL.Clients.Logger.system.debug("OnTabListChanged", response.data);
498
- if (response.data && response.data.hasOwnProperty(constants.CHILD_WINDOW_FIELD)) {
499
- Actions._setTabs(response.data[constants.CHILD_WINDOW_FIELD]);
500
- }
501
- },
502
- parentSubscriptions: [],
503
- stopListeningOnParentWrapper: function (cb) {
504
- Actions.parentSubscriptions.forEach((sub) => {
505
- FEAGlobals.FSBL.Clients.RouterClient.unsubscribe(sub);
506
- });
507
- Actions.parentSubscriptions = []; // remove the subscribeId
508
- // Syncs scroll state across all tabs in a stack.
509
- FEAGlobals.FSBL.Clients.RouterClient.removeListener(constants.TAB_SCROLL_POSITION_CHANGED, Actions.onTabListScrollPositionChanged);
510
- cb();
511
- },
512
- listenOnParentWrapper: function () {
513
- let TABLIST_SUBSCRIPTION = FEAGlobals.FSBL.Clients.RouterClient.subscribe(constants.PARENT_WRAPPER_UPDATES, Actions.onTabListChanged);
514
- FEAGlobals.FSBL.Clients.RouterClient.addListener(constants.TAB_SCROLL_POSITION_CHANGED, Actions.onTabListScrollPositionChanged);
515
- Actions.parentSubscriptions.push(TABLIST_SUBSCRIPTION);
516
- },
517
- setupStore: function (cb = Function.prototype) {
518
- var _a, _b, _c;
519
- constants = {
520
- PARENT_WRAPPER_UPDATES: `Finsemble.StackedWindow.${(_b = (_a = Actions.parentWrapper) === null || _a === void 0 ? void 0 : _a.identifier) === null || _b === void 0 ? void 0 : _b.windowName}`,
521
- CHILD_WINDOW_FIELD: "childWindowIdentifiers",
522
- VISIBLE_WINDOW_FIELD: "visibleWindowIdentifier",
523
- TAB_SCROLL_POSITION_CHANGED: `${(_c = Actions.parentWrapper) === null || _c === void 0 ? void 0 : _c.name}.tabListTabListScrollPositionChanged`,
524
- };
525
- Actions.listenOnParentWrapper();
526
- cb();
527
- },
528
- getInitialTabList: function (cb) {
529
- FEAGlobals.finsembleWindow.getParent((err, parentWrapper) => {
530
- Actions.parentWrapper = parentWrapper;
531
- if (Actions.parentWrapper) {
532
- FEAGlobals.FSBL.Clients.Logger.system.debug("GetInitialTabList, parent exists");
533
- Actions.setupStore(cb);
534
- }
535
- else {
536
- let activeIdentifier = FEAGlobals.finsembleWindow.identifier;
537
- activeIdentifier.title = FEAGlobals.finsembleWindow.windowOptions.title;
538
- let tabs = [activeIdentifier];
539
- cb(null, tabs);
540
- }
541
- });
542
- },
543
- createParentWrapper(params, cb = Function.prototype) {
544
- window.Actions = Actions;
545
- if (Actions.parentWrapper) {
546
- cb();
547
- }
548
- else {
549
- const getStackedWindowCallback = (err, wrap) => {
550
- if (err) {
551
- Actions.parentWrapper = null;
552
- Actions._setTabs(null);
553
- }
554
- else {
555
- Actions.parentWrapper = wrap;
556
- Actions.setupStore(cb);
557
- }
558
- };
559
- getStackedWindow(params, getStackedWindowCallback);
560
- }
561
- },
562
- };
563
- /**
564
- * Initializes the store for the windowTitleBar.
565
- *
566
- * @param {any} cb
567
- */
568
- function initialize(cb) {
569
- FEAGlobals.FSBL.Clients.DistributedStoreClient.createStore({ store: "windowTitleBarStore", values: windowTitleBarStoreDefaults }, (err, store) => {
570
- if (!err && store) {
571
- windowTitleBarStore = store;
572
- }
573
- Actions.initialize();
574
- return cb(store, Actions);
575
- });
576
- }
577
- let getStore = () => windowTitleBarStore;
578
- class StoreManager {
579
- constructor() {
580
- this.initialized = false;
581
- this.initializing = false;
582
- this.store = null;
583
- this.callbacks = [];
584
- }
585
- initialize() {
586
- if (this.initializing)
587
- return;
588
- this.initializing = true;
589
- initialize((store) => {
590
- this.initialized = true;
591
- this.store = store;
592
- this.callbacks.forEach((cb) => cb(store));
593
- });
594
- }
595
- addInitializedListener(cb) {
596
- if (this.initialized)
597
- return cb(this.store);
598
- this.callbacks.push(cb);
599
- }
600
- removeInitializedListener(cb) {
601
- this.callbacks = this.callbacks.filter((entry) => entry !== cb);
602
- }
603
- }
604
- const storeManager = new StoreManager();
605
- export { storeManager };
606
- export { initialize };
607
- export { windowTitleBarStore as Store };
608
- export { Actions };
609
- export { getStore };
610
- //# sourceMappingURL=windowTitleBarStore.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"windowTitleBarStore.js","sourceRoot":"","sources":["../../../../../../src/ui/components/windowTitleBar/stores/windowTitleBarStore.ts"],"names":[],"mappings":"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"}