@adaptabletools/adaptable 11.1.15 → 11.2.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 +14 -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 +4 -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/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 +14 -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 +12 -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/metamodel/adaptable.metamodel.d.ts +44 -2
- package/src/metamodel/adaptable.metamodel.js +235 -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
|
{
|
|
@@ -5174,6 +5195,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5174
5195
|
"description": "Fired when Adaptable is up and running - has no arguments.",
|
|
5175
5196
|
"uiLabel": "On"
|
|
5176
5197
|
},
|
|
5198
|
+
{
|
|
5199
|
+
"name": "on",
|
|
5200
|
+
"kind": "function",
|
|
5201
|
+
"description": "Fired when Adaptable is destroyed",
|
|
5202
|
+
"uiLabel": "On"
|
|
5203
|
+
},
|
|
5177
5204
|
{
|
|
5178
5205
|
"name": "on",
|
|
5179
5206
|
"kind": "function",
|
|
@@ -5283,6 +5310,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5283
5310
|
"description": "Retrieves System Reports section of Export State",
|
|
5284
5311
|
"uiLabel": "Get Available System Reports"
|
|
5285
5312
|
},
|
|
5313
|
+
{
|
|
5314
|
+
"name": "getCurrentDestination",
|
|
5315
|
+
"kind": "function",
|
|
5316
|
+
"description": "Retrieves the current Export destination",
|
|
5317
|
+
"uiLabel": "Get Current Destination"
|
|
5318
|
+
},
|
|
5286
5319
|
{
|
|
5287
5320
|
"name": "getCurrentReport",
|
|
5288
5321
|
"kind": "function",
|
|
@@ -5355,6 +5388,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5355
5388
|
"description": "Runs the report function of the CustomReport with the given reportName",
|
|
5356
5389
|
"uiLabel": "Run Custom Report"
|
|
5357
5390
|
},
|
|
5391
|
+
{
|
|
5392
|
+
"name": "selectDestination",
|
|
5393
|
+
"kind": "function",
|
|
5394
|
+
"description": "Selects the report destination in the dashboard and statusbar UI",
|
|
5395
|
+
"uiLabel": "Select Destination"
|
|
5396
|
+
},
|
|
5397
|
+
{
|
|
5398
|
+
"name": "selectReport",
|
|
5399
|
+
"kind": "function",
|
|
5400
|
+
"description": "Selects the report in the dashboard and statusbar UI",
|
|
5401
|
+
"uiLabel": "Select Report"
|
|
5402
|
+
},
|
|
5358
5403
|
{
|
|
5359
5404
|
"name": "sendReport",
|
|
5360
5405
|
"kind": "function",
|
|
@@ -6180,13 +6225,121 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6180
6225
|
"FinanceApi": {
|
|
6181
6226
|
"name": "FinanceApi",
|
|
6182
6227
|
"kind": "Interface",
|
|
6183
|
-
"description": "Provides run-time access to the
|
|
6228
|
+
"description": "Provides run-time access to the Finance Plugin",
|
|
6184
6229
|
"properties": [
|
|
6230
|
+
{
|
|
6231
|
+
"name": "createFDC3ContactContext",
|
|
6232
|
+
"kind": "function",
|
|
6233
|
+
"description": "Creates Contact Context",
|
|
6234
|
+
"uiLabel": "Create FDC3Contact Context"
|
|
6235
|
+
},
|
|
6236
|
+
{
|
|
6237
|
+
"name": "createFDC3ContactListContext",
|
|
6238
|
+
"kind": "function",
|
|
6239
|
+
"description": "Creates Contact List Context",
|
|
6240
|
+
"uiLabel": "Create FDC3Contact List Context"
|
|
6241
|
+
},
|
|
6242
|
+
{
|
|
6243
|
+
"name": "createFDC3CountryContext",
|
|
6244
|
+
"kind": "function",
|
|
6245
|
+
"description": "Creates Country Context",
|
|
6246
|
+
"uiLabel": "Create FDC3Country Context"
|
|
6247
|
+
},
|
|
6248
|
+
{
|
|
6249
|
+
"name": "createFDC3InstrumentContext",
|
|
6250
|
+
"kind": "function",
|
|
6251
|
+
"description": "Creates Instrument Context",
|
|
6252
|
+
"uiLabel": "Create FDC3Instrument Context"
|
|
6253
|
+
},
|
|
6254
|
+
{
|
|
6255
|
+
"name": "createFDC3InstrumentListContext",
|
|
6256
|
+
"kind": "function",
|
|
6257
|
+
"description": "Creates Instrumentlist Context",
|
|
6258
|
+
"uiLabel": "Create FDC3Instrument List Context"
|
|
6259
|
+
},
|
|
6260
|
+
{
|
|
6261
|
+
"name": "createFDC3OrganizationContext",
|
|
6262
|
+
"kind": "function",
|
|
6263
|
+
"description": "Creates Organization Context",
|
|
6264
|
+
"uiLabel": "Create FDC3Organization Context"
|
|
6265
|
+
},
|
|
6266
|
+
{
|
|
6267
|
+
"name": "createFDC3PortfolioContext",
|
|
6268
|
+
"kind": "function",
|
|
6269
|
+
"description": "Creates Portfolio Context",
|
|
6270
|
+
"uiLabel": "Create FDC3Portfolio Context"
|
|
6271
|
+
},
|
|
6272
|
+
{
|
|
6273
|
+
"name": "createFDC3PositionContext",
|
|
6274
|
+
"kind": "function",
|
|
6275
|
+
"description": "Creates Position Context",
|
|
6276
|
+
"uiLabel": "Create FDC3Position Context"
|
|
6277
|
+
},
|
|
6278
|
+
{
|
|
6279
|
+
"name": "getContactColumnById",
|
|
6280
|
+
"kind": "function",
|
|
6281
|
+
"description": "Gets Contact Column with given Id",
|
|
6282
|
+
"uiLabel": "Get Contact Column By Id"
|
|
6283
|
+
},
|
|
6284
|
+
{
|
|
6285
|
+
"name": "getCountryColumnById",
|
|
6286
|
+
"kind": "function",
|
|
6287
|
+
"description": "Gets Country Column with given Id",
|
|
6288
|
+
"uiLabel": "Get Country Column By Id"
|
|
6289
|
+
},
|
|
6290
|
+
{
|
|
6291
|
+
"name": "getInstrumentColumnById",
|
|
6292
|
+
"kind": "function",
|
|
6293
|
+
"description": "Gets Instrument Column with given Id",
|
|
6294
|
+
"uiLabel": "Get Instrument Column By Id"
|
|
6295
|
+
},
|
|
6296
|
+
{
|
|
6297
|
+
"name": "getOrganizationColumnById",
|
|
6298
|
+
"kind": "function",
|
|
6299
|
+
"description": "Gets Organization Column with given Id",
|
|
6300
|
+
"uiLabel": "Get Organization Column By Id"
|
|
6301
|
+
},
|
|
6185
6302
|
{
|
|
6186
6303
|
"name": "getPluginOptions",
|
|
6187
6304
|
"kind": "function",
|
|
6188
|
-
"description": "Retrieves the
|
|
6305
|
+
"description": "Retrieves the FinancePlugOptions provided in the Finance Plugin",
|
|
6189
6306
|
"uiLabel": "Get Plugin Options"
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
"name": "getPositionColumnById",
|
|
6310
|
+
"kind": "function",
|
|
6311
|
+
"description": "Gets Position Column with given Id",
|
|
6312
|
+
"uiLabel": "Get Position Column By Id"
|
|
6313
|
+
},
|
|
6314
|
+
{
|
|
6315
|
+
"name": "isValidContactlistIntent",
|
|
6316
|
+
"kind": "function",
|
|
6317
|
+
"description": "Checks whether the Contact Intent is valid for Contact Lists",
|
|
6318
|
+
"uiLabel": "Is Valid Contactlist Intent"
|
|
6319
|
+
},
|
|
6320
|
+
{
|
|
6321
|
+
"name": "isValidInstrumentlistIntent",
|
|
6322
|
+
"kind": "function",
|
|
6323
|
+
"description": "Checks whether the Instrument Intent is valid for Instrument Lists",
|
|
6324
|
+
"uiLabel": "Is Valid Instrumentlist Intent"
|
|
6325
|
+
},
|
|
6326
|
+
{
|
|
6327
|
+
"name": "isValidPositionIntent",
|
|
6328
|
+
"kind": "function",
|
|
6329
|
+
"description": "Checks whether the Position Intent is valid for single Positions (and not Portfolios)",
|
|
6330
|
+
"uiLabel": "Is Valid Position Intent"
|
|
6331
|
+
},
|
|
6332
|
+
{
|
|
6333
|
+
"name": "publishBroadcastFDC3MessageEvent",
|
|
6334
|
+
"kind": "function",
|
|
6335
|
+
"description": "Publishes an FDC3 Message Event of type `Broadcast`",
|
|
6336
|
+
"uiLabel": "Publish Broadcast FDC3Message Event"
|
|
6337
|
+
},
|
|
6338
|
+
{
|
|
6339
|
+
"name": "publishRaiseFDC3IntentEvent",
|
|
6340
|
+
"kind": "function",
|
|
6341
|
+
"description": "Publishes an FDC3 Message Event of type `Raise Event`",
|
|
6342
|
+
"uiLabel": "Publish Raise FDC3Intent Event"
|
|
6190
6343
|
}
|
|
6191
6344
|
]
|
|
6192
6345
|
},
|
|
@@ -8355,6 +8508,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8355
8508
|
"kind": "Interface",
|
|
8356
8509
|
"description": "Internal State used by AdapTable for managing the ipushpull plugin"
|
|
8357
8510
|
},
|
|
8511
|
+
"IsObjectAvailableInLayoutContext": {
|
|
8512
|
+
"name": "IsObjectAvailableInLayoutContext",
|
|
8513
|
+
"kind": "Interface",
|
|
8514
|
+
"description": "Context for `LayoutOptions.isObjectAvailableInLayout` method"
|
|
8515
|
+
},
|
|
8358
8516
|
"Layout": {
|
|
8359
8517
|
"name": "Layout",
|
|
8360
8518
|
"kind": "Interface",
|
|
@@ -8639,7 +8797,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8639
8797
|
{
|
|
8640
8798
|
"name": "showChangeColumnCaption",
|
|
8641
8799
|
"kind": "function",
|
|
8642
|
-
"description": "Opens
|
|
8800
|
+
"description": "Opens Change Column Caption popup",
|
|
8643
8801
|
"uiLabel": "Show Change Column Caption"
|
|
8644
8802
|
},
|
|
8645
8803
|
{
|
|
@@ -8656,6 +8814,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8656
8814
|
}
|
|
8657
8815
|
]
|
|
8658
8816
|
},
|
|
8817
|
+
"LayoutAssociatedObject": {
|
|
8818
|
+
"name": "LayoutAssociatedObject",
|
|
8819
|
+
"kind": "TypeAlias",
|
|
8820
|
+
"description": "Types of objects that can be associated with a Layout"
|
|
8821
|
+
},
|
|
8659
8822
|
"LayoutChangedInfo": {
|
|
8660
8823
|
"name": "LayoutChangedInfo",
|
|
8661
8824
|
"kind": "Interface",
|
|
@@ -8676,10 +8839,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8676
8839
|
},
|
|
8677
8840
|
{
|
|
8678
8841
|
"name": "oldLayoutState",
|
|
8679
|
-
"kind": "
|
|
8842
|
+
"kind": "unknown",
|
|
8680
8843
|
"description": "Previous Layout State",
|
|
8681
|
-
"uiLabel": "Old Layout State"
|
|
8682
|
-
"reference": "LayoutState"
|
|
8844
|
+
"uiLabel": "Old Layout State"
|
|
8683
8845
|
}
|
|
8684
8846
|
]
|
|
8685
8847
|
},
|
|
@@ -8688,6 +8850,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8688
8850
|
"kind": "Interface",
|
|
8689
8851
|
"description": "Options for configuring Layouts; these manage Column visibility, order, sorting, grouping and width",
|
|
8690
8852
|
"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
|
+
},
|
|
8691
8860
|
{
|
|
8692
8861
|
"name": "autoSaveLayouts",
|
|
8693
8862
|
"kind": "boolean",
|
|
@@ -8727,9 +8896,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8727
8896
|
{
|
|
8728
8897
|
"name": "displayRowGroups",
|
|
8729
8898
|
"kind": "unknown",
|
|
8730
|
-
"description": "Whether
|
|
8899
|
+
"description": "Whether Row Groups display all as expanded, all as closed or dynamically (i.e. saved in Layout)",
|
|
8731
8900
|
"uiLabel": "Display Row Groups",
|
|
8732
|
-
"isOptional": true
|
|
8901
|
+
"isOptional": true,
|
|
8902
|
+
"gridInfo": "item",
|
|
8903
|
+
"defaultValue": "'closed'"
|
|
8733
8904
|
},
|
|
8734
8905
|
{
|
|
8735
8906
|
"name": "includeExpandedRowGroups",
|
|
@@ -8741,11 +8912,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8741
8912
|
"defaultValue": "false"
|
|
8742
8913
|
},
|
|
8743
8914
|
{
|
|
8744
|
-
"name": "
|
|
8915
|
+
"name": "isObjectAvailableInLayout",
|
|
8745
8916
|
"kind": "unknown",
|
|
8746
|
-
"description": "
|
|
8747
|
-
"uiLabel": "
|
|
8917
|
+
"description": "Checks if the provided AdaptableObject is available in the given Layout",
|
|
8918
|
+
"uiLabel": "Is Object Available In Layout",
|
|
8748
8919
|
"isOptional": true
|
|
8920
|
+
},
|
|
8921
|
+
{
|
|
8922
|
+
"name": "viewOptions",
|
|
8923
|
+
"kind": "REFERENCE",
|
|
8924
|
+
"description": "Customize how Layouts are displayed in Settings Panel",
|
|
8925
|
+
"uiLabel": "View Options",
|
|
8926
|
+
"isOptional": true,
|
|
8927
|
+
"reference": "LayoutViewOptions"
|
|
8749
8928
|
}
|
|
8750
8929
|
]
|
|
8751
8930
|
},
|
|
@@ -8770,6 +8949,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8770
8949
|
}
|
|
8771
8950
|
]
|
|
8772
8951
|
},
|
|
8952
|
+
"LayoutViewOptions": {
|
|
8953
|
+
"name": "LayoutViewOptions",
|
|
8954
|
+
"kind": "Interface",
|
|
8955
|
+
"description": "Customize how Layouts are displayed in Settings Panel",
|
|
8956
|
+
"properties": [
|
|
8957
|
+
{
|
|
8958
|
+
"name": "maxColumnsToDisplay",
|
|
8959
|
+
"kind": "number",
|
|
8960
|
+
"description": "How many columns to display in inline Layout preview",
|
|
8961
|
+
"uiLabel": "Max Columns To Display",
|
|
8962
|
+
"isOptional": true,
|
|
8963
|
+
"defaultValue": "10"
|
|
8964
|
+
}
|
|
8965
|
+
]
|
|
8966
|
+
},
|
|
8773
8967
|
"LiveDataChangedInfo": {
|
|
8774
8968
|
"name": "LiveDataChangedInfo",
|
|
8775
8969
|
"kind": "Interface",
|
|
@@ -10596,6 +10790,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10596
10790
|
"description": "Retrieves Schedule by id",
|
|
10597
10791
|
"uiLabel": "Get Schedule By Id"
|
|
10598
10792
|
},
|
|
10793
|
+
{
|
|
10794
|
+
"name": "getScheduleState",
|
|
10795
|
+
"kind": "function",
|
|
10796
|
+
"description": "Retrieves Schedule section from Adaptable State",
|
|
10797
|
+
"uiLabel": "Get Schedule State"
|
|
10798
|
+
},
|
|
10599
10799
|
{
|
|
10600
10800
|
"name": "showSchedulePopup",
|
|
10601
10801
|
"kind": "function",
|
|
@@ -11264,6 +11464,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11264
11464
|
"isOptional": true,
|
|
11265
11465
|
"defaultValue": "true"
|
|
11266
11466
|
},
|
|
11467
|
+
{
|
|
11468
|
+
"name": "HeaderToolTip",
|
|
11469
|
+
"kind": "string",
|
|
11470
|
+
"description": "Tooltip to show in the Column Header (not cells)",
|
|
11471
|
+
"uiLabel": "Header Tool Tip",
|
|
11472
|
+
"isOptional": true
|
|
11473
|
+
},
|
|
11267
11474
|
{
|
|
11268
11475
|
"name": "Pivotable",
|
|
11269
11476
|
"kind": "boolean",
|
|
@@ -12169,6 +12376,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12169
12376
|
"defaultValue": "['GridSummary', 'AdaptableOptions', 'ColumnInfo']",
|
|
12170
12377
|
"reference": "unknown"
|
|
12171
12378
|
},
|
|
12379
|
+
{
|
|
12380
|
+
"name": "objectTags",
|
|
12381
|
+
"kind": "unknown",
|
|
12382
|
+
"description": "Optional list of AdaptableObjectTags that can be associated with AdaptableObjects",
|
|
12383
|
+
"uiLabel": "Object Tags",
|
|
12384
|
+
"isOptional": true
|
|
12385
|
+
},
|
|
12172
12386
|
{
|
|
12173
12387
|
"name": "permittedValues",
|
|
12174
12388
|
"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";
|
|
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'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|