@adaptabletools/adaptable 12.0.1 → 12.0.4

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 (91) hide show
  1. package/bundle.cjs.js +96 -96
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -2
  6. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -1
  7. package/src/AdaptableOptions/EditOptions.d.ts +6 -9
  8. package/src/AdaptableOptions/ExportOptions.d.ts +15 -0
  9. package/src/AdaptableOptions/Glue42PluginOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +1 -3
  11. package/src/AdaptableOptions/StateOptions.d.ts +9 -23
  12. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +34 -1
  13. package/src/Api/ChartingApi.d.ts +19 -2
  14. package/src/Api/Events/SearchChanged.d.ts +1 -1
  15. package/src/Api/FinanceApi.d.ts +8 -8
  16. package/src/Api/FormatColumnApi.d.ts +11 -6
  17. package/src/Api/GridApi.d.ts +1 -1
  18. package/src/Api/Implementation/ChartingApiImpl.d.ts +6 -0
  19. package/src/Api/Implementation/ChartingApiImpl.js +17 -0
  20. package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -0
  21. package/src/Api/Implementation/ConfigApiImpl.js +11 -0
  22. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +4 -3
  23. package/src/Api/Implementation/FormatColumnApiImpl.js +36 -12
  24. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  25. package/src/Api/Implementation/GridApiImpl.js +2 -2
  26. package/src/Api/Implementation/InternalApiImpl.js +1 -2
  27. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
  28. package/src/Api/Implementation/LayoutApiImpl.js +7 -1
  29. package/src/Api/LayoutApi.d.ts +5 -0
  30. package/src/Api/StatusBarApi.d.ts +3 -0
  31. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  32. package/src/PredefinedConfig/CalculatedColumnState.d.ts +0 -5
  33. package/src/PredefinedConfig/ChartingState.d.ts +20 -0
  34. package/src/PredefinedConfig/ChartingState.js +2 -0
  35. package/src/PredefinedConfig/Common/CellSummary.d.ts +3 -0
  36. package/src/PredefinedConfig/Common/ColumnFilter.d.ts +9 -0
  37. package/src/PredefinedConfig/Common/FDC3Context.d.ts +12 -3
  38. package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +1 -2
  39. package/src/PredefinedConfig/Common/FilterActionOnDataChange.js +1 -2
  40. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  41. package/src/PredefinedConfig/ExportState.d.ts +6 -0
  42. package/src/PredefinedConfig/FormatColumnState.d.ts +4 -1
  43. package/src/PredefinedConfig/IPushPullState.d.ts +16 -5
  44. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  45. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  46. package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
  47. package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
  48. package/src/PredefinedConfig/TeamSharingState.d.ts +6 -0
  49. package/src/Redux/ActionsReducers/ChartingRedux.d.ts +23 -0
  50. package/src/Redux/ActionsReducers/ChartingRedux.js +38 -0
  51. package/src/Redux/ActionsReducers/GridRedux.d.ts +30 -1
  52. package/src/Redux/ActionsReducers/GridRedux.js +105 -2
  53. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +10 -11
  54. package/src/Redux/ActionsReducers/LayoutRedux.js +10 -10
  55. package/src/Redux/Store/AdaptableStore.js +45 -8
  56. package/src/Strategy/AlertModule.js +3 -3
  57. package/src/Strategy/ChartingModule.js +1 -1
  58. package/src/Strategy/FlashingCellModule.js +3 -3
  59. package/src/Strategy/FormatColumnModule.js +1 -1
  60. package/src/Strategy/LayoutModule.js +2 -1
  61. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  62. package/src/Utilities/Constants/GeneralConstants.js +3 -2
  63. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -0
  64. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -0
  65. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +3 -0
  66. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +23 -1
  67. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +3 -0
  68. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +3 -0
  69. package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
  70. package/src/Utilities/Helpers/FormatHelper.js +9 -4
  71. package/src/Utilities/Helpers/Helper.js +1 -1
  72. package/src/Utilities/ObjectFactory.d.ts +5 -1
  73. package/src/Utilities/ObjectFactory.js +12 -2
  74. package/src/Utilities/Services/Interface/IReportService.d.ts +1 -1
  75. package/src/Utilities/Services/ReportService.d.ts +1 -1
  76. package/src/Utilities/Services/ReportService.js +5 -5
  77. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +2 -9
  78. package/src/View/Filter/FilterSummary.d.ts +1 -1
  79. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -2
  80. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +38 -31
  81. package/src/View/Layout/LayoutViewPanel.d.ts +2 -2
  82. package/src/View/Layout/LayoutViewPanel.js +5 -5
  83. package/src/View/Layout/SaveLayoutButton.d.ts +2 -0
  84. package/src/View/Layout/SaveLayoutButton.js +30 -0
  85. package/src/agGrid/Adaptable.d.ts +4 -2
  86. package/src/agGrid/Adaptable.js +36 -20
  87. package/src/metamodel/adaptable.metamodel.d.ts +219 -2
  88. package/src/metamodel/adaptable.metamodel.js +1 -1
  89. package/src/types.d.ts +4 -2
  90. package/version.d.ts +1 -1
  91. package/version.js +1 -1
