@adaptabletools/adaptable 10.0.0 → 10.0.4-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/base.css +77 -29
  2. package/index.css +89 -31
  3. package/package.json +1 -5
  4. package/publishTimestamp.d.ts +1 -1
  5. package/publishTimestamp.js +1 -1
  6. package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -2
  7. package/src/AdaptableOptions/FilterOptions.d.ts +14 -7
  8. package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
  9. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +88 -4
  10. package/src/Api/AlertApi.d.ts +1 -1
  11. package/src/Api/CalculatedColumnApi.d.ts +15 -0
  12. package/src/Api/ColumnApi.d.ts +39 -0
  13. package/src/Api/ConfigApi.d.ts +8 -0
  14. package/src/Api/GridApi.d.ts +34 -8
  15. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
  16. package/src/Api/Implementation/AlertApiImpl.js +16 -9
  17. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
  18. package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
  19. package/src/Api/Implementation/ColumnApiImpl.d.ts +8 -0
  20. package/src/Api/Implementation/ColumnApiImpl.js +69 -36
  21. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  22. package/src/Api/Implementation/ConfigApiImpl.js +28 -17
  23. package/src/Api/Implementation/ExportApiImpl.js +4 -4
  24. package/src/Api/Implementation/FormatColumnApiImpl.js +1 -1
  25. package/src/Api/Implementation/FreeTextColumnApiImpl.js +9 -3
  26. package/src/Api/Implementation/GridApiImpl.d.ts +9 -0
  27. package/src/Api/Implementation/GridApiImpl.js +25 -10
  28. package/src/Api/Implementation/InternalApiImpl.d.ts +3 -1
  29. package/src/Api/Implementation/InternalApiImpl.js +20 -4
  30. package/src/Api/Implementation/LayoutApiImpl.js +3 -3
  31. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +2 -0
  32. package/src/Api/Implementation/QueryLanguageApiImpl.js +3 -0
  33. package/src/Api/Implementation/ScopeApiImpl.js +11 -11
  34. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +12 -8
  35. package/src/Api/Implementation/UserInterfaceApiImpl.js +59 -86
  36. package/src/Api/InternalApi.d.ts +3 -1
  37. package/src/Api/QueryLanguageApi.d.ts +5 -0
  38. package/src/Api/UserInterfaceApi.d.ts +16 -6
  39. package/src/PredefinedConfig/AlertState.d.ts +10 -0
  40. package/src/PredefinedConfig/CalculatedColumnState.d.ts +4 -37
  41. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +33 -33
  42. package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
  43. package/src/PredefinedConfig/Common/AdaptablePredicate.js +19 -18
  44. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +3 -2
  45. package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
  46. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
  47. package/src/{Utilities/Interface/ProgressIndicator.js → PredefinedConfig/Common/SpecialColumnSettings.js} +0 -0
  48. package/src/PredefinedConfig/FilterState.d.ts +1 -1
  49. package/src/PredefinedConfig/FreeTextColumnState.d.ts +10 -0
  50. package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
  51. package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
  52. package/src/PredefinedConfig/SystemState.d.ts +4 -1
  53. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  54. package/src/Redux/Store/AdaptableReduxMerger.js +7 -1
  55. package/src/Redux/Store/AdaptableStore.js +7 -3
  56. package/src/Strategy/AdaptableModuleBase.js +8 -8
  57. package/src/Strategy/AlertModule.js +12 -11
  58. package/src/Strategy/BulkUpdateModule.js +5 -5
  59. package/src/Strategy/CalculatedColumnModule.js +1 -1
  60. package/src/Strategy/CellSummaryModule.js +3 -3
  61. package/src/Strategy/ConditionalStyleModule.js +3 -3
  62. package/src/Strategy/CustomSortModule.js +2 -2
  63. package/src/Strategy/ExportModule.d.ts +0 -2
  64. package/src/Strategy/ExportModule.js +59 -62
  65. package/src/Strategy/FilterModule.js +4 -4
  66. package/src/Strategy/FormatColumnModule.js +5 -5
  67. package/src/Strategy/FreeTextColumnModule.js +1 -1
  68. package/src/Strategy/LayoutModule.js +3 -3
  69. package/src/Strategy/PlusMinusModule.js +8 -9
  70. package/src/Strategy/SmartEditModule.js +6 -6
  71. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  72. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
  73. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
  74. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  75. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
  76. package/src/Utilities/Helpers/DateHelper.d.ts +8 -2
  77. package/src/Utilities/Helpers/DateHelper.js +42 -20
  78. package/src/Utilities/Helpers/PreviewHelper.js +2 -2
  79. package/src/Utilities/ObjectFactory.d.ts +1 -1
  80. package/src/Utilities/ObjectFactory.js +14 -2
  81. package/src/Utilities/Services/DataService.js +5 -5
  82. package/src/Utilities/Services/MetamodelService.js +1 -0
  83. package/src/Utilities/Services/ModuleService.js +31 -24
  84. package/src/Utilities/Services/ReportService.js +12 -12
  85. package/src/Utilities/Services/ValidationService.js +4 -5
  86. package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
  87. package/src/Utilities/runIfNotResolvedIn.js +23 -0
  88. package/src/View/AdaptableView.js +1 -1
  89. package/src/View/Alert/AlertPopup.js +1 -1
  90. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
  91. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
  92. package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
  93. package/src/View/BulkUpdate/BulkUpdatePopup.js +6 -4
  94. package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
  95. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
  96. package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
  97. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
  98. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
  99. package/src/View/Components/ColumnSelector/index.js +2 -2
  100. package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
  101. package/src/View/Components/FilterForm/FilterForm.js +53 -32
  102. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +3 -0
  103. package/src/View/Components/FilterForm/ListBoxFilterForm.js +14 -5
  104. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
  105. package/src/View/Components/FilterForm/QuickFilterForm.js +72 -31
  106. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
  107. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
  108. package/src/View/Components/NewScopeComponent.js +1 -1
  109. package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
  110. package/src/View/Components/PreviewResultsPanel.js +1 -1
  111. package/src/View/Components/RangesComponent.js +2 -2
  112. package/src/View/Components/Selectors/ColumnSelector.js +5 -5
  113. package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
  114. package/src/View/Components/Selectors/ColumnValueSelector.js +47 -15
  115. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +6 -6
  116. package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
  117. package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
  118. package/src/View/CustomSort/CustomSortEntityRow.js +2 -2
  119. package/src/View/CustomSort/CustomSortPopup.js +1 -1
  120. package/src/View/CustomSort/CustomSortSummary.js +3 -3
  121. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +3 -3
  122. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
  123. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -3
  124. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +4 -1
  125. package/src/View/Filter/FilterSummary.js +2 -2
  126. package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
  127. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  128. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  129. package/src/View/FreeTextColumn/FreeTextColumnPopup.js +4 -2
  130. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +5 -3
  131. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
  132. package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
  133. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  134. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
  135. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
  136. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
  137. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
  138. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
  139. package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
  140. package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
  141. package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
  142. package/src/View/Query/QueryViewPanel.js +3 -3
  143. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.d.ts +1 -1
  144. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +6 -8
  145. package/src/View/UIHelper.d.ts +2 -0
  146. package/src/View/UIHelper.js +10 -1
  147. package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
  148. package/src/agGrid/ActionColumnRenderer.js +20 -3
  149. package/src/agGrid/Adaptable.d.ts +20 -4
  150. package/src/agGrid/Adaptable.js +234 -102
  151. package/src/agGrid/agGridHelper.js +32 -32
  152. package/src/agGrid/agGridMenuHelper.js +2 -2
  153. package/src/components/Dashboard/Dashboard.js +1 -1
  154. package/src/components/DropdownButton/index.js +1 -1
  155. package/src/components/ExpressionEditor/index.js +8 -7
  156. package/src/components/Loader/Loader.d.ts +7 -0
  157. package/src/components/Loader/Loader.js +13 -0
  158. package/src/components/Loader/index.d.ts +2 -0
  159. package/src/components/Loader/index.js +7 -0
  160. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
  161. package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
  162. package/src/metamodel/adaptable.metamodel.d.ts +125 -7
  163. package/src/metamodel/adaptable.metamodel.js +416 -101
  164. package/src/types.d.ts +4 -3
  165. package/version.d.ts +1 -1
  166. package/version.js +1 -1
  167. package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
  168. package/src/View/Export/ProgressIndicator.d.ts +0 -6
  169. package/src/View/Export/ProgressIndicator.js +0 -25
