@adaptabletools/adaptable 11.0.0-canary.6 → 11.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. package/README.md +4 -4
  2. package/agGrid.d.ts +5 -4
  3. package/agGrid.js +7 -5
  4. package/base.css +3 -4
  5. package/bundle.cjs.js +120 -115
  6. package/index.css +3 -4
  7. package/package.json +1 -1
  8. package/publishTimestamp.d.ts +1 -1
  9. package/publishTimestamp.js +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -1
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -5
  12. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -2
  13. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  14. package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
  15. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  16. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  17. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +7 -6
  18. package/src/AdaptableOptions/StateOptions.d.ts +7 -7
  19. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  20. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  21. package/src/Api/GridApi.d.ts +12 -3
  22. package/src/Api/Implementation/AlertApiImpl.js +1 -2
  23. package/src/Api/Implementation/ApiBase.d.ts +3 -2
  24. package/src/Api/Implementation/ApiBase.js +5 -2
  25. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  26. package/src/Api/Implementation/ColumnApiImpl.js +1 -1
  27. package/src/Api/Implementation/GridApiImpl.d.ts +2 -0
  28. package/src/Api/Implementation/GridApiImpl.js +41 -21
  29. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  30. package/src/Api/Implementation/InternalApiImpl.js +5 -4
  31. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +3 -0
  32. package/src/Api/Implementation/QueryLanguageApiImpl.js +15 -2
  33. package/src/Api/Implementation/SettingsPanelApiImpl.js +1 -1
  34. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  35. package/src/Api/InternalApi.d.ts +2 -3
  36. package/src/Api/QueryApi.d.ts +2 -2
  37. package/src/Api/QueryLanguageApi.d.ts +13 -0
  38. package/src/Api/SettingsPanelApi.d.ts +4 -5
  39. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  40. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -3
  41. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
  42. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -0
  43. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +0 -1
  44. package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -5
  45. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  46. package/src/PredefinedConfig/Common/Types.d.ts +6 -1
  47. package/src/PredefinedConfig/Common/Types.js +1 -0
  48. package/src/PredefinedConfig/ConditionalStyleState.d.ts +2 -2
  49. package/src/PredefinedConfig/FormatColumnState.d.ts +15 -0
  50. package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
  51. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  52. package/src/PredefinedConfig/ToolPanelState.d.ts +3 -0
  53. package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
  54. package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
  55. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
  56. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
  57. package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
  58. package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
  59. package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
  60. package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
  61. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
  62. package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
  63. package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
  64. package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
  65. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
  66. package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
  67. package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
  68. package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
  69. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  70. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  71. package/src/Redux/Store/AdaptableStore.js +47 -22
  72. package/src/Strategy/AlertModule.js +4 -4
  73. package/src/Strategy/CalculatedColumnModule.js +4 -4
  74. package/src/Strategy/ChartingModule.d.ts +3 -3
  75. package/src/Strategy/ChartingModule.js +2 -2
  76. package/src/Strategy/FlashingCellModule.js +4 -4
  77. package/src/Strategy/FreeTextColumnModule.js +1 -0
  78. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  79. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  80. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  81. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  82. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  83. package/src/Strategy/Utilities/getRuleViewItems.js +1 -2
  84. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +3 -2
  85. package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -10
  86. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +18 -13
  87. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +1 -1
  88. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +18 -1
  89. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +311 -14
  90. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  91. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  92. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +2 -3
  93. package/src/Utilities/ExpressionFunctions/groupingMap.js +3 -2
  94. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  95. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  96. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  97. package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
  98. package/src/Utilities/Services/AlertService.js +5 -1
  99. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  100. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  101. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  102. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  103. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +7 -1
  104. package/src/Utilities/Services/LicenseService.js +1 -1
  105. package/src/Utilities/Services/ModuleService.js +33 -40
  106. package/src/Utilities/Services/QueryLanguageService.d.ts +9 -2
  107. package/src/Utilities/Services/QueryLanguageService.js +81 -22
  108. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -3
  109. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  110. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  111. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  112. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  113. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  114. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  115. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  116. package/src/View/ColorPicker.d.ts +1 -1
  117. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  118. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  119. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  120. package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
  121. package/src/View/Components/EntityRulesEditor/index.js +3 -4
  122. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  123. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  124. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -8
  125. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -2
  126. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  127. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  128. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  129. package/src/View/Components/ValueSelector/index.js +1 -1
  130. package/src/View/Dashboard/DashboardPopup.js +1 -1
  131. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
  132. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  133. package/src/View/License/LicenseWatermark.js +1 -1
  134. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
  135. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  136. package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -3
  137. package/src/agGrid/Adaptable.d.ts +4 -1
  138. package/src/agGrid/Adaptable.js +71 -48
  139. package/src/agGrid/CheckboxRenderer.d.ts +8 -1
  140. package/src/agGrid/CheckboxRenderer.js +18 -3
  141. package/src/agGrid/agGridHelper.d.ts +1 -1
  142. package/src/agGrid/agGridHelper.js +9 -10
  143. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  144. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  145. package/src/components/Datepicker/index.d.ts +1 -1
  146. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  147. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  148. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +1 -1
  149. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  150. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  151. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  152. package/src/components/ExpressionEditor/index.d.ts +2 -1
  153. package/src/components/ExpressionEditor/index.js +9 -2
  154. package/src/components/Input/index.d.ts +1 -1
  155. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  156. package/src/components/Logo/index.js +8 -7
  157. package/src/components/PopupWithFooter.d.ts +1 -1
  158. package/src/components/Textarea/index.d.ts +1 -1
  159. package/src/components/icons/calculated-column.js +2 -1
  160. package/src/metamodel/adaptable.metamodel.d.ts +235 -41
  161. package/src/metamodel/adaptable.metamodel.js +435 -149
  162. package/src/types.d.ts +5 -5
  163. package/version.d.ts +1 -1
  164. 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",
