@adaptabletools/adaptable 10.0.4-canary.1 → 10.0.4-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 (179) hide show
  1. package/LICENSE.md +1 -1
  2. package/README.md +1 -1
  3. package/base.css +16 -6
  4. package/bundle.cjs.js +350 -0
  5. package/index.css +20 -6
  6. package/package.json +1 -5
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +14 -12
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
  12. package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
  13. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  14. package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
  15. package/src/AdaptableOptions/EditOptions.d.ts +2 -3
  16. package/src/AdaptableOptions/FilterOptions.d.ts +8 -8
  17. package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
  18. package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
  19. package/src/AdaptableOptions/NotificationsOptions.d.ts +8 -0
  20. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  21. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
  22. package/src/Api/AdaptableApi.d.ts +12 -12
  23. package/src/Api/ColumnApi.d.ts +10 -5
  24. package/src/Api/EventApi.d.ts +1 -1
  25. package/src/Api/Events/AdaptableReady.d.ts +3 -2
  26. package/src/Api/GridApi.d.ts +10 -10
  27. package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -3
  28. package/src/Api/Implementation/ColumnApiImpl.js +11 -9
  29. package/src/Api/Implementation/ConfigApiImpl.js +0 -24
  30. package/src/Api/Implementation/GridApiImpl.d.ts +2 -2
  31. package/src/Api/Implementation/GridApiImpl.js +3 -4
  32. package/src/Api/Implementation/InternalApiImpl.d.ts +1 -1
  33. package/src/Api/Implementation/InternalApiImpl.js +2 -2
  34. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  35. package/src/Api/Implementation/LayoutApiImpl.js +15 -0
  36. package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
  37. package/src/Api/Implementation/PluginsApiImpl.js +1 -1
  38. package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
  39. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  40. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +3 -3
  41. package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
  42. package/src/Api/InternalApi.d.ts +1 -1
  43. package/src/Api/LayoutApi.d.ts +7 -0
  44. package/src/Api/PluginsApi.d.ts +1 -7
  45. package/src/Api/TeamSharingApi.d.ts +1 -1
  46. package/src/Api/ThemeApi.d.ts +2 -2
  47. package/src/Api/UserInterfaceApi.d.ts +3 -3
  48. package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
  49. package/src/PredefinedConfig/AlertState.d.ts +1 -1
  50. package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
  51. package/src/PredefinedConfig/CalculatedColumnState.d.ts +1 -1
  52. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +3 -3
  53. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
  54. package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
  55. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
  56. package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
  57. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  58. package/src/PredefinedConfig/Common/Types.d.ts +5 -5
  59. package/src/PredefinedConfig/Common/Types.js +9 -7
  60. package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
  61. package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
  62. package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
  63. package/src/PredefinedConfig/ExportState.d.ts +3 -3
  64. package/src/PredefinedConfig/FilterState.d.ts +2 -2
  65. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  66. package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
  67. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  68. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
  69. package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
  70. package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
  71. package/src/PredefinedConfig/ThemeState.d.ts +5 -1
  72. package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
  73. package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
  74. package/src/Redux/ActionsReducers/GridRedux.js +2 -2
  75. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
  76. package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
  77. package/src/Redux/DeadRedux.d.ts +4 -8
  78. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
  79. package/src/Redux/Store/AdaptableStore.d.ts +3 -3
  80. package/src/Redux/Store/AdaptableStore.js +18 -13
  81. package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
  82. package/src/Strategy/AlertModule.d.ts +2 -2
  83. package/src/Strategy/AlertModule.js +1 -94
  84. package/src/Strategy/BulkUpdateModule.d.ts +2 -2
  85. package/src/Strategy/BulkUpdateModule.js +4 -4
  86. package/src/Strategy/CellSummaryModule.d.ts +2 -2
  87. package/src/Strategy/DashboardModule.d.ts +2 -2
  88. package/src/Strategy/DataChangeHistoryModule.js +2 -2
  89. package/src/Strategy/ExportModule.d.ts +2 -2
  90. package/src/Strategy/FilterModule.d.ts +2 -2
  91. package/src/Strategy/FormatColumnModule.js +1 -1
  92. package/src/Strategy/GridInfoModule.d.ts +2 -2
  93. package/src/Strategy/Interface/IModule.d.ts +2 -2
  94. package/src/Strategy/LayoutModule.d.ts +2 -2
  95. package/src/Strategy/LayoutModule.js +21 -8
  96. package/src/Strategy/SmartEditModule.d.ts +2 -2
  97. package/src/Strategy/SmartEditModule.js +3 -4
  98. package/src/Strategy/SystemStatusModule.d.ts +2 -2
  99. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  100. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  101. package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
  102. package/src/Utilities/Constants/ModuleConstants.js +7 -7
  103. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +8 -7
  104. package/src/Utilities/Helpers/PreviewHelper.js +2 -2
  105. package/src/Utilities/Interface/Preview.d.ts +2 -1
  106. package/src/Utilities/Services/LicenseService.js +16 -2
  107. package/src/Utilities/Services/ValidationService.js +1 -1
  108. package/src/View/AdaptableViewFactory.d.ts +2 -1
  109. package/src/View/AdaptableViewFactory.js +2 -0
  110. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
  111. package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
  112. package/src/View/Components/FilterForm/FilterForm.js +5 -7
  113. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +1 -1
  114. package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
  115. package/src/View/Components/FilterForm/QuickFilterForm.js +3 -5
  116. package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
  117. package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
  118. package/src/View/Components/Popups/AdaptablePopupAlert.js +22 -9
  119. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -4
  120. package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
  121. package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
  122. package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
  123. package/src/View/CustomSort/CustomSortPopup.js +1 -1
  124. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
  125. package/src/View/Dashboard/Dashboard.js +3 -3
  126. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
  127. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -5
  128. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
  129. package/src/View/Export/ExportViewPanel.js +6 -6
  130. package/src/View/GridInfo/GridOptionsComponent.js +1 -1
  131. package/src/View/Layout/LayoutViewPanel.js +2 -2
  132. package/src/View/Query/QueryViewPanel.js +1 -1
  133. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
  134. package/src/View/Schedule/SchedulePopup.js +3 -3
  135. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
  136. package/src/View/SmartEdit/SmartEditPopup.js +1 -1
  137. package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
  138. package/src/View/StateManagement/StateManagementPopup.js +21 -114
  139. package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
  140. package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
  141. package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
  142. package/src/View/StateManagement/components/ClearButton.js +9 -0
  143. package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
  144. package/src/View/StateManagement/components/ExportDropdown.js +43 -0
  145. package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
  146. package/src/View/StateManagement/components/LoadButton.js +38 -0
  147. package/src/View/StateManagement/handleExportState.d.ts +1 -0
  148. package/src/View/StateManagement/handleExportState.js +22 -0
  149. package/src/View/Theme/ThemeViewPanel.js +1 -1
  150. package/src/agGrid/Adaptable.d.ts +9 -8
  151. package/src/agGrid/Adaptable.js +99 -78
  152. package/src/agGrid/agGridHelper.d.ts +4 -4
  153. package/src/agGrid/agGridHelper.js +15 -16
  154. package/src/agGrid/agGridMenuHelper.d.ts +15 -13
  155. package/src/agGrid/agGridMenuHelper.js +53 -45
  156. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
  157. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
  158. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
  159. package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
  160. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
  161. package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
  162. package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
  163. package/src/components/Datepicker/index.js +9 -5
  164. package/src/components/Modal/index.d.ts +1 -1
  165. package/src/components/OverlayTrigger/index.js +3 -3
  166. package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
  167. package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
  168. package/src/components/ProgressIndicator/ProgressIndicator.js +1 -1
  169. package/src/components/icons/index.js +2 -0
  170. package/src/components/icons/upload.d.ts +3 -0
  171. package/src/components/icons/upload.js +8 -0
  172. package/src/metamodel/adaptable.metamodel.d.ts +52 -37
  173. package/src/metamodel/adaptable.metamodel.js +261 -265
  174. package/src/types.d.ts +1 -1
  175. package/version.d.ts +1 -1
  176. package/version.js +1 -1
  177. package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
  178. package/src/PredefinedConfig/DeprecatedState.js +0 -5
  179. package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
