@adaptabletools/adaptable 12.1.5 → 12.1.8-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +11 -49
- package/bundle.cjs.js +106 -106
- package/index.css +13 -60
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -4
- package/src/AdaptableOptions/ColumnOptions.d.ts +2 -4
- package/src/AdaptableOptions/FilterOptions.d.ts +19 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +22 -1
- package/src/AdaptableOptions/StateOptions.d.ts +25 -12
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +31 -24
- package/src/Api/ColumnApi.d.ts +6 -1
- package/src/Api/ExportApi.d.ts +5 -0
- package/src/Api/FilterApi.d.ts +29 -0
- package/src/Api/FlashingCellApi.d.ts +8 -0
- package/src/Api/GridApi.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
- package/src/Api/Implementation/ColumnApiImpl.js +7 -2
- package/src/Api/Implementation/DataSetApiImpl.js +1 -1
- package/src/Api/Implementation/ExportApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ExportApiImpl.js +19 -3
- package/src/Api/Implementation/FilterApiImpl.d.ts +6 -0
- package/src/Api/Implementation/FilterApiImpl.js +42 -4
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +4 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -0
- package/src/Api/Implementation/GridApiImpl.js +4 -4
- package/src/Api/Implementation/InternalApiImpl.d.ts +0 -1
- package/src/Api/Implementation/InternalApiImpl.js +0 -3
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -1
- package/src/Api/Implementation/LayoutApiImpl.js +4 -3
- package/src/Api/Implementation/PredicateApiImpl.js +4 -0
- package/src/Api/Implementation/QueryApiImpl.js +1 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.js +9 -1
- package/src/Api/Implementation/TeamSharingApiImpl.js +1 -1
- package/src/Api/InternalApi.d.ts +0 -1
- package/src/Api/LayoutApi.d.ts +1 -1
- package/src/Api/SystemStatusApi.d.ts +1 -1
- package/src/Api/ToolPanelApi.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableColumn.js +3 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +30 -10
- package/src/PredefinedConfig/Common/AdaptableQuery.js +1 -1
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +6 -0
- package/src/PredefinedConfig/Common/AggregationColumns.js +4 -0
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
- package/src/PredefinedConfig/Common/Enums.d.ts +0 -15
- package/src/PredefinedConfig/Common/Enums.js +1 -18
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +6 -6
- package/src/PredefinedConfig/ExportState.d.ts +12 -4
- package/src/PredefinedConfig/LayoutState.d.ts +2 -1
- package/src/PredefinedConfig/PopupState.d.ts +1 -2
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/AlertRedux.js +1 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +1 -1
- package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/CustomSortRedux.js +1 -1
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +1 -1
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +28 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +80 -2
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +1 -1
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +0 -2
- package/src/Redux/ActionsReducers/PopupRedux.js +1 -28
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/ScheduleRedux.js +5 -5
- package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ShortcutRedux.js +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +1 -2
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -2
- package/src/Redux/Store/AdaptableStore.js +30 -16
- package/src/Strategy/AlertModule.d.ts +1 -0
- package/src/Strategy/AlertModule.js +20 -0
- package/src/Strategy/CalculatedColumnModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +0 -1
- package/src/Strategy/ExportModule.js +0 -16
- package/src/Strategy/FilterModule.js +6 -0
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/Interface/IModule.d.ts +4 -0
- package/src/Strategy/LayoutModule.js +20 -20
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +16 -1
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +15 -11
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -0
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +12 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +30 -66
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +22 -6
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +423 -220
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +7 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +23 -7
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +0 -1
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +6 -54
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +17 -5
- package/src/Utilities/Extensions/ArrayExtensions.js +6 -0
- package/src/Utilities/Helpers/CalendarHelper.js +10 -7
- package/src/Utilities/Helpers/DateHelper.d.ts +0 -26
- package/src/Utilities/Helpers/DateHelper.js +2 -32
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -4
- package/src/Utilities/ObjectFactory.d.ts +6 -4
- package/src/Utilities/ObjectFactory.js +30 -17
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +25 -0
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +103 -0
- package/src/Utilities/Services/AlertService.d.ts +0 -1
- package/src/Utilities/Services/AlertService.js +5 -17
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +4 -4
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +29 -154
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +2 -2
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +6 -3
- package/src/Utilities/Services/QueryLanguageService.d.ts +6 -3
- package/src/Utilities/Services/QueryLanguageService.js +23 -6
- package/src/Utilities/Services/ReportService.js +47 -46
- package/src/View/AdaptableView.js +1 -2
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingsTags.d.ts +2 -0
- package/src/View/CalculatedColumn/Utilities/{getCalculatedColumnSettingTags.js → getCalculatedColumnSettingsTags.js} +5 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.d.ts +10 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +80 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +21 -15
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +10 -53
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +14 -3
- package/src/View/Components/AdaptableDateInput/index.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +42 -6
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +26 -5
- package/src/View/Components/FilterForm/FilterForm.js +10 -5
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -0
- package/src/View/Components/FilterForm/QuickFilterForm.js +12 -7
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +9 -0
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +28 -0
- package/src/View/Components/PermittedValuesSelector/index.d.ts +1 -0
- package/src/View/Components/PermittedValuesSelector/index.js +5 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +2 -2
- package/src/View/Components/Popups/AdaptableToaster.js +2 -7
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +0 -1
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +1 -4
- package/src/View/Export/ExportViewPanel.d.ts +1 -2
- package/src/View/Export/ExportViewPanel.js +2 -6
- package/src/View/Export/Wizard/ReportColumnTypeWizard.d.ts +1 -2
- package/src/View/Export/Wizard/ReportColumnTypeWizard.js +11 -12
- package/src/View/Export/Wizard/ReportRowTypeWizard.d.ts +1 -2
- package/src/View/Export/Wizard/ReportRowTypeWizard.js +12 -13
- package/src/View/Export/Wizard/ReportSettingsWizard.js +1 -2
- package/src/View/Filter/FilterViewPanel.js +20 -4
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +1 -1
- package/src/View/Layout/Wizard/{LayoutEditor → Components}/ColumnLabels.d.ts +0 -0
- package/src/View/Layout/Wizard/{LayoutEditor → Components}/ColumnLabels.js +0 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +1 -0
- package/src/View/Layout/Wizard/sections/AggregationsSection.d.ts +1 -0
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +69 -8
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
- package/src/View/Query/QueryViewPanel.js +1 -1
- package/src/agGrid/Adaptable.d.ts +12 -3
- package/src/agGrid/Adaptable.js +225 -152
- package/src/agGrid/agGridHelper.d.ts +1 -0
- package/src/agGrid/agGridHelper.js +5 -3
- package/src/agGrid/agGridMenuHelper.d.ts +1 -0
- package/src/agGrid/agGridMenuHelper.js +4 -2
- package/src/agGrid/weightedAverage.d.ts +6 -0
- package/src/agGrid/weightedAverage.js +66 -0
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -0
- package/src/components/ExpressionEditor/BaseEditorInput.js +2 -3
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +24 -4
- package/src/components/ExpressionEditor/{EditorInputReactive.d.ts → EditorInputWithWhereClause.d.ts} +3 -3
- package/src/components/ExpressionEditor/{EditorInputReactive.js → EditorInputWithWhereClause.js} +6 -5
- package/src/components/ExpressionEditor/editorButtonsAggregatedBoolean.d.ts +2 -0
- package/src/components/ExpressionEditor/{editorButtonsReactive.js → editorButtonsAggregatedBoolean.js} +22 -37
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +5 -10
- package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsCumulativeAggregatedScalar.js +50 -0
- package/src/components/ExpressionEditor/editorButtonsObservable.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsObservable.js +40 -0
- package/src/components/ExpressionEditor/index.d.ts +1 -1
- package/src/components/ExpressionEditor/index.js +26 -5
- package/src/components/ProgressIndicator/ProgressIndicator.js +10 -12
- package/src/metamodel/adaptable.metamodel.d.ts +129 -7
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +1 -1
- package/src/types.d.ts +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.d.ts +0 -2
- package/src/View/Layout/LayoutEditorStandalonePopup.d.ts +0 -3
- package/src/View/Layout/LayoutEditorStandalonePopup.js +0 -78
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.d.ts +0 -27
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +0 -86
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.d.ts +0 -16
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +0 -89
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.d.ts +0 -15
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +0 -70
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.d.ts +0 -15
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +0 -70
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.d.ts +0 -7
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.js +0 -11
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.d.ts +0 -6
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +0 -26
- package/src/View/Layout/Wizard/LayoutEditor/index.d.ts +0 -9
- package/src/View/Layout/Wizard/LayoutEditor/index.js +0 -367
- package/src/View/Layout/Wizard/LayoutEditor/reducer.d.ts +0 -28
- package/src/View/Layout/Wizard/LayoutEditor/reducer.js +0 -46
- package/src/View/Layout/Wizard/LayoutEditor/utils.d.ts +0 -10
- package/src/View/Layout/Wizard/LayoutEditor/utils.js +0 -14
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +0 -30
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +0 -132
- package/src/components/ExpressionEditor/editorButtonsReactive.d.ts +0 -2
|
@@ -245,6 +245,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
245
245
|
reference: string;
|
|
246
246
|
}[];
|
|
247
247
|
};
|
|
248
|
+
AdaptableClearStateFunction: {
|
|
249
|
+
name: string;
|
|
250
|
+
kind: string;
|
|
251
|
+
description: string;
|
|
252
|
+
};
|
|
248
253
|
AdaptableColumn: {
|
|
249
254
|
name: string;
|
|
250
255
|
kind: string;
|
|
@@ -733,6 +738,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
733
738
|
reference: string;
|
|
734
739
|
}[];
|
|
735
740
|
};
|
|
741
|
+
AdaptableSaveStateFunction: {
|
|
742
|
+
name: string;
|
|
743
|
+
kind: string;
|
|
744
|
+
description: string;
|
|
745
|
+
};
|
|
736
746
|
AdaptableScope: {
|
|
737
747
|
name: string;
|
|
738
748
|
kind: string;
|
|
@@ -783,6 +793,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
783
793
|
reference: string;
|
|
784
794
|
})[];
|
|
785
795
|
};
|
|
796
|
+
AdaptableStateFunctionConfig: {
|
|
797
|
+
name: string;
|
|
798
|
+
kind: string;
|
|
799
|
+
description: string;
|
|
800
|
+
properties: ({
|
|
801
|
+
name: string;
|
|
802
|
+
kind: string;
|
|
803
|
+
description: string;
|
|
804
|
+
uiLabel: string;
|
|
805
|
+
isOptional?: undefined;
|
|
806
|
+
} | {
|
|
807
|
+
name: string;
|
|
808
|
+
kind: string;
|
|
809
|
+
description: string;
|
|
810
|
+
uiLabel: string;
|
|
811
|
+
isOptional: boolean;
|
|
812
|
+
})[];
|
|
813
|
+
};
|
|
786
814
|
AdaptableStatusBar: {
|
|
787
815
|
name: string;
|
|
788
816
|
kind: string;
|
|
@@ -1142,6 +1170,23 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1142
1170
|
name: string;
|
|
1143
1171
|
kind: string;
|
|
1144
1172
|
description: string;
|
|
1173
|
+
properties: {
|
|
1174
|
+
name: string;
|
|
1175
|
+
kind: string;
|
|
1176
|
+
description: string;
|
|
1177
|
+
uiLabel: string;
|
|
1178
|
+
}[];
|
|
1179
|
+
};
|
|
1180
|
+
BulkUpdatePermittedValuesContext: {
|
|
1181
|
+
name: string;
|
|
1182
|
+
kind: string;
|
|
1183
|
+
description: string;
|
|
1184
|
+
properties: {
|
|
1185
|
+
name: string;
|
|
1186
|
+
kind: string;
|
|
1187
|
+
description: string;
|
|
1188
|
+
uiLabel: string;
|
|
1189
|
+
}[];
|
|
1145
1190
|
};
|
|
1146
1191
|
ButtonStyle: {
|
|
1147
1192
|
name: string;
|
|
@@ -1188,6 +1233,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1188
1233
|
uiLabel: string;
|
|
1189
1234
|
isOptional: boolean;
|
|
1190
1235
|
reference?: undefined;
|
|
1236
|
+
} | {
|
|
1237
|
+
name: string;
|
|
1238
|
+
kind: string;
|
|
1239
|
+
description: string;
|
|
1240
|
+
uiLabel: string;
|
|
1241
|
+
reference: string;
|
|
1242
|
+
isOptional?: undefined;
|
|
1191
1243
|
})[];
|
|
1192
1244
|
};
|
|
1193
1245
|
CalculatedColumnApi: {
|
|
@@ -1210,7 +1262,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1210
1262
|
kind: string;
|
|
1211
1263
|
description: string;
|
|
1212
1264
|
uiLabel: string;
|
|
1213
|
-
isOptional
|
|
1265
|
+
isOptional?: undefined;
|
|
1214
1266
|
defaultValue?: undefined;
|
|
1215
1267
|
} | {
|
|
1216
1268
|
name: string;
|
|
@@ -1379,11 +1431,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1379
1431
|
kind: string;
|
|
1380
1432
|
description: string;
|
|
1381
1433
|
};
|
|
1382
|
-
CellValuesList: {
|
|
1383
|
-
name: string;
|
|
1384
|
-
kind: string;
|
|
1385
|
-
description: string;
|
|
1386
|
-
};
|
|
1387
1434
|
ChartDefinition: {
|
|
1388
1435
|
name: string;
|
|
1389
1436
|
kind: string;
|
|
@@ -1987,6 +2034,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1987
2034
|
name: string;
|
|
1988
2035
|
kind: string;
|
|
1989
2036
|
description: string;
|
|
2037
|
+
properties: {
|
|
2038
|
+
name: string;
|
|
2039
|
+
kind: string;
|
|
2040
|
+
description: string;
|
|
2041
|
+
uiLabel: string;
|
|
2042
|
+
}[];
|
|
1990
2043
|
};
|
|
1991
2044
|
CustomSortState: {
|
|
1992
2045
|
name: string;
|
|
@@ -2398,10 +2451,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2398
2451
|
reference?: undefined;
|
|
2399
2452
|
})[];
|
|
2400
2453
|
};
|
|
2454
|
+
EditLookUpContext: {
|
|
2455
|
+
name: string;
|
|
2456
|
+
kind: string;
|
|
2457
|
+
description: string;
|
|
2458
|
+
properties: {
|
|
2459
|
+
name: string;
|
|
2460
|
+
kind: string;
|
|
2461
|
+
description: string;
|
|
2462
|
+
uiLabel: string;
|
|
2463
|
+
isOptional: boolean;
|
|
2464
|
+
reference: string;
|
|
2465
|
+
}[];
|
|
2466
|
+
};
|
|
2401
2467
|
EditLookUpPermittedValues: {
|
|
2402
2468
|
name: string;
|
|
2403
2469
|
kind: string;
|
|
2404
2470
|
description: string;
|
|
2471
|
+
properties: {
|
|
2472
|
+
name: string;
|
|
2473
|
+
kind: string;
|
|
2474
|
+
description: string;
|
|
2475
|
+
uiLabel: string;
|
|
2476
|
+
isOptional: boolean;
|
|
2477
|
+
}[];
|
|
2405
2478
|
};
|
|
2406
2479
|
EditOptions: {
|
|
2407
2480
|
name: string;
|
|
@@ -2757,13 +2830,31 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2757
2830
|
name: string;
|
|
2758
2831
|
kind: string;
|
|
2759
2832
|
description: string;
|
|
2760
|
-
properties: {
|
|
2833
|
+
properties: ({
|
|
2761
2834
|
name: string;
|
|
2762
2835
|
kind: string;
|
|
2763
2836
|
description: string;
|
|
2764
2837
|
uiLabel: string;
|
|
2765
2838
|
isOptional: boolean;
|
|
2766
2839
|
defaultValue: string;
|
|
2840
|
+
} | {
|
|
2841
|
+
name: string;
|
|
2842
|
+
kind: string;
|
|
2843
|
+
description: string;
|
|
2844
|
+
uiLabel: string;
|
|
2845
|
+
isOptional?: undefined;
|
|
2846
|
+
defaultValue?: undefined;
|
|
2847
|
+
})[];
|
|
2848
|
+
};
|
|
2849
|
+
FilterPermittedValuesContext: {
|
|
2850
|
+
name: string;
|
|
2851
|
+
kind: string;
|
|
2852
|
+
description: string;
|
|
2853
|
+
properties: {
|
|
2854
|
+
name: string;
|
|
2855
|
+
kind: string;
|
|
2856
|
+
description: string;
|
|
2857
|
+
uiLabel: string;
|
|
2767
2858
|
}[];
|
|
2768
2859
|
};
|
|
2769
2860
|
FinanceApi: {
|
|
@@ -3419,12 +3510,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3419
3510
|
description: string;
|
|
3420
3511
|
uiLabel: string;
|
|
3421
3512
|
isOptional: boolean;
|
|
3513
|
+
reference: string;
|
|
3514
|
+
} | {
|
|
3515
|
+
name: string;
|
|
3516
|
+
kind: string;
|
|
3517
|
+
description: string;
|
|
3518
|
+
uiLabel: string;
|
|
3519
|
+
isOptional: boolean;
|
|
3520
|
+
reference?: undefined;
|
|
3422
3521
|
} | {
|
|
3423
3522
|
name: string;
|
|
3424
3523
|
kind: string;
|
|
3425
3524
|
description: string;
|
|
3426
3525
|
uiLabel: string;
|
|
3427
3526
|
isOptional?: undefined;
|
|
3527
|
+
reference?: undefined;
|
|
3428
3528
|
})[];
|
|
3429
3529
|
};
|
|
3430
3530
|
LayoutApi: {
|
|
@@ -3821,6 +3921,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3821
3921
|
isOptional: boolean;
|
|
3822
3922
|
}[];
|
|
3823
3923
|
};
|
|
3924
|
+
PermittedValuesContext: {
|
|
3925
|
+
name: string;
|
|
3926
|
+
kind: string;
|
|
3927
|
+
description: string;
|
|
3928
|
+
properties: {
|
|
3929
|
+
name: string;
|
|
3930
|
+
kind: string;
|
|
3931
|
+
description: string;
|
|
3932
|
+
uiLabel: string;
|
|
3933
|
+
reference: string;
|
|
3934
|
+
}[];
|
|
3935
|
+
};
|
|
3824
3936
|
PluginsApi: {
|
|
3825
3937
|
name: string;
|
|
3826
3938
|
kind: string;
|
|
@@ -4118,6 +4230,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4118
4230
|
isOptional?: undefined;
|
|
4119
4231
|
})[];
|
|
4120
4232
|
};
|
|
4233
|
+
ReportColumnScope: {
|
|
4234
|
+
name: string;
|
|
4235
|
+
kind: string;
|
|
4236
|
+
description: string;
|
|
4237
|
+
};
|
|
4121
4238
|
ReportContext: {
|
|
4122
4239
|
name: string;
|
|
4123
4240
|
kind: string;
|
|
@@ -4141,6 +4258,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4141
4258
|
uiLabel: string;
|
|
4142
4259
|
}[];
|
|
4143
4260
|
};
|
|
4261
|
+
ReportRowScope: {
|
|
4262
|
+
name: string;
|
|
4263
|
+
kind: string;
|
|
4264
|
+
description: string;
|
|
4265
|
+
};
|
|
4144
4266
|
ReportSchedule: {
|
|
4145
4267
|
name: string;
|
|
4146
4268
|
kind: string;
|