@openui5/ts-types 1.120.11 → 1.120.12
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/sap.f.d.ts +364 -2
- package/types/sap.m.d.ts +3123 -7
- package/types/sap.tnt.d.ts +40 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/sap.ui.commons.d.ts +753 -1
- package/types/sap.ui.core.d.ts +1082 -59
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -1
- package/types/sap.ui.integration.d.ts +144 -2
- package/types/sap.ui.layout.d.ts +166 -2
- package/types/sap.ui.mdc.d.ts +430 -4
- 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 +222 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -2
- package/types/sap.ui.ux3.d.ts +524 -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.uxap.d.ts +118 -1
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.12
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -57,6 +57,9 @@ declare namespace sap {
|
|
|
57
57
|
__implements__sap_f_cards_IHeader: boolean;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
/**
|
|
61
|
+
* Describes the settings that can be provided to the BaseHeader constructor.
|
|
62
|
+
*/
|
|
60
63
|
interface $BaseHeaderSettings extends sap.ui.core.$ControlSettings {
|
|
61
64
|
/**
|
|
62
65
|
* Defines the timestamp of the oldest data in the card. Use this to show to the end user how fresh the
|
|
@@ -101,6 +104,9 @@ declare namespace sap {
|
|
|
101
104
|
| `{${string}}`;
|
|
102
105
|
}
|
|
103
106
|
|
|
107
|
+
/**
|
|
108
|
+
* Describes the settings that can be provided to the Header constructor.
|
|
109
|
+
*/
|
|
104
110
|
interface $HeaderSettings extends sap.f.cards.$BaseHeaderSettings {
|
|
105
111
|
/**
|
|
106
112
|
* Defines the title.
|
|
@@ -201,6 +207,9 @@ declare namespace sap {
|
|
|
201
207
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
202
208
|
}
|
|
203
209
|
|
|
210
|
+
/**
|
|
211
|
+
* Describes the settings that can be provided to the NumericHeader constructor.
|
|
212
|
+
*/
|
|
204
213
|
interface $NumericHeaderSettings extends sap.f.cards.$BaseHeaderSettings {
|
|
205
214
|
/**
|
|
206
215
|
* The title of the card
|
|
@@ -411,6 +420,9 @@ declare namespace sap {
|
|
|
411
420
|
press?: (oEvent: sap.ui.base.Event) => void;
|
|
412
421
|
}
|
|
413
422
|
|
|
423
|
+
/**
|
|
424
|
+
* Describes the settings that can be provided to the NumericSideIndicator constructor.
|
|
425
|
+
*/
|
|
414
426
|
interface $NumericSideIndicatorSettings
|
|
415
427
|
extends sap.ui.core.$ControlSettings {
|
|
416
428
|
/**
|
|
@@ -440,8 +452,14 @@ declare namespace sap {
|
|
|
440
452
|
| `{${string}}`;
|
|
441
453
|
}
|
|
442
454
|
|
|
455
|
+
/**
|
|
456
|
+
* Parameters of the Header#press event.
|
|
457
|
+
*/
|
|
443
458
|
interface Header$PressEventParameters {}
|
|
444
459
|
|
|
460
|
+
/**
|
|
461
|
+
* Parameters of the NumericHeader#press event.
|
|
462
|
+
*/
|
|
445
463
|
interface NumericHeader$PressEventParameters {}
|
|
446
464
|
|
|
447
465
|
/**
|
|
@@ -2374,12 +2392,17 @@ declare namespace sap {
|
|
|
2374
2392
|
*/
|
|
2375
2393
|
End = "End",
|
|
2376
2394
|
}
|
|
2377
|
-
|
|
2395
|
+
/**
|
|
2396
|
+
* Event object of the Header#press event.
|
|
2397
|
+
*/
|
|
2378
2398
|
type Header$PressEvent = sap.ui.base.Event<
|
|
2379
2399
|
Header$PressEventParameters,
|
|
2380
2400
|
Header
|
|
2381
2401
|
>;
|
|
2382
2402
|
|
|
2403
|
+
/**
|
|
2404
|
+
* Event object of the NumericHeader#press event.
|
|
2405
|
+
*/
|
|
2383
2406
|
type NumericHeader$PressEvent = sap.ui.base.Event<
|
|
2384
2407
|
NumericHeader$PressEventParameters,
|
|
2385
2408
|
NumericHeader
|
|
@@ -2399,6 +2422,11 @@ declare namespace sap {
|
|
|
2399
2422
|
__implements__sap_f_dnd_IGridDroppable: boolean;
|
|
2400
2423
|
}
|
|
2401
2424
|
|
|
2425
|
+
/**
|
|
2426
|
+
* Describes the settings that can be provided to the GridDropInfo constructor.
|
|
2427
|
+
*
|
|
2428
|
+
* @experimental (since 1.68) - This class is experimental. The API may change.
|
|
2429
|
+
*/
|
|
2402
2430
|
interface $GridDropInfoSettings
|
|
2403
2431
|
extends sap.ui.core.dnd.$DropInfoSettings {
|
|
2404
2432
|
/**
|
|
@@ -3306,39 +3334,75 @@ declare namespace sap {
|
|
|
3306
3334
|
}
|
|
3307
3335
|
|
|
3308
3336
|
namespace semantic {
|
|
3337
|
+
/**
|
|
3338
|
+
* Describes the settings that can be provided to the AddAction constructor.
|
|
3339
|
+
*/
|
|
3309
3340
|
interface $AddActionSettings
|
|
3310
3341
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3311
3342
|
|
|
3343
|
+
/**
|
|
3344
|
+
* Describes the settings that can be provided to the CloseAction constructor.
|
|
3345
|
+
*/
|
|
3312
3346
|
interface $CloseActionSettings
|
|
3313
3347
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3314
3348
|
|
|
3349
|
+
/**
|
|
3350
|
+
* Describes the settings that can be provided to the CopyAction constructor.
|
|
3351
|
+
*/
|
|
3315
3352
|
interface $CopyActionSettings
|
|
3316
3353
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3317
3354
|
|
|
3355
|
+
/**
|
|
3356
|
+
* Describes the settings that can be provided to the DeleteAction constructor.
|
|
3357
|
+
*/
|
|
3318
3358
|
interface $DeleteActionSettings
|
|
3319
3359
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3320
3360
|
|
|
3361
|
+
/**
|
|
3362
|
+
* Describes the settings that can be provided to the DiscussInJamAction constructor.
|
|
3363
|
+
*/
|
|
3321
3364
|
interface $DiscussInJamActionSettings
|
|
3322
3365
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3323
3366
|
|
|
3367
|
+
/**
|
|
3368
|
+
* Describes the settings that can be provided to the EditAction constructor.
|
|
3369
|
+
*/
|
|
3324
3370
|
interface $EditActionSettings
|
|
3325
3371
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3326
3372
|
|
|
3373
|
+
/**
|
|
3374
|
+
* Describes the settings that can be provided to the ExitFullScreenAction constructor.
|
|
3375
|
+
*/
|
|
3327
3376
|
interface $ExitFullScreenActionSettings
|
|
3328
3377
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3329
3378
|
|
|
3379
|
+
/**
|
|
3380
|
+
* Describes the settings that can be provided to the FavoriteAction constructor.
|
|
3381
|
+
*/
|
|
3330
3382
|
interface $FavoriteActionSettings
|
|
3331
3383
|
extends sap.f.semantic.$SemanticToggleButtonSettings {}
|
|
3332
3384
|
|
|
3385
|
+
/**
|
|
3386
|
+
* Describes the settings that can be provided to the FlagAction constructor.
|
|
3387
|
+
*/
|
|
3333
3388
|
interface $FlagActionSettings
|
|
3334
3389
|
extends sap.f.semantic.$SemanticToggleButtonSettings {}
|
|
3335
3390
|
|
|
3391
|
+
/**
|
|
3392
|
+
* Describes the settings that can be provided to the FooterMainAction constructor.
|
|
3393
|
+
*/
|
|
3336
3394
|
interface $FooterMainActionSettings
|
|
3337
3395
|
extends sap.f.semantic.$MainActionSettings {}
|
|
3338
3396
|
|
|
3397
|
+
/**
|
|
3398
|
+
* Describes the settings that can be provided to the FullScreenAction constructor.
|
|
3399
|
+
*/
|
|
3339
3400
|
interface $FullScreenActionSettings
|
|
3340
3401
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3341
3402
|
|
|
3403
|
+
/**
|
|
3404
|
+
* Describes the settings that can be provided to the MainAction constructor.
|
|
3405
|
+
*/
|
|
3342
3406
|
interface $MainActionSettings
|
|
3343
3407
|
extends sap.f.semantic.$SemanticButtonSettings {
|
|
3344
3408
|
/**
|
|
@@ -3347,9 +3411,15 @@ declare namespace sap {
|
|
|
3347
3411
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3348
3412
|
}
|
|
3349
3413
|
|
|
3414
|
+
/**
|
|
3415
|
+
* Describes the settings that can be provided to the MessagesIndicator constructor.
|
|
3416
|
+
*/
|
|
3350
3417
|
interface $MessagesIndicatorSettings
|
|
3351
3418
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3352
3419
|
|
|
3420
|
+
/**
|
|
3421
|
+
* Describes the settings that can be provided to the NegativeAction constructor.
|
|
3422
|
+
*/
|
|
3353
3423
|
interface $NegativeActionSettings
|
|
3354
3424
|
extends sap.f.semantic.$SemanticButtonSettings {
|
|
3355
3425
|
/**
|
|
@@ -3358,6 +3428,9 @@ declare namespace sap {
|
|
|
3358
3428
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3359
3429
|
}
|
|
3360
3430
|
|
|
3431
|
+
/**
|
|
3432
|
+
* Describes the settings that can be provided to the PositiveAction constructor.
|
|
3433
|
+
*/
|
|
3361
3434
|
interface $PositiveActionSettings
|
|
3362
3435
|
extends sap.f.semantic.$SemanticButtonSettings {
|
|
3363
3436
|
/**
|
|
@@ -3366,12 +3439,21 @@ declare namespace sap {
|
|
|
3366
3439
|
text?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3367
3440
|
}
|
|
3368
3441
|
|
|
3442
|
+
/**
|
|
3443
|
+
* Describes the settings that can be provided to the PrintAction constructor.
|
|
3444
|
+
*/
|
|
3369
3445
|
interface $PrintActionSettings
|
|
3370
3446
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3371
3447
|
|
|
3448
|
+
/**
|
|
3449
|
+
* Describes the settings that can be provided to the SemanticButton constructor.
|
|
3450
|
+
*/
|
|
3372
3451
|
interface $SemanticButtonSettings
|
|
3373
3452
|
extends sap.m.semantic.$SemanticButtonSettings {}
|
|
3374
3453
|
|
|
3454
|
+
/**
|
|
3455
|
+
* Describes the settings that can be provided to the SemanticControl constructor.
|
|
3456
|
+
*/
|
|
3375
3457
|
interface $SemanticControlSettings extends sap.ui.core.$ElementSettings {
|
|
3376
3458
|
/**
|
|
3377
3459
|
* Determines whether the `SemanticControl` is visible.
|
|
@@ -3382,6 +3464,9 @@ declare namespace sap {
|
|
|
3382
3464
|
| `{${string}}`;
|
|
3383
3465
|
}
|
|
3384
3466
|
|
|
3467
|
+
/**
|
|
3468
|
+
* Describes the settings that can be provided to the SemanticPage constructor.
|
|
3469
|
+
*/
|
|
3385
3470
|
interface $SemanticPageSettings extends sap.ui.core.$ControlSettings {
|
|
3386
3471
|
/**
|
|
3387
3472
|
* Determines whether the header is expanded.
|
|
@@ -3895,18 +3980,33 @@ declare namespace sap {
|
|
|
3895
3980
|
landmarkInfo?: sap.f.DynamicPageAccessibleLandmarkInfo;
|
|
3896
3981
|
}
|
|
3897
3982
|
|
|
3983
|
+
/**
|
|
3984
|
+
* Describes the settings that can be provided to the SemanticToggleButton constructor.
|
|
3985
|
+
*/
|
|
3898
3986
|
interface $SemanticToggleButtonSettings
|
|
3899
3987
|
extends sap.m.semantic.$SemanticToggleButtonSettings {}
|
|
3900
3988
|
|
|
3989
|
+
/**
|
|
3990
|
+
* Describes the settings that can be provided to the SendEmailAction constructor.
|
|
3991
|
+
*/
|
|
3901
3992
|
interface $SendEmailActionSettings
|
|
3902
3993
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3903
3994
|
|
|
3995
|
+
/**
|
|
3996
|
+
* Describes the settings that can be provided to the SendMessageAction constructor.
|
|
3997
|
+
*/
|
|
3904
3998
|
interface $SendMessageActionSettings
|
|
3905
3999
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3906
4000
|
|
|
4001
|
+
/**
|
|
4002
|
+
* Describes the settings that can be provided to the ShareInJamAction constructor.
|
|
4003
|
+
*/
|
|
3907
4004
|
interface $ShareInJamActionSettings
|
|
3908
4005
|
extends sap.f.semantic.$SemanticButtonSettings {}
|
|
3909
4006
|
|
|
4007
|
+
/**
|
|
4008
|
+
* Describes the settings that can be provided to the TitleMainAction constructor.
|
|
4009
|
+
*/
|
|
3910
4010
|
interface $TitleMainActionSettings
|
|
3911
4011
|
extends sap.f.semantic.$MainActionSettings {}
|
|
3912
4012
|
|
|
@@ -7757,8 +7857,19 @@ declare namespace sap {
|
|
|
7757
7857
|
__implements__sap_f_IShellBar: boolean;
|
|
7758
7858
|
}
|
|
7759
7859
|
|
|
7860
|
+
/**
|
|
7861
|
+
* Describes the settings that can be provided to the Avatar constructor.
|
|
7862
|
+
*
|
|
7863
|
+
* @deprecated (since 1.73) - Use the {@link sap.m.Avatar} instead.
|
|
7864
|
+
*/
|
|
7760
7865
|
interface $AvatarSettings extends sap.m.$AvatarSettings {}
|
|
7761
7866
|
|
|
7867
|
+
/**
|
|
7868
|
+
* Describes the settings that can be provided to the AvatarGroup constructor.
|
|
7869
|
+
*
|
|
7870
|
+
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
7871
|
+
* the API might be changed in future.
|
|
7872
|
+
*/
|
|
7762
7873
|
interface $AvatarGroupSettings extends sap.ui.core.$ControlSettings {
|
|
7763
7874
|
/**
|
|
7764
7875
|
* Defines the mode of the `AvatarGroup`.
|
|
@@ -7817,6 +7928,12 @@ declare namespace sap {
|
|
|
7817
7928
|
press?: (oEvent: AvatarGroup$PressEvent) => void;
|
|
7818
7929
|
}
|
|
7819
7930
|
|
|
7931
|
+
/**
|
|
7932
|
+
* Describes the settings that can be provided to the AvatarGroupItem constructor.
|
|
7933
|
+
*
|
|
7934
|
+
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
7935
|
+
* the API might be changed in future.
|
|
7936
|
+
*/
|
|
7820
7937
|
interface $AvatarGroupItemSettings extends sap.ui.core.$ControlSettings {
|
|
7821
7938
|
/**
|
|
7822
7939
|
* Determines the path to the desired image or icon.
|
|
@@ -7841,6 +7958,9 @@ declare namespace sap {
|
|
|
7841
7958
|
fallbackIcon?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7842
7959
|
}
|
|
7843
7960
|
|
|
7961
|
+
/**
|
|
7962
|
+
* Describes the settings that can be provided to the Card constructor.
|
|
7963
|
+
*/
|
|
7844
7964
|
interface $CardSettings extends sap.f.$CardBaseSettings {
|
|
7845
7965
|
/**
|
|
7846
7966
|
* Defines the position of the Card Header.
|
|
@@ -7863,6 +7983,9 @@ declare namespace sap {
|
|
|
7863
7983
|
content?: sap.ui.core.Control;
|
|
7864
7984
|
}
|
|
7865
7985
|
|
|
7986
|
+
/**
|
|
7987
|
+
* Describes the settings that can be provided to the CardBase constructor.
|
|
7988
|
+
*/
|
|
7866
7989
|
interface $CardBaseSettings extends sap.ui.core.$ControlSettings {
|
|
7867
7990
|
/**
|
|
7868
7991
|
* Defines the width of the card.
|
|
@@ -7881,6 +8004,9 @@ declare namespace sap {
|
|
|
7881
8004
|
| `{${string}}`;
|
|
7882
8005
|
}
|
|
7883
8006
|
|
|
8007
|
+
/**
|
|
8008
|
+
* Describes the settings that can be provided to the DynamicPage constructor.
|
|
8009
|
+
*/
|
|
7884
8010
|
interface $DynamicPageSettings extends sap.ui.core.$ControlSettings {
|
|
7885
8011
|
/**
|
|
7886
8012
|
* Preserves the current header state when scrolling. For example, if the user expands the header by clicking
|
|
@@ -8049,6 +8175,9 @@ declare namespace sap {
|
|
|
8049
8175
|
pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
|
|
8050
8176
|
}
|
|
8051
8177
|
|
|
8178
|
+
/**
|
|
8179
|
+
* Describes the settings that can be provided to the DynamicPageAccessibleLandmarkInfo constructor.
|
|
8180
|
+
*/
|
|
8052
8181
|
interface $DynamicPageAccessibleLandmarkInfoSettings
|
|
8053
8182
|
extends sap.ui.core.$ElementSettings {
|
|
8054
8183
|
/**
|
|
@@ -8124,6 +8253,9 @@ declare namespace sap {
|
|
|
8124
8253
|
footerLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8125
8254
|
}
|
|
8126
8255
|
|
|
8256
|
+
/**
|
|
8257
|
+
* Describes the settings that can be provided to the DynamicPageHeader constructor.
|
|
8258
|
+
*/
|
|
8127
8259
|
interface $DynamicPageHeaderSettings extends sap.ui.core.$ControlSettings {
|
|
8128
8260
|
/**
|
|
8129
8261
|
* Determines whether the header is pinnable.
|
|
@@ -8156,6 +8288,9 @@ declare namespace sap {
|
|
|
8156
8288
|
| `{${string}}`;
|
|
8157
8289
|
}
|
|
8158
8290
|
|
|
8291
|
+
/**
|
|
8292
|
+
* Describes the settings that can be provided to the DynamicPageTitle constructor.
|
|
8293
|
+
*/
|
|
8159
8294
|
interface $DynamicPageTitleSettings extends sap.ui.core.$ControlSettings {
|
|
8160
8295
|
/**
|
|
8161
8296
|
* Determines which of the `DynamicPageTitle` areas (Begin, Middle) is primary.
|
|
@@ -8371,6 +8506,9 @@ declare namespace sap {
|
|
|
8371
8506
|
stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
|
|
8372
8507
|
}
|
|
8373
8508
|
|
|
8509
|
+
/**
|
|
8510
|
+
* Describes the settings that can be provided to the FlexibleColumnLayout constructor.
|
|
8511
|
+
*/
|
|
8374
8512
|
interface $FlexibleColumnLayoutSettings
|
|
8375
8513
|
extends sap.ui.core.$ControlSettings {
|
|
8376
8514
|
/**
|
|
@@ -8585,6 +8723,9 @@ declare namespace sap {
|
|
|
8585
8723
|
columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
|
|
8586
8724
|
}
|
|
8587
8725
|
|
|
8726
|
+
/**
|
|
8727
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutAccessibleLandmarkInfo constructor.
|
|
8728
|
+
*/
|
|
8588
8729
|
interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
8589
8730
|
extends sap.ui.core.$ElementSettings {
|
|
8590
8731
|
/**
|
|
@@ -8654,6 +8795,9 @@ declare namespace sap {
|
|
|
8654
8795
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8655
8796
|
}
|
|
8656
8797
|
|
|
8798
|
+
/**
|
|
8799
|
+
* Describes the settings that can be provided to the GridContainer constructor.
|
|
8800
|
+
*/
|
|
8657
8801
|
interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
|
|
8658
8802
|
/**
|
|
8659
8803
|
* Defines the width of the control.
|
|
@@ -8798,6 +8942,11 @@ declare namespace sap {
|
|
|
8798
8942
|
borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
|
|
8799
8943
|
}
|
|
8800
8944
|
|
|
8945
|
+
/**
|
|
8946
|
+
* Describes the settings that can be provided to the GridContainerItemLayoutData constructor.
|
|
8947
|
+
*
|
|
8948
|
+
* @experimental (since 1.65) - This class is experimental. The API may change.
|
|
8949
|
+
*/
|
|
8801
8950
|
interface $GridContainerItemLayoutDataSettings
|
|
8802
8951
|
extends sap.ui.core.$LayoutDataSettings {
|
|
8803
8952
|
/**
|
|
@@ -8832,6 +8981,11 @@ declare namespace sap {
|
|
|
8832
8981
|
| `{${string}}`;
|
|
8833
8982
|
}
|
|
8834
8983
|
|
|
8984
|
+
/**
|
|
8985
|
+
* Describes the settings that can be provided to the GridContainerSettings constructor.
|
|
8986
|
+
*
|
|
8987
|
+
* @experimental (since 1.65) - This class is experimental. The API may change.
|
|
8988
|
+
*/
|
|
8835
8989
|
interface $GridContainerSettingsSettings
|
|
8836
8990
|
extends sap.ui.base.$ManagedObjectSettings {
|
|
8837
8991
|
/**
|
|
@@ -8895,6 +9049,9 @@ declare namespace sap {
|
|
|
8895
9049
|
| `{${string}}`;
|
|
8896
9050
|
}
|
|
8897
9051
|
|
|
9052
|
+
/**
|
|
9053
|
+
* Describes the settings that can be provided to the GridList constructor.
|
|
9054
|
+
*/
|
|
8898
9055
|
interface $GridListSettings extends sap.m.$ListBaseSettings {
|
|
8899
9056
|
/**
|
|
8900
9057
|
* Defines a custom grid layout
|
|
@@ -8907,6 +9064,9 @@ declare namespace sap {
|
|
|
8907
9064
|
borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
|
|
8908
9065
|
}
|
|
8909
9066
|
|
|
9067
|
+
/**
|
|
9068
|
+
* Describes the settings that can be provided to the GridListItem constructor.
|
|
9069
|
+
*/
|
|
8910
9070
|
interface $GridListItemSettings extends sap.m.$ListItemBaseSettings {
|
|
8911
9071
|
/**
|
|
8912
9072
|
* The content of this list item
|
|
@@ -8918,11 +9078,27 @@ declare namespace sap {
|
|
|
8918
9078
|
| `{${string}}`;
|
|
8919
9079
|
}
|
|
8920
9080
|
|
|
9081
|
+
/**
|
|
9082
|
+
* Describes the settings that can be provided to the IllustratedMessage constructor.
|
|
9083
|
+
*
|
|
9084
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.IllustratedMessage} instead.
|
|
9085
|
+
*/
|
|
8921
9086
|
interface $IllustratedMessageSettings
|
|
8922
9087
|
extends sap.m.$IllustratedMessageSettings {}
|
|
8923
9088
|
|
|
9089
|
+
/**
|
|
9090
|
+
* Describes the settings that can be provided to the Illustration constructor.
|
|
9091
|
+
*
|
|
9092
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.Illustration} instead.
|
|
9093
|
+
*/
|
|
8924
9094
|
interface $IllustrationSettings extends sap.m.$IllustrationSettings {}
|
|
8925
9095
|
|
|
9096
|
+
/**
|
|
9097
|
+
* Describes the settings that can be provided to the ProductSwitch constructor.
|
|
9098
|
+
*
|
|
9099
|
+
* @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
|
|
9100
|
+
* the API might be changed in future.
|
|
9101
|
+
*/
|
|
8926
9102
|
interface $ProductSwitchSettings extends sap.ui.core.$ControlSettings {
|
|
8927
9103
|
/**
|
|
8928
9104
|
* `ProductSwitch` content.
|
|
@@ -8944,6 +9120,12 @@ declare namespace sap {
|
|
|
8944
9120
|
change?: (oEvent: ProductSwitch$ChangeEvent) => void;
|
|
8945
9121
|
}
|
|
8946
9122
|
|
|
9123
|
+
/**
|
|
9124
|
+
* Describes the settings that can be provided to the ProductSwitchItem constructor.
|
|
9125
|
+
*
|
|
9126
|
+
* @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
|
|
9127
|
+
* the API might be changed in future.
|
|
9128
|
+
*/
|
|
8947
9129
|
interface $ProductSwitchItemSettings extends sap.ui.core.$ControlSettings {
|
|
8948
9130
|
/**
|
|
8949
9131
|
* Defines the icon to be displayed as graphical element within the `ProductSwitchItem`. It can be an icon
|
|
@@ -8984,6 +9166,9 @@ declare namespace sap {
|
|
|
8984
9166
|
target?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8985
9167
|
}
|
|
8986
9168
|
|
|
9169
|
+
/**
|
|
9170
|
+
* Describes the settings that can be provided to the SearchManager constructor.
|
|
9171
|
+
*/
|
|
8987
9172
|
interface $SearchManagerSettings extends sap.ui.core.$ElementSettings {
|
|
8988
9173
|
/**
|
|
8989
9174
|
* Defines the input value.
|
|
@@ -9055,6 +9240,9 @@ declare namespace sap {
|
|
|
9055
9240
|
suggest?: (oEvent: SearchManager$SuggestEvent) => void;
|
|
9056
9241
|
}
|
|
9057
9242
|
|
|
9243
|
+
/**
|
|
9244
|
+
* Describes the settings that can be provided to the ShellBar constructor.
|
|
9245
|
+
*/
|
|
9058
9246
|
interface $ShellBarSettings extends sap.ui.core.$ControlSettings {
|
|
9059
9247
|
/**
|
|
9060
9248
|
* Defines the main title of the control.
|
|
@@ -9214,6 +9402,9 @@ declare namespace sap {
|
|
|
9214
9402
|
avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
|
|
9215
9403
|
}
|
|
9216
9404
|
|
|
9405
|
+
/**
|
|
9406
|
+
* Describes the settings that can be provided to the SidePanel constructor.
|
|
9407
|
+
*/
|
|
9217
9408
|
interface $SidePanelSettings extends sap.ui.core.$ControlSettings {
|
|
9218
9409
|
/**
|
|
9219
9410
|
* Determines whether the action bar is expanded or collapsed.
|
|
@@ -9341,6 +9532,9 @@ declare namespace sap {
|
|
|
9341
9532
|
toggle?: (oEvent: SidePanel$ToggleEvent) => void;
|
|
9342
9533
|
}
|
|
9343
9534
|
|
|
9535
|
+
/**
|
|
9536
|
+
* Describes the settings that can be provided to the SidePanelItem constructor.
|
|
9537
|
+
*/
|
|
9344
9538
|
interface $SidePanelItemSettings extends sap.ui.core.$ItemSettings {
|
|
9345
9539
|
/**
|
|
9346
9540
|
* Specifies the icon for the item.
|
|
@@ -9360,6 +9554,9 @@ declare namespace sap {
|
|
|
9360
9554
|
| `{${string}}`;
|
|
9361
9555
|
}
|
|
9362
9556
|
|
|
9557
|
+
/**
|
|
9558
|
+
* Parameters of the AvatarGroup#press event.
|
|
9559
|
+
*/
|
|
9363
9560
|
interface AvatarGroup$PressEventParameters {
|
|
9364
9561
|
/**
|
|
9365
9562
|
* The `GroupType` of the control.
|
|
@@ -9377,6 +9574,9 @@ declare namespace sap {
|
|
|
9377
9574
|
avatarsDisplayed?: int;
|
|
9378
9575
|
}
|
|
9379
9576
|
|
|
9577
|
+
/**
|
|
9578
|
+
* Parameters of the DynamicPage#pinnedStateChange event.
|
|
9579
|
+
*/
|
|
9380
9580
|
interface DynamicPage$PinnedStateChangeEventParameters {
|
|
9381
9581
|
/**
|
|
9382
9582
|
* False or True values indicate the new pinned property value.
|
|
@@ -9384,6 +9584,9 @@ declare namespace sap {
|
|
|
9384
9584
|
pinned?: boolean;
|
|
9385
9585
|
}
|
|
9386
9586
|
|
|
9587
|
+
/**
|
|
9588
|
+
* Parameters of the DynamicPageTitle#stateChange event.
|
|
9589
|
+
*/
|
|
9387
9590
|
interface DynamicPageTitle$StateChangeEventParameters {
|
|
9388
9591
|
/**
|
|
9389
9592
|
* Whether the title was expanded (true) or collapsed (false).
|
|
@@ -9391,6 +9594,9 @@ declare namespace sap {
|
|
|
9391
9594
|
isExpanded?: boolean;
|
|
9392
9595
|
}
|
|
9393
9596
|
|
|
9597
|
+
/**
|
|
9598
|
+
* Parameters of the FlexibleColumnLayout#afterBeginColumnNavigate event.
|
|
9599
|
+
*/
|
|
9394
9600
|
interface FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters {
|
|
9395
9601
|
/**
|
|
9396
9602
|
* The page, which had been displayed before navigation.
|
|
@@ -9444,6 +9650,9 @@ declare namespace sap {
|
|
|
9444
9650
|
direction?: string;
|
|
9445
9651
|
}
|
|
9446
9652
|
|
|
9653
|
+
/**
|
|
9654
|
+
* Parameters of the FlexibleColumnLayout#afterEndColumnNavigate event.
|
|
9655
|
+
*/
|
|
9447
9656
|
interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
|
|
9448
9657
|
/**
|
|
9449
9658
|
* The page, which had been displayed before navigation.
|
|
@@ -9497,6 +9706,9 @@ declare namespace sap {
|
|
|
9497
9706
|
direction?: string;
|
|
9498
9707
|
}
|
|
9499
9708
|
|
|
9709
|
+
/**
|
|
9710
|
+
* Parameters of the FlexibleColumnLayout#afterMidColumnNavigate event.
|
|
9711
|
+
*/
|
|
9500
9712
|
interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
|
|
9501
9713
|
/**
|
|
9502
9714
|
* The page, which had been displayed before navigation.
|
|
@@ -9550,6 +9762,9 @@ declare namespace sap {
|
|
|
9550
9762
|
direction?: string;
|
|
9551
9763
|
}
|
|
9552
9764
|
|
|
9765
|
+
/**
|
|
9766
|
+
* Parameters of the FlexibleColumnLayout#beginColumnNavigate event.
|
|
9767
|
+
*/
|
|
9553
9768
|
interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
|
|
9554
9769
|
/**
|
|
9555
9770
|
* The page, which was displayed before the current navigation.
|
|
@@ -9603,6 +9818,9 @@ declare namespace sap {
|
|
|
9603
9818
|
direction?: string;
|
|
9604
9819
|
}
|
|
9605
9820
|
|
|
9821
|
+
/**
|
|
9822
|
+
* Parameters of the FlexibleColumnLayout#columnResize event.
|
|
9823
|
+
*/
|
|
9606
9824
|
interface FlexibleColumnLayout$ColumnResizeEventParameters {
|
|
9607
9825
|
/**
|
|
9608
9826
|
* Determines whether `beginColumn` resize has completed.
|
|
@@ -9620,6 +9838,9 @@ declare namespace sap {
|
|
|
9620
9838
|
endColumn?: boolean;
|
|
9621
9839
|
}
|
|
9622
9840
|
|
|
9841
|
+
/**
|
|
9842
|
+
* Parameters of the FlexibleColumnLayout#endColumnNavigate event.
|
|
9843
|
+
*/
|
|
9623
9844
|
interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
|
|
9624
9845
|
/**
|
|
9625
9846
|
* The page, which was displayed before the current navigation.
|
|
@@ -9673,6 +9894,9 @@ declare namespace sap {
|
|
|
9673
9894
|
direction?: string;
|
|
9674
9895
|
}
|
|
9675
9896
|
|
|
9897
|
+
/**
|
|
9898
|
+
* Parameters of the FlexibleColumnLayout#midColumnNavigate event.
|
|
9899
|
+
*/
|
|
9676
9900
|
interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
|
|
9677
9901
|
/**
|
|
9678
9902
|
* The page, which was displayed before the current navigation.
|
|
@@ -9726,6 +9950,9 @@ declare namespace sap {
|
|
|
9726
9950
|
direction?: string;
|
|
9727
9951
|
}
|
|
9728
9952
|
|
|
9953
|
+
/**
|
|
9954
|
+
* Parameters of the FlexibleColumnLayout#stateChange event.
|
|
9955
|
+
*/
|
|
9729
9956
|
interface FlexibleColumnLayout$StateChangeEventParameters {
|
|
9730
9957
|
/**
|
|
9731
9958
|
* The value of the `layout` property
|
|
@@ -9754,6 +9981,9 @@ declare namespace sap {
|
|
|
9754
9981
|
isResize?: boolean;
|
|
9755
9982
|
}
|
|
9756
9983
|
|
|
9984
|
+
/**
|
|
9985
|
+
* Parameters of the GridContainer#borderReached event.
|
|
9986
|
+
*/
|
|
9757
9987
|
interface GridContainer$BorderReachedEventParameters {
|
|
9758
9988
|
/**
|
|
9759
9989
|
* Event that leads to the focus change.
|
|
@@ -9776,6 +10006,9 @@ declare namespace sap {
|
|
|
9776
10006
|
column?: int;
|
|
9777
10007
|
}
|
|
9778
10008
|
|
|
10009
|
+
/**
|
|
10010
|
+
* Parameters of the GridContainer#columnsChange event.
|
|
10011
|
+
*/
|
|
9779
10012
|
interface GridContainer$ColumnsChangeEventParameters {
|
|
9780
10013
|
/**
|
|
9781
10014
|
* The count of the gird columns.
|
|
@@ -9783,6 +10016,9 @@ declare namespace sap {
|
|
|
9783
10016
|
columns?: int;
|
|
9784
10017
|
}
|
|
9785
10018
|
|
|
10019
|
+
/**
|
|
10020
|
+
* Parameters of the GridContainer#layoutChange event.
|
|
10021
|
+
*/
|
|
9786
10022
|
interface GridContainer$LayoutChangeEventParameters {
|
|
9787
10023
|
/**
|
|
9788
10024
|
* The name of the newly active layout.
|
|
@@ -9790,6 +10026,9 @@ declare namespace sap {
|
|
|
9790
10026
|
layout?: string;
|
|
9791
10027
|
}
|
|
9792
10028
|
|
|
10029
|
+
/**
|
|
10030
|
+
* Parameters of the GridList#borderReached event.
|
|
10031
|
+
*/
|
|
9793
10032
|
interface GridList$BorderReachedEventParameters {
|
|
9794
10033
|
/**
|
|
9795
10034
|
* Event that leads to the focus change.
|
|
@@ -9812,6 +10051,9 @@ declare namespace sap {
|
|
|
9812
10051
|
column?: int;
|
|
9813
10052
|
}
|
|
9814
10053
|
|
|
10054
|
+
/**
|
|
10055
|
+
* Parameters of the ProductSwitch#change event.
|
|
10056
|
+
*/
|
|
9815
10057
|
interface ProductSwitch$ChangeEventParameters {
|
|
9816
10058
|
/**
|
|
9817
10059
|
* Reference to the new item that has been selected.
|
|
@@ -9819,6 +10061,9 @@ declare namespace sap {
|
|
|
9819
10061
|
itemPressed?: sap.f.ProductSwitchItem;
|
|
9820
10062
|
}
|
|
9821
10063
|
|
|
10064
|
+
/**
|
|
10065
|
+
* Parameters of the SearchManager#liveChange event.
|
|
10066
|
+
*/
|
|
9822
10067
|
interface SearchManager$LiveChangeEventParameters {
|
|
9823
10068
|
/**
|
|
9824
10069
|
* Current search string.
|
|
@@ -9826,6 +10071,9 @@ declare namespace sap {
|
|
|
9826
10071
|
newValue?: string;
|
|
9827
10072
|
}
|
|
9828
10073
|
|
|
10074
|
+
/**
|
|
10075
|
+
* Parameters of the SearchManager#search event.
|
|
10076
|
+
*/
|
|
9829
10077
|
interface SearchManager$SearchEventParameters {
|
|
9830
10078
|
/**
|
|
9831
10079
|
* The search query string.
|
|
@@ -9838,6 +10086,9 @@ declare namespace sap {
|
|
|
9838
10086
|
clearButtonPressed?: boolean;
|
|
9839
10087
|
}
|
|
9840
10088
|
|
|
10089
|
+
/**
|
|
10090
|
+
* Parameters of the SearchManager#suggest event.
|
|
10091
|
+
*/
|
|
9841
10092
|
interface SearchManager$SuggestEventParameters {
|
|
9842
10093
|
/**
|
|
9843
10094
|
* Current search string of the search field.
|
|
@@ -9845,6 +10096,9 @@ declare namespace sap {
|
|
|
9845
10096
|
suggestValue?: string;
|
|
9846
10097
|
}
|
|
9847
10098
|
|
|
10099
|
+
/**
|
|
10100
|
+
* Parameters of the ShellBar#avatarPressed event.
|
|
10101
|
+
*/
|
|
9848
10102
|
interface ShellBar$AvatarPressedEventParameters {
|
|
9849
10103
|
/**
|
|
9850
10104
|
* Reference to the button that has been pressed
|
|
@@ -9852,6 +10106,9 @@ declare namespace sap {
|
|
|
9852
10106
|
avatar?: sap.m.Avatar;
|
|
9853
10107
|
}
|
|
9854
10108
|
|
|
10109
|
+
/**
|
|
10110
|
+
* Parameters of the ShellBar#copilotPressed event.
|
|
10111
|
+
*/
|
|
9855
10112
|
interface ShellBar$CopilotPressedEventParameters {
|
|
9856
10113
|
/**
|
|
9857
10114
|
* Reference to the button that has been pressed
|
|
@@ -9859,6 +10116,9 @@ declare namespace sap {
|
|
|
9859
10116
|
image?: sap.m.Image;
|
|
9860
10117
|
}
|
|
9861
10118
|
|
|
10119
|
+
/**
|
|
10120
|
+
* Parameters of the ShellBar#homeIconPressed event.
|
|
10121
|
+
*/
|
|
9862
10122
|
interface ShellBar$HomeIconPressedEventParameters {
|
|
9863
10123
|
/**
|
|
9864
10124
|
* Reference to the image that has been pressed
|
|
@@ -9866,6 +10126,9 @@ declare namespace sap {
|
|
|
9866
10126
|
icon?: sap.m.Image;
|
|
9867
10127
|
}
|
|
9868
10128
|
|
|
10129
|
+
/**
|
|
10130
|
+
* Parameters of the ShellBar#menuButtonPressed event.
|
|
10131
|
+
*/
|
|
9869
10132
|
interface ShellBar$MenuButtonPressedEventParameters {
|
|
9870
10133
|
/**
|
|
9871
10134
|
* Reference to the button that has been pressed
|
|
@@ -9873,6 +10136,9 @@ declare namespace sap {
|
|
|
9873
10136
|
button?: sap.m.Button;
|
|
9874
10137
|
}
|
|
9875
10138
|
|
|
10139
|
+
/**
|
|
10140
|
+
* Parameters of the ShellBar#navButtonPressed event.
|
|
10141
|
+
*/
|
|
9876
10142
|
interface ShellBar$NavButtonPressedEventParameters {
|
|
9877
10143
|
/**
|
|
9878
10144
|
* Reference to the button that has been pressed
|
|
@@ -9880,6 +10146,9 @@ declare namespace sap {
|
|
|
9880
10146
|
button?: sap.m.Button;
|
|
9881
10147
|
}
|
|
9882
10148
|
|
|
10149
|
+
/**
|
|
10150
|
+
* Parameters of the ShellBar#notificationsPressed event.
|
|
10151
|
+
*/
|
|
9883
10152
|
interface ShellBar$NotificationsPressedEventParameters {
|
|
9884
10153
|
/**
|
|
9885
10154
|
* Reference to the button that has been pressed
|
|
@@ -9887,6 +10156,9 @@ declare namespace sap {
|
|
|
9887
10156
|
button?: sap.m.Button;
|
|
9888
10157
|
}
|
|
9889
10158
|
|
|
10159
|
+
/**
|
|
10160
|
+
* Parameters of the ShellBar#productSwitcherPressed event.
|
|
10161
|
+
*/
|
|
9890
10162
|
interface ShellBar$ProductSwitcherPressedEventParameters {
|
|
9891
10163
|
/**
|
|
9892
10164
|
* Reference to the button that has been pressed
|
|
@@ -9894,6 +10166,9 @@ declare namespace sap {
|
|
|
9894
10166
|
button?: sap.m.Button;
|
|
9895
10167
|
}
|
|
9896
10168
|
|
|
10169
|
+
/**
|
|
10170
|
+
* Parameters of the ShellBar#searchButtonPressed event.
|
|
10171
|
+
*/
|
|
9897
10172
|
interface ShellBar$SearchButtonPressedEventParameters {
|
|
9898
10173
|
/**
|
|
9899
10174
|
* Reference to the button that has been pressed
|
|
@@ -9901,6 +10176,9 @@ declare namespace sap {
|
|
|
9901
10176
|
button?: sap.m.Button;
|
|
9902
10177
|
}
|
|
9903
10178
|
|
|
10179
|
+
/**
|
|
10180
|
+
* Parameters of the SidePanel#toggle event.
|
|
10181
|
+
*/
|
|
9904
10182
|
interface SidePanel$ToggleEventParameters {
|
|
9905
10183
|
/**
|
|
9906
10184
|
* The action item that triggers the event.
|
|
@@ -20858,141 +21136,225 @@ declare namespace sap {
|
|
|
20858
21136
|
*/
|
|
20859
21137
|
type IllustratedMessageType = sap.m.IllustratedMessageType;
|
|
20860
21138
|
|
|
21139
|
+
/**
|
|
21140
|
+
* Event object of the AvatarGroup#press event.
|
|
21141
|
+
*/
|
|
20861
21142
|
type AvatarGroup$PressEvent = sap.ui.base.Event<
|
|
20862
21143
|
AvatarGroup$PressEventParameters,
|
|
20863
21144
|
AvatarGroup
|
|
20864
21145
|
>;
|
|
20865
21146
|
|
|
21147
|
+
/**
|
|
21148
|
+
* Event object of the DynamicPage#pinnedStateChange event.
|
|
21149
|
+
*/
|
|
20866
21150
|
type DynamicPage$PinnedStateChangeEvent = sap.ui.base.Event<
|
|
20867
21151
|
DynamicPage$PinnedStateChangeEventParameters,
|
|
20868
21152
|
DynamicPage
|
|
20869
21153
|
>;
|
|
20870
21154
|
|
|
21155
|
+
/**
|
|
21156
|
+
* Event object of the DynamicPageTitle#stateChange event.
|
|
21157
|
+
*/
|
|
20871
21158
|
type DynamicPageTitle$StateChangeEvent = sap.ui.base.Event<
|
|
20872
21159
|
DynamicPageTitle$StateChangeEventParameters,
|
|
20873
21160
|
DynamicPageTitle
|
|
20874
21161
|
>;
|
|
20875
21162
|
|
|
21163
|
+
/**
|
|
21164
|
+
* Event object of the FlexibleColumnLayout#afterBeginColumnNavigate event.
|
|
21165
|
+
*/
|
|
20876
21166
|
type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = sap.ui.base.Event<
|
|
20877
21167
|
FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
|
|
20878
21168
|
FlexibleColumnLayout
|
|
20879
21169
|
>;
|
|
20880
21170
|
|
|
21171
|
+
/**
|
|
21172
|
+
* Event object of the FlexibleColumnLayout#afterEndColumnNavigate event.
|
|
21173
|
+
*/
|
|
20881
21174
|
type FlexibleColumnLayout$AfterEndColumnNavigateEvent = sap.ui.base.Event<
|
|
20882
21175
|
FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
|
|
20883
21176
|
FlexibleColumnLayout
|
|
20884
21177
|
>;
|
|
20885
21178
|
|
|
21179
|
+
/**
|
|
21180
|
+
* Event object of the FlexibleColumnLayout#afterMidColumnNavigate event.
|
|
21181
|
+
*/
|
|
20886
21182
|
type FlexibleColumnLayout$AfterMidColumnNavigateEvent = sap.ui.base.Event<
|
|
20887
21183
|
FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
|
|
20888
21184
|
FlexibleColumnLayout
|
|
20889
21185
|
>;
|
|
20890
21186
|
|
|
21187
|
+
/**
|
|
21188
|
+
* Event object of the FlexibleColumnLayout#beginColumnNavigate event.
|
|
21189
|
+
*/
|
|
20891
21190
|
type FlexibleColumnLayout$BeginColumnNavigateEvent = sap.ui.base.Event<
|
|
20892
21191
|
FlexibleColumnLayout$BeginColumnNavigateEventParameters,
|
|
20893
21192
|
FlexibleColumnLayout
|
|
20894
21193
|
>;
|
|
20895
21194
|
|
|
21195
|
+
/**
|
|
21196
|
+
* Event object of the FlexibleColumnLayout#columnResize event.
|
|
21197
|
+
*/
|
|
20896
21198
|
type FlexibleColumnLayout$ColumnResizeEvent = sap.ui.base.Event<
|
|
20897
21199
|
FlexibleColumnLayout$ColumnResizeEventParameters,
|
|
20898
21200
|
FlexibleColumnLayout
|
|
20899
21201
|
>;
|
|
20900
21202
|
|
|
21203
|
+
/**
|
|
21204
|
+
* Event object of the FlexibleColumnLayout#endColumnNavigate event.
|
|
21205
|
+
*/
|
|
20901
21206
|
type FlexibleColumnLayout$EndColumnNavigateEvent = sap.ui.base.Event<
|
|
20902
21207
|
FlexibleColumnLayout$EndColumnNavigateEventParameters,
|
|
20903
21208
|
FlexibleColumnLayout
|
|
20904
21209
|
>;
|
|
20905
21210
|
|
|
21211
|
+
/**
|
|
21212
|
+
* Event object of the FlexibleColumnLayout#midColumnNavigate event.
|
|
21213
|
+
*/
|
|
20906
21214
|
type FlexibleColumnLayout$MidColumnNavigateEvent = sap.ui.base.Event<
|
|
20907
21215
|
FlexibleColumnLayout$MidColumnNavigateEventParameters,
|
|
20908
21216
|
FlexibleColumnLayout
|
|
20909
21217
|
>;
|
|
20910
21218
|
|
|
21219
|
+
/**
|
|
21220
|
+
* Event object of the FlexibleColumnLayout#stateChange event.
|
|
21221
|
+
*/
|
|
20911
21222
|
type FlexibleColumnLayout$StateChangeEvent = sap.ui.base.Event<
|
|
20912
21223
|
FlexibleColumnLayout$StateChangeEventParameters,
|
|
20913
21224
|
FlexibleColumnLayout
|
|
20914
21225
|
>;
|
|
20915
21226
|
|
|
21227
|
+
/**
|
|
21228
|
+
* Event object of the GridContainer#borderReached event.
|
|
21229
|
+
*/
|
|
20916
21230
|
type GridContainer$BorderReachedEvent = sap.ui.base.Event<
|
|
20917
21231
|
GridContainer$BorderReachedEventParameters,
|
|
20918
21232
|
GridContainer
|
|
20919
21233
|
>;
|
|
20920
21234
|
|
|
21235
|
+
/**
|
|
21236
|
+
* Event object of the GridContainer#columnsChange event.
|
|
21237
|
+
*/
|
|
20921
21238
|
type GridContainer$ColumnsChangeEvent = sap.ui.base.Event<
|
|
20922
21239
|
GridContainer$ColumnsChangeEventParameters,
|
|
20923
21240
|
GridContainer
|
|
20924
21241
|
>;
|
|
20925
21242
|
|
|
21243
|
+
/**
|
|
21244
|
+
* Event object of the GridContainer#layoutChange event.
|
|
21245
|
+
*/
|
|
20926
21246
|
type GridContainer$LayoutChangeEvent = sap.ui.base.Event<
|
|
20927
21247
|
GridContainer$LayoutChangeEventParameters,
|
|
20928
21248
|
GridContainer
|
|
20929
21249
|
>;
|
|
20930
21250
|
|
|
21251
|
+
/**
|
|
21252
|
+
* Event object of the GridList#borderReached event.
|
|
21253
|
+
*/
|
|
20931
21254
|
type GridList$BorderReachedEvent = sap.ui.base.Event<
|
|
20932
21255
|
GridList$BorderReachedEventParameters,
|
|
20933
21256
|
GridList
|
|
20934
21257
|
>;
|
|
20935
21258
|
|
|
21259
|
+
/**
|
|
21260
|
+
* Event object of the ProductSwitch#change event.
|
|
21261
|
+
*/
|
|
20936
21262
|
type ProductSwitch$ChangeEvent = sap.ui.base.Event<
|
|
20937
21263
|
ProductSwitch$ChangeEventParameters,
|
|
20938
21264
|
ProductSwitch
|
|
20939
21265
|
>;
|
|
20940
21266
|
|
|
21267
|
+
/**
|
|
21268
|
+
* Event object of the SearchManager#liveChange event.
|
|
21269
|
+
*/
|
|
20941
21270
|
type SearchManager$LiveChangeEvent = sap.ui.base.Event<
|
|
20942
21271
|
SearchManager$LiveChangeEventParameters,
|
|
20943
21272
|
SearchManager
|
|
20944
21273
|
>;
|
|
20945
21274
|
|
|
21275
|
+
/**
|
|
21276
|
+
* Event object of the SearchManager#search event.
|
|
21277
|
+
*/
|
|
20946
21278
|
type SearchManager$SearchEvent = sap.ui.base.Event<
|
|
20947
21279
|
SearchManager$SearchEventParameters,
|
|
20948
21280
|
SearchManager
|
|
20949
21281
|
>;
|
|
20950
21282
|
|
|
21283
|
+
/**
|
|
21284
|
+
* Event object of the SearchManager#suggest event.
|
|
21285
|
+
*/
|
|
20951
21286
|
type SearchManager$SuggestEvent = sap.ui.base.Event<
|
|
20952
21287
|
SearchManager$SuggestEventParameters,
|
|
20953
21288
|
SearchManager
|
|
20954
21289
|
>;
|
|
20955
21290
|
|
|
21291
|
+
/**
|
|
21292
|
+
* Event object of the ShellBar#avatarPressed event.
|
|
21293
|
+
*/
|
|
20956
21294
|
type ShellBar$AvatarPressedEvent = sap.ui.base.Event<
|
|
20957
21295
|
ShellBar$AvatarPressedEventParameters,
|
|
20958
21296
|
ShellBar
|
|
20959
21297
|
>;
|
|
20960
21298
|
|
|
21299
|
+
/**
|
|
21300
|
+
* Event object of the ShellBar#copilotPressed event.
|
|
21301
|
+
*/
|
|
20961
21302
|
type ShellBar$CopilotPressedEvent = sap.ui.base.Event<
|
|
20962
21303
|
ShellBar$CopilotPressedEventParameters,
|
|
20963
21304
|
ShellBar
|
|
20964
21305
|
>;
|
|
20965
21306
|
|
|
21307
|
+
/**
|
|
21308
|
+
* Event object of the ShellBar#homeIconPressed event.
|
|
21309
|
+
*/
|
|
20966
21310
|
type ShellBar$HomeIconPressedEvent = sap.ui.base.Event<
|
|
20967
21311
|
ShellBar$HomeIconPressedEventParameters,
|
|
20968
21312
|
ShellBar
|
|
20969
21313
|
>;
|
|
20970
21314
|
|
|
21315
|
+
/**
|
|
21316
|
+
* Event object of the ShellBar#menuButtonPressed event.
|
|
21317
|
+
*/
|
|
20971
21318
|
type ShellBar$MenuButtonPressedEvent = sap.ui.base.Event<
|
|
20972
21319
|
ShellBar$MenuButtonPressedEventParameters,
|
|
20973
21320
|
ShellBar
|
|
20974
21321
|
>;
|
|
20975
21322
|
|
|
21323
|
+
/**
|
|
21324
|
+
* Event object of the ShellBar#navButtonPressed event.
|
|
21325
|
+
*/
|
|
20976
21326
|
type ShellBar$NavButtonPressedEvent = sap.ui.base.Event<
|
|
20977
21327
|
ShellBar$NavButtonPressedEventParameters,
|
|
20978
21328
|
ShellBar
|
|
20979
21329
|
>;
|
|
20980
21330
|
|
|
21331
|
+
/**
|
|
21332
|
+
* Event object of the ShellBar#notificationsPressed event.
|
|
21333
|
+
*/
|
|
20981
21334
|
type ShellBar$NotificationsPressedEvent = sap.ui.base.Event<
|
|
20982
21335
|
ShellBar$NotificationsPressedEventParameters,
|
|
20983
21336
|
ShellBar
|
|
20984
21337
|
>;
|
|
20985
21338
|
|
|
21339
|
+
/**
|
|
21340
|
+
* Event object of the ShellBar#productSwitcherPressed event.
|
|
21341
|
+
*/
|
|
20986
21342
|
type ShellBar$ProductSwitcherPressedEvent = sap.ui.base.Event<
|
|
20987
21343
|
ShellBar$ProductSwitcherPressedEventParameters,
|
|
20988
21344
|
ShellBar
|
|
20989
21345
|
>;
|
|
20990
21346
|
|
|
21347
|
+
/**
|
|
21348
|
+
* Event object of the ShellBar#searchButtonPressed event.
|
|
21349
|
+
*/
|
|
20991
21350
|
type ShellBar$SearchButtonPressedEvent = sap.ui.base.Event<
|
|
20992
21351
|
ShellBar$SearchButtonPressedEventParameters,
|
|
20993
21352
|
ShellBar
|
|
20994
21353
|
>;
|
|
20995
21354
|
|
|
21355
|
+
/**
|
|
21356
|
+
* Event object of the SidePanel#toggle event.
|
|
21357
|
+
*/
|
|
20996
21358
|
type SidePanel$ToggleEvent = sap.ui.base.Event<
|
|
20997
21359
|
SidePanel$ToggleEventParameters,
|
|
20998
21360
|
SidePanel
|