@adaptabletools/adaptable 13.0.0-canary.2 → 13.0.0-canary.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 (80) hide show
  1. package/agGrid.d.ts +23 -1
  2. package/agGrid.js +23 -1
  3. package/base.css +1 -0
  4. package/bundle.cjs.js +159 -159
  5. package/index.css +1 -0
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +42 -14
  10. package/src/AdaptableOptions/GeneralOptions.d.ts +6 -0
  11. package/src/Api/ConditionalStyleApi.d.ts +20 -0
  12. package/src/Api/FormatColumnApi.d.ts +42 -3
  13. package/src/Api/Implementation/ColumnApiImpl.js +3 -3
  14. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +17 -1
  15. package/src/Api/Implementation/FormatColumnApiImpl.js +94 -14
  16. package/src/Api/Implementation/InternalApiImpl.d.ts +1 -0
  17. package/src/Api/Implementation/InternalApiImpl.js +4 -0
  18. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +0 -2
  19. package/src/Api/Implementation/QueryLanguageApiImpl.js +0 -3
  20. package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
  21. package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
  22. package/src/Api/InternalApi.d.ts +1 -0
  23. package/src/Api/QueryLanguageApi.d.ts +0 -5
  24. package/src/Api/ToolPanelApi.d.ts +10 -1
  25. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  26. package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
  27. package/src/PredefinedConfig/FormatColumnState.d.ts +19 -0
  28. package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -0
  29. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  30. package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
  31. package/src/Redux/Store/AdaptableStore.js +2 -0
  32. package/src/Strategy/ConditionalStyleModule.d.ts +2 -0
  33. package/src/Strategy/ConditionalStyleModule.js +6 -0
  34. package/src/Strategy/FormatColumnModule.d.ts +4 -9
  35. package/src/Strategy/FormatColumnModule.js +51 -1
  36. package/src/Strategy/Interface/IModule.d.ts +1 -0
  37. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +6 -5
  38. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
  39. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -1
  40. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
  41. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +4 -1
  42. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
  43. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +4 -1
  44. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -0
  45. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +4 -1
  46. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
  47. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
  48. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  49. package/src/Utilities/Extensions/TypeExtensions.js +5 -0
  50. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
  51. package/src/Utilities/Services/LicenseService.js +1 -1
  52. package/src/Utilities/Services/QueryLanguageService.d.ts +5 -3
  53. package/src/Utilities/Services/QueryLanguageService.js +92 -39
  54. package/src/Utilities/license/LicenseDetails.d.ts +1 -1
  55. package/src/Utilities/license/decode.d.ts +1 -0
  56. package/src/Utilities/license/decode.js +1 -1
  57. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -0
  58. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.d.ts +2 -0
  59. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.js +18 -0
  60. package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
  61. package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
  62. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  63. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +9 -0
  64. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +66 -0
  65. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +20 -2
  66. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +2 -1
  67. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +14 -0
  68. package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
  69. package/src/View/FormatColumn/Wizard/constants.js +4 -0
  70. package/src/agGrid/Adaptable.d.ts +5 -0
  71. package/src/agGrid/Adaptable.js +103 -45
  72. package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
  73. package/src/components/ExpressionEditor/EditorInput.js +1 -1
  74. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
  75. package/src/metamodel/adaptable.metamodel.d.ts +47 -29
  76. package/src/metamodel/adaptable.metamodel.js +1 -1
  77. package/src/parser/src/types.d.ts +6 -3
  78. package/src/types.d.ts +2 -2
  79. package/version.d.ts +1 -1
  80. package/version.js +1 -1
@@ -888,12 +888,12 @@ export declare const ADAPTABLE_METAMODEL: {
888
888
  defaultValue: string;
889
889
  })[];
890
890
  };
