@sapui5/ts-types 1.122.2 → 1.123.1
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/package.json +1 -1
- package/types/index.d.ts +5 -5
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +404 -3
- package/types/sap.chart.d.ts +58 -3
- package/types/sap.collaboration.d.ts +52 -3
- package/types/sap.esh.search.ui.d.ts +2152 -2
- package/types/sap.f.d.ts +432 -46
- package/types/sap.fe.core.d.ts +20 -15
- package/types/sap.fe.macros.d.ts +1048 -21
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +8 -6
- package/types/sap.fe.test.d.ts +288 -7
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1067 -15
- package/types/sap.insights.d.ts +4 -1
- package/types/{mobile-1.122.0-d.ts → sap.m.d.ts} +3962 -124
- package/types/sap.makit.d.ts +115 -2
- package/types/sap.me.d.ts +84 -2
- package/types/sap.ndc.d.ts +22 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +44 -8
- package/types/sap.sac.df.d.ts +111 -60
- package/types/sap.suite.ui.commons.d.ts +1148 -2174
- package/types/sap.suite.ui.generic.template.d.ts +10 -1
- package/types/sap.suite.ui.microchart.d.ts +190 -2
- package/types/sap.tnt.d.ts +46 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/{commons-1.122.0-d.ts → sap.ui.commons.d.ts} +792 -30
- package/types/sap.ui.comp.d.ts +964 -86
- package/types/{core-1.122.0-d.ts → sap.ui.core.d.ts} +2194 -1540
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +22 -4
- package/types/sap.ui.fl.d.ts +40 -1
- package/types/sap.ui.generic.app.d.ts +217 -203
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +147 -5
- package/types/sap.ui.layout.d.ts +171 -8
- package/types/sap.ui.mdc.d.ts +554 -33
- package/types/sap.ui.richtexteditor.d.ts +28 -2
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -57
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -9
- package/types/{ux3-1.122.0-d.ts → sap.ui.ux3.d.ts} +527 -5
- package/types/sap.ui.vbm.d.ts +544 -2
- package/types/sap.ui.vk.d.ts +1580 -39
- package/types/sap.ui.vtm.d.ts +373 -2
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uiext.inbox.d.ts +124 -2
- package/types/sap.ushell.d.ts +1001 -322
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +123 -6
- package/types/sap.viz.d.ts +2619 -5
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +35 -10
- package/types/sap.zen.crosstab.d.ts +22 -7
- package/types/sap.zen.dsh.d.ts +64 -8
- package/types/dt-1.122.0-d.ts +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -357,6 +357,9 @@ declare namespace sap {
|
|
|
357
357
|
): Promise<any>;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
+
/**
|
|
361
|
+
* Describes the settings that can be provided to the Extension constructor.
|
|
362
|
+
*/
|
|
360
363
|
interface $ExtensionSettings
|
|
361
364
|
extends sap.ui.integration.$ExtensionSettings {}
|
|
362
365
|
|
|
@@ -749,6 +752,9 @@ declare namespace sap {
|
|
|
749
752
|
validateControls(): boolean;
|
|
750
753
|
}
|
|
751
754
|
|
|
755
|
+
/**
|
|
756
|
+
* Describes the settings that can be provided to the Card constructor.
|
|
757
|
+
*/
|
|
752
758
|
interface $CardSettings extends sap.f.$CardBaseSettings {
|
|
753
759
|
/**
|
|
754
760
|
* Optional property which can be used by the host to reference the card. It will be forwarded to any children
|
|
@@ -947,6 +953,12 @@ declare namespace sap {
|
|
|
947
953
|
stateChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
948
954
|
}
|
|
949
955
|
|
|
956
|
+
/**
|
|
957
|
+
* Parameters of the Card#action event.
|
|
958
|
+
*
|
|
959
|
+
* @experimental (since 1.64) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
960
|
+
* be done before its official public release. Use at your own discretion.
|
|
961
|
+
*/
|
|
950
962
|
interface Card$ActionEventParameters {
|
|
951
963
|
/**
|
|
952
964
|
* The action source.
|
|
@@ -969,6 +981,11 @@ declare namespace sap {
|
|
|
969
981
|
type?: sap.ui.integration.CardActionType;
|
|
970
982
|
}
|
|
971
983
|
|
|
984
|
+
/**
|
|
985
|
+
* Parameters of the Card#configurationChange event.
|
|
986
|
+
*
|
|
987
|
+
* @experimental (since 1.96)
|
|
988
|
+
*/
|
|
972
989
|
interface Card$ConfigurationChangeEventParameters {
|
|
973
990
|
/**
|
|
974
991
|
* Changed configuration settings.
|
|
@@ -985,10 +1002,23 @@ declare namespace sap {
|
|
|
985
1002
|
changes?: object;
|
|
986
1003
|
}
|
|
987
1004
|
|
|
1005
|
+
/**
|
|
1006
|
+
* Parameters of the Card#manifestApplied event.
|
|
1007
|
+
*/
|
|
988
1008
|
interface Card$ManifestAppliedEventParameters {}
|
|
989
1009
|
|
|
1010
|
+
/**
|
|
1011
|
+
* Parameters of the Card#manifestReady event.
|
|
1012
|
+
*
|
|
1013
|
+
* @experimental (since 1.72)
|
|
1014
|
+
*/
|
|
990
1015
|
interface Card$ManifestReadyEventParameters {}
|
|
991
1016
|
|
|
1017
|
+
/**
|
|
1018
|
+
* Parameters of the Card#stateChanged event.
|
|
1019
|
+
*
|
|
1020
|
+
* @experimental (since 1.107)
|
|
1021
|
+
*/
|
|
992
1022
|
interface Card$StateChangedEventParameters {}
|
|
993
1023
|
|
|
994
1024
|
/**
|
|
@@ -2278,32 +2308,61 @@ declare namespace sap {
|
|
|
2278
2308
|
validateControls(): boolean;
|
|
2279
2309
|
}
|
|
2280
2310
|
|
|
2311
|
+
/**
|
|
2312
|
+
* Event object of the Card#action event.
|
|
2313
|
+
*
|
|
2314
|
+
* @experimental (since 1.64) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
2315
|
+
* be done before its official public release. Use at your own discretion.
|
|
2316
|
+
*/
|
|
2281
2317
|
type Card$ActionEvent = sap.ui.base.Event<
|
|
2282
2318
|
Card$ActionEventParameters,
|
|
2283
2319
|
Card
|
|
2284
2320
|
>;
|
|
2285
2321
|
|
|
2322
|
+
/**
|
|
2323
|
+
* Event object of the Card#configurationChange event.
|
|
2324
|
+
*
|
|
2325
|
+
* @experimental (since 1.96)
|
|
2326
|
+
*/
|
|
2286
2327
|
type Card$ConfigurationChangeEvent = sap.ui.base.Event<
|
|
2287
2328
|
Card$ConfigurationChangeEventParameters,
|
|
2288
2329
|
Card
|
|
2289
2330
|
>;
|
|
2290
2331
|
|
|
2332
|
+
/**
|
|
2333
|
+
* Event object of the Card#manifestApplied event.
|
|
2334
|
+
*/
|
|
2291
2335
|
type Card$ManifestAppliedEvent = sap.ui.base.Event<
|
|
2292
2336
|
Card$ManifestAppliedEventParameters,
|
|
2293
2337
|
Card
|
|
2294
2338
|
>;
|
|
2295
2339
|
|
|
2340
|
+
/**
|
|
2341
|
+
* Event object of the Card#manifestReady event.
|
|
2342
|
+
*
|
|
2343
|
+
* @experimental (since 1.72)
|
|
2344
|
+
*/
|
|
2296
2345
|
type Card$ManifestReadyEvent = sap.ui.base.Event<
|
|
2297
2346
|
Card$ManifestReadyEventParameters,
|
|
2298
2347
|
Card
|
|
2299
2348
|
>;
|
|
2300
2349
|
|
|
2350
|
+
/**
|
|
2351
|
+
* Event object of the Card#stateChanged event.
|
|
2352
|
+
*
|
|
2353
|
+
* @experimental (since 1.107)
|
|
2354
|
+
*/
|
|
2301
2355
|
type Card$StateChangedEvent = sap.ui.base.Event<
|
|
2302
2356
|
Card$StateChangedEventParameters,
|
|
2303
2357
|
Card
|
|
2304
2358
|
>;
|
|
2305
2359
|
}
|
|
2306
|
-
|
|
2360
|
+
/**
|
|
2361
|
+
* Describes the settings that can be provided to the ActionDefinition constructor.
|
|
2362
|
+
*
|
|
2363
|
+
* @experimental (since 1.85) - Disclaimer: this class is in a beta state - incompatible API changes may
|
|
2364
|
+
* be done before its official public release. Use at your own discretion.
|
|
2365
|
+
*/
|
|
2307
2366
|
interface $ActionDefinitionSettings extends sap.ui.core.$ElementSettings {
|
|
2308
2367
|
/**
|
|
2309
2368
|
* The type of the action.
|
|
@@ -2365,9 +2424,17 @@ declare namespace sap {
|
|
|
2365
2424
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
2366
2425
|
}
|
|
2367
2426
|
|
|
2427
|
+
/**
|
|
2428
|
+
* Describes the settings that can be provided to the Designtime constructor.
|
|
2429
|
+
*
|
|
2430
|
+
* @experimental (since 1.75)
|
|
2431
|
+
*/
|
|
2368
2432
|
interface $DesigntimeSettings
|
|
2369
2433
|
extends sap.ui.base.$ManagedObjectSettings {}
|
|
2370
2434
|
|
|
2435
|
+
/**
|
|
2436
|
+
* Describes the settings that can be provided to the Extension constructor.
|
|
2437
|
+
*/
|
|
2371
2438
|
interface $ExtensionSettings extends sap.ui.base.$ManagedObjectSettings {
|
|
2372
2439
|
/**
|
|
2373
2440
|
* The actions configuration.
|
|
@@ -2404,6 +2471,11 @@ declare namespace sap {
|
|
|
2404
2471
|
action?: (oEvent: Extension$ActionEvent) => void;
|
|
2405
2472
|
}
|
|
2406
2473
|
|
|
2474
|
+
/**
|
|
2475
|
+
* Describes the settings that can be provided to the Host constructor.
|
|
2476
|
+
*
|
|
2477
|
+
* @experimental (since 1.75)
|
|
2478
|
+
*/
|
|
2407
2479
|
interface $HostSettings extends sap.ui.core.$ElementSettings {
|
|
2408
2480
|
/**
|
|
2409
2481
|
* The actions configuration.
|
|
@@ -2478,8 +2550,17 @@ declare namespace sap {
|
|
|
2478
2550
|
message?: (oEvent: Host$MessageEvent) => void;
|
|
2479
2551
|
}
|
|
2480
2552
|
|
|
2553
|
+
/**
|
|
2554
|
+
* Parameters of the ActionDefinition#press event.
|
|
2555
|
+
*/
|
|
2481
2556
|
interface ActionDefinition$PressEventParameters {}
|
|
2482
2557
|
|
|
2558
|
+
/**
|
|
2559
|
+
* Parameters of the Extension#action event.
|
|
2560
|
+
*
|
|
2561
|
+
* @experimental (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
2562
|
+
* be done before its official public release. Use at your own discretion.
|
|
2563
|
+
*/
|
|
2483
2564
|
interface Extension$ActionEventParameters {
|
|
2484
2565
|
/**
|
|
2485
2566
|
* The card the action is fired from.
|
|
@@ -2507,6 +2588,12 @@ declare namespace sap {
|
|
|
2507
2588
|
type?: sap.ui.integration.CardActionType;
|
|
2508
2589
|
}
|
|
2509
2590
|
|
|
2591
|
+
/**
|
|
2592
|
+
* Parameters of the Host#action event.
|
|
2593
|
+
*
|
|
2594
|
+
* @experimental (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
2595
|
+
* be done before its official public release. Use at your own discretion.
|
|
2596
|
+
*/
|
|
2510
2597
|
interface Host$ActionEventParameters {
|
|
2511
2598
|
/**
|
|
2512
2599
|
* The card the action is fired from.
|
|
@@ -2534,6 +2621,11 @@ declare namespace sap {
|
|
|
2534
2621
|
type?: sap.ui.integration.CardActionType;
|
|
2535
2622
|
}
|
|
2536
2623
|
|
|
2624
|
+
/**
|
|
2625
|
+
* Parameters of the Host#cardConfigurationChange event.
|
|
2626
|
+
*
|
|
2627
|
+
* @experimental (since 1.96)
|
|
2628
|
+
*/
|
|
2537
2629
|
interface Host$CardConfigurationChangeEventParameters {
|
|
2538
2630
|
/**
|
|
2539
2631
|
* The card the changes are fired from.
|
|
@@ -2555,6 +2647,11 @@ declare namespace sap {
|
|
|
2555
2647
|
changes?: object;
|
|
2556
2648
|
}
|
|
2557
2649
|
|
|
2650
|
+
/**
|
|
2651
|
+
* Parameters of the Host#cardInitialized event.
|
|
2652
|
+
*
|
|
2653
|
+
* @experimental (since 1.116)
|
|
2654
|
+
*/
|
|
2558
2655
|
interface Host$CardInitializedEventParameters {
|
|
2559
2656
|
/**
|
|
2560
2657
|
* The card.
|
|
@@ -2562,6 +2659,11 @@ declare namespace sap {
|
|
|
2562
2659
|
card?: sap.ui.core.Control;
|
|
2563
2660
|
}
|
|
2564
2661
|
|
|
2662
|
+
/**
|
|
2663
|
+
* Parameters of the Host#cardStateChanged event.
|
|
2664
|
+
*
|
|
2665
|
+
* @experimental (since 1.107)
|
|
2666
|
+
*/
|
|
2565
2667
|
interface Host$CardStateChangedEventParameters {
|
|
2566
2668
|
/**
|
|
2567
2669
|
* The card the changes are fired from.
|
|
@@ -2569,6 +2671,11 @@ declare namespace sap {
|
|
|
2569
2671
|
card?: sap.ui.core.Control;
|
|
2570
2672
|
}
|
|
2571
2673
|
|
|
2674
|
+
/**
|
|
2675
|
+
* Parameters of the Host#message event.
|
|
2676
|
+
*
|
|
2677
|
+
* @experimental (since 1.91)
|
|
2678
|
+
*/
|
|
2572
2679
|
interface Host$MessageEventParameters {
|
|
2573
2680
|
data?: object;
|
|
2574
2681
|
}
|
|
@@ -3609,7 +3716,7 @@ declare namespace sap {
|
|
|
3609
3716
|
/**
|
|
3610
3717
|
* This function is called when a CSRF token has expired.
|
|
3611
3718
|
*
|
|
3612
|
-
* @deprecated (since 1.120.0)
|
|
3719
|
+
* @deprecated (since 1.120.0) - the concept has been discarded.
|
|
3613
3720
|
* @experimental (since 1.97)
|
|
3614
3721
|
*/
|
|
3615
3722
|
csrfTokenExpired(
|
|
@@ -3623,7 +3730,7 @@ declare namespace sap {
|
|
|
3623
3730
|
/**
|
|
3624
3731
|
* This function is called when a CSRF token is fetched.
|
|
3625
3732
|
*
|
|
3626
|
-
* @deprecated (since 1.120.0)
|
|
3733
|
+
* @deprecated (since 1.120.0) - the concept has been discarded.
|
|
3627
3734
|
* @experimental (since 1.97)
|
|
3628
3735
|
*/
|
|
3629
3736
|
csrfTokenFetched(
|
|
@@ -3864,7 +3971,7 @@ declare namespace sap {
|
|
|
3864
3971
|
* Resolves the value of a CSRF token. Subclasses of Host can override this method to take over the default
|
|
3865
3972
|
* CSRF token resolving. Applications must not call this method directly, it is called by the framework.
|
|
3866
3973
|
*
|
|
3867
|
-
* @deprecated (since 1.120.0)
|
|
3974
|
+
* @deprecated (since 1.120.0) - the concept has been discarded.
|
|
3868
3975
|
* @experimental (since 1.97)
|
|
3869
3976
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3870
3977
|
*
|
|
@@ -4255,36 +4362,71 @@ declare namespace sap {
|
|
|
4255
4362
|
parameters: object;
|
|
4256
4363
|
};
|
|
4257
4364
|
|
|
4365
|
+
/**
|
|
4366
|
+
* Event object of the ActionDefinition#press event.
|
|
4367
|
+
*/
|
|
4258
4368
|
type ActionDefinition$PressEvent = sap.ui.base.Event<
|
|
4259
4369
|
ActionDefinition$PressEventParameters,
|
|
4260
4370
|
ActionDefinition
|
|
4261
4371
|
>;
|
|
4262
4372
|
|
|
4373
|
+
/**
|
|
4374
|
+
* Event object of the Extension#action event.
|
|
4375
|
+
*
|
|
4376
|
+
* @experimental (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
4377
|
+
* be done before its official public release. Use at your own discretion.
|
|
4378
|
+
*/
|
|
4263
4379
|
type Extension$ActionEvent = sap.ui.base.Event<
|
|
4264
4380
|
Extension$ActionEventParameters,
|
|
4265
4381
|
Extension
|
|
4266
4382
|
>;
|
|
4267
4383
|
|
|
4384
|
+
/**
|
|
4385
|
+
* Event object of the Host#action event.
|
|
4386
|
+
*
|
|
4387
|
+
* @experimental (since 1.75) - Disclaimer: this event is in a beta state - incompatible API changes may
|
|
4388
|
+
* be done before its official public release. Use at your own discretion.
|
|
4389
|
+
*/
|
|
4268
4390
|
type Host$ActionEvent = sap.ui.base.Event<
|
|
4269
4391
|
Host$ActionEventParameters,
|
|
4270
4392
|
Host
|
|
4271
4393
|
>;
|
|
4272
4394
|
|
|
4395
|
+
/**
|
|
4396
|
+
* Event object of the Host#cardConfigurationChange event.
|
|
4397
|
+
*
|
|
4398
|
+
* @experimental (since 1.96)
|
|
4399
|
+
*/
|
|
4273
4400
|
type Host$CardConfigurationChangeEvent = sap.ui.base.Event<
|
|
4274
4401
|
Host$CardConfigurationChangeEventParameters,
|
|
4275
4402
|
Host
|
|
4276
4403
|
>;
|
|
4277
4404
|
|
|
4405
|
+
/**
|
|
4406
|
+
* Event object of the Host#cardInitialized event.
|
|
4407
|
+
*
|
|
4408
|
+
* @experimental (since 1.116)
|
|
4409
|
+
*/
|
|
4278
4410
|
type Host$CardInitializedEvent = sap.ui.base.Event<
|
|
4279
4411
|
Host$CardInitializedEventParameters,
|
|
4280
4412
|
Host
|
|
4281
4413
|
>;
|
|
4282
4414
|
|
|
4415
|
+
/**
|
|
4416
|
+
* Event object of the Host#cardStateChanged event.
|
|
4417
|
+
*
|
|
4418
|
+
* @experimental (since 1.107)
|
|
4419
|
+
*/
|
|
4283
4420
|
type Host$CardStateChangedEvent = sap.ui.base.Event<
|
|
4284
4421
|
Host$CardStateChangedEventParameters,
|
|
4285
4422
|
Host
|
|
4286
4423
|
>;
|
|
4287
4424
|
|
|
4425
|
+
/**
|
|
4426
|
+
* Event object of the Host#message event.
|
|
4427
|
+
*
|
|
4428
|
+
* @experimental (since 1.91)
|
|
4429
|
+
*/
|
|
4288
4430
|
type Host$MessageEvent = sap.ui.base.Event<
|
|
4289
4431
|
Host$MessageEventParameters,
|
|
4290
4432
|
Host
|