@adaptabletools/adaptable 13.0.1 → 13.0.2
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 +149 -143
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
- package/src/AdaptableOptions/ActionOptions.d.ts +15 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -0
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +6 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +2 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -0
- package/src/AdaptableOptions/NotificationsOptions.d.ts +2 -1
- package/src/Api/EventApi.d.ts +13 -22
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/StyledColumnApiImpl.js +17 -0
- package/src/Api/StyledColumnApi.d.ts +5 -0
- package/src/Strategy/FilterModule.js +1 -1
- package/src/Strategy/LayoutModule.js +7 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +1 -0
- package/src/Utilities/Extensions/StringExtensions.d.ts +2 -0
- package/src/Utilities/Extensions/StringExtensions.js +21 -1
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +1 -1
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -0
- package/src/Utilities/Services/MetamodelService.js +6 -4
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.d.ts +3 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +103 -92
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +4 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +8 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +7 -34
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +7 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +2 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +2 -2
- package/src/agGrid/ActionColumnRenderer.js +2 -0
- package/src/agGrid/Adaptable.d.ts +2 -0
- package/src/agGrid/Adaptable.js +76 -52
- package/src/metamodel/adaptable.metamodel.d.ts +87 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +2 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -555,6 +555,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
555
555
|
isOptional: boolean;
|
|
556
556
|
reference: string;
|
|
557
557
|
gridInfo?: undefined;
|
|
558
|
+
noCode?: undefined;
|
|
558
559
|
defaultValue?: undefined;
|
|
559
560
|
} | {
|
|
560
561
|
name: string;
|
|
@@ -563,8 +564,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
563
564
|
uiLabel: string;
|
|
564
565
|
isOptional: boolean;
|
|
565
566
|
gridInfo: string;
|
|
567
|
+
noCode: string;
|
|
566
568
|
defaultValue: string;
|
|
567
569
|
reference?: undefined;
|
|
570
|
+
} | {
|
|
571
|
+
name: string;
|
|
572
|
+
kind: string;
|
|
573
|
+
description: string;
|
|
574
|
+
uiLabel: string;
|
|
575
|
+
isOptional: boolean;
|
|
576
|
+
gridInfo: string;
|
|
577
|
+
defaultValue: string;
|
|
578
|
+
reference?: undefined;
|
|
579
|
+
noCode?: undefined;
|
|
568
580
|
} | {
|
|
569
581
|
name: string;
|
|
570
582
|
kind: string;
|
|
@@ -573,6 +585,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
573
585
|
isOptional: boolean;
|
|
574
586
|
gridInfo: string;
|
|
575
587
|
reference: string;
|
|
588
|
+
noCode?: undefined;
|
|
576
589
|
defaultValue?: undefined;
|
|
577
590
|
} | {
|
|
578
591
|
name: string;
|
|
@@ -582,6 +595,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
582
595
|
isOptional: boolean;
|
|
583
596
|
reference?: undefined;
|
|
584
597
|
gridInfo?: undefined;
|
|
598
|
+
noCode?: undefined;
|
|
585
599
|
defaultValue?: undefined;
|
|
586
600
|
} | {
|
|
587
601
|
name: string;
|
|
@@ -592,6 +606,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
592
606
|
defaultValue: string;
|
|
593
607
|
reference?: undefined;
|
|
594
608
|
gridInfo?: undefined;
|
|
609
|
+
noCode?: undefined;
|
|
595
610
|
} | {
|
|
596
611
|
name: string;
|
|
597
612
|
kind: string;
|
|
@@ -601,6 +616,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
601
616
|
defaultValue: string;
|
|
602
617
|
isOptional?: undefined;
|
|
603
618
|
reference?: undefined;
|
|
619
|
+
noCode?: undefined;
|
|
604
620
|
})[];
|
|
605
621
|
};
|
|
606
622
|
AdaptablePersistentState: {
|
|
@@ -669,6 +685,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
669
685
|
uiLabel: string;
|
|
670
686
|
isOptional: boolean;
|
|
671
687
|
gridInfo: string;
|
|
688
|
+
noCode: string;
|
|
672
689
|
defaultValue: string;
|
|
673
690
|
reference?: undefined;
|
|
674
691
|
} | {
|
|
@@ -678,6 +695,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
678
695
|
uiLabel: string;
|
|
679
696
|
isOptional: boolean;
|
|
680
697
|
gridInfo?: undefined;
|
|
698
|
+
noCode?: undefined;
|
|
681
699
|
defaultValue?: undefined;
|
|
682
700
|
reference?: undefined;
|
|
683
701
|
} | {
|
|
@@ -688,6 +706,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
688
706
|
isOptional: boolean;
|
|
689
707
|
defaultValue: string;
|
|
690
708
|
gridInfo?: undefined;
|
|
709
|
+
noCode?: undefined;
|
|
691
710
|
reference?: undefined;
|
|
692
711
|
} | {
|
|
693
712
|
name: string;
|
|
@@ -697,6 +716,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
697
716
|
isOptional: boolean;
|
|
698
717
|
reference: string;
|
|
699
718
|
gridInfo?: undefined;
|
|
719
|
+
noCode?: undefined;
|
|
700
720
|
defaultValue?: undefined;
|
|
701
721
|
} | {
|
|
702
722
|
name: string;
|
|
@@ -707,6 +727,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
707
727
|
gridInfo: string;
|
|
708
728
|
defaultValue: string;
|
|
709
729
|
reference: string;
|
|
730
|
+
noCode?: undefined;
|
|
710
731
|
})[];
|
|
711
732
|
};
|
|
712
733
|
AdaptableQuery: {
|
|
@@ -811,6 +832,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
811
832
|
isOptional: boolean;
|
|
812
833
|
})[];
|
|
813
834
|
};
|
|
835
|
+
AdaptableStateReloadedInfo: {
|
|
836
|
+
name: string;
|
|
837
|
+
kind: string;
|
|
838
|
+
description: string;
|
|
839
|
+
properties: ({
|
|
840
|
+
name: string;
|
|
841
|
+
kind: string;
|
|
842
|
+
description: string;
|
|
843
|
+
uiLabel: string;
|
|
844
|
+
reference?: undefined;
|
|
845
|
+
} | {
|
|
846
|
+
name: string;
|
|
847
|
+
kind: string;
|
|
848
|
+
description: string;
|
|
849
|
+
uiLabel: string;
|
|
850
|
+
reference: string;
|
|
851
|
+
})[];
|
|
852
|
+
};
|
|
814
853
|
AdaptableStatusBar: {
|
|
815
854
|
name: string;
|
|
816
855
|
kind: string;
|
|
@@ -2773,8 +2812,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2773
2812
|
uiLabel: string;
|
|
2774
2813
|
isOptional: boolean;
|
|
2775
2814
|
gridInfo: string;
|
|
2815
|
+
noCode: string;
|
|
2776
2816
|
defaultValue: string;
|
|
2777
2817
|
reference?: undefined;
|
|
2818
|
+
} | {
|
|
2819
|
+
name: string;
|
|
2820
|
+
kind: string;
|
|
2821
|
+
description: string;
|
|
2822
|
+
uiLabel: string;
|
|
2823
|
+
isOptional: boolean;
|
|
2824
|
+
gridInfo: string;
|
|
2825
|
+
defaultValue: string;
|
|
2826
|
+
noCode?: undefined;
|
|
2827
|
+
reference?: undefined;
|
|
2778
2828
|
} | {
|
|
2779
2829
|
name: string;
|
|
2780
2830
|
kind: string;
|
|
@@ -2784,6 +2834,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2784
2834
|
defaultValue: string;
|
|
2785
2835
|
reference: string;
|
|
2786
2836
|
gridInfo?: undefined;
|
|
2837
|
+
noCode?: undefined;
|
|
2787
2838
|
} | {
|
|
2788
2839
|
name: string;
|
|
2789
2840
|
kind: string;
|
|
@@ -2792,6 +2843,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2792
2843
|
isOptional: boolean;
|
|
2793
2844
|
defaultValue: string;
|
|
2794
2845
|
gridInfo?: undefined;
|
|
2846
|
+
noCode?: undefined;
|
|
2795
2847
|
reference?: undefined;
|
|
2796
2848
|
} | {
|
|
2797
2849
|
name: string;
|
|
@@ -2801,7 +2853,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2801
2853
|
isOptional: boolean;
|
|
2802
2854
|
reference: string;
|
|
2803
2855
|
gridInfo?: undefined;
|
|
2856
|
+
noCode?: undefined;
|
|
2804
2857
|
defaultValue?: undefined;
|
|
2858
|
+
} | {
|
|
2859
|
+
name: string;
|
|
2860
|
+
kind: string;
|
|
2861
|
+
description: string;
|
|
2862
|
+
uiLabel: string;
|
|
2863
|
+
isOptional: boolean;
|
|
2864
|
+
noCode: string;
|
|
2865
|
+
defaultValue: string;
|
|
2866
|
+
gridInfo?: undefined;
|
|
2867
|
+
reference?: undefined;
|
|
2805
2868
|
})[];
|
|
2806
2869
|
};
|
|
2807
2870
|
FilterPermittedValues: {
|
|
@@ -3161,6 +3224,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3161
3224
|
isOptional: boolean;
|
|
3162
3225
|
defaultValue: string;
|
|
3163
3226
|
gridInfo?: undefined;
|
|
3227
|
+
noCode?: undefined;
|
|
3164
3228
|
} | {
|
|
3165
3229
|
name: string;
|
|
3166
3230
|
kind: string;
|
|
@@ -3169,6 +3233,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3169
3233
|
isOptional: boolean;
|
|
3170
3234
|
defaultValue?: undefined;
|
|
3171
3235
|
gridInfo?: undefined;
|
|
3236
|
+
noCode?: undefined;
|
|
3237
|
+
} | {
|
|
3238
|
+
name: string;
|
|
3239
|
+
kind: string;
|
|
3240
|
+
description: string;
|
|
3241
|
+
uiLabel: string;
|
|
3242
|
+
isOptional: boolean;
|
|
3243
|
+
gridInfo: string;
|
|
3244
|
+
defaultValue: string;
|
|
3245
|
+
noCode?: undefined;
|
|
3172
3246
|
} | {
|
|
3173
3247
|
name: string;
|
|
3174
3248
|
kind: string;
|
|
@@ -3176,6 +3250,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3176
3250
|
uiLabel: string;
|
|
3177
3251
|
isOptional: boolean;
|
|
3178
3252
|
gridInfo: string;
|
|
3253
|
+
noCode: string;
|
|
3179
3254
|
defaultValue: string;
|
|
3180
3255
|
})[];
|
|
3181
3256
|
};
|
|
@@ -3618,6 +3693,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3618
3693
|
kind: string;
|
|
3619
3694
|
description: string;
|
|
3620
3695
|
properties: ({
|
|
3696
|
+
name: string;
|
|
3697
|
+
kind: string;
|
|
3698
|
+
description: string;
|
|
3699
|
+
uiLabel: string;
|
|
3700
|
+
isOptional: boolean;
|
|
3701
|
+
gridInfo: string;
|
|
3702
|
+
noCode: string;
|
|
3703
|
+
defaultValue: string;
|
|
3704
|
+
reference?: undefined;
|
|
3705
|
+
} | {
|
|
3621
3706
|
name: string;
|
|
3622
3707
|
kind: string;
|
|
3623
3708
|
description: string;
|
|
@@ -3625,6 +3710,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3625
3710
|
isOptional: boolean;
|
|
3626
3711
|
gridInfo: string;
|
|
3627
3712
|
defaultValue: string;
|
|
3713
|
+
noCode?: undefined;
|
|
3628
3714
|
reference?: undefined;
|
|
3629
3715
|
} | {
|
|
3630
3716
|
name: string;
|
|
@@ -3634,6 +3720,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3634
3720
|
isOptional: boolean;
|
|
3635
3721
|
reference: string;
|
|
3636
3722
|
gridInfo?: undefined;
|
|
3723
|
+
noCode?: undefined;
|
|
3637
3724
|
defaultValue?: undefined;
|
|
3638
3725
|
})[];
|
|
3639
3726
|
};
|