@adaptabletools/adaptable 13.0.0-canary.8 → 13.0.0-canary.9

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 (49) hide show
  1. package/agGrid.d.ts +10 -10
  2. package/agGrid.js +10 -10
  3. package/bundle.cjs.js +154 -154
  4. package/package.json +1 -1
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -3
  8. package/src/AdaptableOptions/AdaptableOptions.d.ts +0 -2
  9. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +87 -30
  10. package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +32 -0
  11. package/src/AdaptableOptions/FinsemblePluginOptions.js +2 -0
  12. package/src/AdaptableOptions/GeneralOptions.d.ts +1 -2
  13. package/src/Api/ConditionalStyleApi.d.ts +20 -62
  14. package/src/Api/ConfigApi.d.ts +1 -2
  15. package/src/Api/FinsembleApi.d.ts +10 -0
  16. package/src/Api/FinsembleApi.js +2 -0
  17. package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -0
  18. package/src/Api/Implementation/PluginsApiImpl.js +6 -0
  19. package/src/Api/PluginsApi.d.ts +5 -0
  20. package/src/PredefinedConfig/ConditionalStyleState.d.ts +10 -19
  21. package/src/PredefinedConfig/FormatColumnState.d.ts +0 -6
  22. package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
  23. package/src/Strategy/DataChangeHistoryModule.js +12 -0
  24. package/src/Strategy/FormatColumnModule.js +1 -1
  25. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.d.ts +1 -1
  26. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +3 -4
  27. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +5 -10
  28. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +1 -1
  29. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +3 -4
  30. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -1
  31. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +3 -4
  32. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -1
  33. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +3 -4
  34. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -1
  35. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -4
  36. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
  37. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +3 -4
  38. package/src/Utilities/ObjectFactory.js +0 -1
  39. package/src/Utilities/Services/QueryLanguageService.d.ts +1 -3
  40. package/src/Utilities/Services/QueryLanguageService.js +48 -52
  41. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +0 -22
  42. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +0 -1
  43. package/src/agGrid/Adaptable.d.ts +2 -2
  44. package/src/agGrid/Adaptable.js +1 -14
  45. package/src/metamodel/adaptable.metamodel.d.ts +65 -47
  46. package/src/metamodel/adaptable.metamodel.js +1 -1
  47. package/src/types.d.ts +3 -1
  48. package/version.d.ts +1 -1
  49. package/version.js +1 -1
@@ -574,15 +574,6 @@ export declare const ADAPTABLE_METAMODEL: {
574
574
  gridInfo: string;
575
575
  reference: string;
576
576
  defaultValue?: undefined;
577
- } | {
578
- name: string;
579
- kind: string;
580
- description: string;
581
- uiLabel: string;
582
- isOptional: boolean;
583
- defaultValue: string;
584
- reference: string;
585
- gridInfo?: undefined;
586
577
  } | {
587
578
  name: string;
588
579
  kind: string;
@@ -1643,23 +1634,6 @@ export declare const ADAPTABLE_METAMODEL: {
1643
1634
  name: string;
1644
1635
  kind: string;
1645
1636
  description: string;
1646
- properties: ({
1647
- name: string;
1648
- kind: string;
1649
- description: string;
1650
- uiLabel: string;
1651
- isOptional: boolean;
1652
- defaultValue: string;
1653
- reference?: undefined;
1654
- } | {
1655
- name: string;
1656
- kind: string;
1657
- description: string;
1658
- uiLabel: string;
1659
- reference: string;
1660
- isOptional?: undefined;
1661
- defaultValue?: undefined;
1662
- })[];
1663
1637
  };
1664
1638
  ConditionalStyleApi: {
1665
1639
  name: string;
@@ -1681,13 +1655,6 @@ export declare const ADAPTABLE_METAMODEL: {
1681
1655
  name: string;
1682
1656
  kind: string;
1683
1657
  description: string;
1684
- properties: {
1685
- name: string;
1686
- kind: string;
1687
- description: string;
1688
- uiLabel: string;
1689
- isOptional: boolean;
1690
- }[];
1691
1658
  };
1692
1659
  ConfigApi: {
1693
1660
  name: string;
@@ -2418,11 +2385,6 @@ export declare const ADAPTABLE_METAMODEL: {
2418
2385
  defaultValue: string;
2419
2386
  }[];
2420
2387
  };
2421
- DefaultExpressionFunctionsContext: {
2422
- name: string;
2423
- kind: string;
2424
- description: string;
2425
- };
2426
2388
  DeletedActionRowInfo: {
2427
2389
  name: string;
2428
2390
  kind: string;
@@ -2710,11 +2672,6 @@ export declare const ADAPTABLE_METAMODEL: {
2710
2672
  isOptional?: undefined;
2711
2673
  })[];
2712
2674
  };
2713
- ExpressionFunctionDefinitions: {
2714
- name: string;
2715
- kind: string;
2716
- description: string;
2717
- };
2718
2675
  ExpressionFunctionDocBlock: {
2719
2676
  name: string;
2720
2677
  kind: string;
@@ -2740,16 +2697,16 @@ export declare const ADAPTABLE_METAMODEL: {
2740
2697
  description: string;
2741
2698
  uiLabel: string;
2742
2699
  isOptional: boolean;
2743
- gridInfo?: undefined;
2744
- defaultValue?: undefined;
2700
+ gridInfo: string;
2701
+ defaultValue: string;
2745
2702
  } | {
2746
2703
  name: string;
2747
2704
  kind: string;
2748
2705
  description: string;
2749
2706
  uiLabel: string;
2750
2707
  isOptional: boolean;
2751
- gridInfo: string;
2752
- defaultValue: string;
2708
+ gridInfo?: undefined;
2709
+ defaultValue?: undefined;
2753
2710
  })[];
2754
2711
  };
