@adaptabletools/adaptable 18.0.12 → 18.1.0-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.
- package/agGrid.d.ts +4 -3
- package/agGrid.js +4 -3
- package/base.css +7 -2
- package/base.css.map +1 -1
- package/index.css +11 -2
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +1 -1
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +27 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +20 -7
- package/src/AdaptableOptions/ExpressionOptions.d.ts +12 -2
- package/src/AdaptableOptions/Fdc3Options.d.ts +48 -43
- package/src/Api/ColumnApi.d.ts +1 -1
- package/src/Api/Events/Fdc3MessageInfo.d.ts +5 -7
- package/src/Api/ExpressionApi.d.ts +2 -2
- package/src/Api/Fdc3Api.d.ts +14 -19
- package/src/Api/Implementation/ConfigApiImpl.js +3 -0
- package/src/Api/Implementation/Fdc3ApiImpl.d.ts +14 -16
- package/src/Api/Implementation/Fdc3ApiImpl.js +36 -12
- package/src/Api/Internal/AlertInternalApi.d.ts +17 -2
- package/src/Api/Internal/AlertInternalApi.js +196 -25
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +2 -0
- package/src/Api/Internal/ColumnFilterInternalApi.js +20 -0
- package/src/Api/Internal/ExportInternalApi.d.ts +3 -3
- package/src/Api/Internal/ExportInternalApi.js +31 -17
- package/src/Api/Internal/ExpressionInternalApi.d.ts +5 -1
- package/src/Api/Internal/ExpressionInternalApi.js +79 -0
- package/src/Api/Internal/Fdc3InternalApi.d.ts +8 -10
- package/src/Api/Internal/Fdc3InternalApi.js +6 -10
- package/src/PredefinedConfig/Common/AdaptableField.d.ts +18 -0
- package/src/PredefinedConfig/Common/AdaptableField.js +1 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
- package/src/PredefinedConfig/Common/Fdc3Context.d.ts +7 -226
- package/src/PredefinedConfig/Common/Fdc3Context.js +43 -31
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +6 -89
- package/src/PredefinedConfig/Common/Fdc3Intent.js +26 -73
- package/src/PredefinedConfig/Common/RowSummary.d.ts +2 -1
- package/src/PredefinedConfig/StyledColumnState.d.ts +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +0 -3
- package/src/Strategy/AdaptableModuleBase.js +1 -3
- package/src/Strategy/AlertModule.d.ts +1 -1
- package/src/Strategy/AlertModule.js +8 -8
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +1 -1
- package/src/Utilities/Services/Fdc3Service.d.ts +1 -1
- package/src/Utilities/Services/Fdc3Service.js +2 -2
- package/src/Utilities/Services/QueryLanguageService.d.ts +8 -4
- package/src/Utilities/Services/QueryLanguageService.js +105 -6
- package/src/Utilities/Services/ReportService.js +8 -5
- package/src/Utilities/Services/RowSummaryService.js +3 -1
- package/src/Utilities/divideBy100.d.ts +1 -0
- package/src/Utilities/divideBy100.js +30 -0
- package/src/Utilities/times100.d.ts +1 -0
- package/src/Utilities/times100.js +23 -0
- package/src/View/Alert/Wizard/AlertMessageWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/Components/EntityRulesEditor/index.d.ts +1 -0
- package/src/View/Components/EntityRulesEditor/index.js +11 -7
- package/src/View/Components/ExpressionWizard.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterValues.js +28 -4
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +6 -2
- package/src/View/Components/Selectors/FieldSelector.d.ts +13 -0
- package/src/View/Components/Selectors/FieldSelector.js +21 -0
- package/src/View/Components/Selectors/PermittedValuesSelector.js +8 -4
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
- package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
- package/src/View/Layout/Wizard/sections/GridFilterSection.js +4 -2
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +7 -1
- package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.js +3 -2
- package/src/agGrid/AdaptableAgGrid.d.ts +1 -2
- package/src/agGrid/AdaptableAgGrid.js +64 -33
- package/src/agGrid/AgGridColumnAdapter.d.ts +3 -0
- package/src/agGrid/AgGridColumnAdapter.js +22 -0
- package/src/agGrid/AgGridMenuAdapter.js +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +0 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +0 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +4 -16
- package/src/agGrid/editors/AdaptableDateEditor/index.js +5 -18
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +6 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +4 -3
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +5 -2
- package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.d.ts +23 -0
- package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.js +80 -0
- package/src/agGrid/editors/AdaptablePercentageEditor/index.d.ts +47 -0
- package/src/agGrid/editors/AdaptablePercentageEditor/index.js +148 -0
- package/src/components/Accordion.js +1 -1
- package/src/components/Datepicker/DatepickerContext.d.ts +0 -2
- package/src/components/Datepicker/index.js +3 -4
- package/src/components/ExpressionEditor/DataTableEditor.d.ts +17 -0
- package/src/components/ExpressionEditor/DataTableEditor.js +63 -0
- package/src/components/ExpressionEditor/EditorInput.js +22 -9
- package/src/components/ExpressionEditor/NamedQueryEditor.d.ts +5 -0
- package/src/components/ExpressionEditor/NamedQueryEditor.js +30 -0
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.d.ts +10 -0
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +7 -4
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +3 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +71 -13
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +30 -22
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +9 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +41 -3
- package/src/components/ExpressionEditor/index.d.ts +3 -1
- package/src/components/ExpressionEditor/index.js +66 -91
- package/src/components/Input/NumberInput.d.ts +2 -1
- package/src/components/Input/NumberInput.js +7 -4
- package/src/components/OverlayTrigger/index.js +10 -6
- package/src/components/icons/column-outline.d.ts +3 -0
- package/src/components/icons/column-outline.js +4 -0
- package/src/components/icons/index.js +5 -1
- package/src/components/icons/sync.d.ts +3 -0
- package/src/components/icons/sync.js +4 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +78 -200
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/predicate/mapExpressionToQlPredicate.d.ts +1 -0
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +11 -2
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +4 -1
- package/src/parser/src/types.d.ts +101 -1
- package/src/types.d.ts +9 -7
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -463,6 +463,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
463
463
|
desc: string;
|
|
464
464
|
}[];
|
|
465
465
|
};
|
|
466
|
+
AdaptableField: {
|
|
467
|
+
name: string;
|
|
468
|
+
kind: string;
|
|
469
|
+
desc: string;
|
|
470
|
+
props: ({
|
|
471
|
+
name: string;
|
|
472
|
+
kind: string;
|
|
473
|
+
desc: string;
|
|
474
|
+
ref: string;
|
|
475
|
+
isOpt?: undefined;
|
|
476
|
+
} | {
|
|
477
|
+
name: string;
|
|
478
|
+
kind: string;
|
|
479
|
+
desc: string;
|
|
480
|
+
isOpt: boolean;
|
|
481
|
+
ref?: undefined;
|
|
482
|
+
} | {
|
|
483
|
+
name: string;
|
|
484
|
+
kind: string;
|
|
485
|
+
desc: string;
|
|
486
|
+
ref?: undefined;
|
|
487
|
+
isOpt?: undefined;
|
|
488
|
+
})[];
|
|
489
|
+
};
|
|
466
490
|
AdaptableFlashingCell: {
|
|
467
491
|
name: string;
|
|
468
492
|
kind: string;
|
|
@@ -622,6 +646,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
622
646
|
kind: string;
|
|
623
647
|
desc: string;
|
|
624
648
|
};
|
|
649
|
+
AdaptableNumberCellEditorParams: {
|
|
650
|
+
name: string;
|
|
651
|
+
kind: string;
|
|
652
|
+
desc: string;
|
|
653
|
+
props: {
|
|
654
|
+
name: string;
|
|
655
|
+
kind: string;
|
|
656
|
+
desc: string;
|
|
657
|
+
defVal: string;
|
|
658
|
+
}[];
|
|
659
|
+
};
|
|
625
660
|
AdaptableObject: {
|
|
626
661
|
name: string;
|
|
627
662
|
kind: string;
|
|
@@ -787,6 +822,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
787
822
|
ref?: undefined;
|
|
788
823
|
})[];
|
|
789
824
|
};
|
|
825
|
+
AdaptablePercentageCellEditorParams: {
|
|
826
|
+
name: string;
|
|
827
|
+
kind: string;
|
|
828
|
+
desc: string;
|
|
829
|
+
};
|
|
790
830
|
AdaptablePersistentState: {
|
|
791
831
|
name: string;
|
|
792
832
|
kind: string;
|
|
@@ -1684,16 +1724,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1684
1724
|
defVal?: undefined;
|
|
1685
1725
|
})[];
|
|
1686
1726
|
};
|
|
1687
|
-
ChartContext: {
|
|
1688
|
-
name: string;
|
|
1689
|
-
kind: string;
|
|
1690
|
-
desc: string;
|
|
1691
|
-
};
|
|
1692
|
-
ChartContextType: {
|
|
1693
|
-
name: string;
|
|
1694
|
-
kind: string;
|
|
1695
|
-
desc: string;
|
|
1696
|
-
};
|
|
1697
1727
|
ChartDefinition: {
|
|
1698
1728
|
name: string;
|
|
1699
1729
|
kind: string;
|
|
@@ -1764,16 +1794,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1764
1794
|
isOpt: boolean;
|
|
1765
1795
|
}[];
|
|
1766
1796
|
};
|
|
1767
|
-
ChatInitSettingsContext: {
|
|
1768
|
-
name: string;
|
|
1769
|
-
kind: string;
|
|
1770
|
-
desc: string;
|
|
1771
|
-
};
|
|
1772
|
-
ChatInitSettingsContextType: {
|
|
1773
|
-
name: string;
|
|
1774
|
-
kind: string;
|
|
1775
|
-
desc: string;
|
|
1776
|
-
};
|
|
1777
1797
|
ColumnComparison: {
|
|
1778
1798
|
name: string;
|
|
1779
1799
|
kind: string;
|
|
@@ -1871,6 +1891,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1871
1891
|
gridInfo?: undefined;
|
|
1872
1892
|
noCode?: undefined;
|
|
1873
1893
|
defVal?: undefined;
|
|
1894
|
+
} | {
|
|
1895
|
+
name: string;
|
|
1896
|
+
kind: string;
|
|
1897
|
+
desc: string;
|
|
1898
|
+
isOpt: boolean;
|
|
1899
|
+
gridInfo?: undefined;
|
|
1900
|
+
noCode?: undefined;
|
|
1901
|
+
defVal?: undefined;
|
|
1902
|
+
ref?: undefined;
|
|
1874
1903
|
} | {
|
|
1875
1904
|
name: string;
|
|
1876
1905
|
kind: string;
|
|
@@ -2051,11 +2080,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2051
2080
|
ref: string;
|
|
2052
2081
|
})[];
|
|
2053
2082
|
};
|
|
2054
|
-
CompatibleContext: {
|
|
2055
|
-
name: string;
|
|
2056
|
-
kind: string;
|
|
2057
|
-
desc: string;
|
|
2058
|
-
};
|
|
2059
2083
|
ConfigState: {
|
|
2060
2084
|
name: string;
|
|
2061
2085
|
kind: string;
|
|
@@ -2067,26 +2091,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2067
2091
|
isOpt: boolean;
|
|
2068
2092
|
}[];
|
|
2069
2093
|
};
|
|
2070
|
-
ContactContext: {
|
|
2071
|
-
name: string;
|
|
2072
|
-
kind: string;
|
|
2073
|
-
desc: string;
|
|
2074
|
-
};
|
|
2075
|
-
ContactContextType: {
|
|
2076
|
-
name: string;
|
|
2077
|
-
kind: string;
|
|
2078
|
-
desc: string;
|
|
2079
|
-
};
|
|
2080
|
-
ContactListContext: {
|
|
2081
|
-
name: string;
|
|
2082
|
-
kind: string;
|
|
2083
|
-
desc: string;
|
|
2084
|
-
};
|
|
2085
|
-
ContactListContextType: {
|
|
2086
|
-
name: string;
|
|
2087
|
-
kind: string;
|
|
2088
|
-
desc: string;
|
|
2089
|
-
};
|
|
2090
2094
|
ContainerOptions: {
|
|
2091
2095
|
name: string;
|
|
2092
2096
|
kind: string;
|
|
@@ -2127,16 +2131,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2127
2131
|
isOpt: boolean;
|
|
2128
2132
|
}[];
|
|
2129
2133
|
};
|
|
2130
|
-
CountryContext: {
|
|
2131
|
-
name: string;
|
|
2132
|
-
kind: string;
|
|
2133
|
-
desc: string;
|
|
2134
|
-
};
|
|
2135
|
-
CountryContextType: {
|
|
2136
|
-
name: string;
|
|
2137
|
-
kind: string;
|
|
2138
|
-
desc: string;
|
|
2139
|
-
};
|
|
2140
2134
|
CreateActionRowFormContext: {
|
|
2141
2135
|
name: string;
|
|
2142
2136
|
kind: string;
|
|
@@ -2153,16 +2147,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2153
2147
|
isOpt?: undefined;
|
|
2154
2148
|
})[];
|
|
2155
2149
|
};
|
|
2156
|
-
CurrencyContext: {
|
|
2157
|
-
name: string;
|
|
2158
|
-
kind: string;
|
|
2159
|
-
desc: string;
|
|
2160
|
-
};
|
|
2161
|
-
CurrencyContextType: {
|
|
2162
|
-
name: string;
|
|
2163
|
-
kind: string;
|
|
2164
|
-
desc: string;
|
|
2165
|
-
};
|
|
2166
2150
|
CustomColumnMenuContext: {
|
|
2167
2151
|
name: string;
|
|
2168
2152
|
kind: string;
|
|
@@ -2635,11 +2619,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2635
2619
|
noCode?: undefined;
|
|
2636
2620
|
})[];
|
|
2637
2621
|
};
|
|
2622
|
+
DataFormatDataType: {
|
|
2623
|
+
name: string;
|
|
2624
|
+
kind: string;
|
|
2625
|
+
desc: string;
|
|
2626
|
+
};
|
|
2638
2627
|
DataFormatType: {
|
|
2639
2628
|
name: string;
|
|
2640
2629
|
kind: string;
|
|
2641
2630
|
desc: string;
|
|
2642
2631
|
};
|
|
2632
|
+
DataFormatTypeContext: {
|
|
2633
|
+
name: string;
|
|
2634
|
+
kind: string;
|
|
2635
|
+
desc: string;
|
|
2636
|
+
props: {
|
|
2637
|
+
name: string;
|
|
2638
|
+
kind: string;
|
|
2639
|
+
desc: string;
|
|
2640
|
+
ref: string;
|
|
2641
|
+
}[];
|
|
2642
|
+
};
|
|
2643
2643
|
DataImportFileHandler: {
|
|
2644
2644
|
name: string;
|
|
2645
2645
|
kind: string;
|
|
@@ -2832,16 +2832,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2832
2832
|
defVal?: undefined;
|
|
2833
2833
|
})[];
|
|
2834
2834
|
};
|
|
2835
|
-
EmailContext: {
|
|
2836
|
-
name: string;
|
|
2837
|
-
kind: string;
|
|
2838
|
-
desc: string;
|
|
2839
|
-
};
|
|
2840
|
-
EmailContextType: {
|
|
2841
|
-
name: string;
|
|
2842
|
-
kind: string;
|
|
2843
|
-
desc: string;
|
|
2844
|
-
};
|
|
2845
2835
|
Entitlement: {
|
|
2846
2836
|
name: string;
|
|
2847
2837
|
kind: string;
|
|
@@ -3069,17 +3059,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3069
3059
|
kind: string;
|
|
3070
3060
|
desc: string;
|
|
3071
3061
|
isOpt: boolean;
|
|
3072
|
-
gridInfo
|
|
3073
|
-
defVal: string;
|
|
3062
|
+
gridInfo?: undefined;
|
|
3074
3063
|
noCode?: undefined;
|
|
3064
|
+
defVal?: undefined;
|
|
3075
3065
|
} | {
|
|
3076
3066
|
name: string;
|
|
3077
3067
|
kind: string;
|
|
3078
3068
|
desc: string;
|
|
3079
3069
|
isOpt: boolean;
|
|
3080
|
-
gridInfo
|
|
3070
|
+
gridInfo: string;
|
|
3071
|
+
defVal: string;
|
|
3081
3072
|
noCode?: undefined;
|
|
3082
|
-
defVal?: undefined;
|
|
3083
3073
|
} | {
|
|
3084
3074
|
name: string;
|
|
3085
3075
|
kind: string;
|
|
@@ -3201,11 +3191,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3201
3191
|
isOpt?: undefined;
|
|
3202
3192
|
})[];
|
|
3203
3193
|
};
|
|
3204
|
-
Fdc3Context: {
|
|
3205
|
-
name: string;
|
|
3206
|
-
kind: string;
|
|
3207
|
-
desc: string;
|
|
3208
|
-
};
|
|
3209
3194
|
Fdc3ContextOptions: {
|
|
3210
3195
|
name: string;
|
|
3211
3196
|
kind: string;
|
|
@@ -3224,26 +3209,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3224
3209
|
ref?: undefined;
|
|
3225
3210
|
})[];
|
|
3226
3211
|
};
|
|
3227
|
-
Fdc3ContextType: {
|
|
3228
|
-
name: string;
|
|
3229
|
-
kind: string;
|
|
3230
|
-
desc: string;
|
|
3231
|
-
};
|
|
3232
|
-
Fdc3CustomContext: {
|
|
3233
|
-
name: string;
|
|
3234
|
-
kind: string;
|
|
3235
|
-
desc: string;
|
|
3236
|
-
};
|
|
3237
|
-
Fdc3CustomContextType: {
|
|
3238
|
-
name: string;
|
|
3239
|
-
kind: string;
|
|
3240
|
-
desc: string;
|
|
3241
|
-
};
|
|
3242
|
-
Fdc3CustomIntentType: {
|
|
3243
|
-
name: string;
|
|
3244
|
-
kind: string;
|
|
3245
|
-
desc: string;
|
|
3246
|
-
};
|
|
3247
3212
|
Fdc3IntentOptions: {
|
|
3248
3213
|
name: string;
|
|
3249
3214
|
kind: string;
|
|
@@ -3262,11 +3227,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3262
3227
|
ref: string;
|
|
3263
3228
|
})[];
|
|
3264
3229
|
};
|
|
3265
|
-
Fdc3IntentType: {
|
|
3266
|
-
name: string;
|
|
3267
|
-
kind: string;
|
|
3268
|
-
desc: string;
|
|
3269
|
-
};
|
|
3270
3230
|
Fdc3Options: {
|
|
3271
3231
|
name: string;
|
|
3272
3232
|
kind: string;
|
|
@@ -3294,16 +3254,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3294
3254
|
defVal?: undefined;
|
|
3295
3255
|
})[];
|
|
3296
3256
|
};
|
|
3297
|
-
Fdc3StandardContextType: {
|
|
3298
|
-
name: string;
|
|
3299
|
-
kind: string;
|
|
3300
|
-
desc: string;
|
|
3301
|
-
};
|
|
3302
|
-
Fdc3StandardIntentType: {
|
|
3303
|
-
name: string;
|
|
3304
|
-
kind: string;
|
|
3305
|
-
desc: string;
|
|
3306
|
-
};
|
|
3307
3257
|
FilterActionOnDataChange: {
|
|
3308
3258
|
name: string;
|
|
3309
3259
|
kind: string;
|
|
@@ -3766,26 +3716,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3766
3716
|
kind: string;
|
|
3767
3717
|
desc: string;
|
|
3768
3718
|
};
|
|
3769
|
-
InstrumentContext: {
|
|
3770
|
-
name: string;
|
|
3771
|
-
kind: string;
|
|
3772
|
-
desc: string;
|
|
3773
|
-
};
|
|
3774
|
-
InstrumentContextType: {
|
|
3775
|
-
name: string;
|
|
3776
|
-
kind: string;
|
|
3777
|
-
desc: string;
|
|
3778
|
-
};
|
|
3779
|
-
InstrumentListContext: {
|
|
3780
|
-
name: string;
|
|
3781
|
-
kind: string;
|
|
3782
|
-
desc: string;
|
|
3783
|
-
};
|
|
3784
|
-
InstrumentListContextType: {
|
|
3785
|
-
name: string;
|
|
3786
|
-
kind: string;
|
|
3787
|
-
desc: string;
|
|
3788
|
-
};
|
|
3789
3719
|
InteropioPluginOptions: {
|
|
3790
3720
|
name: string;
|
|
3791
3721
|
kind: string;
|
|
@@ -4088,16 +4018,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4088
4018
|
ref: string;
|
|
4089
4019
|
}[];
|
|
4090
4020
|
};
|
|
4091
|
-
NothingContext: {
|
|
4092
|
-
name: string;
|
|
4093
|
-
kind: string;
|
|
4094
|
-
desc: string;
|
|
4095
|
-
};
|
|
4096
|
-
NothingContextType: {
|
|
4097
|
-
name: string;
|
|
4098
|
-
kind: string;
|
|
4099
|
-
desc: string;
|
|
4100
|
-
};
|
|
4101
4021
|
NotificationsOptions: {
|
|
4102
4022
|
name: string;
|
|
4103
4023
|
kind: string;
|
|
@@ -4220,16 +4140,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4220
4140
|
kind: string;
|
|
4221
4141
|
desc: string;
|
|
4222
4142
|
};
|
|
4223
|
-
OrganizationContext: {
|
|
4224
|
-
name: string;
|
|
4225
|
-
kind: string;
|
|
4226
|
-
desc: string;
|
|
4227
|
-
};
|
|
4228
|
-
OrganizationContextType: {
|
|
4229
|
-
name: string;
|
|
4230
|
-
kind: string;
|
|
4231
|
-
desc: string;
|
|
4232
|
-
};
|
|
4233
4143
|
PercentBarStyle: {
|
|
4234
4144
|
name: string;
|
|
4235
4145
|
kind: string;
|
|
@@ -4322,26 +4232,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4322
4232
|
isOpt: boolean;
|
|
4323
4233
|
}[];
|
|
4324
4234
|
};
|
|
4325
|
-
PortfolioContext: {
|
|
4326
|
-
name: string;
|
|
4327
|
-
kind: string;
|
|
4328
|
-
desc: string;
|
|
4329
|
-
};
|
|
4330
|
-
PortfolioContextType: {
|
|
4331
|
-
name: string;
|
|
4332
|
-
kind: string;
|
|
4333
|
-
desc: string;
|
|
4334
|
-
};
|
|
4335
|
-
PositionContext: {
|
|
4336
|
-
name: string;
|
|
4337
|
-
kind: string;
|
|
4338
|
-
desc: string;
|
|
4339
|
-
};
|
|
4340
|
-
PositionContextType: {
|
|
4341
|
-
name: string;
|
|
4342
|
-
kind: string;
|
|
4343
|
-
desc: string;
|
|
4344
|
-
};
|
|
4345
4235
|
PredefinedConfig: {
|
|
4346
4236
|
name: string;
|
|
4347
4237
|
kind: string;
|
|
@@ -4590,8 +4480,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4590
4480
|
name: string;
|
|
4591
4481
|
kind: string;
|
|
4592
4482
|
desc: string;
|
|
4483
|
+
ref: string;
|
|
4593
4484
|
isOpt?: undefined;
|
|
4594
|
-
ref?: undefined;
|
|
4595
4485
|
})[];
|
|
4596
4486
|
};
|
|
4597
4487
|
RaiseIntentConfiguration: {
|
|
@@ -5326,16 +5216,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5326
5216
|
isOpt: boolean;
|
|
5327
5217
|
}[];
|
|
5328
5218
|
};
|
|
5329
|
-
TimeRangeContext: {
|
|
5330
|
-
name: string;
|
|
5331
|
-
kind: string;
|
|
5332
|
-
desc: string;
|
|
5333
|
-
};
|
|
5334
|
-
TimeRangeContextType: {
|
|
5335
|
-
name: string;
|
|
5336
|
-
kind: string;
|
|
5337
|
-
desc: string;
|
|
5338
|
-
};
|
|
5339
5219
|
TOAST_POSITIONS: {
|
|
5340
5220
|
name: string;
|
|
5341
5221
|
kind: string;
|
|
@@ -5583,16 +5463,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5583
5463
|
isOpt?: undefined;
|
|
5584
5464
|
})[];
|
|
5585
5465
|
};
|
|
5586
|
-
ValuationContext: {
|
|
5587
|
-
name: string;
|
|
5588
|
-
kind: string;
|
|
5589
|
-
desc: string;
|
|
5590
|
-
};
|
|
5591
|
-
ValuationContextType: {
|
|
5592
|
-
name: string;
|
|
5593
|
-
kind: string;
|
|
5594
|
-
desc: string;
|
|
5595
|
-
};
|
|
5596
5466
|
ValuesFilterOptions: {
|
|
5597
5467
|
name: string;
|
|
5598
5468
|
kind: string;
|
|
@@ -5613,6 +5483,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5613
5483
|
gridInfo: string;
|
|
5614
5484
|
noCode: string;
|
|
5615
5485
|
defVal: string;
|
|
5486
|
+
} | {
|
|
5487
|
+
name: string;
|
|
5488
|
+
kind: string;
|
|
5489
|
+
desc: string;
|
|
5490
|
+
isOpt: boolean;
|
|
5491
|
+
noCode?: undefined;
|
|
5492
|
+
defVal?: undefined;
|
|
5493
|
+
gridInfo?: undefined;
|
|
5616
5494
|
} | {
|
|
5617
5495
|
name: string;
|
|
5618
5496
|
kind: string;
|