@adaptabletools/adaptable 16.0.3 → 16.0.5-canary.0

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 (56) hide show
  1. package/base.css +3 -0
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +155 -155
  4. package/index.css +5 -0
  5. package/index.css.map +1 -1
  6. package/package.json +1 -1
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
  10. package/src/AdaptableOptions/Fdc3Options.d.ts +71 -41
  11. package/src/AdaptableOptions/FilterOptions.d.ts +7 -0
  12. package/src/Api/ConfigApi.d.ts +6 -1
  13. package/src/Api/ExportApi.d.ts +12 -3
  14. package/src/Api/Fdc3Api.d.ts +1 -1
  15. package/src/Api/FilterApi.d.ts +7 -1
  16. package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -1
  17. package/src/Api/Implementation/ConfigApiImpl.js +11 -0
  18. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -0
  19. package/src/Api/Implementation/ExportApiImpl.js +6 -0
  20. package/src/Api/Implementation/FilterApiImpl.d.ts +2 -1
  21. package/src/Api/Implementation/FilterApiImpl.js +14 -1
  22. package/src/Api/Implementation/ScheduleApiImpl.js +1 -1
  23. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  24. package/src/PredefinedConfig/Common/AdaptablePredicate.js +7 -0
  25. package/src/PredefinedConfig/Common/ColumnFilter.d.ts +13 -0
  26. package/src/PredefinedConfig/Common/Fdc3Context.d.ts +6 -6
  27. package/src/PredefinedConfig/Common/Fdc3Context.js +6 -6
  28. package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +4 -4
  29. package/src/PredefinedConfig/Common/Fdc3Intent.js +4 -4
  30. package/src/Redux/ActionsReducers/CommentsRedux.d.ts +8 -0
  31. package/src/Redux/ActionsReducers/CommentsRedux.js +10 -1
  32. package/src/Strategy/Fdc3Module.js +1 -1
  33. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  34. package/src/Utilities/Constants/GeneralConstants.js +3 -2
  35. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
  36. package/src/View/Components/FilterForm/ListBoxFilterForm.js +11 -2
  37. package/src/View/Export/ExportSelector.js +2 -2
  38. package/src/agGrid/Adaptable.js +7 -1
  39. package/src/components/icons/contact.d.ts +3 -0
  40. package/src/components/icons/contact.js +8 -0
  41. package/src/components/icons/index.js +10 -0
  42. package/src/components/icons/interactions.d.ts +3 -0
  43. package/src/components/icons/interactions.js +8 -0
  44. package/src/components/icons/money.d.ts +3 -0
  45. package/src/components/icons/money.js +8 -0
  46. package/src/components/icons/order.d.ts +3 -0
  47. package/src/components/icons/order.js +7 -0
  48. package/src/components/icons/organisation.d.ts +3 -0
  49. package/src/components/icons/organisation.js +8 -0
  50. package/src/metamodel/adaptable.metamodel.d.ts +90 -2
  51. package/src/metamodel/adaptable.metamodel.js +1 -1
  52. package/src/types.d.ts +2 -2
  53. package/themes/dark.css +2 -0
  54. package/themes/dark.css.map +1 -1
  55. package/version.d.ts +1 -1
  56. package/version.js +1 -1
@@ -1629,6 +1629,22 @@ export declare const ADAPTABLE_METAMODEL: {
1629
1629
  ref: string;
1630
1630
  })[];
1631
1631
  };
1632
+ ColumnFilterConfig: {
1633
+ name: string;
1634
+ kind: string;
1635
+ desc: string;
1636
+ props: ({
1637
+ name: string;
1638
+ kind: string;
1639
+ desc: string;
1640
+ isOpt?: undefined;
1641
+ } | {
1642
+ name: string;
1643
+ kind: string;
1644
+ desc: string;
1645
+ isOpt: boolean;
1646
+ })[];
1647
+ };
1632
1648
  ColumnFilterDef: {
1633
1649
  name: string;
1634
1650
  kind: string;
@@ -2632,6 +2648,30 @@ export declare const ADAPTABLE_METAMODEL: {
2632
2648
  desc: string;
2633
2649
  }[];
2634
2650
  };
