@adaptabletools/adaptable 18.1.14 → 18.1.15-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 (156) hide show
  1. package/package.json +2 -2
  2. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -5
  3. package/src/AdaptableOptions/AlertOptions.d.ts +2 -1
  4. package/src/AdaptableOptions/ChartingOptions.d.ts +5 -1
  5. package/src/AdaptableOptions/ColumnFilterOptions.d.ts +5 -1
  6. package/src/AdaptableOptions/DashboardOptions.d.ts +5 -1
  7. package/src/AdaptableOptions/FlashingCellOptions.d.ts +5 -1
  8. package/src/AdaptableOptions/LayoutOptions.d.ts +5 -1
  9. package/src/AdaptableOptions/NotificationsOptions.d.ts +6 -2
  10. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +5 -1
  11. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -1
  12. package/src/Api/ChartingApi.d.ts +2 -2
  13. package/src/Api/ColumnApi.d.ts +6 -0
  14. package/src/Api/ConfigApi.d.ts +22 -2
  15. package/src/Api/Events/LiveDataChanged.d.ts +1 -1
  16. package/src/Api/Implementation/AdaptableApiImpl.d.ts +1 -1
  17. package/src/Api/Implementation/ChartingApiImpl.d.ts +1 -1
  18. package/src/Api/Implementation/ChartingApiImpl.js +2 -2
  19. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  20. package/src/Api/Implementation/ColumnApiImpl.js +3 -0
  21. package/src/Api/Implementation/ConfigApiImpl.d.ts +4 -1
  22. package/src/Api/Implementation/ConfigApiImpl.js +16 -1
  23. package/src/Api/Implementation/EntitlementApiImpl.d.ts +4 -1
  24. package/src/Api/Implementation/EntitlementApiImpl.js +31 -6
  25. package/src/Api/Implementation/ExportApiImpl.js +5 -7
  26. package/src/Api/Implementation/GridApiImpl.js +1 -1
  27. package/src/Api/Implementation/TeamSharingApiImpl.js +2 -6
  28. package/src/Api/Internal/AdaptableInternalApi.d.ts +2 -6
  29. package/src/Api/Internal/AdaptableInternalApi.js +5 -11
  30. package/src/Api/Internal/EntitlementInternalApi.d.ts +4 -0
  31. package/src/Api/Internal/EntitlementInternalApi.js +11 -0
  32. package/src/Api/Internal/ExportInternalApi.d.ts +33 -8
  33. package/src/Api/Internal/ExportInternalApi.js +576 -5
  34. package/src/Api/Internal/NamedQueryInternalApi.d.ts +0 -1
  35. package/src/Api/Internal/NamedQueryInternalApi.js +0 -4
  36. package/src/PredefinedConfig/AdaptableState.d.ts +0 -5
  37. package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +2 -1
  38. package/src/PredefinedConfig/StyledColumnState.d.ts +1 -1
  39. package/src/Redux/ActionsReducers/GridRedux.d.ts +6 -6
  40. package/src/Redux/ActionsReducers/GridRedux.js +8 -8
  41. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +3 -3
  42. package/src/Redux/ActionsReducers/LayoutRedux.js +9 -9
  43. package/src/Redux/ActionsReducers/NamedQueryRedux.d.ts +1 -1
  44. package/src/Redux/ActionsReducers/NamedQueryRedux.js +1 -1
  45. package/src/Redux/ActionsReducers/PluginsRedux.d.ts +2 -2
  46. package/src/Redux/ActionsReducers/PluginsRedux.js +2 -2
  47. package/src/Redux/Store/AdaptableReduxMerger.js +3 -3
  48. package/src/Redux/Store/AdaptableStore.js +2 -4
  49. package/src/Strategy/AdaptableModuleBase.js +1 -2
  50. package/src/Strategy/ColumnFilterModule.js +1 -2
  51. package/src/Strategy/ExportModule.js +17 -44
  52. package/src/Strategy/FlashingCellModule.js +2 -10
  53. package/src/Strategy/ScheduleModule.js +4 -6
  54. package/src/Strategy/SmartEditModule.js +1 -7
  55. package/src/Strategy/TeamSharingModule.js +2 -2
  56. package/src/Strategy/Utilities/Export/getExportColumnsViewItems.js +1 -1
  57. package/src/Strategy/Utilities/Export/getExportRowsViewItems.js +1 -3
  58. package/src/Utilities/Constants/FilterConstants.d.ts +10 -0
  59. package/src/Utilities/Constants/FilterConstants.js +8 -0
  60. package/src/Utilities/Constants/GeneralConstants.d.ts +41 -4
  61. package/src/Utilities/Constants/GeneralConstants.js +42 -3
  62. package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +0 -2
  63. package/src/Utilities/Defaults/DefaultSettingsPanel.js +0 -5
  64. package/src/Utilities/Extensions/ArrayExtensions.d.ts +14 -0
  65. package/src/Utilities/Extensions/ArrayExtensions.js +65 -0
  66. package/src/Utilities/Extensions/EnumExtensions.d.ts +0 -4
  67. package/src/Utilities/Extensions/EnumExtensions.js +2 -12
  68. package/src/Utilities/Helpers/AdaptableHelper.d.ts +4 -10
  69. package/src/Utilities/Helpers/AdaptableHelper.js +7 -59
  70. package/src/Utilities/Helpers/FormatHelper.d.ts +9 -0
  71. package/src/Utilities/Helpers/FormatHelper.js +26 -14
  72. package/src/Utilities/Helpers/Helper.d.ts +0 -10
  73. package/src/Utilities/Helpers/Helper.js +0 -70
  74. package/src/Utilities/Services/ChartingService.d.ts +2 -2
  75. package/src/Utilities/Services/ChartingService.js +5 -11
  76. package/src/Utilities/Services/ModuleService.js +35 -31
  77. package/src/Utilities/Services/RowEditService.js +1 -6
  78. package/src/Utilities/Services/RowSummaryService.js +2 -2
  79. package/src/Utilities/Services/ValidationService.js +2 -16
  80. package/src/View/Alert/AlertEmptyView.js +1 -2
  81. package/src/View/Charting/ChartingStatusBarPopover.js +1 -2
  82. package/src/View/Charting/useChartingElements.js +1 -1
  83. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +2 -6
  84. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -4
  85. package/src/View/Components/FilterForm/QuickFilterForm.js +2 -12
  86. package/src/View/Components/ModuleValueSelector/index.js +2 -2
  87. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -5
  88. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +1 -3
  89. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -1
  90. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -7
  91. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +6 -12
  92. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +3 -23
  93. package/src/View/Components/ToolPanel/ToolPanelPopup.js +4 -5
  94. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -3
  95. package/src/View/Components/ValueSelector/index.js +2 -2
  96. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +2 -2
  97. package/src/View/Dashboard/CustomDashboardButton.js +1 -6
  98. package/src/View/Dashboard/CustomToolbar.js +2 -9
  99. package/src/View/Dashboard/Dashboard.js +2 -4
  100. package/src/View/Dashboard/DashboardPopup.js +1 -3
  101. package/src/View/Dashboard/DashboardToolbarFactory.js +1 -2
  102. package/src/View/Dashboard/PinnedToolbarsSelector.js +1 -2
  103. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -3
  104. package/src/View/Export/ExportViewPanel.js +2 -4
  105. package/src/View/Export/Wizard/ReportSummaryWizard.js +2 -6
  106. package/src/View/GridFilter/GridFilterExpressionEditor.js +2 -2
  107. package/src/View/GridFilter/useGridFilterExpressionEditor.js +2 -6
  108. package/src/View/Layout/LayoutViewPanel.js +1 -1
  109. package/src/View/Layout/PivotDetailsPopoup.js +1 -7
  110. package/src/View/Layout/SaveLayoutButton.js +1 -3
  111. package/src/View/Layout/Wizard/sections/AggregationsSection.js +2 -2
  112. package/src/View/Layout/Wizard/sections/ColumnsSection.js +2 -2
  113. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +2 -2
  114. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
  115. package/src/View/Layout/Wizard/sections/RowSummarySection.js +2 -2
  116. package/src/View/Layout/Wizard/sections/SortSection.js +2 -2
  117. package/src/View/NamedQuery/Wizard/NamedQueryWizard.js +3 -3
  118. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  119. package/src/View/SystemStatus/SystemStatusPopup.js +1 -1
  120. package/src/View/Wizard/OnePageAdaptableWizard.js +2 -2
  121. package/src/agGrid/ActionColumnRenderer.js +8 -22
  122. package/src/agGrid/AdaptableAgGrid.d.ts +5 -7
  123. package/src/agGrid/AdaptableAgGrid.js +153 -145
  124. package/src/agGrid/AgGridAdapter.d.ts +0 -1
  125. package/src/agGrid/AgGridAdapter.js +8 -11
  126. package/src/agGrid/AgGridColumnAdapter.d.ts +3 -1
  127. package/src/agGrid/AgGridColumnAdapter.js +40 -14
  128. package/src/agGrid/BadgeRenderer.js +4 -22
  129. package/src/agGrid/FloatingFilterWrapper.js +21 -0
  130. package/src/agGrid/buildSortedColumnStateForLayout.d.ts +1 -1
  131. package/src/agGrid/buildSortedColumnStateForLayout.js +2 -2
  132. package/src/agGrid/defaultAdaptableOptions.js +35 -30
  133. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -15
  134. package/src/env.js +2 -2
  135. package/src/metamodel/adaptable.metamodel.d.ts +84 -8
  136. package/src/metamodel/adaptable.metamodel.js +1 -1
  137. package/src/types.d.ts +9 -9
  138. package/tsconfig.esm.tsbuildinfo +1 -1
  139. package/src/Redux/ActionsReducers/QueryRedux.d.ts +0 -10
  140. package/src/Redux/ActionsReducers/QueryRedux.js +0 -20
  141. package/src/Utilities/Helpers/FormatContentHelper.d.ts +0 -22
  142. package/src/Utilities/Helpers/FormatContentHelper.js +0 -34
  143. package/src/Utilities/Services/EntitlementService.d.ts +0 -14
  144. package/src/Utilities/Services/EntitlementService.js +0 -63
  145. package/src/Utilities/Services/Interface/IEntitlementService.d.ts +0 -10
  146. package/src/Utilities/Services/Interface/IEntitlementService.js +0 -1
  147. package/src/Utilities/Services/Interface/IReportService.d.ts +0 -27
  148. package/src/Utilities/Services/Interface/IReportService.js +0 -1
  149. package/src/Utilities/Services/ReportService.d.ts +0 -41
  150. package/src/Utilities/Services/ReportService.js +0 -603
  151. package/src/Utilities/isAdaptableObject.d.ts +0 -2
  152. package/src/Utilities/isAdaptableObject.js +0 -4
  153. package/src/Utilities/reorder.d.ts +0 -1
  154. package/src/Utilities/reorder.js +0 -13
  155. package/src/Utilities/sortWithOrder.d.ts +0 -11
  156. package/src/Utilities/sortWithOrder.js +0 -50
