@adaptabletools/adaptable 13.1.1 → 14.0.0-canary.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 (382) hide show
  1. package/README.md +1 -1
  2. package/base.css +7 -2
  3. package/base.css.map +1 -1
  4. package/bundle.cjs.js +180 -177
  5. package/index.css +11 -2
  6. package/index.css.map +1 -1
  7. package/package.json +2 -2
  8. package/publishTimestamp.d.ts +1 -1
  9. package/publishTimestamp.js +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -1
  11. package/src/AdaptableOptions/ActionOptions.d.ts +4 -1
  12. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -9
  13. package/src/AdaptableOptions/AlertOptions.d.ts +6 -1
  14. package/src/AdaptableOptions/ChartingOptions.d.ts +1 -1
  15. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  16. package/src/AdaptableOptions/ExportOptions.d.ts +1 -1
  17. package/src/AdaptableOptions/GeneralOptions.d.ts +8 -3
  18. package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +6 -4
  19. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
  20. package/src/Api/ActionApi.d.ts +14 -3
  21. package/src/Api/AdaptableApi.d.ts +0 -6
  22. package/src/Api/AlertApi.d.ts +127 -92
  23. package/src/Api/BulkUpdateApi.d.ts +9 -2
  24. package/src/Api/CalculatedColumnApi.d.ts +26 -21
  25. package/src/Api/CellSummaryApi.d.ts +15 -8
  26. package/src/Api/ChartingApi.d.ts +9 -2
  27. package/src/Api/ColumnApi.d.ts +153 -115
  28. package/src/Api/ConfigApi.d.ts +18 -18
  29. package/src/Api/CustomSortApi.d.ts +36 -7
  30. package/src/Api/DashboardApi.d.ts +12 -5
  31. package/src/Api/DataChangeHistoryApi.d.ts +8 -1
  32. package/src/Api/DataSetApi.d.ts +13 -3
  33. package/src/Api/EventApi.d.ts +2 -2
  34. package/src/Api/ExportApi.d.ts +30 -13
  35. package/src/Api/FilterApi.d.ts +74 -62
  36. package/src/Api/FlashingCellApi.d.ts +25 -9
  37. package/src/Api/FormatColumnApi.d.ts +76 -95
  38. package/src/Api/FreeTextColumnApi.d.ts +53 -21
  39. package/src/Api/GridApi.d.ts +57 -22
  40. package/src/Api/Implementation/ActionApiImpl.d.ts +9 -3
  41. package/src/Api/Implementation/ActionApiImpl.js +23 -11
  42. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  43. package/src/Api/Implementation/AdaptableApiImpl.js +5 -2
  44. package/src/Api/Implementation/AlertApiImpl.d.ts +57 -28
  45. package/src/Api/Implementation/AlertApiImpl.js +179 -197
  46. package/src/Api/Implementation/ApiBase.d.ts +43 -2
  47. package/src/Api/Implementation/ApiBase.js +129 -5
  48. package/src/Api/Implementation/ApplicationApiImpl.d.ts +1 -1
  49. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
  50. package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -1
  51. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +7 -2
  52. package/src/Api/Implementation/CalculatedColumnApiImpl.js +28 -37
  53. package/src/Api/Implementation/CellSummaryApiImpl.d.ts +1 -0
  54. package/src/Api/Implementation/CellSummaryApiImpl.js +6 -1
  55. package/src/Api/Implementation/ChartingApiImpl.d.ts +2 -2
  56. package/src/Api/Implementation/ChartingApiImpl.js +10 -4
  57. package/src/Api/Implementation/ColumnApiImpl.d.ts +22 -6
  58. package/src/Api/Implementation/ColumnApiImpl.js +184 -195
  59. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  60. package/src/Api/Implementation/ConfigApiImpl.js +1 -1
  61. package/src/Api/Implementation/CustomSortApiImpl.d.ts +16 -1
  62. package/src/Api/Implementation/CustomSortApiImpl.js +33 -7
  63. package/src/Api/Implementation/DashboardApiImpl.d.ts +6 -1
  64. package/src/Api/Implementation/DashboardApiImpl.js +11 -12
  65. package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
  66. package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
  67. package/src/Api/Implementation/DataSetApiImpl.d.ts +6 -0
  68. package/src/Api/Implementation/DataSetApiImpl.js +17 -8
  69. package/src/Api/Implementation/EntitlementApiImpl.d.ts +1 -1
  70. package/src/Api/Implementation/ExportApiImpl.d.ts +9 -1
  71. package/src/Api/Implementation/ExportApiImpl.js +34 -68
  72. package/src/Api/Implementation/FilterApiImpl.d.ts +10 -1
  73. package/src/Api/Implementation/FilterApiImpl.js +61 -157
  74. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +8 -0
  75. package/src/Api/Implementation/FlashingCellApiImpl.js +23 -26
  76. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +20 -15
  77. package/src/Api/Implementation/FormatColumnApiImpl.js +62 -153
  78. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +13 -5
  79. package/src/Api/Implementation/FreeTextColumnApiImpl.js +42 -27
  80. package/src/Api/Implementation/GridApiImpl.d.ts +15 -1
  81. package/src/Api/Implementation/GridApiImpl.js +117 -61
  82. package/src/Api/Implementation/LayoutApiImpl.d.ts +8 -7
  83. package/src/Api/Implementation/LayoutApiImpl.js +29 -112
  84. package/src/Api/Implementation/PluginsApiImpl.d.ts +1 -1
  85. package/src/Api/Implementation/PlusMinusApiImpl.d.ts +2 -1
  86. package/src/Api/Implementation/PlusMinusApiImpl.js +5 -0
  87. package/src/Api/Implementation/PredicateApiImpl.d.ts +8 -5
  88. package/src/Api/Implementation/PredicateApiImpl.js +33 -98
  89. package/src/Api/Implementation/QueryApiImpl.d.ts +7 -2
  90. package/src/Api/Implementation/QueryApiImpl.js +22 -44
  91. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -0
  92. package/src/Api/Implementation/QueryLanguageApiImpl.js +5 -0
  93. package/src/Api/Implementation/QuickSearchApiImpl.d.ts +1 -0
  94. package/src/Api/Implementation/QuickSearchApiImpl.js +5 -0
  95. package/src/Api/Implementation/ScheduleApiImpl.d.ts +27 -0
  96. package/src/Api/Implementation/ScheduleApiImpl.js +86 -17
  97. package/src/Api/Implementation/ScopeApiImpl.js +9 -7
  98. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +2 -0
  99. package/src/Api/Implementation/SettingsPanelApiImpl.js +9 -0
  100. package/src/Api/Implementation/ShortcutApiImpl.d.ts +8 -1
  101. package/src/Api/Implementation/ShortcutApiImpl.js +25 -4
  102. package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -0
  103. package/src/Api/Implementation/SmartEditApiImpl.js +5 -0
  104. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +14 -11
  105. package/src/Api/Implementation/StyledColumnApiImpl.js +40 -185
  106. package/src/Api/Implementation/SystemStatusApiImpl.d.ts +6 -1
  107. package/src/Api/Implementation/SystemStatusApiImpl.js +19 -12
  108. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +6 -5
  109. package/src/Api/Implementation/TeamSharingApiImpl.js +15 -25
  110. package/src/Api/Implementation/ThemeApiImpl.d.ts +5 -1
  111. package/src/Api/Implementation/ThemeApiImpl.js +23 -4
  112. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -0
  113. package/src/Api/Implementation/UserInterfaceApiImpl.js +13 -4
  114. package/src/Api/Internal/ActionInternalApi.d.ts +23 -0
  115. package/src/Api/Internal/ActionInternalApi.js +198 -0
  116. package/src/Api/{Implementation/InternalApiImpl.d.ts → Internal/AdaptableInternalApi.d.ts} +7 -57
  117. package/src/Api/{Implementation/InternalApiImpl.js → Internal/AdaptableInternalApi.js} +28 -306
  118. package/src/Api/Internal/AlertInternalApi.d.ts +148 -0
  119. package/src/Api/Internal/AlertInternalApi.js +484 -0
  120. package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +24 -0
  121. package/src/Api/Internal/CalculatedColumnInternalApi.js +57 -0
  122. package/src/Api/Internal/ColumnInternalApi.d.ts +33 -0
  123. package/src/Api/Internal/ColumnInternalApi.js +67 -0
  124. package/src/Api/Internal/CustomSortInternalApi.d.ts +6 -0
  125. package/src/Api/Internal/CustomSortInternalApi.js +11 -0
  126. package/src/Api/Internal/DashboardInternalApi.d.ts +8 -0
  127. package/src/Api/Internal/DashboardInternalApi.js +26 -0
  128. package/src/Api/Internal/DataSetInternalApi.d.ts +9 -0
  129. package/src/Api/Internal/DataSetInternalApi.js +20 -0
  130. package/src/Api/Internal/ExportInternalApi.d.ts +11 -0
  131. package/src/Api/Internal/ExportInternalApi.js +73 -0
  132. package/src/Api/Internal/FilterInternalApi.d.ts +58 -0
  133. package/src/Api/Internal/FilterInternalApi.js +194 -0
  134. package/src/Api/Internal/FlashingCellInternalApi.d.ts +12 -0
  135. package/src/Api/Internal/FlashingCellInternalApi.js +56 -0
  136. package/src/Api/Internal/FormatColumnInternalApi.d.ts +109 -0
  137. package/src/Api/Internal/FormatColumnInternalApi.js +225 -0
  138. package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +15 -0
  139. package/src/Api/Internal/FreeTextColumnInternalApi.js +44 -0
  140. package/src/Api/Internal/GridInternalApi.d.ts +82 -0
  141. package/src/Api/Internal/GridInternalApi.js +252 -0
  142. package/src/Api/Internal/LayoutInternalApi.d.ts +48 -0
  143. package/src/Api/Internal/LayoutInternalApi.js +163 -0
  144. package/src/Api/Internal/PredicateInternalApi.d.ts +37 -0
  145. package/src/Api/Internal/PredicateInternalApi.js +140 -0
  146. package/src/Api/Internal/QueryInternalApi.d.ts +17 -0
  147. package/src/Api/Internal/QueryInternalApi.js +57 -0
  148. package/src/Api/Internal/QueryLanguageInternalApi.d.ts +11 -0
  149. package/src/Api/Internal/QueryLanguageInternalApi.js +34 -0
  150. package/src/Api/Internal/StyledColumnInternalApi.d.ts +59 -0
  151. package/src/Api/Internal/StyledColumnInternalApi.js +249 -0
  152. package/src/Api/Internal/SystemStatusInternalApi.d.ts +11 -0
  153. package/src/Api/Internal/SystemStatusInternalApi.js +27 -0
  154. package/src/Api/Internal/TeamSharingInternalApi.d.ts +20 -0
  155. package/src/Api/Internal/TeamSharingInternalApi.js +66 -0
  156. package/src/Api/LayoutApi.d.ts +28 -44
  157. package/src/Api/PlusMinusApi.d.ts +9 -2
  158. package/src/Api/PredicateApi.d.ts +26 -10
  159. package/src/Api/QueryApi.d.ts +23 -18
  160. package/src/Api/QuickSearchApi.d.ts +5 -1
  161. package/src/Api/ScheduleApi.d.ts +97 -16
  162. package/src/Api/SettingsPanelApi.d.ts +12 -1
  163. package/src/Api/ShortcutApi.d.ts +28 -7
  164. package/src/Api/SmartEditApi.d.ts +8 -1
  165. package/src/Api/StyledColumnApi.d.ts +34 -54
  166. package/src/Api/SystemStatusApi.d.ts +12 -6
  167. package/src/Api/TeamSharingApi.d.ts +4 -17
  168. package/src/Api/ThemeApi.d.ts +25 -6
  169. package/src/Api/UserInterfaceApi.d.ts +13 -2
  170. package/src/PredefinedConfig/AlertState.d.ts +1 -1
  171. package/src/PredefinedConfig/Common/AdaptableColumn.js +4 -0
  172. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +0 -5
  173. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +10 -0
  174. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  175. package/src/PredefinedConfig/Common/AdaptableObject.d.ts +22 -1
  176. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +3 -0
  177. package/src/PredefinedConfig/Common/AdaptablePredicate.js +5 -3
  178. package/src/PredefinedConfig/Common/FDC3Context.d.ts +0 -5
  179. package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
  180. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  181. package/src/PredefinedConfig/StyledColumnState.d.ts +9 -0
  182. package/src/PredefinedConfig/SystemState.d.ts +5 -0
  183. package/src/Redux/ActionsReducers/GridRedux.d.ts +18 -0
  184. package/src/Redux/ActionsReducers/GridRedux.js +65 -2
  185. package/src/Redux/ActionsReducers/SystemRedux.d.ts +5 -0
  186. package/src/Redux/ActionsReducers/SystemRedux.js +17 -3
  187. package/src/Redux/Store/AdaptableStore.js +34 -26
  188. package/src/Strategy/AdaptableModuleBase.js +6 -6
  189. package/src/Strategy/AlertModule.d.ts +1 -6
  190. package/src/Strategy/AlertModule.js +37 -92
  191. package/src/Strategy/BulkUpdateModule.js +3 -3
  192. package/src/Strategy/CalculatedColumnModule.js +6 -6
  193. package/src/Strategy/ChartingModule.js +1 -1
  194. package/src/Strategy/CustomSortModule.js +4 -4
  195. package/src/Strategy/DashboardModule.js +2 -2
  196. package/src/Strategy/DataSetModule.js +1 -1
  197. package/src/Strategy/ExportModule.js +4 -4
  198. package/src/Strategy/FilterModule.js +7 -6
  199. package/src/Strategy/FlashingCellModule.d.ts +2 -0
  200. package/src/Strategy/FlashingCellModule.js +21 -5
  201. package/src/Strategy/FormatColumnModule.d.ts +1 -0
  202. package/src/Strategy/FormatColumnModule.js +29 -3
  203. package/src/Strategy/FreeTextColumnModule.js +3 -3
  204. package/src/Strategy/LayoutModule.js +18 -18
  205. package/src/Strategy/PlusMinusModule.js +2 -2
  206. package/src/Strategy/QueryModule.js +3 -3
  207. package/src/Strategy/ScheduleModule.js +10 -12
  208. package/src/Strategy/ShortcutModule.js +5 -5
  209. package/src/Strategy/SmartEditModule.js +3 -3
  210. package/src/Strategy/StyledColumnModule.js +9 -7
  211. package/src/Strategy/TeamSharingModule.js +3 -3
  212. package/src/Strategy/ThemeModule.js +1 -1
  213. package/src/Strategy/Utilities/CustomSort/getCustomSortColumnViewItems.js +1 -1
  214. package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +1 -1
  215. package/src/Strategy/Utilities/Layout/getLayoutSortViewItems.js +1 -1
  216. package/src/Strategy/Utilities/getRuleViewItems.d.ts +1 -1
  217. package/src/Strategy/Utilities/getRuleViewItems.js +4 -3
  218. package/src/Strategy/Utilities/getScopeViewItems.js +1 -1
  219. package/src/Strategy/Utilities/updateSingleToMultiplePredicates.d.ts +5 -0
  220. package/src/Strategy/Utilities/updateSingleToMultiplePredicates.js +12 -0
  221. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -3
  222. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +8 -0
  223. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +11 -0
  224. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +73 -78
  225. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +3 -1
  226. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +9 -5
  227. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +12 -3
  228. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
  229. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +133 -28
  230. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  231. package/src/Utilities/Helpers/AdaptableHelper.js +1 -1
  232. package/src/Utilities/Helpers/FormatHelper.js +13 -10
  233. package/src/Utilities/ObjectFactory.js +8 -6
  234. package/src/Utilities/Services/CalculatedColumnExpressionService.js +1 -1
  235. package/src/Utilities/Services/ChartingService.js +2 -2
  236. package/src/Utilities/Services/DataService.js +1 -1
  237. package/src/Utilities/Services/Interface/IEntitlementService.d.ts +2 -1
  238. package/src/Utilities/Services/Interface/IRowEditService.d.ts +0 -5
  239. package/src/Utilities/Services/ModuleService.js +1 -1
  240. package/src/Utilities/Services/QueryLanguageService.js +2 -2
  241. package/src/Utilities/Services/ReportService.js +3 -3
  242. package/src/Utilities/Services/RowEditService.d.ts +0 -19
  243. package/src/Utilities/Services/RowEditService.js +4 -161
  244. package/src/Utilities/Services/TeamSharingService.js +3 -3
  245. package/src/Utilities/Services/ValidationService.js +9 -7
  246. package/src/Utilities/logDeprecation.d.ts +3 -0
  247. package/src/Utilities/logDeprecation.js +30 -0
  248. package/src/View/AdaptablePopover/index.d.ts +2 -0
  249. package/src/View/AdaptablePopover/index.js +6 -2
  250. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +4 -2
  251. package/src/View/Alert/AlertEntityRow.js +1 -1
  252. package/src/View/Alert/AlertStatusSubPanel.js +1 -1
  253. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +2 -2
  254. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -2
  255. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +3 -3
  256. package/src/View/Alert/Wizard/AlertWizard.js +3 -3
  257. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +4 -2
  258. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
  259. package/src/View/Alert/Wizard/isValidAlertRules.js +4 -3
  260. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -3
  261. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +1 -0
  262. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +25 -4
  263. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  264. package/src/View/Components/Charting/ChartingViewPanel.d.ts +2 -2
  265. package/src/View/Components/Charting/ChartingViewPanel.js +17 -3
  266. package/src/View/Components/Charting/ChartingWizard/ChartingWizard.js +2 -2
  267. package/src/View/Components/Charting/ChartingWizard/SettingsSection.js +1 -1
  268. package/src/View/Components/Charting/DeleteChartButton.d.ts +7 -0
  269. package/src/View/Components/Charting/DeleteChartButton.js +12 -0
  270. package/src/View/Components/Charting/EditChartButton.d.ts +8 -0
  271. package/src/View/Components/Charting/EditChartButton.js +21 -0
  272. package/src/View/Components/EntityRulesEditor/PredicatesEditor.d.ts +16 -0
  273. package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +86 -0
  274. package/src/View/Components/EntityRulesEditor/Utilities.d.ts +6 -0
  275. package/src/View/Components/EntityRulesEditor/Utilities.js +21 -0
  276. package/src/View/Components/EntityRulesEditor/index.d.ts +4 -9
  277. package/src/View/Components/EntityRulesEditor/index.js +16 -90
  278. package/src/View/Components/ExpressionWizard.js +1 -1
  279. package/src/View/Components/ExternalRenderer.js +3 -1
  280. package/src/View/Components/FilterForm/FilterForm.js +3 -3
  281. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -5
  282. package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +5 -6
  283. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -1
  284. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -2
  285. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  286. package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +2 -12
  287. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +46 -39
  288. package/src/View/Components/PredicateEditor/PredicateEditor.js +5 -5
  289. package/src/View/Components/ScopeComponent.js +3 -3
  290. package/src/View/Components/Selectors/ColumnValueSelector.js +1 -1
  291. package/src/View/Components/StyleComponent.js +42 -14
  292. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  293. package/src/View/CustomSort/CustomSortSummary.js +1 -1
  294. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
  295. package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +1 -1
  296. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
  297. package/src/View/Dashboard/Dashboard.js +1 -1
  298. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -1
  299. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +10 -1
  300. package/src/View/DataSet/DataSetSelector.js +1 -1
  301. package/src/View/DataSet/DataSetStatusPanelPopover.js +1 -1
  302. package/src/View/DataSet/DataSetViewPanel.js +1 -1
  303. package/src/View/Export/ExportSelector.js +2 -2
  304. package/src/View/Export/ExportViewPanel.js +2 -2
  305. package/src/View/Export/ReportExportDropdown.js +1 -1
  306. package/src/View/Export/Wizard/ReportNameWizardSection.js +1 -1
  307. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  308. package/src/View/Filter/FilterSummary.js +1 -1
  309. package/src/View/Filter/FilterViewPanel.js +1 -1
  310. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
  311. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +4 -2
  312. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +4 -3
  313. package/src/View/FormatColumn/MoveFormatColumn.js +1 -1
  314. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +11 -5
  315. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +2 -2
  316. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +8 -6
  317. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +3 -4
  318. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +5 -19
  319. package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
  320. package/src/View/GridInfo/GridInfoPopup.js +6 -6
  321. package/src/View/Layout/LayoutRadioSelector.js +1 -1
  322. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +1 -1
  323. package/src/View/Layout/LayoutViewPanel.js +1 -1
  324. package/src/View/Layout/PivotDetailsPopoup.js +1 -1
  325. package/src/View/Layout/SaveLayoutButton.js +1 -1
  326. package/src/View/Layout/Wizard/LayoutWizard.js +2 -2
  327. package/src/View/Layout/Wizard/sections/AggregationsSection.js +4 -4
  328. package/src/View/Layout/Wizard/sections/ColumnsSection.js +5 -5
  329. package/src/View/Layout/Wizard/sections/FilterSection.js +2 -2
  330. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
  331. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
  332. package/src/View/Layout/Wizard/sections/SortSection.js +1 -1
  333. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  334. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
  335. package/src/View/Query/ExpandedQueryPopup.js +1 -1
  336. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  337. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -2
  338. package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
  339. package/src/View/SmartEdit/SmartEditViewPanel.js +1 -1
  340. package/src/View/StatusBar/StatusBarPanel.js +1 -1
  341. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +2 -2
  342. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +9 -0
  343. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +2 -2
  344. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.d.ts +5 -0
  345. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +26 -0
  346. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.d.ts +5 -0
  347. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +23 -0
  348. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.d.ts +8 -0
  349. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +25 -0
  350. package/src/View/StyledColumn/Wizard/{StyledColumnWizardStyleSection.d.ts → StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts} +2 -2
  351. package/src/View/StyledColumn/Wizard/{StyledColumnWizardStyleSection.js → StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js} +21 -19
  352. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.d.ts +1 -0
  353. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/index.js +4 -0
  354. package/src/View/TeamSharing/SharedEntityDependencies.js +1 -1
  355. package/src/View/Theme/ThemeStatusPanelPopover.js +1 -1
  356. package/src/agGrid/ActionColumnRenderer.js +1 -1
  357. package/src/agGrid/Adaptable.d.ts +5 -3
  358. package/src/agGrid/Adaptable.js +106 -121
  359. package/src/agGrid/FilterWrapper.js +3 -3
  360. package/src/agGrid/FloatingFilterWrapper.js +3 -3
  361. package/src/agGrid/PercentBarRenderer.js +6 -6
  362. package/src/agGrid/agGridHelper.js +3 -3
  363. package/src/agGrid/agGridMenuHelper.js +3 -3
  364. package/src/agGrid/weightedAverage.js +2 -2
  365. package/src/components/ExpressionEditor/BaseEditorInput.js +92 -7
  366. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -1
  367. package/src/components/OverlayTrigger/index.js +6 -2
  368. package/src/components/OverlayTrigger/utils.d.ts +1 -1
  369. package/src/components/OverlayTrigger/utils.js +4 -4
  370. package/src/components/icons/index.js +2 -0
  371. package/src/components/icons/open-in-new.d.ts +3 -0
  372. package/src/components/icons/open-in-new.js +7 -0
  373. package/src/env.js +1 -3
  374. package/src/metamodel/adaptable.metamodel.d.ts +30 -10
  375. package/src/metamodel/adaptable.metamodel.js +1 -1
  376. package/src/parser/src/parser.js +644 -382
  377. package/src/parser/src/types.d.ts +9 -0
  378. package/src/types.d.ts +3 -3
  379. package/version.d.ts +1 -1
  380. package/version.js +1 -1
  381. package/src/Api/InternalApi.d.ts +0 -155
  382. package/src/Api/InternalApi.js +0 -2