@@ -18,6 +18,14 @@ exports.ADAPTABLE_METAMODEL = {
18
18
  "description": "Button to display in the Column",
19
19
  "uiLabel": "Action Column Button"
20
20
  },
21
+ {
22
+ "name": "actionColumnSettings",
23
+ "kind": "REFERENCE",
24
+ "description": "Additional optional properties for Column (e.g. filterable, resizable)",
25
+ "uiLabel": "Action Column Settings",
26
+ "isOptional": true,
27
+ "reference": "ActionColumnSettings"
28
+ },
21
29
  {
22
30
  "name": "columnId",
23
31
  "kind": "string",
@@ -67,6 +75,44 @@ exports.ADAPTABLE_METAMODEL = {
67
75
  }
68
76
  ]
69
77
  },
78
+ "ActionColumnSettings": {
79
+ "name": "ActionColumnSettings",
80
+ "kind": "Interface",
81
+ "description": "Set of optional properties that define an Action Columns behaviour",
82
+ "properties": [
83
+ {
84
+ "name": "resizable",
85
+ "kind": "boolean",
86
+ "description": "Whether Column can be resized (by dragging column header edges)",
87
+ "uiLabel": "Resizable",
88
+ "isOptional": true,
89
+ "defaultValue": "true"
90
+ },
91
+ {
92
+ "name": "suppressMenu",
93
+ "kind": "boolean",
94
+ "description": "Whether no menu should be shown for this Column header.",
95
+ "uiLabel": "Suppress Menu",
96
+ "isOptional": true,
97
+ "defaultValue": "false"
98
+ },
99
+ {
100
+ "name": "suppressMovable",
101
+ "kind": "boolean",
102
+ "description": "Whether if this Column should be movable via dragging",
103
+ "uiLabel": "Suppress Movable",
104
+ "isOptional": true,
105
+ "defaultValue": "false"
106
+ },
107
+ {
108
+ "name": "width",
109
+ "kind": "number",
110
+ "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
111
+ "uiLabel": "Width",
112
+ "isOptional": true
113
+ }
114
+ ]
115
+ },
70
116
  "ActionHandler": {
71
117
  "name": "ActionHandler",
72
118
  "kind": "TypeAlias",
@@ -434,27 +480,27 @@ exports.ADAPTABLE_METAMODEL = {
434
480
  "description": "Defines an Adaptable Column - created at run-time based on vendor grid column definition",
435
481
  "properties": [
436
482
  {
437
- "name": "Aggregatable",
483
+ "name": "aggregatable",
438
484
  "kind": "boolean",
439
485
  "description": "Is Column able to display aggregations (e.g. 'sum') when grouped",
440
486
  "uiLabel": "Aggregatable"
441
487
  },
442
488
  {
443
- "name": "AggregationFunction",
489
+ "name": "aggregationFunction",
444
490
  "kind": "string",
445
491
  "description": "Custom aggregation function for the Column",
446
492
  "uiLabel": "Aggregation Function",
447
493
  "isOptional": true
448
494
  },
449
495
  {
450
- "name": "AvailableAggregationFunctions",
496
+ "name": "availableAggregationFunctions",
451
497
  "kind": "unknown",
452
498
  "description": "Available aggregations for the Column",
453
499
  "uiLabel": "Available Aggregation Functions",
454
500
  "isOptional": true
455
501
  },
456
502
  {
457
- "name": "ColumnGroup",
503
+ "name": "columnGroup",
458
504
  "kind": "REFERENCE",
459
505
  "description": "The parent column group, if the column belongs to one",
460
506
  "uiLabel": "Column Group",
@@ -462,98 +508,98 @@ exports.ADAPTABLE_METAMODEL = {
462
508
  "reference": "unknown"
463
509
  },
464
510
  {
465
- "name": "Filterable",
511
+ "name": "filterable",
466
512
  "kind": "boolean",
467
513
  "description": "Is Column able to be filtered",
468
514
  "uiLabel": "Filterable"
469
515
  },
470
516
  {
471
- "name": "Flex",
517
+ "name": "flex",
472
518
  "kind": "number",
473
519
  "description": "Flex details of the column",
474
520
  "uiLabel": "Flex",
475
521
  "isOptional": true
476
522
  },
477
523
  {
478
- "name": "Groupable",
524
+ "name": "groupable",
479
525
  "kind": "boolean",
480
526
  "description": "Can Column form a Row Group",
481
527
  "uiLabel": "Groupable"
482
528
  },
483
529
  {
484
- "name": "Hideable",
530
+ "name": "hideable",
485
531
  "kind": "boolean",
486
532
  "description": "Can Column be removed from the grid",
487
533
  "uiLabel": "Hideable"
488
534
  },
489
535
  {
490
- "name": "IsExcludedFromQuickSearch",
536
+ "name": "isExcludedFromQuickSearch",
491
537
  "kind": "boolean",
492
538
  "description": "Has colummn been excluded from Quick Search results",
493
539
  "uiLabel": "Is Excluded From Quick Search"
494
540
  },
495
541
  {
496
- "name": "IsFixed",
542
+ "name": "isFixed",
497
543
  "kind": "boolean",
498
544
  "description": "Is Column pinned or locked into position",
499
545
  "uiLabel": "Is Fixed"
500
546
  },
501
547
  {
502
- "name": "IsGrouped",
548
+ "name": "isGrouped",
503
549
  "kind": "boolean",
504
550
  "description": "Is Column currently grouped",
505
551
  "uiLabel": "Is Grouped"
506
552
  },
507
553
  {
508
- "name": "IsPrimaryKey",
554
+ "name": "isPrimaryKey",
509
555
  "kind": "boolean",
510
556
  "description": "Is this the Primary Key column",
511
557
  "uiLabel": "Is Primary Key"
512
558
  },
513
559
  {
514
- "name": "IsSparkline",
560
+ "name": "isSparkline",
515
561
  "kind": "boolean",
516
562
  "description": "Is it a Sparkline Column",
517
563
  "uiLabel": "Is Sparkline"
518
564
  },
519
565
  {
520
- "name": "Moveable",
566
+ "name": "moveable",
521
567
  "kind": "boolean",
522
568
  "description": "Can Column be moved at run-time to a new position",
523
569
  "uiLabel": "Moveable"
524
570
  },
525
571
  {
526
- "name": "Pivotable",
572
+ "name": "pivotable",
527
573
  "kind": "boolean",
528
574
  "description": "Can Column be used in a Pivot Grid",
529
575
  "uiLabel": "Pivotable"
530
576
  },
531
577
  {
532
- "name": "Queryable",
578
+ "name": "queryable",
533
579
  "kind": "boolean",
534
580
  "description": "Can the Column be in included in Queries / Expressions",
535
581
  "uiLabel": "Queryable"
536
582
  },
537
583
  {
538
- "name": "ReadOnly",
584
+ "name": "readOnly",
539
585
  "kind": "boolean",
540
586
  "description": "Is column editable",
541
587
  "uiLabel": "Read Only"
542
588
  },
543
589
  {
544
- "name": "Sortable",
590
+ "name": "sortable",
545
591
  "kind": "boolean",
546
592
  "description": "Is Column sortable",
547
593
  "uiLabel": "Sortable"
548
594
  },
549
595
  {
550
- "name": "Visible",
596
+ "name": "visible",
551
597
  "kind": "boolean",
552
598
  "description": "Is Column currently visible",
553
599
  "uiLabel": "Visible"
554
600
  },
555
601
  {
556
- "name": "Width",
602
+ "name": "width",
557
603
  "kind": "number",
558
604
  "description": "Column width",
559
605
  "uiLabel": "Width",
@@ -567,19 +613,19 @@ exports.ADAPTABLE_METAMODEL = {
567
613
  "description": "Base class for Adaptable Column containing most important properties",
568
614
  "properties": [
569
615
  {
570
- "name": "ColumnId",
616
+ "name": "columnId",
571
617
  "kind": "string",
572
618
  "description": "Name of Column in underlying grid (e.g. field or colId)",
573
619
  "uiLabel": "Column Id"
574
620
  },
575
621
  {
576
- "name": "DataType",
622
+ "name": "dataType",
577
623
  "kind": "unknown",
578
624
  "description": "DataType of the column",
579
625
  "uiLabel": "Data Type"
580
626
  },
581
627
  {
582
- "name": "FriendlyName",
628
+ "name": "friendlyName",
583
629
  "kind": "string",
584
630
  "description": "How Column is referred to in Adaptable UI; 'Caption' or 'Header' property in underlying grid",
585
631
  "uiLabel": "Friendly Name"
@@ -1775,6 +1821,13 @@ exports.ADAPTABLE_METAMODEL = {
1775
1821
  "isOptional": true,
1776
1822
  "reference": "AlertProperties"
1777
1823
  },
1824
+ {
1825
+ "name": "MessageText",
1826
+ "kind": "unknown",
1827
+ "description": "Alert Message - can be string or function; if not provided AdapTable creates dynamically using Rule & Scope",
1828
+ "uiLabel": "Message Text",
1829
+ "isOptional": true
1830
+ },
1778
1831
  {
1779
1832
  "name": "MessageType",
1780
1833
  "kind": "REFERENCE",
@@ -2034,6 +2087,11 @@ exports.ADAPTABLE_METAMODEL = {
2034
2087
  }
2035
2088
  ]
2036
2089
  },
2090
+ "BulkUpdatePermittedValues": {
2091
+ "name": "BulkUpdatePermittedValues",
2092
+ "kind": "Interface",
2093
+ "description": "User to define permitted values when updating cells via bulk update"
2094
+ },
2037
2095
  "ButtonStyle": {
2038
2096
  "name": "ButtonStyle",
2039
2097
  "kind": "Interface",
@@ -2072,7 +2130,7 @@ exports.ADAPTABLE_METAMODEL = {
2072
2130
  {
2073
2131
  "name": "CalculatedColumnSettings",
2074
2132
  "kind": "REFERENCE",
2075
- "description": "Addtional optional properties for Column (e.g. filterable, resizable)",
2133
+ "description": "Additional optional properties for Column (e.g. filterable, resizable)",
2076
2134
  "uiLabel": "Calculated Column Settings",
2077
2135
  "isOptional": true,
2078
2136
  "reference": "CalculatedColumnSettings"
@@ -2159,12 +2217,30 @@ exports.ADAPTABLE_METAMODEL = {
2159
2217
  "description": "Returns all the references in the AdaptableState of the given CalculatedColumn",
2160
2218
  "uiLabel": "Get Calculated Column Module References"
2161
2219
  },
2220
+ {
2221
+ "name": "getCalculatedColumnsReferencingColumnId",
2222
+ "kind": "function",
2223
+ "description": "Returns all Calculated Columns whose Expression contains the ColumnId",
2224
+ "uiLabel": "Get Calculated Columns Referencing Column Id"
2225
+ },
2162
2226
  {
2163
2227
  "name": "getCalculatedColumnState",
2164
2228
  "kind": "function",
2165
2229
  "description": "Retrieves Calculated Column section from Adaptable State",
2166
2230
  "uiLabel": "Get Calculated Column State"
2167
2231
  },
2232
+ {
2233
+ "name": "getReferencedColumnIdsForCalculatedColumn",
2234
+ "kind": "function",
2235
+ "description": "Gets any ColumnIds referenced in a Calculated Column",
2236
+ "uiLabel": "Get Referenced Column Ids For Calculated Column"
2237
+ },
2238
+ {
2239
+ "name": "getReferencedColumnIdsForCalculatedColumnId",
2240
+ "kind": "function",
2241
+ "description": "Gets any ColumnIds referenced in a Calculated Column",
2242
+ "uiLabel": "Get Referenced Column Ids For Calculated Column Id"
2243
+ },
2168
2244
  {
2169
2245
  "name": "showCalculatedColumnPopup",
2170
2246
  "kind": "function",
@@ -2178,53 +2254,13 @@ exports.ADAPTABLE_METAMODEL = {
2178
2254
  "kind": "Interface",
2179
2255
  "description": "Set of optional properties that define a Calculated Column's behaviour",
2180
2256
  "properties": [
2181
- {
2182
- "name": "Aggregatable",
2183
- "kind": "boolean",
2184
- "description": "Whether Column can be used in an aggregation when grouping",
2185
- "uiLabel": "Aggregatable",
2186
- "isOptional": true,
2187
- "defaultValue": "true"
2188
- },
2189
2257
  {
2190
2258
  "name": "DataType",
2191
2259
  "kind": "unknown",
2192
- "description": "Expression's return value DataType; inferred by AdapTable but setable by User",
2260
+ "description": "Expression's return value DataType; inferred by AdapTable but settable by User",
2193
2261
  "uiLabel": "Data Type",
2194
2262
  "isOptional": true
2195
2263
  },
2196
- {
2197
- "name": "Filterable",
2198
- "kind": "boolean",
2199
- "description": "Whether Column is filterable",
2200
- "uiLabel": "Filterable",
2201
- "isOptional": true,
2202
- "defaultValue": "true"
2203
- },
2204
- {
2205
- "name": "Groupable",
2206
- "kind": "boolean",
2207
- "description": "Whether Column can be grouped",
2208
- "uiLabel": "Groupable",
2209
- "isOptional": true,
2210
- "defaultValue": "true"
2211
- },
2212
- {
2213
- "name": "Pivotable",
2214
- "kind": "boolean",
2215
- "description": "Whether Column can be used when grid is in pivot mode",
2216
- "uiLabel": "Pivotable",
2217
- "isOptional": true,
2218
- "defaultValue": "true"
2219
- },
2220
- {
2221
- "name": "Resizable",
2222
- "kind": "boolean",
2223
- "description": "Whether Column can be resized (by dragging column header edges)",
2224
- "uiLabel": "Resizable",
2225
- "isOptional": true,
2226
- "defaultValue": "true"
2227
- },
2228
2264
  {
2229
2265
  "name": "ShowToolTip",
2230
2266
  "kind": "boolean",
@@ -2232,21 +2268,6 @@ exports.ADAPTABLE_METAMODEL = {
2232
2268
  "uiLabel": "Show Tool Tip",
2233
2269
  "isOptional": true,
2234
2270
  "defaultValue": "false"
2235
- },
2236
- {
2237
- "name": "Sortable",
2238
- "kind": "boolean",
2239
- "description": "Whether Column is sortable",
2240
- "uiLabel": "Sortable",
2241
- "isOptional": true,
2242
- "defaultValue": "true"
2243
- },
2244
- {
2245
- "name": "Width",
2246
- "kind": "number",
2247
- "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
2248
- "uiLabel": "Width",
2249
- "isOptional": true
2250
2271
  }
2251
2272
  ]
2252
2273
  },
@@ -2393,6 +2414,11 @@ exports.ADAPTABLE_METAMODEL = {
2393
2414
  "kind": "TypeAlias",
2394
2415
  "description": "List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button"
2395
2416
  },
2417
+ "CellValuesList": {
2418
+ "name": "CellValuesList",
2419
+ "kind": "TypeAlias",
2420
+ "description": "Use PermittedValues instead"
2421
+ },
2396
2422
  "ChartApi": {
2397
2423
  "name": "ChartApi",
2398
2424
  "kind": "Interface",
@@ -2599,12 +2625,30 @@ exports.ADAPTABLE_METAMODEL = {
2599
2625
  "description": "Returns all Date Columns",
2600
2626
  "uiLabel": "Get Date Columns"
2601
2627
  },
2628
+ {
2629
+ "name": "getDistinctBulkUpdateDisplayValuesForColumn",
2630
+ "kind": "function",
2631
+ "description": "Gets all distinct column display values for bulk update.",
2632
+ "uiLabel": "Get Distinct Bulk Update Display Values For Column"
2633
+ },
2634
+ {
2635
+ "name": "getDistinctCustomSortDisplayValuesForColumn",
2636
+ "kind": "function",
2637
+ "description": "Gets all distinct column display values in for custom sort.",
2638
+ "uiLabel": "Get Distinct Custom Sort Display Values For Column"
2639
+ },
2602
2640
  {
2603
2641
  "name": "getDistinctDisplayValuesForColumn",
2604
2642
  "kind": "function",
2605
2643
  "description": "Gets all distinct display values in the Column",
2606
2644
  "uiLabel": "Get Distinct Display Values For Column"
2607
2645
  },
2646
+ {
2647
+ "name": "getDistinctFilterDisplayValuesForColumn",
2648
+ "kind": "function",
2649
+ "description": "Gets all distinct display values in for filter column, used for Floating Filter and Column Header filter",
2650
+ "uiLabel": "Get Distinct Filter Display Values For Column"
2651
+ },
2608
2652
  {
2609
2653
  "name": "getDistinctRawValuesForColumn",
2610
2654
  "kind": "function",
@@ -2719,12 +2763,24 @@ exports.ADAPTABLE_METAMODEL = {
2719
2763
  "description": "Is Column an Action Column",
2720
2764
  "uiLabel": "Is Action Column"
2721
2765
  },
2766
+ {
2767
+ "name": "isBooleanColumn",
2768
+ "kind": "function",
2769
+ "description": "Is Column Boolean",
2770
+ "uiLabel": "Is Boolean Column"
2771
+ },
2722
2772
  {
2723
2773
  "name": "isCalculatedColumn",
2724
2774
  "kind": "function",
2725
2775
  "description": "Is Column a Calculated Column",
2726
2776
  "uiLabel": "Is Calculated Column"
2727
2777
  },
2778
+ {
2779
+ "name": "isColumnReferencedInExpression",
2780
+ "kind": "function",
2781
+ "description": "Checks if a column is referenced in a given Expression",
2782
+ "uiLabel": "Is Column Referenced In Expression"
2783
+ },
2728
2784
  {
2729
2785
  "name": "isDateColumn",
2730
2786
  "kind": "function",
@@ -2778,6 +2834,18 @@ exports.ADAPTABLE_METAMODEL = {
2778
2834
  "kind": "function",
2779
2835
  "description": "Makes a Column visible",
2780
2836
  "uiLabel": "Show Column"
2837
+ },
2838
+ {
2839
+ "name": "usesAdaptableFilterForm",
2840
+ "kind": "function",
2841
+ "description": "Does Column use AdapTable's Filter Form",
2842
+ "uiLabel": "Uses Adaptable Filter Form"
2843
+ },
2844
+ {
2845
+ "name": "usesAdaptableQuickFilter",
2846
+ "kind": "function",
2847
+ "description": "Does Column use AdapTable's Quick Filter",
2848
+ "uiLabel": "Uses Adaptable Quick Filter"
2781
2849
  }
2782
2850
  ]
2783
2851
  },
@@ -3027,6 +3095,12 @@ exports.ADAPTABLE_METAMODEL = {
3027
3095
  "description": "Copies User State sections of Adaptable State to clipboard",
3028
3096
  "uiLabel": "Copy User State To Clipboard"
3029
3097
  },
3098
+ {
3099
+ "name": "dispatchStateReadyAction",
3100
+ "kind": "function",
3101
+ "description": "Sent by each Module when it is Ready",
3102
+ "uiLabel": "Dispatch State Ready Action"
3103
+ },
3030
3104
  {
3031
3105
  "name": "getAdaptableSearchState",
3032
3106
  "kind": "function",
@@ -3201,6 +3275,12 @@ exports.ADAPTABLE_METAMODEL = {
3201
3275
  "description": "Returns given section of Adaptable State (as JSON or object)",
3202
3276
  "uiLabel": "Get User State By State Key"
3203
3277
  },
3278
+ {
3279
+ "name": "incrementUerStateRevision",
3280
+ "kind": "function",
3281
+ "description": "Adds '1' to current revision number of State element",
3282
+ "uiLabel": "Increment Uer State Revision"
3283
+ },
3204
3284
  {
3205
3285
  "name": "loadUserState",
3206
3286
  "kind": "function",
@@ -3456,6 +3536,11 @@ exports.ADAPTABLE_METAMODEL = {
3456
3536
  }
3457
3537
  ]
3458
3538
  },
3539
+ "CustomSortPermittedValues": {
3540
+ "name": "CustomSortPermittedValues",
3541
+ "kind": "Interface",
3542
+ "description": "Custom column values for custom sort."
3543
+ },
3459
3544
  "CustomSortState": {
3460
3545
  "name": "CustomSortState",
3461
3546
  "kind": "Interface",
@@ -4013,10 +4098,11 @@ exports.ADAPTABLE_METAMODEL = {
4013
4098
  "uiLabel": "Changed At"
4014
4099
  },
4015
4100
  {
4016
- "name": "columnId",
4017
- "kind": "string",
4018
- "description": "Id of the Column in which the cell is situated",
4019
- "uiLabel": "Column Id"
4101
+ "name": "column",
4102
+ "kind": "REFERENCE",
4103
+ "description": "Column in which cell is situated",
4104
+ "uiLabel": "Column",
4105
+ "reference": "AdaptableColumn"
4020
4106
  },
4021
4107
  {
4022
4108
  "name": "newValue",
@@ -4247,6 +4333,13 @@ exports.ADAPTABLE_METAMODEL = {
4247
4333
  "kind": "Interface",
4248
4334
  "description": "Object passed into Adaptable Grid Api data management methods",
4249
4335
  "properties": [
4336
+ {
4337
+ "name": "addIndex",
4338
+ "kind": "number",
4339
+ "description": "Index where to add new rows",
4340
+ "uiLabel": "Add Index",
4341
+ "isOptional": true
4342
+ },
4250
4343
  {
4251
4344
  "name": "callback",
4252
4345
  "kind": "unknown",
@@ -4257,7 +4350,7 @@ exports.ADAPTABLE_METAMODEL = {
4257
4350
  {
4258
4351
  "name": "runAsync",
4259
4352
  "kind": "boolean",
4260
- "description": "Whether data should be updated aysnchoronously",
4353
+ "description": "Whether data should be updated asynchronously",
4261
4354
  "uiLabel": "Run Async",
4262
4355
  "isOptional": true
4263
4356
  }
@@ -4332,6 +4425,11 @@ exports.ADAPTABLE_METAMODEL = {
4332
4425
  }
4333
4426
  ]
4334
4427
  },
4428
+ "EditLookUpPermittedValues": {
4429
+ "name": "EditLookUpPermittedValues",
4430
+ "kind": "Interface",
4431
+ "description": "Used to define permitted values for inline column editor"
4432
+ },
4335
4433
  "EditOptions": {
4336
4434
  "name": "EditOptions",
4337
4435
  "kind": "Interface",
@@ -5188,7 +5286,7 @@ exports.ADAPTABLE_METAMODEL = {
5188
5286
  {
5189
5287
  "name": "defaultDateColumnFilter",
5190
5288
  "kind": "unknown",
5191
- "description": "Default filter type for date Columns in Quick Filter",
5289
+ "description": "Default filter type for date Columns",
5192
5290
  "uiLabel": "Default Date Column Filter",
5193
5291
  "isOptional": true,
5194
5292
  "gridInfo": "item",
@@ -5206,7 +5304,7 @@ exports.ADAPTABLE_METAMODEL = {
5206
5304
  {
5207
5305
  "name": "defaultNumericColumnFilter",
5208
5306
  "kind": "unknown",
5209
- "description": "Default filter type for numeric Columns in Quick Filter",
5307
+ "description": "Default filter type for numeric Columns",
5210
5308
  "uiLabel": "Default Numeric Column Filter",
5211
5309
  "isOptional": true,
5212
5310
  "gridInfo": "item",
@@ -5215,7 +5313,7 @@ exports.ADAPTABLE_METAMODEL = {
5215
5313
  {
5216
5314
  "name": "defaultStringColumnFilter",
5217
5315
  "kind": "unknown",
5218
- "description": "Default filter type for string Columns in Quick Filter",
5316
+ "description": "Default filter type for string Columns",
5219
5317
  "uiLabel": "Default String Column Filter",
5220
5318
  "isOptional": true,
5221
5319
  "gridInfo": "item",
@@ -5224,7 +5322,7 @@ exports.ADAPTABLE_METAMODEL = {
5224
5322
  {
5225
5323
  "name": "enableFilterOnSpecialColumns",
5226
5324
  "kind": "boolean",
5227
- "description": "Allows filtering on Calculated, Action & FreeText columns",
5325
+ "description": "Allows filtering on Calculated & FreeText columns",
5228
5326
  "uiLabel": "Enable Filter On Special Columns",
5229
5327
  "isOptional": true,
5230
5328
  "gridInfo": "item",
@@ -5291,6 +5389,15 @@ exports.ADAPTABLE_METAMODEL = {
5291
5389
  "gridInfo": "item",
5292
5390
  "defaultValue": "'mouseenter'"
5293
5391
  },
5392
+ {
5393
+ "name": "quickFilterValuesTrigger",
5394
+ "kind": "unknown",
5395
+ "description": "Whether to open Quick Filter Values dropdown with mouse hover or click",
5396
+ "uiLabel": "Quick Filter Values Trigger",
5397
+ "isOptional": true,
5398
+ "gridInfo": "item",
5399
+ "defaultValue": "'mouseenter'"
5400
+ },
5294
5401
  {
5295
5402
  "name": "sortColumnValuesInFilter",
5296
5403
  "kind": "boolean",
@@ -5336,6 +5443,20 @@ exports.ADAPTABLE_METAMODEL = {
5336
5443
  }
5337
5444
  ]
5338
5445
  },
5446
+ "FilterPermittedValues": {
5447
+ "name": "FilterPermittedValues",
5448
+ "kind": "Interface",
5449
+ "description": "Used to define values inside the floating filter and floating filter (quick filter)",
5450
+ "properties": [
5451
+ {
5452
+ "name": "suppressClientSideFiltering",
5453
+ "kind": "boolean",
5454
+ "description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
5455
+ "uiLabel": "Suppress Client Side Filtering",
5456
+ "isOptional": true
5457
+ }
5458
+ ]
5459
+ },
5339
5460
  "FilterState": {
5340
5461
  "name": "FilterState",
5341
5462
  "kind": "Interface",
@@ -5422,6 +5543,7 @@ exports.ADAPTABLE_METAMODEL = {
5422
5543
  "description": "Style for 'Down' value changes",
5423
5544
  "uiLabel": "Down Change Style",
5424
5545
  "isOptional": true,
5546
+ "defaultValue": "Red BackColour",
5425
5547
  "reference": "AdaptableStyle"
5426
5548
  },
5427
5549
  {
@@ -5429,14 +5551,16 @@ exports.ADAPTABLE_METAMODEL = {
5429
5551
  "kind": "unknown",
5430
5552
  "description": "Duration of Flash - can be number (in ms) or 'always'",
5431
5553
  "uiLabel": "Flash Duration",
5432
- "isOptional": true
5554
+ "isOptional": true,
5555
+ "defaultValue": "500ms"
5433
5556
  },
5434
5557
  {
5435
5558
  "name": "FlashTarget",
5436
5559
  "kind": "unknown",
5437
5560
  "description": "Should a cell or whole row flash",
5438
5561
  "uiLabel": "Flash Target",
5439
- "isOptional": true
5562
+ "isOptional": true,
5563
+ "defaultValue": "'cell'"
5440
5564
  },
5441
5565
  {
5442
5566
  "name": "NeutralChangeStyle",
@@ -5444,6 +5568,7 @@ exports.ADAPTABLE_METAMODEL = {
5444
5568
  "description": "Style for 'Neutral' value changes",
5445
5569
  "uiLabel": "Neutral Change Style",
5446
5570
  "isOptional": true,
5571
+ "defaultValue": "Gray BackColour",
5447
5572
  "reference": "AdaptableStyle"
5448
5573
  },
5449
5574
  {
@@ -5452,6 +5577,7 @@ exports.ADAPTABLE_METAMODEL = {
5452
5577
  "description": "Style for 'Up' value changes",
5453
5578
  "uiLabel": "Up Change Style",
5454
5579
  "isOptional": true,
5580
+ "defaultValue": "Green BackColour",
5455
5581
  "reference": "AdaptableStyle"
5456
5582
  }
5457
5583
  ]
@@ -5749,6 +5875,14 @@ exports.ADAPTABLE_METAMODEL = {
5749
5875
  "uiLabel": "Default Value",
5750
5876
  "isOptional": true
5751
5877
  },
5878
+ {
5879
+ "name": "FreeTextColumnSettings",
5880
+ "kind": "REFERENCE",
5881
+ "description": "Additional optional properties for Column (e.g. filterable, resizable)",
5882
+ "uiLabel": "Free Text Column Settings",
5883
+ "isOptional": true,
5884
+ "reference": "FreeTextColumnSettings"
5885
+ },
5752
5886
  {
5753
5887
  "name": "FreeTextStoredValues",
5754
5888
  "kind": "unknown",
@@ -5858,6 +5992,11 @@ exports.ADAPTABLE_METAMODEL = {
5858
5992
  }
5859
5993
  ]
5860
5994
  },
5995
+ "FreeTextColumnSettings": {
5996
+ "name": "FreeTextColumnSettings",
5997
+ "kind": "Interface",
5998
+ "description": "Set of optional properties that define a FreeText Columns behaviour"
5999
+ },
5861
6000
  "FreeTextColumnState": {
5862
6001
  "name": "FreeTextColumnState",
5863
6002
  "kind": "Interface",
@@ -6396,6 +6535,12 @@ exports.ADAPTABLE_METAMODEL = {
6396
6535
  "description": "Get keys for any open rows in Row Grouping",
6397
6536
  "uiLabel": "Get Expand Row Groups Keys"
6398
6537
  },
6538
+ {
6539
+ "name": "getFilteredData",
6540
+ "kind": "function",
6541
+ "description": "Retrieves filtered data from the grid",
6542
+ "uiLabel": "Get Filtered Data"
6543
+ },
6399
6544
  {
6400
6545
  "name": "getFirstRowNode",
6401
6546
  "kind": "function",
@@ -6414,6 +6559,18 @@ exports.ADAPTABLE_METAMODEL = {
6414
6559
  "description": "Retrieves Cell in given Row and Column",
6415
6560
  "uiLabel": "Get Grid Cell From Row Node"
6416
6561
  },
6562
+ {
6563
+ "name": "getGridContainerElement",
6564
+ "kind": "function",
6565
+ "description": "Returns the Grid Container in which the Adaptable Instance is present",
6566
+ "uiLabel": "Get Grid Container Element"
6567
+ },
6568
+ {
6569
+ "name": "getGridData",
6570
+ "kind": "function",
6571
+ "description": "Retrieves all data from the grid",
6572
+ "uiLabel": "Get Grid Data"
6573
+ },
6417
6574
  {
6418
6575
  "name": "getGridState",
6419
6576
  "kind": "function",
@@ -6576,6 +6733,12 @@ exports.ADAPTABLE_METAMODEL = {
6576
6733
  "description": "Refresh Cells in AdapTable",
6577
6734
  "uiLabel": "Refresh Cells"
6578
6735
  },
6736
+ {
6737
+ "name": "refreshRow",
6738
+ "kind": "function",
6739
+ "description": "Forces a render of a row",
6740
+ "uiLabel": "Refresh Row"
6741
+ },
6579
6742
  {
6580
6743
  "name": "selectAll",
6581
6744
  "kind": "function",
@@ -6618,6 +6781,12 @@ exports.ADAPTABLE_METAMODEL = {
6618
6781
  "description": "Sorts AdapTable using given Column Sorts",
6619
6782
  "uiLabel": "Set Adaptable Sorting"
6620
6783
  },
6784
+ {
6785
+ "name": "setCellsValue",
6786
+ "kind": "function",
6787
+ "description": "Updates multiple cells",
6788
+ "uiLabel": "Set Cells Value"
6789
+ },
6621
6790
  {
6622
6791
  "name": "setCellValue",
6623
6792
  "kind": "function",
@@ -6674,10 +6843,11 @@ exports.ADAPTABLE_METAMODEL = {
6674
6843
  "description": "Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value",
6675
6844
  "properties": [
6676
6845
  {
6677
- "name": "columnId",
6678
- "kind": "string",
6846
+ "name": "column",
6847
+ "kind": "REFERENCE",
6679
6848
  "description": "Column in which cell is situtated",
6680
- "uiLabel": "Column Id"
6849
+ "uiLabel": "Column",
6850
+ "reference": "AdaptableColumn"
6681
6851
  },
6682
6852
  {
6683
6853
  "name": "displayValue",
@@ -7467,7 +7637,7 @@ exports.ADAPTABLE_METAMODEL = {
7467
7637
  {
7468
7638
  "name": "createDefaultLayout",
7469
7639
  "kind": "boolean",
7470
- "description": "Whether a "Default Layout" will be created in addition to Layouts in Config (if none there, Default Layout is always created)",
7640
+ "description": "Whether a "Default Layout" will be created in addition to Layouts provided in Config",
7471
7641
  "uiLabel": "Create Default Layout",
7472
7642
  "isOptional": true,
7473
7643
  "gridInfo": "item",
@@ -8137,6 +8307,20 @@ exports.ADAPTABLE_METAMODEL = {
8137
8307
  "kind": "Interface",
8138
8308
  "description": "Internal State used by AdapTable for managing the OpenFin plugin"
8139
8309
  },
8310
+ "PermittedValues": {
8311
+ "name": "PermittedValues",
8312
+ "kind": "Interface",
8313
+ "description": "Permitted/possible values, when column values can be selected (e.g. sort, bulk-update)",
8314
+ "properties": [
8315
+ {
8316
+ "name": "values",
8317
+ "kind": "unknown",
8318
+ "description": "Values to display: either hardcoded list or a function",
8319
+ "uiLabel": "Values",
8320
+ "isOptional": true
8321
+ }
8322
+ ]
8323
+ },
8140
8324
  "PluginsApi": {
8141
8325
  "name": "PluginsApi",
8142
8326
  "kind": "Interface",
@@ -8714,6 +8898,12 @@ exports.ADAPTABLE_METAMODEL = {
8714
8898
  "description": "Returns all Columns referenced in a Query",
8715
8899
  "uiLabel": "Get Columns From Expression"
8716
8900
  },
8901
+ {
8902
+ "name": "getModuleExpressionFunctionMap",
8903
+ "kind": "function",
8904
+ "description": "Returns the current Module Expression Map",
8905
+ "uiLabel": "Get Module Expression Function Map"
8906
+ },
8717
8907
  {
8718
8908
  "name": "getQueryableColumnIds",
8719
8909
  "kind": "function",
@@ -8976,32 +9166,46 @@ exports.ADAPTABLE_METAMODEL = {
8976
9166
  "kind": "Interface",
8977
9167
  "description": "Provides meta data about a Row in Adaptable",
8978
9168
  "properties": [
9169
+ {
9170
+ "name": "isDisplayed",
9171
+ "kind": "boolean",
9172
+ "description": "Is Row displayed (ie. filtered, not necessarily in viewport)",
9173
+ "uiLabel": "Is Displayed",
9174
+ "isOptional": true
9175
+ },
8979
9176
  {
8980
9177
  "name": "isExpanded",
8981
9178
  "kind": "boolean",
8982
- "description": "Whether - if a Group Row - it is currently expanded",
9179
+ "description": "Is Row expanded (if a group row)",
8983
9180
  "uiLabel": "Is Expanded",
8984
9181
  "isOptional": true
8985
9182
  },
8986
9183
  {
8987
9184
  "name": "isGroup",
8988
9185
  "kind": "boolean",
8989
- "description": "Whether Row is a Row Group",
9186
+ "description": "Is Row grouped",
8990
9187
  "uiLabel": "Is Group",
8991
9188
  "isOptional": true
8992
9189
  },
8993
9190
  {
8994
9191
  "name": "isMaster",
8995
9192
  "kind": "boolean",
8996
- "description": "Whether Row is a Master Row (in a Master-Detail grid)",
9193
+ "description": "Is Row a Master Row (in a Master-Detail grid)",
8997
9194
  "uiLabel": "Is Master",
8998
9195
  "isOptional": true
8999
9196
  },
9000
9197
  {
9001
- "name": "level",
9198
+ "name": "isSelected",
9199
+ "kind": "boolean",
9200
+ "description": "Is Row selected",
9201
+ "uiLabel": "Is Selected",
9202
+ "isOptional": true
9203
+ },
9204
+ {
9205
+ "name": "rowGroupLevel",
9002
9206
  "kind": "number",
9003
9207
  "description": "What level the Row is (if Row Grouping is active)",
9004
- "uiLabel": "Level",
9208
+ "uiLabel": "Row Group Level",
9005
9209
  "isOptional": true
9006
9210
  }
9007
9211
  ]
@@ -9942,6 +10146,84 @@ exports.ADAPTABLE_METAMODEL = {
9942
10146
  }
9943
10147
  ]
9944
10148
  },
10149
+ "SpecialColumnSettings": {
10150
+ "name": "SpecialColumnSettings",
10151
+ "kind": "Interface",
10152
+ "description": "Base Settings for SpecialColumns",
10153
+ "properties": [
10154
+ {
10155
+ "name": "Aggregatable",
10156
+ "kind": "boolean",
10157
+ "description": "Whether Column can be used in an aggregation when grouping",
10158
+ "uiLabel": "Aggregatable",
10159
+ "isOptional": true,
10160
+ "defaultValue": "true"
10161
+ },
10162
+ {
10163
+ "name": "Filterable",
10164
+ "kind": "boolean",
10165
+ "description": "Whether Column is filterable",
10166
+ "uiLabel": "Filterable",
10167
+ "isOptional": true,
10168
+ "defaultValue": "true"
10169
+ },
10170
+ {
10171
+ "name": "Groupable",
10172
+ "kind": "boolean",
10173
+ "description": "Whether Column can be grouped",
10174
+ "uiLabel": "Groupable",
10175
+ "isOptional": true,
10176
+ "defaultValue": "true"
10177
+ },
10178
+ {
10179
+ "name": "Pivotable",
10180
+ "kind": "boolean",
10181
+ "description": "Whether Column can be used when grid is in pivot mode",
10182
+ "uiLabel": "Pivotable",
10183
+ "isOptional": true,
10184
+ "defaultValue": "true"
10185
+ },
10186
+ {
10187
+ "name": "Resizable",
10188
+ "kind": "boolean",
10189
+ "description": "Whether Column can be resized (by dragging column header edges)",
10190
+ "uiLabel": "Resizable",
10191
+ "isOptional": true,
10192
+ "defaultValue": "true"
10193
+ },
10194
+ {
10195
+ "name": "Sortable",
10196
+ "kind": "boolean",
10197
+ "description": "Whether Column is sortable",
10198
+ "uiLabel": "Sortable",
10199
+ "isOptional": true,
10200
+ "defaultValue": "true"
10201
+ },
10202
+ {
10203
+ "name": "SuppressMenu",
10204
+ "kind": "boolean",
10205
+ "description": "Whether if no menu should be shown for this Column header.",
10206
+ "uiLabel": "Suppress Menu",
10207
+ "isOptional": true,
10208
+ "defaultValue": "false"
10209
+ },
10210
+ {
10211
+ "name": "SuppressMovable",
10212
+ "kind": "boolean",
10213
+ "description": "Whether if this Column should be movable via dragging",
10214
+ "uiLabel": "Suppress Movable",
10215
+ "isOptional": true,
10216
+ "defaultValue": "false"
10217
+ },
10218
+ {
10219
+ "name": "Width",
10220
+ "kind": "number",
10221
+ "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
10222
+ "uiLabel": "Width",
10223
+ "isOptional": true
10224
+ }
10225
+ ]
10226
+ },
9945
10227
  "StateOptions": {
9946
10228
  "name": "StateOptions",
9947
10229
  "kind": "Interface",
@@ -10621,6 +10903,12 @@ exports.ADAPTABLE_METAMODEL = {
10621
10903
  "description": "Retrieves Color Palette currently being used",
10622
10904
  "uiLabel": "Get Color Palette"
10623
10905
  },
10906
+ {
10907
+ "name": "getCustomSortPermittedValuesForColumn",
10908
+ "kind": "function",
10909
+ "description": "Retrieves Permitted values for Custom sort.",
10910
+ "uiLabel": "Get Custom Sort Permitted Values For Column"
10911
+ },
10624
10912
  {
10625
10913
  "name": "getEditableCellStyle",
10626
10914
  "kind": "function",
@@ -10639,6 +10927,12 @@ exports.ADAPTABLE_METAMODEL = {
10639
10927
  "description": "Retrieves actual Look Up Values from an EditLookUpItem",
10640
10928
  "uiLabel": "Get Edit Look Up Values For Edit Look Up Item"
10641
10929
  },
10930
+ {
10931
+ "name": "getFilterPermittedValuesForColumn",
10932
+ "kind": "function",
10933
+ "description": "Retrieves Permitted values for filtering by column values in Floating Filter and dropdown Filter.",
10934
+ "uiLabel": "Get Filter Permitted Values For Column"
10935
+ },
10642
10936
  {
10643
10937
  "name": "getPermittedValuesForColumn",
10644
10938
  "kind": "function",
@@ -10680,6 +10974,13 @@ exports.ADAPTABLE_METAMODEL = {
10680
10974
  "defaultValue": "null",
10681
10975
  "reference": "AdaptableIcon"
10682
10976
  },
10977
+ {
10978
+ "name": "bulkUpdatePermittedValues",
10979
+ "kind": "unknown",
10980
+ "description": "Custom column values for editing via bulk-update. When not defined it defaults to permittedValues.",
10981
+ "uiLabel": "Bulk Update Permitted Values",
10982
+ "isOptional": true
10983
+ },
10683
10984
  {
10684
10985
  "name": "colorPalette",
10685
10986
  "kind": "unknown",
@@ -10687,6 +10988,13 @@ exports.ADAPTABLE_METAMODEL = {
10687
10988
  "uiLabel": "Color Palette",
10688
10989
  "isOptional": true
10689
10990
  },
10991
+ {
10992
+ "name": "customSortPermittedValues",
10993
+ "kind": "unknown",
10994
+ "description": "Custom column values for defining custom sort. When not defined it defaults to permittedValues.",
10995
+ "uiLabel": "Custom Sort Permitted Values",
10996
+ "isOptional": true
10997
+ },
10690
10998
  {
10691
10999
  "name": "dateInputOptions",
10692
11000
  "kind": "REFERENCE",
@@ -10706,10 +11014,17 @@ exports.ADAPTABLE_METAMODEL = {
10706
11014
  {
10707
11015
  "name": "editLookUpItems",
10708
11016
  "kind": "unknown",
10709
- "description": "Dropdown values displayed when column is being edited",
11017
+ "description": "Dropdown values displayed when column is being edited. When not defined it defaults to permittedValues.",
10710
11018
  "uiLabel": "Edit Look Up Items",
10711
11019
  "isOptional": true
10712
11020
  },
11021
+ {
11022
+ "name": "filterPermittedValues",
11023
+ "kind": "unknown",
11024
+ "description": "Dropdown values for filter options inside floating and header filter. When not defined it defaults to permittedValues.",
11025
+ "uiLabel": "Filter Permitted Values",
11026
+ "isOptional": true
11027
+ },
10713
11028
  {
10714
11029
  "name": "permittedValues",
10715
11030
  "kind": "unknown",