@@ -851,6 +851,16 @@ export declare const ADAPTABLE_METAMODEL: {
851
851
  defaultValue: string;
852
852
  })[];
853
853
  };
854
+ AggregatedScalarFunctionName: {
855
+ name: string;
856
+ kind: string;
857
+ description: string;
858
+ };
859
+ AggregationFunctionName: {
860
+ name: string;
861
+ kind: string;
862
+ description: string;
863
+ };
854
864
  AlertApi: {
855
865
  name: string;
856
866
  kind: string;
@@ -1112,6 +1122,11 @@ export declare const ADAPTABLE_METAMODEL: {
1112
1122
  reference: string;
1113
1123
  }[];
1114
1124
  };
1125
+ BooleanFunctionName: {
1126
+ name: string;
1127
+ kind: string;
1128
+ description: string;
1129
+ };
1115
1130
  BulkUpdateApi: {
1116
1131
  name: string;
1117
1132
  kind: string;
@@ -1320,6 +1335,17 @@ export declare const ADAPTABLE_METAMODEL: {
1320
1335
  uiLabel: string;
1321
1336
  }[];
1322
1337
  };
1338
+ CellSummaryOperation: {
1339
+ name: string;
1340
+ kind: string;
1341
+ description: string;
1342
+ properties: {
1343
+ name: string;
1344
+ kind: string;
1345
+ description: string;
1346
+ uiLabel: string;
1347
+ }[];
1348
+ };
1323
1349
  CellSummaryOperationContext: {
1324
1350
  name: string;
1325
1351
  kind: string;
@@ -1348,11 +1374,51 @@ export declare const ADAPTABLE_METAMODEL: {
1348
1374
  kind: string;
1349
1375
  description: string;
1350
1376
  };
1377
+ CellTextOptions: {
1378
+ name: string;
1379
+ kind: string;
1380
+ description: string;
1381
+ };
1351
1382
  CellValuesList: {
1352
1383
  name: string;
1353
1384
  kind: string;
1354
1385
  description: string;
1355
1386
  };
1387
+ ChartDefinition: {
1388
+ name: string;
1389
+ kind: string;
1390
+ description: string;
1391
+ properties: {
1392
+ name: string;
1393
+ kind: string;
1394
+ description: string;
1395
+ uiLabel: string;
1396
+ reference: string;
1397
+ }[];
1398
+ };
1399
+ ChartingApi: {
1400
+ name: string;
1401
+ kind: string;
1402
+ description: string;
1403
+ properties: {
1404
+ name: string;
1405
+ kind: string;
1406
+ description: string;
1407
+ uiLabel: string;
1408
+ }[];
1409
+ };
1410
+ ChartingState: {
1411
+ name: string;
1412
+ kind: string;
1413
+ description: string;
1414
+ properties: {
1415
+ name: string;
1416
+ kind: string;
1417
+ description: string;
1418
+ uiLabel: string;
1419
+ isOptional: boolean;
1420
+ }[];
1421
+ };
1356
1422
  CheckboxColumnClickedInfo: {
1357
1423
  name: string;
1358
1424
  kind: string;
@@ -1411,6 +1477,11 @@ export declare const ADAPTABLE_METAMODEL: {
1411
1477
  reference: string;
1412
1478
  })[];
1413
1479
  };
1480
+ ColumnFilterPredicate: {
1481
+ name: string;
1482
+ kind: string;
1483
+ description: string;
1484
+ };
1414
1485
  ColumnFriendlyNameContext: {
1415
1486
  name: string;
1416
1487
  kind: string;
@@ -1796,6 +1867,29 @@ export declare const ADAPTABLE_METAMODEL: {
1796
1867
  isOptional?: undefined;
1797
1868
  })[];
