@adaptabletools/adaptable 12.0.1-canary.0 → 12.0.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 +5 -18
- package/bundle.cjs.js +107 -107
- package/index.css +6 -22
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -2
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -1
- package/src/AdaptableOptions/EditOptions.d.ts +6 -9
- package/src/AdaptableOptions/ExportOptions.d.ts +15 -0
- package/src/AdaptableOptions/Glue42PluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +1 -3
- package/src/AdaptableOptions/StateOptions.d.ts +9 -23
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +34 -1
- package/src/Api/ChartingApi.d.ts +19 -2
- package/src/Api/FilterApi.d.ts +7 -2
- package/src/Api/FinanceApi.d.ts +8 -8
- package/src/Api/FormatColumnApi.d.ts +6 -6
- package/src/Api/GridApi.d.ts +1 -1
- package/src/Api/Implementation/ChartingApiImpl.d.ts +6 -0
- package/src/Api/Implementation/ChartingApiImpl.js +17 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ConfigApiImpl.js +11 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FilterApiImpl.js +5 -0
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +3 -3
- package/src/Api/Implementation/FormatColumnApiImpl.js +13 -11
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
- package/src/Api/Implementation/GridApiImpl.js +2 -2
- package/src/Api/Implementation/InternalApiImpl.js +1 -2
- package/src/Api/Implementation/LayoutApiImpl.js +1 -1
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +1 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +5 -0
- package/src/Api/StatusBarApi.d.ts +3 -0
- package/src/Api/TeamSharingApi.d.ts +4 -0
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +0 -5
- package/src/PredefinedConfig/ChartingState.d.ts +20 -0
- package/src/PredefinedConfig/ChartingState.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +4 -1
- package/src/PredefinedConfig/Common/CellSummary.d.ts +3 -0
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +9 -0
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +12 -3
- package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +1 -2
- package/src/PredefinedConfig/Common/FilterActionOnDataChange.js +1 -2
- package/src/PredefinedConfig/Common/Types.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +6 -0
- package/src/PredefinedConfig/FormatColumnState.d.ts +4 -1
- package/src/PredefinedConfig/IPushPullState.d.ts +16 -5
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
- package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
- package/src/PredefinedConfig/TeamSharingState.d.ts +6 -0
- package/src/Redux/ActionsReducers/ChartingRedux.d.ts +23 -0
- package/src/Redux/ActionsReducers/ChartingRedux.js +38 -0
- package/src/Redux/ActionsReducers/GridRedux.d.ts +30 -1
- package/src/Redux/ActionsReducers/GridRedux.js +105 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +10 -11
- package/src/Redux/ActionsReducers/LayoutRedux.js +13 -10
- package/src/Redux/Store/AdaptableStore.js +39 -8
- package/src/Strategy/AdaptableModuleBase.d.ts +4 -0
- package/src/Strategy/AdaptableModuleBase.js +6 -0
- package/src/Strategy/AlertModule.js +3 -3
- package/src/Strategy/ChartingModule.js +1 -1
- package/src/Strategy/DashboardModule.js +1 -0
- package/src/Strategy/ExportModule.js +1 -0
- package/src/Strategy/FlashingCellModule.js +3 -3
- package/src/Strategy/FormatColumnModule.js +3 -3
- package/src/Strategy/GridInfoModule.js +2 -0
- package/src/Strategy/Interface/IModule.d.ts +11 -1
- package/src/Strategy/LayoutModule.js +2 -0
- package/src/Strategy/TeamSharingModule.d.ts +11 -1
- package/src/Strategy/TeamSharingModule.js +104 -0
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +3 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +3 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +3 -0
- package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
- package/src/Utilities/Helpers/FormatHelper.js +7 -3
- package/src/Utilities/Helpers/Helper.js +1 -1
- package/src/Utilities/ObjectFactory.d.ts +5 -1
- package/src/Utilities/ObjectFactory.js +12 -2
- package/src/Utilities/Services/Interface/IReportService.d.ts +1 -1
- package/src/Utilities/Services/ReportService.d.ts +1 -1
- package/src/Utilities/Services/ReportService.js +5 -5
- package/src/Utilities/Services/TeamSharingService.js +0 -2
- package/src/View/AdaptableViewFactory.js +0 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +2 -9
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +13 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +17 -14
- package/src/View/Components/Buttons/ButtonDelete.js +3 -3
- package/src/View/Components/FilterForm/QuickFilterForm.js +22 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +4 -0
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +13 -9
- package/src/View/Layout/LayoutEditorStandalonePopup.js +3 -1
- package/src/View/Layout/LayoutPopup.d.ts +1 -1
- package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +2 -27
- package/src/View/TeamSharing/SharedEntityDependencies.d.ts +8 -0
- package/src/View/TeamSharing/SharedEntityDependencies.js +27 -0
- package/src/View/TeamSharing/SharedEntityObjectView.d.ts +9 -0
- package/src/View/TeamSharing/SharedEntityObjectView.js +84 -0
- package/src/View/TeamSharing/TeamSharingApplyButton.d.ts +6 -0
- package/src/View/TeamSharing/TeamSharingApplyButton.js +15 -0
- package/src/agGrid/Adaptable.d.ts +4 -2
- package/src/agGrid/Adaptable.js +37 -22
- package/src/components/icons/index.js +0 -4
- package/src/metamodel/adaptable.metamodel.d.ts +224 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +4 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/View/Alert/AlertSharedEntity.d.ts +0 -5
- package/src/View/Alert/AlertSharedEntity.js +0 -19
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.d.ts +0 -5
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +0 -20
- package/src/View/ConditionalStyle/ConditionalStyleSharedEntity.d.ts +0 -5
- package/src/View/ConditionalStyle/ConditionalStyleSharedEntity.js +0 -23
- package/src/View/CustomSort/CustomSortSharedEntity.d.ts +0 -6
- package/src/View/CustomSort/CustomSortSharedEntity.js +0 -24
- package/src/View/Export/ExportSharedEntity.d.ts +0 -5
- package/src/View/Export/ExportSharedEntity.js +0 -16
- package/src/View/Filter/FilterSharedEntity.d.ts +0 -5
- package/src/View/Filter/FilterSharedEntity.js +0 -15
- package/src/View/FormatColumn/FormatColumnSharedEntity.d.ts +0 -5
- package/src/View/FormatColumn/FormatColumnSharedEntity.js +0 -18
- package/src/View/FreeTextColumn/FreeTextColumnSharedEntity.d.ts +0 -5
- package/src/View/FreeTextColumn/FreeTextColumnSharedEntity.js +0 -24
- package/src/View/Layout/LayoutSharedEntity.d.ts +0 -5
- package/src/View/Layout/LayoutSharedEntity.js +0 -15
- package/src/View/PlusMinus/PlusMinusSharedEntity.d.ts +0 -5
- package/src/View/PlusMinus/PlusMinusSharedEntity.js +0 -21
- package/src/View/Query/NamedQuerySharedEntity.d.ts +0 -5
- package/src/View/Query/NamedQuerySharedEntity.js +0 -19
- package/src/View/Shortcut/ShortcutSharedEntity.d.ts +0 -5
- package/src/View/Shortcut/ShortcutSharedEntity.js +0 -19
- package/src/View/TeamSharing/TeamSharingPopup.d.ts +0 -23
- package/src/View/TeamSharing/TeamSharingPopup.js +0 -163
|
@@ -466,6 +466,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
466
466
|
reference?: undefined;
|
|
467
467
|
})[];
|
|
468
468
|
};
|
|
469
|
+
AdaptableInternalIconName: {
|
|
470
|
+
name: string;
|
|
471
|
+
kind: string;
|
|
472
|
+
description: string;
|
|
473
|
+
};
|
|
469
474
|
AdaptableLoadStateFunction: {
|
|
470
475
|
name: string;
|
|
471
476
|
kind: string;
|
|
@@ -846,6 +851,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
846
851
|
defaultValue: string;
|
|
847
852
|
})[];
|
|
848
853
|
};
|
|
854
|
+
AggregatedScalarFunctionName: {
|
|
855
|
+
name: string;
|
|
856
|
+
kind: string;
|
|
857
|
+
description: string;
|
|
858
|
+
};
|
|
859
|
+
AggregationFunctionName: {
|
|
860
|
+
name: string;
|
|
861
|
+
kind: string;
|
|
862
|
+
description: string;
|
|
863
|
+
};
|
|
849
864
|
AlertApi: {
|
|
850
865
|
name: string;
|
|
851
866
|
kind: string;
|
|
@@ -1107,6 +1122,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1107
1122
|
reference: string;
|
|
1108
1123
|
}[];
|
|
1109
1124
|
};
|
|
1125
|
+
BooleanFunctionName: {
|
|
1126
|
+
name: string;
|
|
1127
|
+
kind: string;
|
|
1128
|
+
description: string;
|
|
1129
|
+
};
|
|
1110
1130
|
BulkUpdateApi: {
|
|
1111
1131
|
name: string;
|
|
1112
1132
|
kind: string;
|
|
@@ -1315,6 +1335,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1315
1335
|
uiLabel: string;
|
|
1316
1336
|
}[];
|
|
1317
1337
|
};
|
|
1338
|
+
CellSummaryOperation: {
|
|
1339
|
+
name: string;
|
|
1340
|
+
kind: string;
|
|
1341
|
+
description: string;
|
|
1342
|
+
properties: {
|
|
1343
|
+
name: string;
|
|
1344
|
+
kind: string;
|
|
1345
|
+
description: string;
|
|
1346
|
+
uiLabel: string;
|
|
1347
|
+
}[];
|
|
1348
|
+
};
|
|
1318
1349
|
CellSummaryOperationContext: {
|
|
1319
1350
|
name: string;
|
|
1320
1351
|
kind: string;
|
|
@@ -1343,11 +1374,51 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1343
1374
|
kind: string;
|
|
1344
1375
|
description: string;
|
|
1345
1376
|
};
|
|
1377
|
+
CellTextOptions: {
|
|
1378
|
+
name: string;
|
|
1379
|
+
kind: string;
|
|
1380
|
+
description: string;
|
|
1381
|
+
};
|
|
1346
1382
|
CellValuesList: {
|
|
1347
1383
|
name: string;
|
|
1348
1384
|
kind: string;
|
|
1349
1385
|
description: string;
|
|
1350
1386
|
};
|
|
1387
|
+
ChartDefinition: {
|
|
1388
|
+
name: string;
|
|
1389
|
+
kind: string;
|
|
1390
|
+
description: string;
|
|
1391
|
+
properties: {
|
|
1392
|
+
name: string;
|
|
1393
|
+
kind: string;
|
|
1394
|
+
description: string;
|
|
1395
|
+
uiLabel: string;
|
|
1396
|
+
reference: string;
|
|
1397
|
+
}[];
|
|
1398
|
+
};
|
|
1399
|
+
ChartingApi: {
|
|
1400
|
+
name: string;
|
|
1401
|
+
kind: string;
|
|
1402
|
+
description: string;
|
|
1403
|
+
properties: {
|
|
1404
|
+
name: string;
|
|
1405
|
+
kind: string;
|
|
1406
|
+
description: string;
|
|
1407
|
+
uiLabel: string;
|
|
1408
|
+
}[];
|
|
1409
|
+
};
|
|
1410
|
+
ChartingState: {
|
|
1411
|
+
name: string;
|
|
1412
|
+
kind: string;
|
|
1413
|
+
description: string;
|
|
1414
|
+
properties: {
|
|
1415
|
+
name: string;
|
|
1416
|
+
kind: string;
|
|
1417
|
+
description: string;
|
|
1418
|
+
uiLabel: string;
|
|
1419
|
+
isOptional: boolean;
|
|
1420
|
+
}[];
|
|
1421
|
+
};
|
|
1351
1422
|
CheckboxColumnClickedInfo: {
|
|
1352
1423
|
name: string;
|
|
1353
1424
|
kind: string;
|
|
@@ -1406,6 +1477,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1406
1477
|
reference: string;
|
|
1407
1478
|
})[];
|
|
1408
1479
|
};
|
|
1480
|
+
ColumnFilterPredicate: {
|
|
1481
|
+
name: string;
|
|
1482
|
+
kind: string;
|
|
1483
|
+
description: string;
|
|
1484
|
+
};
|
|
1409
1485
|
ColumnFriendlyNameContext: {
|
|
1410
1486
|
name: string;
|
|
1411
1487
|
kind: string;
|
|
@@ -1791,6 +1867,29 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1791
1867
|
isOptional?: undefined;
|
|
1792
1868
|
})[];
|
|
1793
1869
|
};
|
|
1870
|
+
CustomDisplayFormatter: {
|
|
1871
|
+
name: string;
|
|
1872
|
+
kind: string;
|
|
1873
|
+
description: string;
|
|
1874
|
+
};
|
|
1875
|
+
CustomDisplayFormatterContext: {
|
|
1876
|
+
name: string;
|
|
1877
|
+
kind: string;
|
|
1878
|
+
description: string;
|
|
1879
|
+
properties: ({
|
|
1880
|
+
name: string;
|
|
1881
|
+
kind: string;
|
|
1882
|
+
description: string;
|
|
1883
|
+
uiLabel: string;
|
|
1884
|
+
reference: string;
|
|
1885
|
+
} | {
|
|
1886
|
+
name: string;
|
|
1887
|
+
kind: string;
|
|
1888
|
+
description: string;
|
|
1889
|
+
uiLabel: string;
|
|
1890
|
+
reference?: undefined;
|
|
1891
|
+
})[];
|
|
1892
|
+
};
|
|
1794
1893
|
CustomFDC3Column: {
|
|
1795
1894
|
name: string;
|
|
1796
1895
|
kind: string;
|
|
@@ -1802,6 +1901,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1802
1901
|
uiLabel: string;
|
|
1803
1902
|
}[];
|
|
1804
1903
|
};
|
|
1904
|
+
CustomFDC3Context: {
|
|
1905
|
+
name: string;
|
|
1906
|
+
kind: string;
|
|
1907
|
+
description: string;
|
|
1908
|
+
};
|
|
1805
1909
|
CustomFDC3Intent: {
|
|
1806
1910
|
name: string;
|
|
1807
1911
|
kind: string;
|
|
@@ -2317,8 +2421,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2317
2421
|
description: string;
|
|
2318
2422
|
uiLabel: string;
|
|
2319
2423
|
isOptional: boolean;
|
|
2320
|
-
defaultValue: string;
|
|
2321
2424
|
gridInfo?: undefined;
|
|
2425
|
+
defaultValue?: undefined;
|
|
2322
2426
|
})[];
|
|
2323
2427
|
};
|
|
2324
2428
|
EntitlementOptions: {
|
|
@@ -2557,6 +2661,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2557
2661
|
isOptional?: undefined;
|
|
2558
2662
|
})[];
|
|
2559
2663
|
};
|
|
2664
|
+
FDC3ContextType: {
|
|
2665
|
+
name: string;
|
|
2666
|
+
kind: string;
|
|
2667
|
+
description: string;
|
|
2668
|
+
};
|
|
2560
2669
|
FDC3Intent: {
|
|
2561
2670
|
name: string;
|
|
2562
2671
|
kind: string;
|
|
@@ -3247,11 +3356,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3247
3356
|
name: string;
|
|
3248
3357
|
kind: string;
|
|
3249
3358
|
description: string;
|
|
3359
|
+
properties: {
|
|
3360
|
+
name: string;
|
|
3361
|
+
kind: string;
|
|
3362
|
+
description: string;
|
|
3363
|
+
uiLabel: string;
|
|
3364
|
+
}[];
|
|
3250
3365
|
};
|
|
3251
3366
|
IPushPullSchedule: {
|
|
3252
3367
|
name: string;
|
|
3253
3368
|
kind: string;
|
|
3254
3369
|
description: string;
|
|
3370
|
+
properties: ({
|
|
3371
|
+
name: string;
|
|
3372
|
+
kind: string;
|
|
3373
|
+
description: string;
|
|
3374
|
+
uiLabel: string;
|
|
3375
|
+
reference: string;
|
|
3376
|
+
} | {
|
|
3377
|
+
name: string;
|
|
3378
|
+
kind: string;
|
|
3379
|
+
description: string;
|
|
3380
|
+
uiLabel: string;
|
|
3381
|
+
reference?: undefined;
|
|
3382
|
+
})[];
|
|
3255
3383
|
};
|
|
3256
3384
|
IPushPullState: {
|
|
3257
3385
|
name: string;
|
|
@@ -3515,6 +3643,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3515
3643
|
isOptional: boolean;
|
|
3516
3644
|
}[];
|
|
3517
3645
|
};
|
|
3646
|
+
ObservableFunctionName: {
|
|
3647
|
+
name: string;
|
|
3648
|
+
kind: string;
|
|
3649
|
+
description: string;
|
|
3650
|
+
};
|
|
3518
3651
|
OpenFinApi: {
|
|
3519
3652
|
name: string;
|
|
3520
3653
|
kind: string;
|
|
@@ -3942,6 +4075,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3942
4075
|
reference: string;
|
|
3943
4076
|
})[];
|
|
3944
4077
|
};
|
|
4078
|
+
ReportContext: {
|
|
4079
|
+
name: string;
|
|
4080
|
+
kind: string;
|
|
4081
|
+
description: string;
|
|
4082
|
+
properties: {
|
|
4083
|
+
name: string;
|
|
4084
|
+
kind: string;
|
|
4085
|
+
description: string;
|
|
4086
|
+
uiLabel: string;
|
|
4087
|
+
reference: string;
|
|
4088
|
+
}[];
|
|
4089
|
+
};
|
|
3945
4090
|
ReportData: {
|
|
3946
4091
|
name: string;
|
|
3947
4092
|
kind: string;
|
|
@@ -3985,6 +4130,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3985
4130
|
isOptional: boolean;
|
|
3986
4131
|
}[];
|
|
3987
4132
|
};
|
|
4133
|
+
ScalarFunctionName: {
|
|
4134
|
+
name: string;
|
|
4135
|
+
kind: string;
|
|
4136
|
+
description: string;
|
|
4137
|
+
};
|
|
3988
4138
|
Schedule: {
|
|
3989
4139
|
name: string;
|
|
3990
4140
|
kind: string;
|
|
@@ -4149,6 +4299,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4149
4299
|
reference: string;
|
|
4150
4300
|
})[];
|
|
4151
4301
|
};
|
|
4302
|
+
SharedEntityConfig: {
|
|
4303
|
+
name: string;
|
|
4304
|
+
kind: string;
|
|
4305
|
+
description: string;
|
|
4306
|
+
};
|
|
4152
4307
|
Shortcut: {
|
|
4153
4308
|
name: string;
|
|
4154
4309
|
kind: string;
|
|
@@ -4204,6 +4359,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4204
4359
|
kind: string;
|
|
4205
4360
|
description: string;
|
|
4206
4361
|
};
|
|
4362
|
+
SmartEditOperation: {
|
|
4363
|
+
name: string;
|
|
4364
|
+
kind: string;
|
|
4365
|
+
description: string;
|
|
4366
|
+
};
|
|
4207
4367
|
SmartEditOperationContext: {
|
|
4208
4368
|
name: string;
|
|
4209
4369
|
kind: string;
|
|
@@ -4252,7 +4412,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4252
4412
|
description: string;
|
|
4253
4413
|
uiLabel: string;
|
|
4254
4414
|
isOptional: boolean;
|
|
4255
|
-
defaultValue
|
|
4415
|
+
defaultValue?: undefined;
|
|
4256
4416
|
reference?: undefined;
|
|
4257
4417
|
} | {
|
|
4258
4418
|
name: string;
|
|
@@ -4262,8 +4422,35 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4262
4422
|
isOptional: boolean;
|
|
4263
4423
|
defaultValue: string;
|
|
4264
4424
|
reference: string;
|
|
4425
|
+
} | {
|
|
4426
|
+
name: string;
|
|
4427
|
+
kind: string;
|
|
4428
|
+
description: string;
|
|
4429
|
+
uiLabel: string;
|
|
4430
|
+
isOptional: boolean;
|
|
4431
|
+
defaultValue: string;
|
|
4432
|
+
reference?: undefined;
|
|
4433
|
+
} | {
|
|
4434
|
+
name: string;
|
|
4435
|
+
kind: string;
|
|
4436
|
+
description: string;
|
|
4437
|
+
uiLabel: string;
|
|
4438
|
+
isOptional: boolean;
|
|
4439
|
+
reference: string;
|
|
4440
|
+
defaultValue?: undefined;
|
|
4265
4441
|
})[];
|
|
4266
4442
|
};
|
|
4443
|
+
StatusBarApi: {
|
|
4444
|
+
name: string;
|
|
4445
|
+
kind: string;
|
|
4446
|
+
description: string;
|
|
4447
|
+
properties: {
|
|
4448
|
+
name: string;
|
|
4449
|
+
kind: string;
|
|
4450
|
+
description: string;
|
|
4451
|
+
uiLabel: string;
|
|
4452
|
+
}[];
|
|
4453
|
+
};
|
|
4267
4454
|
StatusBarState: {
|
|
4268
4455
|
name: string;
|
|
4269
4456
|
kind: string;
|
|
@@ -4301,6 +4488,36 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4301
4488
|
isOptional: boolean;
|
|
4302
4489
|
}[];
|
|
4303
4490
|
};
|
|
4491
|
+
SystemExportDestination: {
|
|
4492
|
+
name: string;
|
|
4493
|
+
kind: string;
|
|
4494
|
+
description: string;
|
|
4495
|
+
};
|
|
4496
|
+
SystemExportDestinations: {
|
|
4497
|
+
name: string;
|
|
4498
|
+
kind: string;
|
|
4499
|
+
description: string;
|
|
4500
|
+
};
|
|
4501
|
+
SystemFilterPredicateId: {
|
|
4502
|
+
name: string;
|
|
4503
|
+
kind: string;
|
|
4504
|
+
description: string;
|
|
4505
|
+
};
|
|
4506
|
+
SystemFilterPredicateIds: {
|
|
4507
|
+
name: string;
|
|
4508
|
+
kind: string;
|
|
4509
|
+
description: string;
|
|
4510
|
+
};
|
|
4511
|
+
SystemReportName: {
|
|
4512
|
+
name: string;
|
|
4513
|
+
kind: string;
|
|
4514
|
+
description: string;
|
|
4515
|
+
};
|
|
4516
|
+
SystemReportNames: {
|
|
4517
|
+
name: string;
|
|
4518
|
+
kind: string;
|
|
4519
|
+
description: string;
|
|
4520
|
+
};
|
|
4304
4521
|
SystemStatusApi: {
|
|
4305
4522
|
name: string;
|
|
4306
4523
|
kind: string;
|
|
@@ -4374,6 +4591,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4374
4591
|
reference: string;
|
|
4375
4592
|
}[];
|
|
4376
4593
|
};
|
|
4594
|
+
TeamSharingImportInfo: {
|
|
4595
|
+
name: string;
|
|
4596
|
+
kind: string;
|
|
4597
|
+
description: string;
|
|
4598
|
+
};
|
|
4377
4599
|
TeamSharingOptions: {
|
|
4378
4600
|
name: string;
|
|
4379
4601
|
kind: string;
|