@adaptabletools/adaptable 16.0.1-canary.0 → 16.0.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 (62) hide show
  1. package/bundle.cjs.js +162 -164
  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 +2 -1
  6. package/src/AdaptableOptions/AdaptableOptions.d.ts +6 -1
  7. package/src/AdaptableOptions/AdaptablePlugin.js +2 -0
  8. package/src/AdaptableOptions/CalendarOptions.d.ts +3 -3
  9. package/src/AdaptableOptions/CommentsOptions.d.ts +23 -0
  10. package/src/AdaptableOptions/Fdc3Options.d.ts +69 -53
  11. package/src/AdaptableOptions/FilterOptions.d.ts +7 -2
  12. package/src/AdaptableOptions/FinancePluginOptions.d.ts +2 -306
  13. package/src/AdaptableOptions/OpenFinPluginOptions.d.ts +0 -6
  14. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +0 -17
  15. package/src/Api/CommentsApi.d.ts +6 -6
  16. package/src/Api/EventApi.d.ts +2 -14
  17. package/src/Api/GridApi.d.ts +13 -13
  18. package/src/Api/Implementation/ApiBase.d.ts +2 -0
  19. package/src/Api/Implementation/ApiBase.js +3 -0
  20. package/src/Api/Implementation/CalendarApiImpl.js +1 -2
  21. package/src/Api/Implementation/CommentsApiImpl.d.ts +3 -3
  22. package/src/Api/Implementation/CommentsApiImpl.js +3 -3
  23. package/src/Api/Implementation/GridApiImpl.js +2 -2
  24. package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -1
  25. package/src/Api/Implementation/OptionsApiImpl.js +3 -0
  26. package/src/Api/Implementation/PluginsApiImpl.d.ts +0 -2
  27. package/src/Api/Implementation/PluginsApiImpl.js +0 -6
  28. package/src/Api/Internal/AdaptableInternalApi.js +1 -1
  29. package/src/Api/Internal/Fdc3InternalApi.js +2 -2
  30. package/src/Api/OptionsApi.d.ts +5 -1
  31. package/src/Api/PluginsApi.d.ts +0 -5
  32. package/src/PredefinedConfig/CommentsState.d.ts +33 -3
  33. package/src/PredefinedConfig/Common/Entitlement.d.ts +1 -1
  34. package/src/PredefinedConfig/Common/Fdc3Context.d.ts +6 -0
  35. package/src/PredefinedConfig/SystemState.d.ts +2 -2
  36. package/src/Redux/ActionsReducers/SystemRedux.d.ts +4 -4
  37. package/src/Strategy/CommentsModule.d.ts +2 -2
  38. package/src/Strategy/CommentsModule.js +11 -11
  39. package/src/Strategy/Fdc3Module.d.ts +0 -1
  40. package/src/Strategy/Fdc3Module.js +0 -3
  41. package/src/Utilities/Constants/GeneralConstants.d.ts +0 -1
  42. package/src/Utilities/Constants/GeneralConstants.js +2 -3
  43. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -1
  44. package/src/Utilities/Services/ModuleService.js +1 -1
  45. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +10 -7
  46. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.d.ts +1 -7
  47. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +621 -268
  48. package/src/View/Comments/CommentPopup.js +5 -5
  49. package/src/agGrid/Adaptable.d.ts +3 -2
  50. package/src/agGrid/Adaptable.js +8 -2
  51. package/src/agGrid/attachAddaptableColumnTypes.js +1 -0
  52. package/src/metamodel/adaptable.metamodel.d.ts +55 -394
  53. package/src/metamodel/adaptable.metamodel.js +1 -1
  54. package/src/types.d.ts +4 -6
  55. package/version.d.ts +1 -1
  56. package/version.js +1 -1
  57. package/src/Api/FinanceApi.d.ts +0 -125
  58. package/src/PredefinedConfig/Common/FDC3Context_DEPR.d.ts +0 -246
  59. package/src/PredefinedConfig/Common/FDC3Context_DEPR.js +0 -2
  60. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/index.d.ts +0 -1
  61. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/index.js +0 -5
  62. /package/src/{Api/FinanceApi.js → AdaptableOptions/CommentsOptions.js} +0 -0
