@adaptabletools/adaptable 16.0.0-canary.2 → 16.0.0-canary.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/README.md +2 -0
- package/base.css +62 -54
- package/base.css.map +1 -1
- package/bundle.cjs.js +159 -159
- package/index.css +82 -70
- package/index.css.map +1 -1
- package/package.json +10 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +5 -1
- package/src/AdaptableOptions/ActionRowOptions.d.ts +8 -5
- package/src/AdaptableOptions/AdaptableOptions.d.ts +9 -4
- package/src/AdaptableOptions/ColumnOptions.d.ts +1 -10
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +6 -2
- package/src/AdaptableOptions/Fdc3Options.d.ts +150 -0
- package/src/AdaptableOptions/Fdc3Options.js +5 -0
- package/src/AdaptableOptions/FilterOptions.d.ts +1 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +9 -9
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +7 -7
- package/src/AdaptableOptions/GroupingOptions.d.ts +6 -11
- package/src/AdaptableOptions/OpenFinPluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +5 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +21 -11
- package/src/Api/AdaptableApi.d.ts +7 -2
- package/src/Api/ColumnApi.d.ts +18 -7
- package/src/Api/DataChangeHistoryApi.d.ts +6 -0
- package/src/Api/EventApi.d.ts +22 -9
- package/src/Api/Events/ChexboxColumnClicked.d.ts +1 -0
- package/src/Api/Events/ScheduleTriggered.d.ts +11 -0
- package/src/Api/Events/ThemeChanged.d.ts +0 -6
- package/src/Api/Events/ThemeEdited.d.ts +11 -0
- package/src/Api/Events/ThemeEdited.js +2 -0
- package/src/Api/Fdc3Api.d.ts +83 -0
- package/src/Api/Fdc3Api.js +2 -0
- package/src/Api/FinanceApi.d.ts +12 -12
- package/src/Api/Implementation/ActionRowApiImpl.js +7 -5
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +3 -0
- package/src/Api/Implementation/ApiBase.d.ts +4 -0
- package/src/Api/Implementation/ApiBase.js +6 -0
- package/src/Api/Implementation/ChartingApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ChartingApiImpl.js +4 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -1
- package/src/Api/Implementation/ColumnApiImpl.js +22 -3
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +3 -0
- package/src/Api/Implementation/Fdc3ApiImpl.d.ts +26 -0
- package/src/Api/Implementation/Fdc3ApiImpl.js +79 -0
- package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -0
- package/src/Api/Implementation/OptionsApiImpl.js +3 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +5 -5
- package/src/Api/Implementation/PredicateApiImpl.js +8 -8
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +2 -0
- package/src/Api/Implementation/QuickSearchApiImpl.js +7 -0
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +4 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +5 -0
- package/src/Api/Implementation/StyledColumnApiImpl.d.ts +0 -3
- package/src/Api/Implementation/StyledColumnApiImpl.js +0 -26
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -4
- package/src/Api/Implementation/UserInterfaceApiImpl.js +5 -0
- package/src/Api/Internal/AdaptableInternalApi.d.ts +5 -3
- package/src/Api/Internal/AdaptableInternalApi.js +18 -12
- package/src/Api/Internal/AlertInternalApi.js +7 -2
- package/src/Api/Internal/Fdc3InternalApi.d.ts +11 -0
- package/src/Api/Internal/Fdc3InternalApi.js +72 -0
- package/src/Api/Internal/FilterInternalApi.js +8 -4
- package/src/Api/Internal/FormatColumnInternalApi.js +11 -13
- package/src/Api/Internal/ScheduleInternalApi.d.ts +8 -0
- package/src/Api/Internal/ScheduleInternalApi.js +20 -0
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +5 -2
- package/src/Api/Internal/StyledColumnInternalApi.js +29 -2
- package/src/Api/Internal/UserInterfaceInternalApi.d.ts +5 -0
- package/src/Api/Internal/UserInterfaceInternalApi.js +18 -0
- package/src/Api/OptionsApi.d.ts +6 -1
- package/src/Api/PredicateApi.d.ts +5 -5
- package/src/Api/QuickSearchApi.d.ts +8 -0
- package/src/Api/StyledColumnApi.d.ts +0 -14
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +7 -7
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +8 -15
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +65 -41
- package/src/PredefinedConfig/Common/{FDC3Context.d.ts → FDC3Context_DEPR.d.ts} +19 -19
- package/src/PredefinedConfig/Common/FDC3Context_DEPR.js +2 -0
- package/src/PredefinedConfig/Common/Fdc3Context.d.ts +53 -0
- package/src/PredefinedConfig/Common/Fdc3Context.js +35 -0
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +68 -0
- package/src/PredefinedConfig/Common/Fdc3Intent.js +75 -0
- package/src/PredefinedConfig/Common/Types.d.ts +2 -2
- package/src/PredefinedConfig/StyledColumnState.d.ts +3 -2
- package/src/PredefinedConfig/SystemState.d.ts +3 -0
- package/src/PredefinedConfig/TeamSharingState.d.ts +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +17 -6
- package/src/Redux/ActionsReducers/SystemRedux.js +33 -3
- package/src/Redux/Store/AdaptableStore.js +3 -4
- package/src/Strategy/AdaptableModuleBase.d.ts +6 -6
- package/src/Strategy/Fdc3Module.d.ts +13 -0
- package/src/Strategy/Fdc3Module.js +85 -0
- package/src/Strategy/FlashingCellModule.js +6 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -2
- package/src/Strategy/ScheduleModule.js +3 -2
- package/src/Strategy/StyledColumnModule.js +24 -15
- package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
- package/src/Utilities/Constants/ModuleConstants.js +5 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +9 -3
- package/src/Utilities/MenuItem.d.ts +4 -4
- package/src/Utilities/Services/Fdc3Service.d.ts +20 -0
- package/src/Utilities/Services/Fdc3Service.js +87 -0
- package/src/Utilities/Services/MetamodelService.js +5 -1
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/Services/QueryLanguageService.js +1 -1
- package/src/Utilities/Services/RowEditService.js +1 -1
- package/src/Utilities/Services/TeamSharingService.d.ts +2 -0
- package/src/Utilities/Services/TeamSharingService.js +60 -3
- package/src/Utilities/Services/ValidationService.js +6 -2
- package/src/View/AdaptableView.js +9 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableConfig.d.ts +9 -0
- package/src/View/Charting/useChartingElements.js +1 -1
- package/src/View/Components/AdaptableButton/index.d.ts +3 -0
- package/src/View/Components/AdaptableButton/index.js +18 -0
- package/src/View/Components/AdaptableIconComponent/index.d.ts +7 -0
- package/src/View/Components/AdaptableIconComponent/index.js +16 -0
- package/src/View/Components/AdaptableIconComponent/useCustomIcon.d.ts +2 -0
- package/src/View/Components/AdaptableIconComponent/useCustomIcon.js +12 -0
- package/src/{components → View/Components}/Badge/index.d.ts +1 -1
- package/src/{components → View/Components}/Badge/index.js +1 -1
- package/src/View/Components/FilterForm/FilterForm.js +1 -1
- package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +3 -2
- package/src/View/Components/Panels/PanelWithButton.d.ts +2 -2
- package/src/View/Components/Panels/PanelWithImage.d.ts +3 -3
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +2 -3
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/PredicateEditor/PredicateEditor.js +4 -4
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -2
- package/src/View/Dashboard/Dashboard.js +3 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -0
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +13 -7
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +7 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +1 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.js +9 -2
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +1 -1
- package/src/View/QuickSearch/FloatingQuickSearch/FloatingQuickSearch.d.ts +2 -0
- package/src/View/QuickSearch/FloatingQuickSearch/FloatingQuickSearch.js +26 -0
- package/src/View/QuickSearch/QuickSearchInput.d.ts +6 -0
- package/src/View/QuickSearch/QuickSearchInput.js +22 -0
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +2 -5
- package/src/View/QuickSearch/QuickSearchViewPanel.js +5 -19
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +1 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +2 -9
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +0 -1
- package/src/View/UIHelper.d.ts +2 -2
- package/src/agGrid/ActionColumnRenderer.d.ts +0 -2
- package/src/agGrid/ActionColumnRenderer.js +21 -6
- package/src/agGrid/Adaptable.d.ts +7 -2
- package/src/agGrid/Adaptable.js +82 -37
- package/src/agGrid/BadgeRenderer.js +19 -20
- package/src/agGrid/CheckboxRenderer.js +1 -1
- package/src/agGrid/agGridHelper.js +4 -0
- package/src/agGrid/agGridMenuHelper.js +11 -4
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +1 -0
- package/src/agGrid/attachAddaptableColumnTypes.js +5 -4
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
- package/src/components/Drawer/index.d.ts +6 -0
- package/src/components/Drawer/index.js +60 -0
- package/src/components/ExpressionEditor/index.js +4 -2
- package/src/components/Icon/index.d.ts +11 -0
- package/src/components/{AdaptableIconComponent → Icon}/index.js +10 -10
- package/src/components/IconSelector/IconSelector.js +3 -3
- package/src/components/SimpleButton/index.js +10 -10
- package/src/components/Toggle/Toggle.d.ts +2 -2
- package/src/components/Toggle/Toggle.js +2 -2
- package/src/components/icons/fdc3.d.ts +3 -0
- package/src/components/icons/fdc3.js +9 -0
- package/src/components/icons/index.d.ts +4 -4
- package/src/components/icons/index.js +9 -7
- package/src/metamodel/adaptable.metamodel.d.ts +117 -47
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +9 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/View/Components/AdaptableViewIcon/index.d.ts +0 -10
- package/src/View/Components/AdaptableViewIcon/index.js +0 -18
- package/src/components/AdaptableIconComponent/index.d.ts +0 -11
- /package/src/{PredefinedConfig/Common/FDC3Context.js → Api/Events/ScheduleTriggered.js} +0 -0
|
@@ -317,7 +317,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
317
317
|
kind: string;
|
|
318
318
|
desc: string;
|
|
319
319
|
};
|
|
320
|
-
|
|
320
|
+
AdaptableConfig: {
|
|
321
321
|
name: string;
|
|
322
322
|
kind: string;
|
|
323
323
|
desc: string;
|
|
@@ -325,19 +325,20 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
325
325
|
name: string;
|
|
326
326
|
kind: string;
|
|
327
327
|
desc: string;
|
|
328
|
+
ref: string;
|
|
328
329
|
}[];
|
|
329
330
|
};
|
|
330
|
-
|
|
331
|
-
name: string;
|
|
332
|
-
kind: string;
|
|
333
|
-
desc: string;
|
|
334
|
-
};
|
|
335
|
-
AdaptableDataChangeHistoryAction: {
|
|
331
|
+
AdaptableCoordinate: {
|
|
336
332
|
name: string;
|
|
337
333
|
kind: string;
|
|
338
334
|
desc: string;
|
|
335
|
+
props: {
|
|
336
|
+
name: string;
|
|
337
|
+
kind: string;
|
|
338
|
+
desc: string;
|
|
339
|
+
}[];
|
|
339
340
|
};
|
|
340
|
-
|
|
341
|
+
AdaptableCustomIcon: {
|
|
341
342
|
name: string;
|
|
342
343
|
kind: string;
|
|
343
344
|
desc: string;
|
|
@@ -347,7 +348,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
347
348
|
desc: string;
|
|
348
349
|
}[];
|
|
349
350
|
};
|
|
350
|
-
|
|
351
|
+
AdaptableDashboardToolbar: {
|
|
352
|
+
name: string;
|
|
353
|
+
kind: string;
|
|
354
|
+
desc: string;
|
|
355
|
+
};
|
|
356
|
+
AdaptableDataChangeHistoryAction: {
|
|
357
|
+
name: string;
|
|
358
|
+
kind: string;
|
|
359
|
+
desc: string;
|
|
360
|
+
};
|
|
361
|
+
AdaptableElementIcon: {
|
|
351
362
|
name: string;
|
|
352
363
|
kind: string;
|
|
353
364
|
desc: string;
|
|
@@ -470,27 +481,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
470
481
|
kind: string;
|
|
471
482
|
desc: string;
|
|
472
483
|
};
|
|
473
|
-
AdaptableInternalIcon: {
|
|
474
|
-
name: string;
|
|
475
|
-
kind: string;
|
|
476
|
-
desc: string;
|
|
477
|
-
props: ({
|
|
478
|
-
name: string;
|
|
479
|
-
kind: string;
|
|
480
|
-
desc: string;
|
|
481
|
-
isOpt?: undefined;
|
|
482
|
-
} | {
|
|
483
|
-
name: string;
|
|
484
|
-
kind: string;
|
|
485
|
-
desc: string;
|
|
486
|
-
isOpt: boolean;
|
|
487
|
-
})[];
|
|
488
|
-
};
|
|
489
|
-
AdaptableInternalIconName: {
|
|
490
|
-
name: string;
|
|
491
|
-
kind: string;
|
|
492
|
-
desc: string;
|
|
493
|
-
};
|
|
494
484
|
AdaptableLoadStateFunction: {
|
|
495
485
|
name: string;
|
|
496
486
|
kind: string;
|
|
@@ -920,6 +910,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
920
910
|
isOpt: boolean;
|
|
921
911
|
}[];
|
|
922
912
|
};
|
|
913
|
+
AdaptableSystemIcon: {
|
|
914
|
+
name: string;
|
|
915
|
+
kind: string;
|
|
916
|
+
desc: string;
|
|
917
|
+
props: ({
|
|
918
|
+
name: string;
|
|
919
|
+
kind: string;
|
|
920
|
+
desc: string;
|
|
921
|
+
isOpt?: undefined;
|
|
922
|
+
} | {
|
|
923
|
+
name: string;
|
|
924
|
+
kind: string;
|
|
925
|
+
desc: string;
|
|
926
|
+
isOpt: boolean;
|
|
927
|
+
})[];
|
|
928
|
+
};
|
|
929
|
+
AdaptableSystemIconName: {
|
|
930
|
+
name: string;
|
|
931
|
+
kind: string;
|
|
932
|
+
desc: string;
|
|
933
|
+
};
|
|
923
934
|
AdaptableTheme: {
|
|
924
935
|
name: string;
|
|
925
936
|
kind: string;
|
|
@@ -1648,17 +1659,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1648
1659
|
kind: string;
|
|
1649
1660
|
desc: string;
|
|
1650
1661
|
isOpt: boolean;
|
|
1651
|
-
gridInfo: string;
|
|
1652
|
-
noCode: string;
|
|
1653
1662
|
defVal: string;
|
|
1663
|
+
gridInfo?: undefined;
|
|
1664
|
+
noCode?: undefined;
|
|
1654
1665
|
} | {
|
|
1655
1666
|
name: string;
|
|
1656
1667
|
kind: string;
|
|
1657
1668
|
desc: string;
|
|
1658
1669
|
isOpt: boolean;
|
|
1670
|
+
gridInfo: string;
|
|
1671
|
+
noCode: string;
|
|
1659
1672
|
defVal: string;
|
|
1660
|
-
gridInfo?: undefined;
|
|
1661
|
-
noCode?: undefined;
|
|
1662
1673
|
})[];
|
|
1663
1674
|
};
|
|
1664
1675
|
ColumnSort: {
|
|
@@ -1687,6 +1698,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1687
1698
|
ref: string;
|
|
1688
1699
|
})[];
|
|
1689
1700
|
};
|
|
1701
|
+
CompatibleContext: {
|
|
1702
|
+
name: string;
|
|
1703
|
+
kind: string;
|
|
1704
|
+
desc: string;
|
|
1705
|
+
};
|
|
1690
1706
|
ConfigState: {
|
|
1691
1707
|
name: string;
|
|
1692
1708
|
kind: string;
|
|
@@ -1716,7 +1732,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1716
1732
|
ref: string;
|
|
1717
1733
|
})[];
|
|
1718
1734
|
};
|
|
1719
|
-
|
|
1735
|
+
ContactContextDepr: {
|
|
1720
1736
|
name: string;
|
|
1721
1737
|
kind: string;
|
|
1722
1738
|
desc: string;
|
|
@@ -1742,7 +1758,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1742
1758
|
kind: string;
|
|
1743
1759
|
desc: string;
|
|
1744
1760
|
};
|
|
1745
|
-
|
|
1761
|
+
ContactListContextDepr: {
|
|
1746
1762
|
name: string;
|
|
1747
1763
|
kind: string;
|
|
1748
1764
|
desc: string;
|
|
@@ -1771,7 +1787,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1771
1787
|
defVal: string;
|
|
1772
1788
|
}[];
|
|
1773
1789
|
};
|
|
1774
|
-
|
|
1790
|
+
ContextDataDepr: {
|
|
1775
1791
|
name: string;
|
|
1776
1792
|
kind: string;
|
|
1777
1793
|
desc: string;
|
|
@@ -1810,7 +1826,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1810
1826
|
ref?: undefined;
|
|
1811
1827
|
})[];
|
|
1812
1828
|
};
|
|
1813
|
-
|
|
1829
|
+
CountryContextDepr: {
|
|
1814
1830
|
name: string;
|
|
1815
1831
|
kind: string;
|
|
1816
1832
|
desc: string;
|
|
@@ -1928,6 +1944,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1928
1944
|
kind: string;
|
|
1929
1945
|
desc: string;
|
|
1930
1946
|
};
|
|
1947
|
+
CustomIcon: {
|
|
1948
|
+
name: string;
|
|
1949
|
+
kind: string;
|
|
1950
|
+
desc: string;
|
|
1951
|
+
props: ({
|
|
1952
|
+
name: string;
|
|
1953
|
+
kind: string;
|
|
1954
|
+
desc: string;
|
|
1955
|
+
ref: string;
|
|
1956
|
+
} | {
|
|
1957
|
+
name: string;
|
|
1958
|
+
kind: string;
|
|
1959
|
+
desc: string;
|
|
1960
|
+
ref?: undefined;
|
|
1961
|
+
})[];
|
|
1962
|
+
};
|
|
1931
1963
|
CustomQueryVariableContext: {
|
|
1932
1964
|
name: string;
|
|
1933
1965
|
kind: string;
|
|
@@ -2686,7 +2718,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2686
2718
|
isOpt?: undefined;
|
|
2687
2719
|
})[];
|
|
2688
2720
|
};
|
|
2689
|
-
|
|
2721
|
+
FDC3Context_DEPR: {
|
|
2690
2722
|
name: string;
|
|
2691
2723
|
kind: string;
|
|
2692
2724
|
desc: string;
|
|
@@ -2710,7 +2742,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2710
2742
|
isOpt?: undefined;
|
|
2711
2743
|
})[];
|
|
2712
2744
|
};
|
|
2713
|
-
|
|
2745
|
+
FDC3ContextTypeDepr: {
|
|
2714
2746
|
name: string;
|
|
2715
2747
|
kind: string;
|
|
2716
2748
|
desc: string;
|
|
@@ -2730,6 +2762,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2730
2762
|
kind: string;
|
|
2731
2763
|
desc: string;
|
|
2732
2764
|
};
|
|
2765
|
+
Fdc3IntentType: {
|
|
2766
|
+
name: string;
|
|
2767
|
+
kind: string;
|
|
2768
|
+
desc: string;
|
|
2769
|
+
};
|
|
2733
2770
|
FilterActionOnDataChange: {
|
|
2734
2771
|
name: string;
|
|
2735
2772
|
kind: string;
|
|
@@ -3247,6 +3284,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3247
3284
|
kind: string;
|
|
3248
3285
|
desc: string;
|
|
3249
3286
|
props: ({
|
|
3287
|
+
name: string;
|
|
3288
|
+
kind: string;
|
|
3289
|
+
desc: string;
|
|
3290
|
+
isOpt: boolean;
|
|
3291
|
+
gridInfo: string;
|
|
3292
|
+
noCode: string;
|
|
3293
|
+
defVal: string;
|
|
3294
|
+
} | {
|
|
3250
3295
|
name: string;
|
|
3251
3296
|
kind: string;
|
|
3252
3297
|
desc: string;
|
|
@@ -3267,9 +3312,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3267
3312
|
kind: string;
|
|
3268
3313
|
desc: string;
|
|
3269
3314
|
isOpt: boolean;
|
|
3315
|
+
gridInfo?: undefined;
|
|
3270
3316
|
noCode?: undefined;
|
|
3271
3317
|
defVal?: undefined;
|
|
3272
|
-
gridInfo?: undefined;
|
|
3273
3318
|
})[];
|
|
3274
3319
|
};
|
|
3275
3320
|
IAdaptableNoCodeWizard: {
|
|
@@ -3295,7 +3340,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3295
3340
|
ref: string;
|
|
3296
3341
|
})[];
|
|
3297
3342
|
};
|
|
3298
|
-
|
|
3343
|
+
InstrumentContextDepr: {
|
|
3299
3344
|
name: string;
|
|
3300
3345
|
kind: string;
|
|
3301
3346
|
desc: string;
|
|
@@ -3321,7 +3366,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3321
3366
|
kind: string;
|
|
3322
3367
|
desc: string;
|
|
3323
3368
|
};
|
|
3324
|
-
|
|
3369
|
+
InstrumentListContextDepr: {
|
|
3325
3370
|
name: string;
|
|
3326
3371
|
kind: string;
|
|
3327
3372
|
desc: string;
|
|
@@ -3735,7 +3780,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3735
3780
|
ref: string;
|
|
3736
3781
|
})[];
|
|
3737
3782
|
};
|
|
3738
|
-
|
|
3783
|
+
OrganizationContextDepr: {
|
|
3739
3784
|
name: string;
|
|
3740
3785
|
kind: string;
|
|
3741
3786
|
desc: string;
|
|
@@ -3853,7 +3898,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3853
3898
|
isOpt: boolean;
|
|
3854
3899
|
}[];
|
|
3855
3900
|
};
|
|
3856
|
-
|
|
3901
|
+
PortfolioContextDepr: {
|
|
3857
3902
|
name: string;
|
|
3858
3903
|
kind: string;
|
|
3859
3904
|
desc: string;
|
|
@@ -3887,7 +3932,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3887
3932
|
ref: string;
|
|
3888
3933
|
})[];
|
|
3889
3934
|
};
|
|
3890
|
-
|
|
3935
|
+
PositionContextDepr: {
|
|
3891
3936
|
name: string;
|
|
3892
3937
|
kind: string;
|
|
3893
3938
|
desc: string;
|
|
@@ -3933,7 +3978,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3933
3978
|
ref: string;
|
|
3934
3979
|
}[];
|
|
3935
3980
|
};
|
|
3936
|
-
|
|
3981
|
+
PredicateDefHandlerContext: {
|
|
3937
3982
|
name: string;
|
|
3938
3983
|
kind: string;
|
|
3939
3984
|
desc: string;
|
|
@@ -3942,10 +3987,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3942
3987
|
kind: string;
|
|
3943
3988
|
desc: string;
|
|
3944
3989
|
ref: string;
|
|
3990
|
+
isOpt?: undefined;
|
|
3991
|
+
} | {
|
|
3992
|
+
name: string;
|
|
3993
|
+
kind: string;
|
|
3994
|
+
desc: string;
|
|
3995
|
+
ref?: undefined;
|
|
3996
|
+
isOpt?: undefined;
|
|
3945
3997
|
} | {
|
|
3946
3998
|
name: string;
|
|
3947
3999
|
kind: string;
|
|
3948
4000
|
desc: string;
|
|
4001
|
+
isOpt: boolean;
|
|
3949
4002
|
ref?: undefined;
|
|
3950
4003
|
})[];
|
|
3951
4004
|
};
|
|
@@ -4302,6 +4355,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4302
4355
|
desc: string;
|
|
4303
4356
|
}[];
|
|
4304
4357
|
};
|
|
4358
|
+
SetPrimaryKeyValueContext: {
|
|
4359
|
+
name: string;
|
|
4360
|
+
kind: string;
|
|
4361
|
+
desc: string;
|
|
4362
|
+
props: {
|
|
4363
|
+
name: string;
|
|
4364
|
+
kind: string;
|
|
4365
|
+
desc: string;
|
|
4366
|
+
}[];
|
|
4367
|
+
};
|
|
4305
4368
|
SettingsPanelOptions: {
|
|
4306
4369
|
name: string;
|
|
4307
4370
|
kind: string;
|
|
@@ -4678,6 +4741,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4678
4741
|
defVal: string;
|
|
4679
4742
|
isOpt?: undefined;
|
|
4680
4743
|
gridInfo?: undefined;
|
|
4744
|
+
} | {
|
|
4745
|
+
name: string;
|
|
4746
|
+
kind: string;
|
|
4747
|
+
desc: string;
|
|
4748
|
+
isOpt: boolean;
|
|
4749
|
+
defVal: string;
|
|
4750
|
+
gridInfo?: undefined;
|
|
4681
4751
|
} | {
|
|
4682
4752
|
name: string;
|
|
4683
4753
|
kind: string;
|