891
- AggregatedScalarFunctionName: {
891
+ AggregatedBooleanFunctionName: {
892
892
  name: string;
893
893
  kind: string;
894
894
  description: string;
895
895
  };
896
- AggregationFunctionName: {
896
+ AggregatedScalarFunctionName: {
897
897
  name: string;
898
898
  kind: string;
899
899
  description: string;
@@ -2418,6 +2418,11 @@ export declare const ADAPTABLE_METAMODEL: {
2418
2418
  defaultValue: string;
2419
2419
  }[];
2420
2420
  };
2421
+ DefaultExpressionFunctionsContext: {
2422
+ name: string;
2423
+ kind: string;
2424
+ description: string;
2425
+ };
2421
2426
  DeletedActionRowInfo: {
2422
2427
  name: string;
2423
2428
  kind: string;
@@ -2559,6 +2564,26 @@ export declare const ADAPTABLE_METAMODEL: {
2559
2564
  defaultValue?: undefined;
2560
2565
  })[];
2561
2566
  };
2567
+ EvaluateExpressionExternallyContext: {
2568
+ name: string;
2569
+ kind: string;
2570
+ description: string;
2571
+ properties: ({
2572
+ name: string;
2573
+ kind: string;
2574
+ description: string;
2575
+ uiLabel: string;
2576
+ isOptional: boolean;
2577
+ reference?: undefined;
2578
+ } | {
2579
+ name: string;
2580
+ kind: string;
2581
+ description: string;
2582
+ uiLabel: string;
2583
+ reference: string;
2584
+ isOptional?: undefined;
2585
+ })[];
2586
+ };
2562
2587
  EventApi: {
2563
2588
  name: string;
2564
2589
  kind: string;
@@ -2657,28 +2682,12 @@ export declare const ADAPTABLE_METAMODEL: {
2657
2682
  description: string;
2658
2683
  uiLabel: string;
2659
2684
  isOptional?: undefined;
2660
- reference?: undefined;
2661
- } | {
2662
- name: string;
2663
- kind: string;
2664
- description: string;
2665
- uiLabel: string;
2666
- isOptional: boolean;
2667
- reference?: undefined;
2668
- } | {
2669
- name: string;
2670
- kind: string;
2671
- description: string;
2672
- uiLabel: string;
2673
- reference: string;
2674
- isOptional?: undefined;
2675
2685
  } | {
2676
2686
  name: string;
2677
2687
  kind: string;
2678
2688
  description: string;
2679
2689
  uiLabel: string;
2680
2690
  isOptional: boolean;
2681
- reference: string;
2682
2691
  })[];
2683
2692
  };
2684
2693
  ExpressionFunction: {
@@ -2701,6 +2710,11 @@ export declare const ADAPTABLE_METAMODEL: {
2701
2710
  isOptional?: undefined;
2702
2711
  })[];
2703
2712
  };
2713
+ ExpressionFunctionDefinitions: {
2714
+ name: string;
2715
+ kind: string;
2716
+ description: string;
2717
+ };
2704
2718
  ExpressionFunctionDocBlock: {
2705
2719
  name: string;
2706
2720
  kind: string;
@@ -2711,6 +2725,11 @@ export declare const ADAPTABLE_METAMODEL: {
2711
2725
  kind: string;
2712
2726
  description: string;
2713
2727
  };
2728
+ ExpressionFunctionMap: {
2729
+ name: string;
2730
+ kind: string;
2731
+ description: string;
2732
+ };
2714
2733
  ExpressionOptions: {
2715
2734
  name: string;
2716
2735
  kind: string;
@@ -2723,16 +2742,6 @@ export declare const ADAPTABLE_METAMODEL: {
2723
2742
  isOptional: boolean;
2724
2743
  gridInfo?: undefined;
2725
2744
  defaultValue?: undefined;
2726
- reference?: undefined;
2727
- } | {
2728
- name: string;
2729
- kind: string;
2730
- description: string;
2731
- uiLabel: string;
2732
- isOptional: boolean;
2733
- gridInfo: string;
2734
- defaultValue: string;
2735
- reference: string;
2736
2745
  } | {
2737
2746
  name: string;
2738
2747
  kind: string;
@@ -2741,7 +2750,6 @@ export declare const ADAPTABLE_METAMODEL: {
2741
2750
  isOptional: boolean;
2742
2751
  gridInfo: string;
2743
2752
  defaultValue: string;
2744
- reference?: undefined;
2745
2753
  })[];
2746
2754
  };
2747
2755
  FDC3Column: {
@@ -3758,6 +3766,16 @@ export declare const ADAPTABLE_METAMODEL: {
3758
3766
  kind: string;
3759
3767
  description: string;
3760
3768
  };
3769
+ ModuleExpressionFunctionsContext: {
3770
+ name: string;
3771
+ kind: string;
3772
+ description: string;
3773
+ };
3774
+ ModuleExpressionFunctionsMap: {
3775
+ name: string;
3776
+ kind: string;
3777
+ description: string;
3778
+ };
3761
3779
  NamedQuery: {
3762
3780
  name: string;
3763
3781
  kind: string;