@adaptabletools/adaptable 14.0.2 → 14.0.4
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 +7 -1
- package/base.css.map +1 -1
- package/bundle.cjs.js +170 -169
- package/index.css +76 -62
- package/index.css.map +1 -1
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +3 -0
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +3 -0
- package/src/AdaptableOptions/AdaptablePlugin.js +3 -0
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +6 -5
- package/src/AdaptableOptions/ChartingOptions.d.ts +1 -1
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +26 -26
- package/src/AdaptableOptions/ExportOptions.d.ts +17 -3
- package/src/AdaptableOptions/ExpressionOptions.d.ts +18 -18
- package/src/AdaptableOptions/PredicateOptions.d.ts +4 -4
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +5 -3
- package/src/Api/ActionApi.d.ts +2 -2
- package/src/Api/CalculatedColumnApi.d.ts +9 -0
- package/src/Api/ChartingApi.d.ts +41 -14
- package/src/Api/ColumnApi.d.ts +4 -0
- package/src/Api/DataSetApi.d.ts +2 -2
- package/src/Api/EventApi.d.ts +15 -1
- package/src/Api/Events/ChartStateChangeInfo.d.ts +5 -0
- package/src/Api/Events/ChartStateChangeInfo.js +2 -0
- package/src/Api/ExportApi.d.ts +5 -0
- package/src/Api/FilterApi.d.ts +10 -8
- package/src/Api/Implementation/ActionApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ActionApiImpl.js +3 -3
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +2 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +24 -0
- package/src/Api/Implementation/ChartingApiImpl.d.ts +16 -2
- package/src/Api/Implementation/ChartingApiImpl.js +54 -2
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +3 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ExportApiImpl.js +10 -0
- package/src/Api/Implementation/FilterApiImpl.js +0 -2
- package/src/Api/Implementation/PredicateApiImpl.d.ts +6 -4
- package/src/Api/Implementation/PredicateApiImpl.js +20 -1
- package/src/Api/Implementation/QueryApiImpl.js +8 -2
- package/src/Api/Internal/AdaptableInternalApi.d.ts +7 -1
- package/src/Api/Internal/AdaptableInternalApi.js +2 -1
- package/src/Api/Internal/AlertInternalApi.js +1 -1
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/CalculatedColumnInternalApi.js +9 -0
- package/src/Api/Internal/ChartingInternalApi.d.ts +6 -0
- package/src/Api/Internal/ChartingInternalApi.js +24 -0
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +5 -0
- package/src/Api/Internal/FormatColumnInternalApi.js +25 -1
- package/src/Api/PredicateApi.d.ts +17 -1
- package/src/PredefinedConfig/AlertState.d.ts +5 -2
- package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +6 -0
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +15 -11
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +6 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +6 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +15 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -1
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +3 -0
- package/src/PredefinedConfig/Common/Types.d.ts +21 -6
- package/src/PredefinedConfig/Common/Types.js +1 -3
- package/src/PredefinedConfig/ExportState.d.ts +2 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +3 -2
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +4 -4
- package/src/PredefinedConfig/StyledColumnState.d.ts +1 -1
- package/src/PredefinedConfig/ThemeState.d.ts +0 -4
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +2 -0
- package/src/Redux/ActionsReducers/PopupRedux.js +2 -0
- package/src/Redux/ActionsReducers/StatusBarRedux.d.ts +2 -2
- package/src/Redux/ActionsReducers/StatusBarRedux.js +4 -4
- package/src/Redux/Store/AdaptableStore.js +1 -11
- package/src/Strategy/AlertModule.js +7 -3
- package/src/Strategy/ChartingModule.js +5 -3
- package/src/Strategy/ExportModule.d.ts +1 -0
- package/src/Strategy/ExportModule.js +43 -0
- package/src/Strategy/FlashingCellModule.js +1 -1
- package/src/Strategy/FormatColumnModule.js +7 -2
- package/src/Strategy/Interface/IModule.d.ts +1 -1
- package/src/Strategy/LayoutModule.js +8 -1
- package/src/Strategy/StyledColumnModule.js +5 -0
- package/src/Strategy/ThemeModule.js +8 -2
- package/src/Strategy/Utilities/Alert/getAlertPreviewViewItems.js +2 -2
- package/src/Strategy/Utilities/Alert/getAlertTypeViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/Alert/getAlertTypeViewItems.js +13 -0
- package/src/Strategy/Utilities/getObjectTagsViewItems.js +3 -3
- package/src/Utilities/Constants/ModuleConstants.d.ts +0 -3
- package/src/Utilities/Constants/ModuleConstants.js +2 -5
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -1
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +3 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +64 -3
- package/src/Utilities/Interface/MessagePopups.d.ts +1 -0
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +13 -0
- package/src/Utilities/Services/ChartingService.d.ts +8 -0
- package/src/Utilities/Services/ChartingService.js +15 -0
- package/src/Utilities/Services/ReportService.js +1 -1
- package/src/View/AdaptableViewFactory.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +5 -4
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +6 -5
- package/src/View/Alert/Utilities/getAlertType.d.ts +15 -0
- package/src/View/Alert/Utilities/getAlertType.js +58 -0
- package/src/View/Alert/Utilities/getAvailablePredicates.d.ts +3 -0
- package/src/View/Alert/Utilities/getAvailablePredicates.js +19 -0
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +37 -0
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.js +32 -0
- package/src/View/Alert/Utilities/mapAlertDefinition.d.ts +2 -0
- package/src/View/Alert/Utilities/mapAlertDefinition.js +38 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +4 -2
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +18 -11
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +2 -0
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +15 -6
- package/src/View/Alert/Wizard/AlertMessageWizardSection.d.ts +10 -0
- package/src/View/Alert/Wizard/AlertMessageWizardSection.js +57 -0
- package/src/View/Alert/Wizard/{AlertDisplayWizardSection.d.ts → AlertNotificationWizardSection.d.ts} +7 -5
- package/src/View/Alert/Wizard/{AlertDisplayWizardSection.js → AlertNotificationWizardSection.js} +12 -50
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +7 -4
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +66 -6
- package/src/View/Alert/Wizard/AlertScopeWizardSection.d.ts +2 -0
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +41 -2
- package/src/View/Alert/Wizard/AlertTypeWizardSection.d.ts +9 -0
- package/src/View/Alert/Wizard/AlertTypeWizardSection.js +27 -0
- package/src/View/Alert/Wizard/AlertWizard.js +53 -98
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +1 -6
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +4 -39
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +1 -1
- package/src/View/{Components/Charting → Charting}/ChartingStatusBarPopover.d.ts +0 -0
- package/src/View/{Components/Charting → Charting}/ChartingStatusBarPopover.js +2 -2
- package/src/View/{Components/Charting → Charting}/ChartingViewPanel.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/ChartingViewPanel.js +0 -0
- package/src/View/{Components/Charting → Charting}/ChartingWizard/ChartingWizard.d.ts +2 -2
- package/src/View/{Components/Charting → Charting}/ChartingWizard/ChartingWizard.js +12 -2
- package/src/View/{Components/Charting → Charting}/ChartingWizard/PreviewChartSection.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/ChartingWizard/PreviewChartSection.js +2 -2
- package/src/View/{Components/Charting → Charting}/ChartingWizard/SettingsSection.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/ChartingWizard/SettingsSection.js +4 -4
- package/src/View/{Components/Charting → Charting}/DeleteChartButton.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/DeleteChartButton.js +3 -3
- package/src/View/{Components/Charting → Charting}/EditChartButton.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/EditChartButton.js +3 -3
- package/src/View/{Components/Charting → Charting}/ShowChartButton.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/ShowChartButton.js +5 -5
- package/src/View/{Components/Charting → Charting}/useChartState.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/useChartState.js +5 -5
- package/src/View/{Components/Charting → Charting}/useChartingElements.d.ts +1 -1
- package/src/View/{Components/Charting → Charting}/useChartingElements.js +6 -6
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.d.ts +12 -0
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.js +85 -0
- package/src/View/Components/EntityRulesEditor/{PredicatesEditor.d.ts → EntityRulePredicatesEditor/EntityRulePredicatesEditor.d.ts} +6 -4
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.js +87 -0
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/index.d.ts +1 -0
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/index.js +5 -0
- package/src/View/Components/EntityRulesEditor/Utilities.js +7 -1
- package/src/View/Components/EntityRulesEditor/index.d.ts +4 -2
- package/src/View/Components/EntityRulesEditor/index.js +27 -10
- package/src/View/Components/FilterForm/FilterForm.js +6 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +13 -9
- package/src/View/Components/NewScopeComponent.d.ts +9 -5
- package/src/View/Components/NewScopeComponent.js +19 -10
- package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -2
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -0
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +4 -1
- package/src/View/Components/PredicateEditor/PredicateEditor.js +16 -5
- package/src/View/Components/PreviewResultsPanel.js +30 -3
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -0
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +1 -1
- package/src/View/Export/ExportTablePopup.d.ts +3 -0
- package/src/View/Export/ExportTablePopup.js +59 -0
- package/src/View/Export/Wizard/NewReportWizard.js +1 -1
- package/src/View/Export/Wizard/ReportColumnsWizardSection.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +1 -1
- package/src/View/GridInfo/GridInfoPopup.js +4 -4
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +1 -1
- package/src/View/Query/Wizard/NamedQueryWizard.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleWizard.js +1 -1
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +1 -1
- package/src/View/StatusBar/StatusBarPanel.d.ts +3 -4
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +7 -4
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +5 -5
- package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
- package/src/View/Theme/ThemeStatusPanelPopover.js +10 -2
- package/src/View/Wizard/TypeRadio.d.ts +7 -0
- package/src/View/Wizard/TypeRadio.js +12 -0
- package/src/agGrid/Adaptable.d.ts +3 -1
- package/src/agGrid/Adaptable.js +28 -4
- package/src/agGrid/agGridHelper.d.ts +1 -0
- package/src/agGrid/agGridHelper.js +15 -0
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +4 -0
- package/src/components/ExpressionEditor/editorButtonsAggregatedBoolean.js +5 -0
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +5 -0
- package/src/components/icons/index.js +4 -0
- package/src/components/icons/visibility-off.d.ts +3 -0
- package/src/components/icons/visibility-off.js +7 -0
- package/src/components/icons/visibility.d.ts +3 -0
- package/src/components/icons/visibility.js +8 -0
- package/src/metamodel/adaptable.metamodel.d.ts +139 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +0 -9
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +0 -30
- package/src/View/Components/EntityRulesEditor/PredicatesEditor.js +0 -86
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
+
React.createElement("path", { d: "M12 16q1.875 0 3.188-1.312Q16.5 13.375 16.5 11.5q0-1.875-1.312-3.188Q13.875 7 12 7q-1.875 0-3.188 1.312Q7.5 9.625 7.5 11.5q0 1.875 1.312 3.188Q10.125 16 12 16Zm0-1.8q-1.125 0-1.912-.788Q9.3 12.625 9.3 11.5t.788-1.913Q10.875 8.8 12 8.8t1.913.787q.787.788.787 1.913t-.787 1.912q-.788.788-1.913.788Zm0 4.8q-3.65 0-6.65-2.038-3-2.037-4.35-5.462 1.35-3.425 4.35-5.463Q8.35 4 12 4q3.65 0 6.65 2.037 3 2.038 4.35 5.463-1.35 3.425-4.35 5.462Q15.65 19 12 19Zm0-7.5Zm0 5.5q2.825 0 5.188-1.488Q19.55 14.025 20.8 11.5q-1.25-2.525-3.612-4.013Q14.825 6 12 6 9.175 6 6.812 7.487 4.45 8.975 3.2 11.5q1.25 2.525 3.612 4.012Q9.175 17 12 17Z" }),
|
|
8
|
+
' '));
|
|
@@ -119,6 +119,28 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
119
119
|
reference: string;
|
|
120
120
|
}[];
|
|
121
121
|
};
|
|
122
|
+
ActionRowButtonOptions: {
|
|
123
|
+
name: string;
|
|
124
|
+
kind: string;
|
|
125
|
+
description: string;
|
|
126
|
+
properties: ({
|
|
127
|
+
name: string;
|
|
128
|
+
kind: string;
|
|
129
|
+
description: string;
|
|
130
|
+
uiLabel: string;
|
|
131
|
+
isOptional: boolean;
|
|
132
|
+
defaultValue: string;
|
|
133
|
+
reference: string;
|
|
134
|
+
} | {
|
|
135
|
+
name: string;
|
|
136
|
+
kind: string;
|
|
137
|
+
description: string;
|
|
138
|
+
uiLabel: string;
|
|
139
|
+
isOptional: boolean;
|
|
140
|
+
defaultValue: string;
|
|
141
|
+
reference?: undefined;
|
|
142
|
+
})[];
|
|
143
|
+
};
|
|
122
144
|
ActionRowButtonsContext: {
|
|
123
145
|
name: string;
|
|
124
146
|
kind: string;
|
|
@@ -174,11 +196,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
174
196
|
kind: string;
|
|
175
197
|
description: string;
|
|
176
198
|
};
|
|
199
|
+
AdaptableAggregatedBooleanQuery: {
|
|
200
|
+
name: string;
|
|
201
|
+
kind: string;
|
|
202
|
+
description: string;
|
|
203
|
+
};
|
|
204
|
+
AdaptableAggregatedScalarQuery: {
|
|
205
|
+
name: string;
|
|
206
|
+
kind: string;
|
|
207
|
+
description: string;
|
|
208
|
+
};
|
|
177
209
|
AdaptableAlert: {
|
|
178
210
|
name: string;
|
|
179
211
|
kind: string;
|
|
180
212
|
description: string;
|
|
181
213
|
};
|
|
214
|
+
AdaptableAlertAction: {
|
|
215
|
+
name: string;
|
|
216
|
+
kind: string;
|
|
217
|
+
description: string;
|
|
218
|
+
};
|
|
182
219
|
AdaptableAlertBase: {
|
|
183
220
|
name: string;
|
|
184
221
|
kind: string;
|
|
@@ -202,6 +239,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
202
239
|
kind: string;
|
|
203
240
|
description: string;
|
|
204
241
|
};
|
|
242
|
+
AdaptableAlertType: {
|
|
243
|
+
name: string;
|
|
244
|
+
kind: string;
|
|
245
|
+
description: string;
|
|
246
|
+
};
|
|
205
247
|
AdaptableApi: {
|
|
206
248
|
name: string;
|
|
207
249
|
kind: string;
|
|
@@ -240,6 +282,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
240
282
|
reference: string;
|
|
241
283
|
})[];
|
|
242
284
|
};
|
|
285
|
+
AdaptableBooleanQuery: {
|
|
286
|
+
name: string;
|
|
287
|
+
kind: string;
|
|
288
|
+
description: string;
|
|
289
|
+
};
|
|
243
290
|
AdaptableButton: {
|
|
244
291
|
name: string;
|
|
245
292
|
kind: string;
|
|
@@ -324,6 +371,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
324
371
|
kind: string;
|
|
325
372
|
description: string;
|
|
326
373
|
};
|
|
374
|
+
AdaptableColumnType: {
|
|
375
|
+
name: string;
|
|
376
|
+
kind: string;
|
|
377
|
+
description: string;
|
|
378
|
+
};
|
|
327
379
|
AdaptableComparerFunction: {
|
|
328
380
|
name: string;
|
|
329
381
|
kind: string;
|
|
@@ -443,6 +495,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
443
495
|
kind: string;
|
|
444
496
|
description: string;
|
|
445
497
|
};
|
|
498
|
+
AdaptableFormData: {
|
|
499
|
+
name: string;
|
|
500
|
+
kind: string;
|
|
501
|
+
description: string;
|
|
502
|
+
};
|
|
446
503
|
AdaptableFormField: {
|
|
447
504
|
name: string;
|
|
448
505
|
kind: string;
|
|
@@ -470,11 +527,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
470
527
|
reference?: undefined;
|
|
471
528
|
})[];
|
|
472
529
|
};
|
|
530
|
+
AdaptableFormFieldType: {
|
|
531
|
+
name: string;
|
|
532
|
+
kind: string;
|
|
533
|
+
description: string;
|
|
534
|
+
};
|
|
473
535
|
AdaptableFrameworkComponent: {
|
|
474
536
|
name: string;
|
|
475
537
|
kind: string;
|
|
476
538
|
description: string;
|
|
477
539
|
};
|
|
540
|
+
AdaptableGenericAlert: {
|
|
541
|
+
name: string;
|
|
542
|
+
kind: string;
|
|
543
|
+
description: string;
|
|
544
|
+
};
|
|
478
545
|
AdaptableIcon: {
|
|
479
546
|
name: string;
|
|
480
547
|
kind: string;
|
|
@@ -547,6 +614,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
547
614
|
kind: string;
|
|
548
615
|
description: string;
|
|
549
616
|
};
|
|
617
|
+
AdaptableModuleButton: {
|
|
618
|
+
name: string;
|
|
619
|
+
kind: string;
|
|
620
|
+
description: string;
|
|
621
|
+
};
|
|
550
622
|
AdaptableObject: {
|
|
551
623
|
name: string;
|
|
552
624
|
kind: string;
|
|
@@ -592,6 +664,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
592
664
|
kind: string;
|
|
593
665
|
description: string;
|
|
594
666
|
};
|
|
667
|
+
AdaptableObservableQuery: {
|
|
668
|
+
name: string;
|
|
669
|
+
kind: string;
|
|
670
|
+
description: string;
|
|
671
|
+
};
|
|
595
672
|
AdaptableOptions: {
|
|
596
673
|
name: string;
|
|
597
674
|
kind: string;
|
|
@@ -698,6 +775,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
698
775
|
kind: string;
|
|
699
776
|
description: string;
|
|
700
777
|
};
|
|
778
|
+
AdaptablePlugin: {
|
|
779
|
+
name: string;
|
|
780
|
+
kind: string;
|
|
781
|
+
description: string;
|
|
782
|
+
};
|
|
701
783
|
AdaptablePredicate: {
|
|
702
784
|
name: string;
|
|
703
785
|
kind: string;
|
|
@@ -743,6 +825,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
743
825
|
reference?: undefined;
|
|
744
826
|
})[];
|
|
745
827
|
};
|
|
828
|
+
AdaptableQLModule: {
|
|
829
|
+
name: string;
|
|
830
|
+
kind: string;
|
|
831
|
+
description: string;
|
|
832
|
+
};
|
|
746
833
|
AdaptableQLOptions: {
|
|
747
834
|
name: string;
|
|
748
835
|
kind: string;
|
|
@@ -777,6 +864,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
777
864
|
defaultValue: string;
|
|
778
865
|
gridInfo?: undefined;
|
|
779
866
|
reference?: undefined;
|
|
867
|
+
} | {
|
|
868
|
+
name: string;
|
|
869
|
+
kind: string;
|
|
870
|
+
description: string;
|
|
871
|
+
uiLabel: string;
|
|
872
|
+
isOptional: boolean;
|
|
873
|
+
defaultValue: string;
|
|
874
|
+
gridInfo?: undefined;
|
|
875
|
+
noCode?: undefined;
|
|
876
|
+
reference?: undefined;
|
|
780
877
|
} | {
|
|
781
878
|
name: string;
|
|
782
879
|
kind: string;
|
|
@@ -823,6 +920,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
823
920
|
kind: string;
|
|
824
921
|
description: string;
|
|
825
922
|
};
|
|
923
|
+
AdaptableScalarQuery: {
|
|
924
|
+
name: string;
|
|
925
|
+
kind: string;
|
|
926
|
+
description: string;
|
|
927
|
+
};
|
|
826
928
|
AdaptableScope: {
|
|
827
929
|
name: string;
|
|
828
930
|
kind: string;
|
|
@@ -839,6 +941,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
839
941
|
uiLabel: string;
|
|
840
942
|
}[];
|
|
841
943
|
};
|
|
944
|
+
AdaptableSettingsPanel: {
|
|
945
|
+
name: string;
|
|
946
|
+
kind: string;
|
|
947
|
+
description: string;
|
|
948
|
+
};
|
|
842
949
|
AdaptableSortState: {
|
|
843
950
|
name: string;
|
|
844
951
|
kind: string;
|
|
@@ -920,6 +1027,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
920
1027
|
isOptional: boolean;
|
|
921
1028
|
})[];
|
|
922
1029
|
};
|
|
1030
|
+
AdaptableStatusBarPanel: {
|
|
1031
|
+
name: string;
|
|
1032
|
+
kind: string;
|
|
1033
|
+
description: string;
|
|
1034
|
+
};
|
|
923
1035
|
AdaptableStyle: {
|
|
924
1036
|
name: string;
|
|
925
1037
|
kind: string;
|
|
@@ -950,6 +1062,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
950
1062
|
isOptional?: undefined;
|
|
951
1063
|
})[];
|
|
952
1064
|
};
|
|
1065
|
+
AdaptableToolPanel: {
|
|
1066
|
+
name: string;
|
|
1067
|
+
kind: string;
|
|
1068
|
+
description: string;
|
|
1069
|
+
};
|
|
953
1070
|
AdaptableToolPanelDefinition: {
|
|
954
1071
|
name: string;
|
|
955
1072
|
kind: string;
|
|
@@ -1873,6 +1990,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1873
1990
|
defaultValue: string;
|
|
1874
1991
|
}[];
|
|
1875
1992
|
};
|
|
1993
|
+
ContextData: {
|
|
1994
|
+
name: string;
|
|
1995
|
+
kind: string;
|
|
1996
|
+
description: string;
|
|
1997
|
+
};
|
|
1876
1998
|
ContextMenuContext: {
|
|
1877
1999
|
name: string;
|
|
1878
2000
|
kind: string;
|
|
@@ -2731,6 +2853,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2731
2853
|
uiLabel: string;
|
|
2732
2854
|
}[];
|
|
2733
2855
|
};
|
|
2856
|
+
ExportableColumnContext: {
|
|
2857
|
+
name: string;
|
|
2858
|
+
kind: string;
|
|
2859
|
+
description: string;
|
|
2860
|
+
properties: {
|
|
2861
|
+
name: string;
|
|
2862
|
+
kind: string;
|
|
2863
|
+
description: string;
|
|
2864
|
+
uiLabel: string;
|
|
2865
|
+
reference: string;
|
|
2866
|
+
}[];
|
|
2867
|
+
};
|
|
2734
2868
|
ExportApi: {
|
|
2735
2869
|
name: string;
|
|
2736
2870
|
kind: string;
|
|
@@ -3607,6 +3741,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3607
3741
|
uiLabel: string;
|
|
3608
3742
|
}[];
|
|
3609
3743
|
};
|
|
3744
|
+
GridInfoSection: {
|
|
3745
|
+
name: string;
|
|
3746
|
+
kind: string;
|
|
3747
|
+
description: string;
|
|
3748
|
+
};
|
|
3610
3749
|
GridRow: {
|
|
3611
3750
|
name: string;
|
|
3612
3751
|
kind: string;
|