@adaptabletools/adaptable 12.0.2 → 12.0.5

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 (69) hide show
  1. package/bundle.cjs.js +100 -100
  2. package/package.json +1 -1
  3. package/publishTimestamp.d.ts +1 -1
  4. package/publishTimestamp.js +1 -1
  5. package/src/AdaptableOptions/EditOptions.d.ts +6 -9
  6. package/src/AdaptableOptions/ExportOptions.d.ts +18 -3
  7. package/src/AdaptableOptions/Glue42PluginOptions.d.ts +1 -1
  8. package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +1 -3
  9. package/src/Api/Events/SearchChanged.d.ts +1 -1
  10. package/src/Api/FinanceApi.d.ts +8 -8
  11. package/src/Api/FormatColumnApi.d.ts +5 -0
  12. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +1 -0
  13. package/src/Api/Implementation/FormatColumnApiImpl.js +23 -1
  14. package/src/Api/Implementation/InternalApiImpl.js +1 -2
  15. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
  16. package/src/Api/Implementation/LayoutApiImpl.js +7 -1
  17. package/src/Api/LayoutApi.d.ts +5 -0
  18. package/src/Api/StatusBarApi.d.ts +3 -0
  19. package/src/PredefinedConfig/ChartingState.d.ts +1 -1
  20. package/src/PredefinedConfig/Common/CellSummary.d.ts +3 -0
  21. package/src/PredefinedConfig/Common/ColumnFilter.d.ts +9 -0
  22. package/src/PredefinedConfig/Common/FDC3Context.d.ts +12 -3
  23. package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +1 -2
  24. package/src/PredefinedConfig/Common/FilterActionOnDataChange.js +1 -2
  25. package/src/PredefinedConfig/ExportState.d.ts +6 -0
  26. package/src/PredefinedConfig/FormatColumnState.d.ts +4 -1
  27. package/src/PredefinedConfig/IPushPullState.d.ts +16 -5
  28. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  29. package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
  30. package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
  31. package/src/PredefinedConfig/TeamSharingState.d.ts +6 -0
  32. package/src/Redux/ActionsReducers/GridRedux.d.ts +30 -1
  33. package/src/Redux/ActionsReducers/GridRedux.js +105 -2
  34. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +10 -11
  35. package/src/Redux/ActionsReducers/LayoutRedux.js +10 -10
  36. package/src/Redux/Store/AdaptableStore.js +43 -8
  37. package/src/Strategy/FormatColumnModule.js +1 -1
  38. package/src/Strategy/LayoutModule.js +2 -1
  39. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  40. package/src/Utilities/Constants/GeneralConstants.js +3 -2
  41. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -0
  42. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -4
  43. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -0
  44. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +7 -7
  45. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +3 -0
  46. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +26 -4
  47. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +5 -5
  48. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +3 -0
  49. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +11 -11
  50. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +3 -0
  51. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +2 -2
  52. package/src/Utilities/Helpers/FormatHelper.js +3 -2
  53. package/src/Utilities/Helpers/Helper.js +1 -1
  54. package/src/Utilities/ObjectFactory.js +1 -1
  55. package/src/Utilities/Services/QueryLanguageService.js +4 -4
  56. package/src/View/Filter/FilterSummary.d.ts +1 -1
  57. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -2
  58. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +30 -27
  59. package/src/View/Layout/LayoutViewPanel.d.ts +2 -2
  60. package/src/View/Layout/LayoutViewPanel.js +5 -5
  61. package/src/View/Layout/SaveLayoutButton.d.ts +2 -0
  62. package/src/View/Layout/SaveLayoutButton.js +30 -0
  63. package/src/components/ExpressionEditor/BaseEditorInput.js +1 -1
  64. package/src/metamodel/adaptable.metamodel.d.ts +149 -6
  65. package/src/metamodel/adaptable.metamodel.js +1 -1
  66. package/src/parser/src/types.d.ts +2 -6
  67. package/src/types.d.ts +1 -1
  68. package/version.d.ts +1 -1
  69. 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,6 +1374,11 @@ 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;
@@ -1446,6 +1477,11 @@ export declare const ADAPTABLE_METAMODEL: {
1446
1477
  reference: string;
1447
1478
  })[];
1448
1479
  };
1480
+ ColumnFilterPredicate: {
1481
+ name: string;
1482
+ kind: string;
1483
+ description: string;
1484
+ };
1449
1485
  ColumnFriendlyNameContext: {
1450
1486
  name: string;
1451
1487
  kind: string;
@@ -1865,6 +1901,11 @@ export declare const ADAPTABLE_METAMODEL: {
1865
1901
  uiLabel: string;
1866
1902
  }[];
1867
1903
  };
1904
+ CustomFDC3Context: {
1905
+ name: string;
1906
+ kind: string;
1907
+ description: string;
1908
+ };
1868
1909
  CustomFDC3Intent: {
1869
1910
  name: string;
1870
1911
  kind: string;
@@ -2380,8 +2421,8 @@ export declare const ADAPTABLE_METAMODEL: {
2380
2421
  description: string;
2381
2422
  uiLabel: string;
2382
2423
  isOptional: boolean;
2383
- defaultValue: string;
2384
2424
  gridInfo?: undefined;
2425
+ defaultValue?: undefined;
2385
2426
  })[];
