@adaptabletools/adaptable 11.3.0 → 12.0.0-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (229) hide show
  1. package/base.css +22 -4
  2. package/bundle.cjs.js +108 -108
  3. package/index.css +26 -4
  4. package/package.json +1 -1
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -1
  8. package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
  9. package/src/AdaptableOptions/{FormatColumnOptions.js → ActionOptions.js} +0 -0
  10. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -10
  12. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
  13. package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
  14. package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
  15. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ColumnOptions.js} +0 -0
  16. package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
  17. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
  18. package/src/AdaptableOptions/EditOptions.d.ts +2 -2
  19. package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
  20. package/src/AdaptableOptions/ExportOptions.d.ts +5 -1
  21. package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
  22. package/src/AdaptableOptions/GeneralOptions.d.ts +22 -23
  23. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
  24. package/src/{Api/DataSourceApi.js → AdaptableOptions/MasterDetailPluginOptions.js} +0 -0
  25. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
  26. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
  27. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +75 -62
  28. package/src/Api/AdaptableApi.d.ts +6 -3
  29. package/src/Api/ColumnApi.d.ts +2 -2
  30. package/src/Api/ConditionalStyleApi.d.ts +10 -0
  31. package/src/Api/ConfigApi.d.ts +0 -12
  32. package/src/Api/DashboardApi.d.ts +6 -19
  33. package/src/Api/DataSetApi.d.ts +40 -0
  34. package/src/{PredefinedConfig/DataSourceState.js → Api/DataSetApi.js} +0 -0
  35. package/src/Api/EventApi.d.ts +15 -1
  36. package/src/Api/Events/DataSetChanged.d.ts +5 -0
  37. package/src/{PredefinedConfig/FilterState.js → Api/Events/DataSetChanged.js} +0 -0
  38. package/src/Api/Events/SearchChanged.d.ts +3 -4
  39. package/src/Api/FilterApi.d.ts +1 -77
  40. package/src/Api/GridApi.d.ts +1 -1
  41. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  42. package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
  43. package/src/Api/Implementation/AlertApiImpl.js +5 -1
  44. package/src/Api/Implementation/ApiBase.d.ts +3 -0
  45. package/src/Api/Implementation/ApiBase.js +6 -0
  46. package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -2
  47. package/src/Api/Implementation/ColumnApiImpl.js +2 -2
  48. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
  49. package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
  50. package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
  51. package/src/Api/Implementation/ConfigApiImpl.js +2 -24
  52. package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
  53. package/src/Api/Implementation/DashboardApiImpl.js +5 -29
  54. package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
  55. package/src/Api/Implementation/DataSetApiImpl.js +42 -0
  56. package/src/Api/Implementation/EventApiImpl.js +1 -0
  57. package/src/Api/Implementation/FilterApiImpl.d.ts +1 -16
  58. package/src/Api/Implementation/FilterApiImpl.js +5 -159
  59. package/src/Api/Implementation/FormatColumnApiImpl.js +1 -1
  60. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  61. package/src/Api/Implementation/GridApiImpl.js +1 -1
  62. package/src/Api/Implementation/InternalApiImpl.d.ts +3 -2
  63. package/src/Api/Implementation/InternalApiImpl.js +14 -3
  64. package/src/Api/Implementation/LayoutApiImpl.d.ts +18 -1
  65. package/src/Api/Implementation/LayoutApiImpl.js +172 -0
  66. package/src/Api/Implementation/PredicateApiImpl.js +1 -1
  67. package/src/Api/Implementation/SmartEditApiImpl.d.ts +3 -1
  68. package/src/Api/Implementation/SmartEditApiImpl.js +6 -0
  69. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
  70. package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
  71. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
  72. package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
  73. package/src/Api/InternalApi.d.ts +3 -2
  74. package/src/Api/LayoutApi.d.ts +88 -1
  75. package/src/Api/SmartEditApi.d.ts +8 -2
  76. package/src/Api/TeamSharingApi.d.ts +18 -5
  77. package/src/Api/UserInterfaceApi.d.ts +4 -4
  78. package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
  79. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
  80. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
  81. package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
  82. package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
  83. package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
  84. package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
  85. package/src/PredefinedConfig/Common/Enums.js +1 -1
  86. package/src/PredefinedConfig/Common/Types.d.ts +6 -5
  87. package/src/PredefinedConfig/Common/Types.js +2 -3
  88. package/src/PredefinedConfig/LayoutState.d.ts +5 -0
  89. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
  90. package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
  91. package/src/PredefinedConfig/SystemState.d.ts +3 -0
  92. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
  93. package/src/Redux/ActionsReducers/LayoutRedux.js +135 -1
  94. package/src/Redux/ActionsReducers/SystemRedux.d.ts +22 -0
  95. package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
  96. package/src/Redux/Store/AdaptableStore.js +37 -39
  97. package/src/Strategy/AlertModule.d.ts +11 -0
  98. package/src/Strategy/AlertModule.js +14 -0
  99. package/src/Strategy/CellSummaryModule.d.ts +3 -0
  100. package/src/Strategy/CellSummaryModule.js +28 -14
  101. package/src/Strategy/DataSetModule.d.ts +25 -0
  102. package/src/Strategy/DataSetModule.js +65 -0
  103. package/src/Strategy/ExportModule.js +6 -1
  104. package/src/Strategy/FilterModule.d.ts +7 -11
  105. package/src/Strategy/FilterModule.js +24 -15
  106. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  107. package/src/Strategy/FlashingCellModule.js +2 -2
  108. package/src/Strategy/Interface/IModule.d.ts +3 -1
  109. package/src/Strategy/LayoutModule.js +24 -2
  110. package/src/Strategy/SmartEditModule.js +1 -1
  111. package/src/Strategy/StatusBarModule.js +1 -3
  112. package/src/Strategy/TeamSharingModule.js +1 -1
  113. package/src/Strategy/ToolPanelModule.js +1 -4
  114. package/src/Utilities/Constants/GeneralConstants.d.ts +6 -2
  115. package/src/Utilities/Constants/GeneralConstants.js +6 -2
  116. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
  117. package/src/Utilities/Constants/ModuleConstants.js +2 -2
  118. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +15 -15
  119. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
  120. package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
  121. package/src/Utilities/ObjectFactory.d.ts +3 -6
  122. package/src/Utilities/ObjectFactory.js +3 -7
  123. package/src/Utilities/Services/EntitlementService.js +7 -1
  124. package/src/Utilities/Services/ModuleService.js +1 -1
  125. package/src/Utilities/Services/ReportService.js +2 -3
  126. package/src/Utilities/Services/TeamSharingService.js +4 -4
  127. package/src/View/AdaptablePopover/index.d.ts +1 -0
  128. package/src/View/AdaptablePopover/index.js +5 -6
  129. package/src/View/AdaptableView.js +1 -1
  130. package/src/View/AdaptableViewFactory.js +2 -2
  131. package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
  132. package/src/View/Alert/ActiveAlertsPanel.js +15 -0
  133. package/src/View/Alert/AlertStatusSubPanel.js +3 -8
  134. package/src/View/Alert/AlertViewPanel.js +2 -2
  135. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +1 -1
  136. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
  137. package/src/View/CellSummary/CellSummaryDetails.js +2 -2
  138. package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
  139. package/src/View/CellSummary/CellSummaryPopover.js +3 -6
  140. package/src/View/CellSummary/CellSummaryPopup.js +8 -0
  141. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
  142. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
  143. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
  144. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
  145. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
  146. package/src/View/Components/ExternalRenderer.d.ts +3 -6
  147. package/src/View/Components/ExternalRenderer.js +5 -5
  148. package/src/View/Components/FilterForm/FilterForm.d.ts +1 -1
  149. package/src/View/Components/FilterForm/FilterForm.js +9 -7
  150. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
  151. package/src/View/Components/FilterForm/QuickFilterForm.js +6 -5
  152. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  153. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
  154. package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
  155. package/src/View/Components/Popups/AdaptableToaster.js +29 -9
  156. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
  157. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
  158. package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
  159. package/src/View/Dashboard/CustomDashboardButton.js +47 -0
  160. package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
  161. package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
  162. package/src/View/Dashboard/Dashboard.d.ts +1 -0
  163. package/src/View/Dashboard/Dashboard.js +8 -34
  164. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
  165. package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
  166. package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
  167. package/src/View/DataSet/DataSetSelector.d.ts +7 -0
  168. package/src/View/DataSet/DataSetSelector.js +18 -0
  169. package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
  170. package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
  171. package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
  172. package/src/View/DataSet/DataSetViewPanel.js +58 -0
  173. package/src/View/Filter/ActiveFiltersPanel.js +1 -1
  174. package/src/View/Filter/FilterSummary.d.ts +5 -5
  175. package/src/View/Filter/FilterSummary.js +6 -5
  176. package/src/View/Filter/FilterViewPanel.d.ts +4 -4
  177. package/src/View/Filter/FilterViewPanel.js +11 -14
  178. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  179. package/src/View/GridInfo/GridInfoPopup.js +1 -1
  180. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
  181. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  182. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  183. package/src/View/SmartEdit/SmartEditPopup.js +2 -2
  184. package/src/View/SmartEdit/SmartEditViewPanel.js +2 -2
  185. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  186. package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
  187. package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
  188. package/src/View/StatusBar/StatusBarPanel.js +5 -4
  189. package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
  190. package/src/View/UIHelper.d.ts +4 -4
  191. package/src/View/UIHelper.js +4 -4
  192. package/src/agGrid/ActionColumnRenderer.js +3 -2
  193. package/src/agGrid/Adaptable.d.ts +4 -2
  194. package/src/agGrid/Adaptable.js +79 -52
  195. package/src/agGrid/FilterWrapper.js +1 -1
  196. package/src/agGrid/agGridHelper.d.ts +6 -6
  197. package/src/agGrid/agGridHelper.js +34 -56
  198. package/src/agGrid/agGridMenuHelper.js +4 -1
  199. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -2
  200. package/src/components/Dashboard/DashboardToolbar.js +2 -2
  201. package/src/components/SelectList.d.ts +10 -0
  202. package/src/components/SelectList.js +9 -0
  203. package/src/components/icons/{data-source.d.ts → data-set.d.ts} +0 -0
  204. package/src/components/icons/{data-source.js → data-set.js} +0 -0
  205. package/src/components/icons/index.js +2 -2
  206. package/src/metamodel/adaptable.metamodel.d.ts +162 -77
  207. package/src/metamodel/adaptable.metamodel.js +422 -375
  208. package/src/types.d.ts +15 -12
  209. package/version.d.ts +1 -1
  210. package/version.js +1 -1
  211. package/src/AdaptableOptions/FormatColumnOptions.d.ts +0 -10
  212. package/src/Api/DataSourceApi.d.ts +0 -58
  213. package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
  214. package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
  215. package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
  216. package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
  217. package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
  218. package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
  219. package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
  220. package/src/Strategy/DataSourceModule.d.ts +0 -20
  221. package/src/Strategy/DataSourceModule.js +0 -56
  222. package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
  223. package/src/View/DataSource/DataSourceViewPanel.js +0 -69
  224. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
  225. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
  226. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
  227. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
  228. package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
  229. package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
