@adaptabletools/adaptable 11.3.0 → 12.0.0-canary.2

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 (311) hide show
  1. package/base.css +568 -273
  2. package/bundle.cjs.js +114 -114
  3. package/index.css +642 -270
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -0
  8. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -1
  9. package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
  10. package/src/AdaptableOptions/{FormatColumnOptions.js → ActionOptions.js} +0 -0
  11. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
  12. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -10
  13. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
  14. package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
  15. package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
  16. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ColumnOptions.js} +0 -0
  17. package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
  18. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
  19. package/src/AdaptableOptions/EditOptions.d.ts +6 -7
  20. package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
  21. package/src/AdaptableOptions/ExportOptions.d.ts +9 -8
  22. package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
  23. package/src/AdaptableOptions/GeneralOptions.d.ts +25 -23
  24. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
  25. package/src/{Api/DataSourceApi.js → AdaptableOptions/MasterDetailPluginOptions.js} +0 -0
  26. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
  27. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
  28. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +88 -57
  29. package/src/Api/AdaptableApi.d.ts +6 -3
  30. package/src/Api/ColumnApi.d.ts +9 -4
  31. package/src/Api/ConditionalStyleApi.d.ts +10 -0
  32. package/src/Api/ConfigApi.d.ts +0 -12
  33. package/src/Api/DashboardApi.d.ts +6 -19
  34. package/src/Api/DataSetApi.d.ts +40 -0
  35. package/src/{PredefinedConfig/DataSourceState.js → Api/DataSetApi.js} +0 -0
  36. package/src/Api/EventApi.d.ts +26 -1
  37. package/src/Api/Events/DataSetChanged.d.ts +5 -0
  38. package/src/{PredefinedConfig/FilterState.js → Api/Events/DataSetChanged.js} +0 -0
  39. package/src/Api/Events/SearchChanged.d.ts +4 -5
  40. package/src/Api/ExportApi.d.ts +2 -2
  41. package/src/Api/FilterApi.d.ts +28 -36
  42. package/src/Api/GridApi.d.ts +1 -1
  43. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  44. package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
  45. package/src/Api/Implementation/AlertApiImpl.js +5 -1
  46. package/src/Api/Implementation/ApiBase.d.ts +3 -0
  47. package/src/Api/Implementation/ApiBase.js +6 -0
  48. package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -4
  49. package/src/Api/Implementation/ColumnApiImpl.js +17 -16
  50. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
  51. package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
  52. package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
  53. package/src/Api/Implementation/ConfigApiImpl.js +2 -24
  54. package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
  55. package/src/Api/Implementation/DashboardApiImpl.js +5 -29
  56. package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
  57. package/src/Api/Implementation/DataSetApiImpl.js +42 -0
  58. package/src/Api/Implementation/EventApiImpl.js +1 -0
  59. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
  60. package/src/Api/Implementation/FilterApiImpl.d.ts +11 -11
  61. package/src/Api/Implementation/FilterApiImpl.js +59 -72
  62. package/src/Api/Implementation/FormatColumnApiImpl.js +2 -2
  63. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  64. package/src/Api/Implementation/GridApiImpl.js +7 -3
  65. package/src/Api/Implementation/InternalApiImpl.d.ts +3 -2
  66. package/src/Api/Implementation/InternalApiImpl.js +14 -3
  67. package/src/Api/Implementation/LayoutApiImpl.d.ts +3 -0
  68. package/src/Api/Implementation/LayoutApiImpl.js +20 -0
  69. package/src/Api/Implementation/PredicateApiImpl.d.ts +2 -0
  70. package/src/Api/Implementation/PredicateApiImpl.js +19 -1
  71. package/src/Api/Implementation/SmartEditApiImpl.d.ts +3 -1
  72. package/src/Api/Implementation/SmartEditApiImpl.js +6 -0
  73. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
  74. package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
  75. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
  76. package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
  77. package/src/Api/InternalApi.d.ts +3 -2
  78. package/src/Api/LayoutApi.d.ts +16 -0
  79. package/src/Api/PredicateApi.d.ts +7 -0
  80. package/src/Api/SmartEditApi.d.ts +8 -2
  81. package/src/Api/TeamSharingApi.d.ts +18 -5
  82. package/src/Api/UserInterfaceApi.d.ts +4 -4
  83. package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
  84. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
  85. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
  86. package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
  87. package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
  88. package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
  89. package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
  90. package/src/PredefinedConfig/Common/Enums.js +1 -1
  91. package/src/PredefinedConfig/Common/FormContext.d.ts +8 -0
  92. package/src/PredefinedConfig/Common/FormContext.js +2 -0
  93. package/src/PredefinedConfig/Common/Types.d.ts +6 -5
  94. package/src/PredefinedConfig/Common/Types.js +2 -3
  95. package/src/PredefinedConfig/LayoutState.d.ts +5 -0
  96. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
  97. package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
  98. package/src/PredefinedConfig/SystemState.d.ts +3 -0
  99. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
  100. package/src/Redux/ActionsReducers/LayoutRedux.js +134 -1
  101. package/src/Redux/ActionsReducers/PopupRedux.d.ts +3 -2
  102. package/src/Redux/ActionsReducers/SystemRedux.d.ts +22 -0
  103. package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
  104. package/src/Redux/Store/AdaptableStore.js +37 -39
  105. package/src/Strategy/AdaptableModuleBase.js +1 -2
  106. package/src/Strategy/AlertModule.d.ts +11 -0
  107. package/src/Strategy/AlertModule.js +14 -0
  108. package/src/Strategy/BulkUpdateModule.js +3 -4
  109. package/src/Strategy/CellSummaryModule.d.ts +3 -0
  110. package/src/Strategy/CellSummaryModule.js +29 -16
  111. package/src/Strategy/DataSetModule.d.ts +25 -0
  112. package/src/Strategy/DataSetModule.js +65 -0
  113. package/src/Strategy/ExportModule.js +6 -1
  114. package/src/Strategy/FilterModule.d.ts +7 -11
  115. package/src/Strategy/FilterModule.js +26 -20
  116. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  117. package/src/Strategy/FlashingCellModule.js +2 -2
  118. package/src/Strategy/Interface/IModule.d.ts +3 -1
  119. package/src/Strategy/LayoutModule.js +25 -2
  120. package/src/Strategy/PlusMinusModule.js +1 -4
  121. package/src/Strategy/SmartEditModule.js +3 -3
  122. package/src/Strategy/StatusBarModule.js +1 -3
  123. package/src/Strategy/TeamSharingModule.js +1 -1
  124. package/src/Strategy/ToolPanelModule.js +1 -4
  125. package/src/Utilities/Constants/GeneralConstants.d.ts +8 -2
  126. package/src/Utilities/Constants/GeneralConstants.js +8 -2
  127. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
  128. package/src/Utilities/Constants/ModuleConstants.js +2 -2
  129. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +17 -15
  130. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
  131. package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
  132. package/src/Utilities/ObjectFactory.d.ts +3 -6
  133. package/src/Utilities/ObjectFactory.js +3 -7
  134. package/src/Utilities/Services/CalculatedColumnExpressionService.js +6 -7
  135. package/src/Utilities/Services/EntitlementService.js +7 -1
  136. package/src/Utilities/Services/ModuleService.js +1 -1
  137. package/src/Utilities/Services/ReportService.js +2 -3
  138. package/src/Utilities/Services/RowEditService.d.ts +1 -0
  139. package/src/Utilities/Services/RowEditService.js +34 -2
  140. package/src/Utilities/Services/TeamSharingService.js +4 -4
  141. package/src/View/AdaptablePopover/index.d.ts +1 -0
  142. package/src/View/AdaptablePopover/index.js +5 -6
  143. package/src/View/AdaptableView.js +1 -1
  144. package/src/View/AdaptableViewFactory.js +2 -2
  145. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +8 -3
  146. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +3 -2
  147. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -2
  148. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +18 -0
  149. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +87 -0
  150. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.d.ts +18 -0
  151. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +16 -0
  152. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.d.ts +2 -9
  153. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +2 -75
  154. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.d.ts +3 -1
  155. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +9 -4
  156. package/src/View/AdaptableWizardView/Utils.d.ts +1 -0
  157. package/src/View/AdaptableWizardView/Utils.js +24 -0
  158. package/src/View/AdaptableWizardView/Wizard.d.ts +54 -0
  159. package/src/View/AdaptableWizardView/Wizard.js +98 -0
  160. package/src/View/AdaptableWizardView/index.d.ts +1 -22
  161. package/src/View/AdaptableWizardView/index.js +2 -103
  162. package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
  163. package/src/View/Alert/ActiveAlertsPanel.js +15 -0
  164. package/src/View/Alert/AlertStatusSubPanel.js +3 -8
  165. package/src/View/Alert/AlertViewPanel.js +2 -2
  166. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +1 -1
  167. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +3 -3
  168. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -1
  169. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
  170. package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -3
  171. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
  172. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -4
  173. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +5 -6
  174. package/src/View/CellSummary/CellSummaryDetails.js +4 -4
  175. package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
  176. package/src/View/CellSummary/CellSummaryPopover.js +3 -6
  177. package/src/View/CellSummary/CellSummaryPopup.js +8 -0
  178. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
  179. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
  180. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
  181. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
  182. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
  183. package/src/View/Components/ExternalRenderer.d.ts +3 -6
  184. package/src/View/Components/ExternalRenderer.js +5 -5
  185. package/src/View/Components/FilterForm/FilterForm.d.ts +1 -1
  186. package/src/View/Components/FilterForm/FilterForm.js +10 -8
  187. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
  188. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
  189. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  190. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
  191. package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
  192. package/src/View/Components/Popups/AdaptableToaster.js +29 -9
  193. package/src/View/Components/PreviewResultsPanel.js +3 -3
  194. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
  195. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
  196. package/src/View/Components/WizardSummaryPage.js +2 -2
  197. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +1 -1
  198. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +1 -1
  199. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +1 -1
  200. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +1 -1
  201. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
  202. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
  203. package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
  204. package/src/View/Dashboard/CustomDashboardButton.js +47 -0
  205. package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
  206. package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
  207. package/src/View/Dashboard/Dashboard.d.ts +1 -0
  208. package/src/View/Dashboard/Dashboard.js +8 -34
  209. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
  210. package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
  211. package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
  212. package/src/View/DataSet/DataSetSelector.d.ts +7 -0
  213. package/src/View/DataSet/DataSetSelector.js +18 -0
  214. package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
  215. package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
  216. package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
  217. package/src/View/DataSet/DataSetViewPanel.js +58 -0
  218. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +1 -1
  219. package/src/View/Export/Wizard/ReportNameWizardSection.js +1 -1
  220. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  221. package/src/View/Filter/ActiveFiltersPanel.js +1 -1
  222. package/src/View/Filter/FilterSummary.d.ts +5 -5
  223. package/src/View/Filter/FilterSummary.js +5 -4
  224. package/src/View/Filter/FilterViewPanel.d.ts +4 -4
  225. package/src/View/Filter/FilterViewPanel.js +10 -13
  226. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
  227. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +1 -1
  228. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +1 -1
  229. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +1 -1
  230. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
  231. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
  232. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +1 -1
  233. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
  234. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +5 -6
  235. package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
  236. package/src/View/GridInfo/GridInfoPopup.js +1 -1
  237. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
  238. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  239. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  240. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +2 -2
  241. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +1 -1
  242. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
  243. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  244. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
  245. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +1 -1
  246. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +1 -1
  247. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +1 -1
  248. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
  249. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +1 -1
  250. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +2 -2
  251. package/src/View/SmartEdit/SmartEditPopup.js +2 -2
  252. package/src/View/SmartEdit/SmartEditViewPanel.js +2 -2
  253. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  254. package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
  255. package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
  256. package/src/View/StatusBar/StatusBarPanel.js +5 -4
  257. package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
  258. package/src/View/UIHelper.d.ts +4 -4
  259. package/src/View/UIHelper.js +10 -10
  260. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -2
  261. package/src/View/Wizard/ObjectTagsWizardSection.js +1 -1
  262. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +5 -6
  263. package/src/View/Wizard/OnePageAdaptableWizard.js +35 -169
  264. package/src/View/Wizard/OnePageWizards.d.ts +37 -0
  265. package/src/View/Wizard/OnePageWizards.js +187 -0
  266. package/src/View/Wizard/useKeyboardNavigation.d.ts +1 -1
  267. package/src/agGrid/ActionColumnRenderer.js +3 -2
  268. package/src/agGrid/Adaptable.d.ts +4 -2
  269. package/src/agGrid/Adaptable.js +99 -58
  270. package/src/agGrid/FilterWrapper.js +1 -1
  271. package/src/agGrid/agGridHelper.d.ts +7 -8
  272. package/src/agGrid/agGridHelper.js +68 -86
  273. package/src/agGrid/agGridMenuHelper.js +4 -1
  274. package/src/agGrid/rowEditIcons.d.ts +1 -0
  275. package/src/agGrid/rowEditIcons.js +2 -1
  276. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -2
  277. package/src/components/Dashboard/DashboardToolbar.js +2 -2
  278. package/src/components/InfiniteTable/index.js +1 -0
  279. package/src/components/List/GridList/index.js +1 -1
  280. package/src/components/SelectList.d.ts +10 -0
  281. package/src/components/SelectList.js +9 -0
  282. package/src/components/WindowModal/WindowModal.js +13 -7
  283. package/src/components/icons/{data-source.d.ts → add-row.d.ts} +0 -0
  284. package/src/components/icons/add-row.js +7 -0
  285. package/src/components/icons/data-set.d.ts +3 -0
  286. package/src/components/icons/{data-source.js → data-set.js} +0 -0
  287. package/src/components/icons/index.js +4 -2
  288. package/src/metamodel/adaptable.metamodel.d.ts +163 -78
  289. package/src/metamodel/adaptable.metamodel.js +402 -322
  290. package/src/types.d.ts +16 -12
  291. package/version.d.ts +1 -1
  292. package/version.js +1 -1
  293. package/src/AdaptableOptions/FormatColumnOptions.d.ts +0 -10
  294. package/src/Api/DataSourceApi.d.ts +0 -58
  295. package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
  296. package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
  297. package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
  298. package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
  299. package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
  300. package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
  301. package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
  302. package/src/Strategy/DataSourceModule.d.ts +0 -20
  303. package/src/Strategy/DataSourceModule.js +0 -56
  304. package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
  305. package/src/View/DataSource/DataSourceViewPanel.js +0 -69
  306. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
  307. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
  308. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
  309. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
  310. package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
  311. package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