@@ -851,12 +851,6 @@ export declare const ADAPTABLE_METAMODEL: {
851
851
  name: string;
852
852
  kind: string;
853
853
  desc: string;
854
- props: {
855
- name: string;
856
- kind: string;
857
- desc: string;
858
- ref: string;
859
- }[];
860
854
  };
861
855
  AdaptablePersistStateFunction: {
862
856
  name: string;
@@ -1367,6 +1361,7 @@ export declare const ADAPTABLE_METAMODEL: {
1367
1361
  isOpt: boolean;
1368
1362
  gridInfo?: undefined;
1369
1363
  defVal?: undefined;
1364
+ ref?: undefined;
1370
1365
  noCode?: undefined;
1371
1366
  uiLabel?: undefined;
1372
1367
  } | {
@@ -1376,6 +1371,17 @@ export declare const ADAPTABLE_METAMODEL: {
1376
1371
  isOpt: boolean;
1377
1372
  gridInfo: string;
1378
1373
  defVal: string;
1374
+ ref?: undefined;
1375
+ noCode?: undefined;
1376
+ uiLabel?: undefined;
1377
+ } | {
1378
+ name: string;
1379
+ kind: string;
1380
+ desc: string;
1381
+ isOpt: boolean;
1382
+ gridInfo: string;
1383
+ defVal: string;
1384
+ ref: string;
1379
1385
  noCode?: undefined;
1380
1386
  uiLabel?: undefined;
1381
1387
  } | {
@@ -1386,6 +1392,7 @@ export declare const ADAPTABLE_METAMODEL: {
1386
1392
  gridInfo: string;
1387
1393
  noCode: string;
1388
1394
  defVal: string;
1395
+ ref?: undefined;
1389
1396
  uiLabel?: undefined;
1390
1397
  } | {
1391
1398
  name: string;
@@ -1396,6 +1403,7 @@ export declare const ADAPTABLE_METAMODEL: {
1396
1403
  gridInfo: string;
1397
1404
  noCode: string;
1398
1405
  defVal: string;
1406
+ ref?: undefined;
1399
1407
  } | {
1400
1408
  name: string;
1401
1409
  kind: string;
@@ -1403,6 +1411,7 @@ export declare const ADAPTABLE_METAMODEL: {
1403
1411
  isOpt: boolean;
1404
1412
  defVal: string;
1405
1413
  gridInfo?: undefined;
1414
+ ref?: undefined;
1406
1415
  noCode?: undefined;
1407
1416
  uiLabel?: undefined;
1408
1417
  })[];
@@ -1909,7 +1918,7 @@ export declare const ADAPTABLE_METAMODEL: {
1909
1918
  isOpt: boolean;
1910
1919
  noCode: string;
1911
1920
  defVal: string;
1912
- ref?: undefined;
1921
+ ref: string;
1913
1922
  })[];
1914
1923
  };
1915
1924
  ChartingState: {
@@ -2618,6 +2627,11 @@ export declare const ADAPTABLE_METAMODEL: {
2618
2627
  ref: string;
2619
2628
  }[];
2620
2629
  };
2630
+ DashboardButtonsLocation: {
2631
+ name: string;
2632
+ kind: string;
2633
+ desc: string;
2634
+ };
2621
2635
  DashboardOptions: {
2622
2636
  name: string;
2623
2637
  kind: string;
@@ -2629,6 +2643,7 @@ export declare const ADAPTABLE_METAMODEL: {
2629
2643
  isOpt: boolean;
2630
2644
  noCode: string;
2631
2645
  defVal: string;
2646
+ ref: string;
2632
2647
  gridInfo?: undefined;
2633
2648
  } | {
2634
2649
  name: string;
@@ -2638,6 +2653,7 @@ export declare const ADAPTABLE_METAMODEL: {
2638
2653
  gridInfo: string;
2639
2654
  noCode: string;
2640
2655
  defVal: string;
2656
+ ref?: undefined;
2641
2657
  } | {
2642
2658
  name: string;
2643
2659
  kind: string;
@@ -2645,6 +2661,7 @@ export declare const ADAPTABLE_METAMODEL: {
2645
2661
  isOpt: boolean;
2646
2662
  noCode?: undefined;
2647
2663
  defVal?: undefined;
2664
+ ref?: undefined;
2648
2665
  gridInfo?: undefined;
2649
2666
  })[];
2650
2667
  };
@@ -2921,6 +2938,11 @@ export declare const ADAPTABLE_METAMODEL: {
2921
2938
  ref: string;
2922
2939
  })[];
2923
2940
  };
2941
+ DisplayRowGroups: {
2942
+ name: string;
2943
+ kind: string;
2944
+ desc: string;
2945
+ };
2924
2946
  EditActionRowFormContext: {
2925
2947
  name: string;
2926
2948
  kind: string;
@@ -3403,12 +3425,14 @@ export declare const ADAPTABLE_METAMODEL: {
3403
3425
  name: string;
3404
3426
  kind: string;
3405
3427
  desc: string;
3428
+ ref: string;
3406
3429
  isOpt?: undefined;
3407
3430
  } | {
3408
3431
  name: string;
3409
3432
  kind: string;
3410
3433
  desc: string;
3411
3434
  isOpt: boolean;
3435
+ ref?: undefined;
3412
3436
  })[];
3413
3437
  };