2651
+ FDC3ActionColumn: {
2652
+ name: string;
2653
+ kind: string;
2654
+ desc: string;
2655
+ props: ({
2656
+ name: string;
2657
+ kind: string;
2658
+ desc: string;
2659
+ ref: string;
2660
+ isOpt?: undefined;
2661
+ } | {
2662
+ name: string;
2663
+ kind: string;
2664
+ desc: string;
2665
+ ref?: undefined;
2666
+ isOpt?: undefined;
2667
+ } | {
2668
+ name: string;
2669
+ kind: string;
2670
+ desc: string;
2671
+ isOpt: boolean;
2672
+ ref?: undefined;
2673
+ })[];
2674
+ };
2635
2675
  Fdc3AdaptableButton: {
2636
2676
  name: string;
2637
2677
  kind: string;
@@ -2677,6 +2717,24 @@ export declare const ADAPTABLE_METAMODEL: {
2677
2717
  kind: string;
2678
2718
  desc: string;
2679
2719
  };
2720
+ Fdc3ContextOptions: {
2721
+ name: string;
2722
+ kind: string;
2723
+ desc: string;
2724
+ props: ({
2725
+ name: string;
2726
+ kind: string;
2727
+ desc: string;
2728
+ isOpt: boolean;
2729
+ ref: string;
2730
+ } | {
2731
+ name: string;
2732
+ kind: string;
2733
+ desc: string;
2734
+ isOpt: boolean;
2735
+ ref?: undefined;
2736
+ })[];
2737
+ };
2680
2738
  Fdc3CustomContext: {
2681
2739
  name: string;
2682
2740
  kind: string;
@@ -2687,6 +2745,24 @@ export declare const ADAPTABLE_METAMODEL: {
2687
2745
  kind: string;
2688
2746
  desc: string;
2689
2747
  };
2748
+ Fdc3IntentOptions: {
2749
+ name: string;
2750
+ kind: string;
2751
+ desc: string;
2752
+ props: ({
2753
+ name: string;
2754
+ kind: string;
2755
+ desc: string;
2756
+ isOpt: boolean;
2757
+ ref?: undefined;
2758
+ } | {
2759
+ name: string;
2760
+ kind: string;
2761
+ desc: string;
2762
+ isOpt: boolean;
2763
+ ref: string;
2764
+ })[];
2765
+ };
2690
2766
  Fdc3IntentType: {
2691
2767
  name: string;
2692
2768
  kind: string;
@@ -2708,15 +2784,15 @@ export declare const ADAPTABLE_METAMODEL: {
2708
2784
  kind: string;
2709
2785
  desc: string;
2710
2786
  isOpt: boolean;
2787
+ defVal: string;
2711
2788
  ref?: undefined;
2712
- defVal?: undefined;
2713
2789
  } | {
2714
2790
  name: string;
2715
2791
  kind: string;
2716
2792
  desc: string;
2717
2793
  isOpt: boolean;
2718
- defVal: string;
2719
2794
  ref?: undefined;
2795
+ defVal?: undefined;
2720
2796
  })[];
2721
2797
  };
2722
2798
  Fdc3StandardContextType: {
@@ -4696,6 +4772,18 @@ export declare const ADAPTABLE_METAMODEL: {
4696
4772
  kind: string;
4697
4773
  desc: string;
4698
4774
  };
4775
+ UIControlConfig: {
4776
+ name: string;
4777
+ kind: string;
4778
+ desc: string;
4779
+ props: {
4780
+ name: string;
4781
+ kind: string;
4782
+ desc: string;
4783
+ isOpt: boolean;
4784
+ ref: string;
4785
+ }[];
4786
+ };
4699
4787
  UnbalancedGroupsKeyContext: {
4700
4788
  name: string;
4701
4789
  kind: string;