@@ -69,7 +69,7 @@ exports.ADAPTABLE_METAMODEL = {
69
69
  {
70
70
  "name": "rowNode",
71
71
  "kind": "REFERENCE",
72
- "description": "Current Row Node",
72
+ "description": "Current AG Grid Row Node",
73
73
  "uiLabel": "Row Node",
74
74
  "reference": "unknown"
75
75
  }
@@ -107,7 +107,7 @@ exports.ADAPTABLE_METAMODEL = {
107
107
  {
108
108
  "name": "width",
109
109
  "kind": "number",
110
- "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
110
+ "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
111
111
  "uiLabel": "Width",
112
112
  "isOptional": true
113
113
  }
@@ -477,7 +477,7 @@ exports.ADAPTABLE_METAMODEL = {
477
477
  "AdaptableColumn": {
478
478
  "name": "AdaptableColumn",
479
479
  "kind": "Interface",
480
- "description": "Defines an Adaptable Column - created at run-time based on vendor grid column definition",
480
+ "description": "Defines an Adaptable Column - created at run-time based on AG Grid column definition",
481
481
  "properties": [
482
482
  {
483
483
  "name": "aggregatable",
@@ -615,7 +615,7 @@ exports.ADAPTABLE_METAMODEL = {
615
615
  {
616
616
  "name": "columnId",
617
617
  "kind": "string",
618
- "description": "Name of Column in underlying grid (e.g. field or colId)",
618
+ "description": "Name of Column in AG Grid (e.g. field or colId)",
619
619
  "uiLabel": "Column Id"
620
620
  },
621
621
  {
@@ -627,7 +627,7 @@ exports.ADAPTABLE_METAMODEL = {
627
627
  {
628
628
  "name": "friendlyName",
629
629
  "kind": "string",
630
- "description": "How Column is referred to in Adaptable UI; 'Caption' or 'Header' property in underlying grid",
630
+ "description": "How Column is referred to in Adaptable UI; `Caption` property in AG Grid",
631
631
  "uiLabel": "Friendly Name"
632
632
  }
633
633
  ]
@@ -841,21 +841,21 @@ exports.ADAPTABLE_METAMODEL = {
841
841
  {
842
842
  "name": "module",
843
843
  "kind": "unknown",
844
- "description": "Adaptable Module associated with (shipped) menu item.",
844
+ "description": "Adaptable Module associated with (Adaptable) menu item.",
845
845
  "uiLabel": "Module",
846
846
  "isOptional": true
847
847
  },
848
848
  {
849
849
  "name": "onClick",
850
850
  "kind": "unknown",
851
- "description": "Function to invoice when (custom) menu item is clicked",
851
+ "description": "Function to invoke when (custom) menu item is clicked",
852
852
  "uiLabel": "On Click",
853
853
  "isOptional": true
854
854
  },
855
855
  {
856
856
  "name": "reduxAction",
857
857
  "kind": "unknown",
858
- "description": "Adaptable Redux Action to invoke when (shipped) menu item is clicked",
858
+ "description": "Adaptable Redux Action to invoke when (Adaptable) menu item is clicked",
859
859
  "uiLabel": "Redux Action",
860
860
  "isOptional": true
861
861
  },
@@ -905,7 +905,7 @@ exports.ADAPTABLE_METAMODEL = {
905
905
  "AdaptableOptions": {
906
906
  "name": "AdaptableOptions",
907
907
  "kind": "Interface",
908
- "description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides Vendor Grid, Predefined Config and other information required to ensure a full, rich user experience",
908
+ "description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides AG Grid, Predefined Config and other information required to ensure a full, rich user experience",
909
909
  "properties": [
910
910
  {
911
911
  "name": "adaptableId",
@@ -937,7 +937,7 @@ exports.ADAPTABLE_METAMODEL = {
937
937
  {
938
938
  "name": "containerOptions",
939
939
  "kind": "REFERENCE",
940
- "description": "Options for setting the 'Div' elements in which AdapTable, the underlying grid, popups and charts are placed",
940
+ "description": "Options for setting the 'Div' elements in which AdapTable, AG Grid, popups and charts are placed",
941
941
  "uiLabel": "Container Options",
942
942
  "isOptional": true,
943
943
  "reference": "ContainerOptions"
@@ -1134,7 +1134,7 @@ exports.ADAPTABLE_METAMODEL = {
1134
1134
  {
1135
1135
  "name": "vendorGrid",
1136
1136
  "kind": "unknown",
1137
- "description": "Underlying vendor grid or grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property (as `gridOptions` is a separate prop and AdapTable wires up everything)",
1137
+ "description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property (as `gridOptions` is a separate prop and AdapTable wires up everything)",
1138
1138
  "uiLabel": "Vendor Grid",
1139
1139
  "isOptional": true,
1140
1140
  "defaultValue": "n/a (Mandatory)"
@@ -1154,14 +1154,14 @@ exports.ADAPTABLE_METAMODEL = {
1154
1154
  {
1155
1155
  "name": "Inputs",
1156
1156
  "kind": "unknown",
1157
- "description": "Optional inputs - needed to evaluate some Predicates (e.g. 'GreaterThan')",
1157
+ "description": "Optional Inputs that might be needed for evaluation",
1158
1158
  "uiLabel": "Inputs",
1159
1159
  "isOptional": true
1160
1160
  },
1161
1161
  {
1162
1162
  "name": "PredicateId",
1163
1163
  "kind": "string",
1164
- "description": "Id of Predicate (e.g. 'Equals', 'GreaterThan')",
1164
+ "description": "Id of Predicate (e.g. `Equals`, `GreaterThan`)",
1165
1165
  "uiLabel": "Predicate Id"
1166
1166
  }
1167
1167
  ]
@@ -1213,13 +1213,13 @@ exports.ADAPTABLE_METAMODEL = {
1213
1213
  {
1214
1214
  "name": "moduleScope",
1215
1215
  "kind": "unknown",
1216
- "description": "Adaptable Modules where Predicate can run",
1216
+ "description": "Modules where Predicate can run: 'filter', 'alert', 'conditionalstyle'",
1217
1217
  "uiLabel": "Module Scope"
1218
1218
  },
1219
1219
  {
1220
1220
  "name": "onlyQuickFilter",
1221
1221
  "kind": "boolean",
1222
- "description": "Wether to display this predicate only in QuickFilter (and NOT in Column Filter)",
1222
+ "description": "Display this predicate only in Quick Filter Bar (and NOT in Filter Form)",
1223
1223
  "uiLabel": "Only Quick Filter",
1224
1224
  "isOptional": true
1225
1225
  },
@@ -1245,10 +1245,11 @@ exports.ADAPTABLE_METAMODEL = {
1245
1245
  "description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
1246
1246
  "properties": [
1247
1247
  {
1248
- "name": "vendorGrid",
1249
- "kind": "unknown",
1250
- "description": "Instance of the underlying vendor grid (e.g. for AG Grid its the GridOptions object)",
1251
- "uiLabel": "Vendor Grid"
1248
+ "name": "gridOptions",
1249
+ "kind": "REFERENCE",
1250
+ "description": "Underlying AG Grid instance",
1251
+ "uiLabel": "Grid Options",
1252
+ "reference": "unknown"
1252
1253
  }
1253
1254
  ]
1254
1255
  },
@@ -1377,49 +1378,49 @@ exports.ADAPTABLE_METAMODEL = {
1377
1378
  {
1378
1379
  "name": "BackColor",
1379
1380
  "kind": "string",
1380
- "description": "Colour background of cell - provide a hex value.",
1381
+ "description": "Colour background of cell: provide hex value or name",
1381
1382
  "uiLabel": "Back Color",
1382
1383
  "isOptional": true
1383
1384
  },
1384
1385
  {
1385
1386
  "name": "BorderColor",
1386
1387
  "kind": "string",
1387
- "description": "Colour of cell border - provide a hex value.",
1388
+ "description": "Colour of cell border: provide hex value or name",
1388
1389
  "uiLabel": "Border Color",
1389
1390
  "isOptional": true
1390
1391
  },
1391
1392
  {
1392
1393
  "name": "ClassName",
1393
1394
  "kind": "string",
1394
- "description": "Name of existing Css Class; use instead of setting other object properties",
1395
+ "description": "Existing CSS Class; use instead of setting other object properties",
1395
1396
  "uiLabel": "Class Name",
1396
1397
  "isOptional": true
1397
1398
  },
1398
1399
  {
1399
1400
  "name": "FontSize",
1400
1401
  "kind": "unknown",
1401
- "description": "Size of font: 'XSmall', 'Small', 'Medium', 'Large' or 'XLarge'",
1402
+ "description": "Size of font: `XSmall`, `Small`, `Medium`, `Large` or `XLarge`",
1402
1403
  "uiLabel": "Font Size",
1403
1404
  "isOptional": true
1404
1405
  },
1405
1406
  {
1406
1407
  "name": "FontStyle",
1407
1408
  "kind": "unknown",
1408
- "description": "Style of the font: 'Normal' or 'Italic'",
1409
+ "description": "Style of font: `Normal` or `Italic`",
1409
1410
  "uiLabel": "Font Style",
1410
1411
  "isOptional": true
1411
1412
  },
1412
1413
  {
1413
1414
  "name": "FontWeight",
1414
1415
  "kind": "unknown",
1415
- "description": "Whether font appears as 'Normal' or 'Bold'",
1416
+ "description": "Weight of font: `Normal` or `Bold`",
1416
1417
  "uiLabel": "Font Weight",
1417
1418
  "isOptional": true
1418
1419
  },
1419
1420
  {
1420
1421
  "name": "ForeColor",
1421
1422
  "kind": "string",
1422
- "description": "Font colour in cell - provide a hex value.",
1423
+ "description": "Font colour in cell: provide hex value or name",
1423
1424
  "uiLabel": "Fore Color",
1424
1425
  "isOptional": true
1425
1426
  }
@@ -1430,6 +1431,13 @@ exports.ADAPTABLE_METAMODEL = {
1430
1431
  "kind": "Interface",
1431
1432
  "description": "Used for creating User (i.e. Custom) Themes",
1432
1433
  "properties": [
1434
+ {
1435
+ "name": "AgGridClassName",
1436
+ "kind": "string",
1437
+ "description": "Ag Grid theme to apply when loading theme",
1438
+ "uiLabel": "Ag Grid Class Name",
1439
+ "isOptional": true
1440
+ },
1433
1441
  {
1434
1442
  "name": "Description",
1435
1443
  "kind": "string",
@@ -1445,7 +1453,7 @@ exports.ADAPTABLE_METAMODEL = {
1445
1453
  {
1446
1454
  "name": "VendorGridClassName",
1447
1455
  "kind": "string",
1448
- "description": "Vendor Grid related css className to be applied",
1456
+ "description": "deprecated use `AgGridClassName` property instead",
1449
1457
  "uiLabel": "Vendor Grid Class Name",
1450
1458
  "isOptional": true
1451
1459
  }
@@ -1901,7 +1909,7 @@ exports.ADAPTABLE_METAMODEL = {
1901
1909
  "AlertState": {
1902
1910
  "name": "AlertState",
1903
1911
  "kind": "Interface",
1904
- "description": "Predefined Configuration for Alert function",
1912
+ "description": "Predefined Configuration for Alert Module",
1905
1913
  "properties": [
1906
1914
  {
1907
1915
  "name": "AlertDefinitions",
@@ -2023,7 +2031,7 @@ exports.ADAPTABLE_METAMODEL = {
2023
2031
  "ApplicationState": {
2024
2032
  "name": "ApplicationState",
2025
2033
  "kind": "Interface",
2026
- "description": "Predefined Configuration for the Application function",
2034
+ "description": "Predefined Configuration for the Application Module",
2027
2035
  "properties": [
2028
2036
  {
2029
2037
  "name": "ApplicationDataEntries",
@@ -2267,7 +2275,7 @@ exports.ADAPTABLE_METAMODEL = {
2267
2275
  "CalculatedColumnState": {
2268
2276
  "name": "CalculatedColumnState",
2269
2277
  "kind": "Interface",
2270
- "description": "Predefined Configuration for Calculated Column function",
2278
+ "description": "Predefined Configuration for Calculated Column Module",
2271
2279
  "properties": [
2272
2280
  {
2273
2281
  "name": "CalculatedColumns",
@@ -2540,6 +2548,24 @@ exports.ADAPTABLE_METAMODEL = {
2540
2548
  "description": "Returns all Aggregatable Columns",
2541
2549
  "uiLabel": "Get Aggregetable Columns"
2542
2550
  },
2551
+ {
2552
+ "name": "getAgGridColumnFieldForAdaptableColumn",
2553
+ "kind": "function",
2554
+ "description": "Retrieves AG Grid's field property for the column",
2555
+ "uiLabel": "Get Ag Grid Column Field For Adaptable Column"
2556
+ },
2557
+ {
2558
+ "name": "getAgGridColumnForAdaptableColumn",
2559
+ "kind": "function",
2560
+ "description": "Retrieves AG Grid's column for an Adaptable column",
2561
+ "uiLabel": "Get Ag Grid Column For Adaptable Column"
2562
+ },
2563
+ {
2564
+ "name": "getAgGridColumnType",
2565
+ "kind": "function",
2566
+ "description": "Retrieves 'ColumnType' property for a given Column",
2567
+ "uiLabel": "Get Ag Grid Column Type"
2568
+ },
2543
2569
  {
2544
2570
  "name": "getAllColumnFriendlyNames",
2545
2571
  "kind": "function",
@@ -2726,18 +2752,6 @@ exports.ADAPTABLE_METAMODEL = {
2726
2752
  "description": "Returns all string Columns",
2727
2753
  "uiLabel": "Get String Columns"
2728
2754
  },
2729
- {
2730
- "name": "getVendorColumnType",
2731
- "kind": "function",
2732
- "description": "Retrieves 'ColumnType' property for a given Column",
2733
- "uiLabel": "Get Vendor Column Type"
2734
- },
2735
- {
2736
- "name": "getVendorGridColumnFieldForColumn",
2737
- "kind": "function",
2738
- "description": "Retrieves the field property for the column",
2739
- "uiLabel": "Get Vendor Grid Column Field For Column"
2740
- },
2741
2755
  {
2742
2756
  "name": "getVisibleColumns",
2743
2757
  "kind": "function",
@@ -2856,12 +2870,39 @@ exports.ADAPTABLE_METAMODEL = {
2856
2870
  {
2857
2871
  "name": "Predicate",
2858
2872
  "kind": "REFERENCE",
2859
- "description": "Predicate function to evaluate when Filter is run",
2873
+ "description": "`AdaptablePredicate` which AdaptableQL will evaluate when the Filter is run",
2860
2874
  "uiLabel": "Predicate",
2861
2875
  "reference": "unknown"
2862
2876
  }
2863
2877
  ]
2864
2878
  },
2879
+ "ColumnMenuContext": {
2880
+ "name": "ColumnMenuContext",
2881
+ "kind": "Interface",
2882
+ "description": "Provides full details about current Column where Column Header Menu will appear",
2883
+ "properties": [
2884
+ {
2885
+ "name": "adaptableColumn",
2886
+ "kind": "REFERENCE",
2887
+ "description": "Current Adaptable Column",
2888
+ "uiLabel": "Adaptable Column",
2889
+ "reference": "AdaptableColumn"
2890
+ },
2891
+ {
2892
+ "name": "agGridColumn",
2893
+ "kind": "REFERENCE",
2894
+ "description": "Current AG Grid Column",
2895
+ "uiLabel": "Ag Grid Column",
2896
+ "reference": "unknown"
2897
+ },
2898
+ {
2899
+ "name": "isRowGroupColumn",
2900
+ "kind": "boolean",
2901
+ "description": "Whether current Column is Row Group",
2902
+ "uiLabel": "Is Row Group Column"
2903
+ }
2904
+ ]
2905
+ },
2865
2906
  "ColumnSort": {
2866
2907
  "name": "ColumnSort",
2867
2908
  "kind": "Interface",
@@ -2886,18 +2927,19 @@ exports.ADAPTABLE_METAMODEL = {
2886
2927
  "kind": "Interface",
2887
2928
  "description": "Comparer object for Column Values - used for custom sorting",
2888
2929
  "properties": [
2889
- {
2890
- "name": "columnId",
2891
- "kind": "string",
2892
- "description": "Column for which to compare values",
2893
- "uiLabel": "Column Id"
2894
- },
2895
2930
  {
2896
2931
  "name": "comparer",
2897
2932
  "kind": "REFERENCE",
2898
2933
  "description": "Comparer function to use",
2899
2934
  "uiLabel": "Comparer",
2900
2935
  "reference": "AdaptableComparerFunction"
2936
+ },
2937
+ {
2938
+ "name": "scope",
2939
+ "kind": "REFERENCE",
2940
+ "description": "Column for which to compare values",
2941
+ "uiLabel": "Scope",
2942
+ "reference": "AdaptableScope"
2901
2943
  }
2902
2944
  ]
2903
2945
  },
@@ -3054,7 +3096,7 @@ exports.ADAPTABLE_METAMODEL = {
3054
3096
  "ConditionalStyleState": {
3055
3097
  "name": "ConditionalStyleState",
3056
3098
  "kind": "Interface",
3057
- "description": "Predefined Configuration for the Conditional Style function",
3099
+ "description": "Predefined Configuration for the Conditional Style Module",
3058
3100
  "properties": [
3059
3101
  {
3060
3102
  "name": "ConditionalStyles",
@@ -3322,6 +3364,24 @@ exports.ADAPTABLE_METAMODEL = {
3322
3364
  "gridInfo": "item",
3323
3365
  "defaultValue": ""adaptable""
3324
3366
  },
3367
+ {
3368
+ "name": "agGridContainer",
3369
+ "kind": "unknown",
3370
+ "description": "Div containing AG Grid instance - string Id or HTMLElement",
3371
+ "uiLabel": "Ag Grid Container",
3372
+ "isOptional": true,
3373
+ "gridInfo": "item",
3374
+ "defaultValue": ""grid""
3375
+ },
3376
+ {
3377
+ "name": "agGridContainerWaitTimeout",
3378
+ "kind": "number",
3379
+ "description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by React or Angular Wrappers)",
3380
+ "uiLabel": "Ag Grid Container Wait Timeout",
3381
+ "isOptional": true,
3382
+ "gridInfo": "item",
3383
+ "defaultValue": "60s"
3384
+ },
3325
3385
  {
3326
3386
  "name": "alertContainer",
3327
3387
  "kind": "unknown",
@@ -3357,24 +3417,92 @@ exports.ADAPTABLE_METAMODEL = {
3357
3417
  "isOptional": true,
3358
3418
  "gridInfo": "item",
3359
3419
  "defaultValue": "undefined"
3420
+ }
3421
+ ]
3422
+ },
3423
+ "ContextMenuContext": {
3424
+ "name": "ContextMenuContext",
3425
+ "kind": "Interface",
3426
+ "description": "Provides full details about current cell (and selected cells) where Context Menu will appear",
3427
+ "properties": [
3428
+ {
3429
+ "name": "adaptableApi",
3430
+ "kind": "REFERENCE",
3431
+ "description": "The Adaptable Api - included as a convenience",
3432
+ "uiLabel": "Adaptable Api",
3433
+ "reference": "AdaptableApi"
3434
+ },
3435
+ {
3436
+ "name": "adaptableColumn",
3437
+ "kind": "REFERENCE",
3438
+ "description": "Current Adaptable Column",
3439
+ "uiLabel": "Adaptable Column",
3440
+ "reference": "AdaptableColumn"
3441
+ },
3442
+ {
3443
+ "name": "agGridColumn",
3444
+ "kind": "REFERENCE",
3445
+ "description": "Current AG Grid Column",
3446
+ "uiLabel": "Ag Grid Column",
3447
+ "reference": "unknown"
3448
+ },
3449
+ {
3450
+ "name": "gridCell",
3451
+ "kind": "REFERENCE",
3452
+ "description": "Cell that has been clicked; contains cell value",
3453
+ "uiLabel": "Grid Cell",
3454
+ "reference": "GridCell"
3455
+ },
3456
+ {
3457
+ "name": "isGroupedNode",
3458
+ "kind": "boolean",
3459
+ "description": "Whether current AG Grid row node is grouped",
3460
+ "uiLabel": "Is Grouped Node"
3461
+ },
3462
+ {
3463
+ "name": "isRowGroupColumn",
3464
+ "kind": "boolean",
3465
+ "description": "Whether current Column is Row Grouped",
3466
+ "uiLabel": "Is Row Group Column"
3467
+ },
3468
+ {
3469
+ "name": "isSelectedCell",
3470
+ "kind": "boolean",
3471
+ "description": "Whether cell that was clicked is also currently selected",
3472
+ "uiLabel": "Is Selected Cell"
3473
+ },
3474
+ {
3475
+ "name": "isSingleSelectedColumn",
3476
+ "kind": "boolean",
3477
+ "description": "Whether Column that was clicked is only column with selected cells",
3478
+ "uiLabel": "Is Single Selected Column"
3360
3479
  },
3361
3480
  {
3362
- "name": "vendorContainer",
3481
+ "name": "primaryKeyValue",
3363
3482
  "kind": "unknown",
3364
- "description": "Div containing underlying vendor grid- string Id or HTMLElement",
3365
- "uiLabel": "Vendor Container",
3366
- "isOptional": true,
3367
- "gridInfo": "item",
3368
- "defaultValue": ""grid""
3483
+ "description": "Value of Primary Key column in current row",
3484
+ "uiLabel": "Primary Key Value"
3369
3485
  },
3370
3486
  {
3371
- "name": "vendorContainerWaitTimeout",
3372
- "kind": "number",
3373
- "description": "Useful when the vendor grid is instantiated separately (eg: by vendor wrappers like React and Angular flavors). This is how long AdapTable waits for the vendor grid before giving up connecting to it.",
3374
- "uiLabel": "Vendor Container Wait Timeout",
3375
- "isOptional": true,
3376
- "gridInfo": "item",
3377
- "defaultValue": "60s"
3487
+ "name": "rowNode",
3488
+ "kind": "REFERENCE",
3489
+ "description": "Current AG Grid row node",
3490
+ "uiLabel": "Row Node",
3491
+ "reference": "unknown"
3492
+ },
3493
+ {
3494
+ "name": "selectedCellInfo",
3495
+ "kind": "REFERENCE",
3496
+ "description": "Currently selected cells in the grid",
3497
+ "uiLabel": "Selected Cell Info",
3498
+ "reference": "SelectedCellInfo"
3499
+ },
3500
+ {
3501
+ "name": "selectedRowInfo",
3502
+ "kind": "REFERENCE",
3503
+ "description": "Currently selected rows in the grid",
3504
+ "uiLabel": "Selected Row Info",
3505
+ "reference": "SelectedRowInfo"
3378
3506
  }
3379
3507
  ]
3380
3508
  },
@@ -3537,7 +3665,7 @@ exports.ADAPTABLE_METAMODEL = {
3537
3665
  "CustomSortState": {
3538
3666
  "name": "CustomSortState",
3539
3667
  "kind": "Interface",
3540
- "description": "Predefined Configuration for Custom Sort function",
3668
+ "description": "Predefined Configuration for Custom Sort Module",
3541
3669
  "properties": [
3542
3670
  {
3543
3671
  "name": "CustomSorts",
@@ -4125,7 +4253,7 @@ exports.ADAPTABLE_METAMODEL = {
4125
4253
  {
4126
4254
  "name": "rowNode",
4127
4255
  "kind": "REFERENCE",
4128
- "description": "RowNode that contains the cell (an AG Grid object)",
4256
+ "description": "AG Grid RowNode that contains the cell",
4129
4257
  "uiLabel": "Row Node",
4130
4258
  "isOptional": true,
4131
4259
  "reference": "unknown"
@@ -4197,10 +4325,10 @@ exports.ADAPTABLE_METAMODEL = {
4197
4325
  "defaultValue": "false"
4198
4326
  },
4199
4327
  {
4200
- "name": "filterDataChange",
4328
+ "name": "showDataChange",
4201
4329
  "kind": "unknown",
4202
4330
  "description": "Function enabling specific data changes to be included/excluded from the Data Change History",
4203
- "uiLabel": "Filter Data Change",
4331
+ "uiLabel": "Show Data Change",
4204
4332
  "isOptional": true,
4205
4333
  "gridInfo": "item",
4206
4334
  "defaultValue": "undefined (all data changes are logged)"
@@ -4303,7 +4431,7 @@ exports.ADAPTABLE_METAMODEL = {
4303
4431
  "DataSourceState": {
4304
4432
  "name": "DataSourceState",
4305
4433
  "kind": "Interface",
4306
- "description": "Predefined Configuration for Data Source function",
4434
+ "description": "Predefined Configuration for Data Source Module",
4307
4435
  "properties": [
4308
4436
  {
4309
4437
  "name": "CurrentDataSource",
@@ -4440,7 +4568,7 @@ exports.ADAPTABLE_METAMODEL = {
4440
4568
  {
4441
4569
  "name": "isCellEditable",
4442
4570
  "kind": "unknown",
4443
- "description": "Function which returns true if given cell is editable",
4571
+ "description": "Function which checks if given Grid Cell is editable",
4444
4572
  "uiLabel": "Is Cell Editable",
4445
4573
  "isOptional": true
4446
4574
  },
@@ -4920,7 +5048,7 @@ exports.ADAPTABLE_METAMODEL = {
4920
5048
  "ExportState": {
4921
5049
  "name": "ExportState",
4922
5050
  "kind": "Interface",
4923
- "description": "Predefined Configuration for Export function",
5051
+ "description": "Predefined Configuration for Export Module",
4924
5052
  "properties": [
4925
5053
  {
4926
5054
  "name": "CurrentDestination",
@@ -5261,7 +5389,7 @@ exports.ADAPTABLE_METAMODEL = {
5261
5389
  {
5262
5390
  "name": "autoApplyFilter",
5263
5391
  "kind": "boolean",
5264
- "description": "Apply selected filters in Filter Form as soon as they are clicked; if false an Apply Filter button is displayed",
5392
+ "description": "Apply selected filters (in Filter Form or Quick Filter Bar) as soon as they are clicked; if false an Apply Filter button is displayed",
5265
5393
  "uiLabel": "Auto Apply Filter",
5266
5394
  "isOptional": true,
5267
5395
  "gridInfo": "item",
@@ -5342,7 +5470,7 @@ exports.ADAPTABLE_METAMODEL = {
5342
5470
  {
5343
5471
  "name": "hideQuickFilterDropdown",
5344
5472
  "kind": "unknown",
5345
- "description": "Sets whether to display Dropdown in Quick Filter Bar for given Column",
5473
+ "description": "Hides the Dropdown in Quick Filter Bar for a given Column",
5346
5474
  "uiLabel": "Hide Quick Filter Dropdown",
5347
5475
  "isOptional": true,
5348
5476
  "defaultValue": "undefined"
@@ -5350,7 +5478,7 @@ exports.ADAPTABLE_METAMODEL = {
5350
5478
  {
5351
5479
  "name": "hideQuickFilterInput",
5352
5480
  "kind": "unknown",
5353
- "description": "Sets whether to display the Input in Quick Filter Bar for given Column",
5481
+ "description": "Hides the Input in Quick Filter Bar for a given Column",
5354
5482
  "uiLabel": "Hide Quick Filter Input",
5355
5483
  "isOptional": true,
5356
5484
  "defaultValue": "undefined"
@@ -5403,7 +5531,7 @@ exports.ADAPTABLE_METAMODEL = {
5403
5531
  {
5404
5532
  "name": "systemFilters",
5405
5533
  "kind": "REFERENCE",
5406
- "description": "Which Adaptable System Filter Predicates are available; provide empty array for none or leave unset for all",
5534
+ "description": "Which Adaptable System Filter Predicates are available",
5407
5535
  "uiLabel": "System Filters",
5408
5536
  "isOptional": true,
5409
5537
  "reference": "unknown"
@@ -5411,7 +5539,7 @@ exports.ADAPTABLE_METAMODEL = {
5411
5539
  {
5412
5540
  "name": "useAdaptableFilterForm",
5413
5541
  "kind": "unknown",
5414
- "description": "Uses Adaptable's Filter Form in Column header menu for all columns if 'true' (the default) or those listed; otherwise vendor grid one will be used",
5542
+ "description": "Uses Adaptable's Filter Form in Column header menu for all columns if 'true' (the default) or those listed, in preference to AG Grid's Filter Form",
5415
5543
  "uiLabel": "Use Adaptable Filter Form",
5416
5544
  "isOptional": true,
5417
5545
  "defaultValue": "true"
@@ -5419,17 +5547,17 @@ exports.ADAPTABLE_METAMODEL = {
5419
5547
  {
5420
5548
  "name": "useAdaptableQuickFilter",
5421
5549
  "kind": "unknown",
5422
- "description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed; otherwise vendor grid one will be used",
5550
+ "description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed, in preference to AG Grid's Floating Filter",
5423
5551
  "uiLabel": "Use Adaptable Quick Filter",
5424
5552
  "isOptional": true,
5425
5553
  "gridInfo": "item",
5426
5554
  "defaultValue": "true"
5427
5555
  },
5428
5556
  {
5429
- "name": "useVendorFilterFormStyle",
5557
+ "name": "useAgGridFilterFormStyle",
5430
5558
  "kind": "boolean",
5431
- "description": "Styles Adaptable Filter Form to match styling of current vendor grid",
5432
- "uiLabel": "Use Vendor Filter Form Style",
5559
+ "description": "Styles Adaptable Filter Form to match AG Grid's current styling",
5560
+ "uiLabel": "Use Ag Grid Filter Form Style",
5433
5561
  "isOptional": true,
5434
5562
  "gridInfo": "item",
5435
5563
  "defaultValue": "true"
@@ -5442,10 +5570,10 @@ exports.ADAPTABLE_METAMODEL = {
5442
5570
  "description": "Used to define values inside the floating filter and floating filter (quick filter)",
5443
5571
  "properties": [
5444
5572
  {
5445
- "name": "suppressClientSideFiltering",
5573
+ "name": "suppressFilterSearchBar",
5446
5574
  "kind": "boolean",
5447
5575
  "description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
5448
- "uiLabel": "Suppress Client Side Filtering",
5576
+ "uiLabel": "Suppress Filter Search Bar",
5449
5577
  "isOptional": true
5450
5578
  }
5451
5579
  ]
@@ -5465,7 +5593,7 @@ exports.ADAPTABLE_METAMODEL = {
5465
5593
  {
5466
5594
  "name": "IsQuickFilterVisible",
5467
5595
  "kind": "boolean",
5468
- "description": "Whether to display Quick Filter Bar - at least one column must have Quick Filter set to true",
5596
+ "description": "Whether to display Quick Filter Bar between Column Header and the Grid",
5469
5597
  "uiLabel": "Is Quick Filter Visible",
5470
5598
  "isOptional": true,
5471
5599
  "defaultValue": "true"
@@ -5831,7 +5959,7 @@ exports.ADAPTABLE_METAMODEL = {
5831
5959
  "FormatColumnState": {
5832
5960
  "name": "FormatColumnState",
5833
5961
  "kind": "Interface",
5834
- "description": "Predefined Configuration for Format Column function",
5962
+ "description": "Predefined Configuration for Format Column Module",
5835
5963
  "properties": [
5836
5964
  {
5837
5965
  "name": "FormatColumns",
@@ -5993,7 +6121,7 @@ exports.ADAPTABLE_METAMODEL = {
5993
6121
  "FreeTextColumnState": {
5994
6122
  "name": "FreeTextColumnState",
5995
6123
  "kind": "Interface",
5996
- "description": "Predefined Configuration for the Free Text Column function",
6124
+ "description": "Predefined Configuration for the Free Text Column Module",
5997
6125
  "properties": [
5998
6126
  {
5999
6127
  "name": "FreeTextColumns",
@@ -6026,7 +6154,7 @@ exports.ADAPTABLE_METAMODEL = {
6026
6154
  "GeneralOptions": {
6027
6155
  "name": "GeneralOptions",
6028
6156
  "kind": "Interface",
6029
- "description": "General options for configuring AdapTable including managing Primary Keys.",
6157
+ "description": "General options for configuring AdapTable including managing Primary Keys",
6030
6158
  "properties": [
6031
6159
  {
6032
6160
  "name": "alternativeModuleNames",
@@ -6363,7 +6491,7 @@ exports.ADAPTABLE_METAMODEL = {
6363
6491
  {
6364
6492
  "name": "addGridData",
6365
6493
  "kind": "function",
6366
- "description": "Adds rows to Adaptable (and underlying grid)",
6494
+ "description": "Adds rows to Adaptable (and AG Grid)",
6367
6495
  "uiLabel": "Add Grid Data"
6368
6496
  },
6369
6497
  {
@@ -6405,7 +6533,7 @@ exports.ADAPTABLE_METAMODEL = {
6405
6533
  {
6406
6534
  "name": "deleteGridData",
6407
6535
  "kind": "function",
6408
- "description": "Deletes rows from Adaptable (and underlying grid)",
6536
+ "description": "Deletes rows from Adaptable (and AG Grid)",
6409
6537
  "uiLabel": "Delete Grid Data"
6410
6538
  },
6411
6539
  {
@@ -6459,13 +6587,13 @@ exports.ADAPTABLE_METAMODEL = {
6459
6587
  {
6460
6588
  "name": "fireCellChangedEvent",
6461
6589
  "kind": "function",
6462
- "description": "Fires Grid Data Changed Event - when any data in vendor grid data set has changed",
6590
+ "description": "Fires Cell Changed Changed Event - when any data in AG Grid's dataset has changed",
6463
6591
  "uiLabel": "Fire Cell Changed Event"
6464
6592
  },
6465
6593
  {
6466
6594
  "name": "fireGridDataChangedEvent",
6467
6595
  "kind": "function",
6468
- "description": "Fires Grid Data Changed Event - when any data in vendor grid data set has changed",
6596
+ "description": "Fires Grid Data Changed Event - when a row has changed in AG Grid",
6469
6597
  "uiLabel": "Fire Grid Data Changed Event"
6470
6598
  },
6471
6599
  {
@@ -6474,6 +6602,12 @@ exports.ADAPTABLE_METAMODEL = {
6474
6602
  "description": "Fires Search Changed Event - typically used to enable server searching and filtering",
6475
6603
  "uiLabel": "Fire Search Changed Event"
6476
6604
  },
6605
+ {
6606
+ "name": "getAgGridInstance",
6607
+ "kind": "function",
6608
+ "description": "Returns Ag Grid instance (passed into Adaptable Options at start-up)",
6609
+ "uiLabel": "Get Ag Grid Instance"
6610
+ },
6477
6611
  {
6478
6612
  "name": "getCellDisplayValue",
6479
6613
  "kind": "function",
@@ -6618,12 +6752,6 @@ exports.ADAPTABLE_METAMODEL = {
6618
6752
  "description": "Returns all current Selected Rows in AdapTable",
6619
6753
  "uiLabel": "Get Selected Row Info"
6620
6754
  },
6621
- {
6622
- "name": "getVendorGrid",
6623
- "kind": "function",
6624
- "description": "Returns underlying Vendor Grid (object passed into Adaptable Options at start-up)",
6625
- "uiLabel": "Get Vendor Grid"
6626
- },
6627
6755
  {
6628
6756
  "name": "getVisibleColumnCount",
6629
6757
  "kind": "function",
@@ -6825,7 +6953,7 @@ exports.ADAPTABLE_METAMODEL = {
6825
6953
  {
6826
6954
  "name": "updateGridData",
6827
6955
  "kind": "function",
6828
- "description": "Updates Adaptable (and underlying grid) with rows that have changed",
6956
+ "description": "Updates Adaptable (and AG Grid) with rows that have changed",
6829
6957
  "uiLabel": "Update Grid Data"
6830
6958
  }
6831
6959
  ]
@@ -7548,6 +7676,12 @@ exports.ADAPTABLE_METAMODEL = {
7548
7676
  "description": "Saves given Layout into Adaptable State",
7549
7677
  "uiLabel": "Save Layout"
7550
7678
  },
7679
+ {
7680
+ "name": "setColumnCaption",
7681
+ "kind": "function",
7682
+ "description": "Sets a new Caption / Header for a Column (this Layout only)",
7683
+ "uiLabel": "Set Column Caption"
7684
+ },
7551
7685
  {
7552
7686
  "name": "setLayout",
7553
7687
  "kind": "function",
@@ -7650,7 +7784,7 @@ exports.ADAPTABLE_METAMODEL = {
7650
7784
  "LayoutState": {
7651
7785
  "name": "LayoutState",
7652
7786
  "kind": "Interface",
7653
- "description": "Predefined Configuration for the Layout function",
7787
+ "description": "Predefined Configuration for the Layout Module",
7654
7788
  "properties": [
7655
7789
  {
7656
7790
  "name": "CurrentLayout",
@@ -7722,92 +7856,6 @@ exports.ADAPTABLE_METAMODEL = {
7722
7856
  }
7723
7857
  ]
7724
7858
  },
7725
- "MenuContext": {
7726
- "name": "MenuContext",
7727
- "kind": "Interface",
7728
- "description": "Provides full details about current Menu; used for both Column and Context Menus",
7729
- "properties": [
7730
- {
7731
- "name": "adaptableApi",
7732
- "kind": "REFERENCE",
7733
- "description": "The Adaptable Api - included as a convenience",
7734
- "uiLabel": "Adaptable Api",
7735
- "reference": "AdaptableApi"
7736
- },
7737
- {
7738
- "name": "adaptableColumn",
7739
- "kind": "REFERENCE",
7740
- "description": "Current Adaptable Column",
7741
- "uiLabel": "Adaptable Column",
7742
- "reference": "AdaptableColumn"
7743
- },
7744
- {
7745
- "name": "gridCell",
7746
- "kind": "REFERENCE",
7747
- "description": "Cell that has been clicked; contains cell value",
7748
- "uiLabel": "Grid Cell",
7749
- "reference": "GridCell"
7750
- },
7751
- {
7752
- "name": "isGroupedNode",
7753
- "kind": "boolean",
7754
- "description": "Whether current row node is grouped",
7755
- "uiLabel": "Is Grouped Node"
7756
- },
7757
- {
7758
- "name": "isRowGroupColumn",
7759
- "kind": "boolean",
7760
- "description": "Whether current Column is Row Group",
7761
- "uiLabel": "Is Row Group Column"
7762
- },
7763
- {
7764
- "name": "isSelectedCell",
7765
- "kind": "boolean",
7766
- "description": "Whether cell that was clicked is also currently selected",
7767
- "uiLabel": "Is Selected Cell"
7768
- },
7769
- {
7770
- "name": "isSingleSelectedColumn",
7771
- "kind": "boolean",
7772
- "description": "Whether Column that was clicked is only column with selected cells",
7773
- "uiLabel": "Is Single Selected Column"
7774
- },
7775
- {
7776
- "name": "primaryKeyValue",
7777
- "kind": "unknown",
7778
- "description": "Value of Primary Key column in current row",
7779
- "uiLabel": "Primary Key Value"
7780
- },
7781
- {
7782
- "name": "rowNode",
7783
- "kind": "REFERENCE",
7784
- "description": "Current AG Grid row node",
7785
- "uiLabel": "Row Node",
7786
- "reference": "unknown"
7787
- },
7788
- {
7789
- "name": "selectedCellInfo",
7790
- "kind": "REFERENCE",
7791
- "description": "Currently selected cells in the grid",
7792
- "uiLabel": "Selected Cell Info",
7793
- "reference": "SelectedCellInfo"
7794
- },
7795
- {
7796
- "name": "selectedRowInfo",
7797
- "kind": "REFERENCE",
7798
- "description": "Currently selected rows in the grid",
7799
- "uiLabel": "Selected Row Info",
7800
- "reference": "SelectedRowInfo"
7801
- },
7802
- {
7803
- "name": "vendorColumn",
7804
- "kind": "REFERENCE",
7805
- "description": "Current Vendor Grid Column",
7806
- "uiLabel": "Vendor Column",
7807
- "reference": "unknown"
7808
- }
7809
- ]
7810
- },
7811
7859
  "MenuOptions": {
7812
7860
  "name": "MenuOptions",
7813
7861
  "kind": "Interface",
@@ -7823,11 +7871,11 @@ exports.ADAPTABLE_METAMODEL = {
7823
7871
  {
7824
7872
  "name": "columnMenuOrder",
7825
7873
  "kind": "unknown",
7826
- "description": "Order in which Vendor, AdapTable and User Menu items will appear in Column Menu",
7874
+ "description": "Order in which AG Grid, AdapTable and User Menu items will appear in Column Menu",
7827
7875
  "uiLabel": "Column Menu Order",
7828
7876
  "isOptional": true,
7829
7877
  "gridInfo": "item",
7830
- "defaultValue": "'vendor', 'adaptable', 'user'"
7878
+ "defaultValue": "'aggrid', 'adaptable', 'user'"
7831
7879
  },
7832
7880
  {
7833
7881
  "name": "contextMenuItems",
@@ -7839,11 +7887,11 @@ exports.ADAPTABLE_METAMODEL = {
7839
7887
  {
7840
7888
  "name": "contextMenuOrder",
7841
7889
  "kind": "unknown",
7842
- "description": "Order in which Vendor, AdapTable and User Menu items will appear in Context Menu",
7890
+ "description": "Order in which AG grid, AdapTable and User Menu items will appear in Context Menu",
7843
7891
  "uiLabel": "Context Menu Order",
7844
7892
  "isOptional": true,
7845
7893
  "gridInfo": "item",
7846
- "defaultValue": "'vendor', 'adaptable', 'user'"
7894
+ "defaultValue": "'aggrid', 'adaptable', 'user'"
7847
7895
  },
7848
7896
  {
7849
7897
  "name": "showAdaptableColumnMenu",
@@ -7911,6 +7959,13 @@ exports.ADAPTABLE_METAMODEL = {
7911
7959
  "uiLabel": "Alert Forms",
7912
7960
  "isOptional": true
7913
7961
  },
7962
+ {
7963
+ "name": "alertMessageText",
7964
+ "kind": "unknown",
7965
+ "description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
7966
+ "uiLabel": "Alert Message Text",
7967
+ "isOptional": true
7968
+ },
7914
7969
  {
7915
7970
  "name": "cellHighlightDuration",
7916
7971
  "kind": "number",
@@ -8011,6 +8066,14 @@ exports.ADAPTABLE_METAMODEL = {
8011
8066
  "defaultValue": "'BottomRight'",
8012
8067
  "reference": "unknown"
8013
8068
  },
8069
+ {
8070
+ "name": "showApplicationIcon",
8071
+ "kind": "boolean",
8072
+ "description": "Displays the application icon in Notifications (if provided in `UserInterfaceOptions`)",
8073
+ "uiLabel": "Show Application Icon",
8074
+ "isOptional": true,
8075
+ "defaultValue": "false"
8076
+ },
8014
8077
  {
8015
8078
  "name": "showProgressBar",
8016
8079
  "kind": "boolean",
@@ -8445,13 +8508,6 @@ exports.ADAPTABLE_METAMODEL = {
8445
8508
  "kind": "Interface",
8446
8509
  "description": "This is the main Predefined Config interface which developers will populate at design-time",
8447
8510
  "properties": [
8448
- {
8449
- "name": "ActionColumn",
8450
- "kind": "unknown",
8451
- "description": "",
8452
- "uiLabel": "Action Column",
8453
- "isOptional": true
8454
- },
8455
8511
  {
8456
8512
  "name": "Alert",
8457
8513
  "kind": "REFERENCE",
@@ -8476,13 +8532,6 @@ exports.ADAPTABLE_METAMODEL = {
8476
8532
  "isOptional": true,
8477
8533
  "reference": "CalculatedColumnState"
8478
8534
  },
8479
- {
8480
- "name": "CellSummary",
8481
- "kind": "unknown",
8482
- "description": "",
8483
- "uiLabel": "Cell Summary",
8484
- "isOptional": true
8485
- },
8486
8535
  {
8487
8536
  "name": "Chart",
8488
8537
  "kind": "REFERENCE",
@@ -8523,13 +8572,6 @@ exports.ADAPTABLE_METAMODEL = {
8523
8572
  "isOptional": true,
8524
8573
  "reference": "DataSourceState"
8525
8574
  },
8526
- {
8527
- "name": "Entitlements",
8528
- "kind": "unknown",
8529
- "description": "",
8530
- "uiLabel": "Entitlements",
8531
- "isOptional": true
8532
- },
8533
8575
  {
8534
8576
  "name": "Export",
8535
8577
  "kind": "REFERENCE",
@@ -8546,14 +8588,6 @@ exports.ADAPTABLE_METAMODEL = {
8546
8588
  "isOptional": true,
8547
8589
  "reference": "FilterState"
8548
8590
  },
8549
- {
8550
- "name": "FlashingCell",
8551
- "kind": "REFERENCE",
8552
- "description": "",
8553
- "uiLabel": "Flashing Cell",
8554
- "isOptional": true,
8555
- "reference": "unknown"
8556
- },
8557
8591
  {
8558
8592
  "name": "FormatColumn",
8559
8593
  "kind": "REFERENCE",
@@ -8570,14 +8604,6 @@ exports.ADAPTABLE_METAMODEL = {
8570
8604
  "isOptional": true,
8571
8605
  "reference": "FreeTextColumnState"
8572
8606
  },
8573
- {
8574
- "name": "GradientColumn",
8575
- "kind": "REFERENCE",
8576
- "description": "",
8577
- "uiLabel": "Gradient Column",
8578
- "isOptional": true,
8579
- "reference": "unknown"
8580
- },
8581
8607
  {
8582
8608
  "name": "Layout",
8583
8609
  "kind": "REFERENCE",
@@ -8586,14 +8612,6 @@ exports.ADAPTABLE_METAMODEL = {
8586
8612
  "isOptional": true,
8587
8613
  "reference": "LayoutState"
8588
8614
  },
8589
- {
8590
- "name": "PercentBar",
8591
- "kind": "REFERENCE",
8592
- "description": "",
8593
- "uiLabel": "Percent Bar",
8594
- "isOptional": true,
8595
- "reference": "unknown"
8596
- },
8597
8615
  {
8598
8616
  "name": "PlusMinus",
8599
8617
  "kind": "REFERENCE",
@@ -8642,13 +8660,6 @@ exports.ADAPTABLE_METAMODEL = {
8642
8660
  "isOptional": true,
8643
8661
  "reference": "SparklineColumnState"
8644
8662
  },
8645
- {
8646
- "name": "SystemStatus",
8647
- "kind": "unknown",
8648
- "description": "",
8649
- "uiLabel": "System Status",
8650
- "isOptional": true
8651
- },
8652
8663
  {
8653
8664
  "name": "Theme",
8654
8665
  "kind": "REFERENCE",
@@ -8664,21 +8675,6 @@ exports.ADAPTABLE_METAMODEL = {
8664
8675
  "uiLabel": "Tool Panel",
8665
8676
  "isOptional": true,
8666
8677
  "reference": "ToolPanelState"
8667
- },
8668
- {
8669
- "name": "UpdatedRow",
8670
- "kind": "REFERENCE",
8671
- "description": "",
8672
- "uiLabel": "Updated Row",
8673
- "isOptional": true,
8674
- "reference": "unknown"
8675
- },
8676
- {
8677
- "name": "UserInterface",
8678
- "kind": "unknown",
8679
- "description": "Section (only populated at Design Time) that manages UI-related elements in AdapTable",
8680
- "uiLabel": "User Interface",
8681
- "isOptional": true
8682
8678
  }
8683
8679
  ]
8684
8680
  },
@@ -9079,19 +9075,19 @@ exports.ADAPTABLE_METAMODEL = {
9079
9075
  "QuickSearchState": {
9080
9076
  "name": "QuickSearchState",
9081
9077
  "kind": "Interface",
9082
- "description": "Predefined Configuration for Quick Search function",
9078
+ "description": "Predefined Configuration for Quick Search Module",
9083
9079
  "properties": [
9084
9080
  {
9085
9081
  "name": "QuickSearchText",
9086
9082
  "kind": "string",
9087
- "description": "Quick Search to run at start up (rarely set at design time)",
9083
+ "description": "Last Quick Search that was run (and will run again at start up)",
9088
9084
  "uiLabel": "Quick Search Text",
9089
9085
  "isOptional": true
9090
9086
  },
9091
9087
  {
9092
9088
  "name": "Style",
9093
9089
  "kind": "REFERENCE",
9094
- "description": "Style to use for Quick Search; uses standard `AdaptableStyle` Object",
9090
+ "description": "Style to use to highlight matching cells - uses common `AdaptableStyle` object",
9095
9091
  "uiLabel": "Style",
9096
9092
  "isOptional": true,
9097
9093
  "reference": "AdaptableStyle"
@@ -9510,7 +9506,7 @@ exports.ADAPTABLE_METAMODEL = {
9510
9506
  "ScheduleState": {
9511
9507
  "name": "ScheduleState",
9512
9508
  "kind": "Interface",
9513
- "description": "Predefined Configuration for the Schedule function",
9509
+ "description": "Predefined Configuration for the Schedule Module",
9514
9510
  "properties": [
9515
9511
  {
9516
9512
  "name": "Glue42Schedules",
@@ -10211,7 +10207,7 @@ exports.ADAPTABLE_METAMODEL = {
10211
10207
  {
10212
10208
  "name": "Width",
10213
10209
  "kind": "number",
10214
- "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
10210
+ "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
10215
10211
  "uiLabel": "Width",
10216
10212
  "isOptional": true
10217
10213
  }
@@ -10408,7 +10404,7 @@ exports.ADAPTABLE_METAMODEL = {
10408
10404
  {
10409
10405
  "name": "fireTeamSharingEntityChangedEvent",
10410
10406
  "kind": "function",
10411
- "description": "Fires the Team S",
10407
+ "description": "Fires the Team Sharing Entity Changed Event",
10412
10408
  "uiLabel": "Fire Team Sharing Entity Changed Event"
10413
10409
  },
10414
10410
  {
@@ -10573,13 +10569,13 @@ exports.ADAPTABLE_METAMODEL = {
10573
10569
  {
10574
10570
  "name": "loadDarkTheme",
10575
10571
  "kind": "function",
10576
- "description": "Sets AdapTable Dark Theme - updates underlying vendor grid theme to match",
10572
+ "description": "Sets AdapTable Dark Theme - updates the AG Grid theme to match",
10577
10573
  "uiLabel": "Load Dark Theme"
10578
10574
  },
10579
10575
  {
10580
10576
  "name": "loadLightTheme",
10581
10577
  "kind": "function",
10582
- "description": "Sets AdapTable Light Theme - updates underlying vendor grid theme to match",
10578
+ "description": "Sets AdapTable Light Theme - updates the AG Grid theme to match",
10583
10579
  "uiLabel": "Load Light Theme"
10584
10580
  },
10585
10581
  {
@@ -10819,7 +10815,7 @@ exports.ADAPTABLE_METAMODEL = {
10819
10815
  "description": "Order of displayed ToolPanels in Sidebar",
10820
10816
  "uiLabel": "Tool Panel Order",
10821
10817
  "isOptional": true,
10822
- "defaultValue": "['filters', 'columns', 'AdaptableToolPanel']"
10818
+ "defaultValue": "['filters', 'columns', 'adaptable']"
10823
10819
  },
10824
10820
  {
10825
10821
  "name": "width",
@@ -11064,7 +11060,7 @@ exports.ADAPTABLE_METAMODEL = {
11064
11060
  "UserMenuItem": {
11065
11061
  "name": "UserMenuItem",
11066
11062
  "kind": "Interface",
11067
- "description": "Defines a Menu Item created at design-time, can be added to Column Header or Context Menu, and can contain sub items.",
11063
+ "description": "Menu Item created at design-time which is added to Column Header or Context Menu, and can contain sub items",
11068
11064
  "properties": [
11069
11065
  {
11070
11066
  "name": "disabled",
@@ -11083,7 +11079,7 @@ exports.ADAPTABLE_METAMODEL = {
11083
11079
  {
11084
11080
  "name": "icon",
11085
11081
  "kind": "string",
11086
- "description": "Optional icon to show in the Menu Item",
11082
+ "description": "Optional icon to show in the Column Menu Item",
11087
11083
  "uiLabel": "Icon",
11088
11084
  "isOptional": true
11089
11085
  },