@openui5/types 1.120.11 → 1.120.13
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 +372 -54
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +118 -18
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -488,7 +488,11 @@ declare module "sap/f/Avatar" {
|
|
|
488
488
|
*/
|
|
489
489
|
static getMetadata(): ElementMetadata;
|
|
490
490
|
}
|
|
491
|
-
|
|
491
|
+
/**
|
|
492
|
+
* Describes the settings that can be provided to the Avatar constructor.
|
|
493
|
+
*
|
|
494
|
+
* @deprecated (since 1.73) - Use the {@link sap.m.Avatar} instead.
|
|
495
|
+
*/
|
|
492
496
|
export interface $AvatarSettings extends $AvatarSettings1 {}
|
|
493
497
|
}
|
|
494
498
|
|
|
@@ -898,7 +902,12 @@ declare module "sap/f/AvatarGroup" {
|
|
|
898
902
|
sGroupType?: AvatarGroupType | keyof typeof AvatarGroupType
|
|
899
903
|
): this;
|
|
900
904
|
}
|
|
901
|
-
|
|
905
|
+
/**
|
|
906
|
+
* Describes the settings that can be provided to the AvatarGroup constructor.
|
|
907
|
+
*
|
|
908
|
+
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
909
|
+
* the API might be changed in future.
|
|
910
|
+
*/
|
|
902
911
|
export interface $AvatarGroupSettings extends $ControlSettings {
|
|
903
912
|
/**
|
|
904
913
|
* Defines the mode of the `AvatarGroup`.
|
|
@@ -957,6 +966,9 @@ declare module "sap/f/AvatarGroup" {
|
|
|
957
966
|
press?: (oEvent: AvatarGroup$PressEvent) => void;
|
|
958
967
|
}
|
|
959
968
|
|
|
969
|
+
/**
|
|
970
|
+
* Parameters of the AvatarGroup#press event.
|
|
971
|
+
*/
|
|
960
972
|
export interface AvatarGroup$PressEventParameters {
|
|
961
973
|
/**
|
|
962
974
|
* The `GroupType` of the control.
|
|
@@ -974,6 +986,9 @@ declare module "sap/f/AvatarGroup" {
|
|
|
974
986
|
avatarsDisplayed?: int;
|
|
975
987
|
}
|
|
976
988
|
|
|
989
|
+
/**
|
|
990
|
+
* Event object of the AvatarGroup#press event.
|
|
991
|
+
*/
|
|
977
992
|
export type AvatarGroup$PressEvent = Event<
|
|
978
993
|
AvatarGroup$PressEventParameters,
|
|
979
994
|
AvatarGroup
|
|
@@ -1153,7 +1168,12 @@ declare module "sap/f/AvatarGroupItem" {
|
|
|
1153
1168
|
sSrc?: URI
|
|
1154
1169
|
): this;
|
|
1155
1170
|
}
|
|
1156
|
-
|
|
1171
|
+
/**
|
|
1172
|
+
* Describes the settings that can be provided to the AvatarGroupItem constructor.
|
|
1173
|
+
*
|
|
1174
|
+
* @experimental (since 1.73) - This class is experimental and provides only limited functionality. Also
|
|
1175
|
+
* the API might be changed in future.
|
|
1176
|
+
*/
|
|
1157
1177
|
export interface $AvatarGroupItemSettings extends $ControlSettings {
|
|
1158
1178
|
/**
|
|
1159
1179
|
* Determines the path to the desired image or icon.
|
|
@@ -1366,7 +1386,9 @@ declare module "sap/f/Card" {
|
|
|
1366
1386
|
sHeaderPosition?: cards.HeaderPosition | keyof typeof cards.HeaderPosition
|
|
1367
1387
|
): this;
|
|
1368
1388
|
}
|
|
1369
|
-
|
|
1389
|
+
/**
|
|
1390
|
+
* Describes the settings that can be provided to the Card constructor.
|
|
1391
|
+
*/
|
|
1370
1392
|
export interface $CardSettings extends $CardBaseSettings {
|
|
1371
1393
|
/**
|
|
1372
1394
|
* Defines the position of the Card Header.
|
|
@@ -1538,7 +1560,9 @@ declare module "sap/f/CardBase" {
|
|
|
1538
1560
|
sWidth?: CSSSize
|
|
1539
1561
|
): this;
|
|
1540
1562
|
}
|
|
1541
|
-
|
|
1563
|
+
/**
|
|
1564
|
+
* Describes the settings that can be provided to the CardBase constructor.
|
|
1565
|
+
*/
|
|
1542
1566
|
export interface $CardBaseSettings extends $ControlSettings {
|
|
1543
1567
|
/**
|
|
1544
1568
|
* Defines the width of the card.
|
|
@@ -1803,7 +1827,9 @@ declare module "sap/f/cards/BaseHeader" {
|
|
|
1803
1827
|
oToolbar: Control
|
|
1804
1828
|
): this;
|
|
1805
1829
|
}
|
|
1806
|
-
|
|
1830
|
+
/**
|
|
1831
|
+
* Describes the settings that can be provided to the BaseHeader constructor.
|
|
1832
|
+
*/
|
|
1807
1833
|
export interface $BaseHeaderSettings extends $ControlSettings {
|
|
1808
1834
|
/**
|
|
1809
1835
|
* Defines the timestamp of the oldest data in the card. Use this to show to the end user how fresh the
|
|
@@ -2406,7 +2432,9 @@ declare module "sap/f/cards/Header" {
|
|
|
2406
2432
|
*/
|
|
2407
2433
|
shouldShowIcon(): boolean;
|
|
2408
2434
|
}
|
|
2409
|
-
|
|
2435
|
+
/**
|
|
2436
|
+
* Describes the settings that can be provided to the Header constructor.
|
|
2437
|
+
*/
|
|
2410
2438
|
export interface $HeaderSettings extends $BaseHeaderSettings {
|
|
2411
2439
|
/**
|
|
2412
2440
|
* Defines the title.
|
|
@@ -2495,8 +2523,14 @@ declare module "sap/f/cards/Header" {
|
|
|
2495
2523
|
press?: (oEvent: Event) => void;
|
|
2496
2524
|
}
|
|
2497
2525
|
|
|
2526
|
+
/**
|
|
2527
|
+
* Parameters of the Header#press event.
|
|
2528
|
+
*/
|
|
2498
2529
|
export interface Header$PressEventParameters {}
|
|
2499
2530
|
|
|
2531
|
+
/**
|
|
2532
|
+
* Event object of the Header#press event.
|
|
2533
|
+
*/
|
|
2500
2534
|
export type Header$PressEvent = Event<Header$PressEventParameters, Header>;
|
|
2501
2535
|
}
|
|
2502
2536
|
|
|
@@ -3533,7 +3567,9 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3533
3567
|
*/
|
|
3534
3568
|
shouldShowIcon(): boolean;
|
|
3535
3569
|
}
|
|
3536
|
-
|
|
3570
|
+
/**
|
|
3571
|
+
* Describes the settings that can be provided to the NumericHeader constructor.
|
|
3572
|
+
*/
|
|
3537
3573
|
export interface $NumericHeaderSettings extends $BaseHeaderSettings {
|
|
3538
3574
|
/**
|
|
3539
3575
|
* The title of the card
|
|
@@ -3727,8 +3763,14 @@ declare module "sap/f/cards/NumericHeader" {
|
|
|
3727
3763
|
press?: (oEvent: Event) => void;
|
|
3728
3764
|
}
|
|
3729
3765
|
|
|
3766
|
+
/**
|
|
3767
|
+
* Parameters of the NumericHeader#press event.
|
|
3768
|
+
*/
|
|
3730
3769
|
export interface NumericHeader$PressEventParameters {}
|
|
3731
3770
|
|
|
3771
|
+
/**
|
|
3772
|
+
* Event object of the NumericHeader#press event.
|
|
3773
|
+
*/
|
|
3732
3774
|
export type NumericHeader$PressEvent = Event<
|
|
3733
3775
|
NumericHeader$PressEventParameters,
|
|
3734
3776
|
NumericHeader
|
|
@@ -3909,7 +3951,9 @@ declare module "sap/f/cards/NumericSideIndicator" {
|
|
|
3909
3951
|
sValue: string
|
|
3910
3952
|
): this;
|
|
3911
3953
|
}
|
|
3912
|
-
|
|
3954
|
+
/**
|
|
3955
|
+
* Describes the settings that can be provided to the NumericSideIndicator constructor.
|
|
3956
|
+
*/
|
|
3913
3957
|
export interface $NumericSideIndicatorSettings extends $ControlSettings {
|
|
3914
3958
|
/**
|
|
3915
3959
|
* The title of the indicator
|
|
@@ -4092,7 +4136,11 @@ declare module "sap/f/dnd/GridDropInfo" {
|
|
|
4092
4136
|
} | null
|
|
4093
4137
|
): this;
|
|
4094
4138
|
}
|
|
4095
|
-
|
|
4139
|
+
/**
|
|
4140
|
+
* Describes the settings that can be provided to the GridDropInfo constructor.
|
|
4141
|
+
*
|
|
4142
|
+
* @experimental (since 1.68) - This class is experimental. The API may change.
|
|
4143
|
+
*/
|
|
4096
4144
|
export interface $GridDropInfoSettings extends $DropInfoSettings {
|
|
4097
4145
|
/**
|
|
4098
4146
|
* A function which will define the desired drop indicator size. The drop indicator shows the user how the
|
|
@@ -4807,7 +4855,9 @@ declare module "sap/f/DynamicPage" {
|
|
|
4807
4855
|
bToggleHeaderOnTitleClick?: boolean
|
|
4808
4856
|
): this;
|
|
4809
4857
|
}
|
|
4810
|
-
|
|
4858
|
+
/**
|
|
4859
|
+
* Describes the settings that can be provided to the DynamicPage constructor.
|
|
4860
|
+
*/
|
|
4811
4861
|
export interface $DynamicPageSettings extends $ControlSettings {
|
|
4812
4862
|
/**
|
|
4813
4863
|
* Preserves the current header state when scrolling. For example, if the user expands the header by clicking
|
|
@@ -4958,6 +5008,9 @@ declare module "sap/f/DynamicPage" {
|
|
|
4958
5008
|
pinnedStateChange?: (oEvent: DynamicPage$PinnedStateChangeEvent) => void;
|
|
4959
5009
|
}
|
|
4960
5010
|
|
|
5011
|
+
/**
|
|
5012
|
+
* Parameters of the DynamicPage#pinnedStateChange event.
|
|
5013
|
+
*/
|
|
4961
5014
|
export interface DynamicPage$PinnedStateChangeEventParameters {
|
|
4962
5015
|
/**
|
|
4963
5016
|
* False or True values indicate the new pinned property value.
|
|
@@ -4965,6 +5018,9 @@ declare module "sap/f/DynamicPage" {
|
|
|
4965
5018
|
pinned?: boolean;
|
|
4966
5019
|
}
|
|
4967
5020
|
|
|
5021
|
+
/**
|
|
5022
|
+
* Event object of the DynamicPage#pinnedStateChange event.
|
|
5023
|
+
*/
|
|
4968
5024
|
export type DynamicPage$PinnedStateChangeEvent = Event<
|
|
4969
5025
|
DynamicPage$PinnedStateChangeEventParameters,
|
|
4970
5026
|
DynamicPage
|
|
@@ -5317,7 +5373,9 @@ declare module "sap/f/DynamicPageAccessibleLandmarkInfo" {
|
|
|
5317
5373
|
sRootRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
5318
5374
|
): this;
|
|
5319
5375
|
}
|
|
5320
|
-
|
|
5376
|
+
/**
|
|
5377
|
+
* Describes the settings that can be provided to the DynamicPageAccessibleLandmarkInfo constructor.
|
|
5378
|
+
*/
|
|
5321
5379
|
export interface $DynamicPageAccessibleLandmarkInfoSettings
|
|
5322
5380
|
extends $ElementSettings {
|
|
5323
5381
|
/**
|
|
@@ -5633,7 +5691,9 @@ declare module "sap/f/DynamicPageHeader" {
|
|
|
5633
5691
|
bPinnable?: boolean
|
|
5634
5692
|
): this;
|
|
5635
5693
|
}
|
|
5636
|
-
|
|
5694
|
+
/**
|
|
5695
|
+
* Describes the settings that can be provided to the DynamicPageHeader constructor.
|
|
5696
|
+
*/
|
|
5637
5697
|
export interface $DynamicPageHeaderSettings extends $ControlSettings {
|
|
5638
5698
|
/**
|
|
5639
5699
|
* Determines whether the header is pinnable.
|
|
@@ -6632,7 +6692,9 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
6632
6692
|
oSnappedTitleOnMobile: Title
|
|
6633
6693
|
): this;
|
|
6634
6694
|
}
|
|
6635
|
-
|
|
6695
|
+
/**
|
|
6696
|
+
* Describes the settings that can be provided to the DynamicPageTitle constructor.
|
|
6697
|
+
*/
|
|
6636
6698
|
export interface $DynamicPageTitleSettings extends $ControlSettings {
|
|
6637
6699
|
/**
|
|
6638
6700
|
* Determines which of the `DynamicPageTitle` areas (Begin, Middle) is primary.
|
|
@@ -6840,6 +6902,9 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
6840
6902
|
stateChange?: (oEvent: DynamicPageTitle$StateChangeEvent) => void;
|
|
6841
6903
|
}
|
|
6842
6904
|
|
|
6905
|
+
/**
|
|
6906
|
+
* Parameters of the DynamicPageTitle#stateChange event.
|
|
6907
|
+
*/
|
|
6843
6908
|
export interface DynamicPageTitle$StateChangeEventParameters {
|
|
6844
6909
|
/**
|
|
6845
6910
|
* Whether the title was expanded (true) or collapsed (false).
|
|
@@ -6847,6 +6912,9 @@ declare module "sap/f/DynamicPageTitle" {
|
|
|
6847
6912
|
isExpanded?: boolean;
|
|
6848
6913
|
}
|
|
6849
6914
|
|
|
6915
|
+
/**
|
|
6916
|
+
* Event object of the DynamicPageTitle#stateChange event.
|
|
6917
|
+
*/
|
|
6850
6918
|
export type DynamicPageTitle$StateChangeEvent = Event<
|
|
6851
6919
|
DynamicPageTitle$StateChangeEventParameters,
|
|
6852
6920
|
DynamicPageTitle
|
|
@@ -8769,7 +8837,9 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8769
8837
|
oTransitionParameters: object
|
|
8770
8838
|
): this;
|
|
8771
8839
|
}
|
|
8772
|
-
|
|
8840
|
+
/**
|
|
8841
|
+
* Describes the settings that can be provided to the FlexibleColumnLayout constructor.
|
|
8842
|
+
*/
|
|
8773
8843
|
export interface $FlexibleColumnLayoutSettings extends $ControlSettings {
|
|
8774
8844
|
/**
|
|
8775
8845
|
* Determines whether the initial focus is set automatically on first rendering and after navigating to
|
|
@@ -8974,6 +9044,9 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
8974
9044
|
columnResize?: (oEvent: FlexibleColumnLayout$ColumnResizeEvent) => void;
|
|
8975
9045
|
}
|
|
8976
9046
|
|
|
9047
|
+
/**
|
|
9048
|
+
* Parameters of the FlexibleColumnLayout#afterBeginColumnNavigate event.
|
|
9049
|
+
*/
|
|
8977
9050
|
export interface FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters {
|
|
8978
9051
|
/**
|
|
8979
9052
|
* The page, which had been displayed before navigation.
|
|
@@ -9027,11 +9100,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9027
9100
|
direction?: string;
|
|
9028
9101
|
}
|
|
9029
9102
|
|
|
9103
|
+
/**
|
|
9104
|
+
* Event object of the FlexibleColumnLayout#afterBeginColumnNavigate event.
|
|
9105
|
+
*/
|
|
9030
9106
|
export type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = Event<
|
|
9031
9107
|
FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
|
|
9032
9108
|
FlexibleColumnLayout
|
|
9033
9109
|
>;
|
|
9034
9110
|
|
|
9111
|
+
/**
|
|
9112
|
+
* Parameters of the FlexibleColumnLayout#afterEndColumnNavigate event.
|
|
9113
|
+
*/
|
|
9035
9114
|
export interface FlexibleColumnLayout$AfterEndColumnNavigateEventParameters {
|
|
9036
9115
|
/**
|
|
9037
9116
|
* The page, which had been displayed before navigation.
|
|
@@ -9085,11 +9164,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9085
9164
|
direction?: string;
|
|
9086
9165
|
}
|
|
9087
9166
|
|
|
9167
|
+
/**
|
|
9168
|
+
* Event object of the FlexibleColumnLayout#afterEndColumnNavigate event.
|
|
9169
|
+
*/
|
|
9088
9170
|
export type FlexibleColumnLayout$AfterEndColumnNavigateEvent = Event<
|
|
9089
9171
|
FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
|
|
9090
9172
|
FlexibleColumnLayout
|
|
9091
9173
|
>;
|
|
9092
9174
|
|
|
9175
|
+
/**
|
|
9176
|
+
* Parameters of the FlexibleColumnLayout#afterMidColumnNavigate event.
|
|
9177
|
+
*/
|
|
9093
9178
|
export interface FlexibleColumnLayout$AfterMidColumnNavigateEventParameters {
|
|
9094
9179
|
/**
|
|
9095
9180
|
* The page, which had been displayed before navigation.
|
|
@@ -9143,11 +9228,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9143
9228
|
direction?: string;
|
|
9144
9229
|
}
|
|
9145
9230
|
|
|
9231
|
+
/**
|
|
9232
|
+
* Event object of the FlexibleColumnLayout#afterMidColumnNavigate event.
|
|
9233
|
+
*/
|
|
9146
9234
|
export type FlexibleColumnLayout$AfterMidColumnNavigateEvent = Event<
|
|
9147
9235
|
FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
|
|
9148
9236
|
FlexibleColumnLayout
|
|
9149
9237
|
>;
|
|
9150
9238
|
|
|
9239
|
+
/**
|
|
9240
|
+
* Parameters of the FlexibleColumnLayout#beginColumnNavigate event.
|
|
9241
|
+
*/
|
|
9151
9242
|
export interface FlexibleColumnLayout$BeginColumnNavigateEventParameters {
|
|
9152
9243
|
/**
|
|
9153
9244
|
* The page, which was displayed before the current navigation.
|
|
@@ -9201,11 +9292,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9201
9292
|
direction?: string;
|
|
9202
9293
|
}
|
|
9203
9294
|
|
|
9295
|
+
/**
|
|
9296
|
+
* Event object of the FlexibleColumnLayout#beginColumnNavigate event.
|
|
9297
|
+
*/
|
|
9204
9298
|
export type FlexibleColumnLayout$BeginColumnNavigateEvent = Event<
|
|
9205
9299
|
FlexibleColumnLayout$BeginColumnNavigateEventParameters,
|
|
9206
9300
|
FlexibleColumnLayout
|
|
9207
9301
|
>;
|
|
9208
9302
|
|
|
9303
|
+
/**
|
|
9304
|
+
* Parameters of the FlexibleColumnLayout#columnResize event.
|
|
9305
|
+
*/
|
|
9209
9306
|
export interface FlexibleColumnLayout$ColumnResizeEventParameters {
|
|
9210
9307
|
/**
|
|
9211
9308
|
* Determines whether `beginColumn` resize has completed.
|
|
@@ -9223,11 +9320,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9223
9320
|
endColumn?: boolean;
|
|
9224
9321
|
}
|
|
9225
9322
|
|
|
9323
|
+
/**
|
|
9324
|
+
* Event object of the FlexibleColumnLayout#columnResize event.
|
|
9325
|
+
*/
|
|
9226
9326
|
export type FlexibleColumnLayout$ColumnResizeEvent = Event<
|
|
9227
9327
|
FlexibleColumnLayout$ColumnResizeEventParameters,
|
|
9228
9328
|
FlexibleColumnLayout
|
|
9229
9329
|
>;
|
|
9230
9330
|
|
|
9331
|
+
/**
|
|
9332
|
+
* Parameters of the FlexibleColumnLayout#endColumnNavigate event.
|
|
9333
|
+
*/
|
|
9231
9334
|
export interface FlexibleColumnLayout$EndColumnNavigateEventParameters {
|
|
9232
9335
|
/**
|
|
9233
9336
|
* The page, which was displayed before the current navigation.
|
|
@@ -9281,11 +9384,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9281
9384
|
direction?: string;
|
|
9282
9385
|
}
|
|
9283
9386
|
|
|
9387
|
+
/**
|
|
9388
|
+
* Event object of the FlexibleColumnLayout#endColumnNavigate event.
|
|
9389
|
+
*/
|
|
9284
9390
|
export type FlexibleColumnLayout$EndColumnNavigateEvent = Event<
|
|
9285
9391
|
FlexibleColumnLayout$EndColumnNavigateEventParameters,
|
|
9286
9392
|
FlexibleColumnLayout
|
|
9287
9393
|
>;
|
|
9288
9394
|
|
|
9395
|
+
/**
|
|
9396
|
+
* Parameters of the FlexibleColumnLayout#midColumnNavigate event.
|
|
9397
|
+
*/
|
|
9289
9398
|
export interface FlexibleColumnLayout$MidColumnNavigateEventParameters {
|
|
9290
9399
|
/**
|
|
9291
9400
|
* The page, which was displayed before the current navigation.
|
|
@@ -9339,11 +9448,17 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9339
9448
|
direction?: string;
|
|
9340
9449
|
}
|
|
9341
9450
|
|
|
9451
|
+
/**
|
|
9452
|
+
* Event object of the FlexibleColumnLayout#midColumnNavigate event.
|
|
9453
|
+
*/
|
|
9342
9454
|
export type FlexibleColumnLayout$MidColumnNavigateEvent = Event<
|
|
9343
9455
|
FlexibleColumnLayout$MidColumnNavigateEventParameters,
|
|
9344
9456
|
FlexibleColumnLayout
|
|
9345
9457
|
>;
|
|
9346
9458
|
|
|
9459
|
+
/**
|
|
9460
|
+
* Parameters of the FlexibleColumnLayout#stateChange event.
|
|
9461
|
+
*/
|
|
9347
9462
|
export interface FlexibleColumnLayout$StateChangeEventParameters {
|
|
9348
9463
|
/**
|
|
9349
9464
|
* The value of the `layout` property
|
|
@@ -9372,6 +9487,9 @@ declare module "sap/f/FlexibleColumnLayout" {
|
|
|
9372
9487
|
isResize?: boolean;
|
|
9373
9488
|
}
|
|
9374
9489
|
|
|
9490
|
+
/**
|
|
9491
|
+
* Event object of the FlexibleColumnLayout#stateChange event.
|
|
9492
|
+
*/
|
|
9375
9493
|
export type FlexibleColumnLayout$StateChangeEvent = Event<
|
|
9376
9494
|
FlexibleColumnLayout$StateChangeEventParameters,
|
|
9377
9495
|
FlexibleColumnLayout
|
|
@@ -9673,7 +9791,9 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
9673
9791
|
sMiddleColumnLabel?: string
|
|
9674
9792
|
): this;
|
|
9675
9793
|
}
|
|
9676
|
-
|
|
9794
|
+
/**
|
|
9795
|
+
* Describes the settings that can be provided to the FlexibleColumnLayoutAccessibleLandmarkInfo constructor.
|
|
9796
|
+
*/
|
|
9677
9797
|
export interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
|
|
9678
9798
|
extends $ElementSettings {
|
|
9679
9799
|
/**
|
|
@@ -11063,7 +11183,9 @@ declare module "sap/f/GridContainer" {
|
|
|
11063
11183
|
sWidth?: CSSSize
|
|
11064
11184
|
): this;
|
|
11065
11185
|
}
|
|
11066
|
-
|
|
11186
|
+
/**
|
|
11187
|
+
* Describes the settings that can be provided to the GridContainer constructor.
|
|
11188
|
+
*/
|
|
11067
11189
|
export interface $GridContainerSettings extends $ControlSettings {
|
|
11068
11190
|
/**
|
|
11069
11191
|
* Defines the width of the control.
|
|
@@ -11186,6 +11308,9 @@ declare module "sap/f/GridContainer" {
|
|
|
11186
11308
|
borderReached?: (oEvent: GridContainer$BorderReachedEvent) => void;
|
|
11187
11309
|
}
|
|
11188
11310
|
|
|
11311
|
+
/**
|
|
11312
|
+
* Parameters of the GridContainer#borderReached event.
|
|
11313
|
+
*/
|
|
11189
11314
|
export interface GridContainer$BorderReachedEventParameters {
|
|
11190
11315
|
/**
|
|
11191
11316
|
* Event that leads to the focus change.
|
|
@@ -11208,11 +11333,17 @@ declare module "sap/f/GridContainer" {
|
|
|
11208
11333
|
column?: int;
|
|
11209
11334
|
}
|
|
11210
11335
|
|
|
11336
|
+
/**
|
|
11337
|
+
* Event object of the GridContainer#borderReached event.
|
|
11338
|
+
*/
|
|
11211
11339
|
export type GridContainer$BorderReachedEvent = Event<
|
|
11212
11340
|
GridContainer$BorderReachedEventParameters,
|
|
11213
11341
|
GridContainer
|
|
11214
11342
|
>;
|
|
11215
11343
|
|
|
11344
|
+
/**
|
|
11345
|
+
* Parameters of the GridContainer#columnsChange event.
|
|
11346
|
+
*/
|
|
11216
11347
|
export interface GridContainer$ColumnsChangeEventParameters {
|
|
11217
11348
|
/**
|
|
11218
11349
|
* The count of the gird columns.
|
|
@@ -11220,11 +11351,17 @@ declare module "sap/f/GridContainer" {
|
|
|
11220
11351
|
columns?: int;
|
|
11221
11352
|
}
|
|
11222
11353
|
|
|
11354
|
+
/**
|
|
11355
|
+
* Event object of the GridContainer#columnsChange event.
|
|
11356
|
+
*/
|
|
11223
11357
|
export type GridContainer$ColumnsChangeEvent = Event<
|
|
11224
11358
|
GridContainer$ColumnsChangeEventParameters,
|
|
11225
11359
|
GridContainer
|
|
11226
11360
|
>;
|
|
11227
11361
|
|
|
11362
|
+
/**
|
|
11363
|
+
* Parameters of the GridContainer#layoutChange event.
|
|
11364
|
+
*/
|
|
11228
11365
|
export interface GridContainer$LayoutChangeEventParameters {
|
|
11229
11366
|
/**
|
|
11230
11367
|
* The name of the newly active layout.
|
|
@@ -11232,6 +11369,9 @@ declare module "sap/f/GridContainer" {
|
|
|
11232
11369
|
layout?: string;
|
|
11233
11370
|
}
|
|
11234
11371
|
|
|
11372
|
+
/**
|
|
11373
|
+
* Event object of the GridContainer#layoutChange event.
|
|
11374
|
+
*/
|
|
11235
11375
|
export type GridContainer$LayoutChangeEvent = Event<
|
|
11236
11376
|
GridContainer$LayoutChangeEventParameters,
|
|
11237
11377
|
GridContainer
|
|
@@ -11413,7 +11553,11 @@ declare module "sap/f/GridContainerItemLayoutData" {
|
|
|
11413
11553
|
iRows: int
|
|
11414
11554
|
): this;
|
|
11415
11555
|
}
|
|
11416
|
-
|
|
11556
|
+
/**
|
|
11557
|
+
* Describes the settings that can be provided to the GridContainerItemLayoutData constructor.
|
|
11558
|
+
*
|
|
11559
|
+
* @experimental (since 1.65) - This class is experimental. The API may change.
|
|
11560
|
+
*/
|
|
11417
11561
|
export interface $GridContainerItemLayoutDataSettings
|
|
11418
11562
|
extends $LayoutDataSettings {
|
|
11419
11563
|
/**
|
|
@@ -11714,7 +11858,11 @@ declare module "sap/f/GridContainerSettings" {
|
|
|
11714
11858
|
sRowSize?: CSSSize
|
|
11715
11859
|
): this;
|
|
11716
11860
|
}
|
|
11717
|
-
|
|
11861
|
+
/**
|
|
11862
|
+
* Describes the settings that can be provided to the GridContainerSettings constructor.
|
|
11863
|
+
*
|
|
11864
|
+
* @experimental (since 1.65) - This class is experimental. The API may change.
|
|
11865
|
+
*/
|
|
11718
11866
|
export interface $GridContainerSettingsSettings
|
|
11719
11867
|
extends $ManagedObjectSettings {
|
|
11720
11868
|
/**
|
|
@@ -12053,7 +12201,9 @@ declare module "sap/f/GridList" {
|
|
|
12053
12201
|
oCustomLayout: GridLayoutBase
|
|
12054
12202
|
): this;
|
|
12055
12203
|
}
|
|
12056
|
-
|
|
12204
|
+
/**
|
|
12205
|
+
* Describes the settings that can be provided to the GridList constructor.
|
|
12206
|
+
*/
|
|
12057
12207
|
export interface $GridListSettings extends $ListBaseSettings {
|
|
12058
12208
|
/**
|
|
12059
12209
|
* Defines a custom grid layout
|
|
@@ -12066,6 +12216,9 @@ declare module "sap/f/GridList" {
|
|
|
12066
12216
|
borderReached?: (oEvent: GridList$BorderReachedEvent) => void;
|
|
12067
12217
|
}
|
|
12068
12218
|
|
|
12219
|
+
/**
|
|
12220
|
+
* Parameters of the GridList#borderReached event.
|
|
12221
|
+
*/
|
|
12069
12222
|
export interface GridList$BorderReachedEventParameters {
|
|
12070
12223
|
/**
|
|
12071
12224
|
* Event that leads to the focus change.
|
|
@@ -12088,6 +12241,9 @@ declare module "sap/f/GridList" {
|
|
|
12088
12241
|
column?: int;
|
|
12089
12242
|
}
|
|
12090
12243
|
|
|
12244
|
+
/**
|
|
12245
|
+
* Event object of the GridList#borderReached event.
|
|
12246
|
+
*/
|
|
12091
12247
|
export type GridList$BorderReachedEvent = Event<
|
|
12092
12248
|
GridList$BorderReachedEventParameters,
|
|
12093
12249
|
GridList
|
|
@@ -12277,7 +12433,9 @@ declare module "sap/f/GridListItem" {
|
|
|
12277
12433
|
*/
|
|
12278
12434
|
unbindContent(): this;
|
|
12279
12435
|
}
|
|
12280
|
-
|
|
12436
|
+
/**
|
|
12437
|
+
* Describes the settings that can be provided to the GridListItem constructor.
|
|
12438
|
+
*/
|
|
12281
12439
|
export interface $GridListItemSettings extends $ListItemBaseSettings {
|
|
12282
12440
|
/**
|
|
12283
12441
|
* The content of this list item
|
|
@@ -12395,7 +12553,11 @@ declare module "sap/f/IllustratedMessage" {
|
|
|
12395
12553
|
*/
|
|
12396
12554
|
static getMetadata(): ElementMetadata;
|
|
12397
12555
|
}
|
|
12398
|
-
|
|
12556
|
+
/**
|
|
12557
|
+
* Describes the settings that can be provided to the IllustratedMessage constructor.
|
|
12558
|
+
*
|
|
12559
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.IllustratedMessage} instead.
|
|
12560
|
+
*/
|
|
12399
12561
|
export interface $IllustratedMessageSettings
|
|
12400
12562
|
extends $IllustratedMessageSettings1 {}
|
|
12401
12563
|
}
|
|
@@ -12486,7 +12648,11 @@ declare module "sap/f/Illustration" {
|
|
|
12486
12648
|
*/
|
|
12487
12649
|
static getMetadata(): ElementMetadata;
|
|
12488
12650
|
}
|
|
12489
|
-
|
|
12651
|
+
/**
|
|
12652
|
+
* Describes the settings that can be provided to the Illustration constructor.
|
|
12653
|
+
*
|
|
12654
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.Illustration} instead.
|
|
12655
|
+
*/
|
|
12490
12656
|
export interface $IllustrationSettings extends $IllustrationSettings1 {}
|
|
12491
12657
|
}
|
|
12492
12658
|
|
|
@@ -12513,6 +12679,9 @@ declare module "sap/f/IllustrationPool" {
|
|
|
12513
12679
|
*/
|
|
12514
12680
|
interface IllustrationPool {}
|
|
12515
12681
|
const IllustrationPool: IllustrationPool;
|
|
12682
|
+
/**
|
|
12683
|
+
* @deprecated (since 1.98) - Use the {@link sap.m.IllustrationPool} instead.
|
|
12684
|
+
*/
|
|
12516
12685
|
export default IllustrationPool;
|
|
12517
12686
|
}
|
|
12518
12687
|
|
|
@@ -12774,7 +12943,12 @@ declare module "sap/f/ProductSwitch" {
|
|
|
12774
12943
|
vItem: string | ProductSwitchItem | null
|
|
12775
12944
|
): this;
|
|
12776
12945
|
}
|
|
12777
|
-
|
|
12946
|
+
/**
|
|
12947
|
+
* Describes the settings that can be provided to the ProductSwitch constructor.
|
|
12948
|
+
*
|
|
12949
|
+
* @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
|
|
12950
|
+
* the API might be changed in future.
|
|
12951
|
+
*/
|
|
12778
12952
|
export interface $ProductSwitchSettings extends $ControlSettings {
|
|
12779
12953
|
/**
|
|
12780
12954
|
* `ProductSwitch` content.
|
|
@@ -12796,6 +12970,9 @@ declare module "sap/f/ProductSwitch" {
|
|
|
12796
12970
|
change?: (oEvent: ProductSwitch$ChangeEvent) => void;
|
|
12797
12971
|
}
|
|
12798
12972
|
|
|
12973
|
+
/**
|
|
12974
|
+
* Parameters of the ProductSwitch#change event.
|
|
12975
|
+
*/
|
|
12799
12976
|
export interface ProductSwitch$ChangeEventParameters {
|
|
12800
12977
|
/**
|
|
12801
12978
|
* Reference to the new item that has been selected.
|
|
@@ -12803,6 +12980,9 @@ declare module "sap/f/ProductSwitch" {
|
|
|
12803
12980
|
itemPressed?: ProductSwitchItem;
|
|
12804
12981
|
}
|
|
12805
12982
|
|
|
12983
|
+
/**
|
|
12984
|
+
* Event object of the ProductSwitch#change event.
|
|
12985
|
+
*/
|
|
12806
12986
|
export type ProductSwitch$ChangeEvent = Event<
|
|
12807
12987
|
ProductSwitch$ChangeEventParameters,
|
|
12808
12988
|
ProductSwitch
|
|
@@ -13030,7 +13210,12 @@ declare module "sap/f/ProductSwitchItem" {
|
|
|
13030
13210
|
sTitle?: string
|
|
13031
13211
|
): this;
|
|
13032
13212
|
}
|
|
13033
|
-
|
|
13213
|
+
/**
|
|
13214
|
+
* Describes the settings that can be provided to the ProductSwitchItem constructor.
|
|
13215
|
+
*
|
|
13216
|
+
* @experimental (since 1.72) - This class is experimental and provides only limited functionality. Also
|
|
13217
|
+
* the API might be changed in future.
|
|
13218
|
+
*/
|
|
13034
13219
|
export interface $ProductSwitchItemSettings extends $ControlSettings {
|
|
13035
13220
|
/**
|
|
13036
13221
|
* Defines the icon to be displayed as graphical element within the `ProductSwitchItem`. It can be an icon
|
|
@@ -14251,7 +14436,9 @@ declare module "sap/f/SearchManager" {
|
|
|
14251
14436
|
*/
|
|
14252
14437
|
unbindValue(): this;
|
|
14253
14438
|
}
|
|
14254
|
-
|
|
14439
|
+
/**
|
|
14440
|
+
* Describes the settings that can be provided to the SearchManager constructor.
|
|
14441
|
+
*/
|
|
14255
14442
|
export interface $SearchManagerSettings extends $ElementSettings {
|
|
14256
14443
|
/**
|
|
14257
14444
|
* Defines the input value.
|
|
@@ -14314,6 +14501,9 @@ declare module "sap/f/SearchManager" {
|
|
|
14314
14501
|
suggest?: (oEvent: SearchManager$SuggestEvent) => void;
|
|
14315
14502
|
}
|
|
14316
14503
|
|
|
14504
|
+
/**
|
|
14505
|
+
* Parameters of the SearchManager#liveChange event.
|
|
14506
|
+
*/
|
|
14317
14507
|
export interface SearchManager$LiveChangeEventParameters {
|
|
14318
14508
|
/**
|
|
14319
14509
|
* Current search string.
|
|
@@ -14321,11 +14511,17 @@ declare module "sap/f/SearchManager" {
|
|
|
14321
14511
|
newValue?: string;
|
|
14322
14512
|
}
|
|
14323
14513
|
|
|
14514
|
+
/**
|
|
14515
|
+
* Event object of the SearchManager#liveChange event.
|
|
14516
|
+
*/
|
|
14324
14517
|
export type SearchManager$LiveChangeEvent = Event<
|
|
14325
14518
|
SearchManager$LiveChangeEventParameters,
|
|
14326
14519
|
SearchManager
|
|
14327
14520
|
>;
|
|
14328
14521
|
|
|
14522
|
+
/**
|
|
14523
|
+
* Parameters of the SearchManager#search event.
|
|
14524
|
+
*/
|
|
14329
14525
|
export interface SearchManager$SearchEventParameters {
|
|
14330
14526
|
/**
|
|
14331
14527
|
* The search query string.
|
|
@@ -14338,11 +14534,17 @@ declare module "sap/f/SearchManager" {
|
|
|
14338
14534
|
clearButtonPressed?: boolean;
|
|
14339
14535
|
}
|
|
14340
14536
|
|
|
14537
|
+
/**
|
|
14538
|
+
* Event object of the SearchManager#search event.
|
|
14539
|
+
*/
|
|
14341
14540
|
export type SearchManager$SearchEvent = Event<
|
|
14342
14541
|
SearchManager$SearchEventParameters,
|
|
14343
14542
|
SearchManager
|
|
14344
14543
|
>;
|
|
14345
14544
|
|
|
14545
|
+
/**
|
|
14546
|
+
* Parameters of the SearchManager#suggest event.
|
|
14547
|
+
*/
|
|
14346
14548
|
export interface SearchManager$SuggestEventParameters {
|
|
14347
14549
|
/**
|
|
14348
14550
|
* Current search string of the search field.
|
|
@@ -14350,6 +14552,9 @@ declare module "sap/f/SearchManager" {
|
|
|
14350
14552
|
suggestValue?: string;
|
|
14351
14553
|
}
|
|
14352
14554
|
|
|
14555
|
+
/**
|
|
14556
|
+
* Event object of the SearchManager#suggest event.
|
|
14557
|
+
*/
|
|
14353
14558
|
export type SearchManager$SuggestEvent = Event<
|
|
14354
14559
|
SearchManager$SuggestEventParameters,
|
|
14355
14560
|
SearchManager
|
|
@@ -14442,7 +14647,9 @@ declare module "sap/f/semantic/AddAction" {
|
|
|
14442
14647
|
*/
|
|
14443
14648
|
static getMetadata(): ElementMetadata;
|
|
14444
14649
|
}
|
|
14445
|
-
|
|
14650
|
+
/**
|
|
14651
|
+
* Describes the settings that can be provided to the AddAction constructor.
|
|
14652
|
+
*/
|
|
14446
14653
|
export interface $AddActionSettings extends $SemanticButtonSettings {}
|
|
14447
14654
|
}
|
|
14448
14655
|
|
|
@@ -14532,7 +14739,9 @@ declare module "sap/f/semantic/CloseAction" {
|
|
|
14532
14739
|
*/
|
|
14533
14740
|
static getMetadata(): ElementMetadata;
|
|
14534
14741
|
}
|
|
14535
|
-
|
|
14742
|
+
/**
|
|
14743
|
+
* Describes the settings that can be provided to the CloseAction constructor.
|
|
14744
|
+
*/
|
|
14536
14745
|
export interface $CloseActionSettings extends $SemanticButtonSettings {}
|
|
14537
14746
|
}
|
|
14538
14747
|
|
|
@@ -14622,7 +14831,9 @@ declare module "sap/f/semantic/CopyAction" {
|
|
|
14622
14831
|
*/
|
|
14623
14832
|
static getMetadata(): ElementMetadata;
|
|
14624
14833
|
}
|
|
14625
|
-
|
|
14834
|
+
/**
|
|
14835
|
+
* Describes the settings that can be provided to the CopyAction constructor.
|
|
14836
|
+
*/
|
|
14626
14837
|
export interface $CopyActionSettings extends $SemanticButtonSettings {}
|
|
14627
14838
|
}
|
|
14628
14839
|
|
|
@@ -14712,7 +14923,9 @@ declare module "sap/f/semantic/DeleteAction" {
|
|
|
14712
14923
|
*/
|
|
14713
14924
|
static getMetadata(): ElementMetadata;
|
|
14714
14925
|
}
|
|
14715
|
-
|
|
14926
|
+
/**
|
|
14927
|
+
* Describes the settings that can be provided to the DeleteAction constructor.
|
|
14928
|
+
*/
|
|
14716
14929
|
export interface $DeleteActionSettings extends $SemanticButtonSettings {}
|
|
14717
14930
|
}
|
|
14718
14931
|
|
|
@@ -14802,7 +15015,9 @@ declare module "sap/f/semantic/DiscussInJamAction" {
|
|
|
14802
15015
|
*/
|
|
14803
15016
|
static getMetadata(): ElementMetadata;
|
|
14804
15017
|
}
|
|
14805
|
-
|
|
15018
|
+
/**
|
|
15019
|
+
* Describes the settings that can be provided to the DiscussInJamAction constructor.
|
|
15020
|
+
*/
|
|
14806
15021
|
export interface $DiscussInJamActionSettings
|
|
14807
15022
|
extends $SemanticButtonSettings {}
|
|
14808
15023
|
}
|
|
@@ -14893,7 +15108,9 @@ declare module "sap/f/semantic/EditAction" {
|
|
|
14893
15108
|
*/
|
|
14894
15109
|
static getMetadata(): ElementMetadata;
|
|
14895
15110
|
}
|
|
14896
|
-
|
|
15111
|
+
/**
|
|
15112
|
+
* Describes the settings that can be provided to the EditAction constructor.
|
|
15113
|
+
*/
|
|
14897
15114
|
export interface $EditActionSettings extends $SemanticButtonSettings {}
|
|
14898
15115
|
}
|
|
14899
15116
|
|
|
@@ -14983,7 +15200,9 @@ declare module "sap/f/semantic/ExitFullScreenAction" {
|
|
|
14983
15200
|
*/
|
|
14984
15201
|
static getMetadata(): ElementMetadata;
|
|
14985
15202
|
}
|
|
14986
|
-
|
|
15203
|
+
/**
|
|
15204
|
+
* Describes the settings that can be provided to the ExitFullScreenAction constructor.
|
|
15205
|
+
*/
|
|
14987
15206
|
export interface $ExitFullScreenActionSettings
|
|
14988
15207
|
extends $SemanticButtonSettings {}
|
|
14989
15208
|
}
|
|
@@ -15074,7 +15293,9 @@ declare module "sap/f/semantic/FavoriteAction" {
|
|
|
15074
15293
|
*/
|
|
15075
15294
|
static getMetadata(): ElementMetadata;
|
|
15076
15295
|
}
|
|
15077
|
-
|
|
15296
|
+
/**
|
|
15297
|
+
* Describes the settings that can be provided to the FavoriteAction constructor.
|
|
15298
|
+
*/
|
|
15078
15299
|
export interface $FavoriteActionSettings
|
|
15079
15300
|
extends $SemanticToggleButtonSettings {}
|
|
15080
15301
|
}
|
|
@@ -15165,7 +15386,9 @@ declare module "sap/f/semantic/FlagAction" {
|
|
|
15165
15386
|
*/
|
|
15166
15387
|
static getMetadata(): ElementMetadata;
|
|
15167
15388
|
}
|
|
15168
|
-
|
|
15389
|
+
/**
|
|
15390
|
+
* Describes the settings that can be provided to the FlagAction constructor.
|
|
15391
|
+
*/
|
|
15169
15392
|
export interface $FlagActionSettings extends $SemanticToggleButtonSettings {}
|
|
15170
15393
|
}
|
|
15171
15394
|
|
|
@@ -15255,7 +15478,9 @@ declare module "sap/f/semantic/FooterMainAction" {
|
|
|
15255
15478
|
*/
|
|
15256
15479
|
static getMetadata(): ElementMetadata;
|
|
15257
15480
|
}
|
|
15258
|
-
|
|
15481
|
+
/**
|
|
15482
|
+
* Describes the settings that can be provided to the FooterMainAction constructor.
|
|
15483
|
+
*/
|
|
15259
15484
|
export interface $FooterMainActionSettings extends $MainActionSettings {}
|
|
15260
15485
|
}
|
|
15261
15486
|
|
|
@@ -15345,7 +15570,9 @@ declare module "sap/f/semantic/FullScreenAction" {
|
|
|
15345
15570
|
*/
|
|
15346
15571
|
static getMetadata(): ElementMetadata;
|
|
15347
15572
|
}
|
|
15348
|
-
|
|
15573
|
+
/**
|
|
15574
|
+
* Describes the settings that can be provided to the FullScreenAction constructor.
|
|
15575
|
+
*/
|
|
15349
15576
|
export interface $FullScreenActionSettings extends $SemanticButtonSettings {}
|
|
15350
15577
|
}
|
|
15351
15578
|
|
|
@@ -15456,7 +15683,9 @@ declare module "sap/f/semantic/MainAction" {
|
|
|
15456
15683
|
sText?: string
|
|
15457
15684
|
): this;
|
|
15458
15685
|
}
|
|
15459
|
-
|
|
15686
|
+
/**
|
|
15687
|
+
* Describes the settings that can be provided to the MainAction constructor.
|
|
15688
|
+
*/
|
|
15460
15689
|
export interface $MainActionSettings extends $SemanticButtonSettings {
|
|
15461
15690
|
/**
|
|
15462
15691
|
* Defines `MainAction` text
|
|
@@ -15551,7 +15780,9 @@ declare module "sap/f/semantic/MessagesIndicator" {
|
|
|
15551
15780
|
*/
|
|
15552
15781
|
static getMetadata(): ElementMetadata;
|
|
15553
15782
|
}
|
|
15554
|
-
|
|
15783
|
+
/**
|
|
15784
|
+
* Describes the settings that can be provided to the MessagesIndicator constructor.
|
|
15785
|
+
*/
|
|
15555
15786
|
export interface $MessagesIndicatorSettings extends $SemanticButtonSettings {}
|
|
15556
15787
|
}
|
|
15557
15788
|
|
|
@@ -15662,7 +15893,9 @@ declare module "sap/f/semantic/NegativeAction" {
|
|
|
15662
15893
|
sText?: string
|
|
15663
15894
|
): this;
|
|
15664
15895
|
}
|
|
15665
|
-
|
|
15896
|
+
/**
|
|
15897
|
+
* Describes the settings that can be provided to the NegativeAction constructor.
|
|
15898
|
+
*/
|
|
15666
15899
|
export interface $NegativeActionSettings extends $SemanticButtonSettings {
|
|
15667
15900
|
/**
|
|
15668
15901
|
* Defines `NegativeAction` text. **Note:** the default text is "Reject"
|
|
@@ -15778,7 +16011,9 @@ declare module "sap/f/semantic/PositiveAction" {
|
|
|
15778
16011
|
sText?: string
|
|
15779
16012
|
): this;
|
|
15780
16013
|
}
|
|
15781
|
-
|
|
16014
|
+
/**
|
|
16015
|
+
* Describes the settings that can be provided to the PositiveAction constructor.
|
|
16016
|
+
*/
|
|
15782
16017
|
export interface $PositiveActionSettings extends $SemanticButtonSettings {
|
|
15783
16018
|
/**
|
|
15784
16019
|
* Defines `PositiveAction` text. **Note:** the default text is "Accept"
|
|
@@ -15873,7 +16108,9 @@ declare module "sap/f/semantic/PrintAction" {
|
|
|
15873
16108
|
*/
|
|
15874
16109
|
static getMetadata(): ElementMetadata;
|
|
15875
16110
|
}
|
|
15876
|
-
|
|
16111
|
+
/**
|
|
16112
|
+
* Describes the settings that can be provided to the PrintAction constructor.
|
|
16113
|
+
*/
|
|
15877
16114
|
export interface $PrintActionSettings extends $SemanticButtonSettings {}
|
|
15878
16115
|
}
|
|
15879
16116
|
|
|
@@ -15961,7 +16198,9 @@ declare module "sap/f/semantic/SemanticButton" {
|
|
|
15961
16198
|
*/
|
|
15962
16199
|
static getMetadata(): ElementMetadata;
|
|
15963
16200
|
}
|
|
15964
|
-
|
|
16201
|
+
/**
|
|
16202
|
+
* Describes the settings that can be provided to the SemanticButton constructor.
|
|
16203
|
+
*/
|
|
15965
16204
|
export interface $SemanticButtonSettings extends $SemanticButtonSettings1 {}
|
|
15966
16205
|
}
|
|
15967
16206
|
|
|
@@ -16070,7 +16309,9 @@ declare module "sap/f/semantic/SemanticControl" {
|
|
|
16070
16309
|
bVisible?: boolean
|
|
16071
16310
|
): this;
|
|
16072
16311
|
}
|
|
16073
|
-
|
|
16312
|
+
/**
|
|
16313
|
+
* Describes the settings that can be provided to the SemanticControl constructor.
|
|
16314
|
+
*/
|
|
16074
16315
|
export interface $SemanticControlSettings extends $ElementSettings {
|
|
16075
16316
|
/**
|
|
16076
16317
|
* Determines whether the `SemanticControl` is visible.
|
|
@@ -18087,7 +18328,9 @@ declare module "sap/f/semantic/SemanticPage" {
|
|
|
18087
18328
|
bToggleHeaderOnTitleClick?: boolean
|
|
18088
18329
|
): this;
|
|
18089
18330
|
}
|
|
18090
|
-
|
|
18331
|
+
/**
|
|
18332
|
+
* Describes the settings that can be provided to the SemanticPage constructor.
|
|
18333
|
+
*/
|
|
18091
18334
|
export interface $SemanticPageSettings extends $ControlSettings {
|
|
18092
18335
|
/**
|
|
18093
18336
|
* Determines whether the header is expanded.
|
|
@@ -18663,7 +18906,9 @@ declare module "sap/f/semantic/SemanticToggleButton" {
|
|
|
18663
18906
|
*/
|
|
18664
18907
|
static getMetadata(): ElementMetadata;
|
|
18665
18908
|
}
|
|
18666
|
-
|
|
18909
|
+
/**
|
|
18910
|
+
* Describes the settings that can be provided to the SemanticToggleButton constructor.
|
|
18911
|
+
*/
|
|
18667
18912
|
export interface $SemanticToggleButtonSettings
|
|
18668
18913
|
extends $SemanticToggleButtonSettings1 {}
|
|
18669
18914
|
}
|
|
@@ -18754,7 +18999,9 @@ declare module "sap/f/semantic/SendEmailAction" {
|
|
|
18754
18999
|
*/
|
|
18755
19000
|
static getMetadata(): ElementMetadata;
|
|
18756
19001
|
}
|
|
18757
|
-
|
|
19002
|
+
/**
|
|
19003
|
+
* Describes the settings that can be provided to the SendEmailAction constructor.
|
|
19004
|
+
*/
|
|
18758
19005
|
export interface $SendEmailActionSettings extends $SemanticButtonSettings {}
|
|
18759
19006
|
}
|
|
18760
19007
|
|
|
@@ -18844,7 +19091,9 @@ declare module "sap/f/semantic/SendMessageAction" {
|
|
|
18844
19091
|
*/
|
|
18845
19092
|
static getMetadata(): ElementMetadata;
|
|
18846
19093
|
}
|
|
18847
|
-
|
|
19094
|
+
/**
|
|
19095
|
+
* Describes the settings that can be provided to the SendMessageAction constructor.
|
|
19096
|
+
*/
|
|
18848
19097
|
export interface $SendMessageActionSettings extends $SemanticButtonSettings {}
|
|
18849
19098
|
}
|
|
18850
19099
|
|
|
@@ -18934,7 +19183,9 @@ declare module "sap/f/semantic/ShareInJamAction" {
|
|
|
18934
19183
|
*/
|
|
18935
19184
|
static getMetadata(): ElementMetadata;
|
|
18936
19185
|
}
|
|
18937
|
-
|
|
19186
|
+
/**
|
|
19187
|
+
* Describes the settings that can be provided to the ShareInJamAction constructor.
|
|
19188
|
+
*/
|
|
18938
19189
|
export interface $ShareInJamActionSettings extends $SemanticButtonSettings {}
|
|
18939
19190
|
}
|
|
18940
19191
|
|
|
@@ -19024,7 +19275,9 @@ declare module "sap/f/semantic/TitleMainAction" {
|
|
|
19024
19275
|
*/
|
|
19025
19276
|
static getMetadata(): ElementMetadata;
|
|
19026
19277
|
}
|
|
19027
|
-
|
|
19278
|
+
/**
|
|
19279
|
+
* Describes the settings that can be provided to the TitleMainAction constructor.
|
|
19280
|
+
*/
|
|
19028
19281
|
export interface $TitleMainActionSettings extends $MainActionSettings {}
|
|
19029
19282
|
}
|
|
19030
19283
|
|
|
@@ -20320,7 +20573,9 @@ declare module "sap/f/ShellBar" {
|
|
|
20320
20573
|
sTitle?: string
|
|
20321
20574
|
): this;
|
|
20322
20575
|
}
|
|
20323
|
-
|
|
20576
|
+
/**
|
|
20577
|
+
* Describes the settings that can be provided to the ShellBar constructor.
|
|
20578
|
+
*/
|
|
20324
20579
|
export interface $ShellBarSettings extends $ControlSettings {
|
|
20325
20580
|
/**
|
|
20326
20581
|
* Defines the main title of the control.
|
|
@@ -20455,6 +20710,9 @@ declare module "sap/f/ShellBar" {
|
|
|
20455
20710
|
avatarPressed?: (oEvent: ShellBar$AvatarPressedEvent) => void;
|
|
20456
20711
|
}
|
|
20457
20712
|
|
|
20713
|
+
/**
|
|
20714
|
+
* Parameters of the ShellBar#avatarPressed event.
|
|
20715
|
+
*/
|
|
20458
20716
|
export interface ShellBar$AvatarPressedEventParameters {
|
|
20459
20717
|
/**
|
|
20460
20718
|
* Reference to the button that has been pressed
|
|
@@ -20462,23 +20720,40 @@ declare module "sap/f/ShellBar" {
|
|
|
20462
20720
|
avatar?: Avatar;
|
|
20463
20721
|
}
|
|
20464
20722
|
|
|
20723
|
+
/**
|
|
20724
|
+
* Event object of the ShellBar#avatarPressed event.
|
|
20725
|
+
*/
|
|
20465
20726
|
export type ShellBar$AvatarPressedEvent = Event<
|
|
20466
20727
|
ShellBar$AvatarPressedEventParameters,
|
|
20467
20728
|
ShellBar
|
|
20468
20729
|
>;
|
|
20469
20730
|
|
|
20731
|
+
/**
|
|
20732
|
+
* Parameters of the ShellBar#copilotPressed event.
|
|
20733
|
+
*/
|
|
20470
20734
|
export interface ShellBar$CopilotPressedEventParameters {
|
|
20471
20735
|
/**
|
|
20472
20736
|
* Reference to the button that has been pressed
|
|
20473
20737
|
*/
|
|
20474
20738
|
image?: Image;
|
|
20739
|
+
|
|
20740
|
+
/**
|
|
20741
|
+
* Reference to the button that has been pressed
|
|
20742
|
+
*/
|
|
20743
|
+
button?: Button;
|
|
20475
20744
|
}
|
|
20476
20745
|
|
|
20746
|
+
/**
|
|
20747
|
+
* Event object of the ShellBar#copilotPressed event.
|
|
20748
|
+
*/
|
|
20477
20749
|
export type ShellBar$CopilotPressedEvent = Event<
|
|
20478
20750
|
ShellBar$CopilotPressedEventParameters,
|
|
20479
20751
|
ShellBar
|
|
20480
20752
|
>;
|
|
20481
20753
|
|
|
20754
|
+
/**
|
|
20755
|
+
* Parameters of the ShellBar#homeIconPressed event.
|
|
20756
|
+
*/
|
|
20482
20757
|
export interface ShellBar$HomeIconPressedEventParameters {
|
|
20483
20758
|
/**
|
|
20484
20759
|
* Reference to the image that has been pressed
|
|
@@ -20486,11 +20761,17 @@ declare module "sap/f/ShellBar" {
|
|
|
20486
20761
|
icon?: Image;
|
|
20487
20762
|
}
|
|
20488
20763
|
|
|
20764
|
+
/**
|
|
20765
|
+
* Event object of the ShellBar#homeIconPressed event.
|
|
20766
|
+
*/
|
|
20489
20767
|
export type ShellBar$HomeIconPressedEvent = Event<
|
|
20490
20768
|
ShellBar$HomeIconPressedEventParameters,
|
|
20491
20769
|
ShellBar
|
|
20492
20770
|
>;
|
|
20493
20771
|
|
|
20772
|
+
/**
|
|
20773
|
+
* Parameters of the ShellBar#menuButtonPressed event.
|
|
20774
|
+
*/
|
|
20494
20775
|
export interface ShellBar$MenuButtonPressedEventParameters {
|
|
20495
20776
|
/**
|
|
20496
20777
|
* Reference to the button that has been pressed
|
|
@@ -20498,11 +20779,17 @@ declare module "sap/f/ShellBar" {
|
|
|
20498
20779
|
button?: Button;
|
|
20499
20780
|
}
|
|
20500
20781
|
|
|
20782
|
+
/**
|
|
20783
|
+
* Event object of the ShellBar#menuButtonPressed event.
|
|
20784
|
+
*/
|
|
20501
20785
|
export type ShellBar$MenuButtonPressedEvent = Event<
|
|
20502
20786
|
ShellBar$MenuButtonPressedEventParameters,
|
|
20503
20787
|
ShellBar
|
|
20504
20788
|
>;
|
|
20505
20789
|
|
|
20790
|
+
/**
|
|
20791
|
+
* Parameters of the ShellBar#navButtonPressed event.
|
|
20792
|
+
*/
|
|
20506
20793
|
export interface ShellBar$NavButtonPressedEventParameters {
|
|
20507
20794
|
/**
|
|
20508
20795
|
* Reference to the button that has been pressed
|
|
@@ -20510,11 +20797,17 @@ declare module "sap/f/ShellBar" {
|
|
|
20510
20797
|
button?: Button;
|
|
20511
20798
|
}
|
|
20512
20799
|
|
|
20800
|
+
/**
|
|
20801
|
+
* Event object of the ShellBar#navButtonPressed event.
|
|
20802
|
+
*/
|
|
20513
20803
|
export type ShellBar$NavButtonPressedEvent = Event<
|
|
20514
20804
|
ShellBar$NavButtonPressedEventParameters,
|
|
20515
20805
|
ShellBar
|
|
20516
20806
|
>;
|
|
20517
20807
|
|
|
20808
|
+
/**
|
|
20809
|
+
* Parameters of the ShellBar#notificationsPressed event.
|
|
20810
|
+
*/
|
|
20518
20811
|
export interface ShellBar$NotificationsPressedEventParameters {
|
|
20519
20812
|
/**
|
|
20520
20813
|
* Reference to the button that has been pressed
|
|
@@ -20522,11 +20815,17 @@ declare module "sap/f/ShellBar" {
|
|
|
20522
20815
|
button?: Button;
|
|
20523
20816
|
}
|
|
20524
20817
|
|
|
20818
|
+
/**
|
|
20819
|
+
* Event object of the ShellBar#notificationsPressed event.
|
|
20820
|
+
*/
|
|
20525
20821
|
export type ShellBar$NotificationsPressedEvent = Event<
|
|
20526
20822
|
ShellBar$NotificationsPressedEventParameters,
|
|
20527
20823
|
ShellBar
|
|
20528
20824
|
>;
|
|
20529
20825
|
|
|
20826
|
+
/**
|
|
20827
|
+
* Parameters of the ShellBar#productSwitcherPressed event.
|
|
20828
|
+
*/
|
|
20530
20829
|
export interface ShellBar$ProductSwitcherPressedEventParameters {
|
|
20531
20830
|
/**
|
|
20532
20831
|
* Reference to the button that has been pressed
|
|
@@ -20534,11 +20833,17 @@ declare module "sap/f/ShellBar" {
|
|
|
20534
20833
|
button?: Button;
|
|
20535
20834
|
}
|
|
20536
20835
|
|
|
20836
|
+
/**
|
|
20837
|
+
* Event object of the ShellBar#productSwitcherPressed event.
|
|
20838
|
+
*/
|
|
20537
20839
|
export type ShellBar$ProductSwitcherPressedEvent = Event<
|
|
20538
20840
|
ShellBar$ProductSwitcherPressedEventParameters,
|
|
20539
20841
|
ShellBar
|
|
20540
20842
|
>;
|
|
20541
20843
|
|
|
20844
|
+
/**
|
|
20845
|
+
* Parameters of the ShellBar#searchButtonPressed event.
|
|
20846
|
+
*/
|
|
20542
20847
|
export interface ShellBar$SearchButtonPressedEventParameters {
|
|
20543
20848
|
/**
|
|
20544
20849
|
* Reference to the button that has been pressed
|
|
@@ -20546,6 +20851,9 @@ declare module "sap/f/ShellBar" {
|
|
|
20546
20851
|
button?: Button;
|
|
20547
20852
|
}
|
|
20548
20853
|
|
|
20854
|
+
/**
|
|
20855
|
+
* Event object of the ShellBar#searchButtonPressed event.
|
|
20856
|
+
*/
|
|
20549
20857
|
export type ShellBar$SearchButtonPressedEvent = Event<
|
|
20550
20858
|
ShellBar$SearchButtonPressedEventParameters,
|
|
20551
20859
|
ShellBar
|
|
@@ -21242,7 +21550,9 @@ declare module "sap/f/SidePanel" {
|
|
|
21242
21550
|
iSidePanelResizeStep?: int
|
|
21243
21551
|
): this;
|
|
21244
21552
|
}
|
|
21245
|
-
|
|
21553
|
+
/**
|
|
21554
|
+
* Describes the settings that can be provided to the SidePanel constructor.
|
|
21555
|
+
*/
|
|
21246
21556
|
export interface $SidePanelSettings extends $ControlSettings {
|
|
21247
21557
|
/**
|
|
21248
21558
|
* Determines whether the action bar is expanded or collapsed.
|
|
@@ -21345,6 +21655,9 @@ declare module "sap/f/SidePanel" {
|
|
|
21345
21655
|
toggle?: (oEvent: SidePanel$ToggleEvent) => void;
|
|
21346
21656
|
}
|
|
21347
21657
|
|
|
21658
|
+
/**
|
|
21659
|
+
* Parameters of the SidePanel#toggle event.
|
|
21660
|
+
*/
|
|
21348
21661
|
export interface SidePanel$ToggleEventParameters {
|
|
21349
21662
|
/**
|
|
21350
21663
|
* The action item that triggers the event.
|
|
@@ -21357,6 +21670,9 @@ declare module "sap/f/SidePanel" {
|
|
|
21357
21670
|
expanded?: boolean;
|
|
21358
21671
|
}
|
|
21359
21672
|
|
|
21673
|
+
/**
|
|
21674
|
+
* Event object of the SidePanel#toggle event.
|
|
21675
|
+
*/
|
|
21360
21676
|
export type SidePanel$ToggleEvent = Event<
|
|
21361
21677
|
SidePanel$ToggleEventParameters,
|
|
21362
21678
|
SidePanel
|
|
@@ -21554,7 +21870,9 @@ declare module "sap/f/SidePanelItem" {
|
|
|
21554
21870
|
sIcon?: URI
|
|
21555
21871
|
): this;
|
|
21556
21872
|
}
|
|
21557
|
-
|
|
21873
|
+
/**
|
|
21874
|
+
* Describes the settings that can be provided to the SidePanelItem constructor.
|
|
21875
|
+
*/
|
|
21558
21876
|
export interface $SidePanelItemSettings extends $ItemSettings {
|
|
21559
21877
|
/**
|
|
21560
21878
|
* Specifies the icon for the item.
|