@openui5/types 1.115.0 → 1.115.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 +860 -754
- package/types/sap.m.d.ts +8300 -6415
- package/types/sap.tnt.d.ts +81 -74
- package/types/sap.ui.codeeditor.d.ts +40 -25
- package/types/sap.ui.commons.d.ts +991 -672
- package/types/sap.ui.core.d.ts +2853 -2263
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +85 -47
- package/types/sap.ui.integration.d.ts +355 -280
- package/types/sap.ui.layout.d.ts +399 -416
- package/types/sap.ui.mdc.d.ts +1016 -792
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +25 -11
- package/types/sap.ui.support.d.ts +12 -13
- package/types/sap.ui.table.d.ts +498 -354
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1228 -894
- package/types/sap.ui.ux3.d.ts +1023 -613
- package/types/sap.ui.webc.common.d.ts +7 -9
- package/types/sap.ui.webc.fiori.d.ts +578 -408
- package/types/sap.ui.webc.main.d.ts +1521 -878
- package/types/sap.uxap.d.ts +304 -267
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.115.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -28,7 +28,7 @@ declare module "sap/uxap/library" {
|
|
|
28
28
|
OneColumn = "OneColumn",
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
* @
|
|
31
|
+
* @since 1.52
|
|
32
32
|
*
|
|
33
33
|
* Interface for controls that are eligible for the `headerContent` aggregation of the `{@link sap.uxap.ObjectPageLayout}`.
|
|
34
34
|
*
|
|
@@ -49,7 +49,7 @@ declare module "sap/uxap/library" {
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* @
|
|
52
|
+
* @since 1.52
|
|
53
53
|
*
|
|
54
54
|
* Interface for controls that are eligible for the `headerTitle` aggregation of the `{@link sap.uxap.ObjectPageLayout}`.
|
|
55
55
|
*
|
|
@@ -69,7 +69,7 @@ declare module "sap/uxap/library" {
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
|
-
* @
|
|
72
|
+
* @since 1.32.0
|
|
73
73
|
*
|
|
74
74
|
* Used by the `ObjectSectionBase` control to define the importance of the content contained in it.
|
|
75
75
|
*/
|
|
@@ -172,7 +172,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
172
172
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
173
173
|
|
|
174
174
|
/**
|
|
175
|
-
* @
|
|
175
|
+
* @since 1.26
|
|
176
176
|
*
|
|
177
177
|
* Displays the titles of the sections and subsections in the {@link sap.uxap.ObjectPageLayout ObjectPageLayout }
|
|
178
178
|
* and allows the user to scroll to the respective content.
|
|
@@ -183,7 +183,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
183
183
|
* and subsections and allows the user to directly scroll to the respective content by selecting them, while
|
|
184
184
|
* it remains visible at the top of the page (below the page header).
|
|
185
185
|
*/
|
|
186
|
-
class AnchorBar extends Toolbar {
|
|
186
|
+
export default class AnchorBar extends Toolbar {
|
|
187
187
|
/**
|
|
188
188
|
* Constructor for a new `AnchorBar`.
|
|
189
189
|
*
|
|
@@ -249,7 +249,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
249
249
|
*/
|
|
250
250
|
static getMetadata(): ElementMetadata;
|
|
251
251
|
/**
|
|
252
|
-
* @
|
|
252
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
253
253
|
*
|
|
254
254
|
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
255
255
|
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
@@ -265,7 +265,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
265
265
|
mAriaProps: object
|
|
266
266
|
): void;
|
|
267
267
|
/**
|
|
268
|
-
* @
|
|
268
|
+
* @since 1.58
|
|
269
269
|
*
|
|
270
270
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
271
271
|
*
|
|
@@ -327,7 +327,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
327
327
|
iDuration?: int
|
|
328
328
|
): void;
|
|
329
329
|
/**
|
|
330
|
-
* @
|
|
330
|
+
* @since 1.58
|
|
331
331
|
*
|
|
332
332
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
333
333
|
*
|
|
@@ -394,7 +394,6 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
394
394
|
bUpperCase?: boolean
|
|
395
395
|
): this;
|
|
396
396
|
}
|
|
397
|
-
export default AnchorBar;
|
|
398
397
|
|
|
399
398
|
export interface $AnchorBarSettings extends $ToolbarSettings {
|
|
400
399
|
/**
|
|
@@ -409,7 +408,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
409
408
|
upperCase?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
410
409
|
|
|
411
410
|
/**
|
|
412
|
-
* @
|
|
411
|
+
* @since 1.58
|
|
413
412
|
*
|
|
414
413
|
* Determines the background color of the `AnchorBar`.
|
|
415
414
|
*
|
|
@@ -433,8 +432,6 @@ declare module "sap/uxap/BlockBase" {
|
|
|
433
432
|
|
|
434
433
|
import ModelMapping from "sap/uxap/ModelMapping";
|
|
435
434
|
|
|
436
|
-
import Event from "sap/ui/base/Event";
|
|
437
|
-
|
|
438
435
|
import View from "sap/ui/core/mvc/View";
|
|
439
436
|
|
|
440
437
|
import {
|
|
@@ -451,8 +448,10 @@ declare module "sap/uxap/BlockBase" {
|
|
|
451
448
|
AggregationBindingInfo,
|
|
452
449
|
} from "sap/ui/base/ManagedObject";
|
|
453
450
|
|
|
451
|
+
import Event from "sap/ui/base/Event";
|
|
452
|
+
|
|
454
453
|
/**
|
|
455
|
-
* @
|
|
454
|
+
* @since 1.26
|
|
456
455
|
*
|
|
457
456
|
* The main element that holds the content that is displayed in an {@link sap.uxap.ObjectPageLayout ObjectPageLayout},
|
|
458
457
|
* but not necessarily only there.
|
|
@@ -471,7 +470,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
471
470
|
* in `onParentBlockModeChange` method. If the controller implements the `onParentBlockModeChange` method,
|
|
472
471
|
* this method will be called with the `sMode` parameter when the view is used or reused by the block.
|
|
473
472
|
*/
|
|
474
|
-
class BlockBase extends Control {
|
|
473
|
+
export default class BlockBase extends Control {
|
|
475
474
|
/**
|
|
476
475
|
* Constructor for a new `BlockBase`.
|
|
477
476
|
*
|
|
@@ -550,7 +549,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
550
549
|
oMapping: ModelMapping
|
|
551
550
|
): this;
|
|
552
551
|
/**
|
|
553
|
-
* @
|
|
552
|
+
* @since 1.72
|
|
554
553
|
*
|
|
555
554
|
* Attaches event handler `fnFunction` to the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
556
555
|
*
|
|
@@ -570,14 +569,14 @@ declare module "sap/uxap/BlockBase" {
|
|
|
570
569
|
/**
|
|
571
570
|
* The function to be called when the event occurs
|
|
572
571
|
*/
|
|
573
|
-
fnFunction: (p1:
|
|
572
|
+
fnFunction: (p1: BlockBase$ViewInitEvent) => void,
|
|
574
573
|
/**
|
|
575
574
|
* Context object to call the event handler with. Defaults to this `sap.uxap.BlockBase` itself
|
|
576
575
|
*/
|
|
577
576
|
oListener?: object
|
|
578
577
|
): this;
|
|
579
578
|
/**
|
|
580
|
-
* @
|
|
579
|
+
* @since 1.72
|
|
581
580
|
*
|
|
582
581
|
* Attaches event handler `fnFunction` to the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
583
582
|
*
|
|
@@ -592,14 +591,14 @@ declare module "sap/uxap/BlockBase" {
|
|
|
592
591
|
/**
|
|
593
592
|
* The function to be called when the event occurs
|
|
594
593
|
*/
|
|
595
|
-
fnFunction: (p1:
|
|
594
|
+
fnFunction: (p1: BlockBase$ViewInitEvent) => void,
|
|
596
595
|
/**
|
|
597
596
|
* Context object to call the event handler with. Defaults to this `sap.uxap.BlockBase` itself
|
|
598
597
|
*/
|
|
599
598
|
oListener?: object
|
|
600
599
|
): this;
|
|
601
600
|
/**
|
|
602
|
-
* @
|
|
601
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
603
602
|
*
|
|
604
603
|
* Creates a view.
|
|
605
604
|
*
|
|
@@ -622,7 +621,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
622
621
|
*/
|
|
623
622
|
destroyMappings(): this;
|
|
624
623
|
/**
|
|
625
|
-
* @
|
|
624
|
+
* @since 1.72
|
|
626
625
|
*
|
|
627
626
|
* Detaches event handler `fnFunction` from the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
628
627
|
*
|
|
@@ -634,15 +633,15 @@ declare module "sap/uxap/BlockBase" {
|
|
|
634
633
|
/**
|
|
635
634
|
* The function to be called, when the event occurs
|
|
636
635
|
*/
|
|
637
|
-
fnFunction: (p1:
|
|
636
|
+
fnFunction: (p1: BlockBase$ViewInitEvent) => void,
|
|
638
637
|
/**
|
|
639
638
|
* Context object on which the given function had to be called
|
|
640
639
|
*/
|
|
641
640
|
oListener?: object
|
|
642
641
|
): this;
|
|
643
642
|
/**
|
|
644
|
-
* @
|
|
645
|
-
* @
|
|
643
|
+
* @since 1.72
|
|
644
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
646
645
|
*
|
|
647
646
|
* Fires event {@link #event:viewInit viewInit} to attached listeners.
|
|
648
647
|
*
|
|
@@ -652,7 +651,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
652
651
|
/**
|
|
653
652
|
* Parameters to pass along with the event
|
|
654
653
|
*/
|
|
655
|
-
mParameters?: $
|
|
654
|
+
mParameters?: BlockBase$ViewInitEventParameters
|
|
656
655
|
): this;
|
|
657
656
|
/**
|
|
658
657
|
* Gets current value of property {@link #getColumnLayout columnLayout}.
|
|
@@ -869,7 +868,6 @@ declare module "sap/uxap/BlockBase" {
|
|
|
869
868
|
bVisible?: boolean
|
|
870
869
|
): this;
|
|
871
870
|
}
|
|
872
|
-
export default BlockBase;
|
|
873
871
|
|
|
874
872
|
export interface $BlockBaseSettings extends $ControlSettings {
|
|
875
873
|
/**
|
|
@@ -931,19 +929,27 @@ declare module "sap/uxap/BlockBase" {
|
|
|
931
929
|
selectedView?: Control | string;
|
|
932
930
|
|
|
933
931
|
/**
|
|
934
|
-
* @
|
|
932
|
+
* @since 1.72
|
|
935
933
|
*
|
|
936
934
|
* Fired when an aggregated view is instantiated.
|
|
937
935
|
*/
|
|
938
|
-
viewInit?: (oEvent: Event
|
|
936
|
+
viewInit?: (oEvent: Event<BlockBase$ViewInitEventParameters>) => void;
|
|
939
937
|
}
|
|
940
938
|
|
|
941
|
-
export interface $
|
|
939
|
+
export interface BlockBase$ViewInitEventParameters {
|
|
942
940
|
/**
|
|
943
941
|
* The initialized view.
|
|
944
942
|
*/
|
|
945
943
|
view?: View;
|
|
946
944
|
}
|
|
945
|
+
|
|
946
|
+
/**
|
|
947
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BlockBase$ViewInitEventParameters'
|
|
948
|
+
* in 1.115.1 and any later releases.
|
|
949
|
+
*/
|
|
950
|
+
export type $BlockBaseViewInitEventParameters = BlockBase$ViewInitEventParameters;
|
|
951
|
+
|
|
952
|
+
export type BlockBase$ViewInitEvent = Event<BlockBase$ViewInitEventParameters>;
|
|
947
953
|
}
|
|
948
954
|
|
|
949
955
|
declare module "sap/uxap/BreadCrumbs" {
|
|
@@ -961,7 +967,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
961
967
|
} from "sap/ui/base/ManagedObject";
|
|
962
968
|
|
|
963
969
|
/**
|
|
964
|
-
* @
|
|
970
|
+
* @since 1.30
|
|
965
971
|
*
|
|
966
972
|
* Represents the navigation steps up to the current location in the app.
|
|
967
973
|
*
|
|
@@ -975,7 +981,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
975
981
|
* line.
|
|
976
982
|
* - A dropdown list with the links, when the trail of links wouldn't fit on one line.
|
|
977
983
|
*/
|
|
978
|
-
class BreadCrumbs extends Control {
|
|
984
|
+
export default class BreadCrumbs extends Control {
|
|
979
985
|
/**
|
|
980
986
|
* Constructor for a new `BreadCrumbs`.
|
|
981
987
|
*
|
|
@@ -1158,7 +1164,6 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1158
1164
|
bShowCurrentLocation?: boolean
|
|
1159
1165
|
): this;
|
|
1160
1166
|
}
|
|
1161
|
-
export default BreadCrumbs;
|
|
1162
1167
|
|
|
1163
1168
|
export interface $BreadCrumbsSettings extends $ControlSettings {
|
|
1164
1169
|
/**
|
|
@@ -1186,14 +1191,14 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1186
1191
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1187
1192
|
|
|
1188
1193
|
/**
|
|
1189
|
-
* @
|
|
1194
|
+
* @since 1.26
|
|
1190
1195
|
*
|
|
1191
1196
|
* A select that displays items on a hierarchy of 2 levels.
|
|
1192
1197
|
*
|
|
1193
1198
|
* If a provided item has a custom data named `secondLevel`, then it will be displayed as a second level,
|
|
1194
1199
|
* otherwise it would be displayed as a first level.
|
|
1195
1200
|
*/
|
|
1196
|
-
class HierarchicalSelect extends Select {
|
|
1201
|
+
export default class HierarchicalSelect extends Select {
|
|
1197
1202
|
/**
|
|
1198
1203
|
* Constructor for a new `HierarchicalSelect`.
|
|
1199
1204
|
*
|
|
@@ -1282,7 +1287,6 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1282
1287
|
bUpperCase?: boolean
|
|
1283
1288
|
): this;
|
|
1284
1289
|
}
|
|
1285
|
-
export default HierarchicalSelect;
|
|
1286
1290
|
|
|
1287
1291
|
export interface $HierarchicalSelectSettings extends $SelectSettings {
|
|
1288
1292
|
/**
|
|
@@ -1300,11 +1304,11 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1300
1304
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1301
1305
|
|
|
1302
1306
|
/**
|
|
1303
|
-
* @
|
|
1307
|
+
* @since 1.26
|
|
1304
1308
|
*
|
|
1305
1309
|
* Defines the entity that will be passed to the {@link sap.uxap.ObjectPageLayout}.
|
|
1306
1310
|
*/
|
|
1307
|
-
class ModelMapping extends UI5Element {
|
|
1311
|
+
export default class ModelMapping extends UI5Element {
|
|
1308
1312
|
/**
|
|
1309
1313
|
* Constructor for a new `ModelMapping`.
|
|
1310
1314
|
*
|
|
@@ -1439,7 +1443,6 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1439
1443
|
sInternalModelName?: string
|
|
1440
1444
|
): this;
|
|
1441
1445
|
}
|
|
1442
|
-
export default ModelMapping;
|
|
1443
1446
|
|
|
1444
1447
|
export interface $ModelMappingSettings extends $ElementSettings {
|
|
1445
1448
|
/**
|
|
@@ -1469,13 +1472,13 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1469
1472
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1470
1473
|
|
|
1471
1474
|
/**
|
|
1472
|
-
* @
|
|
1475
|
+
* @since 1.61
|
|
1473
1476
|
*
|
|
1474
1477
|
* Settings for accessible landmarks which can be applied to the container elements of a `sap.uxap.ObjectPageLayout`
|
|
1475
1478
|
* control. These landmarks are used by assistive technologies (such as screenreaders) to provide a meaningful
|
|
1476
1479
|
* page overview.
|
|
1477
1480
|
*/
|
|
1478
|
-
class ObjectPageAccessibleLandmarkInfo extends UI5Element {
|
|
1481
|
+
export default class ObjectPageAccessibleLandmarkInfo extends UI5Element {
|
|
1479
1482
|
/**
|
|
1480
1483
|
* Constructor for a new `sap.uxap.ObjectPageAccessibleLandmarkInfo` element.
|
|
1481
1484
|
*
|
|
@@ -1859,7 +1862,6 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1859
1862
|
sRootRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
|
|
1860
1863
|
): this;
|
|
1861
1864
|
}
|
|
1862
|
-
export default ObjectPageAccessibleLandmarkInfo;
|
|
1863
1865
|
|
|
1864
1866
|
export interface $ObjectPageAccessibleLandmarkInfoSettings
|
|
1865
1867
|
extends $ElementSettings {
|
|
@@ -1971,7 +1973,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
1971
1973
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1972
1974
|
|
|
1973
1975
|
/**
|
|
1974
|
-
* @
|
|
1976
|
+
* @since 1.52
|
|
1975
1977
|
*
|
|
1976
1978
|
* Header content for the dynamic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
1977
1979
|
*
|
|
@@ -1986,7 +1988,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
1986
1988
|
* - {@link https://ui5.sap.com/#/topic/d2ef0099542d44dc868719d908e576d0 Object Page Headers}
|
|
1987
1989
|
* - {@link https://ui5.sap.com/#/topic/6e340c119ddd4c778b315f65a0432420 Object Page Dynamic Header}
|
|
1988
1990
|
*/
|
|
1989
|
-
class ObjectPageDynamicHeaderContent
|
|
1991
|
+
export default class ObjectPageDynamicHeaderContent
|
|
1990
1992
|
extends DynamicPageHeader
|
|
1991
1993
|
implements IHeaderContent {
|
|
1992
1994
|
__implements__sap_uxap_IHeaderContent: boolean;
|
|
@@ -2057,7 +2059,6 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
2057
2059
|
*/
|
|
2058
2060
|
static getMetadata(): ElementMetadata;
|
|
2059
2061
|
}
|
|
2060
|
-
export default ObjectPageDynamicHeaderContent;
|
|
2061
2062
|
|
|
2062
2063
|
export interface $ObjectPageDynamicHeaderContentSettings
|
|
2063
2064
|
extends $DynamicPageHeaderSettings {}
|
|
@@ -2074,7 +2075,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2074
2075
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2075
2076
|
|
|
2076
2077
|
/**
|
|
2077
|
-
* @
|
|
2078
|
+
* @since 1.52
|
|
2078
2079
|
*
|
|
2079
2080
|
* Represents the static part (header title) of the dynamic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
2080
2081
|
*
|
|
@@ -2086,7 +2087,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2086
2087
|
* **Note:** The `ObjectPageDynamicHeaderTitle` is meant to be used inside the `ObjectPageLayout` control.
|
|
2087
2088
|
* Any other usage is not supported and can lead to unexpected behavior.
|
|
2088
2089
|
*/
|
|
2089
|
-
class ObjectPageDynamicHeaderTitle
|
|
2090
|
+
export default class ObjectPageDynamicHeaderTitle
|
|
2090
2091
|
extends DynamicPageTitle
|
|
2091
2092
|
implements IHeaderTitle {
|
|
2092
2093
|
__implements__sap_uxap_IHeaderTitle: boolean;
|
|
@@ -2165,7 +2166,6 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2165
2166
|
*/
|
|
2166
2167
|
static getMetadata(): ElementMetadata;
|
|
2167
2168
|
}
|
|
2168
|
-
export default ObjectPageDynamicHeaderTitle;
|
|
2169
2169
|
|
|
2170
2170
|
export interface $ObjectPageDynamicHeaderTitleSettings
|
|
2171
2171
|
extends $DynamicPageTitleSettings {}
|
|
@@ -2178,8 +2178,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2178
2178
|
|
|
2179
2179
|
import Link from "sap/m/Link";
|
|
2180
2180
|
|
|
2181
|
-
import Event from "sap/ui/base/Event";
|
|
2182
|
-
|
|
2183
2181
|
import Breadcrumbs from "sap/m/Breadcrumbs";
|
|
2184
2182
|
|
|
2185
2183
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -2199,8 +2197,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2199
2197
|
AggregationBindingInfo,
|
|
2200
2198
|
} from "sap/ui/base/ManagedObject";
|
|
2201
2199
|
|
|
2200
|
+
import Event from "sap/ui/base/Event";
|
|
2201
|
+
|
|
2202
2202
|
/**
|
|
2203
|
-
* @
|
|
2203
|
+
* @since 1.26
|
|
2204
2204
|
*
|
|
2205
2205
|
* Represents the static part (header title) of the classic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
2206
2206
|
*
|
|
@@ -2212,7 +2212,9 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2212
2212
|
* **Note:** The `ObjectPageHeader` is meant to be used inside the `ObjectPageLayout` control. Any other
|
|
2213
2213
|
* usage is not supported and can lead to unexpected behavior.
|
|
2214
2214
|
*/
|
|
2215
|
-
class ObjectPageHeader
|
|
2215
|
+
export default class ObjectPageHeader
|
|
2216
|
+
extends Control
|
|
2217
|
+
implements IHeaderTitle {
|
|
2216
2218
|
__implements__sap_uxap_IHeaderTitle: boolean;
|
|
2217
2219
|
/**
|
|
2218
2220
|
* Constructor for a new `ObjectPageHeader`.
|
|
@@ -2330,9 +2332,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2330
2332
|
/**
|
|
2331
2333
|
* The function to be called when the event occurs
|
|
2332
2334
|
*/
|
|
2333
|
-
fnFunction: (
|
|
2334
|
-
p1: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
|
|
2335
|
-
) => void,
|
|
2335
|
+
fnFunction: (p1: ObjectPageHeader$MarkChangesPressEvent) => void,
|
|
2336
2336
|
/**
|
|
2337
2337
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
|
|
2338
2338
|
*/
|
|
@@ -2353,9 +2353,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2353
2353
|
/**
|
|
2354
2354
|
* The function to be called when the event occurs
|
|
2355
2355
|
*/
|
|
2356
|
-
fnFunction: (
|
|
2357
|
-
p1: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
|
|
2358
|
-
) => void,
|
|
2356
|
+
fnFunction: (p1: ObjectPageHeader$MarkChangesPressEvent) => void,
|
|
2359
2357
|
/**
|
|
2360
2358
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
|
|
2361
2359
|
*/
|
|
@@ -2381,9 +2379,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2381
2379
|
/**
|
|
2382
2380
|
* The function to be called when the event occurs
|
|
2383
2381
|
*/
|
|
2384
|
-
fnFunction: (
|
|
2385
|
-
p1: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
|
|
2386
|
-
) => void,
|
|
2382
|
+
fnFunction: (p1: ObjectPageHeader$MarkLockedPressEvent) => void,
|
|
2387
2383
|
/**
|
|
2388
2384
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
|
|
2389
2385
|
*/
|
|
@@ -2404,9 +2400,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2404
2400
|
/**
|
|
2405
2401
|
* The function to be called when the event occurs
|
|
2406
2402
|
*/
|
|
2407
|
-
fnFunction: (
|
|
2408
|
-
p1: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
|
|
2409
|
-
) => void,
|
|
2403
|
+
fnFunction: (p1: ObjectPageHeader$MarkLockedPressEvent) => void,
|
|
2410
2404
|
/**
|
|
2411
2405
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
|
|
2412
2406
|
*/
|
|
@@ -2432,9 +2426,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2432
2426
|
/**
|
|
2433
2427
|
* The function to be called when the event occurs
|
|
2434
2428
|
*/
|
|
2435
|
-
fnFunction: (
|
|
2436
|
-
p1: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
|
|
2437
|
-
) => void,
|
|
2429
|
+
fnFunction: (p1: ObjectPageHeader$TitleSelectorPressEvent) => void,
|
|
2438
2430
|
/**
|
|
2439
2431
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
|
|
2440
2432
|
*/
|
|
@@ -2455,9 +2447,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2455
2447
|
/**
|
|
2456
2448
|
* The function to be called when the event occurs
|
|
2457
2449
|
*/
|
|
2458
|
-
fnFunction: (
|
|
2459
|
-
p1: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
|
|
2460
|
-
) => void,
|
|
2450
|
+
fnFunction: (p1: ObjectPageHeader$TitleSelectorPressEvent) => void,
|
|
2461
2451
|
/**
|
|
2462
2452
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageHeader` itself
|
|
2463
2453
|
*/
|
|
@@ -2470,7 +2460,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2470
2460
|
*/
|
|
2471
2461
|
destroyActions(): this;
|
|
2472
2462
|
/**
|
|
2473
|
-
* @
|
|
2463
|
+
* @since 1.50
|
|
2474
2464
|
*
|
|
2475
2465
|
* Destroys the breadcrumbs in the aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
2476
2466
|
*
|
|
@@ -2492,7 +2482,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2492
2482
|
*/
|
|
2493
2483
|
destroyNavigationBar(): this;
|
|
2494
2484
|
/**
|
|
2495
|
-
* @
|
|
2485
|
+
* @since 1.38.0
|
|
2496
2486
|
*
|
|
2497
2487
|
* Destroys the sideContentButton in the aggregation {@link #getSideContentButton sideContentButton}.
|
|
2498
2488
|
*
|
|
@@ -2500,7 +2490,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2500
2490
|
*/
|
|
2501
2491
|
destroySideContentButton(): this;
|
|
2502
2492
|
/**
|
|
2503
|
-
* @
|
|
2493
|
+
* @since 1.56
|
|
2504
2494
|
*
|
|
2505
2495
|
* Destroys the titleSelectorTooltip in the aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
2506
2496
|
*
|
|
@@ -2519,9 +2509,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2519
2509
|
/**
|
|
2520
2510
|
* The function to be called, when the event occurs
|
|
2521
2511
|
*/
|
|
2522
|
-
fnFunction: (
|
|
2523
|
-
p1: Event<$ObjectPageHeaderMarkChangesPressEventParameters>
|
|
2524
|
-
) => void,
|
|
2512
|
+
fnFunction: (p1: ObjectPageHeader$MarkChangesPressEvent) => void,
|
|
2525
2513
|
/**
|
|
2526
2514
|
* Context object on which the given function had to be called
|
|
2527
2515
|
*/
|
|
@@ -2539,9 +2527,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2539
2527
|
/**
|
|
2540
2528
|
* The function to be called, when the event occurs
|
|
2541
2529
|
*/
|
|
2542
|
-
fnFunction: (
|
|
2543
|
-
p1: Event<$ObjectPageHeaderMarkLockedPressEventParameters>
|
|
2544
|
-
) => void,
|
|
2530
|
+
fnFunction: (p1: ObjectPageHeader$MarkLockedPressEvent) => void,
|
|
2545
2531
|
/**
|
|
2546
2532
|
* Context object on which the given function had to be called
|
|
2547
2533
|
*/
|
|
@@ -2559,16 +2545,14 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2559
2545
|
/**
|
|
2560
2546
|
* The function to be called, when the event occurs
|
|
2561
2547
|
*/
|
|
2562
|
-
fnFunction: (
|
|
2563
|
-
p1: Event<$ObjectPageHeaderTitleSelectorPressEventParameters>
|
|
2564
|
-
) => void,
|
|
2548
|
+
fnFunction: (p1: ObjectPageHeader$TitleSelectorPressEvent) => void,
|
|
2565
2549
|
/**
|
|
2566
2550
|
* Context object on which the given function had to be called
|
|
2567
2551
|
*/
|
|
2568
2552
|
oListener?: object
|
|
2569
2553
|
): this;
|
|
2570
2554
|
/**
|
|
2571
|
-
* @
|
|
2555
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2572
2556
|
*
|
|
2573
2557
|
* Fires event {@link #event:markChangesPress markChangesPress} to attached listeners.
|
|
2574
2558
|
*
|
|
@@ -2578,10 +2562,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2578
2562
|
/**
|
|
2579
2563
|
* Parameters to pass along with the event
|
|
2580
2564
|
*/
|
|
2581
|
-
mParameters?: $
|
|
2565
|
+
mParameters?: ObjectPageHeader$MarkChangesPressEventParameters
|
|
2582
2566
|
): this;
|
|
2583
2567
|
/**
|
|
2584
|
-
* @
|
|
2568
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2585
2569
|
*
|
|
2586
2570
|
* Fires event {@link #event:markLockedPress markLockedPress} to attached listeners.
|
|
2587
2571
|
*
|
|
@@ -2591,10 +2575,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2591
2575
|
/**
|
|
2592
2576
|
* Parameters to pass along with the event
|
|
2593
2577
|
*/
|
|
2594
|
-
mParameters?: $
|
|
2578
|
+
mParameters?: ObjectPageHeader$MarkLockedPressEventParameters
|
|
2595
2579
|
): this;
|
|
2596
2580
|
/**
|
|
2597
|
-
* @
|
|
2581
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2598
2582
|
*
|
|
2599
2583
|
* Fires event {@link #event:titleSelectorPress titleSelectorPress} to attached listeners.
|
|
2600
2584
|
*
|
|
@@ -2604,7 +2588,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2604
2588
|
/**
|
|
2605
2589
|
* Parameters to pass along with the event
|
|
2606
2590
|
*/
|
|
2607
|
-
mParameters?: $
|
|
2591
|
+
mParameters?: ObjectPageHeader$TitleSelectorPressEventParameters
|
|
2608
2592
|
): this;
|
|
2609
2593
|
/**
|
|
2610
2594
|
* Gets content of aggregation {@link #getActions actions}.
|
|
@@ -2619,7 +2603,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2619
2603
|
*/
|
|
2620
2604
|
getActions(): Control[];
|
|
2621
2605
|
/**
|
|
2622
|
-
* @
|
|
2606
|
+
* @since 1.50
|
|
2623
2607
|
*
|
|
2624
2608
|
* Gets content of aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
2625
2609
|
*
|
|
@@ -2691,7 +2675,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2691
2675
|
*/
|
|
2692
2676
|
getIsObjectTitleAlwaysVisible(): boolean;
|
|
2693
2677
|
/**
|
|
2694
|
-
* @
|
|
2678
|
+
* @since 1.34.0
|
|
2695
2679
|
*
|
|
2696
2680
|
* Gets current value of property {@link #getMarkChanges markChanges}.
|
|
2697
2681
|
*
|
|
@@ -2752,7 +2736,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2752
2736
|
*/
|
|
2753
2737
|
getObjectImageAlt(): string;
|
|
2754
2738
|
/**
|
|
2755
|
-
* @
|
|
2739
|
+
* @since 1.73
|
|
2756
2740
|
*
|
|
2757
2741
|
* Gets current value of property {@link #getObjectImageBackgroundColor objectImageBackgroundColor}.
|
|
2758
2742
|
*
|
|
@@ -2840,7 +2824,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2840
2824
|
*/
|
|
2841
2825
|
getShowTitleSelector(): boolean;
|
|
2842
2826
|
/**
|
|
2843
|
-
* @
|
|
2827
|
+
* @since 1.38.0
|
|
2844
2828
|
*
|
|
2845
2829
|
* Gets content of aggregation {@link #getSideContentButton sideContentButton}.
|
|
2846
2830
|
*
|
|
@@ -2848,7 +2832,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2848
2832
|
*/
|
|
2849
2833
|
getSideContentButton(): Button;
|
|
2850
2834
|
/**
|
|
2851
|
-
* @
|
|
2835
|
+
* @since 1.56
|
|
2852
2836
|
*
|
|
2853
2837
|
* Gets content of aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
2854
2838
|
*
|
|
@@ -2965,7 +2949,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2965
2949
|
vBreadCrumbLink: int | string | Link
|
|
2966
2950
|
): Link | null;
|
|
2967
2951
|
/**
|
|
2968
|
-
* @
|
|
2952
|
+
* @since 1.50
|
|
2969
2953
|
*
|
|
2970
2954
|
* Sets the aggregated {@link #getBreadcrumbs breadcrumbs}.
|
|
2971
2955
|
*
|
|
@@ -3046,7 +3030,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3046
3030
|
bIsObjectTitleAlwaysVisible?: boolean
|
|
3047
3031
|
): this;
|
|
3048
3032
|
/**
|
|
3049
|
-
* @
|
|
3033
|
+
* @since 1.34.0
|
|
3050
3034
|
*
|
|
3051
3035
|
* Sets a new value for property {@link #getMarkChanges markChanges}.
|
|
3052
3036
|
*
|
|
@@ -3147,7 +3131,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3147
3131
|
sObjectImageAlt?: string
|
|
3148
3132
|
): this;
|
|
3149
3133
|
/**
|
|
3150
|
-
* @
|
|
3134
|
+
* @since 1.73
|
|
3151
3135
|
*
|
|
3152
3136
|
* Sets a new value for property {@link #getObjectImageBackgroundColor objectImageBackgroundColor}.
|
|
3153
3137
|
*
|
|
@@ -3298,7 +3282,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3298
3282
|
bShowTitleSelector?: boolean
|
|
3299
3283
|
): this;
|
|
3300
3284
|
/**
|
|
3301
|
-
* @
|
|
3285
|
+
* @since 1.38.0
|
|
3302
3286
|
*
|
|
3303
3287
|
* Sets the aggregated {@link #getSideContentButton sideContentButton}.
|
|
3304
3288
|
*
|
|
@@ -3311,7 +3295,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3311
3295
|
oSideContentButton: Button
|
|
3312
3296
|
): this;
|
|
3313
3297
|
/**
|
|
3314
|
-
* @
|
|
3298
|
+
* @since 1.56
|
|
3315
3299
|
*
|
|
3316
3300
|
* Sets the aggregated {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
3317
3301
|
*
|
|
@@ -3324,7 +3308,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3324
3308
|
vTitleSelectorTooltip: TooltipBase | string
|
|
3325
3309
|
): this;
|
|
3326
3310
|
}
|
|
3327
|
-
export default ObjectPageHeader;
|
|
3328
3311
|
|
|
3329
3312
|
export interface $ObjectPageHeaderSettings extends $ControlSettings {
|
|
3330
3313
|
/**
|
|
@@ -3362,7 +3345,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3362
3345
|
| `{${string}}`;
|
|
3363
3346
|
|
|
3364
3347
|
/**
|
|
3365
|
-
* @
|
|
3348
|
+
* @since 1.73
|
|
3366
3349
|
*
|
|
3367
3350
|
* Determines the background color of the image placeholder or icon if valid icon URI is provided.
|
|
3368
3351
|
*/
|
|
@@ -3439,7 +3422,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3439
3422
|
showPlaceholder?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3440
3423
|
|
|
3441
3424
|
/**
|
|
3442
|
-
* @
|
|
3425
|
+
* @since 1.34.0
|
|
3443
3426
|
*
|
|
3444
3427
|
* Marks that there are unsaved changes in the objectPageHeader. The markChanges state cannot be used together
|
|
3445
3428
|
* with the markLocked state. If both are set to true, only the locked state will be displayed.
|
|
@@ -3447,7 +3430,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3447
3430
|
markChanges?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3448
3431
|
|
|
3449
3432
|
/**
|
|
3450
|
-
* @
|
|
3433
|
+
* @since 1.50
|
|
3451
3434
|
*
|
|
3452
3435
|
* The breadcrumbs displayed in the `ObjectPageHeader`. If this aggregation is set, the `breadCrumbsLinks`
|
|
3453
3436
|
* aggregation is omitted.
|
|
@@ -3478,14 +3461,14 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3478
3461
|
actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
3479
3462
|
|
|
3480
3463
|
/**
|
|
3481
|
-
* @
|
|
3464
|
+
* @since 1.38.0
|
|
3482
3465
|
*
|
|
3483
3466
|
* A button that is used for opening the side content of the page or some additional content.
|
|
3484
3467
|
*/
|
|
3485
3468
|
sideContentButton?: Button;
|
|
3486
3469
|
|
|
3487
3470
|
/**
|
|
3488
|
-
* @
|
|
3471
|
+
* @since 1.56
|
|
3489
3472
|
*
|
|
3490
3473
|
* A custom tooltip for the title selector button.
|
|
3491
3474
|
*
|
|
@@ -3500,44 +3483,68 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3500
3483
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
3501
3484
|
*/
|
|
3502
3485
|
titleSelectorPress?: (
|
|
3503
|
-
oEvent: Event
|
|
3486
|
+
oEvent: Event<ObjectPageHeader$TitleSelectorPressEventParameters>
|
|
3504
3487
|
) => void;
|
|
3505
3488
|
|
|
3506
3489
|
/**
|
|
3507
3490
|
* The event is fired when the Locked button is pressed
|
|
3508
3491
|
*/
|
|
3509
3492
|
markLockedPress?: (
|
|
3510
|
-
oEvent: Event
|
|
3493
|
+
oEvent: Event<ObjectPageHeader$MarkLockedPressEventParameters>
|
|
3511
3494
|
) => void;
|
|
3512
3495
|
|
|
3513
3496
|
/**
|
|
3514
3497
|
* The event is fired when the unsaved changes button is pressed
|
|
3515
3498
|
*/
|
|
3516
3499
|
markChangesPress?: (
|
|
3517
|
-
oEvent: Event
|
|
3500
|
+
oEvent: Event<ObjectPageHeader$MarkChangesPressEventParameters>
|
|
3518
3501
|
) => void;
|
|
3519
3502
|
}
|
|
3520
3503
|
|
|
3521
|
-
export interface $
|
|
3504
|
+
export interface ObjectPageHeader$MarkChangesPressEventParameters {
|
|
3522
3505
|
/**
|
|
3523
3506
|
* DOM reference of the changed item's icon to be used for positioning.
|
|
3524
3507
|
*/
|
|
3525
3508
|
domRef?: string;
|
|
3526
3509
|
}
|
|
3527
3510
|
|
|
3528
|
-
|
|
3511
|
+
/**
|
|
3512
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageHeader$MarkChangesPressEventParameters'
|
|
3513
|
+
* in 1.115.1 and any later releases.
|
|
3514
|
+
*/
|
|
3515
|
+
export type $ObjectPageHeaderMarkChangesPressEventParameters = ObjectPageHeader$MarkChangesPressEventParameters;
|
|
3516
|
+
|
|
3517
|
+
export type ObjectPageHeader$MarkChangesPressEvent = Event<ObjectPageHeader$MarkChangesPressEventParameters>;
|
|
3518
|
+
|
|
3519
|
+
export interface ObjectPageHeader$MarkLockedPressEventParameters {
|
|
3529
3520
|
/**
|
|
3530
3521
|
* DOM reference of the lock item's icon to be used for positioning.
|
|
3531
3522
|
*/
|
|
3532
3523
|
domRef?: string;
|
|
3533
3524
|
}
|
|
3534
3525
|
|
|
3535
|
-
|
|
3526
|
+
/**
|
|
3527
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageHeader$MarkLockedPressEventParameters'
|
|
3528
|
+
* in 1.115.1 and any later releases.
|
|
3529
|
+
*/
|
|
3530
|
+
export type $ObjectPageHeaderMarkLockedPressEventParameters = ObjectPageHeader$MarkLockedPressEventParameters;
|
|
3531
|
+
|
|
3532
|
+
export type ObjectPageHeader$MarkLockedPressEvent = Event<ObjectPageHeader$MarkLockedPressEventParameters>;
|
|
3533
|
+
|
|
3534
|
+
export interface ObjectPageHeader$TitleSelectorPressEventParameters {
|
|
3536
3535
|
/**
|
|
3537
3536
|
* DOM reference of the title item's icon to be used for positioning.
|
|
3538
3537
|
*/
|
|
3539
3538
|
domRef?: string;
|
|
3540
3539
|
}
|
|
3540
|
+
|
|
3541
|
+
/**
|
|
3542
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageHeader$TitleSelectorPressEventParameters'
|
|
3543
|
+
* in 1.115.1 and any later releases.
|
|
3544
|
+
*/
|
|
3545
|
+
export type $ObjectPageHeaderTitleSelectorPressEventParameters = ObjectPageHeader$TitleSelectorPressEventParameters;
|
|
3546
|
+
|
|
3547
|
+
export type ObjectPageHeader$TitleSelectorPressEvent = Event<ObjectPageHeader$TitleSelectorPressEventParameters>;
|
|
3541
3548
|
}
|
|
3542
3549
|
|
|
3543
3550
|
declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
@@ -3552,14 +3559,14 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3552
3559
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3553
3560
|
|
|
3554
3561
|
/**
|
|
3555
|
-
* @
|
|
3562
|
+
* @since 1.26
|
|
3556
3563
|
*
|
|
3557
3564
|
* A Button that is used in the `actions` aggregation of the {@link sap.uxap.ObjectPageHeader}.
|
|
3558
3565
|
*
|
|
3559
3566
|
* The button is designed to be used with {@link sap.uxap.ObjectPageHeader} and any usage outside the intended
|
|
3560
3567
|
* context is not recommended.
|
|
3561
3568
|
*/
|
|
3562
|
-
class ObjectPageHeaderActionButton
|
|
3569
|
+
export default class ObjectPageHeaderActionButton
|
|
3563
3570
|
extends Button
|
|
3564
3571
|
implements IOverflowToolbarContent {
|
|
3565
3572
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
@@ -3648,7 +3655,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3648
3655
|
*/
|
|
3649
3656
|
getHideText(): boolean;
|
|
3650
3657
|
/**
|
|
3651
|
-
* @
|
|
3658
|
+
* @since 1.34.0
|
|
3652
3659
|
*
|
|
3653
3660
|
* Gets current value of property {@link #getImportance importance}.
|
|
3654
3661
|
*
|
|
@@ -3698,7 +3705,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3698
3705
|
bHideText?: boolean
|
|
3699
3706
|
): this;
|
|
3700
3707
|
/**
|
|
3701
|
-
* @
|
|
3708
|
+
* @since 1.34.0
|
|
3702
3709
|
*
|
|
3703
3710
|
* Sets a new value for property {@link #getImportance importance}.
|
|
3704
3711
|
*
|
|
@@ -3717,7 +3724,6 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3717
3724
|
sImportance?: Importance | keyof typeof Importance
|
|
3718
3725
|
): this;
|
|
3719
3726
|
}
|
|
3720
|
-
export default ObjectPageHeaderActionButton;
|
|
3721
3727
|
|
|
3722
3728
|
export interface $ObjectPageHeaderActionButtonSettings
|
|
3723
3729
|
extends $ButtonSettings {
|
|
@@ -3736,7 +3742,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3736
3742
|
hideIcon?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3737
3743
|
|
|
3738
3744
|
/**
|
|
3739
|
-
* @
|
|
3745
|
+
* @since 1.34.0
|
|
3740
3746
|
*
|
|
3741
3747
|
* Determines the order in which the button overflows.
|
|
3742
3748
|
*/
|
|
@@ -3760,7 +3766,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3760
3766
|
} from "sap/ui/base/ManagedObject";
|
|
3761
3767
|
|
|
3762
3768
|
/**
|
|
3763
|
-
* @
|
|
3769
|
+
* @since 1.30
|
|
3764
3770
|
*
|
|
3765
3771
|
* Header content for the classic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
3766
3772
|
*
|
|
@@ -3776,7 +3782,9 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3776
3782
|
* - {@link https://ui5.sap.com/#/topic/0fecbce45e39406aa939bd25e89823f4 Object Page Classic Header}
|
|
3777
3783
|
* - {@link https://experience.sap.com/fiori-design-web/object-page/ UX Guidelines: Object Page}
|
|
3778
3784
|
*/
|
|
3779
|
-
class ObjectPageHeaderContent
|
|
3785
|
+
export default class ObjectPageHeaderContent
|
|
3786
|
+
extends Control
|
|
3787
|
+
implements IHeaderContent {
|
|
3780
3788
|
__implements__sap_uxap_IHeaderContent: boolean;
|
|
3781
3789
|
/**
|
|
3782
3790
|
* Constructor for a new `ObjectPageHeaderContent`.
|
|
@@ -3951,7 +3959,6 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3951
3959
|
| keyof typeof ObjectPageHeaderDesign
|
|
3952
3960
|
): this;
|
|
3953
3961
|
}
|
|
3954
|
-
export default ObjectPageHeaderContent;
|
|
3955
3962
|
|
|
3956
3963
|
export interface $ObjectPageHeaderContentSettings extends $ControlSettings {
|
|
3957
3964
|
/**
|
|
@@ -3985,7 +3992,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3985
3992
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3986
3993
|
|
|
3987
3994
|
/**
|
|
3988
|
-
* @
|
|
3995
|
+
* @since 1.26
|
|
3989
3996
|
*
|
|
3990
3997
|
* A {@link sap.ui.core.LayoutData} element that can be added to controls used in the `headerContent` aggregation
|
|
3991
3998
|
* of the `ObjectPageLayout`.
|
|
@@ -3993,7 +4000,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3993
4000
|
* **Note:** This element is only taken into account when the `sap.uxap.ObjectPageLayout` control is used
|
|
3994
4001
|
* together with `sap.uxap.ObjectPageHeader` as value of `headerTitle`.
|
|
3995
4002
|
*/
|
|
3996
|
-
class ObjectPageHeaderLayoutData extends LayoutData {
|
|
4003
|
+
export default class ObjectPageHeaderLayoutData extends LayoutData {
|
|
3997
4004
|
/**
|
|
3998
4005
|
* Constructor for a new `ObjectPageHeaderLayoutData`.
|
|
3999
4006
|
*
|
|
@@ -4217,7 +4224,6 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4217
4224
|
sWidth?: CSSSize
|
|
4218
4225
|
): this;
|
|
4219
4226
|
}
|
|
4220
|
-
export default ObjectPageHeaderLayoutData;
|
|
4221
4227
|
|
|
4222
4228
|
export interface $ObjectPageHeaderLayoutDataSettings
|
|
4223
4229
|
extends $LayoutDataSettings {
|
|
@@ -4281,7 +4287,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4281
4287
|
import ObjectPageSubSection from "sap/uxap/ObjectPageSubSection";
|
|
4282
4288
|
|
|
4283
4289
|
/**
|
|
4284
|
-
* @
|
|
4290
|
+
* @since 1.26
|
|
4285
4291
|
*
|
|
4286
4292
|
* A layout that allows apps to easily display information related to a business object.
|
|
4287
4293
|
*
|
|
@@ -4320,7 +4326,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4320
4326
|
*
|
|
4321
4327
|
* The `ObjectPageLayout` is responsive and adapts to all screen sizes.
|
|
4322
4328
|
*/
|
|
4323
|
-
class ObjectPageLayout extends Control {
|
|
4329
|
+
export default class ObjectPageLayout extends Control {
|
|
4324
4330
|
/**
|
|
4325
4331
|
* Constructor for a new `ObjectPageLayout`.
|
|
4326
4332
|
*
|
|
@@ -4469,7 +4475,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4469
4475
|
oListener?: object
|
|
4470
4476
|
): this;
|
|
4471
4477
|
/**
|
|
4472
|
-
* @
|
|
4478
|
+
* @since 1.93
|
|
4473
4479
|
*
|
|
4474
4480
|
* Attaches event handler `fnFunction` to the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
|
|
4475
4481
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -4491,7 +4497,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4491
4497
|
* The function to be called when the event occurs
|
|
4492
4498
|
*/
|
|
4493
4499
|
fnFunction: (
|
|
4494
|
-
p1:
|
|
4500
|
+
p1: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
4495
4501
|
) => void,
|
|
4496
4502
|
/**
|
|
4497
4503
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
@@ -4499,7 +4505,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4499
4505
|
oListener?: object
|
|
4500
4506
|
): this;
|
|
4501
4507
|
/**
|
|
4502
|
-
* @
|
|
4508
|
+
* @since 1.93
|
|
4503
4509
|
*
|
|
4504
4510
|
* Attaches event handler `fnFunction` to the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
|
|
4505
4511
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -4516,7 +4522,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4516
4522
|
* The function to be called when the event occurs
|
|
4517
4523
|
*/
|
|
4518
4524
|
fnFunction: (
|
|
4519
|
-
p1:
|
|
4525
|
+
p1: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
4520
4526
|
) => void,
|
|
4521
4527
|
/**
|
|
4522
4528
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
@@ -4524,7 +4530,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4524
4530
|
oListener?: object
|
|
4525
4531
|
): this;
|
|
4526
4532
|
/**
|
|
4527
|
-
* @
|
|
4533
|
+
* @since 1.40
|
|
4528
4534
|
*
|
|
4529
4535
|
* Attaches event handler `fnFunction` to the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4530
4536
|
*
|
|
@@ -4544,14 +4550,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4544
4550
|
/**
|
|
4545
4551
|
* The function to be called when the event occurs
|
|
4546
4552
|
*/
|
|
4547
|
-
fnFunction: (p1:
|
|
4553
|
+
fnFunction: (p1: ObjectPageLayout$NavigateEvent) => void,
|
|
4548
4554
|
/**
|
|
4549
4555
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
4550
4556
|
*/
|
|
4551
4557
|
oListener?: object
|
|
4552
4558
|
): this;
|
|
4553
4559
|
/**
|
|
4554
|
-
* @
|
|
4560
|
+
* @since 1.40
|
|
4555
4561
|
*
|
|
4556
4562
|
* Attaches event handler `fnFunction` to the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4557
4563
|
*
|
|
@@ -4566,14 +4572,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4566
4572
|
/**
|
|
4567
4573
|
* The function to be called when the event occurs
|
|
4568
4574
|
*/
|
|
4569
|
-
fnFunction: (p1:
|
|
4575
|
+
fnFunction: (p1: ObjectPageLayout$NavigateEvent) => void,
|
|
4570
4576
|
/**
|
|
4571
4577
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
4572
4578
|
*/
|
|
4573
4579
|
oListener?: object
|
|
4574
4580
|
): this;
|
|
4575
4581
|
/**
|
|
4576
|
-
* @
|
|
4582
|
+
* @since 1.73
|
|
4577
4583
|
*
|
|
4578
4584
|
* Attaches event handler `fnFunction` to the {@link #event:sectionChange sectionChange} event of this `sap.uxap.ObjectPageLayout`.
|
|
4579
4585
|
*
|
|
@@ -4593,16 +4599,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4593
4599
|
/**
|
|
4594
4600
|
* The function to be called when the event occurs
|
|
4595
4601
|
*/
|
|
4596
|
-
fnFunction: (
|
|
4597
|
-
p1: Event<$ObjectPageLayoutSectionChangeEventParameters>
|
|
4598
|
-
) => void,
|
|
4602
|
+
fnFunction: (p1: ObjectPageLayout$SectionChangeEvent) => void,
|
|
4599
4603
|
/**
|
|
4600
4604
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
4601
4605
|
*/
|
|
4602
4606
|
oListener?: object
|
|
4603
4607
|
): this;
|
|
4604
4608
|
/**
|
|
4605
|
-
* @
|
|
4609
|
+
* @since 1.73
|
|
4606
4610
|
*
|
|
4607
4611
|
* Attaches event handler `fnFunction` to the {@link #event:sectionChange sectionChange} event of this `sap.uxap.ObjectPageLayout`.
|
|
4608
4612
|
*
|
|
@@ -4617,16 +4621,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4617
4621
|
/**
|
|
4618
4622
|
* The function to be called when the event occurs
|
|
4619
4623
|
*/
|
|
4620
|
-
fnFunction: (
|
|
4621
|
-
p1: Event<$ObjectPageLayoutSectionChangeEventParameters>
|
|
4622
|
-
) => void,
|
|
4624
|
+
fnFunction: (p1: ObjectPageLayout$SectionChangeEvent) => void,
|
|
4623
4625
|
/**
|
|
4624
4626
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
4625
4627
|
*/
|
|
4626
4628
|
oListener?: object
|
|
4627
4629
|
): this;
|
|
4628
4630
|
/**
|
|
4629
|
-
* @
|
|
4631
|
+
* @since 1.77
|
|
4630
4632
|
*
|
|
4631
4633
|
* Attaches event handler `fnFunction` to the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
|
|
4632
4634
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -4648,7 +4650,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4648
4650
|
* The function to be called when the event occurs
|
|
4649
4651
|
*/
|
|
4650
4652
|
fnFunction: (
|
|
4651
|
-
p1:
|
|
4653
|
+
p1: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
4652
4654
|
) => void,
|
|
4653
4655
|
/**
|
|
4654
4656
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
@@ -4656,7 +4658,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4656
4658
|
oListener?: object
|
|
4657
4659
|
): this;
|
|
4658
4660
|
/**
|
|
4659
|
-
* @
|
|
4661
|
+
* @since 1.77
|
|
4660
4662
|
*
|
|
4661
4663
|
* Attaches event handler `fnFunction` to the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
|
|
4662
4664
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -4673,7 +4675,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4673
4675
|
* The function to be called when the event occurs
|
|
4674
4676
|
*/
|
|
4675
4677
|
fnFunction: (
|
|
4676
|
-
p1:
|
|
4678
|
+
p1: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
4677
4679
|
) => void,
|
|
4678
4680
|
/**
|
|
4679
4681
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
@@ -4700,9 +4702,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4700
4702
|
/**
|
|
4701
4703
|
* The function to be called when the event occurs
|
|
4702
4704
|
*/
|
|
4703
|
-
fnFunction: (
|
|
4704
|
-
p1: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
|
|
4705
|
-
) => void,
|
|
4705
|
+
fnFunction: (p1: ObjectPageLayout$ToggleAnchorBarEvent) => void,
|
|
4706
4706
|
/**
|
|
4707
4707
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
4708
4708
|
*/
|
|
@@ -4723,16 +4723,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4723
4723
|
/**
|
|
4724
4724
|
* The function to be called when the event occurs
|
|
4725
4725
|
*/
|
|
4726
|
-
fnFunction: (
|
|
4727
|
-
p1: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
|
|
4728
|
-
) => void,
|
|
4726
|
+
fnFunction: (p1: ObjectPageLayout$ToggleAnchorBarEvent) => void,
|
|
4729
4727
|
/**
|
|
4730
4728
|
* Context object to call the event handler with. Defaults to this `sap.uxap.ObjectPageLayout` itself
|
|
4731
4729
|
*/
|
|
4732
4730
|
oListener?: object
|
|
4733
4731
|
): this;
|
|
4734
4732
|
/**
|
|
4735
|
-
* @
|
|
4733
|
+
* @since 1.40
|
|
4736
4734
|
*
|
|
4737
4735
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
4738
4736
|
*
|
|
@@ -4752,7 +4750,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4752
4750
|
*/
|
|
4753
4751
|
destroyHeaderTitle(): this;
|
|
4754
4752
|
/**
|
|
4755
|
-
* @
|
|
4753
|
+
* @since 1.61
|
|
4756
4754
|
*
|
|
4757
4755
|
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
4758
4756
|
*
|
|
@@ -4784,7 +4782,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4784
4782
|
oListener?: object
|
|
4785
4783
|
): this;
|
|
4786
4784
|
/**
|
|
4787
|
-
* @
|
|
4785
|
+
* @since 1.93
|
|
4788
4786
|
*
|
|
4789
4787
|
* Detaches event handler `fnFunction` from the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
|
|
4790
4788
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -4798,7 +4796,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4798
4796
|
* The function to be called, when the event occurs
|
|
4799
4797
|
*/
|
|
4800
4798
|
fnFunction: (
|
|
4801
|
-
p1:
|
|
4799
|
+
p1: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
4802
4800
|
) => void,
|
|
4803
4801
|
/**
|
|
4804
4802
|
* Context object on which the given function had to be called
|
|
@@ -4806,7 +4804,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4806
4804
|
oListener?: object
|
|
4807
4805
|
): this;
|
|
4808
4806
|
/**
|
|
4809
|
-
* @
|
|
4807
|
+
* @since 1.40
|
|
4810
4808
|
*
|
|
4811
4809
|
* Detaches event handler `fnFunction` from the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4812
4810
|
*
|
|
@@ -4818,14 +4816,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4818
4816
|
/**
|
|
4819
4817
|
* The function to be called, when the event occurs
|
|
4820
4818
|
*/
|
|
4821
|
-
fnFunction: (p1:
|
|
4819
|
+
fnFunction: (p1: ObjectPageLayout$NavigateEvent) => void,
|
|
4822
4820
|
/**
|
|
4823
4821
|
* Context object on which the given function had to be called
|
|
4824
4822
|
*/
|
|
4825
4823
|
oListener?: object
|
|
4826
4824
|
): this;
|
|
4827
4825
|
/**
|
|
4828
|
-
* @
|
|
4826
|
+
* @since 1.73
|
|
4829
4827
|
*
|
|
4830
4828
|
* Detaches event handler `fnFunction` from the {@link #event:sectionChange sectionChange} event of this
|
|
4831
4829
|
* `sap.uxap.ObjectPageLayout`.
|
|
@@ -4838,16 +4836,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4838
4836
|
/**
|
|
4839
4837
|
* The function to be called, when the event occurs
|
|
4840
4838
|
*/
|
|
4841
|
-
fnFunction: (
|
|
4842
|
-
p1: Event<$ObjectPageLayoutSectionChangeEventParameters>
|
|
4843
|
-
) => void,
|
|
4839
|
+
fnFunction: (p1: ObjectPageLayout$SectionChangeEvent) => void,
|
|
4844
4840
|
/**
|
|
4845
4841
|
* Context object on which the given function had to be called
|
|
4846
4842
|
*/
|
|
4847
4843
|
oListener?: object
|
|
4848
4844
|
): this;
|
|
4849
4845
|
/**
|
|
4850
|
-
* @
|
|
4846
|
+
* @since 1.77
|
|
4851
4847
|
*
|
|
4852
4848
|
* Detaches event handler `fnFunction` from the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
|
|
4853
4849
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
@@ -4861,7 +4857,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4861
4857
|
* The function to be called, when the event occurs
|
|
4862
4858
|
*/
|
|
4863
4859
|
fnFunction: (
|
|
4864
|
-
p1:
|
|
4860
|
+
p1: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
4865
4861
|
) => void,
|
|
4866
4862
|
/**
|
|
4867
4863
|
* Context object on which the given function had to be called
|
|
@@ -4880,16 +4876,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4880
4876
|
/**
|
|
4881
4877
|
* The function to be called, when the event occurs
|
|
4882
4878
|
*/
|
|
4883
|
-
fnFunction: (
|
|
4884
|
-
p1: Event<$ObjectPageLayoutToggleAnchorBarEventParameters>
|
|
4885
|
-
) => void,
|
|
4879
|
+
fnFunction: (p1: ObjectPageLayout$ToggleAnchorBarEvent) => void,
|
|
4886
4880
|
/**
|
|
4887
4881
|
* Context object on which the given function had to be called
|
|
4888
4882
|
*/
|
|
4889
4883
|
oListener?: object
|
|
4890
4884
|
): this;
|
|
4891
4885
|
/**
|
|
4892
|
-
* @
|
|
4886
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4893
4887
|
*
|
|
4894
4888
|
* Fires event {@link #event:editHeaderButtonPress editHeaderButtonPress} to attached listeners.
|
|
4895
4889
|
*
|
|
@@ -4902,8 +4896,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4902
4896
|
mParameters?: object
|
|
4903
4897
|
): this;
|
|
4904
4898
|
/**
|
|
4905
|
-
* @
|
|
4906
|
-
* @
|
|
4899
|
+
* @since 1.93
|
|
4900
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4907
4901
|
*
|
|
4908
4902
|
* Fires event {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange} to attached
|
|
4909
4903
|
* listeners.
|
|
@@ -4914,11 +4908,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4914
4908
|
/**
|
|
4915
4909
|
* Parameters to pass along with the event
|
|
4916
4910
|
*/
|
|
4917
|
-
mParameters?: $
|
|
4911
|
+
mParameters?: ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters
|
|
4918
4912
|
): this;
|
|
4919
4913
|
/**
|
|
4920
|
-
* @
|
|
4921
|
-
* @
|
|
4914
|
+
* @since 1.40
|
|
4915
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4922
4916
|
*
|
|
4923
4917
|
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
4924
4918
|
*
|
|
@@ -4928,11 +4922,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4928
4922
|
/**
|
|
4929
4923
|
* Parameters to pass along with the event
|
|
4930
4924
|
*/
|
|
4931
|
-
mParameters?: $
|
|
4925
|
+
mParameters?: ObjectPageLayout$NavigateEventParameters
|
|
4932
4926
|
): this;
|
|
4933
4927
|
/**
|
|
4934
|
-
* @
|
|
4935
|
-
* @
|
|
4928
|
+
* @since 1.73
|
|
4929
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4936
4930
|
*
|
|
4937
4931
|
* Fires event {@link #event:sectionChange sectionChange} to attached listeners.
|
|
4938
4932
|
*
|
|
@@ -4942,11 +4936,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4942
4936
|
/**
|
|
4943
4937
|
* Parameters to pass along with the event
|
|
4944
4938
|
*/
|
|
4945
|
-
mParameters?: $
|
|
4939
|
+
mParameters?: ObjectPageLayout$SectionChangeEventParameters
|
|
4946
4940
|
): this;
|
|
4947
4941
|
/**
|
|
4948
|
-
* @
|
|
4949
|
-
* @
|
|
4942
|
+
* @since 1.77
|
|
4943
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4950
4944
|
*
|
|
4951
4945
|
* Fires event {@link #event:subSectionVisibilityChange subSectionVisibilityChange} to attached listeners.
|
|
4952
4946
|
*
|
|
@@ -4956,10 +4950,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4956
4950
|
/**
|
|
4957
4951
|
* Parameters to pass along with the event
|
|
4958
4952
|
*/
|
|
4959
|
-
mParameters?: $
|
|
4953
|
+
mParameters?: ObjectPageLayout$SubSectionVisibilityChangeEventParameters
|
|
4960
4954
|
): this;
|
|
4961
4955
|
/**
|
|
4962
|
-
* @
|
|
4956
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4963
4957
|
*
|
|
4964
4958
|
* Fires event {@link #event:toggleAnchorBar toggleAnchorBar} to attached listeners.
|
|
4965
4959
|
*
|
|
@@ -4969,10 +4963,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4969
4963
|
/**
|
|
4970
4964
|
* Parameters to pass along with the event
|
|
4971
4965
|
*/
|
|
4972
|
-
mParameters?: $
|
|
4966
|
+
mParameters?: ObjectPageLayout$ToggleAnchorBarEventParameters
|
|
4973
4967
|
): this;
|
|
4974
4968
|
/**
|
|
4975
|
-
* @
|
|
4969
|
+
* @since 1.34.0
|
|
4976
4970
|
*
|
|
4977
4971
|
* Gets current value of property {@link #getAlwaysShowContentHeader alwaysShowContentHeader}.
|
|
4978
4972
|
*
|
|
@@ -4987,7 +4981,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4987
4981
|
*/
|
|
4988
4982
|
getAlwaysShowContentHeader(): boolean;
|
|
4989
4983
|
/**
|
|
4990
|
-
* @
|
|
4984
|
+
* @since 1.58
|
|
4991
4985
|
*
|
|
4992
4986
|
* Gets current value of property {@link #getBackgroundDesignAnchorBar backgroundDesignAnchorBar}.
|
|
4993
4987
|
*
|
|
@@ -5012,7 +5006,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5012
5006
|
*/
|
|
5013
5007
|
getEnableLazyLoading(): boolean;
|
|
5014
5008
|
/**
|
|
5015
|
-
* @
|
|
5009
|
+
* @since 1.34.0
|
|
5016
5010
|
*
|
|
5017
5011
|
* Gets current value of property {@link #getFlexEnabled flexEnabled}.
|
|
5018
5012
|
*
|
|
@@ -5025,7 +5019,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5025
5019
|
*/
|
|
5026
5020
|
getFlexEnabled(): boolean;
|
|
5027
5021
|
/**
|
|
5028
|
-
* @
|
|
5022
|
+
* @since 1.40
|
|
5029
5023
|
*
|
|
5030
5024
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
5031
5025
|
*
|
|
@@ -5039,7 +5033,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5039
5033
|
*/
|
|
5040
5034
|
getHeaderContent(): Control[];
|
|
5041
5035
|
/**
|
|
5042
|
-
* @
|
|
5036
|
+
* @since 1.52
|
|
5043
5037
|
*
|
|
5044
5038
|
* Gets current value of property {@link #getHeaderContentPinnable headerContentPinnable}.
|
|
5045
5039
|
*
|
|
@@ -5057,7 +5051,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5057
5051
|
*/
|
|
5058
5052
|
getHeaderContentPinnable(): boolean;
|
|
5059
5053
|
/**
|
|
5060
|
-
* @
|
|
5054
|
+
* @since 1.93
|
|
5061
5055
|
*
|
|
5062
5056
|
* Gets current value of property {@link #getHeaderContentPinned headerContentPinned}.
|
|
5063
5057
|
*
|
|
@@ -5098,7 +5092,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5098
5092
|
*/
|
|
5099
5093
|
getHeight(): CSSSize;
|
|
5100
5094
|
/**
|
|
5101
|
-
* @
|
|
5095
|
+
* @since 1.34.0
|
|
5102
5096
|
*
|
|
5103
5097
|
* Gets current value of property {@link #getIsChildPage isChildPage}.
|
|
5104
5098
|
*
|
|
@@ -5114,7 +5108,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5114
5108
|
*/
|
|
5115
5109
|
getIsChildPage(): boolean;
|
|
5116
5110
|
/**
|
|
5117
|
-
* @
|
|
5111
|
+
* @since 1.61
|
|
5118
5112
|
*
|
|
5119
5113
|
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
5120
5114
|
*
|
|
@@ -5124,7 +5118,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5124
5118
|
*/
|
|
5125
5119
|
getLandmarkInfo(): ObjectPageAccessibleLandmarkInfo;
|
|
5126
5120
|
/**
|
|
5127
|
-
* @
|
|
5121
|
+
* @since 1.52
|
|
5128
5122
|
*
|
|
5129
5123
|
* Gets current value of property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
|
|
5130
5124
|
*
|
|
@@ -5160,7 +5154,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5160
5154
|
*/
|
|
5161
5155
|
getSections(): ObjectPageSection[];
|
|
5162
5156
|
/**
|
|
5163
|
-
* @
|
|
5157
|
+
* @since 1.44.0
|
|
5164
5158
|
*
|
|
5165
5159
|
* Gets current value of property {@link #getSectionTitleLevel sectionTitleLevel}.
|
|
5166
5160
|
*
|
|
@@ -5190,7 +5184,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5190
5184
|
*/
|
|
5191
5185
|
getSectionTitleLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
5192
5186
|
/**
|
|
5193
|
-
* @
|
|
5187
|
+
* @since 1.44.0
|
|
5194
5188
|
*
|
|
5195
5189
|
* ID of the element which is the current target of the association {@link #getSelectedSection selectedSection},
|
|
5196
5190
|
* or `null`.
|
|
@@ -5218,7 +5212,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5218
5212
|
*/
|
|
5219
5213
|
getShowAnchorBarPopover(): boolean;
|
|
5220
5214
|
/**
|
|
5221
|
-
* @
|
|
5215
|
+
* @since 1.34.0
|
|
5222
5216
|
*
|
|
5223
5217
|
* Gets current value of property {@link #getShowEditHeaderButton showEditHeaderButton}.
|
|
5224
5218
|
*
|
|
@@ -5233,7 +5227,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5233
5227
|
*/
|
|
5234
5228
|
getShowEditHeaderButton(): boolean;
|
|
5235
5229
|
/**
|
|
5236
|
-
* @
|
|
5230
|
+
* @since 1.40
|
|
5237
5231
|
*
|
|
5238
5232
|
* Gets current value of property {@link #getShowFooter showFooter}.
|
|
5239
5233
|
*
|
|
@@ -5255,7 +5249,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5255
5249
|
*/
|
|
5256
5250
|
getShowHeaderContent(): boolean;
|
|
5257
5251
|
/**
|
|
5258
|
-
* @
|
|
5252
|
+
* @since 1.32.0
|
|
5259
5253
|
*
|
|
5260
5254
|
* Gets current value of property {@link #getShowOnlyHighImportance showOnlyHighImportance}.
|
|
5261
5255
|
*
|
|
@@ -5292,7 +5286,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5292
5286
|
| ObjectPageSubSectionLayout
|
|
5293
5287
|
| keyof typeof ObjectPageSubSectionLayout;
|
|
5294
5288
|
/**
|
|
5295
|
-
* @
|
|
5289
|
+
* @since 1.52
|
|
5296
5290
|
*
|
|
5297
5291
|
* Gets current value of property {@link #getToggleHeaderOnTitleClick toggleHeaderOnTitleClick}.
|
|
5298
5292
|
*
|
|
@@ -5401,7 +5395,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5401
5395
|
iIndex: int
|
|
5402
5396
|
): this;
|
|
5403
5397
|
/**
|
|
5404
|
-
* @
|
|
5398
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5405
5399
|
*
|
|
5406
5400
|
* This triggers rerendering of itself and its children.
|
|
5407
5401
|
*/
|
|
@@ -5469,7 +5463,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5469
5463
|
iOffset?: int
|
|
5470
5464
|
): void;
|
|
5471
5465
|
/**
|
|
5472
|
-
* @
|
|
5466
|
+
* @since 1.34.0
|
|
5473
5467
|
*
|
|
5474
5468
|
* Sets a new value for property {@link #getAlwaysShowContentHeader alwaysShowContentHeader}.
|
|
5475
5469
|
*
|
|
@@ -5491,7 +5485,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5491
5485
|
bAlwaysShowContentHeader?: boolean
|
|
5492
5486
|
): this;
|
|
5493
5487
|
/**
|
|
5494
|
-
* @
|
|
5488
|
+
* @since 1.58
|
|
5495
5489
|
*
|
|
5496
5490
|
* Sets the value of the `backgroundDesignAnchorBar` property.
|
|
5497
5491
|
*
|
|
@@ -5523,7 +5517,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5523
5517
|
bEnableLazyLoading?: boolean
|
|
5524
5518
|
): this;
|
|
5525
5519
|
/**
|
|
5526
|
-
* @
|
|
5520
|
+
* @since 1.34.0
|
|
5527
5521
|
*
|
|
5528
5522
|
* Sets a new value for property {@link #getFlexEnabled flexEnabled}.
|
|
5529
5523
|
*
|
|
@@ -5543,7 +5537,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5543
5537
|
bFlexEnabled?: boolean
|
|
5544
5538
|
): this;
|
|
5545
5539
|
/**
|
|
5546
|
-
* @
|
|
5540
|
+
* @since 1.40
|
|
5547
5541
|
*
|
|
5548
5542
|
* Sets the aggregated {@link #getFooter footer}.
|
|
5549
5543
|
*
|
|
@@ -5556,7 +5550,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5556
5550
|
oFooter: IBar
|
|
5557
5551
|
): this;
|
|
5558
5552
|
/**
|
|
5559
|
-
* @
|
|
5553
|
+
* @since 1.52
|
|
5560
5554
|
*
|
|
5561
5555
|
* Sets a new value for property {@link #getHeaderContentPinnable headerContentPinnable}.
|
|
5562
5556
|
*
|
|
@@ -5581,7 +5575,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5581
5575
|
bHeaderContentPinnable?: boolean
|
|
5582
5576
|
): this;
|
|
5583
5577
|
/**
|
|
5584
|
-
* @
|
|
5578
|
+
* @since 1.93
|
|
5585
5579
|
*
|
|
5586
5580
|
* Sets a new value for property {@link #getHeaderContentPinned headerContentPinned}.
|
|
5587
5581
|
*
|
|
@@ -5641,7 +5635,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5641
5635
|
sHeight?: CSSSize
|
|
5642
5636
|
): this;
|
|
5643
5637
|
/**
|
|
5644
|
-
* @
|
|
5638
|
+
* @since 1.34.0
|
|
5645
5639
|
*
|
|
5646
5640
|
* Sets a new value for property {@link #getIsChildPage isChildPage}.
|
|
5647
5641
|
*
|
|
@@ -5664,7 +5658,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5664
5658
|
bIsChildPage?: boolean
|
|
5665
5659
|
): this;
|
|
5666
5660
|
/**
|
|
5667
|
-
* @
|
|
5661
|
+
* @since 1.61
|
|
5668
5662
|
*
|
|
5669
5663
|
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
5670
5664
|
*
|
|
@@ -5677,7 +5671,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5677
5671
|
oLandmarkInfo: ObjectPageAccessibleLandmarkInfo
|
|
5678
5672
|
): this;
|
|
5679
5673
|
/**
|
|
5680
|
-
* @
|
|
5674
|
+
* @since 1.52
|
|
5681
5675
|
*
|
|
5682
5676
|
* Sets a new value for property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
|
|
5683
5677
|
*
|
|
@@ -5704,7 +5698,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5704
5698
|
bPreserveHeaderStateOnScroll?: boolean
|
|
5705
5699
|
): this;
|
|
5706
5700
|
/**
|
|
5707
|
-
* @
|
|
5701
|
+
* @since 1.44.0
|
|
5708
5702
|
*
|
|
5709
5703
|
* Sets a new value for property {@link #getSectionTitleLevel sectionTitleLevel}.
|
|
5710
5704
|
*
|
|
@@ -5796,7 +5790,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5796
5790
|
bShowAnchorBarPopover?: boolean
|
|
5797
5791
|
): this;
|
|
5798
5792
|
/**
|
|
5799
|
-
* @
|
|
5793
|
+
* @since 1.34.0
|
|
5800
5794
|
*
|
|
5801
5795
|
* Sets a new value for property {@link #getShowEditHeaderButton showEditHeaderButton}.
|
|
5802
5796
|
*
|
|
@@ -5818,7 +5812,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5818
5812
|
bShowEditHeaderButton?: boolean
|
|
5819
5813
|
): this;
|
|
5820
5814
|
/**
|
|
5821
|
-
* @
|
|
5815
|
+
* @since 1.40
|
|
5822
5816
|
*
|
|
5823
5817
|
* Sets a new value for property {@link #getShowFooter showFooter}.
|
|
5824
5818
|
*
|
|
@@ -5854,7 +5848,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5854
5848
|
bShowHeaderContent?: boolean
|
|
5855
5849
|
): this;
|
|
5856
5850
|
/**
|
|
5857
|
-
* @
|
|
5851
|
+
* @since 1.32.0
|
|
5858
5852
|
*
|
|
5859
5853
|
* Sets a new value for property {@link #getShowOnlyHighImportance showOnlyHighImportance}.
|
|
5860
5854
|
*
|
|
@@ -5912,7 +5906,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5912
5906
|
| keyof typeof ObjectPageSubSectionLayout
|
|
5913
5907
|
): this;
|
|
5914
5908
|
/**
|
|
5915
|
-
* @
|
|
5909
|
+
* @since 1.52
|
|
5916
5910
|
*
|
|
5917
5911
|
* Sets a new value for property {@link #getToggleHeaderOnTitleClick toggleHeaderOnTitleClick}.
|
|
5918
5912
|
*
|
|
@@ -5991,7 +5985,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5991
5985
|
bUseTwoColumnsForLargeScreen?: boolean
|
|
5992
5986
|
): this;
|
|
5993
5987
|
}
|
|
5994
|
-
export default ObjectPageLayout;
|
|
5995
5988
|
|
|
5996
5989
|
export interface $ObjectPageLayoutSettings extends $ControlSettings {
|
|
5997
5990
|
/**
|
|
@@ -6011,7 +6004,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6011
6004
|
upperCaseAnchorBar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6012
6005
|
|
|
6013
6006
|
/**
|
|
6014
|
-
* @
|
|
6007
|
+
* @since 1.58
|
|
6015
6008
|
*
|
|
6016
6009
|
* Determines the background color of the `AnchorBar`.
|
|
6017
6010
|
*
|
|
@@ -6042,7 +6035,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6042
6035
|
| `{${string}}`;
|
|
6043
6036
|
|
|
6044
6037
|
/**
|
|
6045
|
-
* @
|
|
6038
|
+
* @since 1.44.0
|
|
6046
6039
|
*
|
|
6047
6040
|
* Determines the ARIA level of the `ObjectPageSection` and `ObjectPageSubSection` titles. The ARIA level
|
|
6048
6041
|
* is used by assisting technologies, such as screen readers, to create a hierarchical site map for faster
|
|
@@ -6096,14 +6089,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6096
6089
|
showTitleInHeaderContent?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6097
6090
|
|
|
6098
6091
|
/**
|
|
6099
|
-
* @
|
|
6092
|
+
* @since 1.32.0
|
|
6100
6093
|
*
|
|
6101
6094
|
* Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
|
|
6102
6095
|
*/
|
|
6103
6096
|
showOnlyHighImportance?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6104
6097
|
|
|
6105
6098
|
/**
|
|
6106
|
-
* @
|
|
6099
|
+
* @since 1.34.0
|
|
6107
6100
|
*
|
|
6108
6101
|
* Determines whether the page is a child page and renders it with a different design. Child pages have
|
|
6109
6102
|
* an additional (darker/lighter) stripe on the left side of their header content area.
|
|
@@ -6114,7 +6107,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6114
6107
|
isChildPage?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6115
6108
|
|
|
6116
6109
|
/**
|
|
6117
|
-
* @
|
|
6110
|
+
* @since 1.34.0
|
|
6118
6111
|
*
|
|
6119
6112
|
* Determines whether Header Content will always be expanded on desktop.
|
|
6120
6113
|
*
|
|
@@ -6124,7 +6117,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6124
6117
|
alwaysShowContentHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6125
6118
|
|
|
6126
6119
|
/**
|
|
6127
|
-
* @
|
|
6120
|
+
* @since 1.52
|
|
6128
6121
|
*
|
|
6129
6122
|
* Determines whether the Header Content area can be pinned.
|
|
6130
6123
|
*
|
|
@@ -6137,7 +6130,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6137
6130
|
headerContentPinnable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6138
6131
|
|
|
6139
6132
|
/**
|
|
6140
|
-
* @
|
|
6133
|
+
* @since 1.93
|
|
6141
6134
|
*
|
|
6142
6135
|
* Determines whether the `sap.uxap.ObjectPageDynamicHeaderContent` is pinned.
|
|
6143
6136
|
*
|
|
@@ -6157,7 +6150,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6157
6150
|
headerContentPinned?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6158
6151
|
|
|
6159
6152
|
/**
|
|
6160
|
-
* @
|
|
6153
|
+
* @since 1.52
|
|
6161
6154
|
*
|
|
6162
6155
|
* Determines whether the user can switch between the expanded/collapsed states of the `sap.uxap.ObjectPageDynamicHeaderContent`
|
|
6163
6156
|
* by clicking on the `sap.uxap.ObjectPageDynamicHeaderTitle`. If set to `false`, the `sap.uxap.ObjectPageDynamicHeaderTitle`
|
|
@@ -6170,7 +6163,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6170
6163
|
toggleHeaderOnTitleClick?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6171
6164
|
|
|
6172
6165
|
/**
|
|
6173
|
-
* @
|
|
6166
|
+
* @since 1.52
|
|
6174
6167
|
*
|
|
6175
6168
|
* Preserves the current header state when scrolling. For example, if the user expands the header by clicking
|
|
6176
6169
|
* on the title and then scrolls down the page, the header will remain expanded.
|
|
@@ -6185,7 +6178,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6185
6178
|
preserveHeaderStateOnScroll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6186
6179
|
|
|
6187
6180
|
/**
|
|
6188
|
-
* @
|
|
6181
|
+
* @since 1.34.0
|
|
6189
6182
|
*
|
|
6190
6183
|
* Determines whether an Edit button will be displayed in Header Content.
|
|
6191
6184
|
*
|
|
@@ -6195,7 +6188,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6195
6188
|
showEditHeaderButton?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6196
6189
|
|
|
6197
6190
|
/**
|
|
6198
|
-
* @
|
|
6191
|
+
* @since 1.34.0
|
|
6199
6192
|
*
|
|
6200
6193
|
* Specifies whether the object page enables flexibility features, such as hiding and adding sections.
|
|
6201
6194
|
* For more information about SAPUI5 flexibility, refer to the Developer Guide.
|
|
@@ -6203,7 +6196,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6203
6196
|
flexEnabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6204
6197
|
|
|
6205
6198
|
/**
|
|
6206
|
-
* @
|
|
6199
|
+
* @since 1.40
|
|
6207
6200
|
*
|
|
6208
6201
|
* Determines whether the footer is visible.
|
|
6209
6202
|
*/
|
|
@@ -6233,14 +6226,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6233
6226
|
| `{${string}}`;
|
|
6234
6227
|
|
|
6235
6228
|
/**
|
|
6236
|
-
* @
|
|
6229
|
+
* @since 1.40
|
|
6237
6230
|
*
|
|
6238
6231
|
* Object page floating footer.
|
|
6239
6232
|
*/
|
|
6240
6233
|
footer?: IBar;
|
|
6241
6234
|
|
|
6242
6235
|
/**
|
|
6243
|
-
* @
|
|
6236
|
+
* @since 1.61
|
|
6244
6237
|
*
|
|
6245
6238
|
* Accessible landmark settings to be applied on the containers of the `sap.uxap.ObjectPageLayout` control.
|
|
6246
6239
|
*
|
|
@@ -6249,35 +6242,35 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6249
6242
|
landmarkInfo?: ObjectPageAccessibleLandmarkInfo;
|
|
6250
6243
|
|
|
6251
6244
|
/**
|
|
6252
|
-
* @
|
|
6245
|
+
* @since 1.44.0
|
|
6253
6246
|
*
|
|
6254
6247
|
* The section that is selected by default on load.
|
|
6255
6248
|
*/
|
|
6256
6249
|
selectedSection?: ObjectPageSection | string;
|
|
6257
6250
|
|
|
6258
6251
|
/**
|
|
6259
|
-
* @
|
|
6252
|
+
* @since 1.93
|
|
6260
6253
|
*
|
|
6261
6254
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
6262
6255
|
*/
|
|
6263
6256
|
headerContentPinnedStateChange?: (
|
|
6264
|
-
oEvent: Event
|
|
6257
|
+
oEvent: Event<ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters>
|
|
6265
6258
|
) => void;
|
|
6266
6259
|
|
|
6267
6260
|
/**
|
|
6268
6261
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
6269
6262
|
*/
|
|
6270
6263
|
toggleAnchorBar?: (
|
|
6271
|
-
oEvent: Event
|
|
6264
|
+
oEvent: Event<ObjectPageLayout$ToggleAnchorBarEventParameters>
|
|
6272
6265
|
) => void;
|
|
6273
6266
|
|
|
6274
6267
|
/**
|
|
6275
|
-
* @
|
|
6268
|
+
* @since 1.73
|
|
6276
6269
|
*
|
|
6277
6270
|
* Fired when the current section is changed by scrolling.
|
|
6278
6271
|
*/
|
|
6279
6272
|
sectionChange?: (
|
|
6280
|
-
oEvent: Event
|
|
6273
|
+
oEvent: Event<ObjectPageLayout$SectionChangeEventParameters>
|
|
6281
6274
|
) => void;
|
|
6282
6275
|
|
|
6283
6276
|
/**
|
|
@@ -6286,34 +6279,50 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6286
6279
|
editHeaderButtonPress?: (oEvent: Event) => void;
|
|
6287
6280
|
|
|
6288
6281
|
/**
|
|
6289
|
-
* @
|
|
6282
|
+
* @since 1.40
|
|
6290
6283
|
*
|
|
6291
6284
|
* The event is fired when the selected section is changed using the navigation.
|
|
6292
6285
|
*/
|
|
6293
6286
|
navigate?: (
|
|
6294
|
-
oEvent: Event
|
|
6287
|
+
oEvent: Event<ObjectPageLayout$NavigateEventParameters>
|
|
6295
6288
|
) => void;
|
|
6296
6289
|
|
|
6297
6290
|
/**
|
|
6298
|
-
* @
|
|
6291
|
+
* @since 1.77
|
|
6299
6292
|
*
|
|
6300
6293
|
* Fired when the visibility of subsections is changed.
|
|
6301
6294
|
*/
|
|
6302
6295
|
subSectionVisibilityChange?: (
|
|
6303
|
-
oEvent: Event
|
|
6296
|
+
oEvent: Event<ObjectPageLayout$SubSectionVisibilityChangeEventParameters>
|
|
6304
6297
|
) => void;
|
|
6305
6298
|
}
|
|
6306
6299
|
|
|
6307
|
-
export interface $
|
|
6300
|
+
export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
|
|
6301
|
+
|
|
6302
|
+
/**
|
|
6303
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$EditHeaderButtonPressEventParameters'
|
|
6304
|
+
* in 1.115.1 and any later releases.
|
|
6305
|
+
*/
|
|
6306
|
+
export type $ObjectPageLayoutEditHeaderButtonPressEventParameters = ObjectPageLayout$EditHeaderButtonPressEventParameters;
|
|
6307
|
+
|
|
6308
|
+
export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<ObjectPageLayout$EditHeaderButtonPressEventParameters>;
|
|
6308
6309
|
|
|
6309
|
-
export interface $
|
|
6310
|
+
export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
|
|
6310
6311
|
/**
|
|
6311
6312
|
* False or True values indicate the new pinned property value.
|
|
6312
6313
|
*/
|
|
6313
6314
|
pinned?: boolean;
|
|
6314
6315
|
}
|
|
6315
6316
|
|
|
6316
|
-
|
|
6317
|
+
/**
|
|
6318
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters'
|
|
6319
|
+
* in 1.115.1 and any later releases.
|
|
6320
|
+
*/
|
|
6321
|
+
export type $ObjectPageLayoutHeaderContentPinnedStateChangeEventParameters = ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters;
|
|
6322
|
+
|
|
6323
|
+
export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters>;
|
|
6324
|
+
|
|
6325
|
+
export interface ObjectPageLayout$NavigateEventParameters {
|
|
6317
6326
|
/**
|
|
6318
6327
|
* The selected section object.
|
|
6319
6328
|
*/
|
|
@@ -6325,7 +6334,15 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6325
6334
|
subSection?: ObjectPageSubSection;
|
|
6326
6335
|
}
|
|
6327
6336
|
|
|
6328
|
-
|
|
6337
|
+
/**
|
|
6338
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$NavigateEventParameters'
|
|
6339
|
+
* in 1.115.1 and any later releases.
|
|
6340
|
+
*/
|
|
6341
|
+
export type $ObjectPageLayoutNavigateEventParameters = ObjectPageLayout$NavigateEventParameters;
|
|
6342
|
+
|
|
6343
|
+
export type ObjectPageLayout$NavigateEvent = Event<ObjectPageLayout$NavigateEventParameters>;
|
|
6344
|
+
|
|
6345
|
+
export interface ObjectPageLayout$SectionChangeEventParameters {
|
|
6329
6346
|
/**
|
|
6330
6347
|
* The section which the layout is scrolled to.
|
|
6331
6348
|
*/
|
|
@@ -6337,20 +6354,44 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6337
6354
|
subSection?: ObjectPageSubSection;
|
|
6338
6355
|
}
|
|
6339
6356
|
|
|
6340
|
-
|
|
6357
|
+
/**
|
|
6358
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$SectionChangeEventParameters'
|
|
6359
|
+
* in 1.115.1 and any later releases.
|
|
6360
|
+
*/
|
|
6361
|
+
export type $ObjectPageLayoutSectionChangeEventParameters = ObjectPageLayout$SectionChangeEventParameters;
|
|
6362
|
+
|
|
6363
|
+
export type ObjectPageLayout$SectionChangeEvent = Event<ObjectPageLayout$SectionChangeEventParameters>;
|
|
6364
|
+
|
|
6365
|
+
export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
|
|
6341
6366
|
/**
|
|
6342
6367
|
* Object whose keys are the visible SubSection IDs and their values are the SubSection instances
|
|
6343
6368
|
*/
|
|
6344
6369
|
visibleSubSections?: object;
|
|
6345
6370
|
}
|
|
6346
6371
|
|
|
6347
|
-
|
|
6372
|
+
/**
|
|
6373
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$SubSectionVisibilityChangeEventParameters'
|
|
6374
|
+
* in 1.115.1 and any later releases.
|
|
6375
|
+
*/
|
|
6376
|
+
export type $ObjectPageLayoutSubSectionVisibilityChangeEventParameters = ObjectPageLayout$SubSectionVisibilityChangeEventParameters;
|
|
6377
|
+
|
|
6378
|
+
export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<ObjectPageLayout$SubSectionVisibilityChangeEventParameters>;
|
|
6379
|
+
|
|
6380
|
+
export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
|
|
6348
6381
|
/**
|
|
6349
6382
|
* False indicates that the Anchor bar has just detached from the Header and became part of the scrolling
|
|
6350
6383
|
* area. True means that the Anchor bar has just snapped to the Header.
|
|
6351
6384
|
*/
|
|
6352
6385
|
fixed?: boolean;
|
|
6353
6386
|
}
|
|
6387
|
+
|
|
6388
|
+
/**
|
|
6389
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ObjectPageLayout$ToggleAnchorBarEventParameters'
|
|
6390
|
+
* in 1.115.1 and any later releases.
|
|
6391
|
+
*/
|
|
6392
|
+
export type $ObjectPageLayoutToggleAnchorBarEventParameters = ObjectPageLayout$ToggleAnchorBarEventParameters;
|
|
6393
|
+
|
|
6394
|
+
export type ObjectPageLayout$ToggleAnchorBarEvent = Event<ObjectPageLayout$ToggleAnchorBarEventParameters>;
|
|
6354
6395
|
}
|
|
6355
6396
|
|
|
6356
6397
|
declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
@@ -6363,7 +6404,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6363
6404
|
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6364
6405
|
|
|
6365
6406
|
/**
|
|
6366
|
-
* @
|
|
6407
|
+
* @since 1.38
|
|
6367
6408
|
*
|
|
6368
6409
|
* A helper element that enables a "stashed-based" lazy loading approach for the content of the {@link sap.uxap.ObjectPageSubSection }
|
|
6369
6410
|
* control.
|
|
@@ -6378,7 +6419,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6378
6419
|
*
|
|
6379
6420
|
* **Note:** Subsections are required to have an ID when used with `ObjectPageLazyLoader`.
|
|
6380
6421
|
*/
|
|
6381
|
-
class ObjectPageLazyLoader extends UI5Element {
|
|
6422
|
+
export default class ObjectPageLazyLoader extends UI5Element {
|
|
6382
6423
|
/**
|
|
6383
6424
|
* Constructor for a new `ObjectPageLazyLoader`.
|
|
6384
6425
|
*
|
|
@@ -6511,7 +6552,6 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6511
6552
|
vContent: int | string | Control
|
|
6512
6553
|
): Control | null;
|
|
6513
6554
|
}
|
|
6514
|
-
export default ObjectPageLazyLoader;
|
|
6515
6555
|
|
|
6516
6556
|
export interface $ObjectPageLazyLoaderSettings extends $ElementSettings {
|
|
6517
6557
|
/**
|
|
@@ -6541,7 +6581,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6541
6581
|
} from "sap/ui/base/ManagedObject";
|
|
6542
6582
|
|
|
6543
6583
|
/**
|
|
6544
|
-
* @
|
|
6584
|
+
* @since 1.26
|
|
6545
6585
|
*
|
|
6546
6586
|
* Top-level information container of an {@link sap.uxap.ObjectPageLayout}.
|
|
6547
6587
|
*
|
|
@@ -6549,7 +6589,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6549
6589
|
*
|
|
6550
6590
|
* **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
|
|
6551
6591
|
*/
|
|
6552
|
-
class ObjectPageSection extends ObjectPageSectionBase {
|
|
6592
|
+
export default class ObjectPageSection extends ObjectPageSectionBase {
|
|
6553
6593
|
/**
|
|
6554
6594
|
* Constructor for a new `ObjectPageSection`.
|
|
6555
6595
|
*
|
|
@@ -6622,7 +6662,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6622
6662
|
oSubSection: ObjectPageSubSection
|
|
6623
6663
|
): this;
|
|
6624
6664
|
/**
|
|
6625
|
-
* @
|
|
6665
|
+
* @since 1.106
|
|
6626
6666
|
*
|
|
6627
6667
|
* Destroys the heading in the aggregation {@link #getHeading heading}.
|
|
6628
6668
|
*
|
|
@@ -6636,7 +6676,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6636
6676
|
*/
|
|
6637
6677
|
destroySubSections(): this;
|
|
6638
6678
|
/**
|
|
6639
|
-
* @
|
|
6679
|
+
* @since 1.106
|
|
6640
6680
|
*
|
|
6641
6681
|
* Gets content of aggregation {@link #getHeading heading}.
|
|
6642
6682
|
*
|
|
@@ -6735,7 +6775,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6735
6775
|
vSubSection: int | string | ObjectPageSubSection
|
|
6736
6776
|
): ObjectPageSubSection | null;
|
|
6737
6777
|
/**
|
|
6738
|
-
* @
|
|
6778
|
+
* @since 1.106
|
|
6739
6779
|
*
|
|
6740
6780
|
* Sets the aggregated {@link #getHeading heading}.
|
|
6741
6781
|
*
|
|
@@ -6811,7 +6851,6 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6811
6851
|
bWrapTitle?: boolean
|
|
6812
6852
|
): this;
|
|
6813
6853
|
}
|
|
6814
|
-
export default ObjectPageSection;
|
|
6815
6854
|
|
|
6816
6855
|
export interface $ObjectPageSectionSettings
|
|
6817
6856
|
extends $ObjectPageSectionBaseSettings {
|
|
@@ -6840,7 +6879,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6840
6879
|
| `{${string}}`;
|
|
6841
6880
|
|
|
6842
6881
|
/**
|
|
6843
|
-
* @
|
|
6882
|
+
* @since 1.106
|
|
6844
6883
|
*
|
|
6845
6884
|
* Section heading content.
|
|
6846
6885
|
*
|
|
@@ -6869,11 +6908,11 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6869
6908
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6870
6909
|
|
|
6871
6910
|
/**
|
|
6872
|
-
* @
|
|
6911
|
+
* @since 1.26
|
|
6873
6912
|
*
|
|
6874
6913
|
* An abstract container for sections and subsections in the {@link sap.uxap.ObjectPageLayout}.
|
|
6875
6914
|
*/
|
|
6876
|
-
class ObjectPageSectionBase extends Control {
|
|
6915
|
+
export default class ObjectPageSectionBase extends Control {
|
|
6877
6916
|
/**
|
|
6878
6917
|
* Constructor for a new `ObjectPageSectionBase`.
|
|
6879
6918
|
*
|
|
@@ -6956,7 +6995,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6956
6995
|
*/
|
|
6957
6996
|
getCustomAnchorBarButton(): Button;
|
|
6958
6997
|
/**
|
|
6959
|
-
* @
|
|
6998
|
+
* @since 1.32.0
|
|
6960
6999
|
*
|
|
6961
7000
|
* Gets current value of property {@link #getImportance importance}.
|
|
6962
7001
|
*
|
|
@@ -6968,7 +7007,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6968
7007
|
*/
|
|
6969
7008
|
getImportance(): Importance | keyof typeof Importance;
|
|
6970
7009
|
/**
|
|
6971
|
-
* @
|
|
7010
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6972
7011
|
*
|
|
6973
7012
|
* Returns the control name text.
|
|
6974
7013
|
*
|
|
@@ -6990,7 +7029,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6990
7029
|
*/
|
|
6991
7030
|
getTitle(): string;
|
|
6992
7031
|
/**
|
|
6993
|
-
* @
|
|
7032
|
+
* @since 1.44.0
|
|
6994
7033
|
*
|
|
6995
7034
|
* Gets current value of property {@link #getTitleLevel titleLevel}.
|
|
6996
7035
|
*
|
|
@@ -7029,7 +7068,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7029
7068
|
oCustomAnchorBarButton: Button
|
|
7030
7069
|
): this;
|
|
7031
7070
|
/**
|
|
7032
|
-
* @
|
|
7071
|
+
* @since 1.32.0
|
|
7033
7072
|
*
|
|
7034
7073
|
* Sets a new value for property {@link #getImportance importance}.
|
|
7035
7074
|
*
|
|
@@ -7067,7 +7106,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7067
7106
|
sTitle?: string
|
|
7068
7107
|
): this;
|
|
7069
7108
|
/**
|
|
7070
|
-
* @
|
|
7109
|
+
* @since 1.44.0
|
|
7071
7110
|
*
|
|
7072
7111
|
* Sets a new value for property {@link #getTitleLevel titleLevel}.
|
|
7073
7112
|
*
|
|
@@ -7109,7 +7148,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7109
7148
|
bVisible?: boolean
|
|
7110
7149
|
): this;
|
|
7111
7150
|
/**
|
|
7112
|
-
* @
|
|
7151
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7113
7152
|
*
|
|
7114
7153
|
* Performs the update of the invisible text label. This method is called for example when the section title
|
|
7115
7154
|
* is changed.
|
|
@@ -7118,7 +7157,6 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7118
7157
|
*/
|
|
7119
7158
|
updateInvisibleTextLabelValue(): this;
|
|
7120
7159
|
}
|
|
7121
|
-
export default ObjectPageSectionBase;
|
|
7122
7160
|
|
|
7123
7161
|
export interface $ObjectPageSectionBaseSettings extends $ControlSettings {
|
|
7124
7162
|
/**
|
|
@@ -7131,7 +7169,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7131
7169
|
title?: string | PropertyBindingInfo;
|
|
7132
7170
|
|
|
7133
7171
|
/**
|
|
7134
|
-
* @
|
|
7172
|
+
* @since 1.44.0
|
|
7135
7173
|
*
|
|
7136
7174
|
* Determines the ARIA level of the `ObjectPageSectionBase` title. The ARIA level is used by assisting technologies,
|
|
7137
7175
|
* such as screen readers, to create a hierarchical site map for faster navigation.
|
|
@@ -7152,7 +7190,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7152
7190
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7153
7191
|
|
|
7154
7192
|
/**
|
|
7155
|
-
* @
|
|
7193
|
+
* @since 1.32.0
|
|
7156
7194
|
*
|
|
7157
7195
|
* Determines whether the section will be hidden on low resolutions.
|
|
7158
7196
|
*/
|
|
@@ -7193,7 +7231,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7193
7231
|
} from "sap/ui/base/ManagedObject";
|
|
7194
7232
|
|
|
7195
7233
|
/**
|
|
7196
|
-
* @
|
|
7234
|
+
* @since 1.26
|
|
7197
7235
|
*
|
|
7198
7236
|
* Second-level information container of an {@link sap.uxap.ObjectPageLayout}.
|
|
7199
7237
|
*
|
|
@@ -7209,7 +7247,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7209
7247
|
*
|
|
7210
7248
|
* **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
|
|
7211
7249
|
*/
|
|
7212
|
-
class ObjectPageSubSection extends ObjectPageSectionBase {
|
|
7250
|
+
export default class ObjectPageSubSection extends ObjectPageSectionBase {
|
|
7213
7251
|
/**
|
|
7214
7252
|
* Constructor for a new `ObjectPageSubSection`.
|
|
7215
7253
|
*
|
|
@@ -7377,7 +7415,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7377
7415
|
*/
|
|
7378
7416
|
getMoreBlocks(): Control[];
|
|
7379
7417
|
/**
|
|
7380
|
-
* @
|
|
7418
|
+
* @since 1.77
|
|
7381
7419
|
*
|
|
7382
7420
|
* Gets current value of property {@link #getShowTitle showTitle}.
|
|
7383
7421
|
*
|
|
@@ -7568,7 +7606,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7568
7606
|
sMode?: ObjectPageSubSectionMode | keyof typeof ObjectPageSubSectionMode
|
|
7569
7607
|
): this;
|
|
7570
7608
|
/**
|
|
7571
|
-
* @
|
|
7609
|
+
* @since 1.77
|
|
7572
7610
|
*
|
|
7573
7611
|
* Sets a new value for property {@link #getShowTitle showTitle}.
|
|
7574
7612
|
*
|
|
@@ -7609,12 +7647,11 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7609
7647
|
bTitleUppercase?: boolean
|
|
7610
7648
|
): this;
|
|
7611
7649
|
}
|
|
7612
|
-
export default ObjectPageSubSection;
|
|
7613
7650
|
|
|
7614
7651
|
export interface $ObjectPageSubSectionSettings
|
|
7615
7652
|
extends $ObjectPageSectionBaseSettings {
|
|
7616
7653
|
/**
|
|
7617
|
-
* @
|
|
7654
|
+
* @since 1.77
|
|
7618
7655
|
*
|
|
7619
7656
|
* Determines whether to display the `SubSection` title or not.
|
|
7620
7657
|
*
|