2755
2712
  FDC3Column: {
@@ -2936,6 +2893,47 @@ export declare const ADAPTABLE_METAMODEL: {
2936
2893
  isOptional: boolean;
2937
2894
  }[];
2938
2895
  };
2896
+ FinsembleApi: {
2897
+ name: string;
2898
+ kind: string;
2899
+ description: string;
2900
+ properties: {
2901
+ name: string;
2902
+ kind: string;
2903
+ description: string;
2904
+ uiLabel: string;
2905
+ }[];
2906
+ };
2907
+ FinsemblePluginOptions: {
2908
+ name: string;
2909
+ kind: string;
2910
+ description: string;
2911
+ properties: ({
2912
+ name: string;
2913
+ kind: string;
2914
+ description: string;
2915
+ uiLabel: string;
2916
+ isOptional: boolean;
2917
+ defaultValue?: undefined;
2918
+ reference?: undefined;
2919
+ } | {
2920
+ name: string;
2921
+ kind: string;
2922
+ description: string;
2923
+ uiLabel: string;
2924
+ isOptional: boolean;
2925
+ defaultValue: string;
2926
+ reference?: undefined;
2927
+ } | {
2928
+ name: string;
2929
+ kind: string;
2930
+ description: string;
2931
+ uiLabel: string;
2932
+ isOptional: boolean;
2933
+ reference: string;
2934
+ defaultValue?: undefined;
2935
+ })[];
2936
+ };
2939
2937
  FlashingCellApi: {
2940
2938
  name: string;
2941
2939
  kind: string;
@@ -3211,6 +3209,17 @@ export declare const ADAPTABLE_METAMODEL: {
3211
3209
  defaultValue: string;
3212
3210
  })[];
3213
3211
  };
3212
+ GlobalExpressionFunctionsContext: {
3213
+ name: string;
3214
+ kind: string;
3215
+ description: string;
3216
+ properties: {
3217
+ name: string;
3218
+ kind: string;
3219
+ description: string;
3220
+ uiLabel: string;
3221
+ }[];
3222
+ };
3214
3223
  Glue42Api: {
3215
3224
  name: string;
3216
3225
  kind: string;
@@ -3765,6 +3774,15 @@ export declare const ADAPTABLE_METAMODEL: {
3765
3774
  name: string;
3766
3775
  kind: string;
3767
3776
  description: string;
3777
+ properties: {
3778
+ name: string;
3779
+ kind: string;
3780
+ description: string;
3781
+ uiLabel: string;
3782
+ isOptional: boolean;
3783
+ gridInfo: string;
3784
+ defaultValue: string;
3785
+ }[];
3768
3786
  };
3769
3787
  ModuleExpressionFunctionsContext: {
3770
3788
  name: string;