@adaptabletools/adaptable 11.0.7 → 11.1.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 (132) hide show
  1. package/base.css +19 -11
  2. package/bundle.cjs.js +100 -100
  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 +2 -0
  8. package/src/AdaptableOptions/LayoutOptions.d.ts +5 -1
  9. package/src/Api/AlertApi.d.ts +3 -2
  10. package/src/Api/BulkUpdateApi.d.ts +6 -1
  11. package/src/Api/CalculatedColumnApi.d.ts +1 -1
  12. package/src/Api/CellSummaryApi.d.ts +1 -1
  13. package/src/Api/ConditionalStyleApi.d.ts +1 -1
  14. package/src/Api/ConfigApi.d.ts +1 -1
  15. package/src/Api/CustomSortApi.d.ts +1 -1
  16. package/src/Api/DashboardApi.d.ts +1 -1
  17. package/src/Api/DataSourceApi.d.ts +1 -1
  18. package/src/Api/EventApi.d.ts +1 -1
  19. package/src/Api/Events/GridDataChanged.d.ts +5 -1
  20. package/src/Api/ExportApi.d.ts +7 -2
  21. package/src/Api/FormatColumnApi.d.ts +1 -1
  22. package/src/Api/FreeTextColumnApi.d.ts +1 -1
  23. package/src/Api/GridApi.d.ts +24 -3
  24. package/src/Api/Implementation/AlertApiImpl.d.ts +4 -1
  25. package/src/Api/Implementation/AlertApiImpl.js +79 -52
  26. package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +1 -0
  27. package/src/Api/Implementation/BulkUpdateApiImpl.js +4 -0
  28. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  29. package/src/Api/Implementation/ConfigApiImpl.js +7 -2
  30. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -1
  31. package/src/Api/Implementation/ExportApiImpl.js +14 -1
  32. package/src/Api/Implementation/GridApiImpl.d.ts +9 -1
  33. package/src/Api/Implementation/GridApiImpl.js +24 -3
  34. package/src/Api/Implementation/InternalApiImpl.d.ts +9 -2
  35. package/src/Api/Implementation/InternalApiImpl.js +37 -1
  36. package/src/Api/Implementation/LayoutApiImpl.d.ts +6 -0
  37. package/src/Api/Implementation/LayoutApiImpl.js +48 -0
  38. package/src/Api/Implementation/ScheduleApiImpl.js +1 -0
  39. package/src/Api/Implementation/SettingsPanelApiImpl.js +7 -1
  40. package/src/Api/InternalApi.d.ts +9 -2
  41. package/src/Api/LayoutApi.d.ts +38 -1
  42. package/src/Api/PlusMinusApi.d.ts +1 -1
  43. package/src/Api/QueryApi.d.ts +1 -1
  44. package/src/Api/QuickSearchApi.d.ts +1 -1
  45. package/src/Api/ScheduleApi.d.ts +1 -1
  46. package/src/Api/ShortcutApi.d.ts +1 -1
  47. package/src/Api/SmartEditApi.d.ts +1 -1
  48. package/src/Api/TeamSharingApi.d.ts +1 -1
  49. package/src/Api/ThemeApi.d.ts +1 -1
  50. package/src/PredefinedConfig/AlertState.d.ts +7 -3
  51. package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +35 -6
  52. package/src/PredefinedConfig/Common/AdaptableAlert.js +7 -0
  53. package/src/PredefinedConfig/Common/AdaptablePredicate.js +20 -0
  54. package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -1
  55. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
  56. package/src/PredefinedConfig/Common/Entitlement.d.ts +2 -2
  57. package/src/PredefinedConfig/Common/Menu.d.ts +3 -0
  58. package/src/PredefinedConfig/Common/RowsHighlightInfo.d.ts +15 -0
  59. package/src/PredefinedConfig/Common/RowsHighlightInfo.js +2 -0
  60. package/src/PredefinedConfig/ConfigState.d.ts +4 -1
  61. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  62. package/src/PredefinedConfig/PopupState.d.ts +2 -1
  63. package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
  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 +11 -0
  67. package/src/Redux/ActionsReducers/SystemRedux.js +32 -1
  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 +69 -27
  71. package/src/Strategy/AlertModule.d.ts +5 -3
  72. package/src/Strategy/AlertModule.js +60 -16
  73. package/src/Strategy/BulkUpdateModule.js +5 -0
  74. package/src/Strategy/ExportModule.js +1 -0
  75. package/src/Strategy/SmartEditModule.js +6 -0
  76. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  77. package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +1 -1
  78. package/src/Utilities/Defaults/DefaultSettingsPanel.js +6 -2
  79. package/src/Utilities/Interface/MessagePopups.d.ts +13 -0
  80. package/src/Utilities/ObjectFactory.d.ts +8 -6
  81. package/src/Utilities/ObjectFactory.js +26 -12
  82. package/src/Utilities/Services/LicenseService.js +1 -1
  83. package/src/Utilities/Services/ModuleService.js +1 -1
  84. package/src/Utilities/Services/ValidationService.js +1 -0
  85. package/src/View/AdaptableView.js +2 -0
  86. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +16 -9
  87. package/src/View/Alert/Wizard/AlertButtonsEditor.js +13 -3
  88. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -0
  89. package/src/View/Alert/Wizard/AlertWizard.js +83 -1
  90. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
  91. package/src/View/Components/FilterForm/FilterForm.js +2 -2
  92. package/src/View/Components/Panels/PanelFooter.d.ts +10 -0
  93. package/src/View/Components/Panels/PanelFooter.js +14 -0
  94. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +12 -7
  95. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +1 -1
  96. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +3 -1
  97. package/src/View/Components/Popups/{AdaptablePopup/Utilities.d.ts → Utilities.d.ts} +4 -0
  98. package/src/View/Components/Popups/{AdaptablePopup/Utilities.js → Utilities.js} +5 -2
  99. package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +6 -0
  100. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +32 -0
  101. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +4 -0
  102. package/src/View/Components/Popups/WindowPopups/windowFactory.js +8 -0
  103. package/src/View/Layout/LayoutEditorStandalonePopup.d.ts +3 -0
  104. package/src/View/Layout/LayoutEditorStandalonePopup.js +76 -0
  105. package/src/View/Layout/LayoutPopup.js +3 -24
  106. package/src/View/Layout/LayoutViewPanel.d.ts +1 -4
  107. package/src/View/Layout/LayoutViewPanel.js +5 -18
  108. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.d.ts +9 -0
  109. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +55 -0
  110. package/src/View/Layout/Wizard/LayoutEditor/index.js +3 -68
  111. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  112. package/src/View/Layout/Wizard/LayoutEditorWizard.js +35 -7
  113. package/src/View/SystemStatus/SystemStatusEntityRow.js +1 -2
  114. package/src/agGrid/Adaptable.d.ts +4 -2
  115. package/src/agGrid/Adaptable.js +65 -69
  116. package/src/agGrid/PercentBarRenderer.js +2 -1
  117. package/src/agGrid/agGridHelper.d.ts +1 -1
  118. package/src/agGrid/agGridHelper.js +23 -8
  119. package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
  120. package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
  121. package/src/components/Dialog/index.js +1 -1
  122. package/src/components/Modal/index.js +1 -1
  123. package/src/components/WindowModal/WindowModal.d.ts +10 -8
  124. package/src/components/WindowModal/WindowModal.js +4 -2
  125. package/src/components/WindowModal/useStacking.d.ts +9 -0
  126. package/src/components/WindowModal/useStacking.js +45 -0
  127. package/src/env.js +3 -3
  128. package/src/metamodel/adaptable.metamodel.d.ts +51 -11
  129. package/src/metamodel/adaptable.metamodel.js +183 -40
  130. package/src/types.d.ts +3 -2
  131. package/version.d.ts +1 -1
  132. 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": "dataChangedInfo",
