@adaptabletools/adaptable 11.2.4-canary.0 → 12.0.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 +22 -4
- package/bundle.cjs.js +111 -111
- package/index.css +26 -4
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +6 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
- package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ActionOptions.js} +0 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
- package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
- package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
- package/src/AdaptableOptions/{SmartEdit.js → ColumnOptions.js} +0 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
- package/src/AdaptableOptions/EditOptions.d.ts +92 -4
- package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +5 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +33 -3
- package/src/AdaptableOptions/GeneralOptions.d.ts +22 -23
- package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
- package/src/{Api/DataSourceApi.js → AdaptableOptions/MasterDetailPluginOptions.js} +0 -0
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +81 -54
- package/src/Api/AdaptableApi.d.ts +6 -3
- package/src/Api/ColumnApi.d.ts +6 -3
- package/src/Api/ConditionalStyleApi.d.ts +10 -0
- package/src/Api/ConfigApi.d.ts +0 -12
- package/src/Api/DashboardApi.d.ts +6 -19
- package/src/Api/DataSetApi.d.ts +40 -0
- package/src/{PredefinedConfig/DataSourceState.js → Api/DataSetApi.js} +0 -0
- package/src/Api/EventApi.d.ts +18 -1
- package/src/Api/Events/DataSetChanged.d.ts +5 -0
- package/src/{PredefinedConfig/FilterState.js → Api/Events/DataSetChanged.js} +0 -0
- package/src/Api/Events/RowFormSubmitted.d.ts +19 -0
- package/src/Api/Events/RowFormSubmitted.js +2 -0
- package/src/Api/Events/SearchChanged.d.ts +3 -4
- package/src/Api/FilterApi.d.ts +1 -77
- package/src/Api/FinanceApi.d.ts +3 -2
- package/src/Api/FormatColumnApi.d.ts +28 -1
- package/src/Api/GridApi.d.ts +15 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
- package/src/Api/Implementation/AlertApiImpl.js +5 -1
- package/src/Api/Implementation/ApiBase.d.ts +3 -0
- package/src/Api/Implementation/ApiBase.js +6 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ColumnApiImpl.js +6 -3
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ConfigApiImpl.js +2 -24
- package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
- package/src/Api/Implementation/DashboardApiImpl.js +5 -29
- package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
- package/src/Api/Implementation/DataSetApiImpl.js +42 -0
- package/src/Api/Implementation/EventApiImpl.js +1 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -16
- package/src/Api/Implementation/FilterApiImpl.js +5 -164
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +6 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +34 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
- package/src/Api/Implementation/GridApiImpl.js +41 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +7 -2
- package/src/Api/Implementation/InternalApiImpl.js +51 -10
- package/src/Api/Implementation/LayoutApiImpl.d.ts +18 -1
- package/src/Api/Implementation/LayoutApiImpl.js +172 -0
- package/src/Api/Implementation/PredicateApiImpl.js +1 -1
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +5 -2
- package/src/Api/Implementation/SmartEditApiImpl.js +9 -0
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
- package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.js +7 -25
- package/src/Api/InternalApi.d.ts +6 -2
- package/src/Api/LayoutApi.d.ts +88 -1
- package/src/Api/SmartEditApi.d.ts +14 -3
- package/src/Api/TeamSharingApi.d.ts +18 -5
- package/src/Api/UserInterfaceApi.d.ts +4 -4
- package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -0
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +3 -2
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +6 -3
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +2 -11
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +35 -2
- package/src/PredefinedConfig/Common/BaseContext.d.ts +1 -1
- package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
- package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
- package/src/PredefinedConfig/Common/Enums.js +1 -1
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +5 -1
- package/src/PredefinedConfig/Common/Types.d.ts +6 -5
- package/src/PredefinedConfig/Common/Types.js +2 -3
- package/src/PredefinedConfig/LayoutState.d.ts +5 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
- package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
- package/src/PredefinedConfig/SystemState.d.ts +4 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +135 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +23 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
- package/src/Redux/Store/AdaptableStore.js +37 -39
- package/src/Strategy/AlertModule.d.ts +11 -0
- package/src/Strategy/AlertModule.js +14 -0
- package/src/Strategy/CellSummaryModule.d.ts +3 -0
- package/src/Strategy/CellSummaryModule.js +28 -14
- package/src/Strategy/DataSetModule.d.ts +25 -0
- package/src/Strategy/DataSetModule.js +65 -0
- package/src/Strategy/ExportModule.js +6 -1
- package/src/Strategy/FilterModule.d.ts +7 -11
- package/src/Strategy/FilterModule.js +24 -15
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/FormatColumnModule.js +1 -1
- package/src/Strategy/Interface/IModule.d.ts +3 -1
- package/src/Strategy/LayoutModule.js +24 -2
- package/src/Strategy/SmartEditModule.d.ts +1 -1
- package/src/Strategy/SmartEditModule.js +5 -6
- package/src/Strategy/StatusBarModule.js +1 -3
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/ToolPanelModule.js +1 -4
- package/src/Utilities/Constants/GeneralConstants.d.ts +6 -2
- package/src/Utilities/Constants/GeneralConstants.js +6 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
- package/src/Utilities/Constants/ModuleConstants.js +2 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +22 -13
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +2 -4
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -1
- package/src/Utilities/ObjectFactory.d.ts +3 -6
- package/src/Utilities/ObjectFactory.js +3 -7
- package/src/Utilities/Services/EntitlementService.js +7 -1
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +8 -0
- package/src/Utilities/Services/Interface/IRowEditService.js +2 -0
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/Services/ReportService.js +2 -3
- package/src/Utilities/Services/RowEditService.d.ts +25 -0
- package/src/Utilities/Services/RowEditService.js +165 -0
- package/src/Utilities/Services/TeamSharingService.js +4 -4
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +5 -6
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
- package/src/View/Alert/ActiveAlertsPanel.js +15 -0
- package/src/View/Alert/AlertStatusSubPanel.js +3 -8
- package/src/View/Alert/AlertViewPanel.js +2 -2
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +9 -2
- package/src/View/CellSummary/CellSummaryDetails.js +2 -2
- package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
- package/src/View/CellSummary/CellSummaryPopover.js +3 -6
- package/src/View/CellSummary/CellSummaryPopup.js +8 -0
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
- package/src/View/Components/ExternalRenderer.d.ts +3 -6
- package/src/View/Components/ExternalRenderer.js +5 -5
- package/src/View/Components/FilterForm/FilterForm.d.ts +5 -2
- package/src/View/Components/FilterForm/FilterForm.js +9 -7
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +21 -7
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
- package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
- package/src/View/Components/Popups/AdaptableToaster.js +29 -9
- package/src/View/Components/Popups/FormPopups/FormPopups.js +2 -2
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
- package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
- package/src/View/Dashboard/CustomDashboardButton.js +47 -0
- package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
- package/src/View/Dashboard/Dashboard.d.ts +1 -0
- package/src/View/Dashboard/Dashboard.js +8 -34
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
- package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
- package/src/View/DataSet/DataSetSelector.d.ts +7 -0
- package/src/View/DataSet/DataSetSelector.js +18 -0
- package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
- package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
- package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
- package/src/View/DataSet/DataSetViewPanel.js +58 -0
- package/src/View/Filter/ActiveFiltersPanel.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +5 -5
- package/src/View/Filter/FilterSummary.js +6 -5
- package/src/View/Filter/FilterViewPanel.d.ts +4 -4
- package/src/View/Filter/FilterViewPanel.js +11 -14
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +3 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +51 -22
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -1
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +2 -1
- package/src/View/SmartEdit/SmartEditPopup.d.ts +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +3 -4
- package/src/View/SmartEdit/SmartEditViewPanel.d.ts +1 -1
- package/src/View/SmartEdit/SmartEditViewPanel.js +3 -4
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
- package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
- package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
- package/src/View/StatusBar/StatusBarPanel.js +5 -4
- package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
- package/src/View/UIHelper.d.ts +4 -4
- package/src/View/UIHelper.js +4 -4
- package/src/agGrid/ActionColumnRenderer.d.ts +6 -1
- package/src/agGrid/ActionColumnRenderer.js +9 -6
- package/src/agGrid/Adaptable.d.ts +7 -2
- package/src/agGrid/Adaptable.js +217 -87
- package/src/agGrid/FilterWrapper.js +1 -1
- package/src/agGrid/agGridHelper.d.ts +6 -6
- package/src/agGrid/agGridHelper.js +34 -56
- package/src/agGrid/agGridMenuHelper.js +4 -1
- package/src/agGrid/rowEditIcons.d.ts +4 -0
- package/src/agGrid/rowEditIcons.js +9 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +9 -18
- package/src/components/Dashboard/DashboardToolbar.js +2 -2
- package/src/components/Datepicker/index.js +19 -18
- package/src/components/SelectList.d.ts +10 -0
- package/src/components/SelectList.js +9 -0
- package/src/components/WindowModal/WindowModal.d.ts +2 -0
- package/src/components/WindowModal/WindowModal.js +1 -1
- package/src/components/icons/{data-source.d.ts → data-set.d.ts} +0 -0
- package/src/components/icons/{data-source.js → data-set.js} +0 -0
- package/src/components/icons/index.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +242 -70
- package/src/metamodel/adaptable.metamodel.js +620 -376
- package/src/types.d.ts +19 -15
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/SmartEdit.d.ts +0 -34
- package/src/Api/DataSourceApi.d.ts +0 -58
- package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
- package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
- package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
- package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
- package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
- package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
- package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
- package/src/Strategy/DataSourceModule.d.ts +0 -20
- package/src/Strategy/DataSourceModule.js +0 -56
- package/src/View/Components/Forms/AdaptableForm.d.ts +0 -6
- package/src/View/Components/Forms/AdaptableForm.js +0 -21
- package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
- package/src/View/DataSource/DataSourceViewPanel.js +0 -69
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
- package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
|
@@ -118,6 +118,36 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
118
118
|
"kind": "TypeAlias",
|
|
119
119
|
"description": "Handles a Form Button Action"
|
|
120
120
|
},
|
|
121
|
+
"ActionOptions": {
|
|
122
|
+
"name": "ActionOptions",
|
|
123
|
+
"kind": "Interface",
|
|
124
|
+
"description": "Options related to Action Columns and Buttons in Adaptable.",
|
|
125
|
+
"properties": [
|
|
126
|
+
{
|
|
127
|
+
"name": "actionColumns",
|
|
128
|
+
"kind": "unknown",
|
|
129
|
+
"description": "Columns which contain an AdapTable Button - used for performing Actions",
|
|
130
|
+
"uiLabel": "Action Columns",
|
|
131
|
+
"isOptional": true
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "actionRowButtons",
|
|
135
|
+
"kind": "unknown",
|
|
136
|
+
"description": "Action buttons to display for each row.",
|
|
137
|
+
"uiLabel": "Action Row Buttons",
|
|
138
|
+
"isOptional": true,
|
|
139
|
+
"defaultValue": "undefined"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "actionRowButtonsPosition",
|
|
143
|
+
"kind": "unknown",
|
|
144
|
+
"description": "Position of supplied Action Buttons",
|
|
145
|
+
"uiLabel": "Action Row Buttons Position",
|
|
146
|
+
"isOptional": true,
|
|
147
|
+
"defaultValue": "'pinnedLeft'"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
},
|
|
121
151
|
"AdaptableAlert": {
|
|
122
152
|
"name": "AdaptableAlert",
|
|
123
153
|
"kind": "TypeAlias",
|
|
@@ -250,11 +280,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
250
280
|
"reference": "DataChangeHistoryApi"
|
|
251
281
|
},
|
|
252
282
|
{
|
|
253
|
-
"name": "
|
|
283
|
+
"name": "dataSetApi",
|
|
254
284
|
"kind": "REFERENCE",
|
|
255
|
-
"description": "Provides access to
|
|
256
|
-
"uiLabel": "Data
|
|
257
|
-
"reference": "
|
|
285
|
+
"description": "Provides access to Data Sets",
|
|
286
|
+
"uiLabel": "Data Set Api",
|
|
287
|
+
"reference": "DataSetApi"
|
|
258
288
|
},
|
|
259
289
|
{
|
|
260
290
|
"name": "destroy",
|
|
@@ -317,6 +347,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
317
347
|
"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
348
|
"uiLabel": "Internal Destroy Self"
|
|
319
349
|
},
|
|
350
|
+
{
|
|
351
|
+
"name": "isDestroyed",
|
|
352
|
+
"kind": "unknown",
|
|
353
|
+
"description": "Whether the Adaptable instance has been destroyed",
|
|
354
|
+
"uiLabel": "Is Destroyed"
|
|
355
|
+
},
|
|
320
356
|
{
|
|
321
357
|
"name": "layoutApi",
|
|
322
358
|
"kind": "REFERENCE",
|
|
@@ -453,7 +489,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
453
489
|
{
|
|
454
490
|
"name": "buttonStyle",
|
|
455
491
|
"kind": "unknown",
|
|
456
|
-
"description": "Style for Button - can be object or function
|
|
492
|
+
"description": "Style for Button - can be object or function that provides a `ButtonStyle` object",
|
|
457
493
|
"uiLabel": "Button Style",
|
|
458
494
|
"isOptional": true
|
|
459
495
|
},
|
|
@@ -473,11 +509,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
473
509
|
},
|
|
474
510
|
{
|
|
475
511
|
"name": "icon",
|
|
476
|
-
"kind": "
|
|
477
|
-
"description": "Icon
|
|
512
|
+
"kind": "unknown",
|
|
513
|
+
"description": "Icon for Button - can be object or function that provides a `AdaptableIcon` object",
|
|
478
514
|
"uiLabel": "Icon",
|
|
479
|
-
"isOptional": true
|
|
480
|
-
"reference": "AdaptableIcon"
|
|
515
|
+
"isOptional": true
|
|
481
516
|
},
|
|
482
517
|
{
|
|
483
518
|
"name": "label",
|
|
@@ -680,9 +715,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
680
715
|
},
|
|
681
716
|
{
|
|
682
717
|
"name": "dataType",
|
|
683
|
-
"kind": "
|
|
718
|
+
"kind": "REFERENCE",
|
|
684
719
|
"description": "DataType of the column",
|
|
685
|
-
"uiLabel": "Data Type"
|
|
720
|
+
"uiLabel": "Data Type",
|
|
721
|
+
"reference": "AdaptableColumnDataType"
|
|
686
722
|
},
|
|
687
723
|
{
|
|
688
724
|
"name": "friendlyName",
|
|
@@ -692,6 +728,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
692
728
|
}
|
|
693
729
|
]
|
|
694
730
|
},
|
|
731
|
+
"AdaptableColumnDataType": {
|
|
732
|
+
"name": "AdaptableColumnDataType",
|
|
733
|
+
"kind": "TypeAlias",
|
|
734
|
+
"description": "The type of the column data"
|
|
735
|
+
},
|
|
695
736
|
"AdaptableComparerFunction": {
|
|
696
737
|
"name": "AdaptableComparerFunction",
|
|
697
738
|
"kind": "TypeAlias",
|
|
@@ -741,11 +782,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
741
782
|
},
|
|
742
783
|
{
|
|
743
784
|
"name": "intent",
|
|
744
|
-
"kind": "
|
|
785
|
+
"kind": "unknown",
|
|
745
786
|
"description": "The FDC3 Intent which caused Event to fire (if type is `RaiseIntent`)",
|
|
746
787
|
"uiLabel": "Intent",
|
|
747
|
-
"isOptional": true
|
|
748
|
-
"reference": "FDC3Intent"
|
|
788
|
+
"isOptional": true
|
|
749
789
|
}
|
|
750
790
|
]
|
|
751
791
|
},
|
|
@@ -849,14 +889,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
849
889
|
},
|
|
850
890
|
{
|
|
851
891
|
"name": "fieldType",
|
|
852
|
-
"kind": "
|
|
892
|
+
"kind": "REFERENCE",
|
|
853
893
|
"description": "Field Type: text, date, number, checkbox, select, textOutput",
|
|
854
|
-
"uiLabel": "Field Type"
|
|
894
|
+
"uiLabel": "Field Type",
|
|
895
|
+
"reference": "unknown"
|
|
855
896
|
},
|
|
856
897
|
{
|
|
857
898
|
"name": "label",
|
|
858
899
|
"kind": "string",
|
|
859
|
-
"description": "Label to display in
|
|
900
|
+
"description": "Label to display in the Field",
|
|
860
901
|
"uiLabel": "Label"
|
|
861
902
|
},
|
|
862
903
|
{
|
|
@@ -1010,7 +1051,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1010
1051
|
"AdaptableObjectTag": {
|
|
1011
1052
|
"name": "AdaptableObjectTag",
|
|
1012
1053
|
"kind": "TypeAlias",
|
|
1013
|
-
"description": "Object
|
|
1054
|
+
"description": "AdaptableObjectTag Object Tague - currently supporting only plain string values, but open for future extensions, if ever needed."
|
|
1014
1055
|
},
|
|
1015
1056
|
"AdaptableOptions": {
|
|
1016
1057
|
"name": "AdaptableOptions",
|
|
@@ -1061,6 +1102,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1061
1102
|
"gridInfo": "item",
|
|
1062
1103
|
"defaultValue": "false"
|
|
1063
1104
|
},
|
|
1105
|
+
{
|
|
1106
|
+
"name": "columnOptions",
|
|
1107
|
+
"kind": "REFERENCE",
|
|
1108
|
+
"description": "Options for managing Columns",
|
|
1109
|
+
"uiLabel": "Column Options",
|
|
1110
|
+
"isOptional": true,
|
|
1111
|
+
"reference": "ColumnOptions"
|
|
1112
|
+
},
|
|
1064
1113
|
{
|
|
1065
1114
|
"name": "containerOptions",
|
|
1066
1115
|
"kind": "REFERENCE",
|
|
@@ -1069,13 +1118,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1069
1118
|
"isOptional": true,
|
|
1070
1119
|
"reference": "ContainerOptions"
|
|
1071
1120
|
},
|
|
1072
|
-
{
|
|
1073
|
-
"name": "customPredicateDefs",
|
|
1074
|
-
"kind": "unknown",
|
|
1075
|
-
"description": "Predicate definitions provided by developers at Design-Time",
|
|
1076
|
-
"uiLabel": "Custom Predicate Defs",
|
|
1077
|
-
"isOptional": true
|
|
1078
|
-
},
|
|
1079
1121
|
{
|
|
1080
1122
|
"name": "dashboardOptions",
|
|
1081
1123
|
"kind": "REFERENCE",
|
|
@@ -1402,6 +1444,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1402
1444
|
"gridInfo": "item",
|
|
1403
1445
|
"defaultValue": "false"
|
|
1404
1446
|
},
|
|
1447
|
+
{
|
|
1448
|
+
"name": "customPredicateDefs",
|
|
1449
|
+
"kind": "unknown",
|
|
1450
|
+
"description": "Definitions for Custom provided Predicates",
|
|
1451
|
+
"uiLabel": "Custom Predicate Defs",
|
|
1452
|
+
"isOptional": true
|
|
1453
|
+
},
|
|
1405
1454
|
{
|
|
1406
1455
|
"name": "expressionOptions",
|
|
1407
1456
|
"kind": "REFERENCE",
|
|
@@ -1478,10 +1527,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1478
1527
|
"uiLabel": "Current Query"
|
|
1479
1528
|
},
|
|
1480
1529
|
{
|
|
1481
|
-
"name": "
|
|
1530
|
+
"name": "dataSet",
|
|
1482
1531
|
"kind": "unknown",
|
|
1483
1532
|
"description": "Current Data Source (if one selected)",
|
|
1484
|
-
"uiLabel": "Data
|
|
1533
|
+
"uiLabel": "Data Set"
|
|
1485
1534
|
},
|
|
1486
1535
|
{
|
|
1487
1536
|
"name": "queryAST",
|
|
@@ -1989,6 +2038,28 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1989
2038
|
"kind": "TypeAlias",
|
|
1990
2039
|
"description": "Form to show in an Alert"
|
|
1991
2040
|
},
|
|
2041
|
+
"AlertMessageContext": {
|
|
2042
|
+
"name": "AlertMessageContext",
|
|
2043
|
+
"kind": "Interface",
|
|
2044
|
+
"description": "Context used for creating bespoke Alert messages",
|
|
2045
|
+
"properties": [
|
|
2046
|
+
{
|
|
2047
|
+
"name": "alertDefinition",
|
|
2048
|
+
"kind": "REFERENCE",
|
|
2049
|
+
"description": "Current Alert Definition",
|
|
2050
|
+
"uiLabel": "Alert Definition",
|
|
2051
|
+
"reference": "AlertDefinition"
|
|
2052
|
+
},
|
|
2053
|
+
{
|
|
2054
|
+
"name": "cellDataChangedInfo",
|
|
2055
|
+
"kind": "REFERENCE",
|
|
2056
|
+
"description": "Data change that might have triggered the Alert",
|
|
2057
|
+
"uiLabel": "Cell Data Changed Info",
|
|
2058
|
+
"isOptional": true,
|
|
2059
|
+
"reference": "CellDataChangedInfo"
|
|
2060
|
+
}
|
|
2061
|
+
]
|
|
2062
|
+
},
|
|
1992
2063
|
"AlertOptions": {
|
|
1993
2064
|
"name": "AlertOptions",
|
|
1994
2065
|
"kind": "Interface",
|
|
@@ -2279,7 +2350,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2279
2350
|
"BaseContext": {
|
|
2280
2351
|
"name": "BaseContext",
|
|
2281
2352
|
"kind": "Interface",
|
|
2282
|
-
"description": "Base Context
|
|
2353
|
+
"description": "Base Context used in many functions provided by developers and invoked as needed by AdapTable",
|
|
2283
2354
|
"properties": [
|
|
2284
2355
|
{
|
|
2285
2356
|
"name": "adaptableApi",
|
|
@@ -2489,6 +2560,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2489
2560
|
"uiLabel": "Data Type",
|
|
2490
2561
|
"isOptional": true
|
|
2491
2562
|
},
|
|
2563
|
+
{
|
|
2564
|
+
"name": "ExternallyEvaluatedExpression",
|
|
2565
|
+
"kind": "boolean",
|
|
2566
|
+
"description": "If true, the Calculated Column Expression will NOT be evaluated and the value is loaded from the row data property with the same name as the ColumnId",
|
|
2567
|
+
"uiLabel": "Externally Evaluated Expression",
|
|
2568
|
+
"isOptional": true,
|
|
2569
|
+
"defaultValue": "false"
|
|
2570
|
+
},
|
|
2492
2571
|
{
|
|
2493
2572
|
"name": "ShowToolTip",
|
|
2494
2573
|
"kind": "boolean",
|
|
@@ -3187,6 +3266,26 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3187
3266
|
}
|
|
3188
3267
|
]
|
|
3189
3268
|
},
|
|
3269
|
+
"ColumnFriendlyNameContext": {
|
|
3270
|
+
"name": "ColumnFriendlyNameContext",
|
|
3271
|
+
"kind": "Interface",
|
|
3272
|
+
"description": "Context used when setting a Column Friendly Name",
|
|
3273
|
+
"properties": [
|
|
3274
|
+
{
|
|
3275
|
+
"name": "agColumn",
|
|
3276
|
+
"kind": "REFERENCE",
|
|
3277
|
+
"description": "AG Grid ColDef for the Column",
|
|
3278
|
+
"uiLabel": "Ag Column",
|
|
3279
|
+
"reference": "unknown"
|
|
3280
|
+
},
|
|
3281
|
+
{
|
|
3282
|
+
"name": "colId",
|
|
3283
|
+
"kind": "string",
|
|
3284
|
+
"description": "Id of the Column",
|
|
3285
|
+
"uiLabel": "Col Id"
|
|
3286
|
+
}
|
|
3287
|
+
]
|
|
3288
|
+
},
|
|
3190
3289
|
"ColumnMenuContext": {
|
|
3191
3290
|
"name": "ColumnMenuContext",
|
|
3192
3291
|
"kind": "Interface",
|
|
@@ -3214,6 +3313,54 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3214
3313
|
}
|
|
3215
3314
|
]
|
|
3216
3315
|
},
|
|
3316
|
+
"ColumnOptions": {
|
|
3317
|
+
"name": "ColumnOptions",
|
|
3318
|
+
"kind": "Interface",
|
|
3319
|
+
"description": "Options related to managing Columns in Adaptable.",
|
|
3320
|
+
"properties": [
|
|
3321
|
+
{
|
|
3322
|
+
"name": "autoOrderGroupedColumns",
|
|
3323
|
+
"kind": "boolean",
|
|
3324
|
+
"description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
|
|
3325
|
+
"uiLabel": "Auto Order Grouped Columns",
|
|
3326
|
+
"isOptional": true,
|
|
3327
|
+
"gridInfo": "item",
|
|
3328
|
+
"defaultValue": "true"
|
|
3329
|
+
},
|
|
3330
|
+
{
|
|
3331
|
+
"name": "columnFriendlyName",
|
|
3332
|
+
"kind": "unknown",
|
|
3333
|
+
"description": "Provide an alternative Friendly Name for a Column",
|
|
3334
|
+
"uiLabel": "Column Friendly Name",
|
|
3335
|
+
"isOptional": true
|
|
3336
|
+
},
|
|
3337
|
+
{
|
|
3338
|
+
"name": "columnTypes",
|
|
3339
|
+
"kind": "unknown",
|
|
3340
|
+
"description": "Optional list of Column Types - used primarily for Special Columns",
|
|
3341
|
+
"uiLabel": "Column Types",
|
|
3342
|
+
"isOptional": true
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"name": "hideColumnWhenGrouped",
|
|
3346
|
+
"kind": "boolean",
|
|
3347
|
+
"description": "Automatically removes a column from the grid when it becomes Row Grouped",
|
|
3348
|
+
"uiLabel": "Hide Column When Grouped",
|
|
3349
|
+
"isOptional": true,
|
|
3350
|
+
"gridInfo": "item",
|
|
3351
|
+
"defaultValue": "false"
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"name": "showMissingColumnsWarning",
|
|
3355
|
+
"kind": "boolean",
|
|
3356
|
+
"description": "Show warning if AdapTable cannot find a column",
|
|
3357
|
+
"uiLabel": "Show Missing Columns Warning",
|
|
3358
|
+
"isOptional": true,
|
|
3359
|
+
"gridInfo": "item",
|
|
3360
|
+
"defaultValue": "true"
|
|
3361
|
+
}
|
|
3362
|
+
]
|
|
3363
|
+
},
|
|
3217
3364
|
"ColumnSort": {
|
|
3218
3365
|
"name": "ColumnSort",
|
|
3219
3366
|
"kind": "Interface",
|
|
@@ -3331,6 +3478,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3331
3478
|
"description": "Adds new Conditional Style to State",
|
|
3332
3479
|
"uiLabel": "Add Conditional Style"
|
|
3333
3480
|
},
|
|
3481
|
+
{
|
|
3482
|
+
"name": "deleteConditionalStyle",
|
|
3483
|
+
"kind": "function",
|
|
3484
|
+
"description": "Deletes a Conditional Style",
|
|
3485
|
+
"uiLabel": "Delete Conditional Style"
|
|
3486
|
+
},
|
|
3487
|
+
{
|
|
3488
|
+
"name": "deleteConditionalStyles",
|
|
3489
|
+
"kind": "function",
|
|
3490
|
+
"description": "Deletes Conditional Styles",
|
|
3491
|
+
"uiLabel": "Delete Conditional Styles"
|
|
3492
|
+
},
|
|
3334
3493
|
{
|
|
3335
3494
|
"name": "editConditionalStyle",
|
|
3336
3495
|
"kind": "function",
|
|
@@ -3537,12 +3696,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3537
3696
|
"description": "Returns Dashboard section of Adaptable State",
|
|
3538
3697
|
"uiLabel": "Get Dashboard State"
|
|
3539
3698
|
},
|
|
3540
|
-
{
|
|
3541
|
-
"name": "getDataSourceState",
|
|
3542
|
-
"kind": "function",
|
|
3543
|
-
"description": "Returns Data Source section of Adaptable State",
|
|
3544
|
-
"uiLabel": "Get Data Source State"
|
|
3545
|
-
},
|
|
3546
3699
|
{
|
|
3547
3700
|
"name": "getDescriptionForModule",
|
|
3548
3701
|
"kind": "function",
|
|
@@ -3555,12 +3708,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3555
3708
|
"description": "Returns Export section of Adaptable State",
|
|
3556
3709
|
"uiLabel": "Get Export State"
|
|
3557
3710
|
},
|
|
3558
|
-
{
|
|
3559
|
-
"name": "getFilterState",
|
|
3560
|
-
"kind": "function",
|
|
3561
|
-
"description": "Returns Filter section of Adaptable State",
|
|
3562
|
-
"uiLabel": "Get Filter State"
|
|
3563
|
-
},
|
|
3564
3711
|
{
|
|
3565
3712
|
"name": "getFormatColumnState",
|
|
3566
3713
|
"kind": "function",
|
|
@@ -4024,6 +4171,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4024
4171
|
}
|
|
4025
4172
|
]
|
|
4026
4173
|
},
|
|
4174
|
+
"CustomFDC3Column": {
|
|
4175
|
+
"name": "CustomFDC3Column",
|
|
4176
|
+
"kind": "Interface",
|
|
4177
|
+
"description": "A Column which will be defined as Custom FDC3 (can be any datatype)",
|
|
4178
|
+
"properties": [
|
|
4179
|
+
{
|
|
4180
|
+
"name": "createContext",
|
|
4181
|
+
"kind": "unknown",
|
|
4182
|
+
"description": "Function which creates FDC3 context for the current column and row",
|
|
4183
|
+
"uiLabel": "Create Context"
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
"name": "intents",
|
|
4187
|
+
"kind": "unknown",
|
|
4188
|
+
"description": "Custom FDC3 Intents available to the column",
|
|
4189
|
+
"uiLabel": "Intents"
|
|
4190
|
+
}
|
|
4191
|
+
]
|
|
4192
|
+
},
|
|
4193
|
+
"CustomFDC3Intent": {
|
|
4194
|
+
"name": "CustomFDC3Intent",
|
|
4195
|
+
"kind": "TypeAlias",
|
|
4196
|
+
"description": "Custom FDC3 Intent - just a string value"
|
|
4197
|
+
},
|
|
4027
4198
|
"CustomReport": {
|
|
4028
4199
|
"name": "CustomReport",
|
|
4029
4200
|
"kind": "Interface",
|
|
@@ -4341,18 +4512,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4341
4512
|
"kind": "Interface",
|
|
4342
4513
|
"description": "Functions relating to the AdapTable Dashboard.",
|
|
4343
4514
|
"properties": [
|
|
4344
|
-
{
|
|
4345
|
-
"name": "addCustomToolbarButtons",
|
|
4346
|
-
"kind": "function",
|
|
4347
|
-
"description": "Adds Toolbar Buttons to current collection in Custom Toolbar",
|
|
4348
|
-
"uiLabel": "Add Custom Toolbar Buttons"
|
|
4349
|
-
},
|
|
4350
|
-
{
|
|
4351
|
-
"name": "clearCustomToolbarButtons",
|
|
4352
|
-
"kind": "function",
|
|
4353
|
-
"description": "Clears all Toolbar Buttons from Custom Toolbar",
|
|
4354
|
-
"uiLabel": "Clear Custom Toolbar Buttons"
|
|
4355
|
-
},
|
|
4356
4515
|
{
|
|
4357
4516
|
"name": "collapseDashboard",
|
|
4358
4517
|
"kind": "function",
|
|
@@ -4497,6 +4656,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4497
4656
|
"description": "Checks if a given Toolbar is visible",
|
|
4498
4657
|
"uiLabel": "Is Toolbar Visible"
|
|
4499
4658
|
},
|
|
4659
|
+
{
|
|
4660
|
+
"name": "refreshDashboard",
|
|
4661
|
+
"kind": "function",
|
|
4662
|
+
"description": "Refreshes the entire Dashboard section, including Toolbars and Buttons; this is particularly relevant for AdapTable built-in elements, as framework components are dependent on the framework specific change detection mechanisms",
|
|
4663
|
+
"uiLabel": "Refresh Dashboard"
|
|
4664
|
+
},
|
|
4500
4665
|
{
|
|
4501
4666
|
"name": "setActiveTab",
|
|
4502
4667
|
"kind": "function",
|
|
@@ -4509,12 +4674,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4509
4674
|
"description": "Sets Active Tab in Dashboard",
|
|
4510
4675
|
"uiLabel": "Set Active Tab Index"
|
|
4511
4676
|
},
|
|
4512
|
-
{
|
|
4513
|
-
"name": "setCustomToolbarButtons",
|
|
4514
|
-
"kind": "function",
|
|
4515
|
-
"description": "Replaces Toolbar Buttons in Custom Toolbar with the new set",
|
|
4516
|
-
"uiLabel": "Set Custom Toolbar Buttons"
|
|
4517
|
-
},
|
|
4518
4677
|
{
|
|
4519
4678
|
"name": "setCustomToolbarContents",
|
|
4520
4679
|
"kind": "function",
|
|
@@ -4787,6 +4946,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4787
4946
|
"kind": "Interface",
|
|
4788
4947
|
"description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
|
|
4789
4948
|
"properties": [
|
|
4949
|
+
{
|
|
4950
|
+
"name": "actionColumnButton",
|
|
4951
|
+
"kind": "unknown",
|
|
4952
|
+
"description": "Action button definition. Can be used to implement undo functionality.",
|
|
4953
|
+
"uiLabel": "Action Column Button",
|
|
4954
|
+
"isOptional": true
|
|
4955
|
+
},
|
|
4790
4956
|
{
|
|
4791
4957
|
"name": "activeByDefault",
|
|
4792
4958
|
"kind": "boolean",
|
|
@@ -4807,117 +4973,78 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4807
4973
|
}
|
|
4808
4974
|
]
|
|
4809
4975
|
},
|
|
4810
|
-
"
|
|
4811
|
-
"name": "
|
|
4976
|
+
"DataSet": {
|
|
4977
|
+
"name": "DataSet",
|
|
4812
4978
|
"kind": "Interface",
|
|
4813
|
-
"description": "Defines a Data
|
|
4979
|
+
"description": "Defines a Data Set object that can provide data to AdapTable",
|
|
4814
4980
|
"properties": [
|
|
4815
4981
|
{
|
|
4816
|
-
"name": "
|
|
4982
|
+
"name": "description",
|
|
4817
4983
|
"kind": "string",
|
|
4818
|
-
"description": "Describes the Data
|
|
4984
|
+
"description": "Describes the Data Set",
|
|
4819
4985
|
"uiLabel": "Description"
|
|
4820
4986
|
},
|
|
4821
4987
|
{
|
|
4822
|
-
"name": "
|
|
4988
|
+
"name": "form",
|
|
4823
4989
|
"kind": "unknown",
|
|
4824
|
-
"description": "Params for
|
|
4990
|
+
"description": "Params for Data Set popup form",
|
|
4825
4991
|
"uiLabel": "Form",
|
|
4826
4992
|
"isOptional": true
|
|
4827
4993
|
},
|
|
4828
4994
|
{
|
|
4829
|
-
"name": "
|
|
4995
|
+
"name": "name",
|
|
4830
4996
|
"kind": "string",
|
|
4831
|
-
"description": "Name of Data
|
|
4997
|
+
"description": "Name of Data Set",
|
|
4832
4998
|
"uiLabel": "Name"
|
|
4833
4999
|
}
|
|
4834
5000
|
]
|
|
4835
5001
|
},
|
|
4836
|
-
"
|
|
4837
|
-
"name": "
|
|
5002
|
+
"DataSetApi": {
|
|
5003
|
+
"name": "DataSetApi",
|
|
4838
5004
|
"kind": "Interface",
|
|
4839
|
-
"description": "Provides run-time access to Data
|
|
5005
|
+
"description": "Provides run-time access to Data Sets",
|
|
4840
5006
|
"properties": [
|
|
4841
5007
|
{
|
|
4842
|
-
"name": "
|
|
4843
|
-
"kind": "function",
|
|
4844
|
-
"description": "Adds new DataSource to State",
|
|
4845
|
-
"uiLabel": "Add Data Source"
|
|
4846
|
-
},
|
|
4847
|
-
{
|
|
4848
|
-
"name": "clearDataSource",
|
|
4849
|
-
"kind": "function",
|
|
4850
|
-
"description": "Clears currently selected DataSource",
|
|
4851
|
-
"uiLabel": "Clear Data Source"
|
|
4852
|
-
},
|
|
4853
|
-
{
|
|
4854
|
-
"name": "createDataSource",
|
|
4855
|
-
"kind": "function",
|
|
4856
|
-
"description": "Creates a DataSource from a given name and description",
|
|
4857
|
-
"uiLabel": "Create Data Source"
|
|
4858
|
-
},
|
|
4859
|
-
{
|
|
4860
|
-
"name": "getAllDataSource",
|
|
5008
|
+
"name": "clearCurrentDataSet",
|
|
4861
5009
|
"kind": "function",
|
|
4862
|
-
"description": "
|
|
4863
|
-
"uiLabel": "
|
|
5010
|
+
"description": "Clears currently selected Data Set",
|
|
5011
|
+
"uiLabel": "Clear Current Data Set"
|
|
4864
5012
|
},
|
|
4865
5013
|
{
|
|
4866
|
-
"name": "
|
|
5014
|
+
"name": "fireDataSetChangeEvent",
|
|
4867
5015
|
"kind": "function",
|
|
4868
|
-
"description": "
|
|
4869
|
-
"uiLabel": "
|
|
5016
|
+
"description": "Fire the DataSet Changed Event",
|
|
5017
|
+
"uiLabel": "Fire Data Set Change Event"
|
|
4870
5018
|
},
|
|
4871
5019
|
{
|
|
4872
|
-
"name": "
|
|
5020
|
+
"name": "getAllDataSets",
|
|
4873
5021
|
"kind": "function",
|
|
4874
|
-
"description": "Retrieves Data
|
|
4875
|
-
"uiLabel": "Get Data
|
|
5022
|
+
"description": "Retrieves the Data Sets from General Options",
|
|
5023
|
+
"uiLabel": "Get All Data Sets"
|
|
4876
5024
|
},
|
|
4877
5025
|
{
|
|
4878
|
-
"name": "
|
|
5026
|
+
"name": "getCurrentDataSet",
|
|
4879
5027
|
"kind": "function",
|
|
4880
|
-
"description": "
|
|
4881
|
-
"uiLabel": "Get Data
|
|
5028
|
+
"description": "Retrieves the currently applied Data Set",
|
|
5029
|
+
"uiLabel": "Get Current Data Set"
|
|
4882
5030
|
},
|
|
4883
5031
|
{
|
|
4884
|
-
"name": "
|
|
5032
|
+
"name": "getDataSetByName",
|
|
4885
5033
|
"kind": "function",
|
|
4886
|
-
"description": "
|
|
4887
|
-
"uiLabel": "Get Data
|
|
5034
|
+
"description": "Retreives Data Set from State with given name",
|
|
5035
|
+
"uiLabel": "Get Data Set By Name"
|
|
4888
5036
|
},
|
|
4889
5037
|
{
|
|
4890
|
-
"name": "
|
|
5038
|
+
"name": "setDataSet",
|
|
4891
5039
|
"kind": "function",
|
|
4892
|
-
"description": "Makes given
|
|
4893
|
-
"uiLabel": "Set Data
|
|
5040
|
+
"description": "Makes given Data Set current",
|
|
5041
|
+
"uiLabel": "Set Data Set"
|
|
4894
5042
|
},
|
|
4895
5043
|
{
|
|
4896
|
-
"name": "
|
|
5044
|
+
"name": "showDataSetPopup",
|
|
4897
5045
|
"kind": "function",
|
|
4898
|
-
"description": "Opens Settings Panel with Data
|
|
4899
|
-
"uiLabel": "Show Data
|
|
4900
|
-
}
|
|
4901
|
-
]
|
|
4902
|
-
},
|
|
4903
|
-
"DataSourceState": {
|
|
4904
|
-
"name": "DataSourceState",
|
|
4905
|
-
"kind": "Interface",
|
|
4906
|
-
"description": "Predefined Configuration for Data Source Module",
|
|
4907
|
-
"properties": [
|
|
4908
|
-
{
|
|
4909
|
-
"name": "CurrentDataSource",
|
|
4910
|
-
"kind": "string",
|
|
4911
|
-
"description": "Name of the currently selected Data Source",
|
|
4912
|
-
"uiLabel": "Current Data Source",
|
|
4913
|
-
"isOptional": true
|
|
4914
|
-
},
|
|
4915
|
-
{
|
|
4916
|
-
"name": "DataSources",
|
|
4917
|
-
"kind": "unknown",
|
|
4918
|
-
"description": "Collection of available Data Sources",
|
|
4919
|
-
"uiLabel": "Data Sources",
|
|
4920
|
-
"isOptional": true
|
|
5046
|
+
"description": "Opens Settings Panel with Data Set section selected and visible",
|
|
5047
|
+
"uiLabel": "Show Data Set Popup"
|
|
4921
5048
|
}
|
|
4922
5049
|
]
|
|
4923
5050
|
},
|
|
@@ -5044,6 +5171,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5044
5171
|
"uiLabel": "Is Cell Editable",
|
|
5045
5172
|
"isOptional": true
|
|
5046
5173
|
},
|
|
5174
|
+
{
|
|
5175
|
+
"name": "rowFormOptions",
|
|
5176
|
+
"kind": "REFERENCE",
|
|
5177
|
+
"description": "Options for editing (create/update/delete) row entries in the grid.",
|
|
5178
|
+
"uiLabel": "Row Form Options",
|
|
5179
|
+
"isOptional": true,
|
|
5180
|
+
"reference": "RowFormOptions"
|
|
5181
|
+
},
|
|
5182
|
+
{
|
|
5183
|
+
"name": "smartEditCustomOperations",
|
|
5184
|
+
"kind": "unknown",
|
|
5185
|
+
"description": "Custom Operations to use in Smart Edit",
|
|
5186
|
+
"uiLabel": "Smart Edit Custom Operations",
|
|
5187
|
+
"isOptional": true
|
|
5188
|
+
},
|
|
5047
5189
|
{
|
|
5048
5190
|
"name": "validateOnServer",
|
|
5049
5191
|
"kind": "unknown",
|
|
@@ -5124,6 +5266,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5124
5266
|
"description": "Unsubscribe from LiveDataChanged",
|
|
5125
5267
|
"uiLabel": "Off"
|
|
5126
5268
|
},
|
|
5269
|
+
{
|
|
5270
|
+
"name": "off",
|
|
5271
|
+
"kind": "function",
|
|
5272
|
+
"description": "Unsubscribe from DataSetChanged",
|
|
5273
|
+
"uiLabel": "Off"
|
|
5274
|
+
},
|
|
5127
5275
|
{
|
|
5128
5276
|
"name": "off",
|
|
5129
5277
|
"kind": "function",
|
|
@@ -5220,6 +5368,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5220
5368
|
"description": "Event fired whenever **a change occurs relating to live reports / data** Used in conjunction with AdapTable's partners OpenFin, ipushpull or Glue42",
|
|
5221
5369
|
"uiLabel": "On"
|
|
5222
5370
|
},
|
|
5371
|
+
{
|
|
5372
|
+
"name": "on",
|
|
5373
|
+
"kind": "function",
|
|
5374
|
+
"description": "Event fired when a DataSet is changed",
|
|
5375
|
+
"uiLabel": "On"
|
|
5376
|
+
},
|
|
5223
5377
|
{
|
|
5224
5378
|
"name": "on",
|
|
5225
5379
|
"kind": "function",
|
|
@@ -5801,6 +5955,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5801
5955
|
"description": "Id of Column defined as FDC3",
|
|
5802
5956
|
"uiLabel": "Column Id"
|
|
5803
5957
|
},
|
|
5958
|
+
{
|
|
5959
|
+
"name": "getIconForIntent",
|
|
5960
|
+
"kind": "unknown",
|
|
5961
|
+
"description": "Returns the icon to display in the Raise Intent Context Menu Item",
|
|
5962
|
+
"uiLabel": "Get Icon For Intent",
|
|
5963
|
+
"isOptional": true
|
|
5964
|
+
},
|
|
5804
5965
|
{
|
|
5805
5966
|
"name": "intentContextMenuLabel",
|
|
5806
5967
|
"kind": "unknown",
|
|
@@ -5890,118 +6051,40 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5890
6051
|
"description": "Provides run-time access to Filter section of Adaptable State.",
|
|
5891
6052
|
"properties": [
|
|
5892
6053
|
{
|
|
5893
|
-
"name": "
|
|
6054
|
+
"name": "findPredicateDefByShortcut",
|
|
5894
6055
|
"kind": "function",
|
|
5895
|
-
"description": "
|
|
5896
|
-
"uiLabel": "
|
|
6056
|
+
"description": "Returns Predicate Definition for given Column and Quick Filter shortcut",
|
|
6057
|
+
"uiLabel": "Find Predicate Def By Shortcut"
|
|
5897
6058
|
},
|
|
5898
6059
|
{
|
|
5899
|
-
"name": "
|
|
6060
|
+
"name": "getAllSystemFilterIds",
|
|
5900
6061
|
"kind": "function",
|
|
5901
|
-
"description": "
|
|
5902
|
-
"uiLabel": "
|
|
6062
|
+
"description": "Retrieves Ids for all System Filters",
|
|
6063
|
+
"uiLabel": "Get All System Filter Ids"
|
|
5903
6064
|
},
|
|
5904
6065
|
{
|
|
5905
|
-
"name": "
|
|
6066
|
+
"name": "getFilterPredicateDefsForColumn",
|
|
5906
6067
|
"kind": "function",
|
|
5907
|
-
"description": "
|
|
5908
|
-
"uiLabel": "
|
|
6068
|
+
"description": "Gets all Filter Predicates available for a given Column",
|
|
6069
|
+
"uiLabel": "Get Filter Predicate Defs For Column"
|
|
5909
6070
|
},
|
|
5910
6071
|
{
|
|
5911
|
-
"name": "
|
|
6072
|
+
"name": "getFilterPredicateDefsForColumnId",
|
|
5912
6073
|
"kind": "function",
|
|
5913
|
-
"description": "
|
|
5914
|
-
"uiLabel": "
|
|
6074
|
+
"description": "Gets all Filter Predicates available for a given ColumnId",
|
|
6075
|
+
"uiLabel": "Get Filter Predicate Defs For Column Id"
|
|
5915
6076
|
},
|
|
5916
6077
|
{
|
|
5917
|
-
"name": "
|
|
6078
|
+
"name": "hideQuickFilterBar",
|
|
5918
6079
|
"kind": "function",
|
|
5919
|
-
"description": "
|
|
5920
|
-
"uiLabel": "
|
|
6080
|
+
"description": "Hides Quick Filter bar",
|
|
6081
|
+
"uiLabel": "Hide Quick Filter Bar"
|
|
5921
6082
|
},
|
|
5922
6083
|
{
|
|
5923
|
-
"name": "
|
|
6084
|
+
"name": "isQuickFilterAvailable",
|
|
5924
6085
|
"kind": "function",
|
|
5925
|
-
"description": "
|
|
5926
|
-
"uiLabel": "
|
|
5927
|
-
},
|
|
5928
|
-
{
|
|
5929
|
-
"name": "columnFilterToString",
|
|
5930
|
-
"kind": "function",
|
|
5931
|
-
"description": "Retrieves description of given Column Filter",
|
|
5932
|
-
"uiLabel": "Column Filter To String"
|
|
5933
|
-
},
|
|
5934
|
-
{
|
|
5935
|
-
"name": "createColumnFilterForCell",
|
|
5936
|
-
"kind": "function",
|
|
5937
|
-
"description": "Creates new Column Filter on given Column using Primary Key values",
|
|
5938
|
-
"uiLabel": "Create Column Filter For Cell"
|
|
5939
|
-
},
|
|
5940
|
-
{
|
|
5941
|
-
"name": "evaluateColumnFilter",
|
|
5942
|
-
"kind": "function",
|
|
5943
|
-
"description": "Calls AdapTableQL to evaluate Filter for given Row",
|
|
5944
|
-
"uiLabel": "Evaluate Column Filter"
|
|
5945
|
-
},
|
|
5946
|
-
{
|
|
5947
|
-
"name": "findPredicateDefByShortcut",
|
|
5948
|
-
"kind": "function",
|
|
5949
|
-
"description": "Returns Predicate Definition for given Column and Quick Filter shortcut",
|
|
5950
|
-
"uiLabel": "Find Predicate Def By Shortcut"
|
|
5951
|
-
},
|
|
5952
|
-
{
|
|
5953
|
-
"name": "getAllColumnFilter",
|
|
5954
|
-
"kind": "function",
|
|
5955
|
-
"description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
|
|
5956
|
-
"uiLabel": "Get All Column Filter"
|
|
5957
|
-
},
|
|
5958
|
-
{
|
|
5959
|
-
"name": "getAllColumnFilterForColumn",
|
|
5960
|
-
"kind": "function",
|
|
5961
|
-
"description": "Retrieves all Column Filters for given Column",
|
|
5962
|
-
"uiLabel": "Get All Column Filter For Column"
|
|
5963
|
-
},
|
|
5964
|
-
{
|
|
5965
|
-
"name": "getAllSystemFilterIds",
|
|
5966
|
-
"kind": "function",
|
|
5967
|
-
"description": "Retrieves Ids for all System Filters",
|
|
5968
|
-
"uiLabel": "Get All System Filter Ids"
|
|
5969
|
-
},
|
|
5970
|
-
{
|
|
5971
|
-
"name": "getColumnFilterById",
|
|
5972
|
-
"kind": "function",
|
|
5973
|
-
"description": "Retrieves ColumnFilter by Id",
|
|
5974
|
-
"uiLabel": "Get Column Filter By Id"
|
|
5975
|
-
},
|
|
5976
|
-
{
|
|
5977
|
-
"name": "getFilterPredicateDefsForColumn",
|
|
5978
|
-
"kind": "function",
|
|
5979
|
-
"description": "Gets all Filter Predicates available for a given Column",
|
|
5980
|
-
"uiLabel": "Get Filter Predicate Defs For Column"
|
|
5981
|
-
},
|
|
5982
|
-
{
|
|
5983
|
-
"name": "getFilterPredicateDefsForColumnId",
|
|
5984
|
-
"kind": "function",
|
|
5985
|
-
"description": "Gets all Filter Predicates available for a given ColumnId",
|
|
5986
|
-
"uiLabel": "Get Filter Predicate Defs For Column Id"
|
|
5987
|
-
},
|
|
5988
|
-
{
|
|
5989
|
-
"name": "getFilterState",
|
|
5990
|
-
"kind": "function",
|
|
5991
|
-
"description": "Retrieves Filter section from Adaptable State",
|
|
5992
|
-
"uiLabel": "Get Filter State"
|
|
5993
|
-
},
|
|
5994
|
-
{
|
|
5995
|
-
"name": "hideQuickFilterBar",
|
|
5996
|
-
"kind": "function",
|
|
5997
|
-
"description": "Hides Quick Filter bar",
|
|
5998
|
-
"uiLabel": "Hide Quick Filter Bar"
|
|
5999
|
-
},
|
|
6000
|
-
{
|
|
6001
|
-
"name": "isQuickFilterAvailable",
|
|
6002
|
-
"kind": "function",
|
|
6003
|
-
"description": "Whether Quick Filter is available for use",
|
|
6004
|
-
"uiLabel": "Is Quick Filter Available"
|
|
6086
|
+
"description": "Whether Quick Filter is available for use",
|
|
6087
|
+
"uiLabel": "Is Quick Filter Available"
|
|
6005
6088
|
},
|
|
6006
6089
|
{
|
|
6007
6090
|
"name": "isQuickFilterVisible",
|
|
@@ -6009,12 +6092,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6009
6092
|
"description": "Whether Quick Filter Form is currently visible",
|
|
6010
6093
|
"uiLabel": "Is Quick Filter Visible"
|
|
6011
6094
|
},
|
|
6012
|
-
{
|
|
6013
|
-
"name": "setColumnFilter",
|
|
6014
|
-
"kind": "function",
|
|
6015
|
-
"description": "Sets Column Filters - will replace filters for existing column and leave other column filters in place",
|
|
6016
|
-
"uiLabel": "Set Column Filter"
|
|
6017
|
-
},
|
|
6018
6095
|
{
|
|
6019
6096
|
"name": "showQuickFilterBar",
|
|
6020
6097
|
"kind": "function",
|
|
@@ -6170,6 +6247,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6170
6247
|
"gridInfo": "item",
|
|
6171
6248
|
"defaultValue": "'mouseenter'"
|
|
6172
6249
|
},
|
|
6250
|
+
{
|
|
6251
|
+
"name": "showQuickFilter",
|
|
6252
|
+
"kind": "boolean",
|
|
6253
|
+
"description": "Whether to display Quick Filter Bar between Column Header and the Grid (provided its been setup)",
|
|
6254
|
+
"uiLabel": "Show Quick Filter",
|
|
6255
|
+
"isOptional": true,
|
|
6256
|
+
"defaultValue": "true"
|
|
6257
|
+
},
|
|
6173
6258
|
{
|
|
6174
6259
|
"name": "sortColumnValuesInFilter",
|
|
6175
6260
|
"kind": "boolean",
|
|
@@ -6230,28 +6315,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6230
6315
|
}
|
|
6231
6316
|
]
|
|
6232
6317
|
},
|
|
6233
|
-
"FilterState": {
|
|
6234
|
-
"name": "FilterState",
|
|
6235
|
-
"kind": "Interface",
|
|
6236
|
-
"description": "Predefined Configuration for Filters",
|
|
6237
|
-
"properties": [
|
|
6238
|
-
{
|
|
6239
|
-
"name": "ColumnFilters",
|
|
6240
|
-
"kind": "unknown",
|
|
6241
|
-
"description": "Collection of Column Filters",
|
|
6242
|
-
"uiLabel": "Column Filters",
|
|
6243
|
-
"isOptional": true
|
|
6244
|
-
},
|
|
6245
|
-
{
|
|
6246
|
-
"name": "IsQuickFilterVisible",
|
|
6247
|
-
"kind": "boolean",
|
|
6248
|
-
"description": "Whether to display Quick Filter Bar between Column Header and the Grid",
|
|
6249
|
-
"uiLabel": "Is Quick Filter Visible",
|
|
6250
|
-
"isOptional": true,
|
|
6251
|
-
"defaultValue": "true"
|
|
6252
|
-
}
|
|
6253
|
-
]
|
|
6254
|
-
},
|
|
6255
6318
|
"FinanceApi": {
|
|
6256
6319
|
"name": "FinanceApi",
|
|
6257
6320
|
"kind": "Interface",
|
|
@@ -6740,6 +6803,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6740
6803
|
"description": "Publishes the CheckboxColumnClickedEvent - when the checkbox in an Checkbox Column is clicked",
|
|
6741
6804
|
"uiLabel": "Fire Checkbox Column Clicked Event"
|
|
6742
6805
|
},
|
|
6806
|
+
{
|
|
6807
|
+
"name": "getActiveFormatColumnForColumn",
|
|
6808
|
+
"kind": "function",
|
|
6809
|
+
"description": "Gets an active Format Column, if any, for given Column",
|
|
6810
|
+
"uiLabel": "Get Active Format Column For Column"
|
|
6811
|
+
},
|
|
6743
6812
|
{
|
|
6744
6813
|
"name": "getAllActiveFormatColumn",
|
|
6745
6814
|
"kind": "function",
|
|
@@ -6794,6 +6863,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6794
6863
|
"description": "Returns any ColumnIds referenced in a Column Comparison",
|
|
6795
6864
|
"uiLabel": "Get Column Ids From Column Comparison"
|
|
6796
6865
|
},
|
|
6866
|
+
{
|
|
6867
|
+
"name": "getDateFormattedValue",
|
|
6868
|
+
"kind": "function",
|
|
6869
|
+
"description": "Format value according to format options.",
|
|
6870
|
+
"uiLabel": "Get Date Formatted Value"
|
|
6871
|
+
},
|
|
6797
6872
|
{
|
|
6798
6873
|
"name": "getFormatColumnById",
|
|
6799
6874
|
"kind": "function",
|
|
@@ -6842,6 +6917,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6842
6917
|
"description": "Gets Format Column if any for given Column which includes Style element",
|
|
6843
6918
|
"uiLabel": "Get Format Column With Style For Column"
|
|
6844
6919
|
},
|
|
6920
|
+
{
|
|
6921
|
+
"name": "getNumberFormattedValue",
|
|
6922
|
+
"kind": "function",
|
|
6923
|
+
"description": "Format value according to format options.",
|
|
6924
|
+
"uiLabel": "Get Number Formatted Value"
|
|
6925
|
+
},
|
|
6845
6926
|
{
|
|
6846
6927
|
"name": "getNumericStyleMaxValue",
|
|
6847
6928
|
"kind": "function",
|
|
@@ -6854,6 +6935,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6854
6935
|
"description": "Gets the Minimum Value to display for a Numeric Style",
|
|
6855
6936
|
"uiLabel": "Get Numeric Style Min Value"
|
|
6856
6937
|
},
|
|
6938
|
+
{
|
|
6939
|
+
"name": "getStringFormattedValue",
|
|
6940
|
+
"kind": "function",
|
|
6941
|
+
"description": "Format value according to format options.",
|
|
6942
|
+
"uiLabel": "Get String Formatted Value"
|
|
6943
|
+
},
|
|
6857
6944
|
{
|
|
6858
6945
|
"name": "hasStyleFormatColumns",
|
|
6859
6946
|
"kind": "function",
|
|
@@ -7087,15 +7174,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7087
7174
|
"isOptional": true,
|
|
7088
7175
|
"defaultValue": "null"
|
|
7089
7176
|
},
|
|
7090
|
-
{
|
|
7091
|
-
"name": "autoOrderGroupedColumns",
|
|
7092
|
-
"kind": "boolean",
|
|
7093
|
-
"description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
|
|
7094
|
-
"uiLabel": "Auto Order Grouped Columns",
|
|
7095
|
-
"isOptional": true,
|
|
7096
|
-
"gridInfo": "item",
|
|
7097
|
-
"defaultValue": "true"
|
|
7098
|
-
},
|
|
7099
7177
|
{
|
|
7100
7178
|
"name": "cellSummaryOperations",
|
|
7101
7179
|
"kind": "unknown",
|
|
@@ -7119,6 +7197,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7119
7197
|
"uiLabel": "Custom Sort Comparers",
|
|
7120
7198
|
"isOptional": true
|
|
7121
7199
|
},
|
|
7200
|
+
{
|
|
7201
|
+
"name": "dataSets",
|
|
7202
|
+
"kind": "unknown",
|
|
7203
|
+
"description": "Collection of Data Sets to provide Data to AdapTable",
|
|
7204
|
+
"uiLabel": "Data Sets",
|
|
7205
|
+
"isOptional": true
|
|
7206
|
+
},
|
|
7122
7207
|
{
|
|
7123
7208
|
"name": "englishVariant",
|
|
7124
7209
|
"kind": "unknown",
|
|
@@ -7128,15 +7213,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7128
7213
|
"gridInfo": "item",
|
|
7129
7214
|
"defaultValue": "'GB'"
|
|
7130
7215
|
},
|
|
7131
|
-
{
|
|
7132
|
-
"name": "hideColumnWhenGrouped",
|
|
7133
|
-
"kind": "boolean",
|
|
7134
|
-
"description": "Automatically removes a column from the grid when it becomes Row Grouped",
|
|
7135
|
-
"uiLabel": "Hide Column When Grouped",
|
|
7136
|
-
"isOptional": true,
|
|
7137
|
-
"gridInfo": "item",
|
|
7138
|
-
"defaultValue": "false"
|
|
7139
|
-
},
|
|
7140
7216
|
{
|
|
7141
7217
|
"name": "hideEmptyGroupRows",
|
|
7142
7218
|
"kind": "boolean",
|
|
@@ -7154,15 +7230,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7154
7230
|
"gridInfo": "item",
|
|
7155
7231
|
"defaultValue": "false"
|
|
7156
7232
|
},
|
|
7157
|
-
{
|
|
7158
|
-
"name": "showMissingColumnsWarning",
|
|
7159
|
-
"kind": "boolean",
|
|
7160
|
-
"description": "Show warning if AdapTable cannot find a column",
|
|
7161
|
-
"uiLabel": "Show Missing Columns Warning",
|
|
7162
|
-
"isOptional": true,
|
|
7163
|
-
"gridInfo": "item",
|
|
7164
|
-
"defaultValue": "true"
|
|
7165
|
-
},
|
|
7166
7233
|
{
|
|
7167
7234
|
"name": "showMissingPrimaryKeyAlert",
|
|
7168
7235
|
"kind": "boolean",
|
|
@@ -7817,6 +7884,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7817
7884
|
"description": "Loads grid with given data",
|
|
7818
7885
|
"uiLabel": "Load Grid Data"
|
|
7819
7886
|
},
|
|
7887
|
+
{
|
|
7888
|
+
"name": "openCloneRowForm",
|
|
7889
|
+
"kind": "function",
|
|
7890
|
+
"description": "Open create dialog for cloning an existing row",
|
|
7891
|
+
"uiLabel": "Open Clone Row Form"
|
|
7892
|
+
},
|
|
7893
|
+
{
|
|
7894
|
+
"name": "openCreateRowForm",
|
|
7895
|
+
"kind": "function",
|
|
7896
|
+
"description": "Open create dialog for a new row",
|
|
7897
|
+
"uiLabel": "Open Create Row Form"
|
|
7898
|
+
},
|
|
7899
|
+
{
|
|
7900
|
+
"name": "openEditRowForm",
|
|
7901
|
+
"kind": "function",
|
|
7902
|
+
"description": "Open edit dialog for row with the given primary key value",
|
|
7903
|
+
"uiLabel": "Open Edit Row Form"
|
|
7904
|
+
},
|
|
7820
7905
|
{
|
|
7821
7906
|
"name": "redrawGrid",
|
|
7822
7907
|
"kind": "function",
|
|
@@ -8563,6 +8648,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8563
8648
|
"uiLabel": "Auto Save",
|
|
8564
8649
|
"isOptional": true
|
|
8565
8650
|
},
|
|
8651
|
+
{
|
|
8652
|
+
"name": "ColumnFilters",
|
|
8653
|
+
"kind": "unknown",
|
|
8654
|
+
"description": "Collection of Column Filters.",
|
|
8655
|
+
"uiLabel": "Column Filters",
|
|
8656
|
+
"isOptional": true
|
|
8657
|
+
},
|
|
8566
8658
|
{
|
|
8567
8659
|
"name": "ColumnHeadersMap",
|
|
8568
8660
|
"kind": "unknown",
|
|
@@ -8657,6 +8749,36 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8657
8749
|
"description": "Compares 2 Layouts for equality",
|
|
8658
8750
|
"uiLabel": "Are Layouts Equal"
|
|
8659
8751
|
},
|
|
8752
|
+
{
|
|
8753
|
+
"name": "clearAllColumnFilter",
|
|
8754
|
+
"kind": "function",
|
|
8755
|
+
"description": "Clears all Column Filters in State",
|
|
8756
|
+
"uiLabel": "Clear All Column Filter"
|
|
8757
|
+
},
|
|
8758
|
+
{
|
|
8759
|
+
"name": "clearAndSetColumnFilter",
|
|
8760
|
+
"kind": "function",
|
|
8761
|
+
"description": "Clears existing Column Filters and then sets the new ones",
|
|
8762
|
+
"uiLabel": "Clear And Set Column Filter"
|
|
8763
|
+
},
|
|
8764
|
+
{
|
|
8765
|
+
"name": "clearColumnFilter",
|
|
8766
|
+
"kind": "function",
|
|
8767
|
+
"description": "Clears given Column Filter",
|
|
8768
|
+
"uiLabel": "Clear Column Filter"
|
|
8769
|
+
},
|
|
8770
|
+
{
|
|
8771
|
+
"name": "clearColumnFilterByColumn",
|
|
8772
|
+
"kind": "function",
|
|
8773
|
+
"description": "Clears Column Filter for given Column",
|
|
8774
|
+
"uiLabel": "Clear Column Filter By Column"
|
|
8775
|
+
},
|
|
8776
|
+
{
|
|
8777
|
+
"name": "clearColumnFilterByColumns",
|
|
8778
|
+
"kind": "function",
|
|
8779
|
+
"description": "Clears Column Filters for given set of Columns",
|
|
8780
|
+
"uiLabel": "Clear Column Filter By Columns"
|
|
8781
|
+
},
|
|
8660
8782
|
{
|
|
8661
8783
|
"name": "cloneAndSetLayout",
|
|
8662
8784
|
"kind": "function",
|
|
@@ -8669,12 +8791,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8669
8791
|
"description": "Creates new Layout based on given Layout but with name provided",
|
|
8670
8792
|
"uiLabel": "Clone Layout"
|
|
8671
8793
|
},
|
|
8794
|
+
{
|
|
8795
|
+
"name": "columnFiltersToString",
|
|
8796
|
+
"kind": "function",
|
|
8797
|
+
"description": "Retrieves descriptions of given Column Filters",
|
|
8798
|
+
"uiLabel": "Column Filters To String"
|
|
8799
|
+
},
|
|
8800
|
+
{
|
|
8801
|
+
"name": "columnFilterToString",
|
|
8802
|
+
"kind": "function",
|
|
8803
|
+
"description": "Retrieves description of given Column Filter",
|
|
8804
|
+
"uiLabel": "Column Filter To String"
|
|
8805
|
+
},
|
|
8672
8806
|
{
|
|
8673
8807
|
"name": "createAndSetLayout",
|
|
8674
8808
|
"kind": "function",
|
|
8675
8809
|
"description": "Creates new Layout in the state and then loads it into Grid",
|
|
8676
8810
|
"uiLabel": "Create And Set Layout"
|
|
8677
8811
|
},
|
|
8812
|
+
{
|
|
8813
|
+
"name": "createColumnFilterForCell",
|
|
8814
|
+
"kind": "function",
|
|
8815
|
+
"description": "Creates new Column Filter on given Column using Primary Key values",
|
|
8816
|
+
"uiLabel": "Create Column Filter For Cell"
|
|
8817
|
+
},
|
|
8678
8818
|
{
|
|
8679
8819
|
"name": "createDefaultLayoutIfNeeded",
|
|
8680
8820
|
"kind": "function",
|
|
@@ -8711,18 +8851,42 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8711
8851
|
"description": "Checks whether this Layout exists in the Adaptable State (by comparing Uuid property)",
|
|
8712
8852
|
"uiLabel": "Does Layout Exist"
|
|
8713
8853
|
},
|
|
8854
|
+
{
|
|
8855
|
+
"name": "evaluateColumnFilter",
|
|
8856
|
+
"kind": "function",
|
|
8857
|
+
"description": "Calls AdapTableQL to evaluate Filter for given Row",
|
|
8858
|
+
"uiLabel": "Evaluate Column Filter"
|
|
8859
|
+
},
|
|
8714
8860
|
{
|
|
8715
8861
|
"name": "fireLayoutChangedEvent",
|
|
8716
8862
|
"kind": "function",
|
|
8717
8863
|
"description": "Fires the `LayoutChanged` event",
|
|
8718
8864
|
"uiLabel": "Fire Layout Changed Event"
|
|
8719
8865
|
},
|
|
8866
|
+
{
|
|
8867
|
+
"name": "getAllColumnFilter",
|
|
8868
|
+
"kind": "function",
|
|
8869
|
+
"description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
|
|
8870
|
+
"uiLabel": "Get All Column Filter"
|
|
8871
|
+
},
|
|
8872
|
+
{
|
|
8873
|
+
"name": "getAllColumnFilterForColumn",
|
|
8874
|
+
"kind": "function",
|
|
8875
|
+
"description": "Retrieves all Column Filters for given Column",
|
|
8876
|
+
"uiLabel": "Get All Column Filter For Column"
|
|
8877
|
+
},
|
|
8720
8878
|
{
|
|
8721
8879
|
"name": "getAllLayout",
|
|
8722
8880
|
"kind": "function",
|
|
8723
8881
|
"description": "Retrieves all Layouts in Adaptable State",
|
|
8724
8882
|
"uiLabel": "Get All Layout"
|
|
8725
8883
|
},
|
|
8884
|
+
{
|
|
8885
|
+
"name": "getColumnFilterById",
|
|
8886
|
+
"kind": "function",
|
|
8887
|
+
"description": "Retrieves ColumnFilter by Id",
|
|
8888
|
+
"uiLabel": "Get Column Filter By Id"
|
|
8889
|
+
},
|
|
8726
8890
|
{
|
|
8727
8891
|
"name": "getCurrentLayout",
|
|
8728
8892
|
"kind": "function",
|
|
@@ -8801,6 +8965,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8801
8965
|
"description": "Does an object's Tags include the Current Layout",
|
|
8802
8966
|
"uiLabel": "Is Object Available In Current Layout"
|
|
8803
8967
|
},
|
|
8968
|
+
{
|
|
8969
|
+
"name": "removeColumnFromAllLayouts",
|
|
8970
|
+
"kind": "function",
|
|
8971
|
+
"description": "Removes a Column from all Layouts",
|
|
8972
|
+
"uiLabel": "Remove Column From All Layouts"
|
|
8973
|
+
},
|
|
8974
|
+
{
|
|
8975
|
+
"name": "removeColumnFromCurrentLayout",
|
|
8976
|
+
"kind": "function",
|
|
8977
|
+
"description": "Removes a Column from the Current Layout",
|
|
8978
|
+
"uiLabel": "Remove Column From Current Layout"
|
|
8979
|
+
},
|
|
8980
|
+
{
|
|
8981
|
+
"name": "removeColumnFromLayout",
|
|
8982
|
+
"kind": "function",
|
|
8983
|
+
"description": "Removes a Column from a given Layout",
|
|
8984
|
+
"uiLabel": "Remove Column From Layout"
|
|
8985
|
+
},
|
|
8804
8986
|
{
|
|
8805
8987
|
"name": "saveCurrentLayout",
|
|
8806
8988
|
"kind": "function",
|
|
@@ -8819,6 +9001,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8819
9001
|
"description": "Sets a new Caption / Header for a Column (this Layout only)",
|
|
8820
9002
|
"uiLabel": "Set Column Caption"
|
|
8821
9003
|
},
|
|
9004
|
+
{
|
|
9005
|
+
"name": "setColumnFilter",
|
|
9006
|
+
"kind": "function",
|
|
9007
|
+
"description": "Sets Column Filters - will replace filters for existing column and leave other column filters in place",
|
|
9008
|
+
"uiLabel": "Set Column Filter"
|
|
9009
|
+
},
|
|
8822
9010
|
{
|
|
8823
9011
|
"name": "setLayout",
|
|
8824
9012
|
"kind": "function",
|
|
@@ -9075,6 +9263,27 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9075
9263
|
}
|
|
9076
9264
|
]
|
|
9077
9265
|
},
|
|
9266
|
+
"MasterDetailPluginOptions": {
|
|
9267
|
+
"name": "MasterDetailPluginOptions",
|
|
9268
|
+
"kind": "Interface",
|
|
9269
|
+
"description": "Plugin Options used when creating a Master / Detail grid - passed into the plugin as the only argument.",
|
|
9270
|
+
"properties": [
|
|
9271
|
+
{
|
|
9272
|
+
"name": "detailAdaptableOptions",
|
|
9273
|
+
"kind": "REFERENCE",
|
|
9274
|
+
"description": "`AdaptableOptions` object to use for child Data Grids; **all** will share the same behaviour and State",
|
|
9275
|
+
"uiLabel": "Detail Adaptable Options",
|
|
9276
|
+
"reference": "AdaptableOptions"
|
|
9277
|
+
},
|
|
9278
|
+
{
|
|
9279
|
+
"name": "onDetailInit",
|
|
9280
|
+
"kind": "unknown",
|
|
9281
|
+
"description": "Function called when Detail Grid is initialised (i.e. opens) receives an Adaptable Api object",
|
|
9282
|
+
"uiLabel": "On Detail Init",
|
|
9283
|
+
"isOptional": true
|
|
9284
|
+
}
|
|
9285
|
+
]
|
|
9286
|
+
},
|
|
9078
9287
|
"MenuOptions": {
|
|
9079
9288
|
"name": "MenuOptions",
|
|
9080
9289
|
"kind": "Interface",
|
|
@@ -9993,14 +10202,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9993
10202
|
"isOptional": true,
|
|
9994
10203
|
"reference": "DashboardState"
|
|
9995
10204
|
},
|
|
9996
|
-
{
|
|
9997
|
-
"name": "DataSource",
|
|
9998
|
-
"kind": "REFERENCE",
|
|
9999
|
-
"description": "Supplies a collection of *DataSource* objects to facilitate replacing the DataSource in the Grid with an alternate set of data (e.g. a Book or Stored Proc name)",
|
|
10000
|
-
"uiLabel": "Data Source",
|
|
10001
|
-
"isOptional": true,
|
|
10002
|
-
"reference": "DataSourceState"
|
|
10003
|
-
},
|
|
10004
10205
|
{
|
|
10005
10206
|
"name": "Export",
|
|
10006
10207
|
"kind": "REFERENCE",
|
|
@@ -10009,14 +10210,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10009
10210
|
"isOptional": true,
|
|
10010
10211
|
"reference": "ExportState"
|
|
10011
10212
|
},
|
|
10012
|
-
{
|
|
10013
|
-
"name": "Filter",
|
|
10014
|
-
"kind": "REFERENCE",
|
|
10015
|
-
"description": "Stores Filters in AdapTable - both System and Column (predicate) Filters",
|
|
10016
|
-
"uiLabel": "Filter",
|
|
10017
|
-
"isOptional": true,
|
|
10018
|
-
"reference": "FilterState"
|
|
10019
|
-
},
|
|
10020
10213
|
{
|
|
10021
10214
|
"name": "FlashingCell",
|
|
10022
10215
|
"kind": "REFERENCE",
|
|
@@ -10095,7 +10288,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10095
10288
|
"description": "Configures the Adaptable Status Bar",
|
|
10096
10289
|
"uiLabel": "Status Bar",
|
|
10097
10290
|
"isOptional": true,
|
|
10098
|
-
"reference": "
|
|
10291
|
+
"reference": "StatusBarState"
|
|
10099
10292
|
},
|
|
10100
10293
|
{
|
|
10101
10294
|
"name": "Theme",
|
|
@@ -10473,10 +10666,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10473
10666
|
"properties": [
|
|
10474
10667
|
{
|
|
10475
10668
|
"name": "intent",
|
|
10476
|
-
"kind": "
|
|
10669
|
+
"kind": "unknown",
|
|
10477
10670
|
"description": "FDC3 Intent that was raised",
|
|
10478
|
-
"uiLabel": "Intent"
|
|
10479
|
-
"reference": "FDC3Intent"
|
|
10671
|
+
"uiLabel": "Intent"
|
|
10480
10672
|
}
|
|
10481
10673
|
]
|
|
10482
10674
|
},
|
|
@@ -10563,6 +10755,52 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10563
10755
|
}
|
|
10564
10756
|
]
|
|
10565
10757
|
},
|
|
10758
|
+
"RowFormOptions": {
|
|
10759
|
+
"name": "RowFormOptions",
|
|
10760
|
+
"kind": "Interface",
|
|
10761
|
+
"description": "Options for editing (create/update/delete) row entries in the grid",
|
|
10762
|
+
"properties": [
|
|
10763
|
+
{
|
|
10764
|
+
"name": "formButtons",
|
|
10765
|
+
"kind": "unknown",
|
|
10766
|
+
"description": "Custom form buttons provider. If provided, the custom implementation is responsible for firing the 'RowFormSubmitted' and/or invoking the 'onFormSubmit' callback (if necessary).",
|
|
10767
|
+
"uiLabel": "Form Buttons",
|
|
10768
|
+
"isOptional": true
|
|
10769
|
+
},
|
|
10770
|
+
{
|
|
10771
|
+
"name": "formDescription",
|
|
10772
|
+
"kind": "unknown",
|
|
10773
|
+
"description": "Custom form description provider",
|
|
10774
|
+
"uiLabel": "Form Description",
|
|
10775
|
+
"isOptional": true,
|
|
10776
|
+
"defaultValue": "undefined"
|
|
10777
|
+
},
|
|
10778
|
+
{
|
|
10779
|
+
"name": "formFieldLabel",
|
|
10780
|
+
"kind": "unknown",
|
|
10781
|
+
"description": "Custom form field label provider",
|
|
10782
|
+
"uiLabel": "Form Field Label",
|
|
10783
|
+
"isOptional": true,
|
|
10784
|
+
"defaultValue": "undefined"
|
|
10785
|
+
},
|
|
10786
|
+
{
|
|
10787
|
+
"name": "formTitle",
|
|
10788
|
+
"kind": "unknown",
|
|
10789
|
+
"description": "Custom form title provider",
|
|
10790
|
+
"uiLabel": "Form Title",
|
|
10791
|
+
"isOptional": true,
|
|
10792
|
+
"defaultValue": "'Create New Row'/'Edit Row'"
|
|
10793
|
+
},
|
|
10794
|
+
{
|
|
10795
|
+
"name": "onFormSubmit",
|
|
10796
|
+
"kind": "unknown",
|
|
10797
|
+
"description": "Function which is invoked when a row form is submitted via a standard button (provided by AdapTable). This is not invoked when custom form buttons are provided!",
|
|
10798
|
+
"uiLabel": "On Form Submit",
|
|
10799
|
+
"isOptional": true,
|
|
10800
|
+
"defaultValue": "undefined"
|
|
10801
|
+
}
|
|
10802
|
+
]
|
|
10803
|
+
},
|
|
10566
10804
|
"RowInfo": {
|
|
10567
10805
|
"name": "RowInfo",
|
|
10568
10806
|
"kind": "Interface",
|
|
@@ -11455,6 +11693,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11455
11693
|
"description": "Applies a Smart Edit to given Cells",
|
|
11456
11694
|
"uiLabel": "Apply Smart Edit"
|
|
11457
11695
|
},
|
|
11696
|
+
{
|
|
11697
|
+
"name": "getSmartEditCustomOperations",
|
|
11698
|
+
"kind": "function",
|
|
11699
|
+
"description": "Retrieves an Smart Edit Custom Operations (provided in Edit Options)",
|
|
11700
|
+
"uiLabel": "Get Smart Edit Custom Operations"
|
|
11701
|
+
},
|
|
11458
11702
|
{
|
|
11459
11703
|
"name": "getSmartEditOperation",
|
|
11460
11704
|
"kind": "function",
|
|
@@ -11467,10 +11711,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11467
11711
|
"description": "Returns current Smart Edit Value",
|
|
11468
11712
|
"uiLabel": "Get Smart Edit Value"
|
|
11469
11713
|
},
|
|
11714
|
+
{
|
|
11715
|
+
"name": "setCustomSmartEditOperation",
|
|
11716
|
+
"kind": "function",
|
|
11717
|
+
"description": "Sets current Smart Edit Operation to a Custom Operation",
|
|
11718
|
+
"uiLabel": "Set Custom Smart Edit Operation"
|
|
11719
|
+
},
|
|
11470
11720
|
{
|
|
11471
11721
|
"name": "setSmartEditOperation",
|
|
11472
11722
|
"kind": "function",
|
|
11473
|
-
"description": "Sets Smart Edit
|
|
11723
|
+
"description": "Sets (shipped) Smart Edit Operation: 'Add','Subtract','Multiply','Divide'",
|
|
11474
11724
|
"uiLabel": "Set Smart Edit Operation"
|
|
11475
11725
|
},
|
|
11476
11726
|
{
|
|
@@ -11487,6 +11737,31 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11487
11737
|
}
|
|
11488
11738
|
]
|
|
11489
11739
|
},
|
|
11740
|
+
"SmartEditCustomOperation": {
|
|
11741
|
+
"name": "SmartEditCustomOperation",
|
|
11742
|
+
"kind": "TypeAlias",
|
|
11743
|
+
"description": "Custom Operation used in Smart Edit Module"
|
|
11744
|
+
},
|
|
11745
|
+
"SmartEditOperationContext": {
|
|
11746
|
+
"name": "SmartEditOperationContext",
|
|
11747
|
+
"kind": "Interface",
|
|
11748
|
+
"description": "Context used in Custom Smart Edit Operations",
|
|
11749
|
+
"properties": [
|
|
11750
|
+
{
|
|
11751
|
+
"name": "currentCell",
|
|
11752
|
+
"kind": "REFERENCE",
|
|
11753
|
+
"description": "Current selected grid cell - contains column, row and cell value information",
|
|
11754
|
+
"uiLabel": "Current Cell",
|
|
11755
|
+
"reference": "GridCell"
|
|
11756
|
+
},
|
|
11757
|
+
{
|
|
11758
|
+
"name": "smartEditValue",
|
|
11759
|
+
"kind": "number",
|
|
11760
|
+
"description": "Smart Edit value",
|
|
11761
|
+
"uiLabel": "Smart Edit Value"
|
|
11762
|
+
}
|
|
11763
|
+
]
|
|
11764
|
+
},
|
|
11490
11765
|
"SpecialColumnSettings": {
|
|
11491
11766
|
"name": "SpecialColumnSettings",
|
|
11492
11767
|
"kind": "Interface",
|
|
@@ -11633,6 +11908,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11633
11908
|
}
|
|
11634
11909
|
]
|
|
11635
11910
|
},
|
|
11911
|
+
"StatusBarState": {
|
|
11912
|
+
"name": "StatusBarState",
|
|
11913
|
+
"kind": "Interface",
|
|
11914
|
+
"description": "Predefined Configuration for the Adaptable Status Bar",
|
|
11915
|
+
"properties": [
|
|
11916
|
+
{
|
|
11917
|
+
"name": "StatusBars",
|
|
11918
|
+
"kind": "unknown",
|
|
11919
|
+
"description": "Adaptable Status Bars to display - up to 3 can be shown",
|
|
11920
|
+
"uiLabel": "Status Bars",
|
|
11921
|
+
"isOptional": true,
|
|
11922
|
+
"defaultValue": "null"
|
|
11923
|
+
}
|
|
11924
|
+
]
|
|
11925
|
+
},
|
|
11636
11926
|
"StringFormatterOptions": {
|
|
11637
11927
|
"name": "StringFormatterOptions",
|
|
11638
11928
|
"kind": "Interface",
|
|
@@ -11811,15 +12101,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11811
12101
|
{
|
|
11812
12102
|
"name": "getSharedEntities",
|
|
11813
12103
|
"kind": "function",
|
|
11814
|
-
"description": "Retrieves all
|
|
12104
|
+
"description": "Retrieves all shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.getSharedEntities(...)` method.",
|
|
11815
12105
|
"uiLabel": "Get Shared Entities"
|
|
11816
12106
|
},
|
|
11817
|
-
{
|
|
11818
|
-
"name": "getTeamSharingState",
|
|
11819
|
-
"kind": "function",
|
|
11820
|
-
"description": "Retrieves Team Sharing section of State",
|
|
11821
|
-
"uiLabel": "Get Team Sharing State"
|
|
11822
|
-
},
|
|
11823
12107
|
{
|
|
11824
12108
|
"name": "hasTeamSharingFullRights",
|
|
11825
12109
|
"kind": "function",
|
|
@@ -11832,6 +12116,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11832
12116
|
"description": "Whether Team Sharing is Activated",
|
|
11833
12117
|
"uiLabel": "Is Team Sharing Activated"
|
|
11834
12118
|
},
|
|
12119
|
+
{
|
|
12120
|
+
"name": "isTeamSharingAvailable",
|
|
12121
|
+
"kind": "function",
|
|
12122
|
+
"description": "Whether Team Sharing is Available to use",
|
|
12123
|
+
"uiLabel": "Is Team Sharing Available"
|
|
12124
|
+
},
|
|
12125
|
+
{
|
|
12126
|
+
"name": "setSharedEntities",
|
|
12127
|
+
"kind": "function",
|
|
12128
|
+
"description": "Sets the shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.setSharedEntities(...)` method.",
|
|
12129
|
+
"uiLabel": "Set Shared Entities"
|
|
12130
|
+
},
|
|
11835
12131
|
{
|
|
11836
12132
|
"name": "shareEntity",
|
|
11837
12133
|
"kind": "function",
|
|
@@ -11843,6 +12139,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11843
12139
|
"kind": "function",
|
|
11844
12140
|
"description": "Opens Settings Panel with Team Sharing section selected and visible",
|
|
11845
12141
|
"uiLabel": "Show Team Sharing Popup"
|
|
12142
|
+
},
|
|
12143
|
+
{
|
|
12144
|
+
"name": "unshareEntity",
|
|
12145
|
+
"kind": "function",
|
|
12146
|
+
"description": "Removes an Adaptable Object from the Team Share.",
|
|
12147
|
+
"uiLabel": "Unshare Entity"
|
|
11846
12148
|
}
|
|
11847
12149
|
]
|
|
11848
12150
|
},
|
|
@@ -12143,15 +12445,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12143
12445
|
"kind": "Interface",
|
|
12144
12446
|
"description": "Options related to managing the AdapTable ToolPanel Component",
|
|
12145
12447
|
"properties": [
|
|
12146
|
-
{
|
|
12147
|
-
"name": "adaptableToolPanelTitle",
|
|
12148
|
-
"kind": "string",
|
|
12149
|
-
"description": "Title for AdapTable ToolPanel Component - appears vertically at side",
|
|
12150
|
-
"uiLabel": "Adaptable Tool Panel Title",
|
|
12151
|
-
"isOptional": true,
|
|
12152
|
-
"gridInfo": "item",
|
|
12153
|
-
"defaultValue": "'AdapTable'"
|
|
12154
|
-
},
|
|
12155
12448
|
{
|
|
12156
12449
|
"name": "customButtons",
|
|
12157
12450
|
"kind": "unknown",
|
|
@@ -12166,40 +12459,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12166
12459
|
"uiLabel": "Custom Tool Panels",
|
|
12167
12460
|
"isOptional": true
|
|
12168
12461
|
},
|
|
12169
|
-
{
|
|
12170
|
-
"name": "iconKey",
|
|
12171
|
-
"kind": "string",
|
|
12172
|
-
"description": "Key of icon to be used (beside the label) for Adaptable ToolPanel Component",
|
|
12173
|
-
"uiLabel": "Icon Key",
|
|
12174
|
-
"isOptional": true,
|
|
12175
|
-
"gridInfo": "item",
|
|
12176
|
-
"defaultValue": "'menu'"
|
|
12177
|
-
},
|
|
12178
|
-
{
|
|
12179
|
-
"name": "maxWidth",
|
|
12180
|
-
"kind": "number",
|
|
12181
|
-
"description": "The max width of AdapTable ToolPanel",
|
|
12182
|
-
"uiLabel": "Max Width",
|
|
12183
|
-
"isOptional": true,
|
|
12184
|
-
"defaultValue": "undefined"
|
|
12185
|
-
},
|
|
12186
|
-
{
|
|
12187
|
-
"name": "minWidth",
|
|
12188
|
-
"kind": "number",
|
|
12189
|
-
"description": "The min width of AdapTable ToolPanel",
|
|
12190
|
-
"uiLabel": "Min Width",
|
|
12191
|
-
"isOptional": true,
|
|
12192
|
-
"defaultValue": "var(--ab-cmp-toolpanel__width)"
|
|
12193
|
-
},
|
|
12194
|
-
{
|
|
12195
|
-
"name": "showAdaptableToolPanel",
|
|
12196
|
-
"kind": "boolean",
|
|
12197
|
-
"description": "Displays Adaptable ToolPanel Component (only if AG Grid Sidebar is provided)",
|
|
12198
|
-
"uiLabel": "Show Adaptable Tool Panel",
|
|
12199
|
-
"isOptional": true,
|
|
12200
|
-
"gridInfo": "item",
|
|
12201
|
-
"defaultValue": "true"
|
|
12202
|
-
},
|
|
12203
12462
|
{
|
|
12204
12463
|
"name": "showToolPanelsDropdown",
|
|
12205
12464
|
"kind": "boolean",
|
|
@@ -12208,22 +12467,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12208
12467
|
"isOptional": true,
|
|
12209
12468
|
"gridInfo": "item",
|
|
12210
12469
|
"defaultValue": "true"
|
|
12211
|
-
},
|
|
12212
|
-
{
|
|
12213
|
-
"name": "toolPanelOrder",
|
|
12214
|
-
"kind": "unknown",
|
|
12215
|
-
"description": "Order of displayed ToolPanels in Sidebar",
|
|
12216
|
-
"uiLabel": "Tool Panel Order",
|
|
12217
|
-
"isOptional": true,
|
|
12218
|
-
"defaultValue": "['filters', 'columns', 'adaptable']"
|
|
12219
|
-
},
|
|
12220
|
-
{
|
|
12221
|
-
"name": "width",
|
|
12222
|
-
"kind": "number",
|
|
12223
|
-
"description": "The initial width of AdapTable ToolPanel",
|
|
12224
|
-
"uiLabel": "Width",
|
|
12225
|
-
"isOptional": true,
|
|
12226
|
-
"defaultValue": "var(--ab-cmp-toolpanel__width)"
|
|
12227
12470
|
}
|
|
12228
12471
|
]
|
|
12229
12472
|
},
|
|
@@ -12365,11 +12608,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12365
12608
|
"description": "Options for managing the User Interface of AdapTable",
|
|
12366
12609
|
"properties": [
|
|
12367
12610
|
{
|
|
12368
|
-
"name": "
|
|
12369
|
-
"kind": "
|
|
12370
|
-
"description": "
|
|
12371
|
-
"uiLabel": "Action
|
|
12372
|
-
"isOptional": true
|
|
12611
|
+
"name": "actionOptions",
|
|
12612
|
+
"kind": "REFERENCE",
|
|
12613
|
+
"description": "Options for creating Action Columns and Buttons",
|
|
12614
|
+
"uiLabel": "Action Options",
|
|
12615
|
+
"isOptional": true,
|
|
12616
|
+
"reference": "ActionOptions"
|
|
12373
12617
|
},
|
|
12374
12618
|
{
|
|
12375
12619
|
"name": "applicationIcon",
|
|
@@ -12395,10 +12639,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12395
12639
|
"isOptional": true
|
|
12396
12640
|
},
|
|
12397
12641
|
{
|
|
12398
|
-
"name": "
|
|
12642
|
+
"name": "customDisplayFormatters",
|
|
12399
12643
|
"kind": "unknown",
|
|
12400
|
-
"description": "
|
|
12401
|
-
"uiLabel": "
|
|
12644
|
+
"description": "Custom Formatters to use in the Format Column Module",
|
|
12645
|
+
"uiLabel": "Custom Display Formatters",
|
|
12402
12646
|
"isOptional": true
|
|
12403
12647
|
},
|
|
12404
12648
|
{
|