@adaptabletools/adaptable 10.0.4-canary.5 → 11.0.0-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/base.css +19 -15
- package/bundle.cjs.js +121 -115
- package/index.css +20 -17
- package/package.json +32 -32
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +9 -4
- package/src/AdaptableOptions/AdaptableOptions.d.ts +13 -2
- package/src/AdaptableOptions/ContainerOptions.d.ts +0 -7
- package/src/AdaptableOptions/DashboardOptions.d.ts +7 -9
- package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
- package/src/AdaptableOptions/FlashingCellOptions.d.ts +31 -0
- package/src/AdaptableOptions/{ChartPluginOptions.js → FlashingCellOptions.js} +0 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +2 -2
- package/src/AdaptableOptions/NotificationsOptions.d.ts +0 -7
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +14 -2
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +1 -1
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -15
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +5 -0
- package/src/Api/AdaptableApi.d.ts +6 -6
- package/src/Api/ChartingApi.d.ts +9 -0
- package/src/Api/{ChartApi.js → ChartingApi.js} +0 -0
- package/src/Api/ColumnApi.d.ts +11 -1
- package/src/Api/ConfigApi.d.ts +0 -12
- package/src/Api/EventApi.d.ts +3 -3
- package/src/Api/Events/AdaptableReady.d.ts +1 -1
- package/src/Api/Events/FlashingCellDisplayed.d.ts +2 -2
- package/src/Api/Events/SearchChanged.d.ts +1 -1
- package/src/Api/FlashingCellApi.d.ts +35 -24
- package/src/Api/GridApi.d.ts +3 -3
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +1 -1
- package/src/Api/Implementation/ChartingApiImpl.d.ts +5 -0
- package/src/Api/Implementation/ChartingApiImpl.js +10 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ColumnApiImpl.js +9 -3
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ConfigApiImpl.js +0 -16
- package/src/Api/Implementation/DashboardApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +8 -4
- package/src/Api/Implementation/FlashingCellApiImpl.js +42 -29
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
- package/src/Api/Implementation/GridApiImpl.d.ts +3 -3
- package/src/Api/Implementation/GridApiImpl.js +5 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +0 -5
- package/src/Api/Implementation/InternalApiImpl.js +1 -15
- package/src/Api/Implementation/LayoutApiImpl.js +1 -1
- package/src/Api/Implementation/PluginsApiImpl.d.ts +0 -2
- package/src/Api/Implementation/PluginsApiImpl.js +0 -6
- package/src/Api/Implementation/PlusMinusApiImpl.js +1 -1
- package/src/Api/Implementation/QueryApiImpl.js +1 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/InternalApi.d.ts +0 -5
- package/src/Api/PluginsApi.d.ts +0 -2
- package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +38 -38
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/Common/Menu.d.ts +15 -19
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +4 -0
- package/src/PredefinedConfig/Common/Types.d.ts +5 -5
- package/src/PredefinedConfig/Common/Types.js +0 -2
- package/src/PredefinedConfig/DashboardState.d.ts +4 -4
- package/src/PredefinedConfig/FlashingCellState.d.ts +16 -20
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
- package/src/PredefinedConfig/SystemState.d.ts +0 -4
- package/src/PredefinedConfig/ThemeState.d.ts +2 -1
- package/src/Redux/ActionsReducers/DashboardRedux.d.ts +0 -7
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -12
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +0 -2
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +0 -12
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -21
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +1 -2
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
- package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
- package/src/Redux/Store/AdaptableStore.js +21 -21
- package/src/Strategy/AdaptableModuleBase.d.ts +1 -1
- package/src/Strategy/AdaptableModuleBase.js +0 -3
- package/src/Strategy/AlertModule.js +2 -2
- package/src/Strategy/CalculatedColumnModule.js +17 -12
- package/src/Strategy/ChartingModule.d.ts +7 -0
- package/src/Strategy/ChartingModule.js +15 -0
- package/src/Strategy/ConditionalStyleModule.js +1 -1
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/FilterModule.js +3 -2
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +35 -19
- package/src/Strategy/FormatColumnModule.js +2 -2
- package/src/Strategy/Interface/IModule.d.ts +0 -1
- package/src/Strategy/LayoutModule.js +15 -3
- package/src/Strategy/QueryModule.d.ts +1 -1
- package/src/Strategy/QueryModule.js +1 -3
- package/src/Strategy/SetingsPanelModule.d.ts +1 -0
- package/src/Strategy/SetingsPanelModule.js +7 -1
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingTargetViewItems.js +11 -0
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +10 -0
- package/src/Utilities/Constants/ConfigConstants.d.ts +0 -1
- package/src/Utilities/Constants/ConfigConstants.js +1 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +0 -9
- package/src/Utilities/Constants/GeneralConstants.js +1 -12
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -2
- package/src/Utilities/Constants/ModuleConstants.js +2 -3
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +19 -18
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +2 -1
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
- package/src/Utilities/Extensions/StringExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -4
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -3
- package/src/Utilities/ObjectFactory.d.ts +0 -10
- package/src/Utilities/ObjectFactory.js +6 -67
- package/src/Utilities/Services/EntitlementService.js +1 -1
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +7 -11
- package/src/Utilities/Services/ReportService.js +1 -1
- package/src/View/AdaptableView.js +2 -8
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +4 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -9
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +3 -3
- package/src/View/AdaptableWizardView/index.js +1 -1
- package/src/View/Alert/AlertEmptyView.js +1 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertWizard.js +3 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +0 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +11 -24
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +16 -4
- package/src/View/Components/FilterForm/QuickFilterForm.js +2 -2
- package/src/View/Components/ModuleValueSelector/index.d.ts +3 -1
- package/src/View/Components/ModuleValueSelector/index.js +1 -1
- package/src/View/Components/NewScopeComponent.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +9 -7
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +1 -1
- package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +46 -81
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +11 -4
- package/src/View/Components/ValueSelector/index.d.ts +2 -0
- package/src/View/Components/ValueSelector/index.js +5 -5
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +10 -5
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +16 -4
- package/src/View/Dashboard/Dashboard.js +14 -36
- package/src/View/Dashboard/DashboardPopup.js +24 -16
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -2
- package/src/View/Export/Wizard/NewReportWizard.js +13 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
- package/src/View/FlashingCell/Wizard/{FlashingCellDurationWizardSection.d.ts → FlashingCellSettingsWizardSection.d.ts} +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +81 -0
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +6 -8
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +10 -5
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +8 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +13 -5
- package/src/View/GridInfo/GridInfoPopup.js +3 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
- package/src/View/Query/QueryViewPanel.js +12 -9
- package/src/View/Query/Wizard/NamedQueryWizard.js +13 -8
- package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
- package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
- package/src/View/Shortcut/shortcutKeys.js +0 -1
- package/src/View/SpecialColumnSettingsWizardStep.d.ts +9 -0
- package/src/View/SpecialColumnSettingsWizardStep.js +63 -0
- package/src/View/UIHelper.d.ts +0 -4
- package/src/View/UIHelper.js +1 -34
- package/src/View/Wizard/AdaptableWizard.js +1 -1
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +1 -1
- package/src/agGrid/Adaptable.d.ts +10 -7
- package/src/agGrid/Adaptable.js +80 -57
- package/src/agGrid/agGridHelper.d.ts +1 -2
- package/src/agGrid/agGridHelper.js +8 -5
- package/src/agGrid/agGridMenuHelper.js +12 -8
- package/src/components/ApplicationIcon.d.ts +1 -1
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/Dashboard/DashboardManager.d.ts +5 -3
- package/src/components/Dashboard/DashboardManager.js +33 -27
- package/src/components/DropdownButton/renderItem.js +1 -1
- package/src/components/FormLayout/index.js +1 -1
- package/src/components/OverlayTrigger/Overlay.js +1 -1
- package/src/components/WindowModal/WindowModal.js +17 -2
- package/src/components/icons/column-add.d.ts +3 -0
- package/src/components/icons/column-add.js +10 -0
- package/src/components/icons/index.js +2 -0
- package/src/components/utils/useDraggable.js +2 -1
- package/src/metamodel/adaptable.metamodel.d.ts +58 -91
- package/src/metamodel/adaptable.metamodel.js +248 -297
- package/src/types.d.ts +4 -7
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/ChartPluginOptions.d.ts +0 -20
- package/src/Api/ChartApi.d.ts +0 -20
- package/src/Api/Implementation/SparklineColumnApiImpl.d.ts +0 -9
- package/src/Api/Implementation/SparklineColumnApiImpl.js +0 -24
- package/src/Api/SparklineColumnApi.d.ts +0 -23
- package/src/Api/SparklineColumnApi.js +0 -2
- package/src/PredefinedConfig/ChartState.d.ts +0 -144
- package/src/PredefinedConfig/ChartState.js +0 -2
- package/src/PredefinedConfig/Common/ChartEnums.d.ts +0 -123
- package/src/PredefinedConfig/Common/ChartEnums.js +0 -152
- package/src/PredefinedConfig/SparklineColumnState.d.ts +0 -40
- package/src/PredefinedConfig/SparklineColumnState.js +0 -2
- package/src/Redux/ActionsReducers/SparklineColumnRedux.d.ts +0 -35
- package/src/Redux/ActionsReducers/SparklineColumnRedux.js +0 -70
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.js +0 -56
- package/src/Utilities/Defaults/DefaultPieChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultPieChartProperties.js +0 -13
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.js +0 -25
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.d.ts +0 -11
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.js +0 -28
- package/src/View/Components/Popups/AdaptableChart.d.ts +0 -18
- package/src/View/Components/Popups/AdaptableChart.js +0 -40
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.d.ts +0 -7
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.js +0 -2
- package/src/View/FlashingCell/Wizard/FlashingCellDurationWizardSection.js +0 -60
- package/src/components/ChartContainer/index.d.ts +0 -15
- package/src/components/ChartContainer/index.js +0 -22
|
@@ -192,6 +192,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
192
192
|
"uiLabel": "Cell Summary Api",
|
|
193
193
|
"reference": "CellSummaryApi"
|
|
194
194
|
},
|
|
195
|
+
{
|
|
196
|
+
"name": "chartingApi",
|
|
197
|
+
"kind": "REFERENCE",
|
|
198
|
+
"description": "Provides run-time access to Charting Module and state",
|
|
199
|
+
"uiLabel": "Charting Api",
|
|
200
|
+
"reference": "unknown"
|
|
201
|
+
},
|
|
195
202
|
{
|
|
196
203
|
"name": "columnApi",
|
|
197
204
|
"kind": "REFERENCE",
|
|
@@ -306,7 +313,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
306
313
|
{
|
|
307
314
|
"name": "pluginsApi",
|
|
308
315
|
"kind": "REFERENCE",
|
|
309
|
-
"description": "Offers access to AdapTable Plugin (e.g.
|
|
316
|
+
"description": "Offers access to AdapTable Plugin (e.g. ipushpull, OpenFin etc)",
|
|
310
317
|
"uiLabel": "Plugins Api",
|
|
311
318
|
"reference": "PluginsApi"
|
|
312
319
|
},
|
|
@@ -373,13 +380,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
373
380
|
"uiLabel": "Smart Edit Api",
|
|
374
381
|
"reference": "SmartEditApi"
|
|
375
382
|
},
|
|
376
|
-
{
|
|
377
|
-
"name": "sparklineColumnApi",
|
|
378
|
-
"kind": "REFERENCE",
|
|
379
|
-
"description": "Provides access to the Sparkline Column in the Charts Plugin",
|
|
380
|
-
"uiLabel": "Sparkline Column Api",
|
|
381
|
-
"reference": "SparklineColumnApi"
|
|
382
|
-
},
|
|
383
383
|
{
|
|
384
384
|
"name": "systemStatusApi",
|
|
385
385
|
"kind": "REFERENCE",
|
|
@@ -662,8 +662,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
662
662
|
}
|
|
663
663
|
]
|
|
664
664
|
},
|
|
665
|
-
"
|
|
666
|
-
"name": "
|
|
665
|
+
"AdaptableFlashingCell": {
|
|
666
|
+
"name": "AdaptableFlashingCell",
|
|
667
667
|
"kind": "Interface",
|
|
668
668
|
"description": "Defines an Alert fired by AdapTable",
|
|
669
669
|
"properties": [
|
|
@@ -931,14 +931,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
931
931
|
"gridInfo": "item",
|
|
932
932
|
"defaultValue": "`adaptableId` value"
|
|
933
933
|
},
|
|
934
|
-
{
|
|
935
|
-
"name": "agGridOptions",
|
|
936
|
-
"kind": "unknown",
|
|
937
|
-
"description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property as AdapTable wires it up differently",
|
|
938
|
-
"uiLabel": "Ag Grid Options",
|
|
939
|
-
"isOptional": true,
|
|
940
|
-
"defaultValue": "n/a (Mandatory)"
|
|
941
|
-
},
|
|
942
934
|
{
|
|
943
935
|
"name": "autogeneratePrimaryKey",
|
|
944
936
|
"kind": "boolean",
|
|
@@ -951,7 +943,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
951
943
|
{
|
|
952
944
|
"name": "containerOptions",
|
|
953
945
|
"kind": "REFERENCE",
|
|
954
|
-
"description": "Options for setting the 'Div' elements in which AdapTable, AG Grid, popups
|
|
946
|
+
"description": "Options for setting the 'Div' elements in which AdapTable, AG Grid, popups are placed",
|
|
955
947
|
"uiLabel": "Container Options",
|
|
956
948
|
"isOptional": true,
|
|
957
949
|
"reference": "ContainerOptions"
|
|
@@ -1017,6 +1009,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1017
1009
|
"gridInfo": "container",
|
|
1018
1010
|
"reference": "FilterOptions"
|
|
1019
1011
|
},
|
|
1012
|
+
{
|
|
1013
|
+
"name": "flashingCellOptions",
|
|
1014
|
+
"kind": "REFERENCE",
|
|
1015
|
+
"description": "Options for managing Flashing Cells - primarily default values",
|
|
1016
|
+
"uiLabel": "Flashing Cell Options",
|
|
1017
|
+
"isOptional": true,
|
|
1018
|
+
"gridInfo": "container",
|
|
1019
|
+
"reference": "FlashingCellOptions"
|
|
1020
|
+
},
|
|
1020
1021
|
{
|
|
1021
1022
|
"name": "generalOptions",
|
|
1022
1023
|
"kind": "REFERENCE",
|
|
@@ -1026,6 +1027,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1026
1027
|
"gridInfo": "container",
|
|
1027
1028
|
"reference": "GeneralOptions"
|
|
1028
1029
|
},
|
|
1030
|
+
{
|
|
1031
|
+
"name": "gridOptions",
|
|
1032
|
+
"kind": "REFERENCE",
|
|
1033
|
+
"description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property as AdapTable wires it up differently",
|
|
1034
|
+
"uiLabel": "Grid Options",
|
|
1035
|
+
"isOptional": true,
|
|
1036
|
+
"defaultValue": "n/a (Mandatory)",
|
|
1037
|
+
"reference": "unknown"
|
|
1038
|
+
},
|
|
1029
1039
|
{
|
|
1030
1040
|
"name": "layoutOptions",
|
|
1031
1041
|
"kind": "REFERENCE",
|
|
@@ -1107,6 +1117,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1107
1117
|
"description": "Setting panel options",
|
|
1108
1118
|
"uiLabel": "Settings Panel Options",
|
|
1109
1119
|
"isOptional": true,
|
|
1120
|
+
"gridInfo": "container",
|
|
1110
1121
|
"reference": "unknown"
|
|
1111
1122
|
},
|
|
1112
1123
|
{
|
|
@@ -1227,7 +1238,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1227
1238
|
{
|
|
1228
1239
|
"name": "moduleScope",
|
|
1229
1240
|
"kind": "unknown",
|
|
1230
|
-
"description": "Modules where Predicate can run
|
|
1241
|
+
"description": "Modules where the Predicate can run",
|
|
1231
1242
|
"uiLabel": "Module Scope"
|
|
1232
1243
|
},
|
|
1233
1244
|
{
|
|
@@ -1259,10 +1270,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1259
1270
|
"description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
|
|
1260
1271
|
"properties": [
|
|
1261
1272
|
{
|
|
1262
|
-
"name": "
|
|
1273
|
+
"name": "gridOptions",
|
|
1263
1274
|
"kind": "REFERENCE",
|
|
1264
1275
|
"description": "Underlying AG Grid GridOptions object",
|
|
1265
|
-
"uiLabel": "
|
|
1276
|
+
"uiLabel": "Grid Options",
|
|
1266
1277
|
"reference": "unknown"
|
|
1267
1278
|
}
|
|
1268
1279
|
]
|
|
@@ -2334,67 +2345,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2334
2345
|
"kind": "TypeAlias",
|
|
2335
2346
|
"description": "Use PermittedValues instead"
|
|
2336
2347
|
},
|
|
2337
|
-
"ChartApi": {
|
|
2338
|
-
"name": "ChartApi",
|
|
2339
|
-
"kind": "Interface",
|
|
2340
|
-
"description": "Provides run time access to the Chart Plugin",
|
|
2341
|
-
"properties": [
|
|
2342
|
-
{
|
|
2343
|
-
"name": "getAllChartDefinitions",
|
|
2344
|
-
"kind": "function",
|
|
2345
|
-
"description": "Returns all the Chart Definitions in the State",
|
|
2346
|
-
"uiLabel": "Get All Chart Definitions"
|
|
2347
|
-
},
|
|
2348
|
-
{
|
|
2349
|
-
"name": "getChartState",
|
|
2350
|
-
"kind": "function",
|
|
2351
|
-
"description": "Retrieves the Chart section of Adaptable State",
|
|
2352
|
-
"uiLabel": "Get Chart State"
|
|
2353
|
-
},
|
|
2354
|
-
{
|
|
2355
|
-
"name": "showChartPopup",
|
|
2356
|
-
"kind": "function",
|
|
2357
|
-
"description": "Opens the Chart popup screen",
|
|
2358
|
-
"uiLabel": "Show Chart Popup"
|
|
2359
|
-
}
|
|
2360
|
-
]
|
|
2361
|
-
},
|
|
2362
|
-
"ChartDefinition": {
|
|
2363
|
-
"name": "ChartDefinition",
|
|
2364
|
-
"kind": "Interface",
|
|
2365
|
-
"description": "Our Chart Definitions which will get added to and updated as we add new charts But the basic idea is that each chart will have a base chart defintion that just includes a name, description, type and chart properties These chart properties are specialised for each chart type: they are all nullable types because we use defaults in the DefaultXXXProperties that we assign"
|
|
2366
|
-
},
|
|
2367
|
-
"ChartPluginOptions": {
|
|
2368
|
-
"name": "ChartPluginOptions",
|
|
2369
|
-
"kind": "Interface",
|
|
2370
|
-
"description": "Options for managing Charts in Adaptable",
|
|
2371
|
-
"properties": [
|
|
2372
|
-
{
|
|
2373
|
-
"name": "displayOnStartUp",
|
|
2374
|
-
"kind": "boolean",
|
|
2375
|
-
"description": "Whether a chart is displayed at start-up; only applies if *CurrentChartName* property in Chart State is set",
|
|
2376
|
-
"uiLabel": "Display On Start Up",
|
|
2377
|
-
"isOptional": true,
|
|
2378
|
-
"defaultValue": "false"
|
|
2379
|
-
},
|
|
2380
|
-
{
|
|
2381
|
-
"name": "pieChartMaxItems",
|
|
2382
|
-
"kind": "number",
|
|
2383
|
-
"description": "Maximum number of items to show in a pie chart.",
|
|
2384
|
-
"uiLabel": "Pie Chart Max Items",
|
|
2385
|
-
"isOptional": true,
|
|
2386
|
-
"defaultValue": "50"
|
|
2387
|
-
},
|
|
2388
|
-
{
|
|
2389
|
-
"name": "showModal",
|
|
2390
|
-
"kind": "boolean",
|
|
2391
|
-
"description": "Displays charts in a modal popup; if false, charts appear in the div specified im *chartContainer* property of Container Options",
|
|
2392
|
-
"uiLabel": "Show Modal",
|
|
2393
|
-
"isOptional": true,
|
|
2394
|
-
"defaultValue": "false"
|
|
2395
|
-
}
|
|
2396
|
-
]
|
|
2397
|
-
},
|
|
2398
2348
|
"CheckboxColumnClickedInfo": {
|
|
2399
2349
|
"name": "CheckboxColumnClickedInfo",
|
|
2400
2350
|
"kind": "Interface",
|
|
@@ -2432,6 +2382,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2432
2382
|
"kind": "Interface",
|
|
2433
2383
|
"description": "A large range of column-related functions in AdapTable",
|
|
2434
2384
|
"properties": [
|
|
2385
|
+
{
|
|
2386
|
+
"name": "addColumnsToSelection",
|
|
2387
|
+
"kind": "function",
|
|
2388
|
+
"description": "Adds (highlights) a group of Columns to any existing selection",
|
|
2389
|
+
"uiLabel": "Add Columns To Selection"
|
|
2390
|
+
},
|
|
2391
|
+
{
|
|
2392
|
+
"name": "addColumnToSelection",
|
|
2393
|
+
"kind": "function",
|
|
2394
|
+
"description": "Adds (highlights) a Column to any existing selection",
|
|
2395
|
+
"uiLabel": "Add Column To Selection"
|
|
2396
|
+
},
|
|
2435
2397
|
{
|
|
2436
2398
|
"name": "autosizeAllColumns",
|
|
2437
2399
|
"kind": "function",
|
|
@@ -2793,7 +2755,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2793
2755
|
"ColumnMenuContext": {
|
|
2794
2756
|
"name": "ColumnMenuContext",
|
|
2795
2757
|
"kind": "Interface",
|
|
2796
|
-
"description": "Provides full details about the Column
|
|
2758
|
+
"description": "Provides full details about the Column in which the Column Menu will appear",
|
|
2797
2759
|
"properties": [
|
|
2798
2760
|
{
|
|
2799
2761
|
"name": "adaptableColumn",
|
|
@@ -3092,12 +3054,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3092
3054
|
"description": "Returns Calculated Column section of Adaptable State",
|
|
3093
3055
|
"uiLabel": "Get Calculated Column State"
|
|
3094
3056
|
},
|
|
3095
|
-
{
|
|
3096
|
-
"name": "getChartState",
|
|
3097
|
-
"kind": "function",
|
|
3098
|
-
"description": "Returns Chart section of Adaptable State",
|
|
3099
|
-
"uiLabel": "Get Chart State"
|
|
3100
|
-
},
|
|
3101
3057
|
{
|
|
3102
3058
|
"name": "getConditionalStyleState",
|
|
3103
3059
|
"kind": "function",
|
|
@@ -3200,12 +3156,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3200
3156
|
"description": "Returns Shortcut section of Adaptable State",
|
|
3201
3157
|
"uiLabel": "Get Shortcut State"
|
|
3202
3158
|
},
|
|
3203
|
-
{
|
|
3204
|
-
"name": "getSparklineColumnState",
|
|
3205
|
-
"kind": "function",
|
|
3206
|
-
"description": "Returns Sparkline Column section of Adaptable State",
|
|
3207
|
-
"uiLabel": "Get Sparkline Column State"
|
|
3208
|
-
},
|
|
3209
3159
|
{
|
|
3210
3160
|
"name": "getThemeState",
|
|
3211
3161
|
"kind": "function",
|
|
@@ -3305,15 +3255,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3305
3255
|
"gridInfo": "item",
|
|
3306
3256
|
"defaultValue": "undefined"
|
|
3307
3257
|
},
|
|
3308
|
-
{
|
|
3309
|
-
"name": "chartContainer",
|
|
3310
|
-
"kind": "string",
|
|
3311
|
-
"description": "Name of div where charts appear (if null, will be centre of page)",
|
|
3312
|
-
"uiLabel": "Chart Container",
|
|
3313
|
-
"isOptional": true,
|
|
3314
|
-
"gridInfo": "item",
|
|
3315
|
-
"defaultValue": "undefined"
|
|
3316
|
-
},
|
|
3317
3258
|
{
|
|
3318
3259
|
"name": "modalContainer",
|
|
3319
3260
|
"kind": "string",
|
|
@@ -3337,15 +3278,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3337
3278
|
"ContextMenuContext": {
|
|
3338
3279
|
"name": "ContextMenuContext",
|
|
3339
3280
|
"kind": "Interface",
|
|
3340
|
-
"description": "Provides full details about current cell (and selected cells) where Context Menu will appear",
|
|
3281
|
+
"description": "Provides full details about current cell (and selected cells) where the Context Menu will appear",
|
|
3341
3282
|
"properties": [
|
|
3342
|
-
{
|
|
3343
|
-
"name": "adaptableApi",
|
|
3344
|
-
"kind": "REFERENCE",
|
|
3345
|
-
"description": "The Adaptable Api - included as a convenience",
|
|
3346
|
-
"uiLabel": "Adaptable Api",
|
|
3347
|
-
"reference": "AdaptableApi"
|
|
3348
|
-
},
|
|
3349
3283
|
{
|
|
3350
3284
|
"name": "adaptableColumn",
|
|
3351
3285
|
"kind": "REFERENCE",
|
|
@@ -3981,6 +3915,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3981
3915
|
"kind": "Interface",
|
|
3982
3916
|
"description": "Options related to the Dashboard in Adaptable.",
|
|
3983
3917
|
"properties": [
|
|
3918
|
+
{
|
|
3919
|
+
"name": "buttonsLocation",
|
|
3920
|
+
"kind": "unknown",
|
|
3921
|
+
"description": "Position in the Dashboard to show the Module and Custom Buttons",
|
|
3922
|
+
"uiLabel": "Buttons Location",
|
|
3923
|
+
"isOptional": true,
|
|
3924
|
+
"defaultValue": "'right'"
|
|
3925
|
+
},
|
|
3984
3926
|
{
|
|
3985
3927
|
"name": "canFloat",
|
|
3986
3928
|
"kind": "boolean",
|
|
@@ -3993,7 +3935,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3993
3935
|
{
|
|
3994
3936
|
"name": "customDashboardButtons",
|
|
3995
3937
|
"kind": "unknown",
|
|
3996
|
-
"description": "Custom Adaptable Buttons to appear in
|
|
3938
|
+
"description": "Custom Adaptable Buttons to appear in Dashboard (alongside Module Buttons)",
|
|
3997
3939
|
"uiLabel": "Custom Dashboard Buttons",
|
|
3998
3940
|
"isOptional": true
|
|
3999
3941
|
},
|
|
@@ -4007,20 +3949,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4007
3949
|
{
|
|
4008
3950
|
"name": "showQuickSearchInHeader",
|
|
4009
3951
|
"kind": "boolean",
|
|
4010
|
-
"description": "Shows Quick Search textbox in the Dashboard Header
|
|
3952
|
+
"description": "Shows Quick Search textbox in the Dashboard Header",
|
|
4011
3953
|
"uiLabel": "Show Quick Search In Header",
|
|
4012
3954
|
"isOptional": true,
|
|
4013
3955
|
"gridInfo": "item",
|
|
4014
3956
|
"defaultValue": "true"
|
|
4015
|
-
},
|
|
4016
|
-
{
|
|
4017
|
-
"name": "showSettingsPanel",
|
|
4018
|
-
"kind": "boolean",
|
|
4019
|
-
"description": "Displays a button which opens the Settings Panel",
|
|
4020
|
-
"uiLabel": "Show Settings Panel",
|
|
4021
|
-
"isOptional": true,
|
|
4022
|
-
"gridInfo": "item",
|
|
4023
|
-
"defaultValue": "true"
|
|
4024
3957
|
}
|
|
4025
3958
|
]
|
|
4026
3959
|
},
|
|
@@ -4039,7 +3972,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4039
3972
|
{
|
|
4040
3973
|
"name": "DashboardTitle",
|
|
4041
3974
|
"kind": "string",
|
|
4042
|
-
"description": "Title to display in Dashboard Header
|
|
3975
|
+
"description": "Title to display in Dashboard Header",
|
|
4043
3976
|
"uiLabel": "Dashboard Title",
|
|
4044
3977
|
"isOptional": true,
|
|
4045
3978
|
"defaultValue": "`adaptableId` in Adaptable Options"
|
|
@@ -4047,7 +3980,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4047
3980
|
{
|
|
4048
3981
|
"name": "FloatingPosition",
|
|
4049
3982
|
"kind": "REFERENCE",
|
|
4050
|
-
"description": "Position of Dashboard in 'floating mode'
|
|
3983
|
+
"description": "Position of Dashboard when in 'floating mode'",
|
|
4051
3984
|
"uiLabel": "Floating Position",
|
|
4052
3985
|
"isOptional": true,
|
|
4053
3986
|
"reference": "AdaptableCoordinate"
|
|
@@ -4087,10 +4020,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4087
4020
|
{
|
|
4088
4021
|
"name": "ModuleButtons",
|
|
4089
4022
|
"kind": "REFERENCE",
|
|
4090
|
-
"description": "Module Buttons
|
|
4023
|
+
"description": "Module Buttons which open screen in Settings Panel for associated AdapTable Module",
|
|
4091
4024
|
"uiLabel": "Module Buttons",
|
|
4092
4025
|
"isOptional": true,
|
|
4093
|
-
"defaultValue": "
|
|
4026
|
+
"defaultValue": "['SettingsPanel']",
|
|
4094
4027
|
"reference": "unknown"
|
|
4095
4028
|
},
|
|
4096
4029
|
{
|
|
@@ -4510,7 +4443,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4510
4443
|
{
|
|
4511
4444
|
"name": "defaultAccessLevel",
|
|
4512
4445
|
"kind": "unknown",
|
|
4513
|
-
"description": "AccessLevel to use when an Entitlement is not explicitly set;
|
|
4446
|
+
"description": "AccessLevel to use when an Entitlement is not explicitly set; can be hardcoded value or a function to invoke",
|
|
4514
4447
|
"uiLabel": "Default Access Level",
|
|
4515
4448
|
"isOptional": true,
|
|
4516
4449
|
"gridInfo": "item",
|
|
@@ -4720,7 +4653,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4720
4653
|
{
|
|
4721
4654
|
"name": "on",
|
|
4722
4655
|
"kind": "function",
|
|
4723
|
-
"description": "Event fired whenever
|
|
4656
|
+
"description": "Event fired whenever **Cell Flashing** is triggered in AdapTable.",
|
|
4724
4657
|
"uiLabel": "On"
|
|
4725
4658
|
}
|
|
4726
4659
|
]
|
|
@@ -5555,85 +5488,225 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5555
5488
|
}
|
|
5556
5489
|
]
|
|
5557
5490
|
},
|
|
5491
|
+
"FlashingCellApi": {
|
|
5492
|
+
"name": "FlashingCellApi",
|
|
5493
|
+
"kind": "Interface",
|
|
5494
|
+
"description": "Provides run-time access to Flashing Cell functionality and associated State",
|
|
5495
|
+
"properties": [
|
|
5496
|
+
{
|
|
5497
|
+
"name": "addFlashingCellDefinition",
|
|
5498
|
+
"kind": "function",
|
|
5499
|
+
"description": "Adds a Flashing cell Definition to State",
|
|
5500
|
+
"uiLabel": "Add Flashing Cell Definition"
|
|
5501
|
+
},
|
|
5502
|
+
{
|
|
5503
|
+
"name": "addFlashingCellDefinitions",
|
|
5504
|
+
"kind": "function",
|
|
5505
|
+
"description": "Adds provided Flashing cell Definitions",
|
|
5506
|
+
"uiLabel": "Add Flashing Cell Definitions"
|
|
5507
|
+
},
|
|
5508
|
+
{
|
|
5509
|
+
"name": "editFlashingCellDefinition",
|
|
5510
|
+
"kind": "function",
|
|
5511
|
+
"description": "Edits Flashing Cell Definition in State with given one",
|
|
5512
|
+
"uiLabel": "Edit Flashing Cell Definition"
|
|
5513
|
+
},
|
|
5514
|
+
{
|
|
5515
|
+
"name": "editFlashingCellDefinitions",
|
|
5516
|
+
"kind": "function",
|
|
5517
|
+
"description": "Edits provided Flashing cell Definitions",
|
|
5518
|
+
"uiLabel": "Edit Flashing Cell Definitions"
|
|
5519
|
+
},
|
|
5520
|
+
{
|
|
5521
|
+
"name": "getActiveFlashingCellDefinitions",
|
|
5522
|
+
"kind": "function",
|
|
5523
|
+
"description": "Retrieves all active (non-suspended) cell Definitions in Flashing Cell State",
|
|
5524
|
+
"uiLabel": "Get Active Flashing Cell Definitions"
|
|
5525
|
+
},
|
|
5526
|
+
{
|
|
5527
|
+
"name": "getFlashingCellDefinitionById",
|
|
5528
|
+
"kind": "function",
|
|
5529
|
+
"description": "Retrieves Flashing cell Definition By Id",
|
|
5530
|
+
"uiLabel": "Get Flashing Cell Definition By Id"
|
|
5531
|
+
},
|
|
5532
|
+
{
|
|
5533
|
+
"name": "getFlashingCellDefinitions",
|
|
5534
|
+
"kind": "function",
|
|
5535
|
+
"description": "Retrieves all Flashing cell Definitions in Flashing Cell State",
|
|
5536
|
+
"uiLabel": "Get Flashing Cell Definitions"
|
|
5537
|
+
},
|
|
5538
|
+
{
|
|
5539
|
+
"name": "getFlashingCellFlashTarget",
|
|
5540
|
+
"kind": "function",
|
|
5541
|
+
"description": "Returns where a Flashing cell Definition will flash a single cell or a whole row",
|
|
5542
|
+
"uiLabel": "Get Flashing Cell Flash Target"
|
|
5543
|
+
},
|
|
5544
|
+
{
|
|
5545
|
+
"name": "getFlashingCellPredicateDefs",
|
|
5546
|
+
"kind": "function",
|
|
5547
|
+
"description": "Retrieves all Predicate Defs with Module Scope of Flashing Cell",
|
|
5548
|
+
"uiLabel": "Get Flashing Cell Predicate Defs"
|
|
5549
|
+
},
|
|
5550
|
+
{
|
|
5551
|
+
"name": "getFlashingCellPredicateDefsForScope",
|
|
5552
|
+
"kind": "function",
|
|
5553
|
+
"description": "Retrieves all Predicate Defs that match given Scope",
|
|
5554
|
+
"uiLabel": "Get Flashing Cell Predicate Defs For Scope"
|
|
5555
|
+
},
|
|
5556
|
+
{
|
|
5557
|
+
"name": "getFlashingCellState",
|
|
5558
|
+
"kind": "function",
|
|
5559
|
+
"description": "Retrieves Flashing Cell section from Adaptable State",
|
|
5560
|
+
"uiLabel": "Get Flashing Cell State"
|
|
5561
|
+
},
|
|
5562
|
+
{
|
|
5563
|
+
"name": "setFlashingCellDefinitions",
|
|
5564
|
+
"kind": "function",
|
|
5565
|
+
"description": "Sets a collection of Flashing Cell Definitions into State",
|
|
5566
|
+
"uiLabel": "Set Flashing Cell Definitions"
|
|
5567
|
+
},
|
|
5568
|
+
{
|
|
5569
|
+
"name": "showFlashingCell",
|
|
5570
|
+
"kind": "function",
|
|
5571
|
+
"description": "Displays a Flashing Cell Definition",
|
|
5572
|
+
"uiLabel": "Show Flashing Cell"
|
|
5573
|
+
},
|
|
5574
|
+
{
|
|
5575
|
+
"name": "suspendFlashingCellDefinition",
|
|
5576
|
+
"kind": "function",
|
|
5577
|
+
"description": "Suspends a Flashing cell Definition",
|
|
5578
|
+
"uiLabel": "Suspend Flashing Cell Definition"
|
|
5579
|
+
},
|
|
5580
|
+
{
|
|
5581
|
+
"name": "unSuspendFlashingCellDefinition",
|
|
5582
|
+
"kind": "function",
|
|
5583
|
+
"description": "Activates a suspended Flashing cell Definition",
|
|
5584
|
+
"uiLabel": "Un Suspend Flashing Cell Definition"
|
|
5585
|
+
}
|
|
5586
|
+
]
|
|
5587
|
+
},
|
|
5558
5588
|
"FlashingCellDefinition": {
|
|
5559
5589
|
"name": "FlashingCellDefinition",
|
|
5560
5590
|
"kind": "Interface",
|
|
5561
5591
|
"description": "The Flashing Cell Definition",
|
|
5562
5592
|
"properties": [
|
|
5593
|
+
{
|
|
5594
|
+
"name": "DownChangeStyle",
|
|
5595
|
+
"kind": "REFERENCE",
|
|
5596
|
+
"description": "Style for 'Down' value changes",
|
|
5597
|
+
"uiLabel": "Down Change Style",
|
|
5598
|
+
"isOptional": true,
|
|
5599
|
+
"defaultValue": "Red BackColour",
|
|
5600
|
+
"reference": "AdaptableStyle"
|
|
5601
|
+
},
|
|
5602
|
+
{
|
|
5603
|
+
"name": "FlashDuration",
|
|
5604
|
+
"kind": "unknown",
|
|
5605
|
+
"description": "Duration of Flash - can be number (in ms) or 'always'",
|
|
5606
|
+
"uiLabel": "Flash Duration",
|
|
5607
|
+
"isOptional": true,
|
|
5608
|
+
"defaultValue": "500ms"
|
|
5609
|
+
},
|
|
5610
|
+
{
|
|
5611
|
+
"name": "FlashTarget",
|
|
5612
|
+
"kind": "unknown",
|
|
5613
|
+
"description": "Should a cell or whole row flash",
|
|
5614
|
+
"uiLabel": "Flash Target",
|
|
5615
|
+
"isOptional": true,
|
|
5616
|
+
"defaultValue": "'cell'"
|
|
5617
|
+
},
|
|
5618
|
+
{
|
|
5619
|
+
"name": "NeutralChangeStyle",
|
|
5620
|
+
"kind": "REFERENCE",
|
|
5621
|
+
"description": "Style for 'Neutral' value changes",
|
|
5622
|
+
"uiLabel": "Neutral Change Style",
|
|
5623
|
+
"isOptional": true,
|
|
5624
|
+
"defaultValue": "Gray BackColour",
|
|
5625
|
+
"reference": "AdaptableStyle"
|
|
5626
|
+
},
|
|
5563
5627
|
{
|
|
5564
5628
|
"name": "Rule",
|
|
5565
5629
|
"kind": "REFERENCE",
|
|
5566
|
-
"description": "When
|
|
5630
|
+
"description": "When Flashing Cell should be triggered",
|
|
5567
5631
|
"uiLabel": "Rule",
|
|
5568
5632
|
"reference": "unknown"
|
|
5569
5633
|
},
|
|
5570
5634
|
{
|
|
5571
5635
|
"name": "Scope",
|
|
5572
5636
|
"kind": "REFERENCE",
|
|
5573
|
-
"description": "Where
|
|
5637
|
+
"description": "Where Flashing Cell can be triggered: one, some or all columns or DataTypes",
|
|
5574
5638
|
"uiLabel": "Scope",
|
|
5575
5639
|
"reference": "AdaptableScope"
|
|
5640
|
+
},
|
|
5641
|
+
{
|
|
5642
|
+
"name": "UpChangeStyle",
|
|
5643
|
+
"kind": "REFERENCE",
|
|
5644
|
+
"description": "Style for 'Up' value changes",
|
|
5645
|
+
"uiLabel": "Up Change Style",
|
|
5646
|
+
"isOptional": true,
|
|
5647
|
+
"defaultValue": "Green BackColour",
|
|
5648
|
+
"reference": "AdaptableStyle"
|
|
5576
5649
|
}
|
|
5577
5650
|
]
|
|
5578
5651
|
},
|
|
5579
5652
|
"FlashingCellDisplayedInfo": {
|
|
5580
5653
|
"name": "FlashingCellDisplayedInfo",
|
|
5581
5654
|
"kind": "Interface",
|
|
5582
|
-
"description": "Object returned by the `
|
|
5655
|
+
"description": "Object returned by the `FlashingCellDisplayed` event",
|
|
5583
5656
|
"properties": [
|
|
5584
5657
|
{
|
|
5585
5658
|
"name": "flashingCell",
|
|
5586
5659
|
"kind": "REFERENCE",
|
|
5587
|
-
"description": "
|
|
5660
|
+
"description": "Details of the Cell (or row) which has just flashed",
|
|
5588
5661
|
"uiLabel": "Flashing Cell",
|
|
5589
|
-
"reference": "
|
|
5662
|
+
"reference": "AdaptableFlashingCell"
|
|
5590
5663
|
}
|
|
5591
5664
|
]
|
|
5592
5665
|
},
|
|
5593
|
-
"
|
|
5594
|
-
"name": "
|
|
5666
|
+
"FlashingCellOptions": {
|
|
5667
|
+
"name": "FlashingCellOptions",
|
|
5595
5668
|
"kind": "Interface",
|
|
5596
|
-
"description": "Properties
|
|
5669
|
+
"description": "Properties for Flashing Cell",
|
|
5597
5670
|
"properties": [
|
|
5598
5671
|
{
|
|
5599
|
-
"name": "
|
|
5672
|
+
"name": "defaultDownChangeStyle",
|
|
5600
5673
|
"kind": "REFERENCE",
|
|
5601
5674
|
"description": "Style for 'Down' value changes",
|
|
5602
|
-
"uiLabel": "Down Change Style",
|
|
5675
|
+
"uiLabel": "Default Down Change Style",
|
|
5603
5676
|
"isOptional": true,
|
|
5604
5677
|
"defaultValue": "Red BackColour",
|
|
5605
5678
|
"reference": "AdaptableStyle"
|
|
5606
5679
|
},
|
|
5607
5680
|
{
|
|
5608
|
-
"name": "
|
|
5681
|
+
"name": "defaultFlashDuration",
|
|
5609
5682
|
"kind": "unknown",
|
|
5610
5683
|
"description": "Duration of Flash - can be number (in ms) or 'always'",
|
|
5611
|
-
"uiLabel": "Flash Duration",
|
|
5684
|
+
"uiLabel": "Default Flash Duration",
|
|
5612
5685
|
"isOptional": true,
|
|
5613
5686
|
"defaultValue": "500ms"
|
|
5614
5687
|
},
|
|
5615
5688
|
{
|
|
5616
|
-
"name": "
|
|
5689
|
+
"name": "defaultFlashTarget",
|
|
5617
5690
|
"kind": "unknown",
|
|
5618
5691
|
"description": "Should a cell or whole row flash",
|
|
5619
|
-
"uiLabel": "Flash Target",
|
|
5692
|
+
"uiLabel": "Default Flash Target",
|
|
5620
5693
|
"isOptional": true,
|
|
5621
5694
|
"defaultValue": "'cell'"
|
|
5622
5695
|
},
|
|
5623
5696
|
{
|
|
5624
|
-
"name": "
|
|
5697
|
+
"name": "defaultNeutralChangeStyle",
|
|
5625
5698
|
"kind": "REFERENCE",
|
|
5626
5699
|
"description": "Style for 'Neutral' value changes",
|
|
5627
|
-
"uiLabel": "Neutral Change Style",
|
|
5700
|
+
"uiLabel": "Default Neutral Change Style",
|
|
5628
5701
|
"isOptional": true,
|
|
5629
5702
|
"defaultValue": "Gray BackColour",
|
|
5630
5703
|
"reference": "AdaptableStyle"
|
|
5631
5704
|
},
|
|
5632
5705
|
{
|
|
5633
|
-
"name": "
|
|
5706
|
+
"name": "defaultUpChangeStyle",
|
|
5634
5707
|
"kind": "REFERENCE",
|
|
5635
5708
|
"description": "Style for 'Up' value changes",
|
|
5636
|
-
"uiLabel": "Up Change Style",
|
|
5709
|
+
"uiLabel": "Default Up Change Style",
|
|
5637
5710
|
"isOptional": true,
|
|
5638
5711
|
"defaultValue": "Green BackColour",
|
|
5639
5712
|
"reference": "AdaptableStyle"
|
|
@@ -5648,7 +5721,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5648
5721
|
{
|
|
5649
5722
|
"name": "FlashingCellDefinitions",
|
|
5650
5723
|
"kind": "unknown",
|
|
5651
|
-
"description": "Flashing
|
|
5724
|
+
"description": "Flashing Cell Definitions - will colour cells/rows when rule is met",
|
|
5652
5725
|
"uiLabel": "Flashing Cell Definitions",
|
|
5653
5726
|
"isOptional": true,
|
|
5654
5727
|
"defaultValue": "null"
|
|
@@ -6128,7 +6201,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6128
6201
|
{
|
|
6129
6202
|
"name": "caseSensitiveTextComparisons",
|
|
6130
6203
|
"kind": "boolean",
|
|
6131
|
-
"description": "
|
|
6204
|
+
"description": "Perform case-sensitive text comparisons in all search and filter operations: QuickSearch, Filters, Query, Predicates",
|
|
6132
6205
|
"uiLabel": "Case Sensitive Text Comparisons",
|
|
6133
6206
|
"isOptional": true,
|
|
6134
6207
|
"gridInfo": "item",
|
|
@@ -7846,7 +7919,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7846
7919
|
{
|
|
7847
7920
|
"name": "columnMenuItems",
|
|
7848
7921
|
"kind": "unknown",
|
|
7849
|
-
"description": "
|
|
7922
|
+
"description": "User-defined Menu Items to add to the Column Menu",
|
|
7850
7923
|
"uiLabel": "Column Menu Items",
|
|
7851
7924
|
"isOptional": true
|
|
7852
7925
|
},
|
|
@@ -7862,7 +7935,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7862
7935
|
{
|
|
7863
7936
|
"name": "contextMenuItems",
|
|
7864
7937
|
"kind": "unknown",
|
|
7865
|
-
"description": "
|
|
7938
|
+
"description": "User-defined Menu Items to add to the Context Menu",
|
|
7866
7939
|
"uiLabel": "Context Menu Items",
|
|
7867
7940
|
"isOptional": true
|
|
7868
7941
|
},
|
|
@@ -7984,15 +8057,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7984
8057
|
"gridInfo": "item",
|
|
7985
8058
|
"defaultValue": "3000"
|
|
7986
8059
|
},
|
|
7987
|
-
{
|
|
7988
|
-
"name": "flashingCellDefaultProperties",
|
|
7989
|
-
"kind": "REFERENCE",
|
|
7990
|
-
"description": "Flashing Alert Defaults",
|
|
7991
|
-
"uiLabel": "Flashing Cell Default Properties",
|
|
7992
|
-
"isOptional": true,
|
|
7993
|
-
"defaultValue": "BackColors: Green (up), Red (down), Gray (neutral), Duration: 500ms",
|
|
7994
|
-
"reference": "FlashingCellProperties"
|
|
7995
|
-
},
|
|
7996
8060
|
{
|
|
7997
8061
|
"name": "isDraggable",
|
|
7998
8062
|
"kind": "boolean",
|
|
@@ -8514,14 +8578,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8514
8578
|
"isOptional": true,
|
|
8515
8579
|
"reference": "CalculatedColumnState"
|
|
8516
8580
|
},
|
|
8517
|
-
{
|
|
8518
|
-
"name": "Chart",
|
|
8519
|
-
"kind": "REFERENCE",
|
|
8520
|
-
"description": "Collection of Charts to enable seeing grid data visually in chart format (requires Chart plugin)",
|
|
8521
|
-
"uiLabel": "Chart",
|
|
8522
|
-
"isOptional": true,
|
|
8523
|
-
"reference": "unknown"
|
|
8524
|
-
},
|
|
8525
8581
|
{
|
|
8526
8582
|
"name": "ConditionalStyle",
|
|
8527
8583
|
"kind": "REFERENCE",
|
|
@@ -8634,14 +8690,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8634
8690
|
"isOptional": true,
|
|
8635
8691
|
"reference": "ShortcutState"
|
|
8636
8692
|
},
|
|
8637
|
-
{
|
|
8638
|
-
"name": "SparklineColumn",
|
|
8639
|
-
"kind": "REFERENCE",
|
|
8640
|
-
"description": "Columns - where data type is a numeric array - which is rendered as a Sparkline Chart - only populated at Design Time",
|
|
8641
|
-
"uiLabel": "Sparkline Column",
|
|
8642
|
-
"isOptional": true,
|
|
8643
|
-
"reference": "SparklineColumnState"
|
|
8644
|
-
},
|
|
8645
8693
|
{
|
|
8646
8694
|
"name": "Theme",
|
|
8647
8695
|
"kind": "REFERENCE",
|
|
@@ -8742,7 +8790,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8742
8790
|
{
|
|
8743
8791
|
"name": "column",
|
|
8744
8792
|
"kind": "REFERENCE",
|
|
8745
|
-
"description": "Column which contains the cell",
|
|
8793
|
+
"description": "Adaptable Column which contains the cell",
|
|
8746
8794
|
"uiLabel": "Column",
|
|
8747
8795
|
"reference": "AdaptableColumn"
|
|
8748
8796
|
},
|
|
@@ -8761,7 +8809,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8761
8809
|
{
|
|
8762
8810
|
"name": "node",
|
|
8763
8811
|
"kind": "REFERENCE",
|
|
8764
|
-
"description": "Row node which contains the cell",
|
|
8812
|
+
"description": "AG Grid Row node which contains the cell",
|
|
8765
8813
|
"uiLabel": "Node",
|
|
8766
8814
|
"reference": "unknown"
|
|
8767
8815
|
},
|
|
@@ -9710,7 +9758,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9710
9758
|
{
|
|
9711
9759
|
"name": "searchChangedTrigger",
|
|
9712
9760
|
"kind": "unknown",
|
|
9713
|
-
"description": "What
|
|
9761
|
+
"description": "What search-related change caused the event to fire",
|
|
9714
9762
|
"uiLabel": "Search Changed Trigger"
|
|
9715
9763
|
}
|
|
9716
9764
|
]
|
|
@@ -10056,99 +10104,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10056
10104
|
}
|
|
10057
10105
|
]
|
|
10058
10106
|
},
|
|
10059
|
-
"SparklineColumn": {
|
|
10060
|
-
"name": "SparklineColumn",
|
|
10061
|
-
"kind": "Interface",
|
|
10062
|
-
"description": "SparklineColumn object used in Sparkline Column function;",
|
|
10063
|
-
"properties": [
|
|
10064
|
-
{
|
|
10065
|
-
"name": "ColumnId",
|
|
10066
|
-
"kind": "string",
|
|
10067
|
-
"description": "Id of the Column",
|
|
10068
|
-
"uiLabel": "Column Id"
|
|
10069
|
-
},
|
|
10070
|
-
{
|
|
10071
|
-
"name": "LineColor",
|
|
10072
|
-
"kind": "string",
|
|
10073
|
-
"description": "Colour of Sparkline line (if Type is 'Line')",
|
|
10074
|
-
"uiLabel": "Line Color",
|
|
10075
|
-
"isOptional": true
|
|
10076
|
-
},
|
|
10077
|
-
{
|
|
10078
|
-
"name": "MaximumValue",
|
|
10079
|
-
"kind": "number",
|
|
10080
|
-
"description": "Maximum value for Sparkline chart of column",
|
|
10081
|
-
"uiLabel": "Maximum Value",
|
|
10082
|
-
"isOptional": true
|
|
10083
|
-
},
|
|
10084
|
-
{
|
|
10085
|
-
"name": "MinimumValue",
|
|
10086
|
-
"kind": "number",
|
|
10087
|
-
"description": "Minimum value for Sparkline chart of column",
|
|
10088
|
-
"uiLabel": "Minimum Value",
|
|
10089
|
-
"isOptional": true
|
|
10090
|
-
},
|
|
10091
|
-
{
|
|
10092
|
-
"name": "ShowToolTip",
|
|
10093
|
-
"kind": "boolean",
|
|
10094
|
-
"description": "Shows tooltip displaying underlying Sparkline values",
|
|
10095
|
-
"uiLabel": "Show Tool Tip",
|
|
10096
|
-
"isOptional": true
|
|
10097
|
-
},
|
|
10098
|
-
{
|
|
10099
|
-
"name": "SparklineType",
|
|
10100
|
-
"kind": "unknown",
|
|
10101
|
-
"description": "Type of Sparkline Chart: 'Line', 'Column' or 'Area'",
|
|
10102
|
-
"uiLabel": "Sparkline Type",
|
|
10103
|
-
"isOptional": true
|
|
10104
|
-
}
|
|
10105
|
-
]
|
|
10106
|
-
},
|
|
10107
|
-
"SparklineColumnApi": {
|
|
10108
|
-
"name": "SparklineColumnApi",
|
|
10109
|
-
"kind": "Interface",
|
|
10110
|
-
"description": "Provides run-time access to Sparkline Column Module and associated state",
|
|
10111
|
-
"properties": [
|
|
10112
|
-
{
|
|
10113
|
-
"name": "getAllSparklineColumn",
|
|
10114
|
-
"kind": "function",
|
|
10115
|
-
"description": "Returns all Sparkline columns in Adaptable State",
|
|
10116
|
-
"uiLabel": "Get All Sparkline Column"
|
|
10117
|
-
},
|
|
10118
|
-
{
|
|
10119
|
-
"name": "getSparklineByColumn",
|
|
10120
|
-
"kind": "function",
|
|
10121
|
-
"description": "Returns a Sparkline column by id",
|
|
10122
|
-
"uiLabel": "Get Sparkline By Column"
|
|
10123
|
-
},
|
|
10124
|
-
{
|
|
10125
|
-
"name": "getSparklineColumnState",
|
|
10126
|
-
"kind": "function",
|
|
10127
|
-
"description": "Retrieves SparklineColumn section from Adaptable State",
|
|
10128
|
-
"uiLabel": "Get Sparkline Column State"
|
|
10129
|
-
},
|
|
10130
|
-
{
|
|
10131
|
-
"name": "isSparklineColumn",
|
|
10132
|
-
"kind": "function",
|
|
10133
|
-
"description": "True if the Column with given `columnId` is Sparkline Column",
|
|
10134
|
-
"uiLabel": "Is Sparkline Column"
|
|
10135
|
-
}
|
|
10136
|
-
]
|
|
10137
|
-
},
|
|
10138
|
-
"SparklineColumnState": {
|
|
10139
|
-
"name": "SparklineColumnState",
|
|
10140
|
-
"kind": "Interface",
|
|
10141
|
-
"description": "Predefined Configuration for Sparkline Columns",
|
|
10142
|
-
"properties": [
|
|
10143
|
-
{
|
|
10144
|
-
"name": "SparklineColumns",
|
|
10145
|
-
"kind": "unknown",
|
|
10146
|
-
"description": "List of columns to be displayed as Sparkline",
|
|
10147
|
-
"uiLabel": "Sparkline Columns",
|
|
10148
|
-
"isOptional": true
|
|
10149
|
-
}
|
|
10150
|
-
]
|
|
10151
|
-
},
|
|
10152
10107
|
"SpecialColumnSettings": {
|
|
10153
10108
|
"name": "SpecialColumnSettings",
|
|
10154
10109
|
"kind": "Interface",
|
|
@@ -10162,6 +10117,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10162
10117
|
"isOptional": true,
|
|
10163
10118
|
"defaultValue": "true"
|
|
10164
10119
|
},
|
|
10120
|
+
{
|
|
10121
|
+
"name": "ColumnTypes",
|
|
10122
|
+
"kind": "unknown",
|
|
10123
|
+
"description": "Custom column types to be added to AG Grid Column Types when object is created",
|
|
10124
|
+
"uiLabel": "Column Types",
|
|
10125
|
+
"isOptional": true
|
|
10126
|
+
},
|
|
10165
10127
|
{
|
|
10166
10128
|
"name": "Filterable",
|
|
10167
10129
|
"kind": "boolean",
|
|
@@ -10506,7 +10468,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10506
10468
|
{
|
|
10507
10469
|
"name": "updateNotification",
|
|
10508
10470
|
"kind": "unknown",
|
|
10509
|
-
"description": "How user is informed when Active Shared Entities have newer revisions
|
|
10471
|
+
"description": "How user is informed when Active Shared Entities have newer revisions",
|
|
10510
10472
|
"uiLabel": "Update Notification",
|
|
10511
10473
|
"isOptional": true,
|
|
10512
10474
|
"gridInfo": "item",
|
|
@@ -10638,7 +10600,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10638
10600
|
"properties": [
|
|
10639
10601
|
{
|
|
10640
10602
|
"name": "CurrentTheme",
|
|
10641
|
-
"kind": "
|
|
10603
|
+
"kind": "unknown",
|
|
10642
10604
|
"description": "Name of current theme (or theme to set at startup); leave blank if using 'Light Theme', set to 'dark' for 'Dark Theme' or provide name of Custom Theme",
|
|
10643
10605
|
"uiLabel": "Current Theme",
|
|
10644
10606
|
"isOptional": true
|
|
@@ -10796,24 +10758,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10796
10758
|
"gridInfo": "item",
|
|
10797
10759
|
"defaultValue": "true"
|
|
10798
10760
|
},
|
|
10799
|
-
{
|
|
10800
|
-
"name": "showColumnsDropdown",
|
|
10801
|
-
"kind": "boolean",
|
|
10802
|
-
"description": "Display the Columns dropdown",
|
|
10803
|
-
"uiLabel": "Show Columns Dropdown",
|
|
10804
|
-
"isOptional": true,
|
|
10805
|
-
"gridInfo": "item",
|
|
10806
|
-
"defaultValue": "true"
|
|
10807
|
-
},
|
|
10808
|
-
{
|
|
10809
|
-
"name": "showModulesDropdown",
|
|
10810
|
-
"kind": "boolean",
|
|
10811
|
-
"description": "Display the Modules dropdown",
|
|
10812
|
-
"uiLabel": "Show Modules Dropdown",
|
|
10813
|
-
"isOptional": true,
|
|
10814
|
-
"gridInfo": "item",
|
|
10815
|
-
"defaultValue": "true"
|
|
10816
|
-
},
|
|
10817
10761
|
{
|
|
10818
10762
|
"name": "showToolPanelsDropdown",
|
|
10819
10763
|
"kind": "boolean",
|
|
@@ -10991,6 +10935,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10991
10935
|
"uiLabel": "Color Palette",
|
|
10992
10936
|
"isOptional": true
|
|
10993
10937
|
},
|
|
10938
|
+
{
|
|
10939
|
+
"name": "columnTypes",
|
|
10940
|
+
"kind": "unknown",
|
|
10941
|
+
"description": "Optional list of Column Types - used primarily for special columns",
|
|
10942
|
+
"uiLabel": "Column Types",
|
|
10943
|
+
"isOptional": true
|
|
10944
|
+
},
|
|
10994
10945
|
{
|
|
10995
10946
|
"name": "customSortPermittedValues",
|
|
10996
10947
|
"kind": "unknown",
|
|
@@ -11083,7 +11034,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11083
11034
|
"UserMenuItem": {
|
|
11084
11035
|
"name": "UserMenuItem",
|
|
11085
11036
|
"kind": "Interface",
|
|
11086
|
-
"description": "Menu Item
|
|
11037
|
+
"description": "Menu Item which is added to Column Header or Context Menu, and can contain sub items",
|
|
11087
11038
|
"properties": [
|
|
11088
11039
|
{
|
|
11089
11040
|
"name": "disabled",
|
|
@@ -11102,14 +11053,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11102
11053
|
{
|
|
11103
11054
|
"name": "icon",
|
|
11104
11055
|
"kind": "string",
|
|
11105
|
-
"description": "Optional icon to
|
|
11056
|
+
"description": "Optional icon to display",
|
|
11106
11057
|
"uiLabel": "Icon",
|
|
11107
11058
|
"isOptional": true
|
|
11108
11059
|
},
|
|
11109
11060
|
{
|
|
11110
11061
|
"name": "label",
|
|
11111
11062
|
"kind": "unknown",
|
|
11112
|
-
"description": "
|
|
11063
|
+
"description": "Text that will appear in the Menu Item",
|
|
11113
11064
|
"uiLabel": "Label"
|
|
11114
11065
|
},
|
|
11115
11066
|
{
|
|
@@ -11122,7 +11073,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11122
11073
|
{
|
|
11123
11074
|
"name": "subMenuItems",
|
|
11124
11075
|
"kind": "unknown",
|
|
11125
|
-
"description": "Array of Menu Items, enabling
|
|
11076
|
+
"description": "Array of Menu Items, enabling limitless levels of menus",
|
|
11126
11077
|
"uiLabel": "Sub Menu Items",
|
|
11127
11078
|
"isOptional": true
|
|
11128
11079
|
}
|