497
+ "kind": "REFERENCE",
498
+ "description": "Cell DataChange which triggered Alert",
499
+ "uiLabel": "Data Changed Info",
500
+ "reference": "DataChangedInfo"
501
+ }
502
+ ]
503
+ },
487
504
  "AdaptableColumn": {
488
505
  "name": "AdaptableColumn",
489
506
  "kind": "Interface",
@@ -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",
@@ -1726,7 +1757,7 @@ exports.ADAPTABLE_METAMODEL = {
1726
1757
  {
1727
1758
  "name": "showAlertPopup",
1728
1759
  "kind": "function",
1729
- "description": "Opens the Alert popup screen",
1760
+ "description": "Opens Settings Panel with Alert section selected and visible",
1730
1761
  "uiLabel": "Show Alert Popup"
1731
1762
  },
1732
1763
  {
@@ -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,10 +2194,16 @@ 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",
2148
- "description": "Opens Bulk Update popup screen",
2206
+ "description": "Opens Settings Panel with Bulk Update section selected and visible",
2149
2207
  "uiLabel": "Show Bulk Update Popup"
2150
2208
  }
2151
2209
  ]
@@ -2301,7 +2359,7 @@ exports.ADAPTABLE_METAMODEL = {
2301
2359
  {
2302
2360
  "name": "showCalculatedColumnPopup",
2303
2361
  "kind": "function",
2304
- "description": "Opens Calculated Column popup screen",
2362
+ "description": "Opens Settings Panel with Calculated Column section selected and visible",
2305
2363
  "uiLabel": "Show Calculated Column Popup"
2306
2364
  }
2307
2365
  ]
@@ -2415,7 +2473,7 @@ exports.ADAPTABLE_METAMODEL = {
2415
2473
  {
2416
2474
  "name": "timeout",
2417
2475
  "kind": "number",
2418
- "description": "Time after which Cell should be unhilighted",
2476
+ "description": "Time after which Cell should be unhighlighted",
2419
2477
  "uiLabel": "Timeout",
2420
2478
  "isOptional": true
2421
2479
  }
@@ -2447,7 +2505,7 @@ exports.ADAPTABLE_METAMODEL = {
2447
2505
  {
2448
2506
  "name": "showCellSummaryPopup",
2449
2507
  "kind": "function",
2450
- "description": "Opens Cell Summary popup screen",
2508
+ "description": "Opens Settings Panel with Cell Summary section selected and visible",
2451
2509
  "uiLabel": "Show Cell Summary Popup"
2452
2510
  }
2453
2511
  ]
@@ -3163,7 +3221,7 @@ exports.ADAPTABLE_METAMODEL = {
3163
3221
  {
3164
3222
  "name": "showConditionalStylePopup",
3165
3223
  "kind": "function",
3166
- "description": "Opens Conditional Style popup screen",
3224
+ "description": "Opens Settings Panel with Conditional Style section selected and visible",
3167
3225
  "uiLabel": "Show Conditional Style Popup"
3168
3226
  },
3169
3227
  {
@@ -3391,10 +3449,10 @@ exports.ADAPTABLE_METAMODEL = {
3391
3449
  "uiLabel": "Get User State By State Key"
3392
3450
  },
3393
3451
  {
3394
- "name": "incrementUerStateRevision",
3452
+ "name": "incrementUserStateRevision",
3395
3453
  "kind": "function",
3396
3454
  "description": "Adds '1' to current revision number of State element",
3397
- "uiLabel": "Increment Uer State Revision"
3455
+ "uiLabel": "Increment User State Revision"
3398
3456
  },
3399
3457
  {
3400
3458
  "name": "loadUserState",
@@ -3423,7 +3481,7 @@ exports.ADAPTABLE_METAMODEL = {
3423
3481
  "properties": [
3424
3482
  {
3425
3483
  "name": "Revision",
3426
- "kind": "number",
3484
+ "kind": "unknown",
3427
3485
  "description": "Version number of the Item - allows developers to update one section in Predefined Config while keeping others unchanged",
3428
3486
  "uiLabel": "Revision",
3429
3487
  "isOptional": true
@@ -3740,7 +3798,7 @@ exports.ADAPTABLE_METAMODEL = {
3740
3798
  {
3741
3799
  "name": "showCustomSortPopup",
3742
3800
  "kind": "function",
3743
- "description": "Opens Custom Sort popup screen",
3801
+ "description": "Opens Settings Panel with Custom Sort section selected and visible",
3744
3802
  "uiLabel": "Show Custom Sort Popup"
3745
3803
  },
3746
3804
  {
@@ -4115,7 +4173,7 @@ exports.ADAPTABLE_METAMODEL = {
4115
4173
  {
4116
4174
  "name": "showDashboardPopup",
4117
4175
  "kind": "function",
4118
- "description": "Opens the Dashboard popup screen",
4176
+ "description": "Opens Settings Panel with Dashboard section selected and visible",
4119
4177
  "uiLabel": "Show Dashboard Popup"
4120
4178
  }
4121
4179
  ]
@@ -4314,7 +4372,7 @@ exports.ADAPTABLE_METAMODEL = {
4314
4372
  {
4315
4373
  "name": "changedAt",
4316
4374
  "kind": "number",
4317
- "description": "Timestamp of change occurence (in milliseconds)",
4375
+ "description": "Timestamp of change occurrence (in milliseconds)",
4318
4376
  "uiLabel": "Changed At"
4319
4377
  },
4320
4378
  {
@@ -4528,7 +4586,7 @@ exports.ADAPTABLE_METAMODEL = {
4528
4586
  {
4529
4587
  "name": "showDataSourcePopup",
4530
4588
  "kind": "function",
4531
- "description": "Opens Data Source popup screen",
4589
+ "description": "Opens Settings Panel with Data Source section selected and visible",
4532
4590
  "uiLabel": "Show Data Source Popup"
4533
4591
  }
4534
4592
  ]
@@ -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
  {
@@ -5010,6 +5068,12 @@ exports.ADAPTABLE_METAMODEL = {
5010
5068
  "description": "Retrieves Report with the given name",
5011
5069
  "uiLabel": "Get Report By Name"
5012
5070
  },
5071
+ {
5072
+ "name": "getReportDataForReport",
5073
+ "kind": "function",
5074
+ "description": "Returns the ReportData for the Report with the given name",
5075
+ "uiLabel": "Get Report Data For Report"
5076
+ },
5013
5077
  {
5014
5078
  "name": "getReportSchedules",
5015
5079
  "kind": "function",
@@ -5043,7 +5107,7 @@ exports.ADAPTABLE_METAMODEL = {
5043
5107
  {
5044
5108
  "name": "showExportPopup",
5045
5109
  "kind": "function",
5046
- "description": "Opens Export popup screen",
5110
+ "description": "Opens Settings Panel with Export section selected and visible",
5047
5111
  "uiLabel": "Show Export Popup"
5048
5112
  }
5049
5113
  ]
@@ -6311,7 +6375,7 @@ exports.ADAPTABLE_METAMODEL = {
6311
6375
  {
6312
6376
  "name": "showFormatColumnPopup",
6313
6377
  "kind": "function",
6314
- "description": "Opens the Format Column popup screen",
6378
+ "description": "Opens Settings Panel with Format Column section selected and visible",
6315
6379
  "uiLabel": "Show Format Column Popup"
6316
6380
  },
6317
6381
  {
@@ -6473,7 +6537,7 @@ exports.ADAPTABLE_METAMODEL = {
6473
6537
  {
6474
6538
  "name": "showFreeTextColumnPopup",
6475
6539
  "kind": "function",
6476
- "description": "Opens FreeTextColumn popup screen",
6540
+ "description": "Opens Settings Panel with Free Text Column section selected and visible",
6477
6541
  "uiLabel": "Show Free Text Column Popup"
6478
6542
  }
6479
6543
  ]
@@ -7100,6 +7164,12 @@ exports.ADAPTABLE_METAMODEL = {
7100
7164
  "description": "Returns the Primary Kev Value for a given Row Node",
7101
7165
  "uiLabel": "Get Primary Key Value For Row Node"
7102
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
+ },
7103
7173
  {
7104
7174
  "name": "getRawValueFromRowNode",
7105
7175
  "kind": "function",
@@ -7172,6 +7242,12 @@ exports.ADAPTABLE_METAMODEL = {
7172
7242
  "description": "Highlight a row using an adaptable style",
7173
7243
  "uiLabel": "Highlight Row"
7174
7244
  },
7245
+ {
7246
+ "name": "highlightRows",
7247
+ "kind": "function",
7248
+ "description": "Highlight rows using an adaptable style",
7249
+ "uiLabel": "Highlight Rows"
7250
+ },
7175
7251
  {
7176
7252
  "name": "isGridGroupable",
7177
7253
  "kind": "function",
@@ -7247,15 +7323,21 @@ exports.ADAPTABLE_METAMODEL = {
7247
7323
  {
7248
7324
  "name": "refreshRowByPrimaryKey",
7249
7325
  "kind": "function",
7250
- "description": "Forces a render of a row",
7326
+ "description": "Forces a re-render of the row with the given primary key value",
7251
7327
  "uiLabel": "Refresh Row By Primary Key"
7252
7328
  },
7253
7329
  {
7254
7330
  "name": "refreshRowNode",
7255
7331
  "kind": "function",
7256
- "description": "",
7332
+ "description": "Forces a re-render of the given row",
7257
7333
  "uiLabel": "Refresh Row Node"
7258
7334
  },
7335
+ {
7336
+ "name": "refreshRowNodes",
7337
+ "kind": "function",
7338
+ "description": "Forces a re-render of the given rows",
7339
+ "uiLabel": "Refresh Row Nodes"
7340
+ },
7259
7341
  {
7260
7342
  "name": "selectAll",
7261
7343
  "kind": "function",
@@ -7343,7 +7425,7 @@ exports.ADAPTABLE_METAMODEL = {
7343
7425
  {
7344
7426
  "name": "showGridInfoPopup",
7345
7427
  "kind": "function",
7346
- "description": "Opens Grid Info popup screen",
7428
+ "description": "Opens Settings Panel with Grid Info section selected and visible",
7347
7429
  "uiLabel": "Show Grid Info Popup"
7348
7430
  },
7349
7431
  {
@@ -7376,6 +7458,12 @@ exports.ADAPTABLE_METAMODEL = {
7376
7458
  "description": "Remove highlight from row",
7377
7459
  "uiLabel": "Un Highlight Row"
7378
7460
  },
7461
+ {
7462
+ "name": "unHighlightRows",
7463
+ "kind": "function",
7464
+ "description": "Remove highlight from row",
7465
+ "uiLabel": "Un Highlight Rows"
7466
+ },
7379
7467
  {
7380
7468
  "name": "updateGridData",
7381
7469
  "kind": "function",
@@ -7435,6 +7523,12 @@ exports.ADAPTABLE_METAMODEL = {
7435
7523
  "kind": "Interface",
7436
7524
  "description": "EventInfo returned by GridDataChanged event",
7437
7525
  "properties": [
7526
+ {
7527
+ "name": "changedAt",
7528
+ "kind": "number",
7529
+ "description": "Timestamp of change occurrence (in milliseconds)",
7530
+ "uiLabel": "Changed At"
7531
+ },
7438
7532
  {
7439
7533
  "name": "dataRows",
7440
7534
  "kind": "unknown",
@@ -7444,7 +7538,7 @@ exports.ADAPTABLE_METAMODEL = {
7444
7538
  {
7445
7539
  "name": "rowNodes",
7446
7540
  "kind": "unknown",
7447
- "description": "AG Grid Row Nodes that were affected by the Change",
7541
+ "description": "Row Nodes that were affected by this change",
7448
7542
  "uiLabel": "Row Nodes"
7449
7543
  },
7450
7544
  {
@@ -7949,7 +8043,7 @@ exports.ADAPTABLE_METAMODEL = {
7949
8043
  {
7950
8044
  "name": "ExpandedRowGroupValues",
7951
8045
  "kind": "unknown",
7952
- "description": "Values of opened row groups",
8046
+ "description": "Opened Row Groups - set if `displayRowGroups` in LayoutOptions is 'dynamic'",
7953
8047
  "uiLabel": "Expanded Row Group Values",
7954
8048
  "isOptional": true
7955
8049
  },
@@ -7994,6 +8088,12 @@ exports.ADAPTABLE_METAMODEL = {
7994
8088
  "kind": "Interface",
7995
8089
  "description": "Provides run-time access to the Layout Module and associated state",
7996
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
+ },
7997
8097
  {
7998
8098
  "name": "areLayoutsEqual",
7999
8099
  "kind": "function",
@@ -8030,6 +8130,18 @@ exports.ADAPTABLE_METAMODEL = {
8030
8130
  "description": "Creates new Layout in the state",
8031
8131
  "uiLabel": "Create Layout"
8032
8132
  },
8133
+ {
8134
+ "name": "deleteLayout",
8135
+ "kind": "function",
8136
+ "description": "Deletes an existing Layout (if not Default or only existing Layout)",
8137
+ "uiLabel": "Delete Layout"
8138
+ },
8139
+ {
8140
+ "name": "deleteLayoutByName",
8141
+ "kind": "function",
8142
+ "description": "Deletes an existing Layout provided by Name (if not Default or only existing Layout)",
8143
+ "uiLabel": "Delete Layout By Name"
8144
+ },
8033
8145
  {
8034
8146
  "name": "doesLayoutExist",
8035
8147
  "kind": "function",
@@ -8102,6 +8214,24 @@ exports.ADAPTABLE_METAMODEL = {
8102
8214
  "description": "Retrieves Layout section from Adaptable State",
8103
8215
  "uiLabel": "Get Layout State"
8104
8216
  },
8217
+ {
8218
+ "name": "isCurrentLayoutDefault",
8219
+ "kind": "function",
8220
+ "description": "Checks if the Current Layout is Default Layout",
8221
+ "uiLabel": "Is Current Layout Default"
8222
+ },
8223
+ {
8224
+ "name": "isCurrentLayoutReadOnly",
8225
+ "kind": "function",
8226
+ "description": "Specifies where Current Layout is editable",
8227
+ "uiLabel": "Is Current Layout Read Only"
8228
+ },
8229
+ {
8230
+ "name": "isDefaultLayout",
8231
+ "kind": "function",
8232
+ "description": "Checks if the given Layout is Default Layout",
8233
+ "uiLabel": "Is Default Layout"
8234
+ },
8105
8235
  {
8106
8236
  "name": "saveCurrentLayout",
8107
8237
  "kind": "function",
@@ -8138,10 +8268,16 @@ exports.ADAPTABLE_METAMODEL = {
8138
8268
  "description": "Opens change column caption popup",
8139
8269
  "uiLabel": "Show Change Column Caption"
8140
8270
  },
8271
+ {
8272
+ "name": "showLayoutEditor",
8273
+ "kind": "function",
8274
+ "description": "Opens Layout Editor - for Current or a named Layout",
8275
+ "uiLabel": "Show Layout Editor"
8276
+ },
8141
8277
  {
8142
8278
  "name": "showLayoutPopup",
8143
8279
  "kind": "function",
8144
- "description": "Opens Layout popup screen",
8280
+ "description": "Opens Settings Panel with Layout section selected",
8145
8281
  "uiLabel": "Show Layout Popup"
8146
8282
  }
8147
8283
  ]
@@ -8214,6 +8350,13 @@ exports.ADAPTABLE_METAMODEL = {
8214
8350
  "gridInfo": "item",
8215
8351
  "defaultValue": "false"
8216
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
+ },
8217
8360
  {
8218
8361
  "name": "includeExpandedRowGroups",
8219
8362
  "kind": "boolean",
@@ -8931,7 +9074,7 @@ exports.ADAPTABLE_METAMODEL = {
8931
9074
  {
8932
9075
  "name": "showPlusMinusPopup",
8933
9076
  "kind": "function",
8934
- "description": "Opens Plus Minus popup screen",
9077
+ "description": "Opens Settings Panel with Plus Minus section selected and visible",
8935
9078
  "uiLabel": "Show Plus Minus Popup"
8936
9079
  },
8937
9080
  {
@@ -9344,7 +9487,7 @@ exports.ADAPTABLE_METAMODEL = {
9344
9487
  {
9345
9488
  "name": "showQueryPopup",
9346
9489
  "kind": "function",
9347
- "description": "Opens Query Popup screen",
9490
+ "description": "Opens Settings Panel with Query section selected and visible",
9348
9491
  "uiLabel": "Show Query Popup"
9349
9492
  }
9350
9493
  ]
@@ -9475,7 +9618,7 @@ exports.ADAPTABLE_METAMODEL = {
9475
9618
  {
9476
9619
  "name": "showQuickSearchPopup",
9477
9620
  "kind": "function",
9478
- "description": "Opens Quick Search popup screen",
9621
+ "description": "Opens Settings Panel with Quick Search section selected and visible",
9479
9622
  "uiLabel": "Show Quick Search Popup"
9480
9623
  }
9481
9624
  ]
@@ -9874,7 +10017,7 @@ exports.ADAPTABLE_METAMODEL = {
9874
10017
  {
9875
10018
  "name": "showSchedulePopup",
9876
10019
  "kind": "function",
9877
- "description": "Opens Schedule popup screen",
10020
+ "description": "Opens Settings Panel with Schedule section selected and visible",
9878
10021
  "uiLabel": "Show Schedule Popup"
9879
10022
  },
9880
10023
  {
@@ -10412,7 +10555,7 @@ exports.ADAPTABLE_METAMODEL = {
10412
10555
  {
10413
10556
  "name": "showShortcutPopup",
10414
10557
  "kind": "function",
10415
- "description": "Opens Shortcut popup screen",
10558
+ "description": "Opens Settings Panel with Shortcut section selected and visible",
10416
10559
  "uiLabel": "Show Shortcut Popup"
10417
10560
  },
10418
10561
  {
@@ -10486,7 +10629,7 @@ exports.ADAPTABLE_METAMODEL = {
10486
10629
  {
10487
10630
  "name": "showSmartEditPopup",
10488
10631
  "kind": "function",
10489
- "description": "Opens Smart Edit popup screen",
10632
+ "description": "Opens Settings Panel with Smart Edit section selected and visible",
10490
10633
  "uiLabel": "Show Smart Edit Popup"
10491
10634
  }
10492
10635
  ]
@@ -10818,7 +10961,7 @@ exports.ADAPTABLE_METAMODEL = {
10818
10961
  {
10819
10962
  "name": "showTeamSharingPopup",
10820
10963
  "kind": "function",
10821
- "description": "Opens Team Sharing popup screen",
10964
+ "description": "Opens Settings Panel with Team Sharing section selected and visible",
10822
10965
  "uiLabel": "Show Team Sharing Popup"
10823
10966
  }
10824
10967
  ]
@@ -10983,7 +11126,7 @@ exports.ADAPTABLE_METAMODEL = {
10983
11126
  {
10984
11127
  "name": "showThemePopup",
10985
11128
  "kind": "function",
10986
- "description": "Opens Theme popup screen",
11129
+ "description": "Opens Settings Panel with Theme section selected and visible",
10987
11130
  "uiLabel": "Show Theme Popup"
10988
11131
  }
10989
11132
  ]
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,13 @@ 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
117
  export type { DataChangedInfo } from './PredefinedConfig/Common/DataChangedInfo';
117
118
  export type { DataUpdateConfig } from './PredefinedConfig/Common/DataUpdateConfig';
118
119
  export type { AdaptableFormData, AdaptableForm, AdaptableFormField, } from './PredefinedConfig/Common/AdaptableForm';
119
120
  export type { AdaptableButton, ButtonContext } from './PredefinedConfig/Common/AdaptableButton';
120
- export type { AdaptableMenuItem, UserMenuItem, ColumnMenuContext, ContextMenuContext, } from './PredefinedConfig/Common/Menu';
121
+ export type { AdaptableMenuItem, UserMenuItem, BaseMenuContext, ColumnMenuContext, ContextMenuContext, } from './PredefinedConfig/Common/Menu';
121
122
  export type { Schedule } from './PredefinedConfig/Common/Schedule';
122
123
  export type { ButtonStyle } from './PredefinedConfig/Common/ButtonStyle';
123
124
  export type { AdaptableModule, AdaptableToolPanel, AdaptableQLModule, } from './PredefinedConfig/Common/Types';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "11.0.7";
1
+ declare const _default: "11.1.0";
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.7'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '11.1.0'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version