@openui5/types 1.122.1 → 1.123.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- 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 +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- 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 +123 -23
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -416,7 +416,9 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
416
416
|
bUpperCase?: boolean
|
|
417
417
|
): this;
|
|
418
418
|
}
|
|
419
|
-
|
|
419
|
+
/**
|
|
420
|
+
* Describes the settings that can be provided to the AnchorBar constructor.
|
|
421
|
+
*/
|
|
420
422
|
export interface $AnchorBarSettings extends $ToolbarSettings {
|
|
421
423
|
/**
|
|
422
424
|
* Determines whether to show a Popover with Subsection links when clicking on Section links in the Anchor
|
|
@@ -909,7 +911,9 @@ declare module "sap/uxap/BlockBase" {
|
|
|
909
911
|
bVisible?: boolean
|
|
910
912
|
): this;
|
|
911
913
|
}
|
|
912
|
-
|
|
914
|
+
/**
|
|
915
|
+
* Describes the settings that can be provided to the BlockBase constructor.
|
|
916
|
+
*/
|
|
913
917
|
export interface $BlockBaseSettings extends $ControlSettings {
|
|
914
918
|
/**
|
|
915
919
|
* Determines the mode of the block. See {@link sap.uxap.ObjectPageSubSectionMode ObjectPageSubSectionMode}.
|
|
@@ -977,6 +981,9 @@ declare module "sap/uxap/BlockBase" {
|
|
|
977
981
|
viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
|
|
978
982
|
}
|
|
979
983
|
|
|
984
|
+
/**
|
|
985
|
+
* Parameters of the BlockBase#viewInit event.
|
|
986
|
+
*/
|
|
980
987
|
export interface BlockBase$ViewInitEventParameters {
|
|
981
988
|
/**
|
|
982
989
|
* The initialized view.
|
|
@@ -984,6 +991,9 @@ declare module "sap/uxap/BlockBase" {
|
|
|
984
991
|
view?: View;
|
|
985
992
|
}
|
|
986
993
|
|
|
994
|
+
/**
|
|
995
|
+
* Event object of the BlockBase#viewInit event.
|
|
996
|
+
*/
|
|
987
997
|
export type BlockBase$ViewInitEvent = Event<
|
|
988
998
|
BlockBase$ViewInitEventParameters,
|
|
989
999
|
BlockBase
|
|
@@ -1214,7 +1224,9 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1214
1224
|
bShowCurrentLocation?: boolean
|
|
1215
1225
|
): this;
|
|
1216
1226
|
}
|
|
1217
|
-
|
|
1227
|
+
/**
|
|
1228
|
+
* Describes the settings that can be provided to the BreadCrumbs constructor.
|
|
1229
|
+
*/
|
|
1218
1230
|
export interface $BreadCrumbsSettings extends $ControlSettings {
|
|
1219
1231
|
/**
|
|
1220
1232
|
* Sets the visibility of the current/last element in the BreadCrumbs path.
|
|
@@ -1341,7 +1353,9 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1341
1353
|
bUpperCase?: boolean
|
|
1342
1354
|
): this;
|
|
1343
1355
|
}
|
|
1344
|
-
|
|
1356
|
+
/**
|
|
1357
|
+
* Describes the settings that can be provided to the HierarchicalSelect constructor.
|
|
1358
|
+
*/
|
|
1345
1359
|
export interface $HierarchicalSelectSettings extends $SelectSettings {
|
|
1346
1360
|
/**
|
|
1347
1361
|
* Determines whether the HierarchicalSelect items are displayed in upper case.
|
|
@@ -1505,7 +1519,9 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1505
1519
|
sInternalModelName?: string
|
|
1506
1520
|
): this;
|
|
1507
1521
|
}
|
|
1508
|
-
|
|
1522
|
+
/**
|
|
1523
|
+
* Describes the settings that can be provided to the ModelMapping constructor.
|
|
1524
|
+
*/
|
|
1509
1525
|
export interface $ModelMappingSettings extends $ElementSettings {
|
|
1510
1526
|
/**
|
|
1511
1527
|
* Determines the external model name.
|
|
@@ -1946,7 +1962,9 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1946
1962
|
sRootRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
1947
1963
|
): this;
|
|
1948
1964
|
}
|
|
1949
|
-
|
|
1965
|
+
/**
|
|
1966
|
+
* Describes the settings that can be provided to the ObjectPageAccessibleLandmarkInfo constructor.
|
|
1967
|
+
*/
|
|
1950
1968
|
export interface $ObjectPageAccessibleLandmarkInfoSettings
|
|
1951
1969
|
extends $ElementSettings {
|
|
1952
1970
|
/**
|
|
@@ -2145,7 +2163,9 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
2145
2163
|
*/
|
|
2146
2164
|
static getMetadata(): ElementMetadata;
|
|
2147
2165
|
}
|
|
2148
|
-
|
|
2166
|
+
/**
|
|
2167
|
+
* Describes the settings that can be provided to the ObjectPageDynamicHeaderContent constructor.
|
|
2168
|
+
*/
|
|
2149
2169
|
export interface $ObjectPageDynamicHeaderContentSettings
|
|
2150
2170
|
extends $DynamicPageHeaderSettings {}
|
|
2151
2171
|
}
|
|
@@ -2254,7 +2274,9 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2254
2274
|
*/
|
|
2255
2275
|
static getMetadata(): ElementMetadata;
|
|
2256
2276
|
}
|
|
2257
|
-
|
|
2277
|
+
/**
|
|
2278
|
+
* Describes the settings that can be provided to the ObjectPageDynamicHeaderTitle constructor.
|
|
2279
|
+
*/
|
|
2258
2280
|
export interface $ObjectPageDynamicHeaderTitleSettings
|
|
2259
2281
|
extends $DynamicPageTitleSettings {}
|
|
2260
2282
|
}
|
|
@@ -2729,7 +2751,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2729
2751
|
*
|
|
2730
2752
|
* Default value is `Light`.
|
|
2731
2753
|
*
|
|
2732
|
-
* @deprecated (since 1.40.1)
|
|
2754
|
+
* @deprecated (since 1.40.1) - without replacement.
|
|
2733
2755
|
*
|
|
2734
2756
|
* @returns Value of property `headerDesign`
|
|
2735
2757
|
*/
|
|
@@ -3447,7 +3469,9 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3447
3469
|
vTitleSelectorTooltip: TooltipBase | string
|
|
3448
3470
|
): this;
|
|
3449
3471
|
}
|
|
3450
|
-
|
|
3472
|
+
/**
|
|
3473
|
+
* Describes the settings that can be provided to the ObjectPageHeader constructor.
|
|
3474
|
+
*/
|
|
3451
3475
|
export interface $ObjectPageHeaderSettings extends $ControlSettings {
|
|
3452
3476
|
/**
|
|
3453
3477
|
* The URL of the image, representing the business object
|
|
@@ -3520,7 +3544,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3520
3544
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
3521
3545
|
* to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
|
|
3522
3546
|
*
|
|
3523
|
-
* @deprecated (since 1.40.1)
|
|
3547
|
+
* @deprecated (since 1.40.1) - without replacement.
|
|
3524
3548
|
*/
|
|
3525
3549
|
headerDesign?:
|
|
3526
3550
|
| (ObjectPageHeaderDesign | keyof typeof ObjectPageHeaderDesign)
|
|
@@ -3636,6 +3660,9 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3636
3660
|
markChangesPress?: (oEvent: ObjectPageHeader$MarkChangesPressEvent) => void;
|
|
3637
3661
|
}
|
|
3638
3662
|
|
|
3663
|
+
/**
|
|
3664
|
+
* Parameters of the ObjectPageHeader#markChangesPress event.
|
|
3665
|
+
*/
|
|
3639
3666
|
export interface ObjectPageHeader$MarkChangesPressEventParameters {
|
|
3640
3667
|
/**
|
|
3641
3668
|
* DOM reference of the changed item's icon to be used for positioning.
|
|
@@ -3643,11 +3670,17 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3643
3670
|
domRef?: string;
|
|
3644
3671
|
}
|
|
3645
3672
|
|
|
3673
|
+
/**
|
|
3674
|
+
* Event object of the ObjectPageHeader#markChangesPress event.
|
|
3675
|
+
*/
|
|
3646
3676
|
export type ObjectPageHeader$MarkChangesPressEvent = Event<
|
|
3647
3677
|
ObjectPageHeader$MarkChangesPressEventParameters,
|
|
3648
3678
|
ObjectPageHeader
|
|
3649
3679
|
>;
|
|
3650
3680
|
|
|
3681
|
+
/**
|
|
3682
|
+
* Parameters of the ObjectPageHeader#markLockedPress event.
|
|
3683
|
+
*/
|
|
3651
3684
|
export interface ObjectPageHeader$MarkLockedPressEventParameters {
|
|
3652
3685
|
/**
|
|
3653
3686
|
* DOM reference of the lock item's icon to be used for positioning.
|
|
@@ -3655,11 +3688,17 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3655
3688
|
domRef?: string;
|
|
3656
3689
|
}
|
|
3657
3690
|
|
|
3691
|
+
/**
|
|
3692
|
+
* Event object of the ObjectPageHeader#markLockedPress event.
|
|
3693
|
+
*/
|
|
3658
3694
|
export type ObjectPageHeader$MarkLockedPressEvent = Event<
|
|
3659
3695
|
ObjectPageHeader$MarkLockedPressEventParameters,
|
|
3660
3696
|
ObjectPageHeader
|
|
3661
3697
|
>;
|
|
3662
3698
|
|
|
3699
|
+
/**
|
|
3700
|
+
* Parameters of the ObjectPageHeader#titleSelectorPress event.
|
|
3701
|
+
*/
|
|
3663
3702
|
export interface ObjectPageHeader$TitleSelectorPressEventParameters {
|
|
3664
3703
|
/**
|
|
3665
3704
|
* DOM reference of the title item's icon to be used for positioning.
|
|
@@ -3667,6 +3706,9 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3667
3706
|
domRef?: string;
|
|
3668
3707
|
}
|
|
3669
3708
|
|
|
3709
|
+
/**
|
|
3710
|
+
* Event object of the ObjectPageHeader#titleSelectorPress event.
|
|
3711
|
+
*/
|
|
3670
3712
|
export type ObjectPageHeader$TitleSelectorPressEvent = Event<
|
|
3671
3713
|
ObjectPageHeader$TitleSelectorPressEventParameters,
|
|
3672
3714
|
ObjectPageHeader
|
|
@@ -3856,7 +3898,9 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3856
3898
|
sImportance?: Importance | keyof typeof Importance
|
|
3857
3899
|
): this;
|
|
3858
3900
|
}
|
|
3859
|
-
|
|
3901
|
+
/**
|
|
3902
|
+
* Describes the settings that can be provided to the ObjectPageHeaderActionButton constructor.
|
|
3903
|
+
*/
|
|
3860
3904
|
export interface $ObjectPageHeaderActionButtonSettings
|
|
3861
3905
|
extends $ButtonSettings {
|
|
3862
3906
|
/**
|
|
@@ -4017,7 +4061,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
4017
4061
|
*
|
|
4018
4062
|
* Default value is `Light`.
|
|
4019
4063
|
*
|
|
4020
|
-
* @deprecated (since 1.40.1)
|
|
4064
|
+
* @deprecated (since 1.40.1) - without replacement.
|
|
4021
4065
|
*
|
|
4022
4066
|
* @returns Value of property `contentDesign`
|
|
4023
4067
|
*/
|
|
@@ -4086,7 +4130,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
4086
4130
|
*
|
|
4087
4131
|
* Default value is `Light`.
|
|
4088
4132
|
*
|
|
4089
|
-
* @deprecated (since 1.40.1)
|
|
4133
|
+
* @deprecated (since 1.40.1) - without replacement.
|
|
4090
4134
|
*
|
|
4091
4135
|
* @returns Reference to `this` in order to allow method chaining
|
|
4092
4136
|
*/
|
|
@@ -4099,13 +4143,15 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
4099
4143
|
| keyof typeof ObjectPageHeaderDesign
|
|
4100
4144
|
): this;
|
|
4101
4145
|
}
|
|
4102
|
-
|
|
4146
|
+
/**
|
|
4147
|
+
* Describes the settings that can be provided to the ObjectPageHeaderContent constructor.
|
|
4148
|
+
*/
|
|
4103
4149
|
export interface $ObjectPageHeaderContentSettings extends $ControlSettings {
|
|
4104
4150
|
/**
|
|
4105
4151
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
4106
4152
|
* to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
|
|
4107
4153
|
*
|
|
4108
|
-
* @deprecated (since 1.40.1)
|
|
4154
|
+
* @deprecated (since 1.40.1) - without replacement.
|
|
4109
4155
|
*/
|
|
4110
4156
|
contentDesign?:
|
|
4111
4157
|
| (ObjectPageHeaderDesign | keyof typeof ObjectPageHeaderDesign)
|
|
@@ -4378,7 +4424,9 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4378
4424
|
sWidth?: CSSSize
|
|
4379
4425
|
): this;
|
|
4380
4426
|
}
|
|
4381
|
-
|
|
4427
|
+
/**
|
|
4428
|
+
* Describes the settings that can be provided to the ObjectPageHeaderLayoutData constructor.
|
|
4429
|
+
*/
|
|
4382
4430
|
export interface $ObjectPageHeaderLayoutDataSettings
|
|
4383
4431
|
extends $LayoutDataSettings {
|
|
4384
4432
|
/**
|
|
@@ -6273,7 +6321,9 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6273
6321
|
bUseTwoColumnsForLargeScreen?: boolean
|
|
6274
6322
|
): this;
|
|
6275
6323
|
}
|
|
6276
|
-
|
|
6324
|
+
/**
|
|
6325
|
+
* Describes the settings that can be provided to the ObjectPageLayout constructor.
|
|
6326
|
+
*/
|
|
6277
6327
|
export interface $ObjectPageLayoutSettings extends $ControlSettings {
|
|
6278
6328
|
/**
|
|
6279
6329
|
* Determines whether the Navigation bar (Anchor bar) is displayed.
|
|
@@ -6587,6 +6637,9 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6587
6637
|
) => void;
|
|
6588
6638
|
}
|
|
6589
6639
|
|
|
6640
|
+
/**
|
|
6641
|
+
* Parameters of the ObjectPageLayout#beforeNavigate event.
|
|
6642
|
+
*/
|
|
6590
6643
|
export interface ObjectPageLayout$BeforeNavigateEventParameters {
|
|
6591
6644
|
/**
|
|
6592
6645
|
* The selected section object.
|
|
@@ -6599,18 +6652,30 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6599
6652
|
subSection?: ObjectPageSubSection;
|
|
6600
6653
|
}
|
|
6601
6654
|
|
|
6655
|
+
/**
|
|
6656
|
+
* Event object of the ObjectPageLayout#beforeNavigate event.
|
|
6657
|
+
*/
|
|
6602
6658
|
export type ObjectPageLayout$BeforeNavigateEvent = Event<
|
|
6603
6659
|
ObjectPageLayout$BeforeNavigateEventParameters,
|
|
6604
6660
|
ObjectPageLayout
|
|
6605
6661
|
>;
|
|
6606
6662
|
|
|
6663
|
+
/**
|
|
6664
|
+
* Parameters of the ObjectPageLayout#editHeaderButtonPress event.
|
|
6665
|
+
*/
|
|
6607
6666
|
export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
|
|
6608
6667
|
|
|
6668
|
+
/**
|
|
6669
|
+
* Event object of the ObjectPageLayout#editHeaderButtonPress event.
|
|
6670
|
+
*/
|
|
6609
6671
|
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<
|
|
6610
6672
|
ObjectPageLayout$EditHeaderButtonPressEventParameters,
|
|
6611
6673
|
ObjectPageLayout
|
|
6612
6674
|
>;
|
|
6613
6675
|
|
|
6676
|
+
/**
|
|
6677
|
+
* Parameters of the ObjectPageLayout#headerContentPinnedStateChange event.
|
|
6678
|
+
*/
|
|
6614
6679
|
export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
|
|
6615
6680
|
/**
|
|
6616
6681
|
* False or True values indicate the new pinned property value.
|
|
@@ -6618,11 +6683,17 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6618
6683
|
pinned?: boolean;
|
|
6619
6684
|
}
|
|
6620
6685
|
|
|
6686
|
+
/**
|
|
6687
|
+
* Event object of the ObjectPageLayout#headerContentPinnedStateChange event.
|
|
6688
|
+
*/
|
|
6621
6689
|
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<
|
|
6622
6690
|
ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters,
|
|
6623
6691
|
ObjectPageLayout
|
|
6624
6692
|
>;
|
|
6625
6693
|
|
|
6694
|
+
/**
|
|
6695
|
+
* Parameters of the ObjectPageLayout#navigate event.
|
|
6696
|
+
*/
|
|
6626
6697
|
export interface ObjectPageLayout$NavigateEventParameters {
|
|
6627
6698
|
/**
|
|
6628
6699
|
* The selected section object.
|
|
@@ -6635,11 +6706,17 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6635
6706
|
subSection?: ObjectPageSubSection;
|
|
6636
6707
|
}
|
|
6637
6708
|
|
|
6709
|
+
/**
|
|
6710
|
+
* Event object of the ObjectPageLayout#navigate event.
|
|
6711
|
+
*/
|
|
6638
6712
|
export type ObjectPageLayout$NavigateEvent = Event<
|
|
6639
6713
|
ObjectPageLayout$NavigateEventParameters,
|
|
6640
6714
|
ObjectPageLayout
|
|
6641
6715
|
>;
|
|
6642
6716
|
|
|
6717
|
+
/**
|
|
6718
|
+
* Parameters of the ObjectPageLayout#sectionChange event.
|
|
6719
|
+
*/
|
|
6643
6720
|
export interface ObjectPageLayout$SectionChangeEventParameters {
|
|
6644
6721
|
/**
|
|
6645
6722
|
* The section which the layout is scrolled to.
|
|
@@ -6652,11 +6729,17 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6652
6729
|
subSection?: ObjectPageSubSection;
|
|
6653
6730
|
}
|
|
6654
6731
|
|
|
6732
|
+
/**
|
|
6733
|
+
* Event object of the ObjectPageLayout#sectionChange event.
|
|
6734
|
+
*/
|
|
6655
6735
|
export type ObjectPageLayout$SectionChangeEvent = Event<
|
|
6656
6736
|
ObjectPageLayout$SectionChangeEventParameters,
|
|
6657
6737
|
ObjectPageLayout
|
|
6658
6738
|
>;
|
|
6659
6739
|
|
|
6740
|
+
/**
|
|
6741
|
+
* Parameters of the ObjectPageLayout#subSectionVisibilityChange event.
|
|
6742
|
+
*/
|
|
6660
6743
|
export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
|
|
6661
6744
|
/**
|
|
6662
6745
|
* Object whose keys are the visible SubSection IDs and their values are the SubSection instances
|
|
@@ -6664,11 +6747,17 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6664
6747
|
visibleSubSections?: object;
|
|
6665
6748
|
}
|
|
6666
6749
|
|
|
6750
|
+
/**
|
|
6751
|
+
* Event object of the ObjectPageLayout#subSectionVisibilityChange event.
|
|
6752
|
+
*/
|
|
6667
6753
|
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<
|
|
6668
6754
|
ObjectPageLayout$SubSectionVisibilityChangeEventParameters,
|
|
6669
6755
|
ObjectPageLayout
|
|
6670
6756
|
>;
|
|
6671
6757
|
|
|
6758
|
+
/**
|
|
6759
|
+
* Parameters of the ObjectPageLayout#toggleAnchorBar event.
|
|
6760
|
+
*/
|
|
6672
6761
|
export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
|
|
6673
6762
|
/**
|
|
6674
6763
|
* False indicates that the Anchor bar has just detached from the Header and became part of the scrolling
|
|
@@ -6677,6 +6766,9 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6677
6766
|
fixed?: boolean;
|
|
6678
6767
|
}
|
|
6679
6768
|
|
|
6769
|
+
/**
|
|
6770
|
+
* Event object of the ObjectPageLayout#toggleAnchorBar event.
|
|
6771
|
+
*/
|
|
6680
6772
|
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<
|
|
6681
6773
|
ObjectPageLayout$ToggleAnchorBarEventParameters,
|
|
6682
6774
|
ObjectPageLayout
|
|
@@ -6849,7 +6941,9 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6849
6941
|
vContent: int | string | Control
|
|
6850
6942
|
): Control | null;
|
|
6851
6943
|
}
|
|
6852
|
-
|
|
6944
|
+
/**
|
|
6945
|
+
* Describes the settings that can be provided to the ObjectPageLazyLoader constructor.
|
|
6946
|
+
*/
|
|
6853
6947
|
export interface $ObjectPageLazyLoaderSettings extends $ElementSettings {
|
|
6854
6948
|
/**
|
|
6855
6949
|
* Controls to be displayed after this element is unstashed
|
|
@@ -7198,7 +7292,9 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
7198
7292
|
bWrapTitle?: boolean
|
|
7199
7293
|
): this;
|
|
7200
7294
|
}
|
|
7201
|
-
|
|
7295
|
+
/**
|
|
7296
|
+
* Describes the settings that can be provided to the ObjectPageSection constructor.
|
|
7297
|
+
*/
|
|
7202
7298
|
export interface $ObjectPageSectionSettings
|
|
7203
7299
|
extends $ObjectPageSectionBaseSettings {
|
|
7204
7300
|
/**
|
|
@@ -7545,7 +7641,9 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7545
7641
|
*/
|
|
7546
7642
|
updateInvisibleTextLabelValue(): this;
|
|
7547
7643
|
}
|
|
7548
|
-
|
|
7644
|
+
/**
|
|
7645
|
+
* Describes the settings that can be provided to the ObjectPageSectionBase constructor.
|
|
7646
|
+
*/
|
|
7549
7647
|
export interface $ObjectPageSectionBaseSettings extends $ControlSettings {
|
|
7550
7648
|
/**
|
|
7551
7649
|
* Defines the title of the respective section/subsection.
|
|
@@ -8073,7 +8171,9 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
8073
8171
|
bTitleUppercase?: boolean
|
|
8074
8172
|
): this;
|
|
8075
8173
|
}
|
|
8076
|
-
|
|
8174
|
+
/**
|
|
8175
|
+
* Describes the settings that can be provided to the ObjectPageSubSection constructor.
|
|
8176
|
+
*/
|
|
8077
8177
|
export interface $ObjectPageSubSectionSettings
|
|
8078
8178
|
extends $ObjectPageSectionBaseSettings {
|
|
8079
8179
|
/**
|