@@ -474,6 +479,11 @@ exports.ADAPTABLE_METAMODEL = {
474
479
  }
475
480
  ]
476
481
  },
482
+ "AdaptableCalculatedColumnQuery": {
483
+ "name": "AdaptableCalculatedColumnQuery",
484
+ "kind": "TypeAlias",
485
+ "description": "Calculated Column Query which may be a Scalar or an AggregatedScalar Expression"
486
+ },
477
487
  "AdaptableColumn": {
478
488
  "name": "AdaptableColumn",
479
489
  "kind": "Interface",
@@ -589,7 +599,7 @@ exports.ADAPTABLE_METAMODEL = {
589
599
  {
590
600
  "name": "readOnly",
591
601
  "kind": "boolean",
592
- "description": "Is column editable",
602
+ "description": "Is the column editable; returns FALSE if the column has conditional/dynamic editability, assuming some rows are editable",
593
603
  "uiLabel": "Read Only"
594
604
  },
595
605
  {
@@ -879,6 +889,11 @@ exports.ADAPTABLE_METAMODEL = {
879
889
  "kind": "TypeAlias",
880
890
  "description": "Defines a Message Types: 'Success', 'Info', 'Warning' or 'Error'"
881
891
  },
892
+ "AdaptableModule": {
893
+ "name": "AdaptableModule",
894
+ "kind": "TypeAlias",
895
+ "description": "Modules provided by AdapTable, subject to Entitlements and usually have Predefined Config"
896
+ },
882
897
  "AdaptableObject": {
883
898
  "name": "AdaptableObject",
884
899
  "kind": "Interface",
@@ -922,6 +937,14 @@ exports.ADAPTABLE_METAMODEL = {
922
937
  "gridInfo": "item",
923
938
  "defaultValue": "'adaptable_id'"
924
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
+ },
925
948
  {
926
949
  "name": "adaptableStateKey",
927
950
  "kind": "string",
@@ -1109,15 +1132,6 @@ exports.ADAPTABLE_METAMODEL = {
1109
1132
  "gridInfo": "item",
1110
1133
  "defaultValue": "n/a (Mandatory)"
1111
1134
  },
1112
- {
1113
- "name": "queryLanguageOptions",
1114
- "kind": "REFERENCE",
1115
- "description": "Options for managing queries in AdapTableQL",
1116
- "uiLabel": "Query Language Options",
1117
- "isOptional": true,
1118
- "gridInfo": "container",
1119
- "reference": "QueryLanguageOptions"
1120
- },
1121
1135
  {
1122
1136
  "name": "searchOptions",
1123
1137
  "kind": "REFERENCE",
@@ -1280,6 +1294,40 @@ exports.ADAPTABLE_METAMODEL = {
1280
1294
  }
1281
1295
  ]
1282
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
+ },
1283
1331
  "AdaptableReadyInfo": {
1284
1332
  "name": "AdaptableReadyInfo",
1285
1333
  "kind": "Interface",
@@ -1798,7 +1846,7 @@ exports.ADAPTABLE_METAMODEL = {
1798
1846
  "kind": "REFERENCE",
1799
1847
  "description": "When Alert should be triggered",
1800
1848
  "uiLabel": "Rule",
1801
- "reference": "unknown"
1849
+ "reference": "AlertRule"
1802
1850
  },
1803
1851
  {
1804
1852
  "name": "Scope",
@@ -1940,6 +1988,11 @@ exports.ADAPTABLE_METAMODEL = {
1940
1988
  }
1941
1989
  ]
1942
1990
  },
1991
+ "AlertRule": {
1992
+ "name": "AlertRule",
1993
+ "kind": "TypeAlias",
1994
+ "description": "The Alert Rule defined by either an AdaptablePredicate or an AdaptableQuery"
1995
+ },
1943
1996
  "AlertState": {
1944
1997
  "name": "AlertState",
1945
1998
  "kind": "Interface",
@@ -1964,7 +2017,7 @@ exports.ADAPTABLE_METAMODEL = {
1964
2017
  "kind": "REFERENCE",
1965
2018
  "description": "Adaptable Module to rename",
1966
2019
  "uiLabel": "Adaptable Module",
1967
- "reference": "unknown"
2020
+ "reference": "AdaptableModule"
1968
2021
  },
1969
2022
  {
1970
2023
  "name": "newName",
@@ -2156,10 +2209,10 @@ exports.ADAPTABLE_METAMODEL = {
2156
2209
  {
2157
2210
  "name": "Query",
2158
2211
  "kind": "REFERENCE",
2159
- "description": "Scalar Expression used by AdapTableQL to evaluate Column's value",
2212
+ "description": "Scalar/AggregatedScalar Query used by AdapTableQL to evaluate Column's value",
2160
2213
  "uiLabel": "Query",
2161
2214
  "isOptional": true,
2162
- "reference": "unknown"
2215
+ "reference": "AdaptableCalculatedColumnQuery"
2163
2216
  }
2164
2217
  ]
2165
2218
  },
@@ -2186,12 +2239,6 @@ exports.ADAPTABLE_METAMODEL = {
2186
2239
  "description": "Edits given Calculated Column",
2187
2240
  "uiLabel": "Edit Calculated Column"
2188
2241
  },
2189
- {
2190
- "name": "editCalculatedColumnExpression",
2191
- "kind": "function",
2192
- "description": "Replaces Expression in given Calculated Column with new value",
2193
- "uiLabel": "Edit Calculated Column Expression"
2194
- },
2195
2242
  {
2196
2243
  "name": "editCalculatedColumns",
2197
2244
  "kind": "function",
@@ -2207,7 +2254,7 @@ exports.ADAPTABLE_METAMODEL = {
2207
2254
  {
2208
2255
  "name": "getCalculatedColumnById",
2209
2256
  "kind": "function",
2210
- "description": "Retrieves Calculated column by id",
2257
+ "description": "Retrieves Calculated Column by the unique identifier of the Adaptable Object in the CalculatedColumnState",
2211
2258
  "uiLabel": "Get Calculated Column By Id"
2212
2259
  },
2213
2260
  {
@@ -2304,6 +2351,38 @@ exports.ADAPTABLE_METAMODEL = {
2304
2351
  }
2305
2352
  ]
2306
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
+ },
2307
2386
  "CellHighlightInfo": {
2308
2387
  "name": "CellHighlightInfo",
2309
2388
  "kind": "Interface",
@@ -2803,6 +2882,31 @@ exports.ADAPTABLE_METAMODEL = {
2803
2882
  }
2804
2883
  ]
2805
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
+ },
2806
2910
  "ColumnFilter": {
2807
2911
  "name": "ColumnFilter",
2808
2912
  "kind": "Interface",
@@ -2869,6 +2973,36 @@ exports.ADAPTABLE_METAMODEL = {
2869
2973
  }
2870
2974
  ]
2871
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
+ },
2872
3006
  "ColumnValuesComparer": {
2873
3007
  "name": "ColumnValuesComparer",
2874
3008
  "kind": "Interface",
@@ -2898,7 +3032,7 @@ exports.ADAPTABLE_METAMODEL = {
2898
3032
  {
2899
3033
  "name": "IncludeGroupedRows",
2900
3034
  "kind": "boolean",
2901
- "description": "Whether to apply Style in Grouped Rows",
3035
+ "description": "Whether to apply Style in Grouped Rows and when Pivoting",
2902
3036
  "uiLabel": "Include Grouped Rows",
2903
3037
  "isOptional": true,
2904
3038
  "defaultValue": "false"
@@ -3048,7 +3182,7 @@ exports.ADAPTABLE_METAMODEL = {
3048
3182
  {
3049
3183
  "name": "ConditionalStyles",
3050
3184
  "kind": "unknown",
3051
- "description": "Array of Conditional Styles to ship with Adaptable",
3185
+ "description": "Array of Conditional Styles to ship with AdapTable",
3052
3186
  "uiLabel": "Conditional Styles",
3053
3187
  "isOptional": true
3054
3188
  }
@@ -3471,6 +3605,42 @@ exports.ADAPTABLE_METAMODEL = {
3471
3605
  }
3472
3606
  ]
3473
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
+ },
3474
3644
  "CustomSort": {
3475
3645
  "name": "CustomSort",
3476
3646
  "kind": "Interface",
@@ -3691,6 +3861,13 @@ exports.ADAPTABLE_METAMODEL = {
3691
3861
  "kind": "Interface",
3692
3862
  "description": "Defines a Custom ToolPanel - provided by Users and contains custom content",
3693
3863
  "properties": [
3864
+ {
3865
+ "name": "buttons",
3866
+ "kind": "unknown",
3867
+ "description": "Optional set of buttons to show in the ToolPanel",
3868
+ "uiLabel": "Buttons",
3869
+ "isOptional": true
3870
+ },
3694
3871
  {
3695
3872
  "name": "frameworkComponent",
3696
3873
  "kind": "REFERENCE",
@@ -3718,13 +3895,6 @@ exports.ADAPTABLE_METAMODEL = {
3718
3895
  "description": "Title to display in Custom ToolPanel; if undefined, will default to `name` property",
3719
3896
  "uiLabel": "Title",
3720
3897
  "isOptional": true
3721
- },
3722
- {
3723
- "name": "toolPanelButtons",
3724
- "kind": "unknown",
3725
- "description": "Optional set of buttons to show in the ToolPanel",
3726
- "uiLabel": "Tool Panel Buttons",
3727
- "isOptional": true
3728
3898
  }
3729
3899
  ]
3730
3900
  },
@@ -5113,6 +5283,99 @@ exports.ADAPTABLE_METAMODEL = {
5113
5283
  "kind": "TypeAlias",
5114
5284
  "description": "The javascript function which is invoked by an AdapTableQL Function"
5115
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
+ },
5116
5379
  "FDC3Context": {
5117
5380
  "name": "FDC3Context",
5118
5381
  "kind": "Interface",
@@ -5419,6 +5682,13 @@ exports.ADAPTABLE_METAMODEL = {
5419
5682
  "gridInfo": "item",
5420
5683
  "defaultValue": "2,000"
5421
5684
  },
5685
+ {
5686
+ "name": "quickFilterHeight",
5687
+ "kind": "number",
5688
+ "description": "TODO: add comment",
5689
+ "uiLabel": "Quick Filter Height",
5690
+ "isOptional": true
5691
+ },
5422
5692
  {
5423
5693
  "name": "quickFilterTrigger",
5424
5694
  "kind": "unknown",
@@ -5810,7 +6080,7 @@ exports.ADAPTABLE_METAMODEL = {
5810
6080
  "description": "Applies Gradient, Percent Bar or CheckBox style to a Column",
5811
6081
  "uiLabel": "Column Style",
5812
6082
  "isOptional": true,
5813
- "reference": "unknown"
6083
+ "reference": "ColumnStyle"
5814
6084
  },
5815
6085
  {
5816
6086
  "name": "DisplayFormat",
@@ -6255,15 +6525,6 @@ exports.ADAPTABLE_METAMODEL = {
6255
6525
  "gridInfo": "item",
6256
6526
  "defaultValue": "true"
6257
6527
  },
6258
- {
6259
- "name": "caseSensitiveTextComparisons",
6260
- "kind": "boolean",
6261
- "description": "Perform case-sensitive text comparisons in all search and filter operations: QuickSearch, Filters, Query, Predicates",
6262
- "uiLabel": "Case Sensitive Text Comparisons",
6263
- "isOptional": true,
6264
- "gridInfo": "item",
6265
- "defaultValue": "false"
6266
- },
6267
6528
  {
6268
6529
  "name": "cellSummaryOperations",
6269
6530
  "kind": "unknown",
@@ -6565,6 +6826,28 @@ exports.ADAPTABLE_METAMODEL = {
6565
6826
  }
6566
6827
  ]
6567
6828
  },
6829
+ "GradientStyle": {
6830
+ "name": "GradientStyle",
6831
+ "kind": "Interface",
6832
+ "description": "Used to display Gradient Styles in Format Column",
6833
+ "properties": [
6834
+ {
6835
+ "name": "CellRanges",
6836
+ "kind": "unknown",
6837
+ "description": "Ranges (e.g. to allow a traffic light effect)",
6838
+ "uiLabel": "Cell Ranges",
6839
+ "isOptional": true
6840
+ },
6841
+ {
6842
+ "name": "ColumnComparison",
6843
+ "kind": "REFERENCE",
6844
+ "description": "Compares cell values to another Column",
6845
+ "uiLabel": "Column Comparison",
6846
+ "isOptional": true,
6847
+ "reference": "ColumnComparison"
6848
+ }
6849
+ ]
6850
+ },
6568
6851
  "GridApi": {
6569
6852
  "name": "GridApi",
6570
6853
  "kind": "Interface",
@@ -6963,9 +7246,21 @@ exports.ADAPTABLE_METAMODEL = {
6963
7246
  {
6964
7247
  "name": "selectCellRange",
6965
7248
  "kind": "function",
6966
- "description": "Selects a group of cells in a given range",
7249
+ "description": "Selects a group of cells in a given range - provide either primary keys or row indexes",
6967
7250
  "uiLabel": "Select Cell Range"
6968
7251
  },
7252
+ {
7253
+ "name": "selectColumn",
7254
+ "kind": "function",
7255
+ "description": "Selects a Column in AG Grid",
7256
+ "uiLabel": "Select Column"
7257
+ },
7258
+ {
7259
+ "name": "selectColumns",
7260
+ "kind": "function",
7261
+ "description": "Selects Columns in AG Grid",
7262
+ "uiLabel": "Select Columns"
7263
+ },
6969
7264
  {
6970
7265
  "name": "selectNode",
6971
7266
  "kind": "function",
@@ -8434,6 +8729,52 @@ exports.ADAPTABLE_METAMODEL = {
8434
8729
  "kind": "Interface",
8435
8730
  "description": "Internal State used by AdapTable for managing the OpenFin plugin"
8436
8731
  },
8732
+ "PercentBarStyle": {
8733
+ "name": "PercentBarStyle",
8734
+ "kind": "Interface",
8735
+ "description": "Style used to display Percent Bars in Format Column",
8736
+ "properties": [
8737
+ {
8738
+ "name": "BackColor",
8739
+ "kind": "string",
8740
+ "description": "Back colour - only used for 'Percent Bar' Numeric style; leave unset if none required",
8741
+ "uiLabel": "Back Color",
8742
+ "isOptional": true,
8743
+ "defaultValue": "Gray"
8744
+ },
8745
+ {
8746
+ "name": "CellRanges",
8747
+ "kind": "unknown",
8748
+ "description": "Ranges (e.g. to allow a traffic light effect)",
8749
+ "uiLabel": "Cell Ranges",
8750
+ "isOptional": true
8751
+ },
8752
+ {
8753
+ "name": "CellText",
8754
+ "kind": "REFERENCE",
8755
+ "description": "Whether Cell shows Cell Value, Percent Value, both or none",
8756
+ "uiLabel": "Cell Text",
8757
+ "isOptional": true,
8758
+ "reference": "unknown"
8759
+ },
8760
+ {
8761
+ "name": "ColumnComparison",
8762
+ "kind": "REFERENCE",
8763
+ "description": "Compares cell values to another Column",
8764
+ "uiLabel": "Column Comparison",
8765
+ "isOptional": true,
8766
+ "reference": "ColumnComparison"
8767
+ },
8768
+ {
8769
+ "name": "ToolTipText",
8770
+ "kind": "REFERENCE",
8771
+ "description": "Whether Tooltip shows Cell Value, Percent Value, both or none",
8772
+ "uiLabel": "Tool Tip Text",
8773
+ "isOptional": true,
8774
+ "reference": "unknown"
8775
+ }
8776
+ ]
8777
+ },
8437
8778
  "PermittedValues": {
8438
8779
  "name": "PermittedValues",
8439
8780
  "kind": "Interface",
@@ -8596,7 +8937,7 @@ exports.ADAPTABLE_METAMODEL = {
8596
8937
  {
8597
8938
  "name": "Rule",
8598
8939
  "kind": "REFERENCE",
8599
- "description": "(Optional) Boolean Query to determine whether to apply the Nudge",
8940
+ "description": "(Optional) Boolean Expression to determine whether to apply the Nudge",
8600
8941
  "uiLabel": "Rule",
8601
8942
  "isOptional": true,
8602
8943
  "reference": "unknown"
@@ -8930,7 +9271,7 @@ exports.ADAPTABLE_METAMODEL = {
8930
9271
  {
8931
9272
  "name": "getCurrentQuery",
8932
9273
  "kind": "function",
8933
- "description": "Retuns the Current Query",
9274
+ "description": "Returns the Current Query",
8934
9275
  "uiLabel": "Get Current Query"
8935
9276
  },
8936
9277
  {
@@ -8988,6 +9329,12 @@ exports.ADAPTABLE_METAMODEL = {
8988
9329
  "kind": "Interface",
8989
9330
  "description": "Manages AdapTableQL (Query Language)",
8990
9331
  "properties": [
9332
+ {
9333
+ "name": "getAdaptableQueryExpression",
9334
+ "kind": "function",
9335
+ "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",
9336
+ "uiLabel": "Get Adaptable Query Expression"
9337
+ },
8991
9338
  {
8992
9339
  "name": "getASTForExpression",
8993
9340
  "kind": "function",
@@ -9018,6 +9365,12 @@ exports.ADAPTABLE_METAMODEL = {
9018
9365
  "description": "Whether the given AggregatedBooleanExpression is valid",
9019
9366
  "uiLabel": "Is Valid Aggregated Boolean Expression"
9020
9367
  },
9368
+ {
9369
+ "name": "isValidAggregatedScalarExpression",
9370
+ "kind": "function",
9371
+ "description": "Whether the given AggregatedScalarExpression is valid",
9372
+ "uiLabel": "Is Valid Aggregated Scalar Expression"
9373
+ },
9021
9374
  {
9022
9375
  "name": "isValidBooleanExpression",
9023
9376
  "kind": "function",
@@ -9032,89 +9385,6 @@ exports.ADAPTABLE_METAMODEL = {
9032
9385
  }
9033
9386
  ]
9034
9387
  },
9035
- "QueryLanguageOptions": {
9036
- "name": "QueryLanguageOptions",
9037
- "kind": "Interface",
9038
- "description": "Options for managing Expressions using AdapTableQL",
9039
- "properties": [
9040
- {
9041
- "name": "defaultAggregatedBooleanFunctions",
9042
- "kind": "REFERENCE",
9043
- "description": "Aggregated Boolean Expression Functions available in AdapTableQL",
9044
- "uiLabel": "Default Aggregated Boolean Functions",
9045
- "isOptional": true,
9046
- "gridInfo": "item",
9047
- "defaultValue": "null (sets all)",
9048
- "reference": "unknown"
9049
- },
9050
- {
9051
- "name": "defaultBooleanFunctions",
9052
- "kind": "REFERENCE",
9053
- "description": "Boolean Expression Functions available in AdapTableQL",
9054
- "uiLabel": "Default Boolean Functions",
9055
- "isOptional": true,
9056
- "gridInfo": "item",
9057
- "defaultValue": "null (sets all)",
9058
- "reference": "unknown"
9059
- },
9060
- {
9061
- "name": "defaultObservableFunctions",
9062
- "kind": "REFERENCE",
9063
- "description": "Observable Expression Functions available in AdapTableQL",
9064
- "uiLabel": "Default Observable Functions",
9065
- "isOptional": true,
9066
- "gridInfo": "item",
9067
- "defaultValue": "null (sets all)",
9068
- "reference": "unknown"
9069
- },
9070
- {
9071
- "name": "defaultScalarFunctions",
9072
- "kind": "REFERENCE",
9073
- "description": "Scalar Expression Functions available in AdapTableQL",
9074
- "uiLabel": "Default Scalar Functions",
9075
- "isOptional": true,
9076
- "gridInfo": "item",
9077
- "defaultValue": "null (sets all)",
9078
- "reference": "unknown"
9079
- },
9080
- {
9081
- "name": "maxTimeframeSize",
9082
- "kind": "number",
9083
- "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",
9084
- "uiLabel": "Max Timeframe Size",
9085
- "isOptional": true,
9086
- "gridInfo": "item",
9087
- "defaultValue": "28800000 (~8 hours)"
9088
- },
9089
- {
9090
- "name": "moduleExpressionFunctions",
9091
- "kind": "unknown",
9092
- "description": "Module specific ExpressionFunctions; if not defined, it falls back to the defined default values",
9093
- "uiLabel": "Module Expression Functions",
9094
- "isOptional": true,
9095
- "gridInfo": "item",
9096
- "defaultValue": "undefined (defaults to default values)"
9097
- },
9098
- {
9099
- "name": "performExpressionValidation",
9100
- "kind": "boolean",
9101
- "description": "Validate Expressions before they can be run or saved",
9102
- "uiLabel": "Perform Expression Validation",
9103
- "isOptional": true,
9104
- "gridInfo": "item",
9105
- "defaultValue": "true"
9106
- },
9107
- {
9108
- "name": "queryableColumns",
9109
- "kind": "unknown",
9110
- "description": "Columns that can be included in AdapTableQL Expressions; leave unset to include **ALL**, provide empty array to set **NONE**",
9111
- "uiLabel": "Queryable Columns",
9112
- "isOptional": true,
9113
- "gridInfo": "item",
9114
- "defaultValue": "undefined"
9115
- }
9116
- ]
9117
- },
9118
9388
  "QueryState": {
9119
9389
  "name": "QueryState",
9120
9390
  "kind": "Interface",
@@ -9885,16 +10155,6 @@ exports.ADAPTABLE_METAMODEL = {
9885
10155
  "isOptional": true,
9886
10156
  "gridInfo": "item",
9887
10157
  "defaultValue": "'Search'"
9888
- },
9889
- {
9890
- "name": "serverSearchOptions",
9891
- "kind": "REFERENCE",
9892
- "description": "Which searching and filtering options, if any, should take place on server",
9893
- "uiLabel": "Server Search Options",
9894
- "isOptional": true,
9895
- "gridInfo": "item",
9896
- "defaultValue": "undefined",
9897
- "reference": "unknown"
9898
10158
  }
9899
10159
  ]
9900
10160
  },
@@ -9959,13 +10219,13 @@ exports.ADAPTABLE_METAMODEL = {
9959
10219
  {
9960
10220
  "name": "showCustomSettingsPanel",
9961
10221
  "kind": "function",
9962
- "description": "Opens a the settings panel to the custom module",
10222
+ "description": "Opens Settings Panel with the Custom Settings Panel, provided by name, displayed",
9963
10223
  "uiLabel": "Show Custom Settings Panel"
9964
10224
  },
9965
10225
  {
9966
10226
  "name": "showSettingsPanel",
9967
10227
  "kind": "function",
9968
- "description": "Opens settings panel to specified module, when not specified it opens the first available module",
10228
+ "description": "Opens Settings Panel and displays specified Module (if provided) or first available one",
9969
10229
  "uiLabel": "Show Settings Panel"
9970
10230
  }
9971
10231
  ]
@@ -10011,7 +10271,7 @@ exports.ADAPTABLE_METAMODEL = {
10011
10271
  "kind": "REFERENCE",
10012
10272
  "description": "Adaptable Module to which object belongs",
10013
10273
  "uiLabel": "Module",
10014
- "reference": "unknown"
10274
+ "reference": "AdaptableModule"
10015
10275
  },
10016
10276
  {
10017
10277
  "name": "Revision",
@@ -10209,7 +10469,7 @@ exports.ADAPTABLE_METAMODEL = {
10209
10469
  "SpecialColumnSettings": {
10210
10470
  "name": "SpecialColumnSettings",
10211
10471
  "kind": "Interface",
10212
- "description": "Base Settings for SpecialColumns",
10472
+ "description": "Base Settings for Calculated Columns and FreeText Columns",
10213
10473
  "properties": [
10214
10474
  {
10215
10475
  "name": "Aggregatable",
@@ -10294,19 +10554,19 @@ exports.ADAPTABLE_METAMODEL = {
10294
10554
  "StateOptions": {
10295
10555
  "name": "StateOptions",
10296
10556
  "kind": "Interface",
10297
- "description": "Options related to state hydration/dehydration - allows users to intercept state persistence and state loading with custom functionality.",
10557
+ "description": "Options related to Adaptable State hydration/dehydration - allows users to intercept state persistence and state loading with custom functionality",
10298
10558
  "properties": [
10299
10559
  {
10300
10560
  "name": "applyState",
10301
10561
  "kind": "unknown",
10302
- "description": "Allows hooking into AdaptableState hydration",
10562
+ "description": "Allows hooking into Adaptable State hydration",
10303
10563
  "uiLabel": "Apply State",
10304
10564
  "isOptional": true
10305
10565
  },
10306
10566
  {
10307
10567
  "name": "clearState",
10308
10568
  "kind": "REFERENCE",
10309
- "description": "Allows clearing of remote state.",
10569
+ "description": "Allows clearing of remote Adaptable State",
10310
10570
  "uiLabel": "Clear State",
10311
10571
  "isOptional": true,
10312
10572
  "reference": "unknown"
@@ -10314,7 +10574,7 @@ exports.ADAPTABLE_METAMODEL = {
10314
10574
  {
10315
10575
  "name": "debounceStateDelay",
10316
10576
  "kind": "number",
10317
- "description": "Delay (in ms) to debounce saveState/persistState calls enabling grouping multiple sequential calls in single one (e.g. elevator doors)",
10577
+ "description": "Delay (in ms) to debounce `saveState` / `persistState` calls enabling grouping multiple sequential calls in single one (e.g. elevator doors)",
10318
10578
  "uiLabel": "Debounce State Delay",
10319
10579
  "isOptional": true,
10320
10580
  "defaultValue": "400"
@@ -10322,7 +10582,7 @@ exports.ADAPTABLE_METAMODEL = {
10322
10582
  {
10323
10583
  "name": "loadState",
10324
10584
  "kind": "REFERENCE",
10325
- "description": "Allows the customization of state loading.",
10585
+ "description": "Allows the customization of Adaptable State loading",
10326
10586
  "uiLabel": "Load State",
10327
10587
  "isOptional": true,
10328
10588
  "reference": "AdaptableLoadStateFunction"
@@ -10330,7 +10590,7 @@ exports.ADAPTABLE_METAMODEL = {
10330
10590
  {
10331
10591
  "name": "persistState",
10332
10592
  "kind": "REFERENCE",
10333
- "description": "Allows the customization of state persistence.",
10593
+ "description": "Allows the customization of state persistence",
10334
10594
  "uiLabel": "Persist State",
10335
10595
  "isOptional": true,
10336
10596
  "reference": "AdaptablePersistStateFunction"
@@ -10338,13 +10598,34 @@ exports.ADAPTABLE_METAMODEL = {
10338
10598
  {
10339
10599
  "name": "saveState",
10340
10600
  "kind": "REFERENCE",
10341
- "description": "Allows the customization of the state that is going to be persisted",
10601
+ "description": "Allows the customization of the Adaptable State that is going to be persisted",
10342
10602
  "uiLabel": "Save State",
10343
10603
  "isOptional": true,
10344
10604
  "reference": "unknown"
10345
10605
  }
10346
10606
  ]
10347
10607
  },
10608
+ "StringFormatterOptions": {
10609
+ "name": "StringFormatterOptions",
10610
+ "kind": "Interface",
10611
+ "description": "Formatter Options for String Columns",
10612
+ "properties": [
10613
+ {
10614
+ "name": "Case",
10615
+ "kind": "unknown",
10616
+ "description": "Sets text to Upper or Lower case",
10617
+ "uiLabel": "Case",
10618
+ "isOptional": true
10619
+ },
10620
+ {
10621
+ "name": "Trim",
10622
+ "kind": "boolean",
10623
+ "description": "Trims text (both start and end)",
10624
+ "uiLabel": "Trim",
10625
+ "isOptional": true
10626
+ }
10627
+ ]
10628
+ },
10348
10629
  "SuspendableObject": {
10349
10630
  "name": "SuspendableObject",
10350
10631
  "kind": "Interface",
@@ -10813,10 +11094,10 @@ exports.ADAPTABLE_METAMODEL = {
10813
11094
  "defaultValue": "'AdapTable'"
10814
11095
  },
10815
11096
  {
10816
- "name": "customToolPanelButtons",
11097
+ "name": "customButtons",
10817
11098
  "kind": "unknown",
10818
11099
  "description": "ToolPanel Buttons provided by Users which perform custom behaviour",
10819
- "uiLabel": "Custom Tool Panel Buttons",
11100
+ "uiLabel": "Custom Buttons",
10820
11101
  "isOptional": true
10821
11102
  },
10822
11103
  {
@@ -10911,6 +11192,11 @@ exports.ADAPTABLE_METAMODEL = {
10911
11192
  }
10912
11193
  ]
10913
11194
  },
11195
+ "ToolPanelVisibilityMode": {
11196
+ "name": "ToolPanelVisibilityMode",
11197
+ "kind": "TypeAlias",
11198
+ "description": "Whether a ToolPanel displays as expanded or collapsed"
11199
+ },
10914
11200
  "UserInterfaceApi": {
10915
11201
  "name": "UserInterfaceApi",
10916
11202
  "kind": "Interface",