@adaptabletools/adaptable 16.0.4 → 16.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.
- package/bundle.cjs.js +148 -148
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +9 -4
- package/src/AdaptableOptions/ExpressionOptions.d.ts +52 -16
- package/src/AdaptableOptions/Fdc3Options.d.ts +23 -7
- package/src/AdaptableOptions/FilterOptions.d.ts +7 -0
- package/src/AdaptableOptions/PredicateOptions.d.ts +10 -2
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +8 -0
- package/src/Api/ExportApi.d.ts +12 -3
- package/src/Api/ExpressionApi.d.ts +4 -0
- package/src/Api/FilterApi.d.ts +7 -1
- package/src/Api/Implementation/ApiBase.d.ts +3 -4
- package/src/Api/Implementation/ApiBase.js +5 -5
- package/src/Api/Implementation/ExportApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ExportApiImpl.js +6 -0
- package/src/Api/Implementation/ExpressionApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ExpressionApiImpl.js +4 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +2 -1
- package/src/Api/Implementation/FilterApiImpl.js +14 -1
- package/src/Api/Implementation/OptionsApiImpl.d.ts +3 -2
- package/src/Api/Implementation/OptionsApiImpl.js +2 -2
- package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -0
- package/src/Api/Implementation/PredicateApiImpl.js +4 -2
- package/src/Api/Implementation/ScheduleApiImpl.js +1 -1
- package/src/Api/Internal/AdaptableInternalApi.d.ts +0 -1
- package/src/Api/Internal/AdaptableInternalApi.js +2 -5
- package/src/Api/Internal/ExpressionnternalApi.js +2 -2
- package/src/Api/Internal/PredicateInternalApi.js +5 -5
- package/src/Api/OptionsApi.d.ts +4 -3
- package/src/Api/PredicateApi.d.ts +4 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +15 -8
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +13 -0
- package/src/PredefinedConfig/Common/Fdc3Context.d.ts +1 -1
- package/src/PredefinedConfig/Common/Fdc3Context.js +1 -1
- package/src/Strategy/Fdc3Module.js +1 -1
- package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +3 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +22 -21
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -3
- package/src/Utilities/Services/QueryLanguageService.js +4 -4
- package/src/View/Export/ExportSelector.js +2 -2
- package/src/agGrid/Adaptable.js +9 -3
- package/src/components/ExpressionEditor/BaseEditorInput.js +4 -4
- package/src/metamodel/adaptable.metamodel.d.ts +79 -45
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +3 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +0 -58
- package/src/AdaptableOptions/AdaptableQLOptions.js +0 -2
|
@@ -601,15 +601,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
601
601
|
noCode: string;
|
|
602
602
|
defVal: string;
|
|
603
603
|
ref?: undefined;
|
|
604
|
-
} | {
|
|
605
|
-
name: string;
|
|
606
|
-
kind: string;
|
|
607
|
-
desc: string;
|
|
608
|
-
isOpt: boolean;
|
|
609
|
-
noCode: string;
|
|
610
|
-
gridInfo?: undefined;
|
|
611
|
-
defVal?: undefined;
|
|
612
|
-
ref?: undefined;
|
|
613
604
|
} | {
|
|
614
605
|
name: string;
|
|
615
606
|
kind: string;
|
|
@@ -673,6 +664,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
673
664
|
ref: string;
|
|
674
665
|
noCode?: undefined;
|
|
675
666
|
defVal?: undefined;
|
|
667
|
+
} | {
|
|
668
|
+
name: string;
|
|
669
|
+
kind: string;
|
|
670
|
+
desc: string;
|
|
671
|
+
isOpt: boolean;
|
|
672
|
+
noCode: string;
|
|
673
|
+
gridInfo?: undefined;
|
|
674
|
+
defVal?: undefined;
|
|
675
|
+
ref?: undefined;
|
|
676
676
|
} | {
|
|
677
677
|
name: string;
|
|
678
678
|
kind: string;
|
|
@@ -753,39 +753,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
753
753
|
kind: string;
|
|
754
754
|
desc: string;
|
|
755
755
|
};
|
|
756
|
-
AdaptableQLOptions: {
|
|
757
|
-
name: string;
|
|
758
|
-
kind: string;
|
|
759
|
-
desc: string;
|
|
760
|
-
props: ({
|
|
761
|
-
name: string;
|
|
762
|
-
kind: string;
|
|
763
|
-
desc: string;
|
|
764
|
-
isOpt: boolean;
|
|
765
|
-
gridInfo: string;
|
|
766
|
-
noCode: string;
|
|
767
|
-
defVal: string;
|
|
768
|
-
ref?: undefined;
|
|
769
|
-
} | {
|
|
770
|
-
name: string;
|
|
771
|
-
kind: string;
|
|
772
|
-
desc: string;
|
|
773
|
-
isOpt: boolean;
|
|
774
|
-
defVal: string;
|
|
775
|
-
gridInfo?: undefined;
|
|
776
|
-
noCode?: undefined;
|
|
777
|
-
ref?: undefined;
|
|
778
|
-
} | {
|
|
779
|
-
name: string;
|
|
780
|
-
kind: string;
|
|
781
|
-
desc: string;
|
|
782
|
-
isOpt: boolean;
|
|
783
|
-
ref: string;
|
|
784
|
-
gridInfo?: undefined;
|
|
785
|
-
noCode?: undefined;
|
|
786
|
-
defVal?: undefined;
|
|
787
|
-
})[];
|
|
788
|
-
};
|
|
789
756
|
AdaptableQuery: {
|
|
790
757
|
name: string;
|
|
791
758
|
kind: string;
|
|
@@ -1629,6 +1596,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1629
1596
|
ref: string;
|
|
1630
1597
|
})[];
|
|
1631
1598
|
};
|
|
1599
|
+
ColumnFilterConfig: {
|
|
1600
|
+
name: string;
|
|
1601
|
+
kind: string;
|
|
1602
|
+
desc: string;
|
|
1603
|
+
props: ({
|
|
1604
|
+
name: string;
|
|
1605
|
+
kind: string;
|
|
1606
|
+
desc: string;
|
|
1607
|
+
isOpt?: undefined;
|
|
1608
|
+
} | {
|
|
1609
|
+
name: string;
|
|
1610
|
+
kind: string;
|
|
1611
|
+
desc: string;
|
|
1612
|
+
isOpt: boolean;
|
|
1613
|
+
})[];
|
|
1614
|
+
};
|
|
1632
1615
|
ColumnFilterDef: {
|
|
1633
1616
|
name: string;
|
|
1634
1617
|
kind: string;
|
|
@@ -2597,6 +2580,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2597
2580
|
kind: string;
|
|
2598
2581
|
desc: string;
|
|
2599
2582
|
props: ({
|
|
2583
|
+
name: string;
|
|
2584
|
+
kind: string;
|
|
2585
|
+
desc: string;
|
|
2586
|
+
isOpt: boolean;
|
|
2587
|
+
gridInfo: string;
|
|
2588
|
+
noCode: string;
|
|
2589
|
+
defVal: string;
|
|
2590
|
+
} | {
|
|
2600
2591
|
name: string;
|
|
2601
2592
|
kind: string;
|
|
2602
2593
|
desc: string;
|
|
@@ -2610,8 +2601,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2610
2601
|
desc: string;
|
|
2611
2602
|
isOpt: boolean;
|
|
2612
2603
|
gridInfo?: undefined;
|
|
2613
|
-
defVal?: undefined;
|
|
2614
2604
|
noCode?: undefined;
|
|
2605
|
+
defVal?: undefined;
|
|
2615
2606
|
} | {
|
|
2616
2607
|
name: string;
|
|
2617
2608
|
kind: string;
|
|
@@ -2620,6 +2611,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2620
2611
|
noCode: string;
|
|
2621
2612
|
defVal: string;
|
|
2622
2613
|
gridInfo?: undefined;
|
|
2614
|
+
} | {
|
|
2615
|
+
name: string;
|
|
2616
|
+
kind: string;
|
|
2617
|
+
desc: string;
|
|
2618
|
+
isOpt: boolean;
|
|
2619
|
+
defVal: string;
|
|
2620
|
+
gridInfo?: undefined;
|
|
2621
|
+
noCode?: undefined;
|
|
2623
2622
|
})[];
|
|
2624
2623
|
};
|
|
2625
2624
|
ExternalReport: {
|
|
@@ -2632,6 +2631,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2632
2631
|
desc: string;
|
|
2633
2632
|
}[];
|
|
2634
2633
|
};
|
|
2634
|
+
FDC3ActionColumn: {
|
|
2635
|
+
name: string;
|
|
2636
|
+
kind: string;
|
|
2637
|
+
desc: string;
|
|
2638
|
+
props: ({
|
|
2639
|
+
name: string;
|
|
2640
|
+
kind: string;
|
|
2641
|
+
desc: string;
|
|
2642
|
+
ref: string;
|
|
2643
|
+
isOpt?: undefined;
|
|
2644
|
+
} | {
|
|
2645
|
+
name: string;
|
|
2646
|
+
kind: string;
|
|
2647
|
+
desc: string;
|
|
2648
|
+
ref?: undefined;
|
|
2649
|
+
isOpt?: undefined;
|
|
2650
|
+
} | {
|
|
2651
|
+
name: string;
|
|
2652
|
+
kind: string;
|
|
2653
|
+
desc: string;
|
|
2654
|
+
isOpt: boolean;
|
|
2655
|
+
ref?: undefined;
|
|
2656
|
+
})[];
|
|
2657
|
+
};
|
|
2635
2658
|
Fdc3AdaptableButton: {
|
|
2636
2659
|
name: string;
|
|
2637
2660
|
kind: string;
|
|
@@ -3874,12 +3897,23 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3874
3897
|
name: string;
|
|
3875
3898
|
kind: string;
|
|
3876
3899
|
desc: string;
|
|
3877
|
-
props: {
|
|
3900
|
+
props: ({
|
|
3878
3901
|
name: string;
|
|
3879
3902
|
kind: string;
|
|
3880
3903
|
desc: string;
|
|
3881
3904
|
isOpt: boolean;
|
|
3882
|
-
|
|
3905
|
+
gridInfo: string;
|
|
3906
|
+
noCode: string;
|
|
3907
|
+
defVal: string;
|
|
3908
|
+
} | {
|
|
3909
|
+
name: string;
|
|
3910
|
+
kind: string;
|
|
3911
|
+
desc: string;
|
|
3912
|
+
isOpt: boolean;
|
|
3913
|
+
gridInfo?: undefined;
|
|
3914
|
+
noCode?: undefined;
|
|
3915
|
+
defVal?: undefined;
|
|
3916
|
+
})[];
|
|
3883
3917
|
};
|
|
3884
3918
|
PreProcessExportContext: {
|
|
3885
3919
|
name: string;
|