1798
1869
  };
1870
+ CustomDisplayFormatter: {
1871
+ name: string;
1872
+ kind: string;
1873
+ description: string;
1874
+ };
1875
+ CustomDisplayFormatterContext: {
1876
+ name: string;
1877
+ kind: string;
1878
+ description: string;
1879
+ properties: ({
1880
+ name: string;
1881
+ kind: string;
1882
+ description: string;
1883
+ uiLabel: string;
1884
+ reference: string;
1885
+ } | {
1886
+ name: string;
1887
+ kind: string;
1888
+ description: string;
1889
+ uiLabel: string;
1890
+ reference?: undefined;
1891
+ })[];
1892
+ };
1799
1893
  CustomFDC3Column: {
1800
1894
  name: string;
1801
1895
  kind: string;
@@ -1807,6 +1901,11 @@ export declare const ADAPTABLE_METAMODEL: {
1807
1901
  uiLabel: string;
1808
1902
  }[];
1809
1903
  };
1904
+ CustomFDC3Context: {
1905
+ name: string;
1906
+ kind: string;
1907
+ description: string;
1908
+ };
1810
1909
  CustomFDC3Intent: {
1811
1910
  name: string;
1812
1911
  kind: string;
@@ -2322,8 +2421,8 @@ export declare const ADAPTABLE_METAMODEL: {
2322
2421
  description: string;
2323
2422
  uiLabel: string;
2324
2423
  isOptional: boolean;
2325
- defaultValue: string;
2326
2424
  gridInfo?: undefined;
2425
+ defaultValue?: undefined;
2327
2426
  })[];
2328
2427
  };
2329
2428
  EntitlementOptions: {
@@ -2562,6 +2661,11 @@ export declare const ADAPTABLE_METAMODEL: {
2562
2661
  isOptional?: undefined;
2563
2662
  })[];
2564
2663
  };
2664
+ FDC3ContextType: {
2665
+ name: string;
2666
+ kind: string;
2667
+ description: string;
2668
+ };
2565
2669
  FDC3Intent: {
2566
2670
  name: string;
2567
2671
  kind: string;
@@ -3252,11 +3356,30 @@ export declare const ADAPTABLE_METAMODEL: {
3252
3356
  name: string;
3253
3357
  kind: string;
3254
3358
  description: string;
3359
+ properties: {
3360
+ name: string;
3361
+ kind: string;
3362
+ description: string;
3363
+ uiLabel: string;
3364
+ }[];
3255
3365
  };
3256
3366
  IPushPullSchedule: {
3257
3367
  name: string;
3258
3368
  kind: string;
3259
3369
  description: string;
3370
+ properties: ({
3371
+ name: string;
3372
+ kind: string;
3373
+ description: string;
3374
+ uiLabel: string;
3375
+ reference: string;
3376
+ } | {
3377
+ name: string;
3378
+ kind: string;
3379
+ description: string;
3380
+ uiLabel: string;
3381
+ reference?: undefined;
3382
+ })[];
3260
3383
  };
3261
3384
  IPushPullState: {
3262
3385
  name: string;
@@ -3520,6 +3643,11 @@ export declare const ADAPTABLE_METAMODEL: {
3520
3643
  isOptional: boolean;
3521
3644
  }[];
3522
3645
  };
3646
+ ObservableFunctionName: {
3647
+ name: string;
3648
+ kind: string;
3649
+ description: string;
3650
+ };
3523
3651
  OpenFinApi: {
3524
3652
  name: string;
3525
3653
  kind: string;
@@ -3947,6 +4075,18 @@ export declare const ADAPTABLE_METAMODEL: {
3947
4075
  reference: string;
3948
4076
  })[];
3949
4077
  };
4078
+ ReportContext: {
4079
+ name: string;
4080
+ kind: string;
4081
+ description: string;
4082
+ properties: {
4083
+ name: string;
4084
+ kind: string;
4085
+ description: string;
4086
+ uiLabel: string;
4087
+ reference: string;
4088
+ }[];
4089
+ };
3950
4090
  ReportData: {
3951
4091
  name: string;
3952
4092
  kind: string;
@@ -3990,6 +4130,11 @@ export declare const ADAPTABLE_METAMODEL: {
3990
4130
  isOptional: boolean;
3991
4131
  }[];
3992
4132
  };
