@adaptabletools/adaptable 10.0.3 → 10.0.4-canary.3
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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/base.css +16 -6
- package/bundle.cjs.js +350 -0
- package/index.css +20 -6
- package/package.json +1 -5
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +14 -12
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
- package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
- package/src/AdaptableOptions/EditOptions.d.ts +2 -3
- package/src/AdaptableOptions/FilterOptions.d.ts +8 -8
- package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
- package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
- package/src/AdaptableOptions/NotificationsOptions.d.ts +11 -1
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +29 -12
- package/src/Api/AdaptableApi.d.ts +12 -12
- package/src/Api/CalculatedColumnApi.d.ts +15 -0
- package/src/Api/ColumnApi.d.ts +16 -5
- package/src/Api/EventApi.d.ts +1 -1
- package/src/Api/Events/AdaptableReady.d.ts +5 -8
- package/src/Api/Events/AdaptableStateChanged.d.ts +2 -1
- package/src/Api/Events/AlertFired.d.ts +2 -1
- package/src/Api/Events/BaseEventInfo.d.ts +10 -0
- package/src/Api/Events/BaseEventInfo.js +2 -0
- package/src/Api/Events/CellChanged.d.ts +2 -1
- package/src/Api/Events/ChexboxColumnClicked.d.ts +2 -1
- package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -1
- package/src/Api/Events/DashboardChanged.d.ts +2 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +2 -1
- package/src/Api/Events/GridDataChanged.d.ts +2 -1
- package/src/Api/Events/LayoutChanged.d.ts +2 -1
- package/src/Api/Events/LiveDataChanged.d.ts +2 -1
- package/src/Api/Events/SearchChanged.d.ts +2 -1
- package/src/Api/Events/SelectionChanged.d.ts +2 -1
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -1
- package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -1
- package/src/Api/Events/ThemeChanged.d.ts +2 -1
- package/src/Api/GridApi.d.ts +10 -10
- package/src/Api/Implementation/AlertApiImpl.js +17 -17
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +5 -3
- package/src/Api/Implementation/ColumnApiImpl.js +43 -44
- package/src/Api/Implementation/ConfigApiImpl.js +0 -24
- package/src/Api/Implementation/DashboardApiImpl.js +2 -1
- package/src/Api/Implementation/ExportApiImpl.js +4 -4
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -1
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +7 -2
- package/src/Api/Implementation/GridApiImpl.d.ts +2 -2
- package/src/Api/Implementation/GridApiImpl.js +14 -13
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -2
- package/src/Api/Implementation/InternalApiImpl.js +5 -5
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +19 -3
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PluginsApiImpl.js +1 -1
- package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
- package/src/Api/Implementation/ScopeApiImpl.js +11 -11
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +1 -0
- package/src/Api/Implementation/ThemeApiImpl.js +1 -0
- package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +5 -4
- package/src/Api/Implementation/UserInterfaceApiImpl.js +18 -13
- package/src/Api/InternalApi.d.ts +2 -2
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/PluginsApi.d.ts +1 -7
- package/src/Api/TeamSharingApi.d.ts +1 -1
- package/src/Api/ThemeApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +6 -5
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
- package/src/PredefinedConfig/AlertState.d.ts +2 -3
- package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +36 -36
- package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +3 -3
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +4 -3
- package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +5 -5
- package/src/PredefinedConfig/Common/Types.js +9 -7
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
- package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +3 -3
- package/src/PredefinedConfig/FilterState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
- package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
- package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
- package/src/PredefinedConfig/ThemeState.d.ts +5 -1
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
- package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
- package/src/Redux/ActionsReducers/GridRedux.js +2 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
- package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
- package/src/Redux/DeadRedux.d.ts +4 -8
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
- package/src/Redux/Store/AdaptableStore.d.ts +3 -3
- package/src/Redux/Store/AdaptableStore.js +21 -16
- package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
- package/src/Strategy/AdaptableModuleBase.js +8 -8
- package/src/Strategy/AlertModule.d.ts +2 -2
- package/src/Strategy/AlertModule.js +13 -105
- package/src/Strategy/BulkUpdateModule.d.ts +2 -2
- package/src/Strategy/BulkUpdateModule.js +7 -7
- package/src/Strategy/CalculatedColumnModule.js +1 -1
- package/src/Strategy/CellSummaryModule.d.ts +2 -2
- package/src/Strategy/CellSummaryModule.js +3 -3
- package/src/Strategy/ConditionalStyleModule.js +3 -3
- package/src/Strategy/CustomSortModule.js +2 -2
- package/src/Strategy/DashboardModule.d.ts +2 -2
- package/src/Strategy/DataChangeHistoryModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +2 -2
- package/src/Strategy/ExportModule.js +1 -1
- package/src/Strategy/FilterModule.d.ts +2 -2
- package/src/Strategy/FilterModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +6 -6
- package/src/Strategy/FreeTextColumnModule.js +1 -1
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.js +22 -9
- package/src/Strategy/PlusMinusModule.js +8 -9
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +8 -9
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +8 -7
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/Interface/Preview.d.ts +2 -1
- package/src/Utilities/ObjectFactory.js +1 -1
- package/src/Utilities/Services/DataService.js +5 -5
- package/src/Utilities/Services/LicenseService.js +16 -2
- package/src/Utilities/Services/MetamodelService.js +0 -1
- package/src/Utilities/Services/ReportService.js +12 -11
- package/src/Utilities/Services/ValidationService.js +4 -5
- package/src/View/AdaptableViewFactory.d.ts +2 -1
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
- package/src/View/Alert/AlertPopup.js +1 -1
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
- package/src/View/Components/ColumnSelector/index.js +2 -2
- package/src/View/Components/FilterForm/FilterForm.js +18 -20
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +15 -17
- package/src/View/Components/NewScopeComponent.js +1 -1
- package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +23 -10
- package/src/View/Components/PreviewResultsPanel.js +1 -1
- package/src/View/Components/RangesComponent.js +2 -2
- package/src/View/Components/Selectors/ColumnSelector.js +5 -5
- package/src/View/Components/Selectors/ColumnValueSelector.js +4 -4
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +10 -11
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
- package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
- package/src/View/CustomSort/CustomSortPopup.js +2 -2
- package/src/View/CustomSort/CustomSortSummary.js +3 -3
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -4
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
- package/src/View/Dashboard/Dashboard.js +2 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -10
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
- package/src/View/Export/ExportCustomDestinationDialog.js +1 -1
- package/src/View/Export/ExportViewPanel.js +6 -6
- package/src/View/Filter/FilterSummary.js +2 -2
- package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +2 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
- package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
- package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
- package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
- package/src/View/Query/QueryViewPanel.js +3 -3
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
- package/src/View/Schedule/SchedulePopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +1 -1
- package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
- package/src/View/StateManagement/StateManagementPopup.js +21 -114
- package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
- package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
- package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
- package/src/View/StateManagement/components/ClearButton.js +9 -0
- package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
- package/src/View/StateManagement/components/ExportDropdown.js +43 -0
- package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
- package/src/View/StateManagement/components/LoadButton.js +38 -0
- package/src/View/StateManagement/handleExportState.d.ts +1 -0
- package/src/View/StateManagement/handleExportState.js +22 -0
- package/src/View/Theme/ThemeViewPanel.js +1 -1
- package/src/agGrid/ActionColumnRenderer.js +1 -1
- package/src/agGrid/Adaptable.d.ts +9 -8
- package/src/agGrid/Adaptable.js +174 -132
- package/src/agGrid/agGridHelper.d.ts +4 -4
- package/src/agGrid/agGridHelper.js +46 -46
- package/src/agGrid/agGridMenuHelper.d.ts +15 -13
- package/src/agGrid/agGridMenuHelper.js +55 -47
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -3
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
- package/src/components/Datepicker/index.js +9 -5
- package/src/components/ExpressionEditor/index.js +7 -7
- package/src/components/Modal/index.d.ts +1 -1
- package/src/components/OverlayTrigger/index.js +3 -3
- package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
- package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
- package/src/components/ProgressIndicator/ProgressIndicator.js +1 -1
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/upload.d.ts +3 -0
- package/src/components/icons/upload.js +8 -0
- package/src/metamodel/adaptable.metamodel.d.ts +104 -50
- package/src/metamodel/adaptable.metamodel.js +358 -300
- package/src/types.d.ts +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
- package/src/PredefinedConfig/DeprecatedState.js +0 -5
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
|
@@ -69,7 +69,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
69
69
|
{
|
|
70
70
|
"name": "rowNode",
|
|
71
71
|
"kind": "REFERENCE",
|
|
72
|
-
"description": "Current Row Node",
|
|
72
|
+
"description": "Current AG Grid Row Node",
|
|
73
73
|
"uiLabel": "Row Node",
|
|
74
74
|
"reference": "unknown"
|
|
75
75
|
}
|
|
@@ -107,7 +107,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
107
107
|
{
|
|
108
108
|
"name": "width",
|
|
109
109
|
"kind": "number",
|
|
110
|
-
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by
|
|
110
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
|
|
111
111
|
"uiLabel": "Width",
|
|
112
112
|
"isOptional": true
|
|
113
113
|
}
|
|
@@ -477,30 +477,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
477
477
|
"AdaptableColumn": {
|
|
478
478
|
"name": "AdaptableColumn",
|
|
479
479
|
"kind": "Interface",
|
|
480
|
-
"description": "Defines an Adaptable Column - created at run-time based on
|
|
480
|
+
"description": "Defines an Adaptable Column - created at run-time based on AG Grid column definition",
|
|
481
481
|
"properties": [
|
|
482
482
|
{
|
|
483
|
-
"name": "
|
|
483
|
+
"name": "aggregatable",
|
|
484
484
|
"kind": "boolean",
|
|
485
485
|
"description": "Is Column able to display aggregations (e.g. 'sum') when grouped",
|
|
486
486
|
"uiLabel": "Aggregatable"
|
|
487
487
|
},
|
|
488
488
|
{
|
|
489
|
-
"name": "
|
|
489
|
+
"name": "aggregationFunction",
|
|
490
490
|
"kind": "string",
|
|
491
491
|
"description": "Custom aggregation function for the Column",
|
|
492
492
|
"uiLabel": "Aggregation Function",
|
|
493
493
|
"isOptional": true
|
|
494
494
|
},
|
|
495
495
|
{
|
|
496
|
-
"name": "
|
|
496
|
+
"name": "availableAggregationFunctions",
|
|
497
497
|
"kind": "unknown",
|
|
498
498
|
"description": "Available aggregations for the Column",
|
|
499
499
|
"uiLabel": "Available Aggregation Functions",
|
|
500
500
|
"isOptional": true
|
|
501
501
|
},
|
|
502
502
|
{
|
|
503
|
-
"name": "
|
|
503
|
+
"name": "columnGroup",
|
|
504
504
|
"kind": "REFERENCE",
|
|
505
505
|
"description": "The parent column group, if the column belongs to one",
|
|
506
506
|
"uiLabel": "Column Group",
|
|
@@ -508,98 +508,98 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
508
508
|
"reference": "unknown"
|
|
509
509
|
},
|
|
510
510
|
{
|
|
511
|
-
"name": "
|
|
511
|
+
"name": "filterable",
|
|
512
512
|
"kind": "boolean",
|
|
513
513
|
"description": "Is Column able to be filtered",
|
|
514
514
|
"uiLabel": "Filterable"
|
|
515
515
|
},
|
|
516
516
|
{
|
|
517
|
-
"name": "
|
|
517
|
+
"name": "flex",
|
|
518
518
|
"kind": "number",
|
|
519
519
|
"description": "Flex details of the column",
|
|
520
520
|
"uiLabel": "Flex",
|
|
521
521
|
"isOptional": true
|
|
522
522
|
},
|
|
523
523
|
{
|
|
524
|
-
"name": "
|
|
524
|
+
"name": "groupable",
|
|
525
525
|
"kind": "boolean",
|
|
526
526
|
"description": "Can Column form a Row Group",
|
|
527
527
|
"uiLabel": "Groupable"
|
|
528
528
|
},
|
|
529
529
|
{
|
|
530
|
-
"name": "
|
|
530
|
+
"name": "hideable",
|
|
531
531
|
"kind": "boolean",
|
|
532
532
|
"description": "Can Column be removed from the grid",
|
|
533
533
|
"uiLabel": "Hideable"
|
|
534
534
|
},
|
|
535
535
|
{
|
|
536
|
-
"name": "
|
|
536
|
+
"name": "isExcludedFromQuickSearch",
|
|
537
537
|
"kind": "boolean",
|
|
538
538
|
"description": "Has colummn been excluded from Quick Search results",
|
|
539
539
|
"uiLabel": "Is Excluded From Quick Search"
|
|
540
540
|
},
|
|
541
541
|
{
|
|
542
|
-
"name": "
|
|
542
|
+
"name": "isFixed",
|
|
543
543
|
"kind": "boolean",
|
|
544
544
|
"description": "Is Column pinned or locked into position",
|
|
545
545
|
"uiLabel": "Is Fixed"
|
|
546
546
|
},
|
|
547
547
|
{
|
|
548
|
-
"name": "
|
|
548
|
+
"name": "isGrouped",
|
|
549
549
|
"kind": "boolean",
|
|
550
550
|
"description": "Is Column currently grouped",
|
|
551
551
|
"uiLabel": "Is Grouped"
|
|
552
552
|
},
|
|
553
553
|
{
|
|
554
|
-
"name": "
|
|
554
|
+
"name": "isPrimaryKey",
|
|
555
555
|
"kind": "boolean",
|
|
556
556
|
"description": "Is this the Primary Key column",
|
|
557
557
|
"uiLabel": "Is Primary Key"
|
|
558
558
|
},
|
|
559
559
|
{
|
|
560
|
-
"name": "
|
|
560
|
+
"name": "isSparkline",
|
|
561
561
|
"kind": "boolean",
|
|
562
562
|
"description": "Is it a Sparkline Column",
|
|
563
563
|
"uiLabel": "Is Sparkline"
|
|
564
564
|
},
|
|
565
565
|
{
|
|
566
|
-
"name": "
|
|
566
|
+
"name": "moveable",
|
|
567
567
|
"kind": "boolean",
|
|
568
568
|
"description": "Can Column be moved at run-time to a new position",
|
|
569
569
|
"uiLabel": "Moveable"
|
|
570
570
|
},
|
|
571
571
|
{
|
|
572
|
-
"name": "
|
|
572
|
+
"name": "pivotable",
|
|
573
573
|
"kind": "boolean",
|
|
574
574
|
"description": "Can Column be used in a Pivot Grid",
|
|
575
575
|
"uiLabel": "Pivotable"
|
|
576
576
|
},
|
|
577
577
|
{
|
|
578
|
-
"name": "
|
|
578
|
+
"name": "queryable",
|
|
579
579
|
"kind": "boolean",
|
|
580
580
|
"description": "Can the Column be in included in Queries / Expressions",
|
|
581
581
|
"uiLabel": "Queryable"
|
|
582
582
|
},
|
|
583
583
|
{
|
|
584
|
-
"name": "
|
|
584
|
+
"name": "readOnly",
|
|
585
585
|
"kind": "boolean",
|
|
586
586
|
"description": "Is column editable",
|
|
587
587
|
"uiLabel": "Read Only"
|
|
588
588
|
},
|
|
589
589
|
{
|
|
590
|
-
"name": "
|
|
590
|
+
"name": "sortable",
|
|
591
591
|
"kind": "boolean",
|
|
592
592
|
"description": "Is Column sortable",
|
|
593
593
|
"uiLabel": "Sortable"
|
|
594
594
|
},
|
|
595
595
|
{
|
|
596
|
-
"name": "
|
|
596
|
+
"name": "visible",
|
|
597
597
|
"kind": "boolean",
|
|
598
598
|
"description": "Is Column currently visible",
|
|
599
599
|
"uiLabel": "Visible"
|
|
600
600
|
},
|
|
601
601
|
{
|
|
602
|
-
"name": "
|
|
602
|
+
"name": "width",
|
|
603
603
|
"kind": "number",
|
|
604
604
|
"description": "Column width",
|
|
605
605
|
"uiLabel": "Width",
|
|
@@ -613,21 +613,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
613
613
|
"description": "Base class for Adaptable Column containing most important properties",
|
|
614
614
|
"properties": [
|
|
615
615
|
{
|
|
616
|
-
"name": "
|
|
616
|
+
"name": "columnId",
|
|
617
617
|
"kind": "string",
|
|
618
|
-
"description": "Name of Column in
|
|
618
|
+
"description": "Name of Column in AG Grid (e.g. field or colId)",
|
|
619
619
|
"uiLabel": "Column Id"
|
|
620
620
|
},
|
|
621
621
|
{
|
|
622
|
-
"name": "
|
|
622
|
+
"name": "dataType",
|
|
623
623
|
"kind": "unknown",
|
|
624
624
|
"description": "DataType of the column",
|
|
625
625
|
"uiLabel": "Data Type"
|
|
626
626
|
},
|
|
627
627
|
{
|
|
628
|
-
"name": "
|
|
628
|
+
"name": "friendlyName",
|
|
629
629
|
"kind": "string",
|
|
630
|
-
"description": "How Column is referred to in Adaptable UI;
|
|
630
|
+
"description": "How Column is referred to in Adaptable UI; `Caption` property in AG Grid",
|
|
631
631
|
"uiLabel": "Friendly Name"
|
|
632
632
|
}
|
|
633
633
|
]
|
|
@@ -841,21 +841,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
841
841
|
{
|
|
842
842
|
"name": "module",
|
|
843
843
|
"kind": "unknown",
|
|
844
|
-
"description": "Adaptable Module associated with (
|
|
844
|
+
"description": "Adaptable Module associated with (Adaptable) menu item.",
|
|
845
845
|
"uiLabel": "Module",
|
|
846
846
|
"isOptional": true
|
|
847
847
|
},
|
|
848
848
|
{
|
|
849
849
|
"name": "onClick",
|
|
850
850
|
"kind": "unknown",
|
|
851
|
-
"description": "Function to
|
|
851
|
+
"description": "Function to invoke when (custom) menu item is clicked",
|
|
852
852
|
"uiLabel": "On Click",
|
|
853
853
|
"isOptional": true
|
|
854
854
|
},
|
|
855
855
|
{
|
|
856
856
|
"name": "reduxAction",
|
|
857
857
|
"kind": "unknown",
|
|
858
|
-
"description": "Adaptable Redux Action to invoke when (
|
|
858
|
+
"description": "Adaptable Redux Action to invoke when (Adaptable) menu item is clicked",
|
|
859
859
|
"uiLabel": "Redux Action",
|
|
860
860
|
"isOptional": true
|
|
861
861
|
},
|
|
@@ -905,7 +905,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
905
905
|
"AdaptableOptions": {
|
|
906
906
|
"name": "AdaptableOptions",
|
|
907
907
|
"kind": "Interface",
|
|
908
|
-
"description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides
|
|
908
|
+
"description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides AG Grid, Predefined Config and other information required to ensure a full, rich user experience",
|
|
909
909
|
"properties": [
|
|
910
910
|
{
|
|
911
911
|
"name": "adaptableId",
|
|
@@ -937,7 +937,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
937
937
|
{
|
|
938
938
|
"name": "containerOptions",
|
|
939
939
|
"kind": "REFERENCE",
|
|
940
|
-
"description": "Options for setting the 'Div' elements in which AdapTable,
|
|
940
|
+
"description": "Options for setting the 'Div' elements in which AdapTable, AG Grid, popups and charts are placed",
|
|
941
941
|
"uiLabel": "Container Options",
|
|
942
942
|
"isOptional": true,
|
|
943
943
|
"reference": "ContainerOptions"
|
|
@@ -1134,7 +1134,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1134
1134
|
{
|
|
1135
1135
|
"name": "vendorGrid",
|
|
1136
1136
|
"kind": "unknown",
|
|
1137
|
-
"description": "
|
|
1137
|
+
"description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property (as `gridOptions` is a separate prop and AdapTable wires up everything)",
|
|
1138
1138
|
"uiLabel": "Vendor Grid",
|
|
1139
1139
|
"isOptional": true,
|
|
1140
1140
|
"defaultValue": "n/a (Mandatory)"
|
|
@@ -1154,14 +1154,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1154
1154
|
{
|
|
1155
1155
|
"name": "Inputs",
|
|
1156
1156
|
"kind": "unknown",
|
|
1157
|
-
"description": "Optional
|
|
1157
|
+
"description": "Optional Inputs that might be needed for evaluation",
|
|
1158
1158
|
"uiLabel": "Inputs",
|
|
1159
1159
|
"isOptional": true
|
|
1160
1160
|
},
|
|
1161
1161
|
{
|
|
1162
1162
|
"name": "PredicateId",
|
|
1163
1163
|
"kind": "string",
|
|
1164
|
-
"description": "Id of Predicate (e.g.
|
|
1164
|
+
"description": "Id of Predicate (e.g. `Equals`, `GreaterThan`)",
|
|
1165
1165
|
"uiLabel": "Predicate Id"
|
|
1166
1166
|
}
|
|
1167
1167
|
]
|
|
@@ -1213,13 +1213,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1213
1213
|
{
|
|
1214
1214
|
"name": "moduleScope",
|
|
1215
1215
|
"kind": "unknown",
|
|
1216
|
-
"description": "
|
|
1216
|
+
"description": "Modules where Predicate can run: 'filter', 'alert', 'conditionalstyle'",
|
|
1217
1217
|
"uiLabel": "Module Scope"
|
|
1218
1218
|
},
|
|
1219
1219
|
{
|
|
1220
1220
|
"name": "onlyQuickFilter",
|
|
1221
1221
|
"kind": "boolean",
|
|
1222
|
-
"description": "
|
|
1222
|
+
"description": "Display this predicate only in Quick Filter Bar (and NOT in Filter Form)",
|
|
1223
1223
|
"uiLabel": "Only Quick Filter",
|
|
1224
1224
|
"isOptional": true
|
|
1225
1225
|
},
|
|
@@ -1245,17 +1245,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1245
1245
|
"description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
|
|
1246
1246
|
"properties": [
|
|
1247
1247
|
{
|
|
1248
|
-
"name": "
|
|
1248
|
+
"name": "gridOptions",
|
|
1249
1249
|
"kind": "REFERENCE",
|
|
1250
|
-
"description": "
|
|
1251
|
-
"uiLabel": "
|
|
1252
|
-
"reference": "
|
|
1253
|
-
},
|
|
1254
|
-
{
|
|
1255
|
-
"name": "vendorGrid",
|
|
1256
|
-
"kind": "unknown",
|
|
1257
|
-
"description": "Instance of the underlying vendor grid (e.g. for AG Grid its the GridOptions object)",
|
|
1258
|
-
"uiLabel": "Vendor Grid"
|
|
1250
|
+
"description": "Underlying AG Grid instance",
|
|
1251
|
+
"uiLabel": "Grid Options",
|
|
1252
|
+
"reference": "unknown"
|
|
1259
1253
|
}
|
|
1260
1254
|
]
|
|
1261
1255
|
},
|
|
@@ -1384,49 +1378,49 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1384
1378
|
{
|
|
1385
1379
|
"name": "BackColor",
|
|
1386
1380
|
"kind": "string",
|
|
1387
|
-
"description": "Colour background of cell
|
|
1381
|
+
"description": "Colour background of cell: provide hex value or name",
|
|
1388
1382
|
"uiLabel": "Back Color",
|
|
1389
1383
|
"isOptional": true
|
|
1390
1384
|
},
|
|
1391
1385
|
{
|
|
1392
1386
|
"name": "BorderColor",
|
|
1393
1387
|
"kind": "string",
|
|
1394
|
-
"description": "Colour of cell border
|
|
1388
|
+
"description": "Colour of cell border: provide hex value or name",
|
|
1395
1389
|
"uiLabel": "Border Color",
|
|
1396
1390
|
"isOptional": true
|
|
1397
1391
|
},
|
|
1398
1392
|
{
|
|
1399
1393
|
"name": "ClassName",
|
|
1400
1394
|
"kind": "string",
|
|
1401
|
-
"description": "
|
|
1395
|
+
"description": "Existing CSS Class; use instead of setting other object properties",
|
|
1402
1396
|
"uiLabel": "Class Name",
|
|
1403
1397
|
"isOptional": true
|
|
1404
1398
|
},
|
|
1405
1399
|
{
|
|
1406
1400
|
"name": "FontSize",
|
|
1407
1401
|
"kind": "unknown",
|
|
1408
|
-
"description": "Size of font:
|
|
1402
|
+
"description": "Size of font: `XSmall`, `Small`, `Medium`, `Large` or `XLarge`",
|
|
1409
1403
|
"uiLabel": "Font Size",
|
|
1410
1404
|
"isOptional": true
|
|
1411
1405
|
},
|
|
1412
1406
|
{
|
|
1413
1407
|
"name": "FontStyle",
|
|
1414
1408
|
"kind": "unknown",
|
|
1415
|
-
"description": "Style of
|
|
1409
|
+
"description": "Style of font: `Normal` or `Italic`",
|
|
1416
1410
|
"uiLabel": "Font Style",
|
|
1417
1411
|
"isOptional": true
|
|
1418
1412
|
},
|
|
1419
1413
|
{
|
|
1420
1414
|
"name": "FontWeight",
|
|
1421
1415
|
"kind": "unknown",
|
|
1422
|
-
"description": "
|
|
1416
|
+
"description": "Weight of font: `Normal` or `Bold`",
|
|
1423
1417
|
"uiLabel": "Font Weight",
|
|
1424
1418
|
"isOptional": true
|
|
1425
1419
|
},
|
|
1426
1420
|
{
|
|
1427
1421
|
"name": "ForeColor",
|
|
1428
1422
|
"kind": "string",
|
|
1429
|
-
"description": "Font colour in cell
|
|
1423
|
+
"description": "Font colour in cell: provide hex value or name",
|
|
1430
1424
|
"uiLabel": "Fore Color",
|
|
1431
1425
|
"isOptional": true
|
|
1432
1426
|
}
|
|
@@ -1437,6 +1431,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1437
1431
|
"kind": "Interface",
|
|
1438
1432
|
"description": "Used for creating User (i.e. Custom) Themes",
|
|
1439
1433
|
"properties": [
|
|
1434
|
+
{
|
|
1435
|
+
"name": "AgGridClassName",
|
|
1436
|
+
"kind": "string",
|
|
1437
|
+
"description": "Ag Grid theme to apply when loading theme",
|
|
1438
|
+
"uiLabel": "Ag Grid Class Name",
|
|
1439
|
+
"isOptional": true
|
|
1440
|
+
},
|
|
1440
1441
|
{
|
|
1441
1442
|
"name": "Description",
|
|
1442
1443
|
"kind": "string",
|
|
@@ -1452,7 +1453,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1452
1453
|
{
|
|
1453
1454
|
"name": "VendorGridClassName",
|
|
1454
1455
|
"kind": "string",
|
|
1455
|
-
"description": "
|
|
1456
|
+
"description": "deprecated use `AgGridClassName` property instead",
|
|
1456
1457
|
"uiLabel": "Vendor Grid Class Name",
|
|
1457
1458
|
"isOptional": true
|
|
1458
1459
|
}
|
|
@@ -1823,7 +1824,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1823
1824
|
},
|
|
1824
1825
|
{
|
|
1825
1826
|
"name": "MessageText",
|
|
1826
|
-
"kind": "
|
|
1827
|
+
"kind": "string",
|
|
1827
1828
|
"description": "Alert Message - can be string or function; if not provided AdapTable creates dynamically using Rule & Scope",
|
|
1828
1829
|
"uiLabel": "Message Text",
|
|
1829
1830
|
"isOptional": true
|
|
@@ -1908,7 +1909,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1908
1909
|
"AlertState": {
|
|
1909
1910
|
"name": "AlertState",
|
|
1910
1911
|
"kind": "Interface",
|
|
1911
|
-
"description": "Predefined Configuration for Alert
|
|
1912
|
+
"description": "Predefined Configuration for Alert Module",
|
|
1912
1913
|
"properties": [
|
|
1913
1914
|
{
|
|
1914
1915
|
"name": "AlertDefinitions",
|
|
@@ -2030,7 +2031,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2030
2031
|
"ApplicationState": {
|
|
2031
2032
|
"name": "ApplicationState",
|
|
2032
2033
|
"kind": "Interface",
|
|
2033
|
-
"description": "Predefined Configuration for the Application
|
|
2034
|
+
"description": "Predefined Configuration for the Application Module",
|
|
2034
2035
|
"properties": [
|
|
2035
2036
|
{
|
|
2036
2037
|
"name": "ApplicationDataEntries",
|
|
@@ -2087,6 +2088,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2087
2088
|
}
|
|
2088
2089
|
]
|
|
2089
2090
|
},
|
|
2091
|
+
"BulkUpdatePermittedValues": {
|
|
2092
|
+
"name": "BulkUpdatePermittedValues",
|
|
2093
|
+
"kind": "Interface",
|
|
2094
|
+
"description": "User to define permitted values when updating cells via bulk update"
|
|
2095
|
+
},
|
|
2090
2096
|
"ButtonStyle": {
|
|
2091
2097
|
"name": "ButtonStyle",
|
|
2092
2098
|
"kind": "Interface",
|
|
@@ -2212,12 +2218,30 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2212
2218
|
"description": "Returns all the references in the AdaptableState of the given CalculatedColumn",
|
|
2213
2219
|
"uiLabel": "Get Calculated Column Module References"
|
|
2214
2220
|
},
|
|
2221
|
+
{
|
|
2222
|
+
"name": "getCalculatedColumnsReferencingColumnId",
|
|
2223
|
+
"kind": "function",
|
|
2224
|
+
"description": "Returns all Calculated Columns whose Expression contains the ColumnId",
|
|
2225
|
+
"uiLabel": "Get Calculated Columns Referencing Column Id"
|
|
2226
|
+
},
|
|
2215
2227
|
{
|
|
2216
2228
|
"name": "getCalculatedColumnState",
|
|
2217
2229
|
"kind": "function",
|
|
2218
2230
|
"description": "Retrieves Calculated Column section from Adaptable State",
|
|
2219
2231
|
"uiLabel": "Get Calculated Column State"
|
|
2220
2232
|
},
|
|
2233
|
+
{
|
|
2234
|
+
"name": "getReferencedColumnIdsForCalculatedColumn",
|
|
2235
|
+
"kind": "function",
|
|
2236
|
+
"description": "Gets any ColumnIds referenced in a Calculated Column",
|
|
2237
|
+
"uiLabel": "Get Referenced Column Ids For Calculated Column"
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"name": "getReferencedColumnIdsForCalculatedColumnId",
|
|
2241
|
+
"kind": "function",
|
|
2242
|
+
"description": "Gets any ColumnIds referenced in a Calculated Column",
|
|
2243
|
+
"uiLabel": "Get Referenced Column Ids For Calculated Column Id"
|
|
2244
|
+
},
|
|
2221
2245
|
{
|
|
2222
2246
|
"name": "showCalculatedColumnPopup",
|
|
2223
2247
|
"kind": "function",
|
|
@@ -2251,7 +2275,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2251
2275
|
"CalculatedColumnState": {
|
|
2252
2276
|
"name": "CalculatedColumnState",
|
|
2253
2277
|
"kind": "Interface",
|
|
2254
|
-
"description": "Predefined Configuration for Calculated Column
|
|
2278
|
+
"description": "Predefined Configuration for Calculated Column Module",
|
|
2255
2279
|
"properties": [
|
|
2256
2280
|
{
|
|
2257
2281
|
"name": "CalculatedColumns",
|
|
@@ -2524,6 +2548,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2524
2548
|
"description": "Returns all Aggregatable Columns",
|
|
2525
2549
|
"uiLabel": "Get Aggregetable Columns"
|
|
2526
2550
|
},
|
|
2551
|
+
{
|
|
2552
|
+
"name": "getAgGridColumnFieldForAdaptableColumn",
|
|
2553
|
+
"kind": "function",
|
|
2554
|
+
"description": "Retrieves AG Grid's field property for the column",
|
|
2555
|
+
"uiLabel": "Get Ag Grid Column Field For Adaptable Column"
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
"name": "getAgGridColumnForAdaptableColumn",
|
|
2559
|
+
"kind": "function",
|
|
2560
|
+
"description": "Retrieves AG Grid's column for an Adaptable column",
|
|
2561
|
+
"uiLabel": "Get Ag Grid Column For Adaptable Column"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"name": "getAgGridColumnType",
|
|
2565
|
+
"kind": "function",
|
|
2566
|
+
"description": "Retrieves 'ColumnType' property for a given Column",
|
|
2567
|
+
"uiLabel": "Get Ag Grid Column Type"
|
|
2568
|
+
},
|
|
2527
2569
|
{
|
|
2528
2570
|
"name": "getAllColumnFriendlyNames",
|
|
2529
2571
|
"kind": "function",
|
|
@@ -2710,18 +2752,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2710
2752
|
"description": "Returns all string Columns",
|
|
2711
2753
|
"uiLabel": "Get String Columns"
|
|
2712
2754
|
},
|
|
2713
|
-
{
|
|
2714
|
-
"name": "getVendorColumnType",
|
|
2715
|
-
"kind": "function",
|
|
2716
|
-
"description": "Retrieves 'ColumnType' property for a given Column",
|
|
2717
|
-
"uiLabel": "Get Vendor Column Type"
|
|
2718
|
-
},
|
|
2719
|
-
{
|
|
2720
|
-
"name": "getVendorGridColumnFieldForColumn",
|
|
2721
|
-
"kind": "function",
|
|
2722
|
-
"description": "Retrieves the field property for the column",
|
|
2723
|
-
"uiLabel": "Get Vendor Grid Column Field For Column"
|
|
2724
|
-
},
|
|
2725
2755
|
{
|
|
2726
2756
|
"name": "getVisibleColumns",
|
|
2727
2757
|
"kind": "function",
|
|
@@ -2752,6 +2782,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2752
2782
|
"description": "Is Column a Calculated Column",
|
|
2753
2783
|
"uiLabel": "Is Calculated Column"
|
|
2754
2784
|
},
|
|
2785
|
+
{
|
|
2786
|
+
"name": "isColumnReferencedInExpression",
|
|
2787
|
+
"kind": "function",
|
|
2788
|
+
"description": "Checks if a column is referenced in a given Expression",
|
|
2789
|
+
"uiLabel": "Is Column Referenced In Expression"
|
|
2790
|
+
},
|
|
2755
2791
|
{
|
|
2756
2792
|
"name": "isDateColumn",
|
|
2757
2793
|
"kind": "function",
|
|
@@ -2834,12 +2870,39 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2834
2870
|
{
|
|
2835
2871
|
"name": "Predicate",
|
|
2836
2872
|
"kind": "REFERENCE",
|
|
2837
|
-
"description": "
|
|
2873
|
+
"description": "`AdaptablePredicate` which AdaptableQL will evaluate when the Filter is run",
|
|
2838
2874
|
"uiLabel": "Predicate",
|
|
2839
2875
|
"reference": "unknown"
|
|
2840
2876
|
}
|
|
2841
2877
|
]
|
|
2842
2878
|
},
|
|
2879
|
+
"ColumnMenuContext": {
|
|
2880
|
+
"name": "ColumnMenuContext",
|
|
2881
|
+
"kind": "Interface",
|
|
2882
|
+
"description": "Provides full details about current Column where Column Header Menu will appear",
|
|
2883
|
+
"properties": [
|
|
2884
|
+
{
|
|
2885
|
+
"name": "adaptableColumn",
|
|
2886
|
+
"kind": "REFERENCE",
|
|
2887
|
+
"description": "Current Adaptable Column",
|
|
2888
|
+
"uiLabel": "Adaptable Column",
|
|
2889
|
+
"reference": "AdaptableColumn"
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
"name": "agGridColumn",
|
|
2893
|
+
"kind": "REFERENCE",
|
|
2894
|
+
"description": "Current AG Grid Column",
|
|
2895
|
+
"uiLabel": "Ag Grid Column",
|
|
2896
|
+
"reference": "unknown"
|
|
2897
|
+
},
|
|
2898
|
+
{
|
|
2899
|
+
"name": "isRowGroupColumn",
|
|
2900
|
+
"kind": "boolean",
|
|
2901
|
+
"description": "Whether current Column is Row Group",
|
|
2902
|
+
"uiLabel": "Is Row Group Column"
|
|
2903
|
+
}
|
|
2904
|
+
]
|
|
2905
|
+
},
|
|
2843
2906
|
"ColumnSort": {
|
|
2844
2907
|
"name": "ColumnSort",
|
|
2845
2908
|
"kind": "Interface",
|
|
@@ -2864,18 +2927,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2864
2927
|
"kind": "Interface",
|
|
2865
2928
|
"description": "Comparer object for Column Values - used for custom sorting",
|
|
2866
2929
|
"properties": [
|
|
2867
|
-
{
|
|
2868
|
-
"name": "columnId",
|
|
2869
|
-
"kind": "string",
|
|
2870
|
-
"description": "Column for which to compare values",
|
|
2871
|
-
"uiLabel": "Column Id"
|
|
2872
|
-
},
|
|
2873
2930
|
{
|
|
2874
2931
|
"name": "comparer",
|
|
2875
2932
|
"kind": "REFERENCE",
|
|
2876
2933
|
"description": "Comparer function to use",
|
|
2877
2934
|
"uiLabel": "Comparer",
|
|
2878
2935
|
"reference": "AdaptableComparerFunction"
|
|
2936
|
+
},
|
|
2937
|
+
{
|
|
2938
|
+
"name": "scope",
|
|
2939
|
+
"kind": "REFERENCE",
|
|
2940
|
+
"description": "Column for which to compare values",
|
|
2941
|
+
"uiLabel": "Scope",
|
|
2942
|
+
"reference": "AdaptableScope"
|
|
2879
2943
|
}
|
|
2880
2944
|
]
|
|
2881
2945
|
},
|
|
@@ -3032,7 +3096,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3032
3096
|
"ConditionalStyleState": {
|
|
3033
3097
|
"name": "ConditionalStyleState",
|
|
3034
3098
|
"kind": "Interface",
|
|
3035
|
-
"description": "Predefined Configuration for the Conditional Style
|
|
3099
|
+
"description": "Predefined Configuration for the Conditional Style Module",
|
|
3036
3100
|
"properties": [
|
|
3037
3101
|
{
|
|
3038
3102
|
"name": "ConditionalStyles",
|
|
@@ -3300,6 +3364,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3300
3364
|
"gridInfo": "item",
|
|
3301
3365
|
"defaultValue": ""adaptable""
|
|
3302
3366
|
},
|
|
3367
|
+
{
|
|
3368
|
+
"name": "agGridContainer",
|
|
3369
|
+
"kind": "unknown",
|
|
3370
|
+
"description": "Div containing AG Grid instance - string Id or HTMLElement",
|
|
3371
|
+
"uiLabel": "Ag Grid Container",
|
|
3372
|
+
"isOptional": true,
|
|
3373
|
+
"gridInfo": "item",
|
|
3374
|
+
"defaultValue": ""grid""
|
|
3375
|
+
},
|
|
3376
|
+
{
|
|
3377
|
+
"name": "agGridContainerWaitTimeout",
|
|
3378
|
+
"kind": "number",
|
|
3379
|
+
"description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by React or Angular Wrappers)",
|
|
3380
|
+
"uiLabel": "Ag Grid Container Wait Timeout",
|
|
3381
|
+
"isOptional": true,
|
|
3382
|
+
"gridInfo": "item",
|
|
3383
|
+
"defaultValue": "60s"
|
|
3384
|
+
},
|
|
3303
3385
|
{
|
|
3304
3386
|
"name": "alertContainer",
|
|
3305
3387
|
"kind": "unknown",
|
|
@@ -3335,24 +3417,92 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3335
3417
|
"isOptional": true,
|
|
3336
3418
|
"gridInfo": "item",
|
|
3337
3419
|
"defaultValue": "undefined"
|
|
3420
|
+
}
|
|
3421
|
+
]
|
|
3422
|
+
},
|
|
3423
|
+
"ContextMenuContext": {
|
|
3424
|
+
"name": "ContextMenuContext",
|
|
3425
|
+
"kind": "Interface",
|
|
3426
|
+
"description": "Provides full details about current cell (and selected cells) where Context Menu will appear",
|
|
3427
|
+
"properties": [
|
|
3428
|
+
{
|
|
3429
|
+
"name": "adaptableApi",
|
|
3430
|
+
"kind": "REFERENCE",
|
|
3431
|
+
"description": "The Adaptable Api - included as a convenience",
|
|
3432
|
+
"uiLabel": "Adaptable Api",
|
|
3433
|
+
"reference": "AdaptableApi"
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
"name": "adaptableColumn",
|
|
3437
|
+
"kind": "REFERENCE",
|
|
3438
|
+
"description": "Current Adaptable Column",
|
|
3439
|
+
"uiLabel": "Adaptable Column",
|
|
3440
|
+
"reference": "AdaptableColumn"
|
|
3441
|
+
},
|
|
3442
|
+
{
|
|
3443
|
+
"name": "agGridColumn",
|
|
3444
|
+
"kind": "REFERENCE",
|
|
3445
|
+
"description": "Current AG Grid Column",
|
|
3446
|
+
"uiLabel": "Ag Grid Column",
|
|
3447
|
+
"reference": "unknown"
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"name": "gridCell",
|
|
3451
|
+
"kind": "REFERENCE",
|
|
3452
|
+
"description": "Cell that has been clicked; contains cell value",
|
|
3453
|
+
"uiLabel": "Grid Cell",
|
|
3454
|
+
"reference": "GridCell"
|
|
3455
|
+
},
|
|
3456
|
+
{
|
|
3457
|
+
"name": "isGroupedNode",
|
|
3458
|
+
"kind": "boolean",
|
|
3459
|
+
"description": "Whether current AG Grid row node is grouped",
|
|
3460
|
+
"uiLabel": "Is Grouped Node"
|
|
3461
|
+
},
|
|
3462
|
+
{
|
|
3463
|
+
"name": "isRowGroupColumn",
|
|
3464
|
+
"kind": "boolean",
|
|
3465
|
+
"description": "Whether current Column is Row Grouped",
|
|
3466
|
+
"uiLabel": "Is Row Group Column"
|
|
3467
|
+
},
|
|
3468
|
+
{
|
|
3469
|
+
"name": "isSelectedCell",
|
|
3470
|
+
"kind": "boolean",
|
|
3471
|
+
"description": "Whether cell that was clicked is also currently selected",
|
|
3472
|
+
"uiLabel": "Is Selected Cell"
|
|
3338
3473
|
},
|
|
3339
3474
|
{
|
|
3340
|
-
"name": "
|
|
3475
|
+
"name": "isSingleSelectedColumn",
|
|
3476
|
+
"kind": "boolean",
|
|
3477
|
+
"description": "Whether Column that was clicked is only column with selected cells",
|
|
3478
|
+
"uiLabel": "Is Single Selected Column"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"name": "primaryKeyValue",
|
|
3341
3482
|
"kind": "unknown",
|
|
3342
|
-
"description": "
|
|
3343
|
-
"uiLabel": "
|
|
3344
|
-
"isOptional": true,
|
|
3345
|
-
"gridInfo": "item",
|
|
3346
|
-
"defaultValue": ""grid""
|
|
3483
|
+
"description": "Value of Primary Key column in current row",
|
|
3484
|
+
"uiLabel": "Primary Key Value"
|
|
3347
3485
|
},
|
|
3348
3486
|
{
|
|
3349
|
-
"name": "
|
|
3350
|
-
"kind": "
|
|
3351
|
-
"description": "
|
|
3352
|
-
"uiLabel": "
|
|
3353
|
-
"
|
|
3354
|
-
|
|
3355
|
-
|
|
3487
|
+
"name": "rowNode",
|
|
3488
|
+
"kind": "REFERENCE",
|
|
3489
|
+
"description": "Current AG Grid row node",
|
|
3490
|
+
"uiLabel": "Row Node",
|
|
3491
|
+
"reference": "unknown"
|
|
3492
|
+
},
|
|
3493
|
+
{
|
|
3494
|
+
"name": "selectedCellInfo",
|
|
3495
|
+
"kind": "REFERENCE",
|
|
3496
|
+
"description": "Currently selected cells in the grid",
|
|
3497
|
+
"uiLabel": "Selected Cell Info",
|
|
3498
|
+
"reference": "SelectedCellInfo"
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"name": "selectedRowInfo",
|
|
3502
|
+
"kind": "REFERENCE",
|
|
3503
|
+
"description": "Currently selected rows in the grid",
|
|
3504
|
+
"uiLabel": "Selected Row Info",
|
|
3505
|
+
"reference": "SelectedRowInfo"
|
|
3356
3506
|
}
|
|
3357
3507
|
]
|
|
3358
3508
|
},
|
|
@@ -3507,10 +3657,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3507
3657
|
}
|
|
3508
3658
|
]
|
|
3509
3659
|
},
|
|
3660
|
+
"CustomSortPermittedValues": {
|
|
3661
|
+
"name": "CustomSortPermittedValues",
|
|
3662
|
+
"kind": "Interface",
|
|
3663
|
+
"description": "Custom column values for custom sort."
|
|
3664
|
+
},
|
|
3510
3665
|
"CustomSortState": {
|
|
3511
3666
|
"name": "CustomSortState",
|
|
3512
3667
|
"kind": "Interface",
|
|
3513
|
-
"description": "Predefined Configuration for Custom Sort
|
|
3668
|
+
"description": "Predefined Configuration for Custom Sort Module",
|
|
3514
3669
|
"properties": [
|
|
3515
3670
|
{
|
|
3516
3671
|
"name": "CustomSorts",
|
|
@@ -4064,10 +4219,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4064
4219
|
"uiLabel": "Changed At"
|
|
4065
4220
|
},
|
|
4066
4221
|
{
|
|
4067
|
-
"name": "
|
|
4068
|
-
"kind": "
|
|
4069
|
-
"description": "
|
|
4070
|
-
"uiLabel": "Column
|
|
4222
|
+
"name": "column",
|
|
4223
|
+
"kind": "REFERENCE",
|
|
4224
|
+
"description": "Column in which cell is situated",
|
|
4225
|
+
"uiLabel": "Column",
|
|
4226
|
+
"reference": "AdaptableColumn"
|
|
4071
4227
|
},
|
|
4072
4228
|
{
|
|
4073
4229
|
"name": "newValue",
|
|
@@ -4097,7 +4253,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4097
4253
|
{
|
|
4098
4254
|
"name": "rowNode",
|
|
4099
4255
|
"kind": "REFERENCE",
|
|
4100
|
-
"description": "RowNode that contains the cell
|
|
4256
|
+
"description": "AG Grid RowNode that contains the cell",
|
|
4101
4257
|
"uiLabel": "Row Node",
|
|
4102
4258
|
"isOptional": true,
|
|
4103
4259
|
"reference": "unknown"
|
|
@@ -4169,10 +4325,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4169
4325
|
"defaultValue": "false"
|
|
4170
4326
|
},
|
|
4171
4327
|
{
|
|
4172
|
-
"name": "
|
|
4328
|
+
"name": "showDataChange",
|
|
4173
4329
|
"kind": "unknown",
|
|
4174
4330
|
"description": "Function enabling specific data changes to be included/excluded from the Data Change History",
|
|
4175
|
-
"uiLabel": "
|
|
4331
|
+
"uiLabel": "Show Data Change",
|
|
4176
4332
|
"isOptional": true,
|
|
4177
4333
|
"gridInfo": "item",
|
|
4178
4334
|
"defaultValue": "undefined (all data changes are logged)"
|
|
@@ -4275,7 +4431,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4275
4431
|
"DataSourceState": {
|
|
4276
4432
|
"name": "DataSourceState",
|
|
4277
4433
|
"kind": "Interface",
|
|
4278
|
-
"description": "Predefined Configuration for Data Source
|
|
4434
|
+
"description": "Predefined Configuration for Data Source Module",
|
|
4279
4435
|
"properties": [
|
|
4280
4436
|
{
|
|
4281
4437
|
"name": "CurrentDataSource",
|
|
@@ -4390,6 +4546,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4390
4546
|
}
|
|
4391
4547
|
]
|
|
4392
4548
|
},
|
|
4549
|
+
"EditLookUpPermittedValues": {
|
|
4550
|
+
"name": "EditLookUpPermittedValues",
|
|
4551
|
+
"kind": "Interface",
|
|
4552
|
+
"description": "Used to define permitted values for inline column editor"
|
|
4553
|
+
},
|
|
4393
4554
|
"EditOptions": {
|
|
4394
4555
|
"name": "EditOptions",
|
|
4395
4556
|
"kind": "Interface",
|
|
@@ -4407,7 +4568,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4407
4568
|
{
|
|
4408
4569
|
"name": "isCellEditable",
|
|
4409
4570
|
"kind": "unknown",
|
|
4410
|
-
"description": "Function which
|
|
4571
|
+
"description": "Function which checks if given Grid Cell is editable",
|
|
4411
4572
|
"uiLabel": "Is Cell Editable",
|
|
4412
4573
|
"isOptional": true
|
|
4413
4574
|
},
|
|
@@ -4887,7 +5048,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4887
5048
|
"ExportState": {
|
|
4888
5049
|
"name": "ExportState",
|
|
4889
5050
|
"kind": "Interface",
|
|
4890
|
-
"description": "Predefined Configuration for Export
|
|
5051
|
+
"description": "Predefined Configuration for Export Module",
|
|
4891
5052
|
"properties": [
|
|
4892
5053
|
{
|
|
4893
5054
|
"name": "CurrentDestination",
|
|
@@ -5228,7 +5389,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5228
5389
|
{
|
|
5229
5390
|
"name": "autoApplyFilter",
|
|
5230
5391
|
"kind": "boolean",
|
|
5231
|
-
"description": "Apply selected filters in Filter Form as soon as they are clicked; if false an Apply Filter button is displayed",
|
|
5392
|
+
"description": "Apply selected filters (in Filter Form or Quick Filter Bar) as soon as they are clicked; if false an Apply Filter button is displayed",
|
|
5232
5393
|
"uiLabel": "Auto Apply Filter",
|
|
5233
5394
|
"isOptional": true,
|
|
5234
5395
|
"gridInfo": "item",
|
|
@@ -5309,7 +5470,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5309
5470
|
{
|
|
5310
5471
|
"name": "hideQuickFilterDropdown",
|
|
5311
5472
|
"kind": "unknown",
|
|
5312
|
-
"description": "
|
|
5473
|
+
"description": "Hides the Dropdown in Quick Filter Bar for a given Column",
|
|
5313
5474
|
"uiLabel": "Hide Quick Filter Dropdown",
|
|
5314
5475
|
"isOptional": true,
|
|
5315
5476
|
"defaultValue": "undefined"
|
|
@@ -5317,7 +5478,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5317
5478
|
{
|
|
5318
5479
|
"name": "hideQuickFilterInput",
|
|
5319
5480
|
"kind": "unknown",
|
|
5320
|
-
"description": "
|
|
5481
|
+
"description": "Hides the Input in Quick Filter Bar for a given Column",
|
|
5321
5482
|
"uiLabel": "Hide Quick Filter Input",
|
|
5322
5483
|
"isOptional": true,
|
|
5323
5484
|
"defaultValue": "undefined"
|
|
@@ -5370,7 +5531,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5370
5531
|
{
|
|
5371
5532
|
"name": "systemFilters",
|
|
5372
5533
|
"kind": "REFERENCE",
|
|
5373
|
-
"description": "Which Adaptable System Filter Predicates are available
|
|
5534
|
+
"description": "Which Adaptable System Filter Predicates are available",
|
|
5374
5535
|
"uiLabel": "System Filters",
|
|
5375
5536
|
"isOptional": true,
|
|
5376
5537
|
"reference": "unknown"
|
|
@@ -5378,7 +5539,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5378
5539
|
{
|
|
5379
5540
|
"name": "useAdaptableFilterForm",
|
|
5380
5541
|
"kind": "unknown",
|
|
5381
|
-
"description": "Uses Adaptable's Filter Form in Column header menu for all columns if 'true' (the default) or those listed
|
|
5542
|
+
"description": "Uses Adaptable's Filter Form in Column header menu for all columns if 'true' (the default) or those listed, in preference to AG Grid's Filter Form",
|
|
5382
5543
|
"uiLabel": "Use Adaptable Filter Form",
|
|
5383
5544
|
"isOptional": true,
|
|
5384
5545
|
"defaultValue": "true"
|
|
@@ -5386,23 +5547,37 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5386
5547
|
{
|
|
5387
5548
|
"name": "useAdaptableQuickFilter",
|
|
5388
5549
|
"kind": "unknown",
|
|
5389
|
-
"description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed
|
|
5550
|
+
"description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed, in preference to AG Grid's Floating Filter",
|
|
5390
5551
|
"uiLabel": "Use Adaptable Quick Filter",
|
|
5391
5552
|
"isOptional": true,
|
|
5392
5553
|
"gridInfo": "item",
|
|
5393
5554
|
"defaultValue": "true"
|
|
5394
5555
|
},
|
|
5395
5556
|
{
|
|
5396
|
-
"name": "
|
|
5557
|
+
"name": "useAgGridFilterFormStyle",
|
|
5397
5558
|
"kind": "boolean",
|
|
5398
|
-
"description": "Styles Adaptable Filter Form to match
|
|
5399
|
-
"uiLabel": "Use
|
|
5559
|
+
"description": "Styles Adaptable Filter Form to match AG Grid's current styling",
|
|
5560
|
+
"uiLabel": "Use Ag Grid Filter Form Style",
|
|
5400
5561
|
"isOptional": true,
|
|
5401
5562
|
"gridInfo": "item",
|
|
5402
5563
|
"defaultValue": "true"
|
|
5403
5564
|
}
|
|
5404
5565
|
]
|
|
5405
5566
|
},
|
|
5567
|
+
"FilterPermittedValues": {
|
|
5568
|
+
"name": "FilterPermittedValues",
|
|
5569
|
+
"kind": "Interface",
|
|
5570
|
+
"description": "Used to define values inside the floating filter and floating filter (quick filter)",
|
|
5571
|
+
"properties": [
|
|
5572
|
+
{
|
|
5573
|
+
"name": "suppressFilterSearchBar",
|
|
5574
|
+
"kind": "boolean",
|
|
5575
|
+
"description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
|
|
5576
|
+
"uiLabel": "Suppress Filter Search Bar",
|
|
5577
|
+
"isOptional": true
|
|
5578
|
+
}
|
|
5579
|
+
]
|
|
5580
|
+
},
|
|
5406
5581
|
"FilterState": {
|
|
5407
5582
|
"name": "FilterState",
|
|
5408
5583
|
"kind": "Interface",
|
|
@@ -5418,7 +5593,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5418
5593
|
{
|
|
5419
5594
|
"name": "IsQuickFilterVisible",
|
|
5420
5595
|
"kind": "boolean",
|
|
5421
|
-
"description": "Whether to display Quick Filter Bar
|
|
5596
|
+
"description": "Whether to display Quick Filter Bar between Column Header and the Grid",
|
|
5422
5597
|
"uiLabel": "Is Quick Filter Visible",
|
|
5423
5598
|
"isOptional": true,
|
|
5424
5599
|
"defaultValue": "true"
|
|
@@ -5784,7 +5959,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5784
5959
|
"FormatColumnState": {
|
|
5785
5960
|
"name": "FormatColumnState",
|
|
5786
5961
|
"kind": "Interface",
|
|
5787
|
-
"description": "Predefined Configuration for Format Column
|
|
5962
|
+
"description": "Predefined Configuration for Format Column Module",
|
|
5788
5963
|
"properties": [
|
|
5789
5964
|
{
|
|
5790
5965
|
"name": "FormatColumns",
|
|
@@ -5946,7 +6121,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5946
6121
|
"FreeTextColumnState": {
|
|
5947
6122
|
"name": "FreeTextColumnState",
|
|
5948
6123
|
"kind": "Interface",
|
|
5949
|
-
"description": "Predefined Configuration for the Free Text Column
|
|
6124
|
+
"description": "Predefined Configuration for the Free Text Column Module",
|
|
5950
6125
|
"properties": [
|
|
5951
6126
|
{
|
|
5952
6127
|
"name": "FreeTextColumns",
|
|
@@ -5979,7 +6154,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5979
6154
|
"GeneralOptions": {
|
|
5980
6155
|
"name": "GeneralOptions",
|
|
5981
6156
|
"kind": "Interface",
|
|
5982
|
-
"description": "General options for configuring AdapTable including managing Primary Keys
|
|
6157
|
+
"description": "General options for configuring AdapTable including managing Primary Keys",
|
|
5983
6158
|
"properties": [
|
|
5984
6159
|
{
|
|
5985
6160
|
"name": "alternativeModuleNames",
|
|
@@ -6316,7 +6491,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6316
6491
|
{
|
|
6317
6492
|
"name": "addGridData",
|
|
6318
6493
|
"kind": "function",
|
|
6319
|
-
"description": "Adds rows to Adaptable (and
|
|
6494
|
+
"description": "Adds rows to Adaptable (and AG Grid)",
|
|
6320
6495
|
"uiLabel": "Add Grid Data"
|
|
6321
6496
|
},
|
|
6322
6497
|
{
|
|
@@ -6358,7 +6533,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6358
6533
|
{
|
|
6359
6534
|
"name": "deleteGridData",
|
|
6360
6535
|
"kind": "function",
|
|
6361
|
-
"description": "Deletes rows from Adaptable (and
|
|
6536
|
+
"description": "Deletes rows from Adaptable (and AG Grid)",
|
|
6362
6537
|
"uiLabel": "Delete Grid Data"
|
|
6363
6538
|
},
|
|
6364
6539
|
{
|
|
@@ -6412,13 +6587,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6412
6587
|
{
|
|
6413
6588
|
"name": "fireCellChangedEvent",
|
|
6414
6589
|
"kind": "function",
|
|
6415
|
-
"description": "Fires
|
|
6590
|
+
"description": "Fires Cell Changed Changed Event - when any data in AG Grid's dataset has changed",
|
|
6416
6591
|
"uiLabel": "Fire Cell Changed Event"
|
|
6417
6592
|
},
|
|
6418
6593
|
{
|
|
6419
6594
|
"name": "fireGridDataChangedEvent",
|
|
6420
6595
|
"kind": "function",
|
|
6421
|
-
"description": "Fires Grid Data Changed Event - when
|
|
6596
|
+
"description": "Fires Grid Data Changed Event - when a row has changed in AG Grid",
|
|
6422
6597
|
"uiLabel": "Fire Grid Data Changed Event"
|
|
6423
6598
|
},
|
|
6424
6599
|
{
|
|
@@ -6427,6 +6602,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6427
6602
|
"description": "Fires Search Changed Event - typically used to enable server searching and filtering",
|
|
6428
6603
|
"uiLabel": "Fire Search Changed Event"
|
|
6429
6604
|
},
|
|
6605
|
+
{
|
|
6606
|
+
"name": "getAgGridInstance",
|
|
6607
|
+
"kind": "function",
|
|
6608
|
+
"description": "Returns Ag Grid instance (passed into Adaptable Options at start-up)",
|
|
6609
|
+
"uiLabel": "Get Ag Grid Instance"
|
|
6610
|
+
},
|
|
6430
6611
|
{
|
|
6431
6612
|
"name": "getCellDisplayValue",
|
|
6432
6613
|
"kind": "function",
|
|
@@ -6571,12 +6752,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6571
6752
|
"description": "Returns all current Selected Rows in AdapTable",
|
|
6572
6753
|
"uiLabel": "Get Selected Row Info"
|
|
6573
6754
|
},
|
|
6574
|
-
{
|
|
6575
|
-
"name": "getVendorGrid",
|
|
6576
|
-
"kind": "function",
|
|
6577
|
-
"description": "Returns underlying Vendor Grid (object passed into Adaptable Options at start-up)",
|
|
6578
|
-
"uiLabel": "Get Vendor Grid"
|
|
6579
|
-
},
|
|
6580
6755
|
{
|
|
6581
6756
|
"name": "getVisibleColumnCount",
|
|
6582
6757
|
"kind": "function",
|
|
@@ -6778,7 +6953,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6778
6953
|
{
|
|
6779
6954
|
"name": "updateGridData",
|
|
6780
6955
|
"kind": "function",
|
|
6781
|
-
"description": "Updates Adaptable (and
|
|
6956
|
+
"description": "Updates Adaptable (and AG Grid) with rows that have changed",
|
|
6782
6957
|
"uiLabel": "Update Grid Data"
|
|
6783
6958
|
}
|
|
6784
6959
|
]
|
|
@@ -6789,10 +6964,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6789
6964
|
"description": "Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value",
|
|
6790
6965
|
"properties": [
|
|
6791
6966
|
{
|
|
6792
|
-
"name": "
|
|
6793
|
-
"kind": "
|
|
6967
|
+
"name": "column",
|
|
6968
|
+
"kind": "REFERENCE",
|
|
6794
6969
|
"description": "Column in which cell is situtated",
|
|
6795
|
-
"uiLabel": "Column
|
|
6970
|
+
"uiLabel": "Column",
|
|
6971
|
+
"reference": "AdaptableColumn"
|
|
6796
6972
|
},
|
|
6797
6973
|
{
|
|
6798
6974
|
"name": "displayValue",
|
|
@@ -7500,6 +7676,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7500
7676
|
"description": "Saves given Layout into Adaptable State",
|
|
7501
7677
|
"uiLabel": "Save Layout"
|
|
7502
7678
|
},
|
|
7679
|
+
{
|
|
7680
|
+
"name": "setColumnCaption",
|
|
7681
|
+
"kind": "function",
|
|
7682
|
+
"description": "Sets a new Caption / Header for a Column (this Layout only)",
|
|
7683
|
+
"uiLabel": "Set Column Caption"
|
|
7684
|
+
},
|
|
7503
7685
|
{
|
|
7504
7686
|
"name": "setLayout",
|
|
7505
7687
|
"kind": "function",
|
|
@@ -7602,7 +7784,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7602
7784
|
"LayoutState": {
|
|
7603
7785
|
"name": "LayoutState",
|
|
7604
7786
|
"kind": "Interface",
|
|
7605
|
-
"description": "Predefined Configuration for the Layout
|
|
7787
|
+
"description": "Predefined Configuration for the Layout Module",
|
|
7606
7788
|
"properties": [
|
|
7607
7789
|
{
|
|
7608
7790
|
"name": "CurrentLayout",
|
|
@@ -7674,92 +7856,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7674
7856
|
}
|
|
7675
7857
|
]
|
|
7676
7858
|
},
|
|
7677
|
-
"MenuContext": {
|
|
7678
|
-
"name": "MenuContext",
|
|
7679
|
-
"kind": "Interface",
|
|
7680
|
-
"description": "Provides full details about current Menu; used for both Column and Context Menus",
|
|
7681
|
-
"properties": [
|
|
7682
|
-
{
|
|
7683
|
-
"name": "adaptableApi",
|
|
7684
|
-
"kind": "REFERENCE",
|
|
7685
|
-
"description": "The Adaptable Api - included as a convenience",
|
|
7686
|
-
"uiLabel": "Adaptable Api",
|
|
7687
|
-
"reference": "AdaptableApi"
|
|
7688
|
-
},
|
|
7689
|
-
{
|
|
7690
|
-
"name": "adaptableColumn",
|
|
7691
|
-
"kind": "REFERENCE",
|
|
7692
|
-
"description": "Current Adaptable Column",
|
|
7693
|
-
"uiLabel": "Adaptable Column",
|
|
7694
|
-
"reference": "AdaptableColumn"
|
|
7695
|
-
},
|
|
7696
|
-
{
|
|
7697
|
-
"name": "gridCell",
|
|
7698
|
-
"kind": "REFERENCE",
|
|
7699
|
-
"description": "Cell that has been clicked; contains cell value",
|
|
7700
|
-
"uiLabel": "Grid Cell",
|
|
7701
|
-
"reference": "GridCell"
|
|
7702
|
-
},
|
|
7703
|
-
{
|
|
7704
|
-
"name": "isGroupedNode",
|
|
7705
|
-
"kind": "boolean",
|
|
7706
|
-
"description": "Whether current row node is grouped",
|
|
7707
|
-
"uiLabel": "Is Grouped Node"
|
|
7708
|
-
},
|
|
7709
|
-
{
|
|
7710
|
-
"name": "isRowGroupColumn",
|
|
7711
|
-
"kind": "boolean",
|
|
7712
|
-
"description": "Whether current Column is Row Group",
|
|
7713
|
-
"uiLabel": "Is Row Group Column"
|
|
7714
|
-
},
|
|
7715
|
-
{
|
|
7716
|
-
"name": "isSelectedCell",
|
|
7717
|
-
"kind": "boolean",
|
|
7718
|
-
"description": "Whether cell that was clicked is also currently selected",
|
|
7719
|
-
"uiLabel": "Is Selected Cell"
|
|
7720
|
-
},
|
|
7721
|
-
{
|
|
7722
|
-
"name": "isSingleSelectedColumn",
|
|
7723
|
-
"kind": "boolean",
|
|
7724
|
-
"description": "Whether Column that was clicked is only column with selected cells",
|
|
7725
|
-
"uiLabel": "Is Single Selected Column"
|
|
7726
|
-
},
|
|
7727
|
-
{
|
|
7728
|
-
"name": "primaryKeyValue",
|
|
7729
|
-
"kind": "unknown",
|
|
7730
|
-
"description": "Value of Primary Key column in current row",
|
|
7731
|
-
"uiLabel": "Primary Key Value"
|
|
7732
|
-
},
|
|
7733
|
-
{
|
|
7734
|
-
"name": "rowNode",
|
|
7735
|
-
"kind": "REFERENCE",
|
|
7736
|
-
"description": "Current AG Grid row node",
|
|
7737
|
-
"uiLabel": "Row Node",
|
|
7738
|
-
"reference": "unknown"
|
|
7739
|
-
},
|
|
7740
|
-
{
|
|
7741
|
-
"name": "selectedCellInfo",
|
|
7742
|
-
"kind": "REFERENCE",
|
|
7743
|
-
"description": "Currently selected cells in the grid",
|
|
7744
|
-
"uiLabel": "Selected Cell Info",
|
|
7745
|
-
"reference": "SelectedCellInfo"
|
|
7746
|
-
},
|
|
7747
|
-
{
|
|
7748
|
-
"name": "selectedRowInfo",
|
|
7749
|
-
"kind": "REFERENCE",
|
|
7750
|
-
"description": "Currently selected rows in the grid",
|
|
7751
|
-
"uiLabel": "Selected Row Info",
|
|
7752
|
-
"reference": "SelectedRowInfo"
|
|
7753
|
-
},
|
|
7754
|
-
{
|
|
7755
|
-
"name": "vendorColumn",
|
|
7756
|
-
"kind": "REFERENCE",
|
|
7757
|
-
"description": "Current Vendor Grid Column",
|
|
7758
|
-
"uiLabel": "Vendor Column",
|
|
7759
|
-
"reference": "unknown"
|
|
7760
|
-
}
|
|
7761
|
-
]
|
|
7762
|
-
},
|
|
7763
7859
|
"MenuOptions": {
|
|
7764
7860
|
"name": "MenuOptions",
|
|
7765
7861
|
"kind": "Interface",
|
|
@@ -7775,11 +7871,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7775
7871
|
{
|
|
7776
7872
|
"name": "columnMenuOrder",
|
|
7777
7873
|
"kind": "unknown",
|
|
7778
|
-
"description": "Order in which
|
|
7874
|
+
"description": "Order in which AG Grid, AdapTable and User Menu items will appear in Column Menu",
|
|
7779
7875
|
"uiLabel": "Column Menu Order",
|
|
7780
7876
|
"isOptional": true,
|
|
7781
7877
|
"gridInfo": "item",
|
|
7782
|
-
"defaultValue": "'
|
|
7878
|
+
"defaultValue": "'aggrid', 'adaptable', 'user'"
|
|
7783
7879
|
},
|
|
7784
7880
|
{
|
|
7785
7881
|
"name": "contextMenuItems",
|
|
@@ -7791,11 +7887,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7791
7887
|
{
|
|
7792
7888
|
"name": "contextMenuOrder",
|
|
7793
7889
|
"kind": "unknown",
|
|
7794
|
-
"description": "Order in which
|
|
7890
|
+
"description": "Order in which AG grid, AdapTable and User Menu items will appear in Context Menu",
|
|
7795
7891
|
"uiLabel": "Context Menu Order",
|
|
7796
7892
|
"isOptional": true,
|
|
7797
7893
|
"gridInfo": "item",
|
|
7798
|
-
"defaultValue": "'
|
|
7894
|
+
"defaultValue": "'aggrid', 'adaptable', 'user'"
|
|
7799
7895
|
},
|
|
7800
7896
|
{
|
|
7801
7897
|
"name": "showAdaptableColumnMenu",
|
|
@@ -7863,6 +7959,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7863
7959
|
"uiLabel": "Alert Forms",
|
|
7864
7960
|
"isOptional": true
|
|
7865
7961
|
},
|
|
7962
|
+
{
|
|
7963
|
+
"name": "alertMessageText",
|
|
7964
|
+
"kind": "unknown",
|
|
7965
|
+
"description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
|
|
7966
|
+
"uiLabel": "Alert Message Text",
|
|
7967
|
+
"isOptional": true
|
|
7968
|
+
},
|
|
7866
7969
|
{
|
|
7867
7970
|
"name": "cellHighlightDuration",
|
|
7868
7971
|
"kind": "number",
|
|
@@ -7963,6 +8066,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7963
8066
|
"defaultValue": "'BottomRight'",
|
|
7964
8067
|
"reference": "unknown"
|
|
7965
8068
|
},
|
|
8069
|
+
{
|
|
8070
|
+
"name": "showApplicationIcon",
|
|
8071
|
+
"kind": "boolean",
|
|
8072
|
+
"description": "Displays the application icon in Notifications (if provided in `UserInterfaceOptions`)",
|
|
8073
|
+
"uiLabel": "Show Application Icon",
|
|
8074
|
+
"isOptional": true,
|
|
8075
|
+
"defaultValue": "false"
|
|
8076
|
+
},
|
|
7966
8077
|
{
|
|
7967
8078
|
"name": "showProgressBar",
|
|
7968
8079
|
"kind": "boolean",
|
|
@@ -8252,6 +8363,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8252
8363
|
"kind": "Interface",
|
|
8253
8364
|
"description": "Internal State used by AdapTable for managing the OpenFin plugin"
|
|
8254
8365
|
},
|
|
8366
|
+
"PermittedValues": {
|
|
8367
|
+
"name": "PermittedValues",
|
|
8368
|
+
"kind": "Interface",
|
|
8369
|
+
"description": "Permitted/possible values, when column values can be selected (e.g. sort, bulk-update)",
|
|
8370
|
+
"properties": [
|
|
8371
|
+
{
|
|
8372
|
+
"name": "values",
|
|
8373
|
+
"kind": "unknown",
|
|
8374
|
+
"description": "Values to display: either hardcoded list or a function",
|
|
8375
|
+
"uiLabel": "Values",
|
|
8376
|
+
"isOptional": true
|
|
8377
|
+
}
|
|
8378
|
+
]
|
|
8379
|
+
},
|
|
8255
8380
|
"PluginsApi": {
|
|
8256
8381
|
"name": "PluginsApi",
|
|
8257
8382
|
"kind": "Interface",
|
|
@@ -8383,13 +8508,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8383
8508
|
"kind": "Interface",
|
|
8384
8509
|
"description": "This is the main Predefined Config interface which developers will populate at design-time",
|
|
8385
8510
|
"properties": [
|
|
8386
|
-
{
|
|
8387
|
-
"name": "ActionColumn",
|
|
8388
|
-
"kind": "unknown",
|
|
8389
|
-
"description": "",
|
|
8390
|
-
"uiLabel": "Action Column",
|
|
8391
|
-
"isOptional": true
|
|
8392
|
-
},
|
|
8393
8511
|
{
|
|
8394
8512
|
"name": "Alert",
|
|
8395
8513
|
"kind": "REFERENCE",
|
|
@@ -8414,13 +8532,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8414
8532
|
"isOptional": true,
|
|
8415
8533
|
"reference": "CalculatedColumnState"
|
|
8416
8534
|
},
|
|
8417
|
-
{
|
|
8418
|
-
"name": "CellSummary",
|
|
8419
|
-
"kind": "unknown",
|
|
8420
|
-
"description": "",
|
|
8421
|
-
"uiLabel": "Cell Summary",
|
|
8422
|
-
"isOptional": true
|
|
8423
|
-
},
|
|
8424
8535
|
{
|
|
8425
8536
|
"name": "Chart",
|
|
8426
8537
|
"kind": "REFERENCE",
|
|
@@ -8461,13 +8572,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8461
8572
|
"isOptional": true,
|
|
8462
8573
|
"reference": "DataSourceState"
|
|
8463
8574
|
},
|
|
8464
|
-
{
|
|
8465
|
-
"name": "Entitlements",
|
|
8466
|
-
"kind": "unknown",
|
|
8467
|
-
"description": "",
|
|
8468
|
-
"uiLabel": "Entitlements",
|
|
8469
|
-
"isOptional": true
|
|
8470
|
-
},
|
|
8471
8575
|
{
|
|
8472
8576
|
"name": "Export",
|
|
8473
8577
|
"kind": "REFERENCE",
|
|
@@ -8484,14 +8588,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8484
8588
|
"isOptional": true,
|
|
8485
8589
|
"reference": "FilterState"
|
|
8486
8590
|
},
|
|
8487
|
-
{
|
|
8488
|
-
"name": "FlashingCell",
|
|
8489
|
-
"kind": "REFERENCE",
|
|
8490
|
-
"description": "",
|
|
8491
|
-
"uiLabel": "Flashing Cell",
|
|
8492
|
-
"isOptional": true,
|
|
8493
|
-
"reference": "unknown"
|
|
8494
|
-
},
|
|
8495
8591
|
{
|
|
8496
8592
|
"name": "FormatColumn",
|
|
8497
8593
|
"kind": "REFERENCE",
|
|
@@ -8508,14 +8604,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8508
8604
|
"isOptional": true,
|
|
8509
8605
|
"reference": "FreeTextColumnState"
|
|
8510
8606
|
},
|
|
8511
|
-
{
|
|
8512
|
-
"name": "GradientColumn",
|
|
8513
|
-
"kind": "REFERENCE",
|
|
8514
|
-
"description": "",
|
|
8515
|
-
"uiLabel": "Gradient Column",
|
|
8516
|
-
"isOptional": true,
|
|
8517
|
-
"reference": "unknown"
|
|
8518
|
-
},
|
|
8519
8607
|
{
|
|
8520
8608
|
"name": "Layout",
|
|
8521
8609
|
"kind": "REFERENCE",
|
|
@@ -8524,14 +8612,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8524
8612
|
"isOptional": true,
|
|
8525
8613
|
"reference": "LayoutState"
|
|
8526
8614
|
},
|
|
8527
|
-
{
|
|
8528
|
-
"name": "PercentBar",
|
|
8529
|
-
"kind": "REFERENCE",
|
|
8530
|
-
"description": "",
|
|
8531
|
-
"uiLabel": "Percent Bar",
|
|
8532
|
-
"isOptional": true,
|
|
8533
|
-
"reference": "unknown"
|
|
8534
|
-
},
|
|
8535
8615
|
{
|
|
8536
8616
|
"name": "PlusMinus",
|
|
8537
8617
|
"kind": "REFERENCE",
|
|
@@ -8580,13 +8660,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8580
8660
|
"isOptional": true,
|
|
8581
8661
|
"reference": "SparklineColumnState"
|
|
8582
8662
|
},
|
|
8583
|
-
{
|
|
8584
|
-
"name": "SystemStatus",
|
|
8585
|
-
"kind": "unknown",
|
|
8586
|
-
"description": "",
|
|
8587
|
-
"uiLabel": "System Status",
|
|
8588
|
-
"isOptional": true
|
|
8589
|
-
},
|
|
8590
8663
|
{
|
|
8591
8664
|
"name": "Theme",
|
|
8592
8665
|
"kind": "REFERENCE",
|
|
@@ -8602,21 +8675,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8602
8675
|
"uiLabel": "Tool Panel",
|
|
8603
8676
|
"isOptional": true,
|
|
8604
8677
|
"reference": "ToolPanelState"
|
|
8605
|
-
},
|
|
8606
|
-
{
|
|
8607
|
-
"name": "UpdatedRow",
|
|
8608
|
-
"kind": "REFERENCE",
|
|
8609
|
-
"description": "",
|
|
8610
|
-
"uiLabel": "Updated Row",
|
|
8611
|
-
"isOptional": true,
|
|
8612
|
-
"reference": "unknown"
|
|
8613
|
-
},
|
|
8614
|
-
{
|
|
8615
|
-
"name": "UserInterface",
|
|
8616
|
-
"kind": "unknown",
|
|
8617
|
-
"description": "Section (only populated at Design Time) that manages UI-related elements in AdapTable",
|
|
8618
|
-
"uiLabel": "User Interface",
|
|
8619
|
-
"isOptional": true
|
|
8620
8678
|
}
|
|
8621
8679
|
]
|
|
8622
8680
|
},
|
|
@@ -9017,19 +9075,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9017
9075
|
"QuickSearchState": {
|
|
9018
9076
|
"name": "QuickSearchState",
|
|
9019
9077
|
"kind": "Interface",
|
|
9020
|
-
"description": "Predefined Configuration for Quick Search
|
|
9078
|
+
"description": "Predefined Configuration for Quick Search Module",
|
|
9021
9079
|
"properties": [
|
|
9022
9080
|
{
|
|
9023
9081
|
"name": "QuickSearchText",
|
|
9024
9082
|
"kind": "string",
|
|
9025
|
-
"description": "Quick Search
|
|
9083
|
+
"description": "Last Quick Search that was run (and will run again at start up)",
|
|
9026
9084
|
"uiLabel": "Quick Search Text",
|
|
9027
9085
|
"isOptional": true
|
|
9028
9086
|
},
|
|
9029
9087
|
{
|
|
9030
9088
|
"name": "Style",
|
|
9031
9089
|
"kind": "REFERENCE",
|
|
9032
|
-
"description": "Style to use
|
|
9090
|
+
"description": "Style to use to highlight matching cells - uses common `AdaptableStyle` object",
|
|
9033
9091
|
"uiLabel": "Style",
|
|
9034
9092
|
"isOptional": true,
|
|
9035
9093
|
"reference": "AdaptableStyle"
|
|
@@ -9448,7 +9506,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9448
9506
|
"ScheduleState": {
|
|
9449
9507
|
"name": "ScheduleState",
|
|
9450
9508
|
"kind": "Interface",
|
|
9451
|
-
"description": "Predefined Configuration for the Schedule
|
|
9509
|
+
"description": "Predefined Configuration for the Schedule Module",
|
|
9452
9510
|
"properties": [
|
|
9453
9511
|
{
|
|
9454
9512
|
"name": "Glue42Schedules",
|
|
@@ -10149,7 +10207,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10149
10207
|
{
|
|
10150
10208
|
"name": "Width",
|
|
10151
10209
|
"kind": "number",
|
|
10152
|
-
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by
|
|
10210
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
|
|
10153
10211
|
"uiLabel": "Width",
|
|
10154
10212
|
"isOptional": true
|
|
10155
10213
|
}
|
|
@@ -10346,7 +10404,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10346
10404
|
{
|
|
10347
10405
|
"name": "fireTeamSharingEntityChangedEvent",
|
|
10348
10406
|
"kind": "function",
|
|
10349
|
-
"description": "Fires the Team
|
|
10407
|
+
"description": "Fires the Team Sharing Entity Changed Event",
|
|
10350
10408
|
"uiLabel": "Fire Team Sharing Entity Changed Event"
|
|
10351
10409
|
},
|
|
10352
10410
|
{
|
|
@@ -10511,13 +10569,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10511
10569
|
{
|
|
10512
10570
|
"name": "loadDarkTheme",
|
|
10513
10571
|
"kind": "function",
|
|
10514
|
-
"description": "Sets AdapTable Dark Theme - updates
|
|
10572
|
+
"description": "Sets AdapTable Dark Theme - updates the AG Grid theme to match",
|
|
10515
10573
|
"uiLabel": "Load Dark Theme"
|
|
10516
10574
|
},
|
|
10517
10575
|
{
|
|
10518
10576
|
"name": "loadLightTheme",
|
|
10519
10577
|
"kind": "function",
|
|
10520
|
-
"description": "Sets AdapTable Light Theme - updates
|
|
10578
|
+
"description": "Sets AdapTable Light Theme - updates the AG Grid theme to match",
|
|
10521
10579
|
"uiLabel": "Load Light Theme"
|
|
10522
10580
|
},
|
|
10523
10581
|
{
|
|
@@ -10757,7 +10815,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10757
10815
|
"description": "Order of displayed ToolPanels in Sidebar",
|
|
10758
10816
|
"uiLabel": "Tool Panel Order",
|
|
10759
10817
|
"isOptional": true,
|
|
10760
|
-
"defaultValue": "['filters', 'columns', '
|
|
10818
|
+
"defaultValue": "['filters', 'columns', 'adaptable']"
|
|
10761
10819
|
},
|
|
10762
10820
|
{
|
|
10763
10821
|
"name": "width",
|
|
@@ -11002,7 +11060,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11002
11060
|
"UserMenuItem": {
|
|
11003
11061
|
"name": "UserMenuItem",
|
|
11004
11062
|
"kind": "Interface",
|
|
11005
|
-
"description": "
|
|
11063
|
+
"description": "Menu Item created at design-time which is added to Column Header or Context Menu, and can contain sub items",
|
|
11006
11064
|
"properties": [
|
|
11007
11065
|
{
|
|
11008
11066
|
"name": "disabled",
|
|
@@ -11021,7 +11079,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11021
11079
|
{
|
|
11022
11080
|
"name": "icon",
|
|
11023
11081
|
"kind": "string",
|
|
11024
|
-
"description": "Optional icon to show in the Menu Item",
|
|
11082
|
+
"description": "Optional icon to show in the Column Menu Item",
|
|
11025
11083
|
"uiLabel": "Icon",
|
|
11026
11084
|
"isOptional": true
|
|
11027
11085
|
},
|