3414
3438
  FilterFormOptions: {
@@ -3461,6 +3485,11 @@ export declare const ADAPTABLE_METAMODEL: {
3461
3485
  desc: string;
3462
3486
  }[];
3463
3487
  };
3488
+ FilterTrigger: {
3489
+ name: string;
3490
+ kind: string;
3491
+ desc: string;
3492
+ };
3464
3493
  FlashingCellDefinition: {
3465
3494
  name: string;
3466
3495
  kind: string;
@@ -3519,6 +3548,11 @@ export declare const ADAPTABLE_METAMODEL: {
3519
3548
  isOpt: boolean;
3520
3549
  }[];
3521
3550
  };
3551
+ FlashTarget: {
3552
+ name: string;
3553
+ kind: string;
3554
+ desc: string;
3555
+ };
3522
3556
  FormatColumn: {
3523
3557
  name: string;
3524
3558
  kind: string;
@@ -4011,6 +4045,15 @@ export declare const ADAPTABLE_METAMODEL: {
4011
4045
  defVal: string;
4012
4046
  noCode?: undefined;
4013
4047
  ref?: undefined;
4048
+ } | {
4049
+ name: string;
4050
+ kind: string;
4051
+ desc: string;
4052
+ isOpt: boolean;
4053
+ gridInfo: string;
4054
+ defVal: string;
4055
+ ref: string;
4056
+ noCode?: undefined;
4014
4057
  } | {
4015
4058
  name: string;
4016
4059
  kind: string;
@@ -4394,6 +4437,11 @@ export declare const ADAPTABLE_METAMODEL: {
4394
4437
  isOpt: boolean;
4395
4438
  }[];
4396
4439
  };
4440
+ PopupType: {
4441
+ name: string;
4442
+ kind: string;
4443
+ desc: string;
4444
+ };
4397
4445
  PredefinedConfig: {
4398
4446
  name: string;
4399
4447
  kind: string;
@@ -4534,6 +4582,7 @@ export declare const ADAPTABLE_METAMODEL: {
4534
4582
  defVal: string;
4535
4583
  gridInfo?: undefined;
4536
4584
  noCode?: undefined;
4585
+ ref?: undefined;
4537
4586
  } | {
4538
4587
  name: string;
4539
4588
  kind: string;
@@ -4542,6 +4591,7 @@ export declare const ADAPTABLE_METAMODEL: {
4542
4591
  gridInfo: string;
4543
4592
  defVal: string;
4544
4593
  noCode?: undefined;
4594
+ ref?: undefined;
4545
4595
  } | {
4546
4596
  name: string;
4547
4597
  kind: string;
@@ -4550,6 +4600,7 @@ export declare const ADAPTABLE_METAMODEL: {
4550
4600
  gridInfo: string;
4551
4601
  noCode: string;
4552
4602
  defVal: string;
4603
+ ref: string;
4553
4604
  } | {
4554
4605
  name: string;
4555
4606
  kind: string;
@@ -4558,6 +4609,7 @@ export declare const ADAPTABLE_METAMODEL: {
4558
4609
  defVal?: undefined;
4559
4610
  gridInfo?: undefined;
4560
4611
  noCode?: undefined;
4612
+ ref?: undefined;
4561
4613
  } | {
4562
4614
  name: string;
4563
4615
  kind: string;
@@ -4566,6 +4618,7 @@ export declare const ADAPTABLE_METAMODEL: {
4566
4618
  noCode: string;
4567
4619
  defVal: string;
4568
4620
  gridInfo?: undefined;
4621
+ ref?: undefined;
4569
4622
  })[];
4570
4623
  };
4571
4624
  QuickSearchContext: {
@@ -4906,6 +4959,11 @@ export declare const ADAPTABLE_METAMODEL: {
4906
4959
  kind: string;
4907
4960
  desc: string;
4908
4961
  };
4962
+ SaveChartBehaviour: {
4963
+ name: string;
4964
+ kind: string;
4965
+ desc: string;
4966
+ };
4909
4967
  Schedule: {
4910
4968
  name: string;
4911
4969
  kind: string;
@@ -5020,6 +5078,7 @@ export declare const ADAPTABLE_METAMODEL: {
5020
5078
  gridInfo: string;
5021
5079
  noCode: string;
5022
5080
  defVal: string;
5081
+ ref?: undefined;
5023
5082
  } | {
5024
5083
  name: string;
5025
5084
  kind: string;
@@ -5028,12 +5087,23 @@ export declare const ADAPTABLE_METAMODEL: {
5028
5087
  gridInfo?: undefined;
5029
5088
  noCode?: undefined;
5030
5089
  defVal?: undefined;
5090
+ ref?: undefined;
5091
+ } | {
5092
+ name: string;
5093
+ kind: string;
5094
+ desc: string;
5095
+ isOpt: boolean;
5096
+ defVal: string;
5097
+ gridInfo?: undefined;
5098
+ noCode?: undefined;
5099
+ ref?: undefined;
5031
5100
  } | {
5032
5101
  name: string;
5033
5102
  kind: string;
5034
5103
  desc: string;
5035
5104
  isOpt: boolean;
5036
5105
  defVal: string;
5106
+ ref: string;
5037
5107
  gridInfo?: undefined;
5038
5108
  noCode?: undefined;
5039
5109
  } | {
@@ -5044,6 +5114,7 @@ export declare const ADAPTABLE_METAMODEL: {
5044
5114
  gridInfo: string;
5045
5115
  defVal: string;
5046
5116
  noCode?: undefined;
5117
+ ref?: undefined;
5047
5118
  })[];
5048
5119
  };
5049
5120
  SharedEntitiesContext: {
@@ -5405,7 +5476,12 @@ export declare const ADAPTABLE_METAMODEL: {
5405
5476
  isOpt: boolean;
5406
5477
  }[];
5407
5478
  };
5408
- TOAST_POSITIONS: {
5479
+ ToastPositions: {
5480
+ name: string;
5481
+ kind: string;
5482
+ desc: string;
5483
+ };
5484
+ ToastTransitions: {
5409
5485
  name: string;
5410
5486
  kind: string;
5411
5487
  desc: string;