4133
+ ScalarFunctionName: {
4134
+ name: string;
4135
+ kind: string;
4136
+ description: string;
4137
+ };
3993
4138
  Schedule: {
3994
4139
  name: string;
3995
4140
  kind: string;
@@ -4154,6 +4299,11 @@ export declare const ADAPTABLE_METAMODEL: {
4154
4299
  reference: string;
4155
4300
  })[];
4156
4301
  };
4302
+ SharedEntityConfig: {
4303
+ name: string;
4304
+ kind: string;
4305
+ description: string;
4306
+ };
4157
4307
  Shortcut: {
4158
4308
  name: string;
4159
4309
  kind: string;
@@ -4209,6 +4359,11 @@ export declare const ADAPTABLE_METAMODEL: {
4209
4359
  kind: string;
4210
4360
  description: string;
4211
4361
  };
4362
+ SmartEditOperation: {
4363
+ name: string;
4364
+ kind: string;
4365
+ description: string;
4366
+ };
4212
4367
  SmartEditOperationContext: {
4213
4368
  name: string;
4214
4369
  kind: string;
@@ -4257,7 +4412,7 @@ export declare const ADAPTABLE_METAMODEL: {
4257
4412
  description: string;
4258
4413
  uiLabel: string;
4259
4414
  isOptional: boolean;
4260
- defaultValue: string;
4415
+ defaultValue?: undefined;
4261
4416
  reference?: undefined;
4262
4417
  } | {
4263
4418
  name: string;
@@ -4267,8 +4422,35 @@ export declare const ADAPTABLE_METAMODEL: {
4267
4422
  isOptional: boolean;
4268
4423
  defaultValue: string;
4269
4424
  reference: string;
4425
+ } | {
4426
+ name: string;
4427
+ kind: string;
4428
+ description: string;
4429
+ uiLabel: string;
4430
+ isOptional: boolean;
4431
+ defaultValue: string;
4432
+ reference?: undefined;
4433
+ } | {
4434
+ name: string;
4435
+ kind: string;
4436
+ description: string;
4437
+ uiLabel: string;
4438
+ isOptional: boolean;
4439
+ reference: string;
4440
+ defaultValue?: undefined;
4270
4441
  })[];
4271
4442
  };
4443
+ StatusBarApi: {
4444
+ name: string;
4445
+ kind: string;
4446
+ description: string;
4447
+ properties: {
4448
+ name: string;
4449
+ kind: string;
4450
+ description: string;
4451
+ uiLabel: string;
4452
+ }[];
4453
+ };
4272
4454
  StatusBarState: {
4273
4455
  name: string;
4274
4456
  kind: string;
@@ -4306,6 +4488,36 @@ export declare const ADAPTABLE_METAMODEL: {
4306
4488
  isOptional: boolean;
4307
4489
  }[];
4308
4490
  };
4491
+ SystemExportDestination: {
4492
+ name: string;
4493
+ kind: string;
4494
+ description: string;
4495
+ };
4496
+ SystemExportDestinations: {
4497
+ name: string;
4498
+ kind: string;
4499
+ description: string;
4500
+ };
4501
+ SystemFilterPredicateId: {
4502
+ name: string;
4503
+ kind: string;
4504
+ description: string;
4505
+ };
4506
+ SystemFilterPredicateIds: {
4507
+ name: string;
4508
+ kind: string;
4509
+ description: string;
4510
+ };
4511
+ SystemReportName: {
4512
+ name: string;
4513
+ kind: string;
4514
+ description: string;
4515
+ };
4516
+ SystemReportNames: {
4517
+ name: string;
4518
+ kind: string;
4519
+ description: string;
4520
+ };
4309
4521
  SystemStatusApi: {
4310
4522
  name: string;
4311
4523
  kind: string;
@@ -4379,6 +4591,11 @@ export declare const ADAPTABLE_METAMODEL: {
4379
4591
  reference: string;
4380
4592
  }[];
4381
4593
  };
4594
+ TeamSharingImportInfo: {
4595
+ name: string;
4596
+ kind: string;
4597
+ description: string;
4598
+ };
4382
4599
  TeamSharingOptions: {
4383
4600
  name: string;
4384
4601
  kind: string;