@adaptabletools/adaptable 11.2.2 → 11.2.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.
- package/base.css +24 -1
- package/bundle.cjs.js +103 -103
- package/index.css +28 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +7 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +33 -3
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +9 -0
- package/src/AdaptableOptions/FormatColumnOptions.js +2 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +36 -11
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +0 -1
- package/src/Api/ColumnApi.d.ts +4 -1
- package/src/Api/FinanceApi.d.ts +3 -2
- package/src/Api/FormatColumnApi.d.ts +22 -1
- package/src/Api/GridApi.d.ts +8 -1
- package/src/Api/Implementation/ColumnApiImpl.js +6 -2
- package/src/Api/Implementation/FilterApiImpl.js +2 -7
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +5 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +29 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +3 -3
- package/src/Api/Implementation/GridApiImpl.d.ts +3 -0
- package/src/Api/Implementation/GridApiImpl.js +3 -0
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -0
- package/src/Api/Implementation/InternalApiImpl.js +49 -28
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +6 -0
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -1
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +2 -1
- package/src/Api/Implementation/TeamSharingApiImpl.js +11 -2
- package/src/Api/Implementation/ThemeApiImpl.js +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.js +16 -4
- package/src/Api/InternalApi.d.ts +2 -0
- package/src/Api/LayoutApi.d.ts +6 -1
- package/src/Api/TeamSharingApi.d.ts +10 -1
- package/src/Api/UserInterfaceApi.d.ts +6 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +4 -0
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +8 -3
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +5 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +17 -1
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +5 -1
- package/src/Redux/ActionsReducers/TeamSharingRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/TeamSharingRedux.js +4 -4
- package/src/Strategy/DashboardModule.js +3 -0
- package/src/Strategy/FilterModule.d.ts +7 -0
- package/src/Strategy/FilterModule.js +11 -2
- package/src/Strategy/FormatColumnModule.js +1 -1
- package/src/Strategy/Interface/IModule.d.ts +5 -0
- package/src/Strategy/LayoutModule.js +7 -7
- package/src/Strategy/Utilities/getObjectTagsViewItems.js +1 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -1
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +4 -3
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +16 -36
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +2 -4
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +24 -14
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +32 -9
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +2 -2
- package/src/View/AdaptableView.js +8 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.d.ts +13 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +41 -0
- package/src/View/Components/EntityRulesEditor/index.js +2 -1
- package/src/View/Components/ExpressionWizard.js +2 -1
- package/src/View/Components/FilterForm/FilterForm.d.ts +4 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -1
- package/src/View/Components/Popups/AdaptableToaster.js +1 -0
- package/src/View/Components/TagValueSelector/index.js +4 -3
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +2 -2
- package/src/View/Export/ReportExportDropdown.js +1 -1
- package/src/View/Filter/ActiveFiltersPanel.d.ts +1 -13
- package/src/View/Filter/ActiveFiltersPanel.js +8 -31
- package/src/View/Filter/FilterStatusBarSubPanelPopover.js +1 -10
- package/src/View/Filter/FilterViewPanel.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +3 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +53 -22
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +3 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleWizard.js +4 -4
- package/src/agGrid/Adaptable.d.ts +3 -0
- package/src/agGrid/Adaptable.js +31 -22
- package/src/agGrid/agGridHelper.js +1 -0
- package/src/components/ExpressionEditor/BaseEditorInput.js +8 -1
- package/src/components/ExpressionEditor/index.js +54 -5
- package/src/metamodel/adaptable.metamodel.d.ts +49 -20
- package/src/metamodel/adaptable.metamodel.js +158 -31
- package/src/parser/src/types.d.ts +1 -1
- package/src/types.d.ts +5 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -240,7 +240,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
240
240
|
description: string;
|
|
241
241
|
uiLabel: string;
|
|
242
242
|
isOptional: boolean;
|
|
243
|
-
reference
|
|
243
|
+
reference?: undefined;
|
|
244
244
|
})[];
|
|
245
245
|
};
|
|
246
246
|
AdaptableFlashingCell: {
|
|
@@ -385,6 +385,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
385
385
|
reference: string;
|
|
386
386
|
})[];
|
|
387
387
|
};
|
|
388
|
+
AdaptableObjectTag: {
|
|
389
|
+
name: string;
|
|
390
|
+
kind: string;
|
|
391
|
+
description: string;
|
|
392
|
+
};
|
|
388
393
|
AdaptableOptions: {
|
|
389
394
|
name: string;
|
|
390
395
|
kind: string;
|
|
@@ -897,6 +902,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
897
902
|
isOptional: boolean;
|
|
898
903
|
}[];
|
|
899
904
|
};
|
|
905
|
+
AutoGenerateTagsForLayoutsContext: {
|
|
906
|
+
name: string;
|
|
907
|
+
kind: string;
|
|
908
|
+
description: string;
|
|
909
|
+
properties: {
|
|
910
|
+
name: string;
|
|
911
|
+
kind: string;
|
|
912
|
+
description: string;
|
|
913
|
+
uiLabel: string;
|
|
914
|
+
}[];
|
|
915
|
+
};
|
|
900
916
|
BaseContext: {
|
|
901
917
|
name: string;
|
|
902
918
|
kind: string;
|
|
@@ -1506,6 +1522,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1506
1522
|
isOptional?: undefined;
|
|
1507
1523
|
})[];
|
|
1508
1524
|
};
|
|
1525
|
+
CustomFDC3Column: {
|
|
1526
|
+
name: string;
|
|
1527
|
+
kind: string;
|
|
1528
|
+
description: string;
|
|
1529
|
+
properties: {
|
|
1530
|
+
name: string;
|
|
1531
|
+
kind: string;
|
|
1532
|
+
description: string;
|
|
1533
|
+
uiLabel: string;
|
|
1534
|
+
}[];
|
|
1535
|
+
};
|
|
1536
|
+
CustomFDC3Intent: {
|
|
1537
|
+
name: string;
|
|
1538
|
+
kind: string;
|
|
1539
|
+
description: string;
|
|
1540
|
+
};
|
|
1509
1541
|
CustomReport: {
|
|
1510
1542
|
name: string;
|
|
1511
1543
|
kind: string;
|
|
@@ -2037,8 +2069,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2037
2069
|
kind: string;
|
|
2038
2070
|
description: string;
|
|
2039
2071
|
uiLabel: string;
|
|
2040
|
-
isOptional: boolean;
|
|
2041
2072
|
reference: string;
|
|
2073
|
+
isOptional?: undefined;
|
|
2042
2074
|
} | {
|
|
2043
2075
|
name: string;
|
|
2044
2076
|
kind: string;
|
|
@@ -2051,15 +2083,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2051
2083
|
kind: string;
|
|
2052
2084
|
description: string;
|
|
2053
2085
|
uiLabel: string;
|
|
2054
|
-
reference
|
|
2086
|
+
reference?: undefined;
|
|
2055
2087
|
isOptional?: undefined;
|
|
2056
2088
|
} | {
|
|
2057
2089
|
name: string;
|
|
2058
2090
|
kind: string;
|
|
2059
2091
|
description: string;
|
|
2060
2092
|
uiLabel: string;
|
|
2061
|
-
isOptional
|
|
2062
|
-
reference
|
|
2093
|
+
isOptional: boolean;
|
|
2094
|
+
reference: string;
|
|
2063
2095
|
})[];
|
|
2064
2096
|
};
|
|
2065
2097
|
ExpressionFunction: {
|
|
@@ -2845,11 +2877,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2845
2877
|
kind: string;
|
|
2846
2878
|
description: string;
|
|
2847
2879
|
};
|
|
2848
|
-
IsObjectAvailableInLayoutContext: {
|
|
2849
|
-
name: string;
|
|
2850
|
-
kind: string;
|
|
2851
|
-
description: string;
|
|
2852
|
-
};
|
|
2853
2880
|
Layout: {
|
|
2854
2881
|
name: string;
|
|
2855
2882
|
kind: string;
|
|
@@ -2884,6 +2911,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2884
2911
|
kind: string;
|
|
2885
2912
|
description: string;
|
|
2886
2913
|
};
|
|
2914
|
+
LayoutAvailableContext: {
|
|
2915
|
+
name: string;
|
|
2916
|
+
kind: string;
|
|
2917
|
+
description: string;
|
|
2918
|
+
properties: {
|
|
2919
|
+
name: string;
|
|
2920
|
+
kind: string;
|
|
2921
|
+
description: string;
|
|
2922
|
+
uiLabel: string;
|
|
2923
|
+
reference: string;
|
|
2924
|
+
}[];
|
|
2925
|
+
};
|
|
2887
2926
|
LayoutChangedInfo: {
|
|
2888
2927
|
name: string;
|
|
2889
2928
|
kind: string;
|
|
@@ -2907,15 +2946,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2907
2946
|
kind: string;
|
|
2908
2947
|
description: string;
|
|
2909
2948
|
properties: ({
|
|
2910
|
-
name: string;
|
|
2911
|
-
kind: string;
|
|
2912
|
-
description: string;
|
|
2913
|
-
uiLabel: string;
|
|
2914
|
-
isOptional: boolean;
|
|
2915
|
-
gridInfo?: undefined;
|
|
2916
|
-
defaultValue?: undefined;
|
|
2917
|
-
reference?: undefined;
|
|
2918
|
-
} | {
|
|
2919
2949
|
name: string;
|
|
2920
2950
|
kind: string;
|
|
2921
2951
|
description: string;
|
|
@@ -3481,7 +3511,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3481
3511
|
kind: string;
|
|
3482
3512
|
description: string;
|
|
3483
3513
|
uiLabel: string;
|
|
3484
|
-
reference: string;
|
|
3485
3514
|
}[];
|
|
3486
3515
|
};
|
|
3487
3516
|
ReactFrameworkComponent: {
|
|
@@ -554,6 +554,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
554
554
|
"isOptional": true,
|
|
555
555
|
"reference": "unknown"
|
|
556
556
|
},
|
|
557
|
+
{
|
|
558
|
+
"name": "field",
|
|
559
|
+
"kind": "string",
|
|
560
|
+
"description": "Is the field of the row to get the cell data from",
|
|
561
|
+
"uiLabel": "Field",
|
|
562
|
+
"isOptional": true
|
|
563
|
+
},
|
|
557
564
|
{
|
|
558
565
|
"name": "filterable",
|
|
559
566
|
"kind": "boolean",
|
|
@@ -734,11 +741,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
734
741
|
},
|
|
735
742
|
{
|
|
736
743
|
"name": "intent",
|
|
737
|
-
"kind": "
|
|
744
|
+
"kind": "unknown",
|
|
738
745
|
"description": "The FDC3 Intent which caused Event to fire (if type is `RaiseIntent`)",
|
|
739
746
|
"uiLabel": "Intent",
|
|
740
|
-
"isOptional": true
|
|
741
|
-
"reference": "FDC3Intent"
|
|
747
|
+
"isOptional": true
|
|
742
748
|
}
|
|
743
749
|
]
|
|
744
750
|
},
|
|
@@ -986,7 +992,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
986
992
|
{
|
|
987
993
|
"name": "Tags",
|
|
988
994
|
"kind": "unknown",
|
|
989
|
-
"description": "List of
|
|
995
|
+
"description": "List of Tags associated with the Object; often used for (but not limited to) managing Layout object scope",
|
|
990
996
|
"uiLabel": "Tags",
|
|
991
997
|
"isOptional": true
|
|
992
998
|
},
|
|
@@ -1000,6 +1006,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1000
1006
|
}
|
|
1001
1007
|
]
|
|
1002
1008
|
},
|
|
1009
|
+
"AdaptableObjectTag": {
|
|
1010
|
+
"name": "AdaptableObjectTag",
|
|
1011
|
+
"kind": "TypeAlias",
|
|
1012
|
+
"description": "Object Tag - defined as a label and a value"
|
|
1013
|
+
},
|
|
1003
1014
|
"AdaptableOptions": {
|
|
1004
1015
|
"name": "AdaptableOptions",
|
|
1005
1016
|
"kind": "Interface",
|
|
@@ -1127,6 +1138,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1127
1138
|
"gridInfo": "container",
|
|
1128
1139
|
"reference": "FlashingCellOptions"
|
|
1129
1140
|
},
|
|
1141
|
+
{
|
|
1142
|
+
"name": "formatColumnOptions",
|
|
1143
|
+
"kind": "REFERENCE",
|
|
1144
|
+
"description": "Options for managing format columns",
|
|
1145
|
+
"uiLabel": "Format Column Options",
|
|
1146
|
+
"isOptional": true,
|
|
1147
|
+
"gridInfo": "container",
|
|
1148
|
+
"reference": "unknown"
|
|
1149
|
+
},
|
|
1130
1150
|
{
|
|
1131
1151
|
"name": "generalOptions",
|
|
1132
1152
|
"kind": "REFERENCE",
|
|
@@ -2245,6 +2265,25 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2245
2265
|
}
|
|
2246
2266
|
]
|
|
2247
2267
|
},
|
|
2268
|
+
"AutoGenerateTagsForLayoutsContext": {
|
|
2269
|
+
"name": "AutoGenerateTagsForLayoutsContext",
|
|
2270
|
+
"kind": "Interface",
|
|
2271
|
+
"description": "Context for `LayoutOptions.autoGenerateTagsForLayouts` method",
|
|
2272
|
+
"properties": [
|
|
2273
|
+
{
|
|
2274
|
+
"name": "layouts",
|
|
2275
|
+
"kind": "unknown",
|
|
2276
|
+
"description": "Layouts currently in Adaptable State",
|
|
2277
|
+
"uiLabel": "Layouts"
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"name": "objectTags",
|
|
2281
|
+
"kind": "unknown",
|
|
2282
|
+
"description": "Object Tags provided in User Interface Options",
|
|
2283
|
+
"uiLabel": "Object Tags"
|
|
2284
|
+
}
|
|
2285
|
+
]
|
|
2286
|
+
},
|
|
2248
2287
|
"BaseContext": {
|
|
2249
2288
|
"name": "BaseContext",
|
|
2250
2289
|
"kind": "Interface",
|
|
@@ -3993,6 +4032,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3993
4032
|
}
|
|
3994
4033
|
]
|
|
3995
4034
|
},
|
|
4035
|
+
"CustomFDC3Column": {
|
|
4036
|
+
"name": "CustomFDC3Column",
|
|
4037
|
+
"kind": "Interface",
|
|
4038
|
+
"description": "A Column which will be defined as Custom FDC3 (can be any datatype)",
|
|
4039
|
+
"properties": [
|
|
4040
|
+
{
|
|
4041
|
+
"name": "createContext",
|
|
4042
|
+
"kind": "unknown",
|
|
4043
|
+
"description": "Function which creates FDC3 context for the current column and row",
|
|
4044
|
+
"uiLabel": "Create Context"
|
|
4045
|
+
},
|
|
4046
|
+
{
|
|
4047
|
+
"name": "intents",
|
|
4048
|
+
"kind": "unknown",
|
|
4049
|
+
"description": "Custom FDC3 Intents available to the column",
|
|
4050
|
+
"uiLabel": "Intents"
|
|
4051
|
+
}
|
|
4052
|
+
]
|
|
4053
|
+
},
|
|
4054
|
+
"CustomFDC3Intent": {
|
|
4055
|
+
"name": "CustomFDC3Intent",
|
|
4056
|
+
"kind": "TypeAlias",
|
|
4057
|
+
"description": "Custom FDC3 Intent - just a string value"
|
|
4058
|
+
},
|
|
3996
4059
|
"CustomReport": {
|
|
3997
4060
|
"name": "CustomReport",
|
|
3998
4061
|
"kind": "Interface",
|
|
@@ -5554,7 +5617,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5554
5617
|
"kind": "REFERENCE",
|
|
5555
5618
|
"description": "Main Adaptable Api object",
|
|
5556
5619
|
"uiLabel": "Api",
|
|
5557
|
-
"isOptional": true,
|
|
5558
5620
|
"reference": "AdaptableApi"
|
|
5559
5621
|
},
|
|
5560
5622
|
{
|
|
@@ -5771,6 +5833,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5771
5833
|
"description": "Id of Column defined as FDC3",
|
|
5772
5834
|
"uiLabel": "Column Id"
|
|
5773
5835
|
},
|
|
5836
|
+
{
|
|
5837
|
+
"name": "getIconForIntent",
|
|
5838
|
+
"kind": "unknown",
|
|
5839
|
+
"description": "Returns the icon to display in the Raise Intent Context Menu Item",
|
|
5840
|
+
"uiLabel": "Get Icon For Intent",
|
|
5841
|
+
"isOptional": true
|
|
5842
|
+
},
|
|
5774
5843
|
{
|
|
5775
5844
|
"name": "intentContextMenuLabel",
|
|
5776
5845
|
"kind": "unknown",
|
|
@@ -6764,6 +6833,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6764
6833
|
"description": "Returns any ColumnIds referenced in a Column Comparison",
|
|
6765
6834
|
"uiLabel": "Get Column Ids From Column Comparison"
|
|
6766
6835
|
},
|
|
6836
|
+
{
|
|
6837
|
+
"name": "getDateFormattedValue",
|
|
6838
|
+
"kind": "function",
|
|
6839
|
+
"description": "Format value according to format options.",
|
|
6840
|
+
"uiLabel": "Get Date Formatted Value"
|
|
6841
|
+
},
|
|
6767
6842
|
{
|
|
6768
6843
|
"name": "getFormatColumnById",
|
|
6769
6844
|
"kind": "function",
|
|
@@ -6812,6 +6887,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6812
6887
|
"description": "Gets Format Column if any for given Column which includes Style element",
|
|
6813
6888
|
"uiLabel": "Get Format Column With Style For Column"
|
|
6814
6889
|
},
|
|
6890
|
+
{
|
|
6891
|
+
"name": "getNumberFormattedValue",
|
|
6892
|
+
"kind": "function",
|
|
6893
|
+
"description": "Format value according to format options.",
|
|
6894
|
+
"uiLabel": "Get Number Formatted Value"
|
|
6895
|
+
},
|
|
6815
6896
|
{
|
|
6816
6897
|
"name": "getNumericStyleMaxValue",
|
|
6817
6898
|
"kind": "function",
|
|
@@ -6824,6 +6905,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6824
6905
|
"description": "Gets the Minimum Value to display for a Numeric Style",
|
|
6825
6906
|
"uiLabel": "Get Numeric Style Min Value"
|
|
6826
6907
|
},
|
|
6908
|
+
{
|
|
6909
|
+
"name": "getStringFormattedValue",
|
|
6910
|
+
"kind": "function",
|
|
6911
|
+
"description": "Format value according to format options.",
|
|
6912
|
+
"uiLabel": "Get String Formatted Value"
|
|
6913
|
+
},
|
|
6827
6914
|
{
|
|
6828
6915
|
"name": "hasStyleFormatColumns",
|
|
6829
6916
|
"kind": "function",
|
|
@@ -7523,6 +7610,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7523
7610
|
"description": "Returns Ag Grid instance (passed into Adaptable Options at start-up)",
|
|
7524
7611
|
"uiLabel": "Get Ag Grid Instance"
|
|
7525
7612
|
},
|
|
7613
|
+
{
|
|
7614
|
+
"name": "getAllRowNodes",
|
|
7615
|
+
"kind": "function",
|
|
7616
|
+
"description": "Retrieves all Row Nodes currently in the Grid (by default excluding the group rows)",
|
|
7617
|
+
"uiLabel": "Get All Row Nodes"
|
|
7618
|
+
},
|
|
7526
7619
|
{
|
|
7527
7620
|
"name": "getCellDisplayValue",
|
|
7528
7621
|
"kind": "function",
|
|
@@ -7694,7 +7787,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7694
7787
|
{
|
|
7695
7788
|
"name": "getVisibleRowNodes",
|
|
7696
7789
|
"kind": "function",
|
|
7697
|
-
"description": "Retrieves all Row Nodes currently in the Grid (i.e.
|
|
7790
|
+
"description": "Retrieves all filtered Row Nodes currently in the Grid (i.e. after applying the current filter)",
|
|
7698
7791
|
"uiLabel": "Get Visible Row Nodes"
|
|
7699
7792
|
},
|
|
7700
7793
|
{
|
|
@@ -8508,11 +8601,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8508
8601
|
"kind": "Interface",
|
|
8509
8602
|
"description": "Internal State used by AdapTable for managing the ipushpull plugin"
|
|
8510
8603
|
},
|
|
8511
|
-
"IsObjectAvailableInLayoutContext": {
|
|
8512
|
-
"name": "IsObjectAvailableInLayoutContext",
|
|
8513
|
-
"kind": "Interface",
|
|
8514
|
-
"description": "Context for `LayoutOptions.isObjectAvailableInLayout` method"
|
|
8515
|
-
},
|
|
8516
8604
|
"Layout": {
|
|
8517
8605
|
"name": "Layout",
|
|
8518
8606
|
"kind": "Interface",
|
|
@@ -8764,6 +8852,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8764
8852
|
"description": "Checks if the given Layout is Default Layout",
|
|
8765
8853
|
"uiLabel": "Is Default Layout"
|
|
8766
8854
|
},
|
|
8855
|
+
{
|
|
8856
|
+
"name": "isObjectAvailableInCurrentLayout",
|
|
8857
|
+
"kind": "function",
|
|
8858
|
+
"description": "Does an object's Tags include the Current Layout",
|
|
8859
|
+
"uiLabel": "Is Object Available In Current Layout"
|
|
8860
|
+
},
|
|
8767
8861
|
{
|
|
8768
8862
|
"name": "saveCurrentLayout",
|
|
8769
8863
|
"kind": "function",
|
|
@@ -8817,7 +8911,35 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8817
8911
|
"LayoutAssociatedObject": {
|
|
8818
8912
|
"name": "LayoutAssociatedObject",
|
|
8819
8913
|
"kind": "TypeAlias",
|
|
8820
|
-
"description": "Types of
|
|
8914
|
+
"description": "Types of Adaptable Objects that can be associated with a Layout"
|
|
8915
|
+
},
|
|
8916
|
+
"LayoutAvailableContext": {
|
|
8917
|
+
"name": "LayoutAvailableContext",
|
|
8918
|
+
"kind": "Interface",
|
|
8919
|
+
"description": "Context for `LayoutOptions.isObjectAvailableInLayout` functions",
|
|
8920
|
+
"properties": [
|
|
8921
|
+
{
|
|
8922
|
+
"name": "adaptableObject",
|
|
8923
|
+
"kind": "REFERENCE",
|
|
8924
|
+
"description": "Object being checked",
|
|
8925
|
+
"uiLabel": "Adaptable Object",
|
|
8926
|
+
"reference": "LayoutAssociatedObject"
|
|
8927
|
+
},
|
|
8928
|
+
{
|
|
8929
|
+
"name": "layout",
|
|
8930
|
+
"kind": "REFERENCE",
|
|
8931
|
+
"description": "Current Layout",
|
|
8932
|
+
"uiLabel": "Layout",
|
|
8933
|
+
"reference": "Layout"
|
|
8934
|
+
},
|
|
8935
|
+
{
|
|
8936
|
+
"name": "module",
|
|
8937
|
+
"kind": "REFERENCE",
|
|
8938
|
+
"description": "Current Adaptable Module",
|
|
8939
|
+
"uiLabel": "Module",
|
|
8940
|
+
"reference": "AdaptableModule"
|
|
8941
|
+
}
|
|
8942
|
+
]
|
|
8821
8943
|
},
|
|
8822
8944
|
"LayoutChangedInfo": {
|
|
8823
8945
|
"name": "LayoutChangedInfo",
|
|
@@ -8850,13 +8972,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8850
8972
|
"kind": "Interface",
|
|
8851
8973
|
"description": "Options for configuring Layouts; these manage Column visibility, order, sorting, grouping and width",
|
|
8852
8974
|
"properties": [
|
|
8853
|
-
{
|
|
8854
|
-
"name": "autoGenerateTagsForLayouts",
|
|
8855
|
-
"kind": "unknown",
|
|
8856
|
-
"description": "Automatically generate a tag for each existing layout",
|
|
8857
|
-
"uiLabel": "Auto Generate Tags For Layouts",
|
|
8858
|
-
"isOptional": true
|
|
8859
|
-
},
|
|
8860
8975
|
{
|
|
8861
8976
|
"name": "autoSaveLayouts",
|
|
8862
8977
|
"kind": "boolean",
|
|
@@ -8912,17 +9027,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8912
9027
|
"defaultValue": "false"
|
|
8913
9028
|
},
|
|
8914
9029
|
{
|
|
8915
|
-
"name": "
|
|
8916
|
-
"kind": "
|
|
8917
|
-
"description": "
|
|
8918
|
-
"uiLabel": "
|
|
8919
|
-
"isOptional": true
|
|
9030
|
+
"name": "layoutTagOptions",
|
|
9031
|
+
"kind": "REFERENCE",
|
|
9032
|
+
"description": "Options for leveraging Object Tags to extend Layouts",
|
|
9033
|
+
"uiLabel": "Layout Tag Options",
|
|
9034
|
+
"isOptional": true,
|
|
9035
|
+
"reference": "unknown"
|
|
8920
9036
|
},
|
|
8921
9037
|
{
|
|
8922
|
-
"name": "
|
|
9038
|
+
"name": "layoutViewOptions",
|
|
8923
9039
|
"kind": "REFERENCE",
|
|
8924
9040
|
"description": "Customize how Layouts are displayed in Settings Panel",
|
|
8925
|
-
"uiLabel": "View Options",
|
|
9041
|
+
"uiLabel": "Layout View Options",
|
|
8926
9042
|
"isOptional": true,
|
|
8927
9043
|
"reference": "LayoutViewOptions"
|
|
8928
9044
|
}
|
|
@@ -8957,7 +9073,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8957
9073
|
{
|
|
8958
9074
|
"name": "maxColumnsToDisplay",
|
|
8959
9075
|
"kind": "number",
|
|
8960
|
-
"description": "How many
|
|
9076
|
+
"description": "How many Column Names to display in inline Layout preview",
|
|
8961
9077
|
"uiLabel": "Max Columns To Display",
|
|
8962
9078
|
"isOptional": true,
|
|
8963
9079
|
"defaultValue": "10"
|
|
@@ -10414,10 +10530,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10414
10530
|
"properties": [
|
|
10415
10531
|
{
|
|
10416
10532
|
"name": "intent",
|
|
10417
|
-
"kind": "
|
|
10533
|
+
"kind": "unknown",
|
|
10418
10534
|
"description": "FDC3 Intent that was raised",
|
|
10419
|
-
"uiLabel": "Intent"
|
|
10420
|
-
"reference": "FDC3Intent"
|
|
10535
|
+
"uiLabel": "Intent"
|
|
10421
10536
|
}
|
|
10422
10537
|
]
|
|
10423
10538
|
},
|
|
@@ -11773,6 +11888,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11773
11888
|
"description": "Whether Team Sharing is Activated",
|
|
11774
11889
|
"uiLabel": "Is Team Sharing Activated"
|
|
11775
11890
|
},
|
|
11891
|
+
{
|
|
11892
|
+
"name": "shareEntity",
|
|
11893
|
+
"kind": "function",
|
|
11894
|
+
"description": "Puts an Adaptable Object into Team Share",
|
|
11895
|
+
"uiLabel": "Share Entity"
|
|
11896
|
+
},
|
|
11776
11897
|
{
|
|
11777
11898
|
"name": "showTeamSharingPopup",
|
|
11778
11899
|
"kind": "function",
|
|
@@ -12208,10 +12329,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12208
12329
|
"description": "Adds menu item to Context Menu",
|
|
12209
12330
|
"uiLabel": "Add Context Menu Item"
|
|
12210
12331
|
},
|
|
12332
|
+
{
|
|
12333
|
+
"name": "getAdaptableObjectTags",
|
|
12334
|
+
"kind": "function",
|
|
12335
|
+
"description": "Retrieves any Object Tags (provided in User Interface Options)",
|
|
12336
|
+
"uiLabel": "Get Adaptable Object Tags"
|
|
12337
|
+
},
|
|
12211
12338
|
{
|
|
12212
12339
|
"name": "getAllActionColumn",
|
|
12213
12340
|
"kind": "function",
|
|
12214
|
-
"description": "Retrieves any Action Columns in User Interface Options",
|
|
12341
|
+
"description": "Retrieves any Action Columns (provided in User Interface Options)",
|
|
12215
12342
|
"uiLabel": "Get All Action Column"
|
|
12216
12343
|
},
|
|
12217
12344
|
{
|
package/src/types.d.ts
CHANGED
|
@@ -17,9 +17,9 @@ export type { ExportOptions, SystemExportDestination, SystemExportDestinations,
|
|
|
17
17
|
export type { GeneralOptions, ColumnValuesComparer } from './AdaptableOptions/GeneralOptions';
|
|
18
18
|
export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
|
|
19
19
|
export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
|
|
20
|
-
export type { LayoutOptions, LayoutViewOptions,
|
|
20
|
+
export type { LayoutOptions, LayoutViewOptions, LayoutTagOptions, LayoutAvailableContext, AutoGenerateTagsForLayoutsContext, LayoutAssociatedObject, } from './AdaptableOptions/LayoutOptions';
|
|
21
21
|
export type { OpenFinPluginOptions } from './AdaptableOptions/OpenFinPluginOptions';
|
|
22
|
-
export type { FinancePluginOptions, WeightedAverageColumn, FDC3Column, InstrumentColumn, PositionColumn, CountryColumn, InstrumentIntent, InstrumentIntents, PositionIntent, PositionIntents, ContactIntent, ContactIntents, CountryIntent, CountryIntents, ContactColumn, OrganizationColumn, OrganizationIntent, OrganizationIntents, FDC3Intent, RaiseFDC3IntentContext, } from './AdaptableOptions/FinancePluginOptions';
|
|
22
|
+
export type { FinancePluginOptions, WeightedAverageColumn, FDC3Column, InstrumentColumn, PositionColumn, CountryColumn, InstrumentIntent, InstrumentIntents, PositionIntent, PositionIntents, ContactIntent, ContactIntents, CountryIntent, CountryIntents, ContactColumn, OrganizationColumn, OrganizationIntent, OrganizationIntents, FDC3Intent, RaiseFDC3IntentContext, CustomFDC3Column, CustomFDC3Intent, } from './AdaptableOptions/FinancePluginOptions';
|
|
23
23
|
export type { DateInputOptions } from './AdaptableOptions/DateInputOptions';
|
|
24
24
|
export type { FilterOptions } from './AdaptableOptions/FilterOptions';
|
|
25
25
|
export type { SearchOptions } from './AdaptableOptions/SearchOptions';
|
|
@@ -108,11 +108,11 @@ export type { SystemStatusMessageInfo } from './PredefinedConfig/Common/SystemSt
|
|
|
108
108
|
export type { AlternativeModuleName } from './PredefinedConfig/Common/AlternativeModuleName';
|
|
109
109
|
export type { AdaptableFormat, DateFormatterOptions, NumberFormatterOptions, StringFormatterOptions, } from './PredefinedConfig/Common/AdaptableFormat';
|
|
110
110
|
export type { AdaptableMessageType } from './PredefinedConfig/Common/AdaptableMessageType';
|
|
111
|
-
export type { AdaptableObject } from './PredefinedConfig/Common/AdaptableObject';
|
|
111
|
+
export type { AdaptableObject, AdaptableObjectTag, } from './PredefinedConfig/Common/AdaptableObject';
|
|
112
112
|
export type { SuspendableObject } from './PredefinedConfig/Common/SuspendableObject';
|
|
113
113
|
export type { AdaptableQuery, AdaptableAggregatedBooleanQuery, AdaptableAggregatedScalarQuery, AdaptableBooleanQuery, AdaptableObservableQuery, AdaptableScalarQuery, } from './PredefinedConfig/Common/AdaptableQuery';
|
|
114
114
|
export type { AdaptablePredicate, AdaptablePredicateDef, ModuleScope, PredicateDefHandlerParams, PredicateDefInput, PredicateDefToStringParams, } from './PredefinedConfig/Common/AdaptablePredicate';
|
|
115
|
-
export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, ContextType, } from './PredefinedConfig/Common/FDC3Context';
|
|
115
|
+
export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, ContextType, CustomFDC3Context, } from './PredefinedConfig/Common/FDC3Context';
|
|
116
116
|
export type { AdaptableScope } from './PredefinedConfig/Common/AdaptableScope';
|
|
117
117
|
export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
|
|
118
118
|
export type { AdaptableIcon } from './PredefinedConfig/Common/AdaptableIcon';
|
|
@@ -153,7 +153,7 @@ export type { SelectedCellInfo } from './PredefinedConfig/Selection/SelectedCell
|
|
|
153
153
|
export type { SelectedRowInfo } from './PredefinedConfig/Selection/SelectedRowInfo';
|
|
154
154
|
export type { GridCellRange } from './PredefinedConfig/Selection/GridCellRange';
|
|
155
155
|
export type { Shortcut, ShortcutState, ShortcutScopeDataType, } from './PredefinedConfig/ShortcutState';
|
|
156
|
-
export type { SharedEntity, TeamSharingImportInfo, TeamSharingState, SharedEntityType, } from './PredefinedConfig/TeamSharingState';
|
|
156
|
+
export type { SharedEntity, TeamSharingImportInfo, TeamSharingState, SharedEntityType, SharedEntityConfig, } from './PredefinedConfig/TeamSharingState';
|
|
157
157
|
export type { AdaptableTheme, ThemeState } from './PredefinedConfig/ThemeState';
|
|
158
158
|
export type { ToolPanelState, AdaptableToolPanelDefinition, ToolPanelVisibilityMode, } from './PredefinedConfig/ToolPanelState';
|
|
159
159
|
export type { AdaptableFrameworkComponent, AngularFrameworkComponent, ReactFrameworkComponent, } from './AdaptableOptions/AdaptableFrameworkComponent';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "11.2.
|
|
1
|
+
declare const _default: "11.2.4";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '11.2.
|
|
3
|
+
exports.default = '11.2.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|