@adaptabletools/adaptable 11.0.0-canary.5 → 11.0.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 (159) hide show
  1. package/agGrid.d.ts +5 -4
  2. package/agGrid.js +9 -7
  3. package/base.css +2 -2
  4. package/bundle.cjs.js +103 -98
  5. package/index.css +2 -2
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
  10. package/src/AdaptableOptions/AdaptableOptions.d.ts +4 -6
  11. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +37 -5
  12. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  13. package/src/AdaptableOptions/ContainerOptions.d.ts +1 -1
  14. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  15. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  16. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +4 -3
  17. package/src/AdaptableOptions/StateOptions.d.ts +7 -7
  18. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
  19. package/src/Api/AdaptableApi.d.ts +5 -0
  20. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  21. package/src/Api/ColumnApi.d.ts +0 -4
  22. package/src/Api/GridApi.d.ts +11 -1
  23. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
  24. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  25. package/src/Api/Implementation/AlertApiImpl.js +4 -1
  26. package/src/Api/Implementation/ApiBase.d.ts +3 -2
  27. package/src/Api/Implementation/ApiBase.js +5 -2
  28. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  29. package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
  30. package/src/Api/Implementation/ColumnApiImpl.js +0 -5
  31. package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
  32. package/src/Api/Implementation/GridApiImpl.js +27 -4
  33. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  34. package/src/Api/Implementation/InternalApiImpl.js +5 -4
  35. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -1
  36. package/src/Api/Implementation/QueryLanguageApiImpl.js +17 -4
  37. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
  38. package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
  39. package/src/Api/InternalApi.d.ts +2 -3
  40. package/src/Api/QueryApi.d.ts +2 -2
  41. package/src/Api/QueryLanguageApi.d.ts +23 -10
  42. package/src/Api/SettingsPanelApi.d.ts +16 -0
  43. package/src/Api/SettingsPanelApi.js +2 -0
  44. package/src/PredefinedConfig/AlertState.d.ts +6 -2
  45. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
  46. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
  47. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -5
  48. package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -6
  49. package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
  50. package/src/PredefinedConfig/Common/Enums.js +0 -2
  51. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  52. package/src/PredefinedConfig/Common/Types.d.ts +6 -1
  53. package/src/PredefinedConfig/Common/Types.js +1 -0
  54. package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
  55. package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
  56. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  57. package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
  58. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  59. package/src/Redux/Store/AdaptableStore.js +27 -2
  60. package/src/Strategy/AlertModule.js +12 -3
  61. package/src/Strategy/CalculatedColumnModule.js +4 -4
  62. package/src/Strategy/ChartingModule.d.ts +3 -3
  63. package/src/Strategy/ChartingModule.js +2 -2
  64. package/src/Strategy/FlashingCellModule.js +2 -2
  65. package/src/Strategy/FreeTextColumnModule.js +1 -0
  66. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  67. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  68. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  69. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  70. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  71. package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
  72. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
  73. package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
  74. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +17 -13
  75. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
  76. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +4 -4
  77. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +24 -0
  78. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +339 -0
  79. package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
  80. package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
  81. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  82. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  83. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +35 -0
  84. package/src/Utilities/ExpressionFunctions/groupingMap.js +105 -0
  85. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  86. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  87. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  88. package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
  89. package/src/Utilities/Services/AlertService.js +8 -4
  90. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  91. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  92. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  93. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  94. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +9 -3
  95. package/src/Utilities/Services/LicenseService.js +1 -1
  96. package/src/Utilities/Services/ModuleService.js +33 -40
  97. package/src/Utilities/Services/QueryLanguageService.d.ts +11 -4
  98. package/src/Utilities/Services/QueryLanguageService.js +84 -25
  99. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
  100. package/src/View/AdaptableWizardView/helper.js +2 -2
  101. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  102. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  103. package/src/View/Alert/Wizard/AlertWizard.js +2 -2
  104. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -2
  105. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
  106. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  107. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  108. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  109. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  110. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  111. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
  112. package/src/View/ColorPicker.d.ts +1 -1
  113. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  114. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  115. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  116. package/src/View/Components/EntityRulesEditor/index.js +11 -12
  117. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  118. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  119. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
  120. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
  121. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  122. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  123. package/src/View/Components/ValueSelector/index.js +1 -1
  124. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
  125. package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
  126. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
  127. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
  128. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
  129. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  130. package/src/View/License/LicenseWatermark.js +1 -1
  131. package/src/View/Query/Wizard/NamedQueryWizard.js +3 -3
  132. package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
  133. package/src/agGrid/Adaptable.d.ts +1 -0
  134. package/src/agGrid/Adaptable.js +13 -14
  135. package/src/agGrid/agGridHelper.js +3 -7
  136. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  137. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  138. package/src/components/Datepicker/index.d.ts +1 -1
  139. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  140. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  141. package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
  142. package/src/components/ExpressionEditor/EditorInputReactive.js +1 -1
  143. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  144. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  145. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  146. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  147. package/src/components/ExpressionEditor/index.d.ts +2 -1
  148. package/src/components/ExpressionEditor/index.js +11 -4
  149. package/src/components/Input/index.d.ts +1 -1
  150. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  151. package/src/components/Logo/index.js +8 -7
  152. package/src/components/PopupWithFooter.d.ts +1 -1
  153. package/src/components/Textarea/index.d.ts +1 -1
  154. package/src/components/icons/calculated-column.js +2 -1
  155. package/src/metamodel/adaptable.metamodel.d.ts +233 -37
  156. package/src/metamodel/adaptable.metamodel.js +448 -149
  157. package/src/types.d.ts +5 -4
  158. package/version.d.ts +1 -1
  159. package/version.js +1 -1
@@ -152,6 +152,11 @@ exports.ADAPTABLE_METAMODEL = {
152
152
  }
153
153
  ]
154
154
  },