@@ -38,6 +38,18 @@ export declare const ADAPTABLE_METAMODEL: {
38
38
  desc: string;
39
39
  }[];
40
40
  };
41
+ ActionColumnDefaultConfiguration: {
42
+ name: string;
43
+ kind: string;
44
+ desc: string;
45
+ props: {
46
+ name: string;
47
+ kind: string;
48
+ desc: string;
49
+ isOpt: boolean;
50
+ defVal: string;
51
+ }[];
52
+ };
41
53
  ActionColumnOptions: {
42
54
  name: string;
43
55
  kind: string;
@@ -316,6 +328,16 @@ export declare const ADAPTABLE_METAMODEL: {
316
328
  name: string;
317
329
  kind: string;
318
330
  desc: string;
331
+ props: {
332
+ name: string;
333
+ kind: string;
334
+ desc: string;
335
+ }[];
336
+ };
337
+ AdaptableComments: {
338
+ name: string;
339
+ kind: string;
340
+ desc: string;
319
341
  };
320
342
  AdaptableComparerFunction: {
321
343
  name: string;
@@ -373,30 +395,6 @@ export declare const ADAPTABLE_METAMODEL: {
373
395
  desc: string;
374
396
  }[];
375
397
  };
376
- AdaptableFDC3EventInfo: {
377
- name: string;
378
- kind: string;
379
- desc: string;
380
- props: ({
381
- name: string;
382
- kind: string;
383
- desc: string;
384
- ref: string;
385
- isOpt?: undefined;
386
- } | {
387
- name: string;
388
- kind: string;
389
- desc: string;
390
- ref?: undefined;
391
- isOpt?: undefined;
392
- } | {
393
- name: string;
394
- kind: string;
395
- desc: string;
396
- isOpt: boolean;
397
- ref?: undefined;
398
- })[];
399
- };
400
398
  AdaptableFlashingCell: {
401
399
  name: string;
402
400
  kind: string;
@@ -635,18 +633,18 @@ export declare const ADAPTABLE_METAMODEL: {
635
633
  kind: string;
636
634
  desc: string;
637
635
  isOpt: boolean;
638
- noCode: string;
639
636
  ref: string;
640
637
  gridInfo?: undefined;
638
+ noCode?: undefined;
641
639
  defVal?: undefined;
642
640
  } | {
643
641
  name: string;
644
642
  kind: string;
645
643
  desc: string;
646
644
  isOpt: boolean;
645
+ noCode: string;
647
646
  ref: string;
648
647
  gridInfo?: undefined;
649
- noCode?: undefined;
650
648
  defVal?: undefined;
651
649
  } | {
652
650
  name: string;
@@ -1285,6 +1283,11 @@ export declare const ADAPTABLE_METAMODEL: {
1285
1283
  ref: string;
1286
1284
  }[];
1287
1285
  };
1286
+ BroadcastConfig: {
1287
+ name: string;
1288
+ kind: string;
1289
+ desc: string;
1290
+ };
1288
1291
  BulkUpdatePermittedValues: {
1289
1292
  name: string;
1290
1293
  kind: string;
@@ -1703,34 +1706,12 @@ export declare const ADAPTABLE_METAMODEL: {
1703
1706
  ref: string;
1704
1707
  })[];
1705
1708
  };
1706
- CommentsState: {
1707
- name: string;
1708
- kind: string;
1709
- desc: string;
1710
- props: {
1711
- name: string;
1712
- kind: string;
1713
- desc: string;
1714
- isOpt: boolean;
1715
- ref: string;
1716
- }[];
1717
- };
1718
- CommmentableCellContext: {
1709
+ CommentGridCell: {
1719
1710
  name: string;
1720
1711
  kind: string;
1721
1712
  desc: string;
1722
- props: {
1723
- name: string;
1724
- kind: string;
1725
- desc: string;
1726
- }[];
1727
1713
  };
1728
- CompatibleContext: {
1729
- name: string;
1730
- kind: string;
1731
- desc: string;
1732
- };
1733
- ConfigState: {
1714
+ CommentOptions: {
1734
1715
  name: string;
1735
1716
  kind: string;
1736
1717
  desc: string;
@@ -1741,65 +1722,43 @@ export declare const ADAPTABLE_METAMODEL: {
1741
1722
  isOpt: boolean;
1742
1723
  }[];
1743
1724
  };
1744
- ContactColumn: {
1725
+ CommentsState: {
1745
1726
  name: string;
1746
1727
  kind: string;
1747
1728
  desc: string;
1748
- props: ({
1749
- name: string;
1750
- kind: string;
1751
- desc: string;
1752
- isOpt: boolean;
1753
- ref?: undefined;
1754
- } | {
1729
+ props: {
1755
1730
  name: string;
1756
1731
  kind: string;
1757
1732
  desc: string;
1758
1733
  isOpt: boolean;
1759
1734
  ref: string;
1760
- })[];
1735
+ }[];
1761
1736
  };
1762
- ContactContextDepr: {
1737
+ CommmentableCellContext: {
1763
1738
  name: string;
1764
1739
  kind: string;
1765
1740
  desc: string;
1766
- props: ({
1767
- name: string;
1768
- kind: string;
1769
- desc: string;
1770
- isOpt: boolean;
1771
- } | {
1741
+ props: {
1772
1742
  name: string;
1773
1743
  kind: string;
1774
1744
  desc: string;
1775
- isOpt?: undefined;
1776
- })[];
1777
- };
1778
- ContactIntent: {
1779
- name: string;
1780
- kind: string;
1781
- desc: string;
1745
+ }[];
1782
1746
  };
1783
- ContactIntents: {
1747
+ CompatibleContext: {
1784
1748
  name: string;
1785
1749
  kind: string;
1786
1750
  desc: string;
1787
1751
  };
1788
- ContactListContextDepr: {
1752
+ ConfigState: {
1789
1753
  name: string;
1790
1754
  kind: string;
1791
1755
  desc: string;
1792
- props: ({
1756
+ props: {
1793
1757
  name: string;
1794
1758
  kind: string;
1795
1759
  desc: string;
1796
1760
  isOpt: boolean;
1797
- } | {
1798
- name: string;
1799
- kind: string;
1800
- desc: string;
1801
- isOpt?: undefined;
1802
- })[];
1761
+ }[];
1803
1762
  };
1804
1763
  ContainerOptions: {
1805
1764
  name: string;
@@ -1814,11 +1773,6 @@ export declare const ADAPTABLE_METAMODEL: {
1814
1773
  defVal: string;
1815
1774
  }[];
1816
1775
  };
1817
- ContextDataDepr: {
1818
- name: string;
1819
- kind: string;
1820
- desc: string;
1821
- };
1822
1776
  ContextMenuContext: {
1823
1777
  name: string;
1824
1778
  kind: string;
@@ -1835,50 +1789,6 @@ export declare const ADAPTABLE_METAMODEL: {
1835
1789
  ref: string;
1836
1790
  })[];
1837
1791
  };
1838
- CountryColumn: {
1839
- name: string;
1840
- kind: string;
1841
- desc: string;
1842
- props: ({
1843
- name: string;
1844
- kind: string;
1845
- desc: string;
1846
- isOpt: boolean;
1847
- ref: string;
1848
- } | {
1849
- name: string;
1850
- kind: string;
1851
- desc: string;
1852
- isOpt: boolean;
1853
- ref?: undefined;
1854
- })[];
1855
- };
1856
- CountryContextDepr: {
1857
- name: string;
1858
- kind: string;
1859
- desc: string;
1860
- props: ({
1861
- name: string;
1862
- kind: string;
1863
- desc: string;
1864
- isOpt: boolean;
1865
- } | {
1866
- name: string;
1867
- kind: string;
1868
- desc: string;
1869
- isOpt?: undefined;
1870
- })[];
1871
- };
1872
- CountryIntent: {
1873
- name: string;
1874
- kind: string;
1875
- desc: string;
1876
- };
1877
- CountryIntents: {
1878
- name: string;
1879
- kind: string;
1880
- desc: string;
1881
- };
1882
1792
  CreateActionRowFormContext: {
1883
1793
  name: string;
1884
1794
  kind: string;
@@ -1951,26 +1861,6 @@ export declare const ADAPTABLE_METAMODEL: {
1951
1861
  ref?: undefined;
1952
1862
  })[];
1953
1863
  };
1954
- CustomFDC3Column: {
1955
- name: string;
1956
- kind: string;
1957
- desc: string;
1958
- props: {
1959
- name: string;
1960
- kind: string;
1961
- desc: string;
1962
- }[];
1963
- };
1964
- CustomFDC3Context: {
1965
- name: string;
1966
- kind: string;
1967
- desc: string;
1968
- };
1969
- CustomFDC3Intent_Depr: {
1970
- name: string;
1971
- kind: string;
1972
- desc: string;
1973
- };
1974
1864
  CustomIcon: {
1975
1865
  name: string;
1976
1866
  kind: string;
@@ -2729,31 +2619,7 @@ export declare const ADAPTABLE_METAMODEL: {
2729
2619
  desc: string;
2730
2620
  }[];
2731
2621
  };
2732
- Fdc3ButtonContext: {
2733
- name: string;
2734
- kind: string;
2735
- desc: string;
2736
- props: ({
2737
- name: string;
2738
- kind: string;
2739
- desc: string;
2740
- isOpt?: undefined;
2741
- ref?: undefined;
2742
- } | {
2743
- name: string;
2744
- kind: string;
2745
- desc: string;
2746
- isOpt: boolean;
2747
- ref?: undefined;
2748
- } | {
2749
- name: string;
2750
- kind: string;
2751
- desc: string;
2752
- ref: string;
2753
- isOpt?: undefined;
2754
- })[];
2755
- };
2756
- FDC3Column_Depr: {
2622
+ Fdc3AdaptableButton: {
2757
2623
  name: string;
2758
2624
  kind: string;
2759
2625
  desc: string;
@@ -2769,7 +2635,7 @@ export declare const ADAPTABLE_METAMODEL: {
2769
2635
  isOpt?: undefined;
2770
2636
  })[];
2771
2637
  };
2772
- FDC3Context_DEPR: {
2638
+ Fdc3ButtonContext: {
2773
2639
  name: string;
2774
2640
  kind: string;
2775
2641
  desc: string;
@@ -2793,27 +2659,17 @@ export declare const ADAPTABLE_METAMODEL: {
2793
2659
  isOpt?: undefined;
2794
2660
  })[];
2795
2661
  };
2796
- FDC3ContextTypeDepr: {
2662
+ Fdc3Context: {
2797
2663
  name: string;
2798
2664
  kind: string;
2799
2665
  desc: string;
2800
2666
  };
2801
- Fdc3CustomIntentType: {
2667
+ Fdc3ContextType: {
2802
2668
  name: string;
2803
2669
  kind: string;
2804
2670
  desc: string;
2805
2671
  };
2806
- FDC3DesktopAgent: {
2807
- name: string;
2808
- kind: string;
2809
- desc: string;
2810
- props: {
2811
- name: string;
2812
- kind: string;
2813
- desc: string;
2814
- }[];
2815
- };
2816
- FDC3Intent_Depr: {
2672
+ Fdc3CustomIntentType: {
2817
2673
  name: string;
2818
2674
  kind: string;
2819
2675
  desc: string;
@@ -2832,22 +2688,22 @@ export declare const ADAPTABLE_METAMODEL: {
2832
2688
  kind: string;
2833
2689
  desc: string;
2834
2690
  isOpt: boolean;
2691
+ ref: string;
2835
2692
  defVal?: undefined;
2836
- ref?: undefined;
2837
2693
  } | {
2838
2694
  name: string;
2839
2695
  kind: string;
2840
2696
  desc: string;
2841
2697
  isOpt: boolean;
2842
- defVal: string;
2843
2698
  ref?: undefined;
2699
+ defVal?: undefined;
2844
2700
  } | {
2845
2701
  name: string;
2846
2702
  kind: string;
2847
2703
  desc: string;
2848
2704
  isOpt: boolean;
2849
- ref: string;
2850
- defVal?: undefined;
2705
+ defVal: string;
2706
+ ref?: undefined;
2851
2707
  })[];
2852
2708
  };
2853
2709
  FilterActionOnDataChange: {
@@ -2912,27 +2768,27 @@ export declare const ADAPTABLE_METAMODEL: {
2912
2768
  kind: string;
2913
2769
  desc: string;
2914
2770
  isOpt: boolean;
2771
+ noCode: string;
2915
2772
  defVal: string;
2916
2773
  gridInfo?: undefined;
2917
- noCode?: undefined;
2918
2774
  ref?: undefined;
2919
2775
  } | {
2920
2776
  name: string;
2921
2777
  kind: string;
2922
2778
  desc: string;
2923
2779
  isOpt: boolean;
2780
+ defVal: string;
2924
2781
  gridInfo?: undefined;
2925
2782
  noCode?: undefined;
2926
- defVal?: undefined;
2927
2783
  ref?: undefined;
2928
2784
  } | {
2929
2785
  name: string;
2930
2786
  kind: string;
2931
2787
  desc: string;
2932
2788
  isOpt: boolean;
2933
- noCode: string;
2934
- defVal: string;
2935
2789
  gridInfo?: undefined;
2790
+ noCode?: undefined;
2791
+ defVal?: undefined;
2936
2792
  ref?: undefined;
2937
2793
  })[];
2938
2794
  };
@@ -2964,24 +2820,6 @@ export declare const ADAPTABLE_METAMODEL: {
2964
2820
  desc: string;
2965
2821
  }[];
2966
2822
  };
2967
- FinancePluginOptions: {
2968
- name: string;
2969
- kind: string;
2970
- desc: string;
2971
- props: ({
2972
- name: string;
2973
- kind: string;
2974
- desc: string;
2975
- isOpt: boolean;
2976
- defVal: string;
2977
- } | {
2978
- name: string;
2979
- kind: string;
2980
- desc: string;
2981
- isOpt: boolean;
2982
- defVal?: undefined;
2983
- })[];
2984
- };
2985
2823
  FinsemblePluginOptions: {
2986
2824
  name: string;
2987
2825
  kind: string;
@@ -3449,66 +3287,6 @@ export declare const ADAPTABLE_METAMODEL: {
3449
3287
  kind: string;
3450
3288
  desc: string;
3451
3289
  };
3452
- InstrumentColumn: {
3453
- name: string;
3454
- kind: string;
3455
- desc: string;
3456
- props: ({
3457
- name: string;
3458
- kind: string;
3459
- desc: string;
3460
- isOpt: boolean;
3461
- ref?: undefined;
3462
- } | {
3463
- name: string;
3464
- kind: string;
3465
- desc: string;
3466
- isOpt: boolean;
3467
- ref: string;
3468
- })[];
3469
- };
3470
- InstrumentContextDepr: {
3471
- name: string;
3472
- kind: string;
3473
- desc: string;
3474
- props: ({
3475
- name: string;
3476
- kind: string;
3477
- desc: string;
3478
- isOpt: boolean;
3479
- } | {
3480
- name: string;
3481
- kind: string;
3482
- desc: string;
3483
- isOpt?: undefined;
3484
- })[];
3485
- };
3486
- InstrumentIntent: {
3487
- name: string;
3488
- kind: string;
3489
- desc: string;
3490
- };
3491
- InstrumentIntents: {
3492
- name: string;
3493
- kind: string;
3494
- desc: string;
3495
- };
3496
- InstrumentListContextDepr: {
3497
- name: string;
3498
- kind: string;
3499
- desc: string;
3500
- props: ({
3501
- name: string;
3502
- kind: string;
3503
- desc: string;
3504
- isOpt: boolean;
3505
- } | {
3506
- name: string;
3507
- kind: string;
3508
- desc: string;
3509
- isOpt?: undefined;
3510
- })[];
3511
- };
3512
3290
  IPushPullDomain: {
3513
3291
  name: string;
3514
3292
  kind: string;
@@ -3889,50 +3667,6 @@ export declare const ADAPTABLE_METAMODEL: {
3889
3667
  kind: string;
3890
3668
  desc: string;
3891
3669
  };
3892
- OrganizationColumn: {
3893
- name: string;
3894
- kind: string;
3895
- desc: string;
3896
- props: ({
3897
- name: string;
3898
- kind: string;
3899
- desc: string;
3900
- isOpt: boolean;
3901
- ref?: undefined;
3902
- } | {
3903
- name: string;
3904
- kind: string;
3905
- desc: string;
3906
- isOpt: boolean;
3907
- ref: string;
3908
- })[];
3909
- };
3910
- OrganizationContextDepr: {
3911
- name: string;
3912
- kind: string;
3913
- desc: string;
3914
- props: ({
3915
- name: string;
3916
- kind: string;
3917
- desc: string;
3918
- isOpt: boolean;
3919
- } | {
3920
- name: string;
3921
- kind: string;
3922
- desc: string;
3923
- isOpt?: undefined;
3924
- })[];
3925
- };
3926
- OrganizationIntent: {
3927
- name: string;
3928
- kind: string;
3929
- desc: string;
3930
- };
3931
- OrganizationIntents: {
3932
- name: string;
3933
- kind: string;
3934
- desc: string;
3935
- };
3936
3670
  PercentBarStyle: {
3937
3671
  name: string;
3938
3672
  kind: string;
@@ -4025,74 +3759,6 @@ export declare const ADAPTABLE_METAMODEL: {
4025
3759
  isOpt: boolean;
4026
3760
  }[];
4027
3761
  };
4028
- PortfolioContextDepr: {
4029
- name: string;
4030
- kind: string;
4031
- desc: string;
4032
- props: ({
4033
- name: string;
4034
- kind: string;
4035
- desc: string;
4036
- isOpt: boolean;
4037
- } | {
4038
- name: string;
4039
- kind: string;
4040
- desc: string;
4041
- isOpt?: undefined;
4042
- })[];
4043
- };
4044
- PositionColumn: {
4045
- name: string;
4046
- kind: string;
4047
- desc: string;
4048
- props: ({
4049
- name: string;
4050
- kind: string;
4051
- desc: string;
4052
- isOpt?: undefined;
4053
- ref?: undefined;
4054
- } | {
4055
- name: string;
4056
- kind: string;
4057
- desc: string;
4058
- isOpt: boolean;
4059
- ref: string;
4060
- })[];
4061
- };
4062
- PositionContextDepr: {
4063
- name: string;
4064
- kind: string;
4065
- desc: string;
4066
- props: ({
4067
- name: string;
4068
- kind: string;
4069
- desc: string;
4070
- isOpt?: undefined;
4071
- ref?: undefined;
4072
- } | {
4073
- name: string;
4074
- kind: string;
4075
- desc: string;
4076
- isOpt: boolean;
4077
- ref?: undefined;
4078
- } | {
4079
- name: string;
4080
- kind: string;
4081
- desc: string;
4082
- ref: string;
4083
- isOpt?: undefined;
4084
- })[];
4085
- };
4086
- PositionIntent: {
4087
- name: string;
4088
- kind: string;
4089
- desc: string;
4090
- };
4091
- PositionIntents: {
4092
- name: string;
4093
- kind: string;
4094
- desc: string;
4095
- };
4096
3762
  PredefinedConfig: {
4097
3763
  name: string;
4098
3764
  kind: string;
@@ -4241,15 +3907,10 @@ export declare const ADAPTABLE_METAMODEL: {
4241
3907
  ref: string;
4242
3908
  })[];
4243
3909
  };
4244
- RaiseFDC3IntentContext: {
3910
+ RaiseIntentConfig: {
4245
3911
  name: string;
4246
3912
  kind: string;
4247
3913
  desc: string;
4248
- props: {
4249
- name: string;
4250
- kind: string;
4251
- desc: string;
4252
- }[];
4253
3914
  };
4254
3915
  RangeValueType: {
4255
3916
  name: string;