@@ -7,7 +7,13 @@ const AdaptablePredicate_1 = require("../../PredefinedConfig/Common/AdaptablePre
7
7
  const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
8
8
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/ArrayExtensions"));
9
9
  const StringExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/StringExtensions"));
10
+ const logDeprecation_1 = require("../../Utilities/logDeprecation");
11
+ const PredicateInternalApi_1 = require("../Internal/PredicateInternalApi");
10
12
  class PredicateApiImpl extends ApiBase_1.ApiBase {
13
+ constructor(adaptable) {
14
+ super(adaptable);
15
+ this.internalApi = new PredicateInternalApi_1.PredicateInternalApi(adaptable);
16
+ }
11
17
  getPredicateDefs() {
12
18
  return [...this.getSystemPredicateDefs(), ...this.getCustomPredicateDefs()];
13
19
  }
@@ -39,7 +45,6 @@ class PredicateApiImpl extends ApiBase_1.ApiBase {
39
45
  return predicateDef.hasOwnProperty('toString')
40
46
  ? predicateDef.toString({ inputs: predicate.Inputs })
41
47
  : predicateDef.label;
42
- // return predicateDef.label;
43
48
  }
44
49
  isValidPredicate(predicate) {
45
50
  if (!predicate) {
@@ -56,11 +61,15 @@ class PredicateApiImpl extends ApiBase_1.ApiBase {
56
61
  return false;
57
62
  }
58
63
  }
59
- if (['Values', 'ExcludeValues'].includes(predicate.PredicateId) &&
60
- ArrayExtensions_1.default.IsNullOrEmpty(predicate.Inputs)) {
61
- return false;
62
- }
63
- return true;
64
+ return !(['Values', 'ExcludeValues'].includes(predicate.PredicateId) &&
65
+ ArrayExtensions_1.default.IsNullOrEmpty(predicate.Inputs));
66
+ }
67
+ arePredicatesValid(predicates) {
68
+ (0, logDeprecation_1.logDeprecation)('PredicateApi', 'arePredicatesValid', 'isEveryPredicateValid');
69
+ return this.isEveryPredicateValid(predicates);
70
+ }
71
+ isEveryPredicateValid(predicates) {
72
+ return predicates.every((predicate) => this.isValidPredicate(predicate));
64
73
  }
65
74
  handlePredicate(predicate, params, defaultReturn) {
66
75
  var _a;
@@ -82,109 +91,35 @@ class PredicateApiImpl extends ApiBase_1.ApiBase {
82
91
  return false;
83
92
  }
84
93
  }
85
- getEqualityPredicateForDataType(dataType) {
86
- let predicateId;
87
- switch (dataType) {
88
- case 'Number':
89
- predicateId = 'Equals';
90
- break;
91
- case 'Date':
92
- predicateId = 'On';
93
- break;
94
- case 'String':
95
- predicateId = 'Is';
96
- break;
97
- default:
98
- predicateId = 'Equals';
99
- break;
94
+ handlePredicates(predicates, params, defaultReturn) {
95
+ if (predicates === undefined || predicates === null || (predicates === null || predicates === void 0 ? void 0 : predicates.length) === 0) {
96
+ return this.handlePredicate(undefined, params, defaultReturn);
100
97
  }
101
- return predicateId;
98
+ return predicates === null || predicates === void 0 ? void 0 : predicates.every((p) => this.handlePredicate(p, params, defaultReturn));
99
+ }
100
+ getEqualityPredicateForDataType(dataType) {
101
+ (0, logDeprecation_1.logDeprecationInternal)('PredicateApi', 'getEqualityPredicateForDataType');
102
+ return this.internalApi.getEqualityPredicateForDataType(dataType);
102
103
  }
103
104
  hasPredicateValues(predicate) {
104
- return (predicate === null || predicate === void 0 ? void 0 : predicate.PredicateId) === 'Values' || (predicate === null || predicate === void 0 ? void 0 : predicate.PredicateId) === 'ExcludeValues';
105
- }
106
- getSystemFilterPredicateIds() {
107
- // for now we still need to get the old ones in case they have been provided
108
- // however they have been deprectated and they are not populated by AdapTable
109
- const oldSystemFilterPredicates = this.getFilterOptions().systemFilters;
110
- if (oldSystemFilterPredicates) {
111
- return oldSystemFilterPredicates;
112
- }
113
- // if old list not provided use the new property in Predicate Options
114
- const systemFilterPredicates = this.getAdaptableQLOptions().predicateOptions.systemFilterPredicates;
115
- if (typeof systemFilterPredicates === 'function') {
116
- const systemPredicateContext = {
117
- adaptableApi: this.adaptable.api,
118
- systemPredicateDefs: this.getSystemPredicateDefs().filter((p) => p.moduleScope.includes('filter')),
119
- moduleScope: 'filter',
120
- };
121
- return systemFilterPredicates(systemPredicateContext);
122
- }
123
- return systemFilterPredicates;
105
+ (0, logDeprecation_1.logDeprecationInternal)('PredicateApi', 'hasPredicateValues');
106
+ return this.internalApi.hasPredicateValues(predicate);
124
107
  }
125
108
  getFilterPredicateDefs() {
126
- var _a;
127
- return [
128
- ...(_a = this.getSystemFilterPredicateIds()) === null || _a === void 0 ? void 0 : _a.map((predicateId) => this.getPredicateDefById(predicateId)),
129
- ...this.getCustomPredicateDefs(),
130
- ].filter((predicateDef) => predicateDef.moduleScope.includes('filter'));
131
- }
132
- getSystemAlertPredicateIds() {
133
- const systemAlertPredicates = this.getAdaptableQLOptions().predicateOptions.systemAlertPredicates;
134
- if (typeof systemAlertPredicates === 'function') {
135
- const systemPredicateContext = {
136
- adaptableApi: this.adaptable.api,
137
- systemPredicateDefs: this.getSystemPredicateDefs().filter((p) => p.moduleScope.includes('alert')),
138
- moduleScope: 'alert',
139
- };
140
- return systemAlertPredicates(systemPredicateContext);
141
- }
142
- return systemAlertPredicates;
109
+ (0, logDeprecation_1.logDeprecationInternal)('PredicateApi', 'getFilterPredicateDefs');
110
+ return this.internalApi.getFilterPredicateDefs();
143
111
  }
144
112
  getAlertPredicateDefs() {
145
- var _a;
146
- return [
147
- ...(_a = this.getSystemAlertPredicateIds()) === null || _a === void 0 ? void 0 : _a.map((predicateId) => this.getPredicateDefById(predicateId)),
148
- ...this.getCustomPredicateDefs(),
149
- ].filter((predicateDef) => predicateDef.moduleScope.includes('alert'));
150
- }
151
- getSystemFormatColumnPredicateIds() {
152
- const systemFormatColumnPredicates = this.getAdaptableQLOptions().predicateOptions.systemFormatColumnPredicates;
153
- if (typeof systemFormatColumnPredicates === 'function') {
154
- const systemPredicateContext = {
155
- adaptableApi: this.adaptable.api,
156
- systemPredicateDefs: this.getSystemPredicateDefs().filter((p) => p.moduleScope.includes('formatColumn')),
157
- moduleScope: 'formatColumn',
158
- };
159
- return systemFormatColumnPredicates(systemPredicateContext);
160
- }
161
- return systemFormatColumnPredicates;
113
+ (0, logDeprecation_1.logDeprecationInternal)('PredicateApi', 'getAlertPredicateDefs');
114
+ return this.internalApi.getAlertPredicateDefs();
162
115
  }
163
116
  getFormatColumnPredicateDefs() {
164
- var _a;
165
- return [
166
- ...(_a = this.getSystemFormatColumnPredicateIds()) === null || _a === void 0 ? void 0 : _a.map((predicateId) => this.getPredicateDefById(predicateId)),
167
- ...this.getCustomPredicateDefs(),
168
- ].filter((predicateDef) => predicateDef.moduleScope.includes('formatColumn'));
169
- }
170
- getSystemFlashingCellPredicateIds() {
171
- const systemFlashingCellPredicates = this.getAdaptableQLOptions().predicateOptions.systemFlashingCellPredicates;
172
- if (typeof systemFlashingCellPredicates === 'function') {
173
- const systemPredicateContext = {
174
- adaptableApi: this.adaptable.api,
175
- systemPredicateDefs: this.getSystemPredicateDefs().filter((p) => p.moduleScope.includes('flashingcell')),
176
- moduleScope: 'flashingcell',
177
- };
178
- return systemFlashingCellPredicates(systemPredicateContext);
179
- }
180
- return systemFlashingCellPredicates;
117
+ (0, logDeprecation_1.logDeprecationInternal)('PredicateApi', 'getFormatColumnPredicateDefs');
118
+ return this.internalApi.getFormatColumnPredicateDefs();
181
119
  }
182
120
  getFlashingCellPredicateDefs() {
183
- var _a;
184
- return [
185
- ...(_a = this.getSystemFlashingCellPredicateIds()) === null || _a === void 0 ? void 0 : _a.map((predicateId) => this.getPredicateDefById(predicateId)),
186
- ...this.getCustomPredicateDefs(),
187
- ].filter((predicateDef) => predicateDef.moduleScope.includes('flashingcell'));
121
+ (0, logDeprecation_1.logDeprecationInternal)('PredicateApi', 'getFlashingCellPredicateDefs');
122
+ return this.internalApi.getFlashingCellPredicateDefs();
188
123
  }
189
124
  }
190
125
  exports.PredicateApiImpl = PredicateApiImpl;
@@ -1,16 +1,21 @@
1
1
  import { QueryApi } from '../QueryApi';
2
- import { QueryState, NamedQuery } from '../../PredefinedConfig/QueryState';
2
+ import { NamedQuery, QueryState } from '../../PredefinedConfig/QueryState';
3
3
  import { ApiBase } from './ApiBase';
4
+ import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
5
+ import { QueryInternalApi } from '../Internal/QueryInternalApi';
4
6
  export declare class QueryApiImpl extends ApiBase implements QueryApi {
7
+ internalApi: QueryInternalApi;
8
+ constructor(adaptable: IAdaptable);
5
9
  getQueryState(): QueryState;
6
10
  getAllNamedQuery(): NamedQuery[];
11
+ getNamedQueries(): NamedQuery[];
7
12
  getNamedQueryByName(namedQueryName: string): NamedQuery | undefined;
8
13
  isValidNamedQueryName(namedQuery: NamedQuery): {
9
14
  valid: boolean;
10
15
  message: string;
11
16
  };
12
17
  showQueryPopup(): void;
13
- showExpandedQueryPopup(): void;
18
+ openQuerySettingsPanel(): void;
14
19
  setCurrentQuery(query: string): void;
15
20
  clearCurrentQuery(): void;
16
21
  getCurrentQuery(): string | undefined;
@@ -6,25 +6,33 @@ const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/
6
6
  const ApiBase_1 = require("./ApiBase");
7
7
  const StringExtensions_1 = require("../../Utilities/Extensions/StringExtensions");
8
8
  const QueryRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/QueryRedux"));
9
- const PopupRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/PopupRedux"));
10
- const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
11
9
  const windowFactory_1 = require("../../View/Components/Popups/WindowPopups/windowFactory");
10
+ const QueryInternalApi_1 = require("../Internal/QueryInternalApi");
11
+ const logDeprecation_1 = require("../../Utilities/logDeprecation");
12
12
  class QueryApiImpl extends ApiBase_1.ApiBase {
13
+ constructor(adaptable) {
14
+ super(adaptable);
15
+ this.internalApi = new QueryInternalApi_1.QueryInternalApi(adaptable);
16
+ }
13
17
  getQueryState() {
14
18
  return this.getAdaptableState().Query;
15
19
  }
16
20
  getAllNamedQuery() {
21
+ (0, logDeprecation_1.logDeprecation)('QueryApi', 'getAllNamedQuery', 'getNamedQueries');
22
+ return this.getNamedQueries();
23
+ }
24
+ getNamedQueries() {
17
25
  return this.getQueryState().NamedQueries || [];
18
26
  }
19
27
  getNamedQueryByName(namedQueryName) {
20
- return this.getAllNamedQuery().find((se) => se.Name == namedQueryName);
28
+ return this.getNamedQueries().find((se) => se.Name == namedQueryName);
21
29
  }
22
30
  isValidNamedQueryName(namedQuery) {
23
31
  if ((0, StringExtensions_1.IsNullOrEmptyOrWhiteSpace)(namedQuery === null || namedQuery === void 0 ? void 0 : namedQuery.Name)) {
24
32
  return { valid: false, message: 'Query name cannot be blank' };
25
33
  }
26
34
  // check that there is no other existing named query with the same name
27
- const duplicate = this.getAllNamedQuery().find((q) => q.Name === namedQuery.Name && q.Uuid !== namedQuery.Uuid);
35
+ const duplicate = this.getNamedQueries().find((q) => q.Name === namedQuery.Name && q.Uuid !== namedQuery.Uuid);
28
36
  if (duplicate) {
29
37
  return {
30
38
  valid: false,
@@ -34,15 +42,11 @@ class QueryApiImpl extends ApiBase_1.ApiBase {
34
42
  return { valid: true, message: '' };
35
43
  }
36
44
  showQueryPopup() {
37
- this.showModulePopup(ModuleConstants.QueryModuleId);
45
+ (0, logDeprecation_1.logDeprecation)('QueryApi', 'showQueryPopup', 'openQuerySettingsPanel');
46
+ this.openQuerySettingsPanel();
38
47
  }
39
- showExpandedQueryPopup() {
40
- this.dispatchAction(PopupRedux.PopupShowScreen(ModuleConstants.QueryModuleId, 'ExpandedQueryPopup', {
41
- source: 'Other',
42
- value: '',
43
- }, {
44
- footer: null,
45
- }));
48
+ openQuerySettingsPanel() {
49
+ this.showModulePopup(ModuleConstants.QueryModuleId);
46
50
  }
47
51
  setCurrentQuery(query) {
48
52
  this.dispatchAction(QueryRedux.QueryRun(query));
@@ -54,28 +58,12 @@ class QueryApiImpl extends ApiBase_1.ApiBase {
54
58
  return this.getQueryState().CurrentQuery;
55
59
  }
56
60
  getReferencedNamedQueryNames(expression = '') {
57
- try {
58
- return this.getAdaptableApi()
59
- .internalApi.getQueryLanguageService()
60
- .getNamedQueryNamesFromExpression(expression);
61
- }
62
- catch (error) {
63
- // defensive programing, this should happen only if someone botched the predefined configs
64
- (0, LoggingHelper_1.LogAdaptableWarning)(`QueryApi.getReferencedNamedQueryNames received an invalid expression: ${expression}
65
- Error: ${error}`);
66
- return [];
67
- }
61
+ (0, logDeprecation_1.logDeprecationInternal)('QueryApi', 'getReferencedNamedQueryNames');
62
+ return this.internalApi.getReferencedNamedQueryNames(expression);
68
63
  }
69
64
  getNamedQueryModuleReferences(namedQueryName) {
70
- const references = [];
71
- this.adaptable.adaptableModules.forEach((module) => {
72
- if (module
73
- .getModuleNamedQueryReferences()
74
- .some((moduleReference) => moduleReference === namedQueryName)) {
75
- references.push(module.moduleInfo.FriendlyName);
76
- }
77
- });
78
- return references;
65
+ (0, logDeprecation_1.logDeprecationInternal)('QueryApi', 'getNamedQueryModuleReferences');
66
+ return this.internalApi.getNamedQueryModuleReferences(namedQueryName);
79
67
  }
80
68
  expandCurrentQuery(query) {
81
69
  const preparedQuery = query !== null && query !== void 0 ? query : this.getCurrentQuery();
@@ -84,18 +72,8 @@ class QueryApiImpl extends ApiBase_1.ApiBase {
84
72
  });
85
73
  }
86
74
  fireQueryRunEvent() {
87
- if (this.adaptable.isLive) {
88
- const currentQuery = this.getCurrentQuery();
89
- const adaptableApi = this.getAdaptableApi();
90
- const queryRunInfo = {
91
- currentQuery,
92
- queryAST: currentQuery
93
- ? adaptableApi.queryLanguageApi.getASTForExpression(currentQuery)
94
- : null,
95
- adaptableApi: adaptableApi,
96
- };
97
- adaptableApi.eventApi.emit('QueryRun', queryRunInfo);
98
- }
75
+ (0, logDeprecation_1.logDeprecationInternal)('QueryApi', 'fireQueryRunEvent');
76
+ this.internalApi.fireQueryRunEvent();
99
77
  }
100
78
  }
101
79
  exports.QueryApiImpl = QueryApiImpl;
@@ -3,7 +3,11 @@ import { AdaptableModule } from '../../PredefinedConfig/Common/Types';
3
3
  import { QueryLanguageApi } from '../QueryLanguageApi';
4
4
  import { AdaptableQuery } from '../../PredefinedConfig/Common/AdaptableQuery';
5
5
  import { AdaptableColumnBase } from '../../PredefinedConfig/Common/AdaptableColumn';
6
+ import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
7
+ import { QueryLanguageInternalApi } from '../Internal/QueryLanguageInternalApi';
6
8
  export declare class QueryLanguageApiImpl extends ApiBase implements QueryLanguageApi {
9
+ internalApi: QueryLanguageInternalApi;
10
+ constructor(adaptable: IAdaptable);
7
11
  isValidBooleanExpression(query: string, module: AdaptableModule, validationErrorMessage?: string): boolean;
8
12
  isValidObservableExpression(expression: string, module: AdaptableModule, validationErrorMessage?: string): boolean;
9
13
  isValidAggregatedBooleanExpression(expression: string, module: AdaptableModule, validationErrorMessage?: string): boolean;
@@ -5,7 +5,12 @@ const tslib_1 = require("tslib");
5
5
  const ApiBase_1 = require("./ApiBase");
6
6
  const parser = tslib_1.__importStar(require("../../parser/src"));
7
7
  const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
8
+ const QueryLanguageInternalApi_1 = require("../Internal/QueryLanguageInternalApi");
8
9
  class QueryLanguageApiImpl extends ApiBase_1.ApiBase {
10
+ constructor(adaptable) {
11
+ super(adaptable);
12
+ this.internalApi = new QueryLanguageInternalApi_1.QueryLanguageInternalApi(adaptable);
13
+ }
9
14
  isValidBooleanExpression(query, module, validationErrorMessage) {
10
15
  const { isValid, errorMessage } = this.adaptable.api.internalApi
11
16
  .getQueryLanguageService()
@@ -10,4 +10,5 @@ export declare class QuickSearchApiImpl extends ApiBase implements QuickSearchAp
10
10
  getQuickSearchStyle(): AdaptableStyle;
11
11
  setQuickSearchStyle(style: AdaptableStyle): void;
12
12
  showQuickSearchPopup(): void;
13
+ openQuickSearchSettingsPanel(): void;
13
14
  }
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const QuickSearchRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/QuickSearchRedux"));
6
6
  const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
7
7
  const ApiBase_1 = require("./ApiBase");
8
+ const logDeprecation_1 = require("../../Utilities/logDeprecation");
8
9
  class QuickSearchApiImpl extends ApiBase_1.ApiBase {
9
10
  getQuickSearchState() {
10
11
  return this.getAdaptableState().QuickSearch;
@@ -25,6 +26,10 @@ class QuickSearchApiImpl extends ApiBase_1.ApiBase {
25
26
  this.dispatchAction(QuickSearchRedux.QuickSearchSetStyle(style));
26
27
  }
27
28
  showQuickSearchPopup() {
29
+ (0, logDeprecation_1.logDeprecation)('QuickSearchApi', 'showQuickSearchPopup', 'openQuickSearchSettingsPanel');
30
+ this.openQuickSearchSettingsPanel();
31
+ }
32
+ openQuickSearchSettingsPanel() {
28
33
  this.showModulePopup(ModuleConstants.QuickSearchModuleId);
29
34
  }
30
35
  }
@@ -9,42 +9,68 @@ import { ReminderSchedule, ScheduleState } from '../../PredefinedConfig/Schedule
9
9
  export declare class ScheduleApiImpl extends ApiBase implements ScheduleApi {
10
10
  getScheduleState(): ScheduleState;
11
11
  getAllSchedule(): BaseSchedule[];
12
+ getSchedules(): BaseSchedule[];
12
13
  getAllReminderSchedule(config?: LayoutAssociatedObjectLoadConfig): ReminderSchedule[];
14
+ getReminderSchedules(config?: {
15
+ includeLayoutNotAssociatedObjects?: boolean;
16
+ }): ReminderSchedule[];
13
17
  getScheduleById(id: BaseSchedule['Uuid']): BaseSchedule;
14
18
  getAllActiveReminderSchedule(): ReminderSchedule[];
19
+ getActiveReminderSchedules(): ReminderSchedule[];
15
20
  getAllSuspendedReminderSchedule(): ReminderSchedule[];
21
+ getSuspendedReminderSchedules(): ReminderSchedule[];
16
22
  addReminderSchedule(schedule: ReminderSchedule): ReminderSchedule;
17
23
  deleteReminderSchedule(schedule: ReminderSchedule): void;
18
24
  editReminderSchedule(schedule: ReminderSchedule): ReminderSchedule;
19
25
  suspendReminderSchedule(schedule: ReminderSchedule): ReminderSchedule;
20
26
  unSuspendReminderSchedule(schedule: ReminderSchedule): ReminderSchedule;
21
27
  getAllReportSchedule(config?: LayoutAssociatedObjectLoadConfig): ReportSchedule[];
28
+ getReportSchedules(config?: {
29
+ includeLayoutNotAssociatedObjects?: boolean;
30
+ }): ReportSchedule[];
22
31
  getAllActiveReportSchedule(): ReportSchedule[];
32
+ getActiveReportSchedules(): ReportSchedule[];
23
33
  getAllSuspendedReportSchedule(): ReportSchedule[];
34
+ getSuspendedReportSchedules(): ReportSchedule[];
24
35
  addReportSchedule(schedule: ReportSchedule): ReportSchedule;
25
36
  editReportSchedule(schedule: ReportSchedule): ReportSchedule;
26
37
  deleteReportSchedule(schedule: ReportSchedule): void;
27
38
  suspendReportSchedule(schedule: ReportSchedule): ReportSchedule;
28
39
  unSuspendReportSchedule(schedule: ReportSchedule): ReportSchedule;
29
40
  getAllIPushPullSchedule(config?: LayoutAssociatedObjectLoadConfig): IPushPullSchedule[];
41
+ getIPushPullSchedules(config?: {
42
+ includeLayoutNotAssociatedObjects?: boolean;
43
+ }): IPushPullSchedule[];
30
44
  getAllActiveIPushPullSchedule(): IPushPullSchedule[];
45
+ getActiveIPushPullSchedules(): IPushPullSchedule[];
31
46
  getAllSuspendedIPushPullSchedule(): IPushPullSchedule[];
47
+ getSuspendedIPushPullSchedules(): IPushPullSchedule[];
32
48
  addIPushPullSchedule(schedule: IPushPullSchedule): IPushPullSchedule;
33
49
  editIPushPullSchedule(schedule: IPushPullSchedule): IPushPullSchedule;
34
50
  deleteIPushPullSchedule(schedule: IPushPullSchedule): void;
35
51
  suspendIPushPullSchedule(schedule: IPushPullSchedule): IPushPullSchedule;
36
52
  unSuspendIPushPullSchedule(schedule: IPushPullSchedule): IPushPullSchedule;
37
53
  getAllGlue42Schedule(config?: LayoutAssociatedObjectLoadConfig): Glue42Schedule[];
54
+ getGlue42Schedules(config?: {
55
+ includeLayoutNotAssociatedObjects?: boolean;
56
+ }): Glue42Schedule[];
38
57
  getAllActiveGlue42Schedule(): Glue42Schedule[];
58
+ getActiveGlue42Schedules(): Glue42Schedule[];
39
59
  getAllSuspendedGlue42Schedule(): Glue42Schedule[];
60
+ getSuspendedGlue42Schedules(): Glue42Schedule[];
40
61
  addGlue42Schedule(schedule: Glue42Schedule): Glue42Schedule;
41
62
  editGlue42Schedule(schedule: Glue42Schedule): Glue42Schedule;
42
63
  deleteGlue42Schedule(schedule: Glue42Schedule): void;
43
64
  suspendGlue42Schedule(schedule: Glue42Schedule): Glue42Schedule;
44
65
  unSuspendGlue42Schedule(schedule: Glue42Schedule): Glue42Schedule;
45
66
  getAllOpenFinSchedule(config?: LayoutAssociatedObjectLoadConfig): OpenFinSchedule[];
67
+ getOpenFinSchedules(config?: {
68
+ includeLayoutNotAssociatedObjects?: boolean;
69
+ }): OpenFinSchedule[];
46
70
  getAllActiveOpenFinSchedule(): OpenFinSchedule[];
71
+ getActiveOpenFinSchedules(): OpenFinSchedule[];
47
72
  getAllSuspendedOpenFinSchedule(): OpenFinSchedule[];
73
+ getSuspendedOpenFinSchedules(): OpenFinSchedule[];
48
74
  addOpenFinSchedule(schedule: OpenFinSchedule): OpenFinSchedule;
49
75
  editOpenFinSchedule(schedule: OpenFinSchedule): OpenFinSchedule;
50
76
  deleteOpenFinSchedule(schedule: OpenFinSchedule): void;
@@ -52,4 +78,5 @@ export declare class ScheduleApiImpl extends ApiBase implements ScheduleApi {
52
78
  unSuspendOpenFinSchedule(schedule: OpenFinSchedule): OpenFinSchedule;
53
79
  applySchedule(schedule: BaseSchedule, scheduleType: 'Report' | 'ipushpull' | 'Glue42' | 'Reminder' | 'OpenFin'): void;
54
80
  showSchedulePopup(): void;
81
+ openScheduleSettingsPanel(): void;
55
82
  }
@@ -5,31 +5,48 @@ const tslib_1 = require("tslib");
5
5
  const ApiBase_1 = require("./ApiBase");
6
6
  const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
7
7
  const ScheduleRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/ScheduleRedux"));
8
+ const logDeprecation_1 = require("../../Utilities/logDeprecation");
8
9
  class ScheduleApiImpl extends ApiBase_1.ApiBase {
9
10
  getScheduleState() {
10
11
  return this.getAdaptableState().Schedule;
11
12
  }
12
13
  getAllSchedule() {
14
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllSchedule', 'getSchedules');
15
+ return this.getSchedules();
16
+ }
17
+ getSchedules() {
13
18
  let allSchedules = [];
14
- allSchedules.push(...this.getAllReminderSchedule());
15
- allSchedules.push(...this.getAllReportSchedule());
16
- allSchedules.push(...this.getAllIPushPullSchedule());
17
- allSchedules.push(...this.getAllGlue42Schedule());
18
- allSchedules.push(...this.getAllOpenFinSchedule());
19
+ allSchedules.push(...this.getReminderSchedules());
20
+ allSchedules.push(...this.getReportSchedules());
21
+ allSchedules.push(...this.getIPushPullSchedules());
22
+ allSchedules.push(...this.getGlue42Schedules());
23
+ allSchedules.push(...this.getOpenFinSchedules());
19
24
  return allSchedules;
20
25
  }
21
26
  getAllReminderSchedule(config) {
27
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllReminderSchedule', 'getReminderSchedules');
28
+ return this.getReminderSchedules(config);
29
+ }
30
+ getReminderSchedules(config) {
22
31
  var _a;
23
32
  return ((_a = this.handleLayoutAssociatedObjects(this.getScheduleState().Reminders, 'Schedule', config)) !== null && _a !== void 0 ? _a : []);
24
33
  }
25
34
  getScheduleById(id) {
26
- return this.getAllSchedule().find((schedule) => (schedule === null || schedule === void 0 ? void 0 : schedule.Uuid) === id);
35
+ return this.getSchedules().find((schedule) => (schedule === null || schedule === void 0 ? void 0 : schedule.Uuid) === id);
27
36
  }
28
37
  getAllActiveReminderSchedule() {
29
- return this.getAllReminderSchedule().filter((schedule) => !schedule.IsSuspended);
38
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllActiveReminderSchedule', 'getActiveReminderSchedules');
39
+ return this.getActiveReminderSchedules();
40
+ }
41
+ getActiveReminderSchedules() {
42
+ return this.getReminderSchedules().filter((schedule) => !schedule.IsSuspended);
30
43
  }
31
44
  getAllSuspendedReminderSchedule() {
32
- return this.getAllReminderSchedule().filter((schedule) => schedule.IsSuspended);
45
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllSuspendedReminderSchedule', 'getSuspendedReminderSchedules');
46
+ return this.getSuspendedReminderSchedules();
47
+ }
48
+ getSuspendedReminderSchedules() {
49
+ return this.getReminderSchedules().filter((schedule) => schedule.IsSuspended);
33
50
  }
34
51
  addReminderSchedule(schedule) {
35
52
  this.dispatchAction(ScheduleRedux.ReminderScheduleAdd(schedule));
@@ -51,14 +68,26 @@ class ScheduleApiImpl extends ApiBase_1.ApiBase {
51
68
  return this.getScheduleById(schedule.Uuid);
52
69
  }
53
70
  getAllReportSchedule(config) {
71
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllReportSchedule', 'getReportSchedules');
72
+ return this.getReportSchedules();
73
+ }
74
+ getReportSchedules(config) {
54
75
  var _a;
55
76
  return ((_a = this.handleLayoutAssociatedObjects(this.adaptable.api.exportApi.getReportSchedules(), 'Schedule', config)) !== null && _a !== void 0 ? _a : []);
56
77
  }
57
78
  getAllActiveReportSchedule() {
58
- return this.getAllReportSchedule().filter((schedule) => !schedule.IsSuspended);
79
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllActiveReportSchedule', 'getActiveReportSchedules');
80
+ return this.getActiveReportSchedules();
81
+ }
82
+ getActiveReportSchedules() {
83
+ return this.getReportSchedules().filter((schedule) => !schedule.IsSuspended);
59
84
  }
60
85
  getAllSuspendedReportSchedule() {
61
- return this.getAllReportSchedule().filter((schedule) => schedule.IsSuspended);
86
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllSuspendedReportSchedule', 'getSuspendedReportSchedules');
87
+ return this.getSuspendedReportSchedules();
88
+ }
89
+ getSuspendedReportSchedules() {
90
+ return this.getReportSchedules().filter((schedule) => schedule.IsSuspended);
62
91
  }
63
92
  addReportSchedule(schedule) {
64
93
  this.dispatchAction(ScheduleRedux.ReportScheduleAdd(schedule));
@@ -80,15 +109,27 @@ class ScheduleApiImpl extends ApiBase_1.ApiBase {
80
109
  return this.getScheduleById(schedule.Uuid);
81
110
  }
82
111
  getAllIPushPullSchedule(config) {
112
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllIPushPullSchedule', 'getIPushPullSchedules');
113
+ return this.getIPushPullSchedules();
114
+ }
115
+ getIPushPullSchedules(config) {
83
116
  var _a;
84
117
  const ippApi = this.adaptable.api.pluginsApi.getipushpullPluginApi();
85
118
  return ((_a = this.handleLayoutAssociatedObjects(ippApi === null || ippApi === void 0 ? void 0 : ippApi.getIPushPullSchedules(), 'Schedule', config)) !== null && _a !== void 0 ? _a : []);
86
119
  }
87
120
  getAllActiveIPushPullSchedule() {
88
- return this.getAllIPushPullSchedule().filter((schedule) => !schedule.IsSuspended);
121
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllActiveIPushPullSchedule', 'getActiveIPushPullSchedules');
122
+ return this.getActiveIPushPullSchedules();
123
+ }
124
+ getActiveIPushPullSchedules() {
125
+ return this.getIPushPullSchedules().filter((schedule) => !schedule.IsSuspended);
89
126
  }
90
127
  getAllSuspendedIPushPullSchedule() {
91
- return this.getAllIPushPullSchedule().filter((schedule) => schedule.IsSuspended);
128
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllSuspendedIPushPullSchedule', 'getSuspendedIPushPullSchedules');
129
+ return this.getSuspendedIPushPullSchedules();
130
+ }
131
+ getSuspendedIPushPullSchedules() {
132
+ return this.getIPushPullSchedules().filter((schedule) => schedule.IsSuspended);
92
133
  }
93
134
  addIPushPullSchedule(schedule) {
94
135
  this.dispatchAction(ScheduleRedux.IPushPullScheduleAdd(schedule));
@@ -110,15 +151,27 @@ class ScheduleApiImpl extends ApiBase_1.ApiBase {
110
151
  return this.getScheduleById(schedule.Uuid);
111
152
  }
112
153
  getAllGlue42Schedule(config) {
154
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllGlue42Schedule', 'getGlue42Schedules');
155
+ return this.getGlue42Schedules();
156
+ }
157
+ getGlue42Schedules(config) {
113
158
  var _a;
114
159
  const glue42Api = this.adaptable.api.pluginsApi.getGlue42PluginApi();
115
160
  return ((_a = this.handleLayoutAssociatedObjects(glue42Api === null || glue42Api === void 0 ? void 0 : glue42Api.getGlue42Schedules(), 'Schedule', config)) !== null && _a !== void 0 ? _a : []);
116
161
  }
117
162
  getAllActiveGlue42Schedule() {
118
- return this.getAllGlue42Schedule().filter((schedule) => !schedule.IsSuspended);
163
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllActiveGlue42Schedule', 'getActiveGlue42Schedules');
164
+ return this.getActiveGlue42Schedules();
165
+ }
166
+ getActiveGlue42Schedules() {
167
+ return this.getGlue42Schedules().filter((schedule) => !schedule.IsSuspended);
119
168
  }
120
169
  getAllSuspendedGlue42Schedule() {
121
- return this.getAllGlue42Schedule().filter((schedule) => schedule.IsSuspended);
170
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllSuspendedGlue42Schedule', 'getSuspendedGlue42Schedules');
171
+ return this.getSuspendedGlue42Schedules();
172
+ }
173
+ getSuspendedGlue42Schedules() {
174
+ return this.getGlue42Schedules().filter((schedule) => schedule.IsSuspended);
122
175
  }
123
176
  addGlue42Schedule(schedule) {
124
177
  this.dispatchAction(ScheduleRedux.Glue42ScheduleAdd(schedule));
@@ -140,15 +193,27 @@ class ScheduleApiImpl extends ApiBase_1.ApiBase {
140
193
  return this.getScheduleById(schedule.Uuid);
141
194
  }
142
195
  getAllOpenFinSchedule(config) {
196
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllOpenFinSchedule', 'getOpenFinSchedules');
197
+ return this.getOpenFinSchedules();
198
+ }
199
+ getOpenFinSchedules(config) {
143
200
  var _a;
144
201
  const openFinApi = this.adaptable.api.pluginsApi.getOpenFinPluginApi();
145
202
  return ((_a = this.handleLayoutAssociatedObjects(openFinApi === null || openFinApi === void 0 ? void 0 : openFinApi.getOpenFinSchedules(), 'Schedule', config)) !== null && _a !== void 0 ? _a : []);
146
203
  }
147
204
  getAllActiveOpenFinSchedule() {
148
- return this.getAllOpenFinSchedule().filter((schedule) => !schedule.IsSuspended);
205
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllActiveOpenFinSchedule', 'getActiveOpenFinSchedules');
206
+ return this.getActiveOpenFinSchedules();
207
+ }
208
+ getActiveOpenFinSchedules() {
209
+ return this.getOpenFinSchedules().filter((schedule) => !schedule.IsSuspended);
149
210
  }
150
211
  getAllSuspendedOpenFinSchedule() {
151
- return this.getAllOpenFinSchedule().filter((schedule) => schedule.IsSuspended);
212
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'getAllSuspendedOpenFinSchedule', 'getSuspendedOpenFinSchedules');
213
+ return this.getSuspendedOpenFinSchedules();
214
+ }
215
+ getSuspendedOpenFinSchedules() {
216
+ return this.getOpenFinSchedules().filter((schedule) => schedule.IsSuspended);
152
217
  }
153
218
  addOpenFinSchedule(schedule) {
154
219
  this.dispatchAction(ScheduleRedux.OpenFinScheduleAdd(schedule));
@@ -186,7 +251,7 @@ class ScheduleApiImpl extends ApiBase_1.ApiBase {
186
251
  Scope: undefined,
187
252
  },
188
253
  };
189
- this.getAdaptableApi().alertApi.displayAlert(alert);
254
+ this.getAdaptableApi().alertApi.showAdaptableAlert(alert);
190
255
  if (reminderSchedule.DisplaySystemStatusMessage) {
191
256
  this.getAdaptableApi().systemStatusApi.setSystemStatus(reminderSchedule.Header, reminderSchedule.MessageType, reminderSchedule.Message);
192
257
  }
@@ -219,6 +284,10 @@ class ScheduleApiImpl extends ApiBase_1.ApiBase {
219
284
  this.dispatchAction(ScheduleRedux.ScheduleJobRun(schedule, scheduleType));
220
285
  }
221
286
  showSchedulePopup() {
287
+ (0, logDeprecation_1.logDeprecation)('ScheduleApi', 'showSchedulePopup', 'openScheduleSettingsPanel');
288
+ this.openScheduleSettingsPanel();
289
+ }
290
+ openScheduleSettingsPanel() {
222
291
  this.showModulePopup(ModuleConstants.ScheduleModuleId);
223
292
  }
224
293
  }