155
+ "AdaptableAlertQuery": {
156
+ "name": "AdaptableAlertQuery",
157
+ "kind": "TypeAlias",
158
+ "description": "Alert Query which may be either a Boolean, Observable or AggregatedBoolean Expression"
159
+ },
155
160
  "AdaptableApi": {
156
161
  "name": "AdaptableApi",
157
162
  "kind": "Interface",
@@ -359,6 +364,13 @@ exports.ADAPTABLE_METAMODEL = {
359
364
  "uiLabel": "Scope Api",
360
365
  "reference": "ScopeApi"
361
366
  },
367
+ {
368
+ "name": "settingsPanelApi",
369
+ "kind": "REFERENCE",
370
+ "description": "Provides access to the Settings Panel",
371
+ "uiLabel": "Settings Panel Api",
372
+ "reference": "SettingsPanelApi"
373
+ },
362
374
  {
363
375
  "name": "shortcutApi",
364
376
  "kind": "REFERENCE",
@@ -467,6 +479,11 @@ exports.ADAPTABLE_METAMODEL = {
467
479
  }
468
480
  ]
469
481
  },
482
+ "AdaptableCalculatedColumnQuery": {
483
+ "name": "AdaptableCalculatedColumnQuery",
484
+ "kind": "TypeAlias",
485
+ "description": "Calculated Column Query which may be a Scalar or an AggregatedScalar Expression"
486
+ },
470
487
  "AdaptableColumn": {
471
488
  "name": "AdaptableColumn",
472
489
  "kind": "Interface",
@@ -872,6 +889,11 @@ exports.ADAPTABLE_METAMODEL = {
872
889
  "kind": "TypeAlias",
873
890
  "description": "Defines a Message Types: 'Success', 'Info', 'Warning' or 'Error'"
874
891
  },
892
+ "AdaptableModule": {
893
+ "name": "AdaptableModule",
894
+ "kind": "TypeAlias",
895
+ "description": "Modules provided by AdapTable, subject to Entitlements and usually have Predefined Config"
896
+ },
875
897
  "AdaptableObject": {
876
898
  "name": "AdaptableObject",
877
899
  "kind": "Interface",
@@ -915,6 +937,14 @@ exports.ADAPTABLE_METAMODEL = {
915
937
  "gridInfo": "item",
916
938
  "defaultValue": "'adaptable_id'"
917
939
  },
940
+ {
941
+ "name": "adaptableQLOptions",
942
+ "kind": "REFERENCE",
943
+ "description": "Options for managing AdapTableQL",
944
+ "uiLabel": "Adaptable QL Options",
945
+ "isOptional": true,
946
+ "reference": "AdaptableQLOptions"
947
+ },
918
948
  {
919
949
  "name": "adaptableStateKey",
920
950
  "kind": "string",
@@ -1032,7 +1062,7 @@ exports.ADAPTABLE_METAMODEL = {
1032
1062
  {
1033
1063
  "name": "gridOptions",
1034
1064
  "kind": "REFERENCE",
1035
- "description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property as AdapTable wires it up differently",
1065
+ "description": "The AG Grid object which AdapTable interacts with. Note: if using AdapTable React or AdapTable Angular, no need to populate this property as AdapTable wires it up differently",
1036
1066
  "uiLabel": "Grid Options",
1037
1067
  "isOptional": true,
1038
1068
  "defaultValue": "n/a (Mandatory)",
@@ -1102,15 +1132,6 @@ exports.ADAPTABLE_METAMODEL = {
1102
1132
  "gridInfo": "item",
1103
1133
  "defaultValue": "n/a (Mandatory)"
1104
1134
  },
1105
- {
1106
- "name": "queryLanguageOptions",
1107
- "kind": "REFERENCE",
1108
- "description": "Options for managing queries in AdapTableQL",
1109
- "uiLabel": "Query Language Options",
1110
- "isOptional": true,
1111
- "gridInfo": "container",
1112
- "reference": "QueryLanguageOptions"
1113
- },
1114
1135
  {
1115
1136
  "name": "searchOptions",
1116
1137
  "kind": "REFERENCE",
@@ -1273,6 +1294,40 @@ exports.ADAPTABLE_METAMODEL = {
1273
1294
  }
1274
1295
  ]
1275
1296
  },
1297
+ "AdaptableQLOptions": {
1298
+ "name": "AdaptableQLOptions",
1299
+ "kind": "Interface",
1300
+ "description": "Options for managing AdaptableQL - the Adaptable Query Lanaguage which evaluates Predicates and Expressions",
1301
+ "properties": [
1302
+ {
1303
+ "name": "caseSensitiveTextComparisons",
1304
+ "kind": "boolean",
1305
+ "description": "Perform case-sensitive text comparisons in all search and filter operations: QuickSearch, Filters, Query, Predicates",
1306
+ "uiLabel": "Case Sensitive Text Comparisons",
1307
+ "isOptional": true,
1308
+ "gridInfo": "item",
1309
+ "defaultValue": "false"
1310
+ },
1311
+ {
1312
+ "name": "expressionOptions",
1313
+ "kind": "REFERENCE",
1314
+ "description": "Options for managing Expressions in AdapTableQL",
1315
+ "uiLabel": "Expression Options",
1316
+ "isOptional": true,
1317
+ "reference": "ExpressionOptions"
1318
+ },
1319
+ {
1320
+ "name": "externallyEvaluatedModules",
1321
+ "kind": "REFERENCE",
1322
+ "description": "Which searching and filtering options should take place on server",
1323
+ "uiLabel": "Externally Evaluated Modules",
1324
+ "isOptional": true,
1325
+ "gridInfo": "item",
1326
+ "defaultValue": "undefined",
1327
+ "reference": "unknown"
1328
+ }
1329
+ ]
1330
+ },
1276
1331
  "AdaptableReadyInfo": {
1277
1332
  "name": "AdaptableReadyInfo",
1278
1333
  "kind": "Interface",
@@ -1791,7 +1846,7 @@ exports.ADAPTABLE_METAMODEL = {
1791
1846
  "kind": "REFERENCE",
1792
1847
  "description": "When Alert should be triggered",
1793
1848
  "uiLabel": "Rule",
1794
- "reference": "unknown"
1849
+ "reference": "AlertRule"
1795
1850
  },
1796
1851
  {
1797
1852
  "name": "Scope",
@@ -1933,6 +1988,11 @@ exports.ADAPTABLE_METAMODEL = {
1933
1988
  }
1934
1989
  ]
1935
1990
  },
1991
+ "AlertRule": {
1992
+ "name": "AlertRule",
1993
+ "kind": "TypeAlias",
1994
+ "description": "The Alert Rule defined by either an AdaptablePredicate or an AdaptableQuery"
1995
+ },
1936
1996
  "AlertState": {
1937
1997
  "name": "AlertState",
1938
1998
  "kind": "Interface",
@@ -1957,7 +2017,7 @@ exports.ADAPTABLE_METAMODEL = {
1957
2017
  "kind": "REFERENCE",
1958
2018
  "description": "Adaptable Module to rename",
1959
2019
  "uiLabel": "Adaptable Module",
1960
- "reference": "unknown"
2020
+ "reference": "AdaptableModule"
1961
2021
  },
1962
2022
  {
1963
2023
  "name": "newName",
@@ -2149,10 +2209,10 @@ exports.ADAPTABLE_METAMODEL = {
2149
2209
  {
2150
2210
  "name": "Query",
2151
2211
  "kind": "REFERENCE",
2152
- "description": "Scalar Expression used by AdapTableQL to evaluate Column's value",
2212
+ "description": "Scalar/AggregatedScalar Query used by AdapTableQL to evaluate Column's value",
2153
2213
  "uiLabel": "Query",
2154
2214
  "isOptional": true,
2155
- "reference": "unknown"
2215
+ "reference": "AdaptableCalculatedColumnQuery"
2156
2216
  }
2157
2217
  ]
2158
2218
  },
@@ -2179,12 +2239,6 @@ exports.ADAPTABLE_METAMODEL = {
2179
2239
  "description": "Edits given Calculated Column",
2180
2240
  "uiLabel": "Edit Calculated Column"
2181
2241
  },
2182
- {
2183
- "name": "editCalculatedColumnExpression",
2184
- "kind": "function",
2185
- "description": "Replaces Expression in given Calculated Column with new value",
2186
- "uiLabel": "Edit Calculated Column Expression"
2187
- },
2188
2242
  {
2189
2243
  "name": "editCalculatedColumns",
2190
2244
  "kind": "function",
@@ -2200,7 +2254,7 @@ exports.ADAPTABLE_METAMODEL = {
2200
2254
  {
2201
2255
  "name": "getCalculatedColumnById",
2202
2256
  "kind": "function",
2203
- "description": "Retrieves Calculated column by id",
2257
+ "description": "Retrieves Calculated Column by the unique identifier of the Adaptable Object in the CalculatedColumnState",
2204
2258
  "uiLabel": "Get Calculated Column By Id"
2205
2259
  },
2206
2260
  {
@@ -2297,6 +2351,38 @@ exports.ADAPTABLE_METAMODEL = {
2297
2351
  }
2298
2352
  ]
2299
2353
  },
2354
+ "CellColorRange": {
2355
+ "name": "CellColorRange",
2356
+ "kind": "Interface",
2357
+ "description": "Defines which Colours to show in Gradient and Percent Bar Styles",
2358
+ "properties": [
2359
+ {
2360
+ "name": "Color",
2361
+ "kind": "string",
2362
+ "description": "Cell colour to use for values that fall inside Range",
2363
+ "uiLabel": "Color"
2364
+ },
2365
+ {
2366
+ "name": "Max",
2367
+ "kind": "number",
2368
+ "description": "End number of Range",
2369
+ "uiLabel": "Max"
2370
+ },
2371
+ {
2372
+ "name": "Min",
2373
+ "kind": "number",
2374
+ "description": "Start number of Range",
2375
+ "uiLabel": "Min"
2376
+ },
2377
+ {
2378
+ "name": "ReverseGradient",
2379
+ "kind": "boolean",
2380
+ "description": "Reverses the Gradient so the lower the cell value the darker the colour",
2381
+ "uiLabel": "Reverse Gradient",
2382
+ "isOptional": true
2383
+ }
2384
+ ]
2385
+ },
2300
2386
  "CellHighlightInfo": {
2301
2387
  "name": "CellHighlightInfo",
2302
2388
  "kind": "Interface",
@@ -2656,12 +2742,6 @@ exports.ADAPTABLE_METAMODEL = {
2656
2742
  "description": "Returns all Groupable Columns",
2657
2743
  "uiLabel": "Get Groupable Columns"
2658
2744
  },
2659
- {
2660
- "name": "getNumericArrayColumns",
2661
- "kind": "function",
2662
- "description": "Returns all numeric array Columns",
2663
- "uiLabel": "Get Numeric Array Columns"
2664
- },
2665
2745
  {
2666
2746
  "name": "getNumericColumns",
2667
2747
  "kind": "function",
@@ -2802,6 +2882,31 @@ exports.ADAPTABLE_METAMODEL = {
2802
2882
  }
2803
2883
  ]
2804
2884
  },
2885
+ "ColumnComparison": {
2886
+ "name": "ColumnComparison",
2887
+ "kind": "Interface",
2888
+ "description": "Enables a Percent Bar or Gradient Style to use another column in its calculations",
2889
+ "properties": [
2890
+ {
2891
+ "name": "Color",
2892
+ "kind": "string",
2893
+ "description": "Colour to use for the Percent bar",
2894
+ "uiLabel": "Color"
2895
+ },
2896
+ {
2897
+ "name": "MaxValue",
2898
+ "kind": "unknown",
2899
+ "description": "End value - either numeric or Column name",
2900
+ "uiLabel": "Max Value"
2901
+ },
2902
+ {
2903
+ "name": "MinValue",
2904
+ "kind": "unknown",
2905
+ "description": "Start value - either numeric or Column name",
2906
+ "uiLabel": "Min Value"
2907
+ }
2908
+ ]
2909
+ },
2805
2910
  "ColumnFilter": {
2806
2911
  "name": "ColumnFilter",
2807
2912
  "kind": "Interface",
@@ -2868,6 +2973,36 @@ exports.ADAPTABLE_METAMODEL = {
2868
2973
  }
2869
2974
  ]
2870
2975
  },
2976
+ "ColumnStyle": {
2977
+ "name": "ColumnStyle",
2978
+ "kind": "Interface",
2979
+ "description": "Special Style used when Formatting Columns: Gradient, PercentBar or CheckBox",
2980
+ "properties": [
2981
+ {
2982
+ "name": "CheckBoxStyle",
2983
+ "kind": "boolean",
2984
+ "description": "Style a boolean column so each cell displays a checkbox",
2985
+ "uiLabel": "Check Box Style",
2986
+ "isOptional": true
2987
+ },
2988
+ {
2989
+ "name": "GradientStyle",
2990
+ "kind": "REFERENCE",
2991
+ "description": "Style a numeric column so each cell value shows a gradient shade",
2992
+ "uiLabel": "Gradient Style",
2993
+ "isOptional": true,
2994
+ "reference": "GradientStyle"
2995
+ },
2996
+ {
2997
+ "name": "PercentBarStyle",
2998
+ "kind": "REFERENCE",
2999
+ "description": "Style a numeric column so each cell displays a 'bar'",
3000
+ "uiLabel": "Percent Bar Style",
3001
+ "isOptional": true,
3002
+ "reference": "PercentBarStyle"
3003
+ }
3004
+ ]
3005
+ },
2871
3006
  "ColumnValuesComparer": {
2872
3007
  "name": "ColumnValuesComparer",
2873
3008
  "kind": "Interface",
@@ -2897,7 +3032,7 @@ exports.ADAPTABLE_METAMODEL = {
2897
3032
  {
2898
3033
  "name": "IncludeGroupedRows",
2899
3034
  "kind": "boolean",
2900
- "description": "Whether to apply Style in Grouped Rows",
3035
+ "description": "Whether to apply Style in Grouped Rows and when Pivoting",
2901
3036
  "uiLabel": "Include Grouped Rows",
2902
3037
  "isOptional": true,
2903
3038
  "defaultValue": "false"
@@ -3047,7 +3182,7 @@ exports.ADAPTABLE_METAMODEL = {
3047
3182
  {
3048
3183
  "name": "ConditionalStyles",
3049
3184
  "kind": "unknown",
3050
- "description": "Array of Conditional Styles to ship with Adaptable",
3185
+ "description": "Array of Conditional Styles to ship with AdapTable",
3051
3186
  "uiLabel": "Conditional Styles",
3052
3187
  "isOptional": true
3053
3188
  }
@@ -3310,7 +3445,7 @@ exports.ADAPTABLE_METAMODEL = {
3310
3445
  {
3311
3446
  "name": "agGridContainerWaitTimeout",
3312
3447
  "kind": "number",
3313
- "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)",
3448
+ "description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by AdapTable React or AdapTable Angular)",
3314
3449
  "uiLabel": "Ag Grid Container Wait Timeout",
3315
3450
  "isOptional": true,
3316
3451
  "gridInfo": "item",
@@ -3470,6 +3605,42 @@ exports.ADAPTABLE_METAMODEL = {
3470
3605
  }
3471
3606
  ]
3472
3607
  },
3608
+ "CustomSettingsPanel": {
3609
+ "name": "CustomSettingsPanel",
3610
+ "kind": "Interface",
3611
+ "description": "Definition of a Custom Panel to add to the Adaptable Settings Panel",
3612
+ "properties": [
3613
+ {
3614
+ "name": "frameworkComponent",
3615
+ "kind": "REFERENCE",
3616
+ "description": "Framework-specific (Angular or React) component to be rendered",
3617
+ "uiLabel": "Framework Component",
3618
+ "isOptional": true,
3619
+ "reference": "unknown"
3620
+ },
3621
+ {
3622
+ "name": "icon",
3623
+ "kind": "REFERENCE",
3624
+ "description": "Icon rendered inside settings-panel name, inside the navigation",
3625
+ "uiLabel": "Icon",
3626
+ "isOptional": true,
3627
+ "reference": "AdaptableIcon"
3628
+ },
3629
+ {
3630
+ "name": "name",
3631
+ "kind": "string",
3632
+ "description": "Appears in Settings Panel Navigation and must be included in settingsPanelOptions.navigation for it to be displayed (by default added to the end)",
3633
+ "uiLabel": "Name"
3634
+ },
3635
+ {
3636
+ "name": "render",
3637
+ "kind": "unknown",
3638
+ "description": "Function to provide bespoke content when NOT using a Framework wrapper",
3639
+ "uiLabel": "Render",
3640
+ "isOptional": true
3641
+ }
3642
+ ]
3643
+ },
3473
3644
  "CustomSort": {
3474
3645
  "name": "CustomSort",
3475
3646
  "kind": "Interface",
@@ -5112,6 +5283,99 @@ exports.ADAPTABLE_METAMODEL = {
5112
5283
  "kind": "TypeAlias",
5113
5284
  "description": "The javascript function which is invoked by an AdapTableQL Function"
5114
5285
  },
5286
+ "ExpressionOptions": {
5287
+ "name": "ExpressionOptions",
5288
+ "kind": "Interface",
5289
+ "description": "Options for managing Expressions using AdapTableQL",
5290
+ "properties": [
5291
+ {
5292
+ "name": "defaultAggregatedBooleanFunctions",
5293
+ "kind": "REFERENCE",
5294
+ "description": "Aggregated Boolean Expression Functions available in AdapTableQL",
5295
+ "uiLabel": "Default Aggregated Boolean Functions",
5296
+ "isOptional": true,
5297
+ "gridInfo": "item",
5298
+ "defaultValue": "null (sets all)",
5299
+ "reference": "unknown"
5300
+ },
5301
+ {
5302
+ "name": "defaultAggregatedScalarFunctions",
5303
+ "kind": "REFERENCE",
5304
+ "description": "Aggregated Scalar Expression Functions available in AdapTableQL",
5305
+ "uiLabel": "Default Aggregated Scalar Functions",
5306
+ "isOptional": true,
5307
+ "gridInfo": "item",
5308
+ "defaultValue": "null (sets all)",
5309
+ "reference": "unknown"
5310
+ },
5311
+ {
5312
+ "name": "defaultBooleanFunctions",
5313
+ "kind": "REFERENCE",
5314
+ "description": "Boolean Expression Functions available in AdapTableQL",
5315
+ "uiLabel": "Default Boolean Functions",
5316
+ "isOptional": true,
5317
+ "gridInfo": "item",
5318
+ "defaultValue": "null (sets all)",
5319
+ "reference": "unknown"
5320
+ },
5321
+ {
5322
+ "name": "defaultObservableFunctions",
5323
+ "kind": "REFERENCE",
5324
+ "description": "Observable Expression Functions available in AdapTableQL",
5325
+ "uiLabel": "Default Observable Functions",
5326
+ "isOptional": true,
5327
+ "gridInfo": "item",
5328
+ "defaultValue": "null (sets all)",
5329
+ "reference": "unknown"
5330
+ },
5331
+ {
5332
+ "name": "defaultScalarFunctions",
5333
+ "kind": "REFERENCE",
5334
+ "description": "Scalar Expression Functions available in AdapTableQL",
5335
+ "uiLabel": "Default Scalar Functions",
5336
+ "isOptional": true,
5337
+ "gridInfo": "item",
5338
+ "defaultValue": "null (sets all)",
5339
+ "reference": "unknown"
5340
+ },
5341
+ {
5342
+ "name": "maxTimeframeSize",
5343
+ "kind": "number",
5344
+ "description": "Maximum time (in milliseconds) to hold a Data Change event in a trailing timeframe (see observableExpressionFunctions); value is capped at 86400000 (~24 hours) for performance reasons",
5345
+ "uiLabel": "Max Timeframe Size",
5346
+ "isOptional": true,
5347
+ "gridInfo": "item",
5348
+ "defaultValue": "28800000 (~8 hours)"
5349
+ },
5350
+ {
5351
+ "name": "moduleExpressionFunctions",
5352
+ "kind": "unknown",
5353
+ "description": "Module specific ExpressionFunctions; if not defined, it falls back to the defined default values",
5354
+ "uiLabel": "Module Expression Functions",
5355
+ "isOptional": true,
5356
+ "gridInfo": "item",
5357
+ "defaultValue": "undefined (defaults to default values)"
5358
+ },
5359
+ {
5360
+ "name": "performExpressionValidation",
5361
+ "kind": "boolean",
5362
+ "description": "Validate Expressions before they can be run or saved",
5363
+ "uiLabel": "Perform Expression Validation",
5364
+ "isOptional": true,
5365
+ "gridInfo": "item",
5366
+ "defaultValue": "true"
5367
+ },
5368
+ {
5369
+ "name": "queryableColumns",
5370
+ "kind": "unknown",
5371
+ "description": "Columns that can be included in AdapTableQL Expressions; leave unset to include **ALL**, provide empty array to set **NONE**",
5372
+ "uiLabel": "Queryable Columns",
5373
+ "isOptional": true,
5374
+ "gridInfo": "item",
5375
+ "defaultValue": "undefined"
5376
+ }
5377
+ ]
5378
+ },
5115
5379
  "FDC3Context": {
5116
5380
  "name": "FDC3Context",
5117
5381
  "kind": "Interface",
@@ -5809,7 +6073,7 @@ exports.ADAPTABLE_METAMODEL = {
5809
6073
  "description": "Applies Gradient, Percent Bar or CheckBox style to a Column",
5810
6074
  "uiLabel": "Column Style",
5811
6075
  "isOptional": true,
5812
- "reference": "unknown"
6076
+ "reference": "ColumnStyle"
5813
6077
  },
5814
6078
  {
5815
6079
  "name": "DisplayFormat",
@@ -6254,15 +6518,6 @@ exports.ADAPTABLE_METAMODEL = {
6254
6518
  "gridInfo": "item",
6255
6519
  "defaultValue": "true"
6256
6520
  },
6257
- {
6258
- "name": "caseSensitiveTextComparisons",
6259
- "kind": "boolean",
6260
- "description": "Perform case-sensitive text comparisons in all search and filter operations: QuickSearch, Filters, Query, Predicates",
6261
- "uiLabel": "Case Sensitive Text Comparisons",
6262
- "isOptional": true,
6263
- "gridInfo": "item",
6264
- "defaultValue": "false"
6265
- },
6266
6521
  {
6267
6522
  "name": "cellSummaryOperations",
6268
6523
  "kind": "unknown",
@@ -6564,6 +6819,28 @@ exports.ADAPTABLE_METAMODEL = {
6564
6819
  }
6565
6820
  ]
6566
6821
  },
6822
+ "GradientStyle": {
6823
+ "name": "GradientStyle",
6824
+ "kind": "Interface",
6825
+ "description": "Used to display Gradient Styles in Format Column",
6826
+ "properties": [
6827
+ {
6828
+ "name": "CellRanges",
6829
+ "kind": "unknown",
6830
+ "description": "Ranges (e.g. to allow a traffic light effect)",
6831
+ "uiLabel": "Cell Ranges",
6832
+ "isOptional": true
6833
+ },
6834
+ {
6835
+ "name": "ColumnComparison",
6836
+ "kind": "REFERENCE",
6837
+ "description": "Compares cell values to another Column",
6838
+ "uiLabel": "Column Comparison",
6839
+ "isOptional": true,
6840
+ "reference": "ColumnComparison"
6841
+ }
6842
+ ]
6843
+ },
6567
6844
  "GridApi": {
6568
6845
  "name": "GridApi",
6569
6846
  "kind": "Interface",
@@ -6962,9 +7239,21 @@ exports.ADAPTABLE_METAMODEL = {
6962
7239
  {
6963
7240
  "name": "selectCellRange",
6964
7241
  "kind": "function",
6965
- "description": "Selects a group of cells in a given range",
7242
+ "description": "Selects a group of cells in a given range - provide either primary keys or row indexes",
6966
7243
  "uiLabel": "Select Cell Range"
6967
7244
  },
7245
+ {
7246
+ "name": "selectColumn",
7247
+ "kind": "function",
7248
+ "description": "Selects a Column in AG Grid",
7249
+ "uiLabel": "Select Column"
7250
+ },
7251
+ {
7252
+ "name": "selectColumns",
7253
+ "kind": "function",
7254
+ "description": "Selects Columns in AG Grid",
7255
+ "uiLabel": "Select Columns"
7256
+ },
6968
7257
  {
6969
7258
  "name": "selectNode",
6970
7259
  "kind": "function",
@@ -8433,6 +8722,52 @@ exports.ADAPTABLE_METAMODEL = {
8433
8722
  "kind": "Interface",
8434
8723
  "description": "Internal State used by AdapTable for managing the OpenFin plugin"
8435
8724
  },
8725
+ "PercentBarStyle": {
8726
+ "name": "PercentBarStyle",
8727
+ "kind": "Interface",
8728
+ "description": "Style used to display Percent Bars in Format Column",
8729
+ "properties": [
8730
+ {
8731
+ "name": "BackColor",
8732
+ "kind": "string",
8733
+ "description": "Back colour - only used for 'Percent Bar' Numeric style; leave unset if none required",
8734
+ "uiLabel": "Back Color",
8735
+ "isOptional": true,
8736
+ "defaultValue": "Gray"
8737
+ },
8738
+ {
8739
+ "name": "CellRanges",
8740
+ "kind": "unknown",
8741
+ "description": "Ranges (e.g. to allow a traffic light effect)",
8742
+ "uiLabel": "Cell Ranges",
8743
+ "isOptional": true
8744
+ },
8745
+ {
8746
+ "name": "CellText",
8747
+ "kind": "REFERENCE",
8748
+ "description": "Whether Cell shows Cell Value, Percent Value, both or none",
8749
+ "uiLabel": "Cell Text",
8750
+ "isOptional": true,
8751
+ "reference": "unknown"
8752
+ },
8753
+ {
8754
+ "name": "ColumnComparison",
8755
+ "kind": "REFERENCE",
8756
+ "description": "Compares cell values to another Column",
8757
+ "uiLabel": "Column Comparison",
8758
+ "isOptional": true,
8759
+ "reference": "ColumnComparison"
8760
+ },
8761
+ {
8762
+ "name": "ToolTipText",
8763
+ "kind": "REFERENCE",
8764
+ "description": "Whether Tooltip shows Cell Value, Percent Value, both or none",
8765
+ "uiLabel": "Tool Tip Text",
8766
+ "isOptional": true,
8767
+ "reference": "unknown"
8768
+ }
8769
+ ]
8770
+ },
8436
8771
  "PermittedValues": {
8437
8772
  "name": "PermittedValues",
8438
8773
  "kind": "Interface",
@@ -8929,7 +9264,7 @@ exports.ADAPTABLE_METAMODEL = {
8929
9264
  {
8930
9265
  "name": "getCurrentQuery",
8931
9266
  "kind": "function",
8932
- "description": "Retuns the Current Query",
9267
+ "description": "Returns the Current Query",
8933
9268
  "uiLabel": "Get Current Query"
8934
9269
  },
8935
9270
  {
@@ -8987,6 +9322,12 @@ exports.ADAPTABLE_METAMODEL = {
8987
9322
  "kind": "Interface",
8988
9323
  "description": "Manages AdapTableQL (Query Language)",
8989
9324
  "properties": [
9325
+ {
9326
+ "name": "getAdaptableQueryExpression",
9327
+ "kind": "function",
9328
+ "description": "Returns the Expression string of the given AdaptableQuery, which may be either a Boolean, an AggregatedBoolean, a Scalar, an AggregatedScalar or an ObservableExpression expression",
9329
+ "uiLabel": "Get Adaptable Query Expression"
9330
+ },
8990
9331
  {
8991
9332
  "name": "getASTForExpression",
8992
9333
  "kind": "function",
@@ -8996,7 +9337,7 @@ exports.ADAPTABLE_METAMODEL = {
8996
9337
  {
8997
9338
  "name": "getColumnsFromExpression",
8998
9339
  "kind": "function",
8999
- "description": "Returns all Columns referenced in a Query",
9340
+ "description": "Returns all Columns referenced in a QueryExpression",
9000
9341
  "uiLabel": "Get Columns From Expression"
9001
9342
  },
9002
9343
  {
@@ -9012,10 +9353,16 @@ exports.ADAPTABLE_METAMODEL = {
9012
9353
  "uiLabel": "Get Queryable Column Ids"
9013
9354
  },
9014
9355
  {
9015
- "name": "isValidAggregationExpression",
9356
+ "name": "isValidAggregatedBooleanExpression",
9357
+ "kind": "function",
9358
+ "description": "Whether the given AggregatedBooleanExpression is valid",
9359
+ "uiLabel": "Is Valid Aggregated Boolean Expression"
9360
+ },
9361
+ {
9362
+ "name": "isValidAggregatedScalarExpression",
9016
9363
  "kind": "function",
9017
- "description": "Whether the given AggregationExpression is valid",
9018
- "uiLabel": "Is Valid Aggregation Expression"
9364
+ "description": "Whether the given AggregatedScalarExpression is valid",
9365
+ "uiLabel": "Is Valid Aggregated Scalar Expression"
9019
9366
  },
9020
9367
  {
9021
9368
  "name": "isValidBooleanExpression",
@@ -9031,89 +9378,6 @@ exports.ADAPTABLE_METAMODEL = {
9031
9378
  }
9032
9379
  ]
9033
9380
  },
9034
- "QueryLanguageOptions": {
9035
- "name": "QueryLanguageOptions",
9036
- "kind": "Interface",
9037
- "description": "Options for managing Expressions using AdapTableQL",
9038
- "properties": [
9039
- {
9040
- "name": "defaultAggregationFunctions",
9041
- "kind": "REFERENCE",
9042
- "description": "Aggregation Expression Functions available in AdapTableQL",
9043
- "uiLabel": "Default Aggregation Functions",
9044
- "isOptional": true,
9045
- "gridInfo": "item",
9046
- "defaultValue": "null (sets all)",
9047
- "reference": "unknown"
9048
- },
9049
- {
9050
- "name": "defaultBooleanFunctions",
9051
- "kind": "REFERENCE",
9052
- "description": "Boolean Expression Functions available in AdapTableQL",
9053
- "uiLabel": "Default Boolean Functions",
9054
- "isOptional": true,
9055
- "gridInfo": "item",
9056
- "defaultValue": "null (sets all)",
9057
- "reference": "unknown"
9058
- },
9059
- {
9060
- "name": "defaultObservableFunctions",
9061
- "kind": "REFERENCE",
9062
- "description": "Observable Expression Functions available in AdapTableQL",
9063
- "uiLabel": "Default Observable Functions",
9064
- "isOptional": true,
9065
- "gridInfo": "item",
9066
- "defaultValue": "null (sets all)",
9067
- "reference": "unknown"
9068
- },
9069
- {
9070
- "name": "defaultScalarFunctions",
9071
- "kind": "REFERENCE",
9072
- "description": "Scalar Expression Functions available in AdapTableQL",
9073
- "uiLabel": "Default Scalar Functions",
9074
- "isOptional": true,
9075
- "gridInfo": "item",
9076
- "defaultValue": "null (sets all)",
9077
- "reference": "unknown"
9078
- },
9079
- {
9080
- "name": "maxTimeframeSize",
9081
- "kind": "number",
9082
- "description": "Maximum time (in milliseconds) to hold a Data Change event in a trailing timeframe (see observableExpressionFunctions); value is capped at 86400000 (~24 hours) for performance reasons",
9083
- "uiLabel": "Max Timeframe Size",
9084
- "isOptional": true,
9085
- "gridInfo": "item",
9086
- "defaultValue": "28800000 (~8 hours)"
9087
- },
9088
- {
9089
- "name": "moduleExpressionFunctions",
9090
- "kind": "unknown",
9091
- "description": "Module specific ExpressionFunctions; if not defined, it falls back to the defined default values",
9092
- "uiLabel": "Module Expression Functions",
9093
- "isOptional": true,
9094
- "gridInfo": "item",
9095
- "defaultValue": "undefined (defaults to default values)"
9096
- },
9097
- {
9098
- "name": "performExpressionValidation",
9099
- "kind": "boolean",
9100
- "description": "Validate Expressions before they can be run or saved",
9101
- "uiLabel": "Perform Expression Validation",
9102
- "isOptional": true,
9103
- "gridInfo": "item",
9104
- "defaultValue": "true"
9105
- },
9106
- {
9107
- "name": "queryableColumns",
9108
- "kind": "unknown",
9109
- "description": "Columns that can be included in AdapTableQL Expressions; leave unset to include **ALL**, provide empty array to set **NONE**",
9110
- "uiLabel": "Queryable Columns",
9111
- "isOptional": true,
9112
- "gridInfo": "item",
9113
- "defaultValue": "undefined"
9114
- }
9115
- ]
9116
- },
9117
9381
  "QueryState": {
9118
9382
  "name": "QueryState",
9119
9383
  "kind": "Interface",
@@ -9884,16 +10148,6 @@ exports.ADAPTABLE_METAMODEL = {
9884
10148
  "isOptional": true,
9885
10149
  "gridInfo": "item",
9886
10150
  "defaultValue": "'Search'"
9887
- },
9888
- {
9889
- "name": "serverSearchOptions",
9890
- "kind": "REFERENCE",
9891
- "description": "Which searching and filtering options, if any, should take place on server",
9892
- "uiLabel": "Server Search Options",
9893
- "isOptional": true,
9894
- "gridInfo": "item",
9895
- "defaultValue": "undefined",
9896
- "reference": "unknown"
9897
10151
  }
9898
10152
  ]
9899
10153
  },
@@ -9950,6 +10204,25 @@ exports.ADAPTABLE_METAMODEL = {
9950
10204
  }
9951
10205
  ]
9952
10206
  },
10207
+ "SettingsPanelApi": {
10208
+ "name": "SettingsPanelApi",
10209
+ "kind": "Interface",
10210
+ "description": "Provides run-time access to the Settings Panel",
10211
+ "properties": [
10212
+ {
10213
+ "name": "showCustomSettingsPanel",
10214
+ "kind": "function",
10215
+ "description": "Opens Settings Panel with the Custom Settings Panel, provided by name, displayed",
10216
+ "uiLabel": "Show Custom Settings Panel"
10217
+ },
10218
+ {
10219
+ "name": "showSettingsPanel",
10220
+ "kind": "function",
10221
+ "description": "Opens Settings Panel and displays specified Module (if provided) or first available one",
10222
+ "uiLabel": "Show Settings Panel"
10223
+ }
10224
+ ]
10225
+ },
9953
10226
  "SharedEntity": {
9954
10227
  "name": "SharedEntity",
9955
10228
  "kind": "Interface",
@@ -9991,7 +10264,7 @@ exports.ADAPTABLE_METAMODEL = {
9991
10264
  "kind": "REFERENCE",
9992
10265
  "description": "Adaptable Module to which object belongs",
9993
10266
  "uiLabel": "Module",
9994
- "reference": "unknown"
10267
+ "reference": "AdaptableModule"
9995
10268
  },
9996
10269
  {
9997
10270
  "name": "Revision",
@@ -10189,7 +10462,7 @@ exports.ADAPTABLE_METAMODEL = {
10189
10462
  "SpecialColumnSettings": {
10190
10463
  "name": "SpecialColumnSettings",
10191
10464
  "kind": "Interface",
10192
- "description": "Base Settings for SpecialColumns",
10465
+ "description": "Base Settings for Calculated Columns and FreeText Columns",
10193
10466
  "properties": [
10194
10467
  {
10195
10468
  "name": "Aggregatable",
@@ -10274,19 +10547,19 @@ exports.ADAPTABLE_METAMODEL = {
10274
10547
  "StateOptions": {
10275
10548
  "name": "StateOptions",
10276
10549
  "kind": "Interface",
10277
- "description": "Options related to state hydration/dehydration - allows users to intercept state persistence and state loading with custom functionality.",
10550
+ "description": "Options related to Adaptable State hydration/dehydration - allows users to intercept state persistence and state loading with custom functionality",
10278
10551
  "properties": [
10279
10552
  {
10280
10553
  "name": "applyState",
10281
10554
  "kind": "unknown",
10282
- "description": "Allows hooking into AdaptableState hydration",
10555
+ "description": "Allows hooking into Adaptable State hydration",
10283
10556
  "uiLabel": "Apply State",
10284
10557
  "isOptional": true
10285
10558
  },
10286
10559
  {
10287
10560
  "name": "clearState",
10288
10561
  "kind": "REFERENCE",
10289
- "description": "Allows clearing of remote state.",
10562
+ "description": "Allows clearing of remote Adaptable State",
10290
10563
  "uiLabel": "Clear State",
10291
10564
  "isOptional": true,
10292
10565
  "reference": "unknown"
@@ -10294,7 +10567,7 @@ exports.ADAPTABLE_METAMODEL = {
10294
10567
  {
10295
10568
  "name": "debounceStateDelay",
10296
10569
  "kind": "number",
10297
- "description": "Delay (in ms) to debounce saveState/persistState calls enabling grouping multiple sequential calls in single one (e.g. elevator doors)",
10570
+ "description": "Delay (in ms) to debounce `saveState` / `persistState` calls enabling grouping multiple sequential calls in single one (e.g. elevator doors)",
10298
10571
  "uiLabel": "Debounce State Delay",
10299
10572
  "isOptional": true,
10300
10573
  "defaultValue": "400"
@@ -10302,7 +10575,7 @@ exports.ADAPTABLE_METAMODEL = {
10302
10575
  {
10303
10576
  "name": "loadState",
10304
10577
  "kind": "REFERENCE",
10305
- "description": "Allows the customization of state loading.",
10578
+ "description": "Allows the customization of Adaptable State loading",
10306
10579
  "uiLabel": "Load State",
10307
10580
  "isOptional": true,
10308
10581
  "reference": "AdaptableLoadStateFunction"
@@ -10310,7 +10583,7 @@ exports.ADAPTABLE_METAMODEL = {
10310
10583
  {
10311
10584
  "name": "persistState",
10312
10585
  "kind": "REFERENCE",
10313
- "description": "Allows the customization of state persistence.",
10586
+ "description": "Allows the customization of state persistence",
10314
10587
  "uiLabel": "Persist State",
10315
10588
  "isOptional": true,
10316
10589
  "reference": "AdaptablePersistStateFunction"
@@ -10318,13 +10591,34 @@ exports.ADAPTABLE_METAMODEL = {
10318
10591
  {
10319
10592
  "name": "saveState",
10320
10593
  "kind": "REFERENCE",
10321
- "description": "Allows the customization of the state that is going to be persisted",
10594
+ "description": "Allows the customization of the Adaptable State that is going to be persisted",
10322
10595
  "uiLabel": "Save State",
10323
10596
  "isOptional": true,
10324
10597
  "reference": "unknown"
10325
10598
  }
10326
10599
  ]
10327
10600
  },
10601
+ "StringFormatterOptions": {
10602
+ "name": "StringFormatterOptions",
10603
+ "kind": "Interface",
10604
+ "description": "Formatter Options for String Columns",
10605
+ "properties": [
10606
+ {
10607
+ "name": "Case",
10608
+ "kind": "unknown",
10609
+ "description": "Sets text to Upper or Lower case",
10610
+ "uiLabel": "Case",
10611
+ "isOptional": true
10612
+ },
10613
+ {
10614
+ "name": "Trim",
10615
+ "kind": "boolean",
10616
+ "description": "Trims text (both start and end)",
10617
+ "uiLabel": "Trim",
10618
+ "isOptional": true
10619
+ }
10620
+ ]
10621
+ },
10328
10622
  "SuspendableObject": {
10329
10623
  "name": "SuspendableObject",
10330
10624
  "kind": "Interface",
@@ -10891,6 +11185,11 @@ exports.ADAPTABLE_METAMODEL = {
10891
11185
  }
10892
11186
  ]
10893
11187
  },
11188
+ "ToolPanelVisibilityMode": {
11189
+ "name": "ToolPanelVisibilityMode",
11190
+ "kind": "TypeAlias",
11191
+ "description": "Whether a ToolPanel displays as expanded or collapsed"
11192
+ },
10894
11193
  "UserInterfaceApi": {
10895
11194
  "name": "UserInterfaceApi",
10896
11195
  "kind": "Interface",
@@ -11073,7 +11372,7 @@ exports.ADAPTABLE_METAMODEL = {
11073
11372
  "description": "Which sections to show in the Grid Info Screen",
11074
11373
  "uiLabel": "Grid Info Sections",
11075
11374
  "isOptional": true,
11076
- "defaultValue": "['GridSummary', 'AdaptableOptions','ColumnInfo']",
11375
+ "defaultValue": "['GridSummary', 'AdaptableOptions', 'ColumnInfo']",
11077
11376
  "reference": "unknown"
11078
11377
  },
11079
11378
  {