@@ -118,6 +118,36 @@ exports.ADAPTABLE_METAMODEL = {
118
118
  "kind": "TypeAlias",
119
119
  "description": "Handles a Form Button Action"
120
120
  },
121
+ "ActionOptions": {
122
+ "name": "ActionOptions",
123
+ "kind": "Interface",
124
+ "description": "Options related to Action Columns and Buttons in Adaptable.",
125
+ "properties": [
126
+ {
127
+ "name": "actionColumns",
128
+ "kind": "unknown",
129
+ "description": "Columns which contain an AdapTable Button - used for performing Actions",
130
+ "uiLabel": "Action Columns",
131
+ "isOptional": true
132
+ },
133
+ {
134
+ "name": "actionRowButtons",
135
+ "kind": "unknown",
136
+ "description": "Action buttons to display for each row.",
137
+ "uiLabel": "Action Row Buttons",
138
+ "isOptional": true,
139
+ "defaultValue": "undefined"
140
+ },
141
+ {
142
+ "name": "actionRowButtonsPosition",
143
+ "kind": "unknown",
144
+ "description": "Position of supplied Action Buttons",
145
+ "uiLabel": "Action Row Buttons Position",
146
+ "isOptional": true,
147
+ "defaultValue": "'pinnedLeft'"
148
+ }
149
+ ]
150
+ },
121
151
  "AdaptableAlert": {
122
152
  "name": "AdaptableAlert",
123
153
  "kind": "TypeAlias",
@@ -250,11 +280,11 @@ exports.ADAPTABLE_METAMODEL = {
250
280
  "reference": "DataChangeHistoryApi"
251
281
  },
252
282
  {
253
- "name": "dataSourceApi",
283
+ "name": "dataSetApi",
254
284
  "kind": "REFERENCE",
255
- "description": "Provides access to the Data Source Module",
256
- "uiLabel": "Data Source Api",
257
- "reference": "DataSourceApi"
285
+ "description": "Provides access to Data Sets",
286
+ "uiLabel": "Data Set Api",
287
+ "reference": "DataSetApi"
258
288
  },
259
289
  {
260
290
  "name": "destroy",
@@ -317,6 +347,12 @@ exports.ADAPTABLE_METAMODEL = {
317
347
  "description": "Cleanup method that only cleans up this api instance (clears event listeners and sets every property to null), but does not destroy the Adaptable instance.",
318
348
  "uiLabel": "Internal Destroy Self"
319
349
  },
350
+ {
351
+ "name": "isDestroyed",
352
+ "kind": "unknown",
353
+ "description": "Whether the Adaptable instance has been destroyed",
354
+ "uiLabel": "Is Destroyed"
355
+ },
320
356
  {
321
357
  "name": "layoutApi",
322
358
  "kind": "REFERENCE",
@@ -453,7 +489,7 @@ exports.ADAPTABLE_METAMODEL = {
453
489
  {
454
490
  "name": "buttonStyle",
455
491
  "kind": "unknown",
456
- "description": "Style for Button - can be object or function thats provides a `Style` object",
492
+ "description": "Style for Button - can be object or function that provides a `ButtonStyle` object",
457
493
  "uiLabel": "Button Style",
458
494
  "isOptional": true
459
495
  },
@@ -473,11 +509,10 @@ exports.ADAPTABLE_METAMODEL = {
473
509
  },
474
510
  {
475
511
  "name": "icon",
476
- "kind": "REFERENCE",
477
- "description": "Icon to display, requires string for URL, other props are optional",
512
+ "kind": "unknown",
513
+ "description": "Icon for Button - can be object or function that provides a `AdaptableIcon` object",
478
514
  "uiLabel": "Icon",
479
- "isOptional": true,
480
- "reference": "AdaptableIcon"
515
+ "isOptional": true
481
516
  },
482
517
  {
483
518
  "name": "label",
@@ -680,9 +715,10 @@ exports.ADAPTABLE_METAMODEL = {
680
715
  },
681
716
  {
682
717
  "name": "dataType",
683
- "kind": "unknown",
718
+ "kind": "REFERENCE",
684
719
  "description": "DataType of the column",
685
- "uiLabel": "Data Type"
720
+ "uiLabel": "Data Type",
721
+ "reference": "AdaptableColumnDataType"
686
722
  },
687
723
  {
688
724
  "name": "friendlyName",
@@ -692,6 +728,11 @@ exports.ADAPTABLE_METAMODEL = {
692
728
  }
693
729
  ]
694
730
  },
731
+ "AdaptableColumnDataType": {
732
+ "name": "AdaptableColumnDataType",
733
+ "kind": "TypeAlias",
734
+ "description": "The type of the column data"
735
+ },
695
736
  "AdaptableComparerFunction": {
696
737
  "name": "AdaptableComparerFunction",
697
738
  "kind": "TypeAlias",
@@ -1061,6 +1102,14 @@ exports.ADAPTABLE_METAMODEL = {
1061
1102
  "gridInfo": "item",
1062
1103
  "defaultValue": "false"
1063
1104
  },
1105
+ {
1106
+ "name": "columnOptions",
1107
+ "kind": "REFERENCE",
1108
+ "description": "Options for managing Columns",
1109
+ "uiLabel": "Column Options",
1110
+ "isOptional": true,
1111
+ "reference": "ColumnOptions"
1112
+ },
1064
1113
  {
1065
1114
  "name": "containerOptions",
1066
1115
  "kind": "REFERENCE",
@@ -1069,13 +1118,6 @@ exports.ADAPTABLE_METAMODEL = {
1069
1118
  "isOptional": true,
1070
1119
  "reference": "ContainerOptions"
1071
1120
  },
1072
- {
1073
- "name": "customPredicateDefs",
1074
- "kind": "unknown",
1075
- "description": "Predicate definitions provided by developers at Design-Time",
1076
- "uiLabel": "Custom Predicate Defs",
1077
- "isOptional": true
1078
- },
1079
1121
  {
1080
1122
  "name": "dashboardOptions",
1081
1123
  "kind": "REFERENCE",
@@ -1139,15 +1181,6 @@ exports.ADAPTABLE_METAMODEL = {
1139
1181
  "gridInfo": "container",
1140
1182
  "reference": "FlashingCellOptions"
1141
1183
  },
1142
- {
1143
- "name": "formatColumnOptions",
1144
- "kind": "REFERENCE",
1145
- "description": "Options for managing format columns",
1146
- "uiLabel": "Format Column Options",
1147
- "isOptional": true,
1148
- "gridInfo": "container",
1149
- "reference": "unknown"
1150
- },
1151
1184
  {
1152
1185
  "name": "generalOptions",
1153
1186
  "kind": "REFERENCE",
@@ -1411,6 +1444,13 @@ exports.ADAPTABLE_METAMODEL = {
1411
1444
  "gridInfo": "item",
1412
1445
  "defaultValue": "false"
1413
1446
  },
1447
+ {
1448
+ "name": "customPredicateDefs",
1449
+ "kind": "unknown",
1450
+ "description": "Definitions for Custom provided Predicates",
1451
+ "uiLabel": "Custom Predicate Defs",
1452
+ "isOptional": true
1453
+ },
1414
1454
  {
1415
1455
  "name": "expressionOptions",
1416
1456
  "kind": "REFERENCE",
@@ -1487,10 +1527,10 @@ exports.ADAPTABLE_METAMODEL = {
1487
1527
  "uiLabel": "Current Query"
1488
1528
  },
1489
1529
  {
1490
- "name": "dataSource",
1530
+ "name": "dataSet",
1491
1531
  "kind": "unknown",
1492
1532
  "description": "Current Data Source (if one selected)",
1493
- "uiLabel": "Data Source"
1533
+ "uiLabel": "Data Set"
1494
1534
  },
1495
1535
  {
1496
1536
  "name": "queryAST",
@@ -1998,6 +2038,28 @@ exports.ADAPTABLE_METAMODEL = {
1998
2038
  "kind": "TypeAlias",
1999
2039
  "description": "Form to show in an Alert"
2000
2040
  },
2041
+ "AlertMessageContext": {
2042
+ "name": "AlertMessageContext",
2043
+ "kind": "Interface",
2044
+ "description": "Context used for creating bespoke Alert messages",
2045
+ "properties": [
2046
+ {
2047
+ "name": "alertDefinition",
2048
+ "kind": "REFERENCE",
2049
+ "description": "Current Alert Definition",
2050
+ "uiLabel": "Alert Definition",
2051
+ "reference": "AlertDefinition"
2052
+ },
2053
+ {
2054
+ "name": "cellDataChangedInfo",
2055
+ "kind": "REFERENCE",
2056
+ "description": "Data change that might have triggered the Alert",
2057
+ "uiLabel": "Cell Data Changed Info",
2058
+ "isOptional": true,
2059
+ "reference": "CellDataChangedInfo"
2060
+ }
2061
+ ]
2062
+ },
2001
2063
  "AlertOptions": {
2002
2064
  "name": "AlertOptions",
2003
2065
  "kind": "Interface",
@@ -3204,6 +3266,26 @@ exports.ADAPTABLE_METAMODEL = {
3204
3266
  }
3205
3267
  ]
3206
3268
  },
3269
+ "ColumnFriendlyNameContext": {
3270
+ "name": "ColumnFriendlyNameContext",
3271
+ "kind": "Interface",
3272
+ "description": "Context used when setting a Column Friendly Name",
3273
+ "properties": [
3274
+ {
3275
+ "name": "agColumn",
3276
+ "kind": "REFERENCE",
3277
+ "description": "AG Grid ColDef for the Column",
3278
+ "uiLabel": "Ag Column",
3279
+ "reference": "unknown"
3280
+ },
3281
+ {
3282
+ "name": "colId",
3283
+ "kind": "string",
3284
+ "description": "Id of the Column",
3285
+ "uiLabel": "Col Id"
3286
+ }
3287
+ ]
3288
+ },
3207
3289
  "ColumnMenuContext": {
3208
3290
  "name": "ColumnMenuContext",
3209
3291
  "kind": "Interface",
@@ -3231,6 +3313,54 @@ exports.ADAPTABLE_METAMODEL = {
3231
3313
  }
3232
3314
  ]
3233
3315
  },
3316
+ "ColumnOptions": {
3317
+ "name": "ColumnOptions",
3318
+ "kind": "Interface",
3319
+ "description": "Options related to managing Columns in Adaptable.",
3320
+ "properties": [
3321
+ {
3322
+ "name": "autoOrderGroupedColumns",
3323
+ "kind": "boolean",
3324
+ "description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
3325
+ "uiLabel": "Auto Order Grouped Columns",
3326
+ "isOptional": true,
3327
+ "gridInfo": "item",
3328
+ "defaultValue": "true"
3329
+ },
3330
+ {
3331
+ "name": "columnFriendlyName",
3332
+ "kind": "unknown",
3333
+ "description": "Provide an alternative Friendly Name for a Column",
3334
+ "uiLabel": "Column Friendly Name",
3335
+ "isOptional": true
3336
+ },
3337
+ {
3338
+ "name": "columnTypes",
3339
+ "kind": "unknown",
3340
+ "description": "Optional list of Column Types - used primarily for Special Columns",
3341
+ "uiLabel": "Column Types",
3342
+ "isOptional": true
3343
+ },
3344
+ {
3345
+ "name": "hideColumnWhenGrouped",
3346
+ "kind": "boolean",
3347
+ "description": "Automatically removes a column from the grid when it becomes Row Grouped",
3348
+ "uiLabel": "Hide Column When Grouped",
3349
+ "isOptional": true,
3350
+ "gridInfo": "item",
3351
+ "defaultValue": "false"
3352
+ },
3353
+ {
3354
+ "name": "showMissingColumnsWarning",
3355
+ "kind": "boolean",
3356
+ "description": "Show warning if AdapTable cannot find a column",
3357
+ "uiLabel": "Show Missing Columns Warning",
3358
+ "isOptional": true,
3359
+ "gridInfo": "item",
3360
+ "defaultValue": "true"
3361
+ }
3362
+ ]
3363
+ },
3234
3364
  "ColumnSort": {
3235
3365
  "name": "ColumnSort",
3236
3366
  "kind": "Interface",
@@ -3348,6 +3478,18 @@ exports.ADAPTABLE_METAMODEL = {
3348
3478
  "description": "Adds new Conditional Style to State",
3349
3479
  "uiLabel": "Add Conditional Style"
3350
3480
  },
3481
+ {
3482
+ "name": "deleteConditionalStyle",
3483
+ "kind": "function",
3484
+ "description": "Deletes a Conditional Style",
3485
+ "uiLabel": "Delete Conditional Style"
3486
+ },
3487
+ {
3488
+ "name": "deleteConditionalStyles",
3489
+ "kind": "function",
3490
+ "description": "Deletes Conditional Styles",
3491
+ "uiLabel": "Delete Conditional Styles"
3492
+ },
3351
3493
  {
3352
3494
  "name": "editConditionalStyle",
3353
3495
  "kind": "function",
@@ -3554,12 +3696,6 @@ exports.ADAPTABLE_METAMODEL = {
3554
3696
  "description": "Returns Dashboard section of Adaptable State",
3555
3697
  "uiLabel": "Get Dashboard State"
3556
3698
  },
3557
- {
3558
- "name": "getDataSourceState",
3559
- "kind": "function",
3560
- "description": "Returns Data Source section of Adaptable State",
3561
- "uiLabel": "Get Data Source State"
3562
- },
3563
3699
  {
3564
3700
  "name": "getDescriptionForModule",
3565
3701
  "kind": "function",
@@ -3572,12 +3708,6 @@ exports.ADAPTABLE_METAMODEL = {
3572
3708
  "description": "Returns Export section of Adaptable State",
3573
3709
  "uiLabel": "Get Export State"
3574
3710
  },
3575
- {
3576
- "name": "getFilterState",
3577
- "kind": "function",
3578
- "description": "Returns Filter section of Adaptable State",
3579
- "uiLabel": "Get Filter State"
3580
- },
3581
3711
  {
3582
3712
  "name": "getFormatColumnState",
3583
3713
  "kind": "function",
@@ -4382,18 +4512,6 @@ exports.ADAPTABLE_METAMODEL = {
4382
4512
  "kind": "Interface",
4383
4513
  "description": "Functions relating to the AdapTable Dashboard.",
4384
4514
  "properties": [
4385
- {
4386
- "name": "addCustomToolbarButtons",
4387
- "kind": "function",
4388
- "description": "Adds Toolbar Buttons to current collection in Custom Toolbar",
4389
- "uiLabel": "Add Custom Toolbar Buttons"
4390
- },
4391
- {
4392
- "name": "clearCustomToolbarButtons",
4393
- "kind": "function",
4394
- "description": "Clears all Toolbar Buttons from Custom Toolbar",
4395
- "uiLabel": "Clear Custom Toolbar Buttons"
4396
- },
4397
4515
  {
4398
4516
  "name": "collapseDashboard",
4399
4517
  "kind": "function",
@@ -4538,6 +4656,12 @@ exports.ADAPTABLE_METAMODEL = {
4538
4656
  "description": "Checks if a given Toolbar is visible",
4539
4657
  "uiLabel": "Is Toolbar Visible"
4540
4658
  },
4659
+ {
4660
+ "name": "refreshDashboard",
4661
+ "kind": "function",
4662
+ "description": "Refreshes the entire Dashboard section, including Toolbars and Buttons; this is particularly relevant for AdapTable built-in elements, as framework components are dependent on the framework specific change detection mechanisms",
4663
+ "uiLabel": "Refresh Dashboard"
4664
+ },
4541
4665
  {
4542
4666
  "name": "setActiveTab",
4543
4667
  "kind": "function",
@@ -4550,12 +4674,6 @@ exports.ADAPTABLE_METAMODEL = {
4550
4674
  "description": "Sets Active Tab in Dashboard",
4551
4675
  "uiLabel": "Set Active Tab Index"
4552
4676
  },
4553
- {
4554
- "name": "setCustomToolbarButtons",
4555
- "kind": "function",
4556
- "description": "Replaces Toolbar Buttons in Custom Toolbar with the new set",
4557
- "uiLabel": "Set Custom Toolbar Buttons"
4558
- },
4559
4677
  {
4560
4678
  "name": "setCustomToolbarContents",
4561
4679
  "kind": "function",
@@ -4828,6 +4946,13 @@ exports.ADAPTABLE_METAMODEL = {
4828
4946
  "kind": "Interface",
4829
4947
  "description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
4830
4948
  "properties": [
4949
+ {
4950
+ "name": "actionColumnButton",
4951
+ "kind": "unknown",
4952
+ "description": "Action button definition. Can be used to implement undo functionality.",
4953
+ "uiLabel": "Action Column Button",
4954
+ "isOptional": true
4955
+ },
4831
4956
  {
4832
4957
  "name": "activeByDefault",
4833
4958
  "kind": "boolean",
@@ -4848,117 +4973,78 @@ exports.ADAPTABLE_METAMODEL = {
4848
4973
  }
4849
4974
  ]
4850
4975
  },
4851
- "DataSource": {
4852
- "name": "DataSource",
4976
+ "DataSet": {
4977
+ "name": "DataSet",
4853
4978
  "kind": "Interface",
4854
- "description": "Defines a Data Source object - used in Data Source function",
4979
+ "description": "Defines a Data Set object that can provide data to AdapTable",
4855
4980
  "properties": [
4856
4981
  {
4857
- "name": "Description",
4982
+ "name": "description",
4858
4983
  "kind": "string",
4859
- "description": "Describes the Data Source",
4984
+ "description": "Describes the Data Set",
4860
4985
  "uiLabel": "Description"
4861
4986
  },
4862
4987
  {
4863
- "name": "Form",
4988
+ "name": "form",
4864
4989
  "kind": "unknown",
4865
- "description": "Params for DataSource pops up a form",
4990
+ "description": "Params for Data Set popup form",
4866
4991
  "uiLabel": "Form",
4867
4992
  "isOptional": true
4868
4993
  },
4869
4994
  {
4870
- "name": "Name",
4995
+ "name": "name",
4871
4996
  "kind": "string",
4872
- "description": "Name of Data Source",
4997
+ "description": "Name of Data Set",
4873
4998
  "uiLabel": "Name"
4874
4999
  }
4875
5000
  ]
4876
5001
  },
4877
- "DataSourceApi": {
4878
- "name": "DataSourceApi",
5002
+ "DataSetApi": {
5003
+ "name": "DataSetApi",
4879
5004
  "kind": "Interface",
4880
- "description": "Provides run-time access to Data Source Module",
5005
+ "description": "Provides run-time access to Data Sets",
4881
5006
  "properties": [
4882
5007
  {
4883
- "name": "addDataSource",
4884
- "kind": "function",
4885
- "description": "Adds new DataSource to State",
4886
- "uiLabel": "Add Data Source"
4887
- },
4888
- {
4889
- "name": "clearDataSource",
5008
+ "name": "clearCurrentDataSet",
4890
5009
  "kind": "function",
4891
- "description": "Clears currently selected DataSource",
4892
- "uiLabel": "Clear Data Source"
5010
+ "description": "Clears currently selected Data Set",
5011
+ "uiLabel": "Clear Current Data Set"
4893
5012
  },
4894
5013
  {
4895
- "name": "createDataSource",
5014
+ "name": "fireDataSetChangeEvent",
4896
5015
  "kind": "function",
4897
- "description": "Creates a DataSource from a given name and description",
4898
- "uiLabel": "Create Data Source"
5016
+ "description": "Fire the DataSet Changed Event",
5017
+ "uiLabel": "Fire Data Set Change Event"
4899
5018
  },
4900
5019
  {
4901
- "name": "getAllDataSource",
5020
+ "name": "getAllDataSets",
4902
5021
  "kind": "function",
4903
- "description": "Retrieves all Data Sources in the Adaptable State",
4904
- "uiLabel": "Get All Data Source"
5022
+ "description": "Retrieves the Data Sets from General Options",
5023
+ "uiLabel": "Get All Data Sets"
4905
5024
  },
4906
5025
  {
4907
- "name": "getCurrentDataSource",
5026
+ "name": "getCurrentDataSet",
4908
5027
  "kind": "function",
4909
- "description": "Retrieves the currently applied Data Source",
4910
- "uiLabel": "Get Current Data Source"
5028
+ "description": "Retrieves the currently applied Data Set",
5029
+ "uiLabel": "Get Current Data Set"
4911
5030
  },
4912
5031
  {
4913
- "name": "getDataSourceById",
5032
+ "name": "getDataSetByName",
4914
5033
  "kind": "function",
4915
- "description": "Retrieves Data Source by id",
4916
- "uiLabel": "Get Data Source By Id"
5034
+ "description": "Retreives Data Set from State with given name",
5035
+ "uiLabel": "Get Data Set By Name"
4917
5036
  },
4918
5037
  {
4919
- "name": "getDataSourceByName",
5038
+ "name": "setDataSet",
4920
5039
  "kind": "function",
4921
- "description": "Retrives Data Source from State with given name",
4922
- "uiLabel": "Get Data Source By Name"
5040
+ "description": "Makes given Data Set current",
5041
+ "uiLabel": "Set Data Set"
4923
5042
  },
4924
5043
  {
4925
- "name": "getDataSourceState",
5044
+ "name": "showDataSetPopup",
4926
5045
  "kind": "function",
4927
- "description": "Retrieves Data Source section from Adaptable State",
4928
- "uiLabel": "Get Data Source State"
4929
- },
4930
- {
4931
- "name": "setDataSource",
4932
- "kind": "function",
4933
- "description": "Makes given DataSource current",
4934
- "uiLabel": "Set Data Source"
4935
- },
4936
- {
4937
- "name": "showDataSourcePopup",
4938
- "kind": "function",
4939
- "description": "Opens Settings Panel with Data Source section selected and visible",
4940
- "uiLabel": "Show Data Source Popup"
4941
- }
4942
- ]
4943
- },
4944
- "DataSourceState": {
4945
- "name": "DataSourceState",
4946
- "kind": "Interface",
4947
- "description": "Predefined Configuration for Data Source Module",
4948
- "properties": [
4949
- {
4950
- "name": "CurrentDataSource",
4951
- "kind": "string",
4952
- "description": "Name of the currently selected Data Source",
4953
- "uiLabel": "Current Data Source",
4954
- "isOptional": true
4955
- },
4956
- {
4957
- "name": "DataSources",
4958
- "kind": "unknown",
4959
- "description": "Collection of available Data Sources",
4960
- "uiLabel": "Data Sources",
4961
- "isOptional": true
5046
+ "description": "Opens Settings Panel with Data Set section selected and visible",
5047
+ "uiLabel": "Show Data Set Popup"
4962
5048
  }
4963
5049
  ]
4964
5050
  },
@@ -5180,6 +5266,12 @@ exports.ADAPTABLE_METAMODEL = {
5180
5266
  "description": "Unsubscribe from LiveDataChanged",
5181
5267
  "uiLabel": "Off"
5182
5268
  },
5269
+ {
5270
+ "name": "off",
5271
+ "kind": "function",
5272
+ "description": "Unsubscribe from DataSetChanged",
5273
+ "uiLabel": "Off"
5274
+ },
5183
5275
  {
5184
5276
  "name": "off",
5185
5277
  "kind": "function",
@@ -5276,6 +5368,12 @@ exports.ADAPTABLE_METAMODEL = {
5276
5368
  "description": "Event fired whenever **a change occurs relating to live reports / data** Used in conjunction with AdapTable's partners OpenFin, ipushpull or Glue42",
5277
5369
  "uiLabel": "On"
5278
5370
  },
5371
+ {
5372
+ "name": "on",
5373
+ "kind": "function",
5374
+ "description": "Event fired when a DataSet is changed",
5375
+ "uiLabel": "On"
5376
+ },
5279
5377
  {
5280
5378
  "name": "on",
5281
5379
  "kind": "function",
@@ -5952,89 +6050,17 @@ exports.ADAPTABLE_METAMODEL = {
5952
6050
  "kind": "Interface",
5953
6051
  "description": "Provides run-time access to Filter section of Adaptable State.",
5954
6052
  "properties": [
5955
- {
5956
- "name": "clearAllColumnFilter",
5957
- "kind": "function",
5958
- "description": "Clears all Column Filters in State",
5959
- "uiLabel": "Clear All Column Filter"
5960
- },
5961
- {
5962
- "name": "clearAndSetColumnFilter",
5963
- "kind": "function",
5964
- "description": "Clears existing Column Filters and then sets the new ones",
5965
- "uiLabel": "Clear And Set Column Filter"
5966
- },
5967
- {
5968
- "name": "clearColumnFilter",
5969
- "kind": "function",
5970
- "description": "Clears given Column Filter",
5971
- "uiLabel": "Clear Column Filter"
5972
- },
5973
- {
5974
- "name": "clearColumnFilterByColumn",
5975
- "kind": "function",
5976
- "description": "Clears Column Filter for given Column",
5977
- "uiLabel": "Clear Column Filter By Column"
5978
- },
5979
- {
5980
- "name": "clearColumnFilterByColumns",
5981
- "kind": "function",
5982
- "description": "Clears Column Filters for given set of Columns",
5983
- "uiLabel": "Clear Column Filter By Columns"
5984
- },
5985
- {
5986
- "name": "columnFiltersToString",
5987
- "kind": "function",
5988
- "description": "Retrieves descriptions of given Column Filters",
5989
- "uiLabel": "Column Filters To String"
5990
- },
5991
- {
5992
- "name": "columnFilterToString",
5993
- "kind": "function",
5994
- "description": "Retrieves description of given Column Filter",
5995
- "uiLabel": "Column Filter To String"
5996
- },
5997
- {
5998
- "name": "createColumnFilterForCell",
5999
- "kind": "function",
6000
- "description": "Creates new Column Filter on given Column using Primary Key values",
6001
- "uiLabel": "Create Column Filter For Cell"
6002
- },
6003
- {
6004
- "name": "evaluateColumnFilter",
6005
- "kind": "function",
6006
- "description": "Calls AdapTableQL to evaluate Filter for given Row",
6007
- "uiLabel": "Evaluate Column Filter"
6008
- },
6009
6053
  {
6010
6054
  "name": "findPredicateDefByShortcut",
6011
6055
  "kind": "function",
6012
6056
  "description": "Returns Predicate Definition for given Column and Quick Filter shortcut",
6013
6057
  "uiLabel": "Find Predicate Def By Shortcut"
6014
6058
  },
6015
- {
6016
- "name": "getAllColumnFilter",
6017
- "kind": "function",
6018
- "description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
6019
- "uiLabel": "Get All Column Filter"
6020
- },
6021
- {
6022
- "name": "getAllColumnFilterForColumn",
6023
- "kind": "function",
6024
- "description": "Retrieves all Column Filters for given Column",
6025
- "uiLabel": "Get All Column Filter For Column"
6026
- },
6027
6059
  {
6028
6060
  "name": "getAllSystemFilterIds",
6029
- "kind": "function",
6030
- "description": "Retrieves Ids for all System Filters",
6031
- "uiLabel": "Get All System Filter Ids"
6032
- },
6033
- {
6034
- "name": "getColumnFilterById",
6035
- "kind": "function",
6036
- "description": "Retrieves ColumnFilter by Id",
6037
- "uiLabel": "Get Column Filter By Id"
6061
+ "kind": "function",
6062
+ "description": "Retrieves Ids for all System Filters",
6063
+ "uiLabel": "Get All System Filter Ids"
6038
6064
  },
6039
6065
  {
6040
6066
  "name": "getFilterPredicateDefsForColumn",
@@ -6048,12 +6074,6 @@ exports.ADAPTABLE_METAMODEL = {
6048
6074
  "description": "Gets all Filter Predicates available for a given ColumnId",
6049
6075
  "uiLabel": "Get Filter Predicate Defs For Column Id"
6050
6076
  },
6051
- {
6052
- "name": "getFilterState",
6053
- "kind": "function",
6054
- "description": "Retrieves Filter section from Adaptable State",
6055
- "uiLabel": "Get Filter State"
6056
- },
6057
6077
  {
6058
6078
  "name": "hideQuickFilterBar",
6059
6079
  "kind": "function",
@@ -6072,12 +6092,6 @@ exports.ADAPTABLE_METAMODEL = {
6072
6092
  "description": "Whether Quick Filter Form is currently visible",
6073
6093
  "uiLabel": "Is Quick Filter Visible"
6074
6094
  },
6075
- {
6076
- "name": "setColumnFilter",
6077
- "kind": "function",
6078
- "description": "Sets Column Filters - will replace filters for existing column and leave other column filters in place",
6079
- "uiLabel": "Set Column Filter"
6080
- },
6081
6095
  {
6082
6096
  "name": "showQuickFilterBar",
6083
6097
  "kind": "function",
@@ -6233,6 +6247,14 @@ exports.ADAPTABLE_METAMODEL = {
6233
6247
  "gridInfo": "item",
6234
6248
  "defaultValue": "'mouseenter'"
6235
6249
  },
6250
+ {
6251
+ "name": "showQuickFilter",
6252
+ "kind": "boolean",
6253
+ "description": "Whether to display Quick Filter Bar between Column Header and the Grid (provided its been setup)",
6254
+ "uiLabel": "Show Quick Filter",
6255
+ "isOptional": true,
6256
+ "defaultValue": "true"
6257
+ },
6236
6258
  {
6237
6259
  "name": "sortColumnValuesInFilter",
6238
6260
  "kind": "boolean",
@@ -6293,28 +6315,6 @@ exports.ADAPTABLE_METAMODEL = {
6293
6315
  }
6294
6316
  ]
6295
6317
  },
6296
- "FilterState": {
6297
- "name": "FilterState",
6298
- "kind": "Interface",
6299
- "description": "Predefined Configuration for Filters",
6300
- "properties": [
6301
- {
6302
- "name": "ColumnFilters",
6303
- "kind": "unknown",
6304
- "description": "Collection of Column Filters",
6305
- "uiLabel": "Column Filters",
6306
- "isOptional": true
6307
- },
6308
- {
6309
- "name": "IsQuickFilterVisible",
6310
- "kind": "boolean",
6311
- "description": "Whether to display Quick Filter Bar between Column Header and the Grid",
6312
- "uiLabel": "Is Quick Filter Visible",
6313
- "isOptional": true,
6314
- "defaultValue": "true"
6315
- }
6316
- ]
6317
- },
6318
6318
  "FinanceApi": {
6319
6319
  "name": "FinanceApi",
6320
6320
  "kind": "Interface",
@@ -7174,15 +7174,6 @@ exports.ADAPTABLE_METAMODEL = {
7174
7174
  "isOptional": true,
7175
7175
  "defaultValue": "null"
7176
7176
  },
7177
- {
7178
- "name": "autoOrderGroupedColumns",
7179
- "kind": "boolean",
7180
- "description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
7181
- "uiLabel": "Auto Order Grouped Columns",
7182
- "isOptional": true,
7183
- "gridInfo": "item",
7184
- "defaultValue": "true"
7185
- },
7186
7177
  {
7187
7178
  "name": "cellSummaryOperations",
7188
7179
  "kind": "unknown",
@@ -7206,6 +7197,13 @@ exports.ADAPTABLE_METAMODEL = {
7206
7197
  "uiLabel": "Custom Sort Comparers",
7207
7198
  "isOptional": true
7208
7199
  },
7200
+ {
7201
+ "name": "dataSets",
7202
+ "kind": "unknown",
7203
+ "description": "Collection of Data Sets to provide Data to AdapTable",
7204
+ "uiLabel": "Data Sets",
7205
+ "isOptional": true
7206
+ },
7209
7207
  {
7210
7208
  "name": "englishVariant",
7211
7209
  "kind": "unknown",
@@ -7215,15 +7213,6 @@ exports.ADAPTABLE_METAMODEL = {
7215
7213
  "gridInfo": "item",
7216
7214
  "defaultValue": "'GB'"
7217
7215
  },
7218
- {
7219
- "name": "hideColumnWhenGrouped",
7220
- "kind": "boolean",
7221
- "description": "Automatically removes a column from the grid when it becomes Row Grouped",
7222
- "uiLabel": "Hide Column When Grouped",
7223
- "isOptional": true,
7224
- "gridInfo": "item",
7225
- "defaultValue": "false"
7226
- },
7227
7216
  {
7228
7217
  "name": "hideEmptyGroupRows",
7229
7218
  "kind": "boolean",
@@ -7241,15 +7230,6 @@ exports.ADAPTABLE_METAMODEL = {
7241
7230
  "gridInfo": "item",
7242
7231
  "defaultValue": "false"
7243
7232
  },
7244
- {
7245
- "name": "showMissingColumnsWarning",
7246
- "kind": "boolean",
7247
- "description": "Show warning if AdapTable cannot find a column",
7248
- "uiLabel": "Show Missing Columns Warning",
7249
- "isOptional": true,
7250
- "gridInfo": "item",
7251
- "defaultValue": "true"
7252
- },
7253
7233
  {
7254
7234
  "name": "showMissingPrimaryKeyAlert",
7255
7235
  "kind": "boolean",
@@ -8668,6 +8648,13 @@ exports.ADAPTABLE_METAMODEL = {
8668
8648
  "uiLabel": "Auto Save",
8669
8649
  "isOptional": true
8670
8650
  },
8651
+ {
8652
+ "name": "ColumnFilters",
8653
+ "kind": "unknown",
8654
+ "description": "Collection of Column Filters.",
8655
+ "uiLabel": "Column Filters",
8656
+ "isOptional": true
8657
+ },
8671
8658
  {
8672
8659
  "name": "ColumnHeadersMap",
8673
8660
  "kind": "unknown",
@@ -8762,6 +8749,36 @@ exports.ADAPTABLE_METAMODEL = {
8762
8749
  "description": "Compares 2 Layouts for equality",
8763
8750
  "uiLabel": "Are Layouts Equal"
8764
8751
  },
8752
+ {
8753
+ "name": "clearAllColumnFilter",
8754
+ "kind": "function",
8755
+ "description": "Clears all Column Filters in State",
8756
+ "uiLabel": "Clear All Column Filter"
8757
+ },
8758
+ {
8759
+ "name": "clearAndSetColumnFilter",
8760
+ "kind": "function",
8761
+ "description": "Clears existing Column Filters and then sets the new ones",
8762
+ "uiLabel": "Clear And Set Column Filter"
8763
+ },
8764
+ {
8765
+ "name": "clearColumnFilter",
8766
+ "kind": "function",
8767
+ "description": "Clears given Column Filter",
8768
+ "uiLabel": "Clear Column Filter"
8769
+ },
8770
+ {
8771
+ "name": "clearColumnFilterByColumn",
8772
+ "kind": "function",
8773
+ "description": "Clears Column Filter for given Column",
8774
+ "uiLabel": "Clear Column Filter By Column"
8775
+ },
8776
+ {
8777
+ "name": "clearColumnFilterByColumns",
8778
+ "kind": "function",
8779
+ "description": "Clears Column Filters for given set of Columns",
8780
+ "uiLabel": "Clear Column Filter By Columns"
8781
+ },
8765
8782
  {
8766
8783
  "name": "cloneAndSetLayout",
8767
8784
  "kind": "function",
@@ -8774,12 +8791,30 @@ exports.ADAPTABLE_METAMODEL = {
8774
8791
  "description": "Creates new Layout based on given Layout but with name provided",
8775
8792
  "uiLabel": "Clone Layout"
8776
8793
  },
8794
+ {
8795
+ "name": "columnFiltersToString",
8796
+ "kind": "function",
8797
+ "description": "Retrieves descriptions of given Column Filters",
8798
+ "uiLabel": "Column Filters To String"
8799
+ },
8800
+ {
8801
+ "name": "columnFilterToString",
8802
+ "kind": "function",
8803
+ "description": "Retrieves description of given Column Filter",
8804
+ "uiLabel": "Column Filter To String"
8805
+ },
8777
8806
  {
8778
8807
  "name": "createAndSetLayout",
8779
8808
  "kind": "function",
8780
8809
  "description": "Creates new Layout in the state and then loads it into Grid",
8781
8810
  "uiLabel": "Create And Set Layout"
8782
8811
  },
8812
+ {
8813
+ "name": "createColumnFilterForCell",
8814
+ "kind": "function",
8815
+ "description": "Creates new Column Filter on given Column using Primary Key values",
8816
+ "uiLabel": "Create Column Filter For Cell"
8817
+ },
8783
8818
  {
8784
8819
  "name": "createDefaultLayoutIfNeeded",
8785
8820
  "kind": "function",
@@ -8816,18 +8851,42 @@ exports.ADAPTABLE_METAMODEL = {
8816
8851
  "description": "Checks whether this Layout exists in the Adaptable State (by comparing Uuid property)",
8817
8852
  "uiLabel": "Does Layout Exist"
8818
8853
  },
8854
+ {
8855
+ "name": "evaluateColumnFilter",
8856
+ "kind": "function",
8857
+ "description": "Calls AdapTableQL to evaluate Filter for given Row",
8858
+ "uiLabel": "Evaluate Column Filter"
8859
+ },
8819
8860
  {
8820
8861
  "name": "fireLayoutChangedEvent",
8821
8862
  "kind": "function",
8822
8863
  "description": "Fires the `LayoutChanged` event",
8823
8864
  "uiLabel": "Fire Layout Changed Event"
8824
8865
  },
8866
+ {
8867
+ "name": "getAllColumnFilter",
8868
+ "kind": "function",
8869
+ "description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
8870
+ "uiLabel": "Get All Column Filter"
8871
+ },
8872
+ {
8873
+ "name": "getAllColumnFilterForColumn",
8874
+ "kind": "function",
8875
+ "description": "Retrieves all Column Filters for given Column",
8876
+ "uiLabel": "Get All Column Filter For Column"
8877
+ },
8825
8878
  {
8826
8879
  "name": "getAllLayout",
8827
8880
  "kind": "function",
8828
8881
  "description": "Retrieves all Layouts in Adaptable State",
8829
8882
  "uiLabel": "Get All Layout"
8830
8883
  },
8884
+ {
8885
+ "name": "getColumnFilterById",
8886
+ "kind": "function",
8887
+ "description": "Retrieves ColumnFilter by Id",
8888
+ "uiLabel": "Get Column Filter By Id"
8889
+ },
8831
8890
  {
8832
8891
  "name": "getCurrentLayout",
8833
8892
  "kind": "function",
@@ -8906,6 +8965,24 @@ exports.ADAPTABLE_METAMODEL = {
8906
8965
  "description": "Does an object's Tags include the Current Layout",
8907
8966
  "uiLabel": "Is Object Available In Current Layout"
8908
8967
  },
8968
+ {
8969
+ "name": "removeColumnFromAllLayouts",
8970
+ "kind": "function",
8971
+ "description": "Removes a Column from all Layouts",
8972
+ "uiLabel": "Remove Column From All Layouts"
8973
+ },
8974
+ {
8975
+ "name": "removeColumnFromCurrentLayout",
8976
+ "kind": "function",
8977
+ "description": "Removes a Column from the Current Layout",
8978
+ "uiLabel": "Remove Column From Current Layout"
8979
+ },
8980
+ {
8981
+ "name": "removeColumnFromLayout",
8982
+ "kind": "function",
8983
+ "description": "Removes a Column from a given Layout",
8984
+ "uiLabel": "Remove Column From Layout"
8985
+ },
8909
8986
  {
8910
8987
  "name": "saveCurrentLayout",
8911
8988
  "kind": "function",
@@ -8924,6 +9001,12 @@ exports.ADAPTABLE_METAMODEL = {
8924
9001
  "description": "Sets a new Caption / Header for a Column (this Layout only)",
8925
9002
  "uiLabel": "Set Column Caption"
8926
9003
  },
9004
+ {
9005
+ "name": "setColumnFilter",
9006
+ "kind": "function",
9007
+ "description": "Sets Column Filters - will replace filters for existing column and leave other column filters in place",
9008
+ "uiLabel": "Set Column Filter"
9009
+ },
8927
9010
  {
8928
9011
  "name": "setLayout",
8929
9012
  "kind": "function",
@@ -9180,6 +9263,27 @@ exports.ADAPTABLE_METAMODEL = {
9180
9263
  }
9181
9264
  ]
9182
9265
  },
9266
+ "MasterDetailPluginOptions": {
9267
+ "name": "MasterDetailPluginOptions",
9268
+ "kind": "Interface",
9269
+ "description": "Plugin Options used when creating a Master / Detail grid - passed into the plugin as the only argument.",
9270
+ "properties": [
9271
+ {
9272
+ "name": "detailAdaptableOptions",
9273
+ "kind": "REFERENCE",
9274
+ "description": "`AdaptableOptions` object to use for child Data Grids; **all** will share the same behaviour and State",
9275
+ "uiLabel": "Detail Adaptable Options",
9276
+ "reference": "AdaptableOptions"
9277
+ },
9278
+ {
9279
+ "name": "onDetailInit",
9280
+ "kind": "unknown",
9281
+ "description": "Function called when Detail Grid is initialised (i.e. opens) receives an Adaptable Api object",
9282
+ "uiLabel": "On Detail Init",
9283
+ "isOptional": true
9284
+ }
9285
+ ]
9286
+ },
9183
9287
  "MenuOptions": {
9184
9288
  "name": "MenuOptions",
9185
9289
  "kind": "Interface",
@@ -10098,14 +10202,6 @@ exports.ADAPTABLE_METAMODEL = {
10098
10202
  "isOptional": true,
10099
10203
  "reference": "DashboardState"
10100
10204
  },
10101
- {
10102
- "name": "DataSource",
10103
- "kind": "REFERENCE",
10104
- "description": "Supplies a collection of *DataSource* objects to facilitate replacing the DataSource in the Grid with an alternate set of data (e.g. a Book or Stored Proc name)",
10105
- "uiLabel": "Data Source",
10106
- "isOptional": true,
10107
- "reference": "DataSourceState"
10108
- },
10109
10205
  {
10110
10206
  "name": "Export",
10111
10207
  "kind": "REFERENCE",
@@ -10114,14 +10210,6 @@ exports.ADAPTABLE_METAMODEL = {
10114
10210
  "isOptional": true,
10115
10211
  "reference": "ExportState"
10116
10212
  },
10117
- {
10118
- "name": "Filter",
10119
- "kind": "REFERENCE",
10120
- "description": "Stores Filters in AdapTable - both System and Column (predicate) Filters",
10121
- "uiLabel": "Filter",
10122
- "isOptional": true,
10123
- "reference": "FilterState"
10124
- },
10125
10213
  {
10126
10214
  "name": "FlashingCell",
10127
10215
  "kind": "REFERENCE",
@@ -10200,7 +10288,7 @@ exports.ADAPTABLE_METAMODEL = {
10200
10288
  "description": "Configures the Adaptable Status Bar",
10201
10289
  "uiLabel": "Status Bar",
10202
10290
  "isOptional": true,
10203
- "reference": "unknown"
10291
+ "reference": "StatusBarState"
10204
10292
  },
10205
10293
  {
10206
10294
  "name": "Theme",
@@ -11623,10 +11711,16 @@ exports.ADAPTABLE_METAMODEL = {
11623
11711
  "description": "Returns current Smart Edit Value",
11624
11712
  "uiLabel": "Get Smart Edit Value"
11625
11713
  },
11714
+ {
11715
+ "name": "setCustomSmartEditOperation",
11716
+ "kind": "function",
11717
+ "description": "Sets current Smart Edit Operation to a Custom Operation",
11718
+ "uiLabel": "Set Custom Smart Edit Operation"
11719
+ },
11626
11720
  {
11627
11721
  "name": "setSmartEditOperation",
11628
11722
  "kind": "function",
11629
- "description": "Sets Smart Edit operation: ('Add','Subtract','Multiply','Divide'",
11723
+ "description": "Sets (shipped) Smart Edit Operation: 'Add','Subtract','Multiply','Divide'",
11630
11724
  "uiLabel": "Set Smart Edit Operation"
11631
11725
  },
11632
11726
  {
@@ -11814,6 +11908,21 @@ exports.ADAPTABLE_METAMODEL = {
11814
11908
  }
11815
11909
  ]
11816
11910
  },
11911
+ "StatusBarState": {
11912
+ "name": "StatusBarState",
11913
+ "kind": "Interface",
11914
+ "description": "Predefined Configuration for the Adaptable Status Bar",
11915
+ "properties": [
11916
+ {
11917
+ "name": "StatusBars",
11918
+ "kind": "unknown",
11919
+ "description": "Adaptable Status Bars to display - up to 3 can be shown",
11920
+ "uiLabel": "Status Bars",
11921
+ "isOptional": true,
11922
+ "defaultValue": "null"
11923
+ }
11924
+ ]
11925
+ },
11817
11926
  "StringFormatterOptions": {
11818
11927
  "name": "StringFormatterOptions",
11819
11928
  "kind": "Interface",
@@ -11992,15 +12101,9 @@ exports.ADAPTABLE_METAMODEL = {
11992
12101
  {
11993
12102
  "name": "getSharedEntities",
11994
12103
  "kind": "function",
11995
- "description": "Retrieves all Shared Entities in Team Sharing State",
12104
+ "description": "Retrieves all shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.getSharedEntities(...)` method.",
11996
12105
  "uiLabel": "Get Shared Entities"
11997
12106
  },
11998
- {
11999
- "name": "getTeamSharingState",
12000
- "kind": "function",
12001
- "description": "Retrieves Team Sharing section of State",
12002
- "uiLabel": "Get Team Sharing State"
12003
- },
12004
12107
  {
12005
12108
  "name": "hasTeamSharingFullRights",
12006
12109
  "kind": "function",
@@ -12013,6 +12116,18 @@ exports.ADAPTABLE_METAMODEL = {
12013
12116
  "description": "Whether Team Sharing is Activated",
12014
12117
  "uiLabel": "Is Team Sharing Activated"
12015
12118
  },
12119
+ {
12120
+ "name": "isTeamSharingAvailable",
12121
+ "kind": "function",
12122
+ "description": "Whether Team Sharing is Available to use",
12123
+ "uiLabel": "Is Team Sharing Available"
12124
+ },
12125
+ {
12126
+ "name": "setSharedEntities",
12127
+ "kind": "function",
12128
+ "description": "Sets the shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.setSharedEntities(...)` method.",
12129
+ "uiLabel": "Set Shared Entities"
12130
+ },
12016
12131
  {
12017
12132
  "name": "shareEntity",
12018
12133
  "kind": "function",
@@ -12024,6 +12139,12 @@ exports.ADAPTABLE_METAMODEL = {
12024
12139
  "kind": "function",
12025
12140
  "description": "Opens Settings Panel with Team Sharing section selected and visible",
12026
12141
  "uiLabel": "Show Team Sharing Popup"
12142
+ },
12143
+ {
12144
+ "name": "unshareEntity",
12145
+ "kind": "function",
12146
+ "description": "Removes an Adaptable Object from the Team Share.",
12147
+ "uiLabel": "Unshare Entity"
12027
12148
  }
12028
12149
  ]
12029
12150
  },
@@ -12324,15 +12445,6 @@ exports.ADAPTABLE_METAMODEL = {
12324
12445
  "kind": "Interface",
12325
12446
  "description": "Options related to managing the AdapTable ToolPanel Component",
12326
12447
  "properties": [
12327
- {
12328
- "name": "adaptableToolPanelTitle",
12329
- "kind": "string",
12330
- "description": "Title for AdapTable ToolPanel Component - appears vertically at side",
12331
- "uiLabel": "Adaptable Tool Panel Title",
12332
- "isOptional": true,
12333
- "gridInfo": "item",
12334
- "defaultValue": "'AdapTable'"
12335
- },
12336
12448
  {
12337
12449
  "name": "customButtons",
12338
12450
  "kind": "unknown",
@@ -12347,40 +12459,6 @@ exports.ADAPTABLE_METAMODEL = {
12347
12459
  "uiLabel": "Custom Tool Panels",
12348
12460
  "isOptional": true
12349
12461
  },
12350
- {
12351
- "name": "iconKey",
12352
- "kind": "string",
12353
- "description": "Key of icon to be used (beside the label) for Adaptable ToolPanel Component",
12354
- "uiLabel": "Icon Key",
12355
- "isOptional": true,
12356
- "gridInfo": "item",
12357
- "defaultValue": "'menu'"
12358
- },
12359
- {
12360
- "name": "maxWidth",
12361
- "kind": "number",
12362
- "description": "The max width of AdapTable ToolPanel",
12363
- "uiLabel": "Max Width",
12364
- "isOptional": true,
12365
- "defaultValue": "undefined"
12366
- },
12367
- {
12368
- "name": "minWidth",
12369
- "kind": "number",
12370
- "description": "The min width of AdapTable ToolPanel",
12371
- "uiLabel": "Min Width",
12372
- "isOptional": true,
12373
- "defaultValue": "var(--ab-cmp-toolpanel__width)"
12374
- },
12375
- {
12376
- "name": "showAdaptableToolPanel",
12377
- "kind": "boolean",
12378
- "description": "Displays Adaptable ToolPanel Component (only if AG Grid Sidebar is provided)",
12379
- "uiLabel": "Show Adaptable Tool Panel",
12380
- "isOptional": true,
12381
- "gridInfo": "item",
12382
- "defaultValue": "true"
12383
- },
12384
12462
  {
12385
12463
  "name": "showToolPanelsDropdown",
12386
12464
  "kind": "boolean",
@@ -12389,22 +12467,6 @@ exports.ADAPTABLE_METAMODEL = {
12389
12467
  "isOptional": true,
12390
12468
  "gridInfo": "item",
12391
12469
  "defaultValue": "true"
12392
- },
12393
- {
12394
- "name": "toolPanelOrder",
12395
- "kind": "unknown",
12396
- "description": "Order of displayed ToolPanels in Sidebar",
12397
- "uiLabel": "Tool Panel Order",
12398
- "isOptional": true,
12399
- "defaultValue": "['filters', 'columns', 'adaptable']"
12400
- },
12401
- {
12402
- "name": "width",
12403
- "kind": "number",
12404
- "description": "The initial width of AdapTable ToolPanel",
12405
- "uiLabel": "Width",
12406
- "isOptional": true,
12407
- "defaultValue": "var(--ab-cmp-toolpanel__width)"
12408
12470
  }
12409
12471
  ]
12410
12472
  },
@@ -12546,11 +12608,12 @@ exports.ADAPTABLE_METAMODEL = {
12546
12608
  "description": "Options for managing the User Interface of AdapTable",
12547
12609
  "properties": [
12548
12610
  {
12549
- "name": "actionColumns",
12550
- "kind": "unknown",
12551
- "description": "Columns which contain an AdapTable Button - used for performing Actions",
12552
- "uiLabel": "Action Columns",
12553
- "isOptional": true
12611
+ "name": "actionOptions",
12612
+ "kind": "REFERENCE",
12613
+ "description": "Options for creating Action Columns and Buttons",
12614
+ "uiLabel": "Action Options",
12615
+ "isOptional": true,
12616
+ "reference": "ActionOptions"
12554
12617
  },
12555
12618
  {
12556
12619
  "name": "applicationIcon",
@@ -12576,10 +12639,10 @@ exports.ADAPTABLE_METAMODEL = {
12576
12639
  "isOptional": true
12577
12640
  },
12578
12641
  {
12579
- "name": "columnTypes",
12642
+ "name": "customDisplayFormatters",
12580
12643
  "kind": "unknown",
12581
- "description": "Optional list of Column Types - used primarily for special columns",
12582
- "uiLabel": "Column Types",
12644
+ "description": "Custom Formatters to use in the Format Column Module",
12645
+ "uiLabel": "Custom Display Formatters",
12583
12646
  "isOptional": true
12584
12647
  },
12585
12648
  {
@@ -12650,22 +12713,6 @@ exports.ADAPTABLE_METAMODEL = {
12650
12713
  "isOptional": true,
12651
12714
  "reference": "AdaptableStyle"
12652
12715
  },
12653
- {
12654
- "name": "rowActionButtons",
12655
- "kind": "unknown",
12656
- "description": "Action buttons to display for each row.",
12657
- "uiLabel": "Row Action Buttons",
12658
- "isOptional": true,
12659
- "defaultValue": "undefined"
12660
- },
12661
- {
12662
- "name": "rowActionButtonsPosition",
12663
- "kind": "unknown",
12664
- "description": "Position of the action buttons",
12665
- "uiLabel": "Row Action Buttons Position",
12666
- "isOptional": true,
12667
- "defaultValue": "'pinnedLeft'"
12668
- },
12669
12716
  {
12670
12717
  "name": "showAdapTableVersion",
12671
12718
  "kind": "boolean",