@adaptabletools/adaptable 11.0.9 → 11.1.1-canary.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 (150) hide show
  1. package/base.css +19 -11
  2. package/bundle.cjs.js +125 -125
  3. package/index.css +23 -11
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -2
  8. package/src/AdaptableOptions/AlertOptions.d.ts +2 -2
  9. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +2 -2
  10. package/src/AdaptableOptions/EditOptions.d.ts +2 -2
  11. package/src/AdaptableOptions/LayoutOptions.d.ts +5 -1
  12. package/src/Api/AlertApi.d.ts +5 -6
  13. package/src/Api/BulkUpdateApi.d.ts +5 -0
  14. package/src/Api/ConfigApi.d.ts +1 -1
  15. package/src/Api/DataChangeHistoryApi.d.ts +3 -3
  16. package/src/Api/EventApi.d.ts +1 -1
  17. package/src/Api/Events/CellChanged.d.ts +2 -2
  18. package/src/Api/Events/GridDataChanged.d.ts +5 -1
  19. package/src/Api/ExportApi.d.ts +3 -3
  20. package/src/Api/FreeTextColumnApi.d.ts +3 -3
  21. package/src/Api/GridApi.d.ts +27 -6
  22. package/src/Api/Implementation/AlertApiImpl.d.ts +7 -4
  23. package/src/Api/Implementation/AlertApiImpl.js +86 -59
  24. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
  25. package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -0
  26. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  27. package/src/Api/Implementation/ConfigApiImpl.js +7 -2
  28. package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +3 -3
  29. package/src/Api/Implementation/EventApiImpl.js +1 -1
  30. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
  31. package/src/Api/Implementation/ExportApiImpl.js +7 -8
  32. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +2 -2
  33. package/src/Api/Implementation/FreeTextColumnApiImpl.js +7 -7
  34. package/src/Api/Implementation/GridApiImpl.d.ts +11 -3
  35. package/src/Api/Implementation/GridApiImpl.js +29 -8
  36. package/src/Api/Implementation/InternalApiImpl.d.ts +11 -4
  37. package/src/Api/Implementation/InternalApiImpl.js +41 -5
  38. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -1
  39. package/src/Api/Implementation/LayoutApiImpl.js +19 -4
  40. package/src/Api/Implementation/ScheduleApiImpl.js +1 -0
  41. package/src/Api/Implementation/SettingsPanelApiImpl.js +7 -1
  42. package/src/Api/InternalApi.d.ts +10 -3
  43. package/src/Api/LayoutApi.d.ts +14 -3
  44. package/src/PredefinedConfig/AlertState.d.ts +7 -3
  45. package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +35 -6
  46. package/src/PredefinedConfig/Common/AdaptableAlert.js +7 -0
  47. package/src/PredefinedConfig/Common/AdaptableFlashingCell.d.ts +2 -2
  48. package/src/PredefinedConfig/Common/AdaptablePredicate.js +20 -0
  49. package/src/PredefinedConfig/Common/{DataChangedInfo.d.ts → CellDataChangedInfo.d.ts} +2 -6
  50. package/src/PredefinedConfig/Common/{DataChangedInfo.js → CellDataChangedInfo.js} +0 -0
  51. package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -1
  52. package/src/PredefinedConfig/Common/DataChangedScope.d.ts +4 -0
  53. package/src/PredefinedConfig/Common/DataChangedScope.js +2 -0
  54. package/src/PredefinedConfig/Common/Entitlement.d.ts +2 -2
  55. package/src/PredefinedConfig/Common/Menu.d.ts +3 -0
  56. package/src/PredefinedConfig/Common/RowsHighlightInfo.d.ts +15 -0
  57. package/src/PredefinedConfig/Common/RowsHighlightInfo.js +2 -0
  58. package/src/PredefinedConfig/ConfigState.d.ts +4 -1
  59. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  60. package/src/PredefinedConfig/PopupState.d.ts +2 -1
  61. package/src/PredefinedConfig/SystemState.d.ts +2 -2
  62. package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
  63. package/src/Redux/ActionsReducers/GridRedux.d.ts +5 -5
  64. package/src/Redux/ActionsReducers/PopupRedux.d.ts +18 -0
  65. package/src/Redux/ActionsReducers/PopupRedux.js +36 -1
  66. package/src/Redux/ActionsReducers/SystemRedux.d.ts +16 -5
  67. package/src/Redux/ActionsReducers/SystemRedux.js +37 -6
  68. package/src/Redux/Store/AdaptableReduxMerger.d.ts +1 -0
  69. package/src/Redux/Store/AdaptableReduxMerger.js +40 -4
  70. package/src/Redux/Store/AdaptableStore.js +76 -34
  71. package/src/Strategy/AlertModule.d.ts +5 -3
  72. package/src/Strategy/AlertModule.js +68 -22
  73. package/src/Strategy/BulkUpdateModule.js +7 -2
  74. package/src/Strategy/DataChangeHistoryModule.js +8 -6
  75. package/src/Strategy/ExportModule.js +1 -0
  76. package/src/Strategy/FlashingCellModule.d.ts +2 -2
  77. package/src/Strategy/FlashingCellModule.js +21 -15
  78. package/src/Strategy/FormatColumnModule.js +4 -2
  79. package/src/Strategy/SmartEditModule.js +6 -0
  80. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  81. package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +1 -1
  82. package/src/Utilities/Defaults/DefaultSettingsPanel.js +6 -2
  83. package/src/Utilities/Emitter.d.ts +1 -1
  84. package/src/Utilities/Emitter.js +6 -3
  85. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  86. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
  87. package/src/Utilities/Interface/MessagePopups.d.ts +13 -0
  88. package/src/Utilities/ObjectFactory.d.ts +9 -7
  89. package/src/Utilities/ObjectFactory.js +26 -12
  90. package/src/Utilities/Services/CalculatedColumnExpressionService.js +3 -3
  91. package/src/Utilities/Services/DataService.d.ts +5 -5
  92. package/src/Utilities/Services/DataService.js +12 -10
  93. package/src/Utilities/Services/Interface/IAlertService.d.ts +2 -2
  94. package/src/Utilities/Services/Interface/IDataService.d.ts +6 -6
  95. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +3 -3
  96. package/src/Utilities/Services/Interface/IValidationService.d.ts +4 -4
  97. package/src/Utilities/Services/LicenseService.js +1 -1
  98. package/src/Utilities/Services/ModuleService.js +1 -1
  99. package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
  100. package/src/Utilities/Services/ValidationService.d.ts +4 -4
  101. package/src/Utilities/Services/ValidationService.js +18 -17
  102. package/src/View/AdaptableView.js +2 -0
  103. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +16 -9
  104. package/src/View/Alert/Wizard/AlertButtonsEditor.js +13 -3
  105. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -0
  106. package/src/View/Alert/Wizard/AlertWizard.js +83 -1
  107. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
  108. package/src/View/Components/FilterForm/FilterForm.js +2 -2
  109. package/src/View/Components/Panels/PanelFooter.d.ts +10 -0
  110. package/src/View/Components/Panels/PanelFooter.js +14 -0
  111. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +12 -7
  112. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +1 -1
  113. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +3 -1
  114. package/src/View/Components/Popups/{AdaptablePopup/Utilities.d.ts → Utilities.d.ts} +4 -0
  115. package/src/View/Components/Popups/{AdaptablePopup/Utilities.js → Utilities.js} +5 -2
  116. package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +6 -0
  117. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +32 -0
  118. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +4 -0
  119. package/src/View/Components/Popups/WindowPopups/windowFactory.js +8 -0
  120. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +2 -2
  121. package/src/View/DataChangeHistory/DataChangeHistoryPopup.d.ts +2 -2
  122. package/src/View/Layout/LayoutEditorStandalonePopup.d.ts +3 -0
  123. package/src/View/Layout/LayoutEditorStandalonePopup.js +76 -0
  124. package/src/View/Layout/LayoutPopup.js +3 -24
  125. package/src/View/Layout/LayoutViewPanel.d.ts +1 -4
  126. package/src/View/Layout/LayoutViewPanel.js +5 -18
  127. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.d.ts +9 -0
  128. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +55 -0
  129. package/src/View/Layout/Wizard/LayoutEditor/index.js +3 -68
  130. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  131. package/src/View/Layout/Wizard/LayoutEditorWizard.js +35 -7
  132. package/src/View/SystemStatus/SystemStatusEntityRow.js +1 -2
  133. package/src/agGrid/Adaptable.d.ts +6 -4
  134. package/src/agGrid/Adaptable.js +115 -117
  135. package/src/agGrid/agGridHelper.d.ts +1 -1
  136. package/src/agGrid/agGridHelper.js +23 -8
  137. package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
  138. package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
  139. package/src/components/Dialog/index.js +1 -1
  140. package/src/components/Modal/index.js +1 -1
  141. package/src/components/WindowModal/WindowModal.d.ts +10 -8
  142. package/src/components/WindowModal/WindowModal.js +4 -2
  143. package/src/components/WindowModal/useStacking.d.ts +9 -0
  144. package/src/components/WindowModal/useStacking.js +45 -0
  145. package/src/env.js +3 -3
  146. package/src/metamodel/adaptable.metamodel.d.ts +85 -45
  147. package/src/metamodel/adaptable.metamodel.js +185 -84
  148. package/src/types.d.ts +5 -3
  149. package/version.d.ts +1 -1
  150. package/version.js +1 -1