2386
2427
  };
2387
2428
  EntitlementOptions: {
@@ -2503,22 +2544,22 @@ export declare const ADAPTABLE_METAMODEL: {
2503
2544
  kind: string;
2504
2545
  description: string;
2505
2546
  uiLabel: string;
2506
- reference: string;
2507
- isOptional?: undefined;
2547
+ isOptional: boolean;
2548
+ reference?: undefined;
2508
2549
  } | {
2509
2550
  name: string;
2510
2551
  kind: string;
2511
2552
  description: string;
2512
2553
  uiLabel: string;
2513
- isOptional: boolean;
2514
- reference?: undefined;
2554
+ reference: string;
2555
+ isOptional?: undefined;
2515
2556
  } | {
2516
2557
  name: string;
2517
2558
  kind: string;
2518
2559
  description: string;
2519
2560
  uiLabel: string;
2520
- reference?: undefined;
2521
2561
  isOptional?: undefined;
2562
+ reference?: undefined;
2522
2563
  } | {
2523
2564
  name: string;
2524
2565
  kind: string;
@@ -2620,6 +2661,11 @@ export declare const ADAPTABLE_METAMODEL: {
2620
2661
  isOptional?: undefined;
2621
2662
  })[];
2622
2663
  };
2664
+ FDC3ContextType: {
2665
+ name: string;
2666
+ kind: string;
2667
+ description: string;
2668
+ };
2623
2669
  FDC3Intent: {
2624
2670
  name: string;
2625
2671
  kind: string;
@@ -3310,11 +3356,30 @@ export declare const ADAPTABLE_METAMODEL: {
3310
3356
  name: string;
3311
3357
  kind: string;
3312
3358
  description: string;
3359
+ properties: {
3360
+ name: string;
3361
+ kind: string;
3362
+ description: string;
3363
+ uiLabel: string;
3364
+ }[];
3313
3365
  };
3314
3366
  IPushPullSchedule: {
3315
3367
  name: string;
3316
3368
  kind: string;
3317
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
+ })[];
3318
3383
  };
3319
3384
  IPushPullState: {
3320
3385
  name: string;
@@ -3578,6 +3643,11 @@ export declare const ADAPTABLE_METAMODEL: {
3578
3643
  isOptional: boolean;
3579
3644
  }[];
3580
3645
  };
3646
+ ObservableFunctionName: {
3647
+ name: string;
3648
+ kind: string;
3649
+ description: string;
3650
+ };
3581
3651
  OpenFinApi: {
3582
3652
  name: string;
3583
3653
  kind: string;
@@ -4005,6 +4075,18 @@ export declare const ADAPTABLE_METAMODEL: {
4005
4075
  reference: string;
4006
4076
  })[];
4007
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
+ };
4008
4090
  ReportData: {
4009
4091
  name: string;
4010
4092
  kind: string;
@@ -4048,6 +4130,11 @@ export declare const ADAPTABLE_METAMODEL: {
4048
4130
  isOptional: boolean;
4049
4131
  }[];
4050
4132
  };
4133
+ ScalarFunctionName: {
4134
+ name: string;
4135
+ kind: string;
4136
+ description: string;
4137
+ };
4051
4138
  Schedule: {
4052
4139
  name: string;
4053
4140
  kind: string;
@@ -4212,6 +4299,11 @@ export declare const ADAPTABLE_METAMODEL: {
4212
4299
  reference: string;
4213
4300
  })[];
4214
4301
  };
4302
+ SharedEntityConfig: {
4303
+ name: string;
4304
+ kind: string;
4305
+ description: string;
4306
+ };
4215
4307
  Shortcut: {
4216
4308
  name: string;
4217
4309
  kind: string;
@@ -4267,6 +4359,11 @@ export declare const ADAPTABLE_METAMODEL: {
4267
4359
  kind: string;
4268
4360
  description: string;
4269
4361
  };
4362
+ SmartEditOperation: {
4363
+ name: string;
4364
+ kind: string;
4365
+ description: string;
4366
+ };
4270
4367
  SmartEditOperationContext: {
4271
4368
  name: string;
4272
4369
  kind: string;
@@ -4343,6 +4440,17 @@ export declare const ADAPTABLE_METAMODEL: {
4343
4440
  defaultValue?: undefined;
4344
4441
  })[];
4345
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
+ };
4346
4454
  StatusBarState: {
4347
4455
  name: string;
4348
4456
  kind: string;
@@ -4380,6 +4488,36 @@ export declare const ADAPTABLE_METAMODEL: {
4380
4488
  isOptional: boolean;
4381
4489
  }[];
4382
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
+ };
4383
4521
  SystemStatusApi: {
4384
4522
  name: string;
4385
4523
  kind: string;
@@ -4453,6 +4591,11 @@ export declare const ADAPTABLE_METAMODEL: {
4453
4591
  reference: string;
4454
4592
  }[];
4455
4593
  };
4594
+ TeamSharingImportInfo: {
4595
+ name: string;
4596
+ kind: string;
4597
+ description: string;
4598
+ };
4456
4599
  TeamSharingOptions: {
4457
4600
  name: string;
4458
4601
  kind: string;