@@ -74,6 +74,26 @@ export declare const ADAPTABLE_METAMODEL: {
74
74
  kind: string;
75
75
  description: string;
76
76
  };
77
+ ActionOptions: {
78
+ name: string;
79
+ kind: string;
80
+ description: string;
81
+ properties: ({
82
+ name: string;
83
+ kind: string;
84
+ description: string;
85
+ uiLabel: string;
86
+ isOptional: boolean;
87
+ defaultValue?: undefined;
88
+ } | {
89
+ name: string;
90
+ kind: string;
91
+ description: string;
92
+ uiLabel: string;
93
+ isOptional: boolean;
94
+ defaultValue: string;
95
+ })[];
96
+ };
77
97
  AdaptableAlert: {
78
98
  name: string;
79
99
  kind: string;
@@ -124,21 +144,13 @@ export declare const ADAPTABLE_METAMODEL: {
124
144
  name: string;
125
145
  kind: string;
126
146
  description: string;
127
- properties: ({
128
- name: string;
129
- kind: string;
130
- description: string;
131
- uiLabel: string;
132
- isOptional: boolean;
133
- reference?: undefined;
134
- } | {
147
+ properties: {
135
148
  name: string;
136
149
  kind: string;
137
150
  description: string;
138
151
  uiLabel: string;
139
152
  isOptional: boolean;
140
- reference: string;
141
- })[];
153
+ }[];
142
154
  };
143
155
  AdaptableCalculatedColumnQuery: {
144
156
  name: string;
@@ -188,12 +200,24 @@ export declare const ADAPTABLE_METAMODEL: {
188
200
  name: string;
189
201
  kind: string;
190
202
  description: string;
191
- properties: {
203
+ properties: ({
192
204
  name: string;
193
205
  kind: string;
194
206
  description: string;
195
207
  uiLabel: string;
196
- }[];
208
+ reference?: undefined;
209
+ } | {
210
+ name: string;
211
+ kind: string;
212
+ description: string;
213
+ uiLabel: string;
214
+ reference: string;
215
+ })[];
216
+ };
217
+ AdaptableColumnDataType: {
218
+ name: string;
219
+ kind: string;
220
+ description: string;
197
221
  };
198
222
  AdaptableComparerFunction: {
199
223
  name: string;
@@ -436,18 +460,18 @@ export declare const ADAPTABLE_METAMODEL: {
436
460
  description: string;
437
461
  uiLabel: string;
438
462
  isOptional: boolean;
463
+ defaultValue: string;
464
+ reference: string;
439
465
  gridInfo?: undefined;
440
- defaultValue?: undefined;
441
- reference?: undefined;
442
466
  } | {
443
467
  name: string;
444
468
  kind: string;
445
469
  description: string;
446
470
  uiLabel: string;
447
471
  isOptional: boolean;
448
- defaultValue: string;
449
- reference: string;
450
472
  gridInfo?: undefined;
473
+ defaultValue?: undefined;
474
+ reference?: undefined;
451
475
  } | {
452
476
  name: string;
453
477
  kind: string;
@@ -536,6 +560,15 @@ export declare const ADAPTABLE_METAMODEL: {
536
560
  gridInfo: string;
537
561
  defaultValue: string;
538
562
  reference?: undefined;
563
+ } | {
564
+ name: string;
565
+ kind: string;
566
+ description: string;
567
+ uiLabel: string;
568
+ isOptional: boolean;
569
+ gridInfo?: undefined;
570
+ defaultValue?: undefined;
571
+ reference?: undefined;
539
572
  } | {
540
573
  name: string;
541
574
  kind: string;
@@ -787,6 +820,26 @@ export declare const ADAPTABLE_METAMODEL: {
787
820
  kind: string;
788
821
  description: string;
789
822
  };
823
+ AlertMessageContext: {
824
+ name: string;
825
+ kind: string;
826
+ description: string;
827
+ properties: ({
828
+ name: string;
829
+ kind: string;
830
+ description: string;
831
+ uiLabel: string;
832
+ reference: string;
833
+ isOptional?: undefined;
834
+ } | {
835
+ name: string;
836
+ kind: string;
837
+ description: string;
838
+ uiLabel: string;
839
+ isOptional: boolean;
840
+ reference: string;
841
+ })[];
842
+ };
790
843
  AlertOptions: {
791
844
  name: string;
792
845
  kind: string;
@@ -1233,6 +1286,24 @@ export declare const ADAPTABLE_METAMODEL: {
1233
1286
  reference: string;
1234
1287
  })[];
1235
1288
  };
1289
+ ColumnFriendlyNameContext: {
1290
+ name: string;
1291
+ kind: string;
1292
+ description: string;
1293
+ properties: ({
1294
+ name: string;
1295
+ kind: string;
1296
+ description: string;
1297
+ uiLabel: string;
1298
+ reference: string;
1299
+ } | {
1300
+ name: string;
1301
+ kind: string;
1302
+ description: string;
1303
+ uiLabel: string;
1304
+ reference?: undefined;
1305
+ })[];
1306
+ };
1236
1307
  ColumnMenuContext: {
1237
1308
  name: string;
1238
1309
  kind: string;
@@ -1251,6 +1322,28 @@ export declare const ADAPTABLE_METAMODEL: {
1251
1322
  reference?: undefined;
1252
1323
  })[];
1253
1324
  };
1325
+ ColumnOptions: {
1326
+ name: string;
1327
+ kind: string;
1328
+ description: string;
1329
+ properties: ({
1330
+ name: string;
1331
+ kind: string;
1332
+ description: string;
1333
+ uiLabel: string;
1334
+ isOptional: boolean;
1335
+ gridInfo: string;
1336
+ defaultValue: string;
1337
+ } | {
1338
+ name: string;
1339
+ kind: string;
1340
+ description: string;
1341
+ uiLabel: string;
1342
+ isOptional: boolean;
1343
+ gridInfo?: undefined;
1344
+ defaultValue?: undefined;
1345
+ })[];
1346
+ };
1254
1347
  ColumnSort: {
1255
1348
  name: string;
1256
1349
  kind: string;
@@ -1844,7 +1937,15 @@ export declare const ADAPTABLE_METAMODEL: {
1844
1937
  name: string;
1845
1938
  kind: string;
1846
1939
  description: string;
1847
- properties: {
1940
+ properties: ({
1941
+ name: string;
1942
+ kind: string;
1943
+ description: string;
1944
+ uiLabel: string;
1945
+ isOptional: boolean;
1946
+ gridInfo?: undefined;
1947
+ defaultValue?: undefined;
1948
+ } | {
1848
1949
  name: string;
1849
1950
  kind: string;
1850
1951
  description: string;
@@ -1852,9 +1953,9 @@ export declare const ADAPTABLE_METAMODEL: {
1852
1953
  isOptional: boolean;
1853
1954
  gridInfo: string;
1854
1955
  defaultValue: string;
1855
- }[];
1956
+ })[];
1856
1957
  };
1857
- DataSource: {
1958
+ DataSet: {
1858
1959
  name: string;
1859
1960
  kind: string;
1860
1961
  description: string;
@@ -1872,7 +1973,7 @@ export declare const ADAPTABLE_METAMODEL: {
1872
1973
  isOptional: boolean;
1873
1974
  })[];
1874
1975
  };
1875
- DataSourceApi: {
1976
+ DataSetApi: {
1876
1977
  name: string;
1877
1978
  kind: string;
1878
1979
  description: string;
@@ -1883,18 +1984,6 @@ export declare const ADAPTABLE_METAMODEL: {
1883
1984
  uiLabel: string;
1884
1985
  }[];
1885
1986
  };
1886
- DataSourceState: {
1887
- name: string;
1888
- kind: string;
1889
- description: string;
1890
- properties: {
1891
- name: string;
1892
- kind: string;
1893
- description: string;
1894
- uiLabel: string;
1895
- isOptional: boolean;
1896
- }[];
1897
- };
1898
1987
  DataUpdateConfig: {
1899
1988
  name: string;
1900
1989
  kind: string;
@@ -2014,7 +2103,7 @@ export declare const ADAPTABLE_METAMODEL: {
2014
2103
  uiLabel: string;
2015
2104
  }[];
2016
2105
  };
2017
- ExportButtonContext: {
2106
+ ExportFormContext: {
2018
2107
  name: string;
2019
2108
  kind: string;
2020
2109
  description: string;
@@ -2295,26 +2384,6 @@ export declare const ADAPTABLE_METAMODEL: {
2295
2384
  defaultValue: string;
2296
2385
  }[];
2297
2386
  };
2298
- FilterState: {
2299
- name: string;
2300
- kind: string;
2301
- description: string;
2302
- properties: ({
2303
- name: string;
2304
- kind: string;
2305
- description: string;
2306
- uiLabel: string;
2307
- isOptional: boolean;
2308
- defaultValue?: undefined;
2309
- } | {
2310
- name: string;
2311
- kind: string;
2312
- description: string;
2313
- uiLabel: string;
2314
- isOptional: boolean;
2315
- defaultValue: string;
2316
- })[];
2317
- };
2318
2387
  FinanceApi: {
2319
2388
  name: string;
2320
2389
  kind: string;
@@ -2589,16 +2658,16 @@ export declare const ADAPTABLE_METAMODEL: {
2589
2658
  description: string;
2590
2659
  uiLabel: string;
2591
2660
  isOptional: boolean;
2592
- gridInfo: string;
2593
- defaultValue: string;
2661
+ defaultValue?: undefined;
2662
+ gridInfo?: undefined;
2594
2663
  } | {
2595
2664
  name: string;
2596
2665
  kind: string;
2597
2666
  description: string;
2598
2667
  uiLabel: string;
2599
2668
  isOptional: boolean;
2600
- defaultValue?: undefined;
2601
- gridInfo?: undefined;
2669
+ gridInfo: string;
2670
+ defaultValue: string;
2602
2671
  })[];
2603
2672
  };
2604
2673
  Glue42Api: {
@@ -3046,6 +3115,26 @@ export declare const ADAPTABLE_METAMODEL: {
3046
3115
  reference: string;
3047
3116
  })[];
3048
3117
  };
3118
+ MasterDetailPluginOptions: {
3119
+ name: string;
3120
+ kind: string;
3121
+ description: string;
3122
+ properties: ({
3123
+ name: string;
3124
+ kind: string;
3125
+ description: string;
3126
+ uiLabel: string;
3127
+ reference: string;
3128
+ isOptional?: undefined;
3129
+ } | {
3130
+ name: string;
3131
+ kind: string;
3132
+ description: string;
3133
+ uiLabel: string;
3134
+ isOptional: boolean;
3135
+ reference?: undefined;
3136
+ })[];
3137
+ };
3049
3138
  MenuOptions: {
3050
3139
  name: string;
3051
3140
  kind: string;
@@ -3906,6 +3995,19 @@ export declare const ADAPTABLE_METAMODEL: {
3906
3995
  reference?: undefined;
3907
3996
  })[];
3908
3997
  };
3998
+ StatusBarState: {
3999
+ name: string;
4000
+ kind: string;
4001
+ description: string;
4002
+ properties: {
4003
+ name: string;
4004
+ kind: string;
4005
+ description: string;
4006
+ uiLabel: string;
4007
+ isOptional: boolean;
4008
+ defaultValue: string;
4009
+ }[];
4010
+ };
3909
4011
  StringFormatterOptions: {
3910
4012
  name: string;
3911
4013
  kind: string;
@@ -4111,14 +4213,6 @@ export declare const ADAPTABLE_METAMODEL: {
4111
4213
  kind: string;
4112
4214
  description: string;
4113
4215
  properties: ({
4114
- name: string;
4115
- kind: string;
4116
- description: string;
4117
- uiLabel: string;
4118
- isOptional: boolean;
4119
- gridInfo: string;
4120
- defaultValue: string;
4121
- } | {
4122
4216
  name: string;
4123
4217
  kind: string;
4124
4218
  description: string;
@@ -4132,8 +4226,8 @@ export declare const ADAPTABLE_METAMODEL: {
4132
4226
  description: string;
4133
4227
  uiLabel: string;
4134
4228
  isOptional: boolean;
4229
+ gridInfo: string;
4135
4230
  defaultValue: string;
4136
- gridInfo?: undefined;
4137
4231
  })[];
4138
4232
  };
4139
4233
  ToolPanelState: {
@@ -4184,8 +4278,8 @@ export declare const ADAPTABLE_METAMODEL: {
4184
4278
  description: string;
4185
4279
  uiLabel: string;
4186
4280
  isOptional: boolean;
4281
+ reference: string;
4187
4282
  defaultValue?: undefined;
4188
- reference?: undefined;
4189
4283
  gridInfo?: undefined;
4190
4284
  } | {
4191
4285
  name: string;
@@ -4202,17 +4296,8 @@ export declare const ADAPTABLE_METAMODEL: {
4202
4296
  description: string;
4203
4297
  uiLabel: string;
4204
4298
  isOptional: boolean;
4205
- reference: string;
4206
- defaultValue?: undefined;
4207
- gridInfo?: undefined;
4208
- } | {
4209
- name: string;
4210
- kind: string;
4211
- description: string;
4212
- uiLabel: string;
4213
- isOptional: boolean;
4214
- defaultValue: string;
4215
4299
  reference?: undefined;
4300
+ defaultValue?: undefined;
4216
4301
  gridInfo?: undefined;
4217
4302
  } | {
4218
4303
  name: string;
@@ -4230,8 +4315,8 @@ export declare const ADAPTABLE_METAMODEL: {
4230
4315
  uiLabel: string;
4231
4316
  isOptional: boolean;
4232
4317
  gridInfo: string;
4233
- defaultValue?: undefined;
4234
4318
  reference?: undefined;
4319
+ defaultValue?: undefined;
4235
4320
  })[];
4236
4321
  };
4237
4322
  UserMenuItem: {