@@ -5,7 +5,7 @@ exports.ADAPTABLE_METAMODEL = {
5
5
  "AccessLevel": {
6
6
  "name": "AccessLevel",
7
7
  "kind": "TypeAlias",
8
- "description": "Defines Access Level for an Entitlement - can be 'ReadOnly', 'Hidden' or 'Full'"
8
+ "description": "Defines Access Level for an Entitlement - can be `ReadOnly`, `Hidden` or `Full`"
9
9
  },
10
10
  "ActionColumn": {
11
11
  "name": "ActionColumn",
@@ -120,8 +120,13 @@ exports.ADAPTABLE_METAMODEL = {
120
120
  },
121
121
  "AdaptableAlert": {
122
122
  "name": "AdaptableAlert",
123
+ "kind": "TypeAlias",
124
+ "description": "Defines an Alert fired by AdapTable"
125
+ },
126
+ "AdaptableAlertBase": {
127
+ "name": "AdaptableAlertBase",
123
128
  "kind": "Interface",
124
- "description": "Defines an Alert fired by AdapTable",
129
+ "description": "Defines the base(common) properties of an Alert fired by AdapTable, regardless of the type of change",
125
130
  "properties": [
126
131
  {
127
132
  "name": "alertDefinition",
@@ -131,12 +136,10 @@ exports.ADAPTABLE_METAMODEL = {
131
136
  "reference": "AlertDefinition"
132
137
  },
133
138
  {
134
- "name": "dataChangedInfo",
135
- "kind": "REFERENCE",
136
- "description": "DataChange which triggered Alert",
137
- "uiLabel": "Data Changed Info",
138
- "isOptional": true,
139
- "reference": "DataChangedInfo"
139
+ "name": "alertType",
140
+ "kind": "unknown",
141
+ "description": "The type of Alert",
142
+ "uiLabel": "Alert Type"
140
143
  },
141
144
  {
142
145
  "name": "header",
@@ -484,6 +487,20 @@ exports.ADAPTABLE_METAMODEL = {
484
487
  "kind": "TypeAlias",
485
488
  "description": "Calculated Column Query which may be a Scalar or an AggregatedScalar Expression"
486
489
  },
490
+ "AdaptableCellChangedAlert": {
491
+ "name": "AdaptableCellChangedAlert",
492
+ "kind": "Interface",
493
+ "description": "Defines an Alert fired by AdapTable when a cell is changed",
494
+ "properties": [
495
+ {
496
+ "name": "cellDataChangedInfo",
497
+ "kind": "REFERENCE",
498
+ "description": "Cell DataChange which triggered Alert",
499
+ "uiLabel": "Cell Data Changed Info",
500
+ "reference": "CellDataChangedInfo"
501
+ }
502
+ ]
503
+ },
487
504
  "AdaptableColumn": {
488
505
  "name": "AdaptableColumn",
489
506
  "kind": "Interface",
@@ -678,12 +695,12 @@ exports.ADAPTABLE_METAMODEL = {
678
695
  "description": "Defines an Alert fired by AdapTable",
679
696
  "properties": [
680
697
  {
681
- "name": "dataChangedInfo",
698
+ "name": "cellDataChangedInfo",
682
699
  "kind": "REFERENCE",
683
700
  "description": "Data change which triggered the FlashingCell",
684
- "uiLabel": "Data Changed Info",
701
+ "uiLabel": "Cell Data Changed Info",
685
702
  "isOptional": true,
686
- "reference": "DataChangedInfo"
703
+ "reference": "CellDataChangedInfo"
687
704
  },
688
705
  {
689
706
  "name": "direction",
@@ -1347,6 +1364,20 @@ exports.ADAPTABLE_METAMODEL = {
1347
1364
  }
1348
1365
  ]
1349
1366
  },
1367
+ "AdaptableRowChangedAlert": {
1368
+ "name": "AdaptableRowChangedAlert",
1369
+ "kind": "Interface",
1370
+ "description": "Defines an Alert fired by AdapTable when a row is changed",
1371
+ "properties": [
1372
+ {
1373
+ "name": "gridDataChangedInfo",
1374
+ "kind": "REFERENCE",
1375
+ "description": "Row DataChange which triggered Alert",
1376
+ "uiLabel": "Grid Data Changed Info",
1377
+ "reference": "GridDataChangedInfo"
1378
+ }
1379
+ ]
1380
+ },
1350
1381
  "AdaptableScope": {
1351
1382
  "name": "AdaptableScope",
1352
1383
  "kind": "TypeAlias",
@@ -1965,10 +1996,17 @@ exports.ADAPTABLE_METAMODEL = {
1965
1996
  {
1966
1997
  "name": "JumpToCell",
1967
1998
  "kind": "boolean",
1968
- "description": "Grid will 'jump' to the cell which triggered the Alert",
1999
+ "description": "Grid will 'jump' to the changed cell which triggered the Alert",
1969
2000
  "uiLabel": "Jump To Cell",
1970
2001
  "isOptional": true
1971
2002
  },
2003
+ {
2004
+ "name": "JumpToRow",
2005
+ "kind": "boolean",
2006
+ "description": "Grid will 'jump' to the newly added row which triggered the Alert",
2007
+ "uiLabel": "Jump To Row",
2008
+ "isOptional": true
2009
+ },
1972
2010
  {
1973
2011
  "name": "LogToConsole",
1974
2012
  "kind": "boolean",
@@ -2125,6 +2163,20 @@ exports.ADAPTABLE_METAMODEL = {
2125
2163
  }
2126
2164
  ]
2127
2165
  },
2166
+ "BaseMenuContext": {
2167
+ "name": "BaseMenuContext",
2168
+ "kind": "Interface",
2169
+ "description": "Base Context object used for both Column and Context Menu Context",
2170
+ "properties": [
2171
+ {
2172
+ "name": "adaptableApi",
2173
+ "kind": "REFERENCE",
2174
+ "description": "The Adaptable Api - included as a convenience",
2175
+ "uiLabel": "Adaptable Api",
2176
+ "reference": "AdaptableApi"
2177
+ }
2178
+ ]
2179
+ },
2128
2180
  "BulkUpdateApi": {
2129
2181
  "name": "BulkUpdateApi",
2130
2182
  "kind": "Interface",
@@ -2142,6 +2194,12 @@ exports.ADAPTABLE_METAMODEL = {
2142
2194
  "description": "Returns current Bulk Update value",
2143
2195
  "uiLabel": "Get Bulk Update Value"
2144
2196
  },
2197
+ {
2198
+ "name": "setBulkUpdateValue",
2199
+ "kind": "function",
2200
+ "description": "Sets Bulk Update value",
2201
+ "uiLabel": "Set Bulk Update Value"
2202
+ },
2145
2203
  {
2146
2204
  "name": "showBulkUpdatePopup",
2147
2205
  "kind": "function",
@@ -2352,7 +2410,7 @@ exports.ADAPTABLE_METAMODEL = {
2352
2410
  "kind": "REFERENCE",
2353
2411
  "description": "Object providing full information of the cell (and column and row) that changed",
2354
2412
  "uiLabel": "Cell Change",
2355
- "reference": "DataChangedInfo"
2413
+ "reference": "CellDataChangedInfo"
2356
2414
  }
2357
2415
  ]
2358
2416
  },
@@ -2388,6 +2446,66 @@ exports.ADAPTABLE_METAMODEL = {
2388
2446
  }
2389
2447
  ]
2390
2448
  },
2449
+ "CellDataChangedInfo": {
2450
+ "name": "CellDataChangedInfo",
2451
+ "kind": "Interface",
2452
+ "description": "Defines a Cell Edit - includes full details of old and new values, the column and the enclosing Row",
2453
+ "properties": [
2454
+ {
2455
+ "name": "changedAt",
2456
+ "kind": "number",
2457
+ "description": "Timestamp of change occurrence (in milliseconds)",
2458
+ "uiLabel": "Changed At"
2459
+ },
2460
+ {
2461
+ "name": "column",
2462
+ "kind": "REFERENCE",
2463
+ "description": "Column in which cell is situated",
2464
+ "uiLabel": "Column",
2465
+ "reference": "AdaptableColumn"
2466
+ },
2467
+ {
2468
+ "name": "newValue",
2469
+ "kind": "unknown",
2470
+ "description": "New value for the cell",
2471
+ "uiLabel": "New Value"
2472
+ },
2473
+ {
2474
+ "name": "oldValue",
2475
+ "kind": "unknown",
2476
+ "description": "Value in the Cell before the edit",
2477
+ "uiLabel": "Old Value"
2478
+ },
2479
+ {
2480
+ "name": "primaryKeyValue",
2481
+ "kind": "unknown",
2482
+ "description": "Primary Key Column's value for the row where edited cell is situated",
2483
+ "uiLabel": "Primary Key Value"
2484
+ },
2485
+ {
2486
+ "name": "rowData",
2487
+ "kind": "unknown",
2488
+ "description": "Data in the Row",
2489
+ "uiLabel": "Row Data",
2490
+ "isOptional": true
2491
+ },
2492
+ {
2493
+ "name": "rowNode",
2494
+ "kind": "REFERENCE",
2495
+ "description": "AG Grid RowNode that contains the cell",
2496
+ "uiLabel": "Row Node",
2497
+ "isOptional": true,
2498
+ "reference": "unknown"
2499
+ },
2500
+ {
2501
+ "name": "trigger",
2502
+ "kind": "unknown",
2503
+ "description": "What triggered the change - user, background change or a reverted change?",
2504
+ "uiLabel": "Trigger",
2505
+ "isOptional": true
2506
+ }
2507
+ ]
2508
+ },
2391
2509
  "CellHighlightInfo": {
2392
2510
  "name": "CellHighlightInfo",
2393
2511
  "kind": "Interface",
@@ -2415,7 +2533,7 @@ exports.ADAPTABLE_METAMODEL = {
2415
2533
  {
2416
2534
  "name": "timeout",
2417
2535
  "kind": "number",
2418
- "description": "Time after which Cell should be unhilighted",
2536
+ "description": "Time after which Cell should be unhighlighted",
2419
2537
  "uiLabel": "Timeout",
2420
2538
  "isOptional": true
2421
2539
  }
@@ -3391,10 +3509,10 @@ exports.ADAPTABLE_METAMODEL = {
3391
3509
  "uiLabel": "Get User State By State Key"
3392
3510
  },
3393
3511
  {
3394
- "name": "incrementUerStateRevision",
3512
+ "name": "incrementUserStateRevision",
3395
3513
  "kind": "function",
3396
3514
  "description": "Adds '1' to current revision number of State element",
3397
- "uiLabel": "Increment Uer State Revision"
3515
+ "uiLabel": "Increment User State Revision"
3398
3516
  },
3399
3517
  {
3400
3518
  "name": "loadUserState",
@@ -3423,7 +3541,7 @@ exports.ADAPTABLE_METAMODEL = {
3423
3541
  "properties": [
3424
3542
  {
3425
3543
  "name": "Revision",
3426
- "kind": "number",
3544
+ "kind": "unknown",
3427
3545
  "description": "Version number of the Item - allows developers to update one section in Predefined Config while keeping others unchanged",
3428
3546
  "uiLabel": "Revision",
3429
3547
  "isOptional": true
@@ -4306,66 +4424,6 @@ exports.ADAPTABLE_METAMODEL = {
4306
4424
  }
4307
4425
  ]
4308
4426
  },
4309
- "DataChangedInfo": {
4310
- "name": "DataChangedInfo",
4311
- "kind": "Interface",
4312
- "description": "Defines a Cell Edit - includes full details of old and new values, the column and the enclosing Row",
4313
- "properties": [
4314
- {
4315
- "name": "changedAt",
4316
- "kind": "number",
4317
- "description": "Timestamp of change occurence (in milliseconds)",
4318
- "uiLabel": "Changed At"
4319
- },
4320
- {
4321
- "name": "column",
4322
- "kind": "REFERENCE",
4323
- "description": "Column in which cell is situated",
4324
- "uiLabel": "Column",
4325
- "reference": "AdaptableColumn"
4326
- },
4327
- {
4328
- "name": "newValue",
4329
- "kind": "unknown",
4330
- "description": "New value for the cell",
4331
- "uiLabel": "New Value"
4332
- },
4333
- {
4334
- "name": "oldValue",
4335
- "kind": "unknown",
4336
- "description": "Value in the Cell before the edit",
4337
- "uiLabel": "Old Value"
4338
- },
4339
- {
4340
- "name": "primaryKeyValue",
4341
- "kind": "unknown",
4342
- "description": "Primary Key Column's value for the row where edited cell is situated",
4343
- "uiLabel": "Primary Key Value"
4344
- },
4345
- {
4346
- "name": "rowData",
4347
- "kind": "unknown",
4348
- "description": "Data in the Row",
4349
- "uiLabel": "Row Data",
4350
- "isOptional": true
4351
- },
4352
- {
4353
- "name": "rowNode",
4354
- "kind": "REFERENCE",
4355
- "description": "AG Grid RowNode that contains the cell",
4356
- "uiLabel": "Row Node",
4357
- "isOptional": true,
4358
- "reference": "unknown"
4359
- },
4360
- {
4361
- "name": "trigger",
4362
- "kind": "unknown",
4363
- "description": "What triggered the change - user, background change or a reverted change?",
4364
- "uiLabel": "Trigger",
4365
- "isOptional": true
4366
- }
4367
- ]
4368
- },
4369
4427
  "DataChangeHistoryApi": {
4370
4428
  "name": "DataChangeHistoryApi",
4371
4429
  "kind": "Interface",
@@ -4874,7 +4932,7 @@ exports.ADAPTABLE_METAMODEL = {
4874
4932
  {
4875
4933
  "name": "on",
4876
4934
  "kind": "function",
4877
- "description": "Event fired when data changes in the Grid",
4935
+ "description": "Event fired when a row is added, deleted or updated in the Grid",
4878
4936
  "uiLabel": "On"
4879
4937
  },
4880
4938
  {
@@ -7106,6 +7164,12 @@ exports.ADAPTABLE_METAMODEL = {
7106
7164
  "description": "Returns the Primary Kev Value for a given Row Node",
7107
7165
  "uiLabel": "Get Primary Key Value For Row Node"
7108
7166
  },
7167
+ {
7168
+ "name": "getPrimaryKeyValuesForRowNodes",
7169
+ "kind": "function",
7170
+ "description": "Returns the Primary Kev Values for a given Row Node collection",
7171
+ "uiLabel": "Get Primary Key Values For Row Nodes"
7172
+ },
7109
7173
  {
7110
7174
  "name": "getRawValueFromRowNode",
7111
7175
  "kind": "function",
@@ -7178,6 +7242,12 @@ exports.ADAPTABLE_METAMODEL = {
7178
7242
  "description": "Highlight a row using an adaptable style",
7179
7243
  "uiLabel": "Highlight Row"
7180
7244
  },
7245
+ {
7246
+ "name": "highlightRows",
7247
+ "kind": "function",
7248
+ "description": "Highlight rows using an adaptable style",
7249
+ "uiLabel": "Highlight Rows"
7250
+ },
7181
7251
  {
7182
7252
  "name": "isGridGroupable",
7183
7253
  "kind": "function",
@@ -7253,15 +7323,21 @@ exports.ADAPTABLE_METAMODEL = {
7253
7323
  {
7254
7324
  "name": "refreshRowByPrimaryKey",
7255
7325
  "kind": "function",
7256
- "description": "Forces a render of a row",
7326
+ "description": "Forces a re-render of the row with the given primary key value",
7257
7327
  "uiLabel": "Refresh Row By Primary Key"
7258
7328
  },
7259
7329
  {
7260
7330
  "name": "refreshRowNode",
7261
7331
  "kind": "function",
7262
- "description": "",
7332
+ "description": "Forces a re-render of the given row",
7263
7333
  "uiLabel": "Refresh Row Node"
7264
7334
  },
7335
+ {
7336
+ "name": "refreshRowNodes",
7337
+ "kind": "function",
7338
+ "description": "Forces a re-render of the given rows",
7339
+ "uiLabel": "Refresh Row Nodes"
7340
+ },
7265
7341
  {
7266
7342
  "name": "selectAll",
7267
7343
  "kind": "function",
@@ -7382,6 +7458,12 @@ exports.ADAPTABLE_METAMODEL = {
7382
7458
  "description": "Remove highlight from row",
7383
7459
  "uiLabel": "Un Highlight Row"
7384
7460
  },
7461
+ {
7462
+ "name": "unHighlightRows",
7463
+ "kind": "function",
7464
+ "description": "Remove highlight from row",
7465
+ "uiLabel": "Un Highlight Rows"
7466
+ },
7385
7467
  {
7386
7468
  "name": "updateGridData",
7387
7469
  "kind": "function",
@@ -7441,6 +7523,12 @@ exports.ADAPTABLE_METAMODEL = {
7441
7523
  "kind": "Interface",
7442
7524
  "description": "EventInfo returned by GridDataChanged event",
7443
7525
  "properties": [
7526
+ {
7527
+ "name": "changedAt",
7528
+ "kind": "number",
7529
+ "description": "Timestamp of change occurrence (in milliseconds)",
7530
+ "uiLabel": "Changed At"
7531
+ },
7444
7532
  {
7445
7533
  "name": "dataRows",
7446
7534
  "kind": "unknown",
@@ -7450,7 +7538,7 @@ exports.ADAPTABLE_METAMODEL = {
7450
7538
  {
7451
7539
  "name": "rowNodes",
7452
7540
  "kind": "unknown",
7453
- "description": "AG Grid Row Nodes that were affected by the Change",
7541
+ "description": "Row Nodes that were affected by this change",
7454
7542
  "uiLabel": "Row Nodes"
7455
7543
  },
7456
7544
  {
@@ -7955,7 +8043,7 @@ exports.ADAPTABLE_METAMODEL = {
7955
8043
  {
7956
8044
  "name": "ExpandedRowGroupValues",
7957
8045
  "kind": "unknown",
7958
- "description": "Values of opened row groups",
8046
+ "description": "Opened Row Groups - set if `displayRowGroups` in LayoutOptions is 'dynamic'",
7959
8047
  "uiLabel": "Expanded Row Group Values",
7960
8048
  "isOptional": true
7961
8049
  },
@@ -8000,6 +8088,12 @@ exports.ADAPTABLE_METAMODEL = {
8000
8088
  "kind": "Interface",
8001
8089
  "description": "Provides run-time access to the Layout Module and associated state",
8002
8090
  "properties": [
8091
+ {
8092
+ "name": "areExpandedRowGroupsSavedInLayouts",
8093
+ "kind": "function",
8094
+ "description": "Returns true if Layouts will contain Expanded Row Groups information",
8095
+ "uiLabel": "Are Expanded Row Groups Saved In Layouts"
8096
+ },
8003
8097
  {
8004
8098
  "name": "areLayoutsEqual",
8005
8099
  "kind": "function",
@@ -8177,13 +8271,13 @@ exports.ADAPTABLE_METAMODEL = {
8177
8271
  {
8178
8272
  "name": "showLayoutEditor",
8179
8273
  "kind": "function",
8180
- "description": "Opens the Layout Editor for the current Layout",
8274
+ "description": "Opens Layout Editor - for Current or a named Layout",
8181
8275
  "uiLabel": "Show Layout Editor"
8182
8276
  },
8183
8277
  {
8184
8278
  "name": "showLayoutPopup",
8185
8279
  "kind": "function",
8186
- "description": "Opens Settings Panel with Layout section selected and visible",
8280
+ "description": "Opens Settings Panel with Layout section selected",
8187
8281
  "uiLabel": "Show Layout Popup"
8188
8282
  }
8189
8283
  ]
@@ -8256,6 +8350,13 @@ exports.ADAPTABLE_METAMODEL = {
8256
8350
  "gridInfo": "item",
8257
8351
  "defaultValue": "false"
8258
8352
  },
8353
+ {
8354
+ "name": "displayRowGroups",
8355
+ "kind": "unknown",
8356
+ "description": "Whether RowGroups display all as expanded, all as closed or dynamically (i.e. saved in Layout)",
8357
+ "uiLabel": "Display Row Groups",
8358
+ "isOptional": true
8359
+ },
8259
8360
  {
8260
8361
  "name": "includeExpandedRowGroups",
8261
8362
  "kind": "boolean",
package/src/types.d.ts CHANGED
@@ -94,7 +94,7 @@ export type { SpecialColumnSettings } from './PredefinedConfig/Common/SpecialCol
94
94
  export type { CalculatedColumn, CalculatedColumnSettings, CalculatedColumnState, AdaptableCalculatedColumnQuery, } from './PredefinedConfig/CalculatedColumnState';
95
95
  export type { CellSummmary, CellSummaryOperation, CellSummaryOperationParams, } from './PredefinedConfig/Common/CellSummary';
96
96
  export type { FlashingCellDefinition, FlashingCellState, } from './PredefinedConfig/FlashingCellState';
97
- export type { AdaptableAlert } from './PredefinedConfig/Common/AdaptableAlert';
97
+ export type { AdaptableAlert, AdaptableAlertType, AdaptableGenericAlert, AdaptableCellChangedAlert, AdaptableRowChangedAlert, AdaptableAlertBase, } from './PredefinedConfig/Common/AdaptableAlert';
98
98
  export type { AdaptableFlashingCell } from './PredefinedConfig/Common/AdaptableFlashingCell';
99
99
  export type { AdaptableColumn, AdaptableColumnBase, } from './PredefinedConfig/Common/AdaptableColumn';
100
100
  export type { AdaptableComparerFunction } from './PredefinedConfig/Common/AdaptableComparerFunction';
@@ -112,12 +112,14 @@ export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
112
112
  export type { AdaptableIcon } from './PredefinedConfig/Common/AdaptableIcon';
113
113
  export type { CellHighlightInfo } from './PredefinedConfig/Common/CellHighlightInfo';
114
114
  export type { RowHighlightInfo } from './PredefinedConfig/Common/RowHighlightInfo';
115
+ export type { RowsHighlightInfo } from './PredefinedConfig/Common/RowsHighlightInfo';
115
116
  export type { ColumnSort } from './PredefinedConfig/Common/ColumnSort';
116
- export type { DataChangedInfo } from './PredefinedConfig/Common/DataChangedInfo';
117
+ export type { CellDataChangedInfo } from './PredefinedConfig/Common/CellDataChangedInfo';
118
+ export type { DataChangedScope } from './PredefinedConfig/Common/DataChangedScope';
117
119
  export type { DataUpdateConfig } from './PredefinedConfig/Common/DataUpdateConfig';
118
120
  export type { AdaptableFormData, AdaptableForm, AdaptableFormField, } from './PredefinedConfig/Common/AdaptableForm';
119
121
  export type { AdaptableButton, ButtonContext } from './PredefinedConfig/Common/AdaptableButton';
120
- export type { AdaptableMenuItem, UserMenuItem, ColumnMenuContext, ContextMenuContext, } from './PredefinedConfig/Common/Menu';
122
+ export type { AdaptableMenuItem, UserMenuItem, BaseMenuContext, ColumnMenuContext, ContextMenuContext, } from './PredefinedConfig/Common/Menu';
121
123
  export type { Schedule } from './PredefinedConfig/Common/Schedule';
122
124
  export type { ButtonStyle } from './PredefinedConfig/Common/ButtonStyle';
123
125
  export type { AdaptableModule, AdaptableToolPanel, AdaptableQLModule, } from './PredefinedConfig/Common/Types';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "11.0.9";
1
+ declare const _default: "11.1.1-canary.1";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '11.0.9'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '11.1.1-canary.1'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version