@adaptabletools/adaptable 11.1.14 → 11.2.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/base.css +2 -0
- package/bundle.cjs.js +98 -98
- package/index.css +3 -0
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AlertOptions.d.ts +8 -2
- package/src/AdaptableOptions/DashboardOptions.d.ts +4 -3
- package/src/AdaptableOptions/ExportOptions.d.ts +2 -2
- package/src/AdaptableOptions/FilterOptions.d.ts +5 -4
- package/src/AdaptableOptions/LayoutOptions.d.ts +56 -10
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +4 -3
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +18 -16
- package/src/Api/AdaptableApi.d.ts +10 -0
- package/src/Api/AlertApi.d.ts +3 -1
- package/src/Api/ConditionalStyleApi.d.ts +3 -1
- package/src/Api/ConfigApi.d.ts +3 -3
- package/src/Api/CustomSortApi.d.ts +3 -1
- package/src/Api/EventApi.d.ts +1 -0
- package/src/Api/Events/LayoutChanged.d.ts +1 -1
- package/src/Api/ExportApi.d.ts +16 -0
- package/src/Api/FinanceApi.d.ts +104 -3
- package/src/Api/FlashingCellApi.d.ts +3 -1
- package/src/Api/FormatColumnApi.d.ts +3 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +53 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +3 -1
- package/src/Api/Implementation/AlertApiImpl.js +7 -6
- package/src/Api/Implementation/ApiBase.d.ts +1 -1
- package/src/Api/Implementation/ApiBase.js +5 -2
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +5 -4
- package/src/Api/Implementation/ConfigApiImpl.js +5 -1
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +3 -1
- package/src/Api/Implementation/CustomSortApiImpl.js +6 -5
- package/src/Api/Implementation/EventApiImpl.d.ts +1 -0
- package/src/Api/Implementation/EventApiImpl.js +3 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +3 -0
- package/src/Api/Implementation/ExportApiImpl.js +10 -0
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +3 -1
- package/src/Api/Implementation/FlashingCellApiImpl.js +8 -6
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +3 -1
- package/src/Api/Implementation/FormatColumnApiImpl.js +7 -6
- package/src/Api/Implementation/InternalApiImpl.d.ts +14 -5
- package/src/Api/Implementation/InternalApiImpl.js +75 -3
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +3 -1
- package/src/Api/Implementation/PlusMinusApiImpl.js +6 -8
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +17 -6
- package/src/Api/Implementation/ScheduleApiImpl.js +25 -12
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ShortcutApiImpl.js +5 -4
- package/src/Api/Implementation/ToolPanelApiImpl.d.ts +1 -2
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/Implementation/UserInterfaceApiImpl.js +2 -2
- package/src/Api/InternalApi.d.ts +14 -7
- package/src/Api/LayoutApi.d.ts +4 -6
- package/src/Api/PlusMinusApi.d.ts +3 -1
- package/src/Api/ScheduleApi.d.ts +20 -6
- package/src/Api/ShortcutApi.d.ts +3 -1
- package/src/Api/ToolPanelApi.d.ts +1 -2
- package/src/PredefinedConfig/AlertState.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +2 -5
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +2 -1
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +4 -3
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +18 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +9 -0
- package/src/PredefinedConfig/Common/BaseContext.d.ts +10 -0
- package/src/PredefinedConfig/Common/BaseContext.js +2 -0
- package/src/PredefinedConfig/Common/CellSummary.d.ts +3 -3
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +9 -9
- package/src/PredefinedConfig/Common/Menu.d.ts +4 -13
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +4 -0
- package/src/PredefinedConfig/DataSourceState.d.ts +2 -2
- package/src/PredefinedConfig/FilterState.d.ts +1 -1
- package/src/PredefinedConfig/SystemState.d.ts +1 -0
- package/src/PredefinedConfig/Uuid.js +1 -0
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +5 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +11 -1
- package/src/Redux/Store/AdaptableStore.d.ts +1 -0
- package/src/Redux/Store/AdaptableStore.js +6 -1
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +1 -0
- package/src/Strategy/AdaptableModuleBase.d.ts +5 -0
- package/src/Strategy/AdaptableModuleBase.js +9 -0
- package/src/Strategy/AlertModule.d.ts +4 -1
- package/src/Strategy/AlertModule.js +12 -4
- package/src/Strategy/CalculatedColumnModule.d.ts +3 -17
- package/src/Strategy/CalculatedColumnModule.js +2 -0
- package/src/Strategy/ConditionalStyleModule.d.ts +4 -1
- package/src/Strategy/ConditionalStyleModule.js +12 -4
- package/src/Strategy/CustomSortModule.d.ts +4 -1
- package/src/Strategy/CustomSortModule.js +10 -3
- package/src/Strategy/DataSourceModule.js +2 -0
- package/src/Strategy/ExportModule.d.ts +5 -3
- package/src/Strategy/ExportModule.js +10 -0
- package/src/Strategy/FlashingCellModule.d.ts +4 -1
- package/src/Strategy/FlashingCellModule.js +10 -5
- package/src/Strategy/FormatColumnModule.d.ts +4 -1
- package/src/Strategy/FormatColumnModule.js +10 -3
- package/src/Strategy/FreeTextColumnModule.js +2 -0
- package/src/Strategy/Interface/IModule.d.ts +6 -3
- package/src/Strategy/Interface/IScheduleModule.d.ts +1 -1
- package/src/Strategy/LayoutModule.d.ts +2 -1
- package/src/Strategy/LayoutModule.js +35 -2
- package/src/Strategy/PlusMinusModule.d.ts +4 -1
- package/src/Strategy/PlusMinusModule.js +15 -7
- package/src/Strategy/QueryModule.d.ts +2 -8
- package/src/Strategy/QueryModule.js +2 -0
- package/src/Strategy/ScheduleModule.d.ts +8 -4
- package/src/Strategy/ScheduleModule.js +16 -9
- package/src/Strategy/ShortcutModule.d.ts +4 -1
- package/src/Strategy/ShortcutModule.js +14 -4
- package/src/Strategy/StatusBarModule.d.ts +2 -1
- package/src/Strategy/StatusBarModule.js +2 -3
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -2
- package/src/Strategy/Utilities/getObjectTagsViewItems.d.ts +4 -0
- package/src/Strategy/Utilities/getObjectTagsViewItems.js +13 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -1
- package/src/Utilities/Emitter.d.ts +1 -0
- package/src/Utilities/Emitter.js +9 -0
- package/src/Utilities/Extensions/TypeExtensions.d.ts +2 -0
- package/src/Utilities/Interface/MessagePopups.d.ts +3 -3
- package/src/Utilities/ObjectFactory.d.ts +2 -2
- package/src/Utilities/Services/AlertService.js +1 -1
- package/src/Utilities/Services/DataService.js +1 -1
- package/src/Utilities/Services/Interface/IModuleService.d.ts +1 -1
- package/src/Utilities/Services/ModuleService.d.ts +1 -1
- package/src/Utilities/Services/ModuleService.js +1 -0
- package/src/View/Alert/AlertStatusSubPanel.js +2 -1
- package/src/View/Alert/Wizard/AlertWizard.js +9 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +9 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +9 -0
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -0
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/FilterForm/FilterForm.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +11 -7
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +3 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +22 -0
- package/src/View/Components/Popups/AdaptableToaster.js +3 -1
- package/src/View/Components/Popups/FormPopups/FormPopups.d.ts +3 -3
- package/src/View/Components/TagValueSelector/index.d.ts +13 -0
- package/src/View/Components/TagValueSelector/index.js +22 -0
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +2 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +9 -0
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +9 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +1 -1
- package/src/View/DataSource/Wizard/DataSourceWizard.js +10 -0
- package/src/View/Export/ExportSelector.d.ts +4 -0
- package/src/View/Export/ExportSelector.js +75 -0
- package/src/View/Export/ExportViewPanel.js +6 -7
- package/src/View/Export/ReportExportDropdown.d.ts +2 -5
- package/src/View/Export/Wizard/NewReportWizard.js +9 -0
- package/src/View/Export/constants.d.ts +2 -0
- package/src/View/Export/constants.js +5 -0
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +9 -0
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +9 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +9 -0
- package/src/View/GridInfo/GridOptionsComponent.d.ts +0 -1
- package/src/View/GridInfo/GridOptionsComponent.js +0 -1
- package/src/View/Layout/LayoutCloneButton.d.ts +6 -0
- package/src/View/Layout/LayoutCloneButton.js +15 -0
- package/src/View/Layout/LayoutRadioSelector.d.ts +2 -1
- package/src/View/Layout/LayoutRadioSelector.js +1 -1
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +9 -0
- package/src/View/Query/Wizard/NamedQueryWizard.js +9 -0
- package/src/View/Schedule/Wizard/ScheduleWizard.js +10 -0
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +10 -0
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
- package/src/View/StatusBar/StatusBarPopup.js +1 -1
- package/src/View/Wizard/ObjectTagsWizardSection.d.ts +8 -0
- package/src/View/Wizard/ObjectTagsWizardSection.js +22 -0
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +12 -5
- package/src/agGrid/Adaptable.d.ts +14 -1
- package/src/agGrid/Adaptable.js +103 -68
- package/src/agGrid/agGridHelper.js +2 -1
- package/src/agGrid/createAgStatusPanelComponent.js +1 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +8 -7
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/ExpressionEditor/index.js +5 -2
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/WindowModal/useStacking.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +44 -2
- package/src/metamodel/adaptable.metamodel.js +229 -21
- package/src/types.d.ts +6 -5
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -259,7 +259,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
259
259
|
{
|
|
260
260
|
"name": "destroy",
|
|
261
261
|
"kind": "unknown",
|
|
262
|
-
"description": "Cleanup method - should be called only when using the vanilla javascript component, as framework components cleanup is performed when the component is destroyed/unmounted.",
|
|
262
|
+
"description": "Cleanup method - should be called only when using the vanilla javascript component, as framework components cleanup is performed when the component is destroyed/unmounted. This destroys the Adaptable instance.",
|
|
263
263
|
"uiLabel": "Destroy"
|
|
264
264
|
},
|
|
265
265
|
{
|
|
@@ -311,6 +311,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
311
311
|
"uiLabel": "Grid Api",
|
|
312
312
|
"reference": "GridApi"
|
|
313
313
|
},
|
|
314
|
+
{
|
|
315
|
+
"name": "internalDestroySelf",
|
|
316
|
+
"kind": "unknown",
|
|
317
|
+
"description": "Cleanup method that only cleans up this api instance (clears event listeners and sets every property to null), but does not destroy the Adaptable instance.",
|
|
318
|
+
"uiLabel": "Internal Destroy Self"
|
|
319
|
+
},
|
|
314
320
|
{
|
|
315
321
|
"name": "layoutApi",
|
|
316
322
|
"kind": "REFERENCE",
|
|
@@ -973,10 +979,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
973
979
|
{
|
|
974
980
|
"name": "Source",
|
|
975
981
|
"kind": "unknown",
|
|
976
|
-
"description": "Source of state object: 'Config' if provided via
|
|
982
|
+
"description": "Source of state object: 'Config' if provided via `AdaptableOptions.predefinedConfig`, 'User' or undefined for runtime state.",
|
|
977
983
|
"uiLabel": "Source",
|
|
978
984
|
"isOptional": true
|
|
979
985
|
},
|
|
986
|
+
{
|
|
987
|
+
"name": "Tags",
|
|
988
|
+
"kind": "unknown",
|
|
989
|
+
"description": "List of tags associated with the object",
|
|
990
|
+
"uiLabel": "Tags",
|
|
991
|
+
"isOptional": true
|
|
992
|
+
},
|
|
980
993
|
{
|
|
981
994
|
"name": "Uuid",
|
|
982
995
|
"kind": "REFERENCE",
|
|
@@ -2025,6 +2038,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2025
2038
|
"isOptional": true,
|
|
2026
2039
|
"gridInfo": "item",
|
|
2027
2040
|
"defaultValue": "4000"
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"name": "statusbarHighlightDuration",
|
|
2044
|
+
"kind": "number",
|
|
2045
|
+
"description": "How long (in ms) the status-panel will be highlighted when an Alert Fires",
|
|
2046
|
+
"uiLabel": "Statusbar Highlight Duration",
|
|
2047
|
+
"isOptional": true,
|
|
2048
|
+
"defaultValue": "2000"
|
|
2028
2049
|
}
|
|
2029
2050
|
]
|
|
2030
2051
|
},
|
|
@@ -2224,10 +2245,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2224
2245
|
}
|
|
2225
2246
|
]
|
|
2226
2247
|
},
|
|
2227
|
-
"
|
|
2228
|
-
"name": "
|
|
2248
|
+
"BaseContext": {
|
|
2249
|
+
"name": "BaseContext",
|
|
2229
2250
|
"kind": "Interface",
|
|
2230
|
-
"description": "Base Context object used
|
|
2251
|
+
"description": "Base Context object used in many functions provided by AdapTable",
|
|
2231
2252
|
"properties": [
|
|
2232
2253
|
{
|
|
2233
2254
|
"name": "adaptableApi",
|
|
@@ -2643,10 +2664,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2643
2664
|
}
|
|
2644
2665
|
]
|
|
2645
2666
|
},
|
|
2646
|
-
"
|
|
2647
|
-
"name": "
|
|
2667
|
+
"CellSummaryOperationContext": {
|
|
2668
|
+
"name": "CellSummaryOperationContext",
|
|
2648
2669
|
"kind": "Interface",
|
|
2649
|
-
"description": "
|
|
2670
|
+
"description": "Context provided to a custom Cell Summary Operation function",
|
|
2650
2671
|
"properties": [
|
|
2651
2672
|
{
|
|
2652
2673
|
"name": "allValues",
|
|
@@ -3536,7 +3557,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3536
3557
|
{
|
|
3537
3558
|
"name": "getPersistedState",
|
|
3538
3559
|
"kind": "function",
|
|
3539
|
-
"description": "Retrieves the
|
|
3560
|
+
"description": "Retrieves the persisted state in Adaptable. This is the state that was last stored with the `StatusOptions.persistState()` function.",
|
|
3540
3561
|
"uiLabel": "Get Persisted State"
|
|
3541
3562
|
},
|
|
3542
3563
|
{
|
|
@@ -3602,7 +3623,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3602
3623
|
{
|
|
3603
3624
|
"name": "loadUserState",
|
|
3604
3625
|
"kind": "function",
|
|
3605
|
-
"description": "Loads supplied user state, replacing (
|
|
3626
|
+
"description": "Loads supplied user state, replacing (NOT merging) existing User(persisted) State.",
|
|
3606
3627
|
"uiLabel": "Load User State"
|
|
3607
3628
|
},
|
|
3608
3629
|
{
|
|
@@ -5283,6 +5304,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5283
5304
|
"description": "Retrieves System Reports section of Export State",
|
|
5284
5305
|
"uiLabel": "Get Available System Reports"
|
|
5285
5306
|
},
|
|
5307
|
+
{
|
|
5308
|
+
"name": "getCurrentDestination",
|
|
5309
|
+
"kind": "function",
|
|
5310
|
+
"description": "Retrieves the current Export destination",
|
|
5311
|
+
"uiLabel": "Get Current Destination"
|
|
5312
|
+
},
|
|
5286
5313
|
{
|
|
5287
5314
|
"name": "getCurrentReport",
|
|
5288
5315
|
"kind": "function",
|
|
@@ -5355,6 +5382,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5355
5382
|
"description": "Runs the report function of the CustomReport with the given reportName",
|
|
5356
5383
|
"uiLabel": "Run Custom Report"
|
|
5357
5384
|
},
|
|
5385
|
+
{
|
|
5386
|
+
"name": "selectDestination",
|
|
5387
|
+
"kind": "function",
|
|
5388
|
+
"description": "Selects the report destination in the dashboard and statusbar UI",
|
|
5389
|
+
"uiLabel": "Select Destination"
|
|
5390
|
+
},
|
|
5391
|
+
{
|
|
5392
|
+
"name": "selectReport",
|
|
5393
|
+
"kind": "function",
|
|
5394
|
+
"description": "Selects the report in the dashboard and statusbar UI",
|
|
5395
|
+
"uiLabel": "Select Report"
|
|
5396
|
+
},
|
|
5358
5397
|
{
|
|
5359
5398
|
"name": "sendReport",
|
|
5360
5399
|
"kind": "function",
|
|
@@ -6180,13 +6219,121 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6180
6219
|
"FinanceApi": {
|
|
6181
6220
|
"name": "FinanceApi",
|
|
6182
6221
|
"kind": "Interface",
|
|
6183
|
-
"description": "Provides run-time access to the
|
|
6222
|
+
"description": "Provides run-time access to the Finance Plugin",
|
|
6184
6223
|
"properties": [
|
|
6224
|
+
{
|
|
6225
|
+
"name": "createFDC3ContactContext",
|
|
6226
|
+
"kind": "function",
|
|
6227
|
+
"description": "Creates Contact Context",
|
|
6228
|
+
"uiLabel": "Create FDC3Contact Context"
|
|
6229
|
+
},
|
|
6230
|
+
{
|
|
6231
|
+
"name": "createFDC3ContactListContext",
|
|
6232
|
+
"kind": "function",
|
|
6233
|
+
"description": "Creates Contact List Context",
|
|
6234
|
+
"uiLabel": "Create FDC3Contact List Context"
|
|
6235
|
+
},
|
|
6236
|
+
{
|
|
6237
|
+
"name": "createFDC3CountryContext",
|
|
6238
|
+
"kind": "function",
|
|
6239
|
+
"description": "Creates Country Context",
|
|
6240
|
+
"uiLabel": "Create FDC3Country Context"
|
|
6241
|
+
},
|
|
6242
|
+
{
|
|
6243
|
+
"name": "createFDC3InstrumentContext",
|
|
6244
|
+
"kind": "function",
|
|
6245
|
+
"description": "Creates Instrument Context",
|
|
6246
|
+
"uiLabel": "Create FDC3Instrument Context"
|
|
6247
|
+
},
|
|
6248
|
+
{
|
|
6249
|
+
"name": "createFDC3InstrumentListContext",
|
|
6250
|
+
"kind": "function",
|
|
6251
|
+
"description": "Creates Instrumentlist Context",
|
|
6252
|
+
"uiLabel": "Create FDC3Instrument List Context"
|
|
6253
|
+
},
|
|
6254
|
+
{
|
|
6255
|
+
"name": "createFDC3OrganizationContext",
|
|
6256
|
+
"kind": "function",
|
|
6257
|
+
"description": "Creates Organization Context",
|
|
6258
|
+
"uiLabel": "Create FDC3Organization Context"
|
|
6259
|
+
},
|
|
6260
|
+
{
|
|
6261
|
+
"name": "createFDC3PortfolioContext",
|
|
6262
|
+
"kind": "function",
|
|
6263
|
+
"description": "Creates Portfolio Context",
|
|
6264
|
+
"uiLabel": "Create FDC3Portfolio Context"
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
"name": "createFDC3PositionContext",
|
|
6268
|
+
"kind": "function",
|
|
6269
|
+
"description": "Creates Position Context",
|
|
6270
|
+
"uiLabel": "Create FDC3Position Context"
|
|
6271
|
+
},
|
|
6272
|
+
{
|
|
6273
|
+
"name": "getContactColumnById",
|
|
6274
|
+
"kind": "function",
|
|
6275
|
+
"description": "Gets Contact Column with given Id",
|
|
6276
|
+
"uiLabel": "Get Contact Column By Id"
|
|
6277
|
+
},
|
|
6278
|
+
{
|
|
6279
|
+
"name": "getCountryColumnById",
|
|
6280
|
+
"kind": "function",
|
|
6281
|
+
"description": "Gets Country Column with given Id",
|
|
6282
|
+
"uiLabel": "Get Country Column By Id"
|
|
6283
|
+
},
|
|
6284
|
+
{
|
|
6285
|
+
"name": "getInstrumentColumnById",
|
|
6286
|
+
"kind": "function",
|
|
6287
|
+
"description": "Gets Instrument Column with given Id",
|
|
6288
|
+
"uiLabel": "Get Instrument Column By Id"
|
|
6289
|
+
},
|
|
6290
|
+
{
|
|
6291
|
+
"name": "getOrganizationColumnById",
|
|
6292
|
+
"kind": "function",
|
|
6293
|
+
"description": "Gets Organization Column with given Id",
|
|
6294
|
+
"uiLabel": "Get Organization Column By Id"
|
|
6295
|
+
},
|
|
6185
6296
|
{
|
|
6186
6297
|
"name": "getPluginOptions",
|
|
6187
6298
|
"kind": "function",
|
|
6188
|
-
"description": "Retrieves the
|
|
6299
|
+
"description": "Retrieves the FinancePlugOptions provided in the Finance Plugin",
|
|
6189
6300
|
"uiLabel": "Get Plugin Options"
|
|
6301
|
+
},
|
|
6302
|
+
{
|
|
6303
|
+
"name": "getPositionColumnById",
|
|
6304
|
+
"kind": "function",
|
|
6305
|
+
"description": "Gets Position Column with given Id",
|
|
6306
|
+
"uiLabel": "Get Position Column By Id"
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"name": "isValidContactlistIntent",
|
|
6310
|
+
"kind": "function",
|
|
6311
|
+
"description": "Checks whether the Contact Intent is valid for Contact Lists",
|
|
6312
|
+
"uiLabel": "Is Valid Contactlist Intent"
|
|
6313
|
+
},
|
|
6314
|
+
{
|
|
6315
|
+
"name": "isValidInstrumentlistIntent",
|
|
6316
|
+
"kind": "function",
|
|
6317
|
+
"description": "Checks whether the Instrument Intent is valid for Instrument Lists",
|
|
6318
|
+
"uiLabel": "Is Valid Instrumentlist Intent"
|
|
6319
|
+
},
|
|
6320
|
+
{
|
|
6321
|
+
"name": "isValidPositionIntent",
|
|
6322
|
+
"kind": "function",
|
|
6323
|
+
"description": "Checks whether the Position Intent is valid for single Positions (and not Portfolios)",
|
|
6324
|
+
"uiLabel": "Is Valid Position Intent"
|
|
6325
|
+
},
|
|
6326
|
+
{
|
|
6327
|
+
"name": "publishBroadcastFDC3MessageEvent",
|
|
6328
|
+
"kind": "function",
|
|
6329
|
+
"description": "Publishes an FDC3 Message Event of type `Broadcast`",
|
|
6330
|
+
"uiLabel": "Publish Broadcast FDC3Message Event"
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"name": "publishRaiseFDC3IntentEvent",
|
|
6334
|
+
"kind": "function",
|
|
6335
|
+
"description": "Publishes an FDC3 Message Event of type `Raise Event`",
|
|
6336
|
+
"uiLabel": "Publish Raise FDC3Intent Event"
|
|
6190
6337
|
}
|
|
6191
6338
|
]
|
|
6192
6339
|
},
|
|
@@ -8355,6 +8502,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8355
8502
|
"kind": "Interface",
|
|
8356
8503
|
"description": "Internal State used by AdapTable for managing the ipushpull plugin"
|
|
8357
8504
|
},
|
|
8505
|
+
"IsObjectAvailableInLayoutContext": {
|
|
8506
|
+
"name": "IsObjectAvailableInLayoutContext",
|
|
8507
|
+
"kind": "Interface",
|
|
8508
|
+
"description": "Context for `LayoutOptions.isObjectAvailableInLayout` method"
|
|
8509
|
+
},
|
|
8358
8510
|
"Layout": {
|
|
8359
8511
|
"name": "Layout",
|
|
8360
8512
|
"kind": "Interface",
|
|
@@ -8639,7 +8791,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8639
8791
|
{
|
|
8640
8792
|
"name": "showChangeColumnCaption",
|
|
8641
8793
|
"kind": "function",
|
|
8642
|
-
"description": "Opens
|
|
8794
|
+
"description": "Opens Change Column Caption popup",
|
|
8643
8795
|
"uiLabel": "Show Change Column Caption"
|
|
8644
8796
|
},
|
|
8645
8797
|
{
|
|
@@ -8656,6 +8808,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8656
8808
|
}
|
|
8657
8809
|
]
|
|
8658
8810
|
},
|
|
8811
|
+
"LayoutAssociatedObject": {
|
|
8812
|
+
"name": "LayoutAssociatedObject",
|
|
8813
|
+
"kind": "TypeAlias",
|
|
8814
|
+
"description": "Types of objects that can be associated with a Layout"
|
|
8815
|
+
},
|
|
8659
8816
|
"LayoutChangedInfo": {
|
|
8660
8817
|
"name": "LayoutChangedInfo",
|
|
8661
8818
|
"kind": "Interface",
|
|
@@ -8676,10 +8833,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8676
8833
|
},
|
|
8677
8834
|
{
|
|
8678
8835
|
"name": "oldLayoutState",
|
|
8679
|
-
"kind": "
|
|
8836
|
+
"kind": "unknown",
|
|
8680
8837
|
"description": "Previous Layout State",
|
|
8681
|
-
"uiLabel": "Old Layout State"
|
|
8682
|
-
"reference": "LayoutState"
|
|
8838
|
+
"uiLabel": "Old Layout State"
|
|
8683
8839
|
}
|
|
8684
8840
|
]
|
|
8685
8841
|
},
|
|
@@ -8688,6 +8844,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8688
8844
|
"kind": "Interface",
|
|
8689
8845
|
"description": "Options for configuring Layouts; these manage Column visibility, order, sorting, grouping and width",
|
|
8690
8846
|
"properties": [
|
|
8847
|
+
{
|
|
8848
|
+
"name": "autoGenerateTagsForLayouts",
|
|
8849
|
+
"kind": "unknown",
|
|
8850
|
+
"description": "Automatically generate a tag for each existing layout",
|
|
8851
|
+
"uiLabel": "Auto Generate Tags For Layouts",
|
|
8852
|
+
"isOptional": true
|
|
8853
|
+
},
|
|
8691
8854
|
{
|
|
8692
8855
|
"name": "autoSaveLayouts",
|
|
8693
8856
|
"kind": "boolean",
|
|
@@ -8727,9 +8890,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8727
8890
|
{
|
|
8728
8891
|
"name": "displayRowGroups",
|
|
8729
8892
|
"kind": "unknown",
|
|
8730
|
-
"description": "Whether
|
|
8893
|
+
"description": "Whether Row Groups display all as expanded, all as closed or dynamically (i.e. saved in Layout)",
|
|
8731
8894
|
"uiLabel": "Display Row Groups",
|
|
8732
|
-
"isOptional": true
|
|
8895
|
+
"isOptional": true,
|
|
8896
|
+
"gridInfo": "item",
|
|
8897
|
+
"defaultValue": "'closed'"
|
|
8733
8898
|
},
|
|
8734
8899
|
{
|
|
8735
8900
|
"name": "includeExpandedRowGroups",
|
|
@@ -8741,11 +8906,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8741
8906
|
"defaultValue": "false"
|
|
8742
8907
|
},
|
|
8743
8908
|
{
|
|
8744
|
-
"name": "
|
|
8909
|
+
"name": "isObjectAvailableInLayout",
|
|
8745
8910
|
"kind": "unknown",
|
|
8746
|
-
"description": "
|
|
8747
|
-
"uiLabel": "
|
|
8911
|
+
"description": "Checks if the provided AdaptableObject is available in the given Layout",
|
|
8912
|
+
"uiLabel": "Is Object Available In Layout",
|
|
8748
8913
|
"isOptional": true
|
|
8914
|
+
},
|
|
8915
|
+
{
|
|
8916
|
+
"name": "viewOptions",
|
|
8917
|
+
"kind": "REFERENCE",
|
|
8918
|
+
"description": "Customize how Layouts are displayed in Settings Panel",
|
|
8919
|
+
"uiLabel": "View Options",
|
|
8920
|
+
"isOptional": true,
|
|
8921
|
+
"reference": "LayoutViewOptions"
|
|
8749
8922
|
}
|
|
8750
8923
|
]
|
|
8751
8924
|
},
|
|
@@ -8770,6 +8943,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8770
8943
|
}
|
|
8771
8944
|
]
|
|
8772
8945
|
},
|
|
8946
|
+
"LayoutViewOptions": {
|
|
8947
|
+
"name": "LayoutViewOptions",
|
|
8948
|
+
"kind": "Interface",
|
|
8949
|
+
"description": "Customize how Layouts are displayed in Settings Panel",
|
|
8950
|
+
"properties": [
|
|
8951
|
+
{
|
|
8952
|
+
"name": "maxColumnsToDisplay",
|
|
8953
|
+
"kind": "number",
|
|
8954
|
+
"description": "How many columns to display in inline Layout preview",
|
|
8955
|
+
"uiLabel": "Max Columns To Display",
|
|
8956
|
+
"isOptional": true,
|
|
8957
|
+
"defaultValue": "10"
|
|
8958
|
+
}
|
|
8959
|
+
]
|
|
8960
|
+
},
|
|
8773
8961
|
"LiveDataChangedInfo": {
|
|
8774
8962
|
"name": "LiveDataChangedInfo",
|
|
8775
8963
|
"kind": "Interface",
|
|
@@ -10596,6 +10784,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10596
10784
|
"description": "Retrieves Schedule by id",
|
|
10597
10785
|
"uiLabel": "Get Schedule By Id"
|
|
10598
10786
|
},
|
|
10787
|
+
{
|
|
10788
|
+
"name": "getScheduleState",
|
|
10789
|
+
"kind": "function",
|
|
10790
|
+
"description": "Retrieves Schedule section from Adaptable State",
|
|
10791
|
+
"uiLabel": "Get Schedule State"
|
|
10792
|
+
},
|
|
10599
10793
|
{
|
|
10600
10794
|
"name": "showSchedulePopup",
|
|
10601
10795
|
"kind": "function",
|
|
@@ -11264,6 +11458,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11264
11458
|
"isOptional": true,
|
|
11265
11459
|
"defaultValue": "true"
|
|
11266
11460
|
},
|
|
11461
|
+
{
|
|
11462
|
+
"name": "HeaderToolTip",
|
|
11463
|
+
"kind": "string",
|
|
11464
|
+
"description": "Tooltip to show in the Column Header (not cells)",
|
|
11465
|
+
"uiLabel": "Header Tool Tip",
|
|
11466
|
+
"isOptional": true
|
|
11467
|
+
},
|
|
11267
11468
|
{
|
|
11268
11469
|
"name": "Pivotable",
|
|
11269
11470
|
"kind": "boolean",
|
|
@@ -12169,6 +12370,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12169
12370
|
"defaultValue": "['GridSummary', 'AdaptableOptions', 'ColumnInfo']",
|
|
12170
12371
|
"reference": "unknown"
|
|
12171
12372
|
},
|
|
12373
|
+
{
|
|
12374
|
+
"name": "objectTags",
|
|
12375
|
+
"kind": "unknown",
|
|
12376
|
+
"description": "Optional list of AdaptableObjectTags that can be associated with AdaptableObjects",
|
|
12377
|
+
"uiLabel": "Object Tags",
|
|
12378
|
+
"isOptional": true
|
|
12379
|
+
},
|
|
12172
12380
|
{
|
|
12173
12381
|
"name": "permittedValues",
|
|
12174
12382
|
"kind": "unknown",
|
package/src/types.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ 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 } from './AdaptableOptions/LayoutOptions';
|
|
20
|
+
export type { LayoutOptions, LayoutViewOptions, IsObjectAvailableInLayoutContext, LayoutAssociatedObject, } from './AdaptableOptions/LayoutOptions';
|
|
21
21
|
export type { OpenFinPluginOptions } from './AdaptableOptions/OpenFinPluginOptions';
|
|
22
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';
|
|
23
23
|
export type { DateInputOptions } from './AdaptableOptions/DateInputOptions';
|
|
@@ -29,7 +29,7 @@ export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterA
|
|
|
29
29
|
export type { ConfigState } from './PredefinedConfig/ConfigState';
|
|
30
30
|
export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
|
|
31
31
|
export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
|
|
32
|
-
export type { UserInterfaceOptions, CellValuesList, ActionColumnButtonContext, ActionColumn, ActionColumnSettings, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues,
|
|
32
|
+
export type { UserInterfaceOptions, CellValuesList, ActionColumnButtonContext, ActionColumn, ActionColumnSettings, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, } from './AdaptableOptions/UserInterfaceOptions';
|
|
33
33
|
export type { MenuOptions } from './AdaptableOptions/MenuOptions';
|
|
34
34
|
export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
|
|
35
35
|
export type { EntitlementOptions } from './AdaptableOptions/EntitlementOptions';
|
|
@@ -98,7 +98,7 @@ export type { AlertDefinition, AlertProperties, AlertState, AlertButtonForm, Ale
|
|
|
98
98
|
export type { ApplicationDataEntry, ApplicationState } from './PredefinedConfig/ApplicationState';
|
|
99
99
|
export type { SpecialColumnSettings } from './PredefinedConfig/Common/SpecialColumnSettings';
|
|
100
100
|
export type { CalculatedColumn, CalculatedColumnSettings, CalculatedColumnState, AdaptableCalculatedColumnQuery, } from './PredefinedConfig/CalculatedColumnState';
|
|
101
|
-
export type { CellSummmary, CellSummaryOperation,
|
|
101
|
+
export type { CellSummmary, CellSummaryOperation, CellSummaryOperationContext, } from './PredefinedConfig/Common/CellSummary';
|
|
102
102
|
export type { FlashingCellDefinition, FlashingCellState, } from './PredefinedConfig/FlashingCellState';
|
|
103
103
|
export type { AdaptableAlert, AdaptableAlertType, AdaptableGenericAlert, AdaptableCellChangedAlert, AdaptableRowChangedAlert, AdaptableAlertBase, } from './PredefinedConfig/Common/AdaptableAlert';
|
|
104
104
|
export type { AdaptableFlashingCell } from './PredefinedConfig/Common/AdaptableFlashingCell';
|
|
@@ -124,8 +124,9 @@ export type { CellDataChangedInfo } from './PredefinedConfig/Common/CellDataChan
|
|
|
124
124
|
export type { DataChangedScope } from './PredefinedConfig/Common/DataChangedScope';
|
|
125
125
|
export type { DataUpdateConfig } from './PredefinedConfig/Common/DataUpdateConfig';
|
|
126
126
|
export type { AdaptableFormData, AdaptableForm, AdaptableFormField, } from './PredefinedConfig/Common/AdaptableForm';
|
|
127
|
-
export type { AdaptableButton
|
|
128
|
-
export type { AdaptableMenuItem, UserMenuItem,
|
|
127
|
+
export type { AdaptableButton } from './PredefinedConfig/Common/AdaptableButton';
|
|
128
|
+
export type { AdaptableMenuItem, UserMenuItem, ColumnMenuContext, ContextMenuContext, } from './PredefinedConfig/Common/Menu';
|
|
129
|
+
export type { BaseContext } from './PredefinedConfig/Common/BaseContext';
|
|
129
130
|
export type { Schedule } from './PredefinedConfig/Common/Schedule';
|
|
130
131
|
export type { ButtonStyle } from './PredefinedConfig/Common/ButtonStyle';
|
|
131
132
|
export type { AdaptableModule, AdaptableToolPanel, AdaptableQLModule, AdaptableSettingsPanel, AdaptableDashboardToolbar, AdaptableStatusBarPanel, } from './PredefinedConfig/Common/Types';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "11.
|
|
1
|
+
declare const _default: "11.2.0-canary.0";
|
|
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.
|
|
3
|
+
exports.default = '11.2.0-canary.0'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|