@openui5/types 1.120.6 → 1.120.8
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 +1484 -843
- package/types/sap.m.d.ts +12919 -8169
- package/types/sap.tnt.d.ts +190 -95
- package/types/sap.ui.codeeditor.d.ts +46 -17
- package/types/sap.ui.commons.d.ts +1992 -668
- package/types/sap.ui.core.d.ts +5281 -3347
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +95 -46
- package/types/sap.ui.integration.d.ts +446 -387
- package/types/sap.ui.layout.d.ts +1116 -634
- package/types/sap.ui.mdc.d.ts +1907 -1277
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +42 -10
- package/types/sap.ui.support.d.ts +31 -23
- package/types/sap.ui.table.d.ts +898 -616
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1834 -1207
- package/types/sap.ui.ux3.d.ts +1279 -477
- package/types/sap.ui.webc.common.d.ts +7 -5
- package/types/sap.ui.webc.fiori.d.ts +836 -213
- package/types/sap.ui.webc.main.d.ts +2670 -591
- package/types/sap.uxap.d.ts +571 -316
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.8
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -28,8 +28,6 @@ declare module "sap/uxap/library" {
|
|
|
28
28
|
OneColumn = "OneColumn",
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
|
-
* @since 1.52
|
|
32
|
-
*
|
|
33
31
|
* Interface for controls that are eligible for the `headerContent` aggregation of the `{@link sap.uxap.ObjectPageLayout}`.
|
|
34
32
|
*
|
|
35
33
|
* Controls that implement this interface:
|
|
@@ -43,14 +41,14 @@ declare module "sap/uxap/library" {
|
|
|
43
41
|
* For details regarding the differences and similarities between the available headers, see {@link https://ui5.sap.com/#/topic/9c9d94fd28284539a9a5a57e9caf82a8 Object Page Headers Comparison}.
|
|
44
42
|
* See:
|
|
45
43
|
* {@link https://ui5.sap.com/#/topic/d2ef0099542d44dc868719d908e576d0 Object Page Headers}
|
|
44
|
+
*
|
|
45
|
+
* @since 1.52
|
|
46
46
|
*/
|
|
47
47
|
export interface IHeaderContent {
|
|
48
48
|
__implements__sap_uxap_IHeaderContent: boolean;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* @since 1.52
|
|
53
|
-
*
|
|
54
52
|
* Interface for controls that are eligible for the `headerTitle` aggregation of the `{@link sap.uxap.ObjectPageLayout}`.
|
|
55
53
|
*
|
|
56
54
|
* Controls that implement this interface:
|
|
@@ -63,15 +61,17 @@ declare module "sap/uxap/library" {
|
|
|
63
61
|
* For details regarding the differences and similarities between the available headers, see {@link https://ui5.sap.com/#/topic/9c9d94fd28284539a9a5a57e9caf82a8 Object Page Headers Comparison}.
|
|
64
62
|
* See:
|
|
65
63
|
* {@link https://ui5.sap.com/#/topic/d2ef0099542d44dc868719d908e576d0 Object Page Headers}
|
|
64
|
+
*
|
|
65
|
+
* @since 1.52
|
|
66
66
|
*/
|
|
67
67
|
export interface IHeaderTitle {
|
|
68
68
|
__implements__sap_uxap_IHeaderTitle: boolean;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
|
-
* @since 1.32.0
|
|
73
|
-
*
|
|
74
72
|
* Used by the `ObjectSectionBase` control to define the importance of the content contained in it.
|
|
73
|
+
*
|
|
74
|
+
* @since 1.32.0
|
|
75
75
|
*/
|
|
76
76
|
export enum Importance {
|
|
77
77
|
/**
|
|
@@ -172,8 +172,6 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
172
172
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
173
173
|
|
|
174
174
|
/**
|
|
175
|
-
* @since 1.26
|
|
176
|
-
*
|
|
177
175
|
* Displays the titles of the sections and subsections in the {@link sap.uxap.ObjectPageLayout ObjectPageLayout }
|
|
178
176
|
* and allows the user to scroll to the respective content.
|
|
179
177
|
*
|
|
@@ -182,6 +180,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
182
180
|
* The `AnchorBar` is internally generated as a menu in the `ObjectPageLayout`. It displays the sections
|
|
183
181
|
* and subsections and allows the user to directly scroll to the respective content by selecting them, while
|
|
184
182
|
* it remains visible at the top of the page (below the page header).
|
|
183
|
+
*
|
|
184
|
+
* @since 1.26
|
|
185
185
|
*/
|
|
186
186
|
export default class AnchorBar extends Toolbar {
|
|
187
187
|
/**
|
|
@@ -225,6 +225,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
225
225
|
*
|
|
226
226
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Toolbar.extend}.
|
|
227
227
|
*
|
|
228
|
+
*
|
|
228
229
|
* @returns Created class / constructor function
|
|
229
230
|
*/
|
|
230
231
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -245,14 +246,15 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
245
246
|
/**
|
|
246
247
|
* Returns a metadata object for class sap.uxap.AnchorBar.
|
|
247
248
|
*
|
|
249
|
+
*
|
|
248
250
|
* @returns Metadata object describing this class
|
|
249
251
|
*/
|
|
250
252
|
static getMetadata(): ElementMetadata;
|
|
251
253
|
/**
|
|
252
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
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.
|
|
256
|
+
*
|
|
257
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
256
258
|
*/
|
|
257
259
|
enhanceAccessibilityState(
|
|
258
260
|
/**
|
|
@@ -265,8 +267,6 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
265
267
|
mAriaProps: object
|
|
266
268
|
): void;
|
|
267
269
|
/**
|
|
268
|
-
* @since 1.58
|
|
269
|
-
*
|
|
270
270
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
271
271
|
*
|
|
272
272
|
* Determines the background color of the `AnchorBar`.
|
|
@@ -274,12 +274,15 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
274
274
|
* **Note:** The default value of `backgroundDesign` property is null. If the property is not set, the color
|
|
275
275
|
* of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
276
276
|
*
|
|
277
|
+
* @since 1.58
|
|
278
|
+
*
|
|
277
279
|
* @returns Value of property `backgroundDesign`
|
|
278
280
|
*/
|
|
279
281
|
getBackgroundDesign(): BackgroundDesign | keyof typeof BackgroundDesign;
|
|
280
282
|
/**
|
|
281
283
|
* Returns an sap.ui.core.delegate.ScrollEnablement object used to handle scrolling.
|
|
282
284
|
*
|
|
285
|
+
*
|
|
283
286
|
* @returns The `sap.ui.core.delegate.ScrollEnablement` instance
|
|
284
287
|
*/
|
|
285
288
|
getScrollDelegate(): ScrollEnablement;
|
|
@@ -296,6 +299,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
296
299
|
*
|
|
297
300
|
* Default value is `true`.
|
|
298
301
|
*
|
|
302
|
+
*
|
|
299
303
|
* @returns Value of property `showPopover`
|
|
300
304
|
*/
|
|
301
305
|
getShowPopover(): boolean;
|
|
@@ -306,6 +310,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
306
310
|
*
|
|
307
311
|
* Default value is `false`.
|
|
308
312
|
*
|
|
313
|
+
*
|
|
309
314
|
* @returns Value of property `upperCase`
|
|
310
315
|
*/
|
|
311
316
|
getUpperCase(): boolean;
|
|
@@ -327,8 +332,6 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
327
332
|
iDuration?: int
|
|
328
333
|
): void;
|
|
329
334
|
/**
|
|
330
|
-
* @since 1.58
|
|
331
|
-
*
|
|
332
335
|
* Sets a new value for property {@link #getBackgroundDesign backgroundDesign}.
|
|
333
336
|
*
|
|
334
337
|
* Determines the background color of the `AnchorBar`.
|
|
@@ -338,6 +341,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
338
341
|
*
|
|
339
342
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
340
343
|
*
|
|
344
|
+
* @since 1.58
|
|
345
|
+
*
|
|
341
346
|
* @returns Reference to `this` in order to allow method chaining
|
|
342
347
|
*/
|
|
343
348
|
setBackgroundDesign(
|
|
@@ -349,6 +354,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
349
354
|
/**
|
|
350
355
|
* Sets the associated {@link #getSelectedButton selectedButton}.
|
|
351
356
|
*
|
|
357
|
+
*
|
|
352
358
|
* @returns Reference to `this` in order to allow method chaining
|
|
353
359
|
*/
|
|
354
360
|
setSelectedButton(
|
|
@@ -368,6 +374,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
368
374
|
*
|
|
369
375
|
* Default value is `true`.
|
|
370
376
|
*
|
|
377
|
+
*
|
|
371
378
|
* @returns Reference to `this` in order to allow method chaining
|
|
372
379
|
*/
|
|
373
380
|
setShowPopover(
|
|
@@ -385,6 +392,7 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
385
392
|
*
|
|
386
393
|
* Default value is `false`.
|
|
387
394
|
*
|
|
395
|
+
*
|
|
388
396
|
* @returns Reference to `this` in order to allow method chaining
|
|
389
397
|
*/
|
|
390
398
|
setUpperCase(
|
|
@@ -408,12 +416,12 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
408
416
|
upperCase?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
409
417
|
|
|
410
418
|
/**
|
|
411
|
-
* @since 1.58
|
|
412
|
-
*
|
|
413
419
|
* Determines the background color of the `AnchorBar`.
|
|
414
420
|
*
|
|
415
421
|
* **Note:** The default value of `backgroundDesign` property is null. If the property is not set, the color
|
|
416
422
|
* of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
423
|
+
*
|
|
424
|
+
* @since 1.58
|
|
417
425
|
*/
|
|
418
426
|
backgroundDesign?:
|
|
419
427
|
| (BackgroundDesign | keyof typeof BackgroundDesign)
|
|
@@ -451,8 +459,6 @@ declare module "sap/uxap/BlockBase" {
|
|
|
451
459
|
import Event from "sap/ui/base/Event";
|
|
452
460
|
|
|
453
461
|
/**
|
|
454
|
-
* @since 1.26
|
|
455
|
-
*
|
|
456
462
|
* The main element that holds the content that is displayed in an {@link sap.uxap.ObjectPageLayout ObjectPageLayout},
|
|
457
463
|
* but not necessarily only there.
|
|
458
464
|
*
|
|
@@ -469,6 +475,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
469
475
|
* attribute (so that the controller can interact with the block). The `oParentBlock` is firstly available
|
|
470
476
|
* in `onParentBlockModeChange` method. If the controller implements the `onParentBlockModeChange` method,
|
|
471
477
|
* this method will be called with the `sMode` parameter when the view is used or reused by the block.
|
|
478
|
+
*
|
|
479
|
+
* @since 1.26
|
|
472
480
|
*/
|
|
473
481
|
export default class BlockBase extends Control {
|
|
474
482
|
/**
|
|
@@ -514,6 +522,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
514
522
|
*
|
|
515
523
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
516
524
|
*
|
|
525
|
+
*
|
|
517
526
|
* @returns Created class / constructor function
|
|
518
527
|
*/
|
|
519
528
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -534,12 +543,14 @@ declare module "sap/uxap/BlockBase" {
|
|
|
534
543
|
/**
|
|
535
544
|
* Returns a metadata object for class sap.uxap.BlockBase.
|
|
536
545
|
*
|
|
546
|
+
*
|
|
537
547
|
* @returns Metadata object describing this class
|
|
538
548
|
*/
|
|
539
549
|
static getMetadata(): ElementMetadata;
|
|
540
550
|
/**
|
|
541
551
|
* Adds some mapping to the aggregation {@link #getMappings mappings}.
|
|
542
552
|
*
|
|
553
|
+
*
|
|
543
554
|
* @returns Reference to `this` in order to allow method chaining
|
|
544
555
|
*/
|
|
545
556
|
addMapping(
|
|
@@ -549,8 +560,6 @@ declare module "sap/uxap/BlockBase" {
|
|
|
549
560
|
oMapping: ModelMapping
|
|
550
561
|
): this;
|
|
551
562
|
/**
|
|
552
|
-
* @since 1.72
|
|
553
|
-
*
|
|
554
563
|
* Attaches event handler `fnFunction` to the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
555
564
|
*
|
|
556
565
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -558,6 +567,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
558
567
|
*
|
|
559
568
|
* Fired when an aggregated view is instantiated.
|
|
560
569
|
*
|
|
570
|
+
* @since 1.72
|
|
571
|
+
*
|
|
561
572
|
* @returns Reference to `this` in order to allow method chaining
|
|
562
573
|
*/
|
|
563
574
|
attachViewInit(
|
|
@@ -576,8 +587,6 @@ declare module "sap/uxap/BlockBase" {
|
|
|
576
587
|
oListener?: object
|
|
577
588
|
): this;
|
|
578
589
|
/**
|
|
579
|
-
* @since 1.72
|
|
580
|
-
*
|
|
581
590
|
* Attaches event handler `fnFunction` to the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
582
591
|
*
|
|
583
592
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -585,6 +594,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
585
594
|
*
|
|
586
595
|
* Fired when an aggregated view is instantiated.
|
|
587
596
|
*
|
|
597
|
+
* @since 1.72
|
|
598
|
+
*
|
|
588
599
|
* @returns Reference to `this` in order to allow method chaining
|
|
589
600
|
*/
|
|
590
601
|
attachViewInit(
|
|
@@ -598,10 +609,10 @@ declare module "sap/uxap/BlockBase" {
|
|
|
598
609
|
oListener?: object
|
|
599
610
|
): this;
|
|
600
611
|
/**
|
|
601
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
602
|
-
*
|
|
603
612
|
* Creates a view.
|
|
604
613
|
*
|
|
614
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
615
|
+
*
|
|
605
616
|
* @returns A promise on the created view.
|
|
606
617
|
*/
|
|
607
618
|
createView(
|
|
@@ -617,16 +628,17 @@ declare module "sap/uxap/BlockBase" {
|
|
|
617
628
|
/**
|
|
618
629
|
* Destroys all the mappings in the aggregation {@link #getMappings mappings}.
|
|
619
630
|
*
|
|
631
|
+
*
|
|
620
632
|
* @returns Reference to `this` in order to allow method chaining
|
|
621
633
|
*/
|
|
622
634
|
destroyMappings(): this;
|
|
623
635
|
/**
|
|
624
|
-
* @since 1.72
|
|
625
|
-
*
|
|
626
636
|
* Detaches event handler `fnFunction` from the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
627
637
|
*
|
|
628
638
|
* The passed function and listener object must match the ones used for event registration.
|
|
629
639
|
*
|
|
640
|
+
* @since 1.72
|
|
641
|
+
*
|
|
630
642
|
* @returns Reference to `this` in order to allow method chaining
|
|
631
643
|
*/
|
|
632
644
|
detachViewInit(
|
|
@@ -640,11 +652,11 @@ declare module "sap/uxap/BlockBase" {
|
|
|
640
652
|
oListener?: object
|
|
641
653
|
): this;
|
|
642
654
|
/**
|
|
655
|
+
* Fires event {@link #event:viewInit viewInit} to attached listeners.
|
|
656
|
+
*
|
|
643
657
|
* @since 1.72
|
|
644
658
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
645
659
|
*
|
|
646
|
-
* Fires event {@link #event:viewInit viewInit} to attached listeners.
|
|
647
|
-
*
|
|
648
660
|
* @returns Reference to `this` in order to allow method chaining
|
|
649
661
|
*/
|
|
650
662
|
fireViewInit(
|
|
@@ -661,6 +673,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
661
673
|
*
|
|
662
674
|
* Default value is `"auto"`.
|
|
663
675
|
*
|
|
676
|
+
*
|
|
664
677
|
* @returns Value of property `columnLayout`
|
|
665
678
|
*/
|
|
666
679
|
getColumnLayout(): BlockBaseColumnLayout;
|
|
@@ -675,6 +688,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
675
688
|
*
|
|
676
689
|
* Default value is `BlockColumns`.
|
|
677
690
|
*
|
|
691
|
+
*
|
|
678
692
|
* @returns Value of property `formAdjustment`
|
|
679
693
|
*/
|
|
680
694
|
getFormAdjustment():
|
|
@@ -694,6 +708,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
694
708
|
* {@link sap.uxap.ObjectPageSubSection SubSection}. The `mode` property of `BlockBase` changes when the
|
|
695
709
|
* `mode` property of `ObjectPageSubSection` changes.
|
|
696
710
|
*
|
|
711
|
+
*
|
|
697
712
|
* @returns Value of property `mode`
|
|
698
713
|
*/
|
|
699
714
|
getMode(): string;
|
|
@@ -712,6 +727,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
712
727
|
*
|
|
713
728
|
* Default value is `false`.
|
|
714
729
|
*
|
|
730
|
+
*
|
|
715
731
|
* @returns Value of property `showSubSectionMore`
|
|
716
732
|
*/
|
|
717
733
|
getShowSubSectionMore(): boolean;
|
|
@@ -722,6 +738,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
722
738
|
*
|
|
723
739
|
* Default value is `true`.
|
|
724
740
|
*
|
|
741
|
+
*
|
|
725
742
|
* @returns Value of property `visible`
|
|
726
743
|
*/
|
|
727
744
|
getVisible(): boolean;
|
|
@@ -729,6 +746,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
729
746
|
* Checks for the provided `sap.uxap.ModelMapping` in the aggregation {@link #getMappings mappings}. and
|
|
730
747
|
* returns its index if found or -1 otherwise.
|
|
731
748
|
*
|
|
749
|
+
*
|
|
732
750
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
733
751
|
*/
|
|
734
752
|
indexOfMapping(
|
|
@@ -740,6 +758,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
740
758
|
/**
|
|
741
759
|
* Inserts a mapping into the aggregation {@link #getMappings mappings}.
|
|
742
760
|
*
|
|
761
|
+
*
|
|
743
762
|
* @returns Reference to `this` in order to allow method chaining
|
|
744
763
|
*/
|
|
745
764
|
insertMapping(
|
|
@@ -759,12 +778,14 @@ declare module "sap/uxap/BlockBase" {
|
|
|
759
778
|
*
|
|
760
779
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
761
780
|
*
|
|
781
|
+
*
|
|
762
782
|
* @returns An array of the removed elements (might be empty)
|
|
763
783
|
*/
|
|
764
784
|
removeAllMappings(): ModelMapping[];
|
|
765
785
|
/**
|
|
766
786
|
* Removes a mapping from the aggregation {@link #getMappings mappings}.
|
|
767
787
|
*
|
|
788
|
+
*
|
|
768
789
|
* @returns The removed mapping or `null`
|
|
769
790
|
*/
|
|
770
791
|
removeMapping(
|
|
@@ -776,6 +797,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
776
797
|
/**
|
|
777
798
|
* Set the column layout for this particular block.
|
|
778
799
|
*
|
|
800
|
+
*
|
|
779
801
|
* @returns this
|
|
780
802
|
*/
|
|
781
803
|
setColumnLayout(
|
|
@@ -797,6 +819,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
797
819
|
*
|
|
798
820
|
* Default value is `BlockColumns`.
|
|
799
821
|
*
|
|
822
|
+
*
|
|
800
823
|
* @returns Reference to `this` in order to allow method chaining
|
|
801
824
|
*/
|
|
802
825
|
setFormAdjustment(
|
|
@@ -810,6 +833,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
810
833
|
/**
|
|
811
834
|
* Set the view mode for this particular block.
|
|
812
835
|
*
|
|
836
|
+
*
|
|
813
837
|
* @returns this
|
|
814
838
|
*/
|
|
815
839
|
setMode(
|
|
@@ -821,6 +845,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
821
845
|
/**
|
|
822
846
|
* Sets the associated {@link #getSelectedView selectedView}.
|
|
823
847
|
*
|
|
848
|
+
*
|
|
824
849
|
* @returns Reference to `this` in order to allow method chaining
|
|
825
850
|
*/
|
|
826
851
|
setSelectedView(
|
|
@@ -842,6 +867,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
842
867
|
*
|
|
843
868
|
* Default value is `false`.
|
|
844
869
|
*
|
|
870
|
+
*
|
|
845
871
|
* @returns Reference to `this` in order to allow method chaining
|
|
846
872
|
*/
|
|
847
873
|
setShowSubSectionMore(
|
|
@@ -859,6 +885,7 @@ declare module "sap/uxap/BlockBase" {
|
|
|
859
885
|
*
|
|
860
886
|
* Default value is `true`.
|
|
861
887
|
*
|
|
888
|
+
*
|
|
862
889
|
* @returns Reference to `this` in order to allow method chaining
|
|
863
890
|
*/
|
|
864
891
|
setVisible(
|
|
@@ -929,9 +956,9 @@ declare module "sap/uxap/BlockBase" {
|
|
|
929
956
|
selectedView?: Control | string;
|
|
930
957
|
|
|
931
958
|
/**
|
|
932
|
-
* @since 1.72
|
|
933
|
-
*
|
|
934
959
|
* Fired when an aggregated view is instantiated.
|
|
960
|
+
*
|
|
961
|
+
* @since 1.72
|
|
935
962
|
*/
|
|
936
963
|
viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
|
|
937
964
|
}
|
|
@@ -964,8 +991,6 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
964
991
|
} from "sap/ui/base/ManagedObject";
|
|
965
992
|
|
|
966
993
|
/**
|
|
967
|
-
* @since 1.30
|
|
968
|
-
*
|
|
969
994
|
* Represents the navigation steps up to the current location in the app.
|
|
970
995
|
*
|
|
971
996
|
* Overview:
|
|
@@ -977,6 +1002,8 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
977
1002
|
* - A trail of links followed by separators, when there's enough space for the control to fit on one
|
|
978
1003
|
* line.
|
|
979
1004
|
* - A dropdown list with the links, when the trail of links wouldn't fit on one line.
|
|
1005
|
+
*
|
|
1006
|
+
* @since 1.30
|
|
980
1007
|
*/
|
|
981
1008
|
export default class BreadCrumbs extends Control {
|
|
982
1009
|
/**
|
|
@@ -1016,6 +1043,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1016
1043
|
*
|
|
1017
1044
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1018
1045
|
*
|
|
1046
|
+
*
|
|
1019
1047
|
* @returns Created class / constructor function
|
|
1020
1048
|
*/
|
|
1021
1049
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1036,12 +1064,14 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1036
1064
|
/**
|
|
1037
1065
|
* Returns a metadata object for class sap.uxap.BreadCrumbs.
|
|
1038
1066
|
*
|
|
1067
|
+
*
|
|
1039
1068
|
* @returns Metadata object describing this class
|
|
1040
1069
|
*/
|
|
1041
1070
|
static getMetadata(): ElementMetadata;
|
|
1042
1071
|
/**
|
|
1043
1072
|
* Adds some link to the aggregation {@link #getLinks links}.
|
|
1044
1073
|
*
|
|
1074
|
+
*
|
|
1045
1075
|
* @returns Reference to `this` in order to allow method chaining
|
|
1046
1076
|
*/
|
|
1047
1077
|
addLink(
|
|
@@ -1053,12 +1083,14 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1053
1083
|
/**
|
|
1054
1084
|
* Destroys the currentLocation in the aggregation {@link #getCurrentLocation currentLocation}.
|
|
1055
1085
|
*
|
|
1086
|
+
*
|
|
1056
1087
|
* @returns Reference to `this` in order to allow method chaining
|
|
1057
1088
|
*/
|
|
1058
1089
|
destroyCurrentLocation(): this;
|
|
1059
1090
|
/**
|
|
1060
1091
|
* Destroys all the links in the aggregation {@link #getLinks links}.
|
|
1061
1092
|
*
|
|
1093
|
+
*
|
|
1062
1094
|
* @returns Reference to `this` in order to allow method chaining
|
|
1063
1095
|
*/
|
|
1064
1096
|
destroyLinks(): this;
|
|
@@ -1081,6 +1113,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1081
1113
|
*
|
|
1082
1114
|
* Default value is `true`.
|
|
1083
1115
|
*
|
|
1116
|
+
*
|
|
1084
1117
|
* @returns Value of property `showCurrentLocation`
|
|
1085
1118
|
*/
|
|
1086
1119
|
getShowCurrentLocation(): boolean;
|
|
@@ -1088,6 +1121,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1088
1121
|
* Checks for the provided `sap.m.Link` in the aggregation {@link #getLinks links}. and returns its index
|
|
1089
1122
|
* if found or -1 otherwise.
|
|
1090
1123
|
*
|
|
1124
|
+
*
|
|
1091
1125
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
1092
1126
|
*/
|
|
1093
1127
|
indexOfLink(
|
|
@@ -1099,6 +1133,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1099
1133
|
/**
|
|
1100
1134
|
* Inserts a link into the aggregation {@link #getLinks links}.
|
|
1101
1135
|
*
|
|
1136
|
+
*
|
|
1102
1137
|
* @returns Reference to `this` in order to allow method chaining
|
|
1103
1138
|
*/
|
|
1104
1139
|
insertLink(
|
|
@@ -1118,12 +1153,14 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1118
1153
|
*
|
|
1119
1154
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1120
1155
|
*
|
|
1156
|
+
*
|
|
1121
1157
|
* @returns An array of the removed elements (might be empty)
|
|
1122
1158
|
*/
|
|
1123
1159
|
removeAllLinks(): Link[];
|
|
1124
1160
|
/**
|
|
1125
1161
|
* Removes a link from the aggregation {@link #getLinks links}.
|
|
1126
1162
|
*
|
|
1163
|
+
*
|
|
1127
1164
|
* @returns The removed link or `null`
|
|
1128
1165
|
*/
|
|
1129
1166
|
removeLink(
|
|
@@ -1135,6 +1172,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1135
1172
|
/**
|
|
1136
1173
|
* Sets the aggregated {@link #getCurrentLocation currentLocation}.
|
|
1137
1174
|
*
|
|
1175
|
+
*
|
|
1138
1176
|
* @returns Reference to `this` in order to allow method chaining
|
|
1139
1177
|
*/
|
|
1140
1178
|
setCurrentLocation(
|
|
@@ -1152,6 +1190,7 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1152
1190
|
*
|
|
1153
1191
|
* Default value is `true`.
|
|
1154
1192
|
*
|
|
1193
|
+
*
|
|
1155
1194
|
* @returns Reference to `this` in order to allow method chaining
|
|
1156
1195
|
*/
|
|
1157
1196
|
setShowCurrentLocation(
|
|
@@ -1188,12 +1227,12 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1188
1227
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1189
1228
|
|
|
1190
1229
|
/**
|
|
1191
|
-
* @since 1.26
|
|
1192
|
-
*
|
|
1193
1230
|
* A select that displays items on a hierarchy of 2 levels.
|
|
1194
1231
|
*
|
|
1195
1232
|
* If a provided item has a custom data named `secondLevel`, then it will be displayed as a second level,
|
|
1196
1233
|
* otherwise it would be displayed as a first level.
|
|
1234
|
+
*
|
|
1235
|
+
* @since 1.26
|
|
1197
1236
|
*/
|
|
1198
1237
|
export default class HierarchicalSelect extends Select {
|
|
1199
1238
|
/**
|
|
@@ -1233,6 +1272,7 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1233
1272
|
*
|
|
1234
1273
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Select.extend}.
|
|
1235
1274
|
*
|
|
1275
|
+
*
|
|
1236
1276
|
* @returns Created class / constructor function
|
|
1237
1277
|
*/
|
|
1238
1278
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1253,6 +1293,7 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1253
1293
|
/**
|
|
1254
1294
|
* Returns a metadata object for class sap.uxap.HierarchicalSelect.
|
|
1255
1295
|
*
|
|
1296
|
+
*
|
|
1256
1297
|
* @returns Metadata object describing this class
|
|
1257
1298
|
*/
|
|
1258
1299
|
static getMetadata(): ElementMetadata;
|
|
@@ -1263,6 +1304,7 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1263
1304
|
*
|
|
1264
1305
|
* Default value is `false`.
|
|
1265
1306
|
*
|
|
1307
|
+
*
|
|
1266
1308
|
* @returns Value of property `upperCase`
|
|
1267
1309
|
*/
|
|
1268
1310
|
getUpperCase(): boolean;
|
|
@@ -1275,6 +1317,7 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1275
1317
|
*
|
|
1276
1318
|
* Default value is `false`.
|
|
1277
1319
|
*
|
|
1320
|
+
*
|
|
1278
1321
|
* @returns Reference to `this` in order to allow method chaining
|
|
1279
1322
|
*/
|
|
1280
1323
|
setUpperCase(
|
|
@@ -1301,9 +1344,9 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1301
1344
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1302
1345
|
|
|
1303
1346
|
/**
|
|
1304
|
-
* @since 1.26
|
|
1305
|
-
*
|
|
1306
1347
|
* Defines the entity that will be passed to the {@link sap.uxap.ObjectPageLayout}.
|
|
1348
|
+
*
|
|
1349
|
+
* @since 1.26
|
|
1307
1350
|
*/
|
|
1308
1351
|
export default class ModelMapping extends UI5Element {
|
|
1309
1352
|
/**
|
|
@@ -1343,6 +1386,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1343
1386
|
*
|
|
1344
1387
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1345
1388
|
*
|
|
1389
|
+
*
|
|
1346
1390
|
* @returns Created class / constructor function
|
|
1347
1391
|
*/
|
|
1348
1392
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1363,6 +1407,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1363
1407
|
/**
|
|
1364
1408
|
* Returns a metadata object for class sap.uxap.ModelMapping.
|
|
1365
1409
|
*
|
|
1410
|
+
*
|
|
1366
1411
|
* @returns Metadata object describing this class
|
|
1367
1412
|
*/
|
|
1368
1413
|
static getMetadata(): ElementMetadata;
|
|
@@ -1371,6 +1416,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1371
1416
|
*
|
|
1372
1417
|
* Determines the external model name.
|
|
1373
1418
|
*
|
|
1419
|
+
*
|
|
1374
1420
|
* @returns Value of property `externalModelName`
|
|
1375
1421
|
*/
|
|
1376
1422
|
getExternalModelName(): string;
|
|
@@ -1379,6 +1425,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1379
1425
|
*
|
|
1380
1426
|
* Determines the external path.
|
|
1381
1427
|
*
|
|
1428
|
+
*
|
|
1382
1429
|
* @returns Value of property `externalPath`
|
|
1383
1430
|
*/
|
|
1384
1431
|
getExternalPath(): string;
|
|
@@ -1389,6 +1436,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1389
1436
|
*
|
|
1390
1437
|
* Default value is `"Model"`.
|
|
1391
1438
|
*
|
|
1439
|
+
*
|
|
1392
1440
|
* @returns Value of property `internalModelName`
|
|
1393
1441
|
*/
|
|
1394
1442
|
getInternalModelName(): string;
|
|
@@ -1399,6 +1447,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1399
1447
|
*
|
|
1400
1448
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1401
1449
|
*
|
|
1450
|
+
*
|
|
1402
1451
|
* @returns Reference to `this` in order to allow method chaining
|
|
1403
1452
|
*/
|
|
1404
1453
|
setExternalModelName(
|
|
@@ -1414,6 +1463,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1414
1463
|
*
|
|
1415
1464
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1416
1465
|
*
|
|
1466
|
+
*
|
|
1417
1467
|
* @returns Reference to `this` in order to allow method chaining
|
|
1418
1468
|
*/
|
|
1419
1469
|
setExternalPath(
|
|
@@ -1431,6 +1481,7 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1431
1481
|
*
|
|
1432
1482
|
* Default value is `"Model"`.
|
|
1433
1483
|
*
|
|
1484
|
+
*
|
|
1434
1485
|
* @returns Reference to `this` in order to allow method chaining
|
|
1435
1486
|
*/
|
|
1436
1487
|
setInternalModelName(
|
|
@@ -1469,11 +1520,11 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1469
1520
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
1470
1521
|
|
|
1471
1522
|
/**
|
|
1472
|
-
* @since 1.61
|
|
1473
|
-
*
|
|
1474
1523
|
* Settings for accessible landmarks which can be applied to the container elements of a `sap.uxap.ObjectPageLayout`
|
|
1475
1524
|
* control. These landmarks are used by assistive technologies (such as screenreaders) to provide a meaningful
|
|
1476
1525
|
* page overview.
|
|
1526
|
+
*
|
|
1527
|
+
* @since 1.61
|
|
1477
1528
|
*/
|
|
1478
1529
|
export default class ObjectPageAccessibleLandmarkInfo extends UI5Element {
|
|
1479
1530
|
/**
|
|
@@ -1513,6 +1564,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1513
1564
|
*
|
|
1514
1565
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1515
1566
|
*
|
|
1567
|
+
*
|
|
1516
1568
|
* @returns Created class / constructor function
|
|
1517
1569
|
*/
|
|
1518
1570
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -1533,6 +1585,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1533
1585
|
/**
|
|
1534
1586
|
* Returns a metadata object for class sap.uxap.ObjectPageAccessibleLandmarkInfo.
|
|
1535
1587
|
*
|
|
1588
|
+
*
|
|
1536
1589
|
* @returns Metadata object describing this class
|
|
1537
1590
|
*/
|
|
1538
1591
|
static getMetadata(): ElementMetadata;
|
|
@@ -1545,6 +1598,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1545
1598
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1546
1599
|
* is set.
|
|
1547
1600
|
*
|
|
1601
|
+
*
|
|
1548
1602
|
* @returns Value of property `contentLabel`
|
|
1549
1603
|
*/
|
|
1550
1604
|
getContentLabel(): string;
|
|
@@ -1557,6 +1611,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1557
1611
|
*
|
|
1558
1612
|
* Default value is `"None"`.
|
|
1559
1613
|
*
|
|
1614
|
+
*
|
|
1560
1615
|
* @returns Value of property `contentRole`
|
|
1561
1616
|
*/
|
|
1562
1617
|
getContentRole():
|
|
@@ -1571,6 +1626,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1571
1626
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1572
1627
|
* is set.
|
|
1573
1628
|
*
|
|
1629
|
+
*
|
|
1574
1630
|
* @returns Value of property `footerLabel`
|
|
1575
1631
|
*/
|
|
1576
1632
|
getFooterLabel(): string;
|
|
@@ -1583,6 +1639,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1583
1639
|
*
|
|
1584
1640
|
* Default value is `"Region"`.
|
|
1585
1641
|
*
|
|
1642
|
+
*
|
|
1586
1643
|
* @returns Value of property `footerRole`
|
|
1587
1644
|
*/
|
|
1588
1645
|
getFooterRole():
|
|
@@ -1597,6 +1654,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1597
1654
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1598
1655
|
* is set.
|
|
1599
1656
|
*
|
|
1657
|
+
*
|
|
1600
1658
|
* @returns Value of property `headerLabel`
|
|
1601
1659
|
*/
|
|
1602
1660
|
getHeaderLabel(): string;
|
|
@@ -1609,6 +1667,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1609
1667
|
*
|
|
1610
1668
|
* Default value is `"Banner"`.
|
|
1611
1669
|
*
|
|
1670
|
+
*
|
|
1612
1671
|
* @returns Value of property `headerRole`
|
|
1613
1672
|
*/
|
|
1614
1673
|
getHeaderRole():
|
|
@@ -1623,6 +1682,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1623
1682
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1624
1683
|
* is set.
|
|
1625
1684
|
*
|
|
1685
|
+
*
|
|
1626
1686
|
* @returns Value of property `navigationLabel`
|
|
1627
1687
|
*/
|
|
1628
1688
|
getNavigationLabel(): string;
|
|
@@ -1635,6 +1695,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1635
1695
|
*
|
|
1636
1696
|
* Default value is `"Navigation"`.
|
|
1637
1697
|
*
|
|
1698
|
+
*
|
|
1638
1699
|
* @returns Value of property `navigationRole`
|
|
1639
1700
|
*/
|
|
1640
1701
|
getNavigationRole():
|
|
@@ -1649,6 +1710,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1649
1710
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1650
1711
|
* is set.
|
|
1651
1712
|
*
|
|
1713
|
+
*
|
|
1652
1714
|
* @returns Value of property `rootLabel`
|
|
1653
1715
|
*/
|
|
1654
1716
|
getRootLabel(): string;
|
|
@@ -1661,6 +1723,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1661
1723
|
*
|
|
1662
1724
|
* Default value is `"Main"`.
|
|
1663
1725
|
*
|
|
1726
|
+
*
|
|
1664
1727
|
* @returns Value of property `rootRole`
|
|
1665
1728
|
*/
|
|
1666
1729
|
getRootRole(): AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole;
|
|
@@ -1675,6 +1738,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1675
1738
|
*
|
|
1676
1739
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1677
1740
|
*
|
|
1741
|
+
*
|
|
1678
1742
|
* @returns Reference to `this` in order to allow method chaining
|
|
1679
1743
|
*/
|
|
1680
1744
|
setContentLabel(
|
|
@@ -1694,6 +1758,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1694
1758
|
*
|
|
1695
1759
|
* Default value is `"None"`.
|
|
1696
1760
|
*
|
|
1761
|
+
*
|
|
1697
1762
|
* @returns Reference to `this` in order to allow method chaining
|
|
1698
1763
|
*/
|
|
1699
1764
|
setContentRole(
|
|
@@ -1715,6 +1780,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1715
1780
|
*
|
|
1716
1781
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1717
1782
|
*
|
|
1783
|
+
*
|
|
1718
1784
|
* @returns Reference to `this` in order to allow method chaining
|
|
1719
1785
|
*/
|
|
1720
1786
|
setFooterLabel(
|
|
@@ -1734,6 +1800,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1734
1800
|
*
|
|
1735
1801
|
* Default value is `"Region"`.
|
|
1736
1802
|
*
|
|
1803
|
+
*
|
|
1737
1804
|
* @returns Reference to `this` in order to allow method chaining
|
|
1738
1805
|
*/
|
|
1739
1806
|
setFooterRole(
|
|
@@ -1753,6 +1820,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1753
1820
|
*
|
|
1754
1821
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1755
1822
|
*
|
|
1823
|
+
*
|
|
1756
1824
|
* @returns Reference to `this` in order to allow method chaining
|
|
1757
1825
|
*/
|
|
1758
1826
|
setHeaderLabel(
|
|
@@ -1772,6 +1840,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1772
1840
|
*
|
|
1773
1841
|
* Default value is `"Banner"`.
|
|
1774
1842
|
*
|
|
1843
|
+
*
|
|
1775
1844
|
* @returns Reference to `this` in order to allow method chaining
|
|
1776
1845
|
*/
|
|
1777
1846
|
setHeaderRole(
|
|
@@ -1791,6 +1860,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1791
1860
|
*
|
|
1792
1861
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1793
1862
|
*
|
|
1863
|
+
*
|
|
1794
1864
|
* @returns Reference to `this` in order to allow method chaining
|
|
1795
1865
|
*/
|
|
1796
1866
|
setNavigationLabel(
|
|
@@ -1810,6 +1880,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1810
1880
|
*
|
|
1811
1881
|
* Default value is `"Navigation"`.
|
|
1812
1882
|
*
|
|
1883
|
+
*
|
|
1813
1884
|
* @returns Reference to `this` in order to allow method chaining
|
|
1814
1885
|
*/
|
|
1815
1886
|
setNavigationRole(
|
|
@@ -1831,6 +1902,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1831
1902
|
*
|
|
1832
1903
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1833
1904
|
*
|
|
1905
|
+
*
|
|
1834
1906
|
* @returns Reference to `this` in order to allow method chaining
|
|
1835
1907
|
*/
|
|
1836
1908
|
setRootLabel(
|
|
@@ -1850,6 +1922,7 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1850
1922
|
*
|
|
1851
1923
|
* Default value is `"Main"`.
|
|
1852
1924
|
*
|
|
1925
|
+
*
|
|
1853
1926
|
* @returns Reference to `this` in order to allow method chaining
|
|
1854
1927
|
*/
|
|
1855
1928
|
setRootRole(
|
|
@@ -1970,8 +2043,6 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
1970
2043
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
1971
2044
|
|
|
1972
2045
|
/**
|
|
1973
|
-
* @since 1.52
|
|
1974
|
-
*
|
|
1975
2046
|
* Header content for the dynamic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
1976
2047
|
*
|
|
1977
2048
|
* Overview:
|
|
@@ -1984,6 +2055,8 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
1984
2055
|
* Documentation links:
|
|
1985
2056
|
* - {@link https://ui5.sap.com/#/topic/d2ef0099542d44dc868719d908e576d0 Object Page Headers}
|
|
1986
2057
|
* - {@link https://ui5.sap.com/#/topic/6e340c119ddd4c778b315f65a0432420 Object Page Dynamic Header}
|
|
2058
|
+
*
|
|
2059
|
+
* @since 1.52
|
|
1987
2060
|
*/
|
|
1988
2061
|
export default class ObjectPageDynamicHeaderContent
|
|
1989
2062
|
extends DynamicPageHeader
|
|
@@ -2032,6 +2105,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
2032
2105
|
*
|
|
2033
2106
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.f.DynamicPageHeader.extend}.
|
|
2034
2107
|
*
|
|
2108
|
+
*
|
|
2035
2109
|
* @returns Created class / constructor function
|
|
2036
2110
|
*/
|
|
2037
2111
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -2052,6 +2126,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
2052
2126
|
/**
|
|
2053
2127
|
* Returns a metadata object for class sap.uxap.ObjectPageDynamicHeaderContent.
|
|
2054
2128
|
*
|
|
2129
|
+
*
|
|
2055
2130
|
* @returns Metadata object describing this class
|
|
2056
2131
|
*/
|
|
2057
2132
|
static getMetadata(): ElementMetadata;
|
|
@@ -2072,8 +2147,6 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2072
2147
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2073
2148
|
|
|
2074
2149
|
/**
|
|
2075
|
-
* @since 1.52
|
|
2076
|
-
*
|
|
2077
2150
|
* Represents the static part (header title) of the dynamic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
2078
2151
|
*
|
|
2079
2152
|
* Overview:
|
|
@@ -2083,6 +2156,8 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2083
2156
|
*
|
|
2084
2157
|
* **Note:** The `ObjectPageDynamicHeaderTitle` is meant to be used inside the `ObjectPageLayout` control.
|
|
2085
2158
|
* Any other usage is not supported and can lead to unexpected behavior.
|
|
2159
|
+
*
|
|
2160
|
+
* @since 1.52
|
|
2086
2161
|
*/
|
|
2087
2162
|
export default class ObjectPageDynamicHeaderTitle
|
|
2088
2163
|
extends DynamicPageTitle
|
|
@@ -2139,6 +2214,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2139
2214
|
*
|
|
2140
2215
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.f.DynamicPageTitle.extend}.
|
|
2141
2216
|
*
|
|
2217
|
+
*
|
|
2142
2218
|
* @returns Created class / constructor function
|
|
2143
2219
|
*/
|
|
2144
2220
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -2159,6 +2235,7 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
2159
2235
|
/**
|
|
2160
2236
|
* Returns a metadata object for class sap.uxap.ObjectPageDynamicHeaderTitle.
|
|
2161
2237
|
*
|
|
2238
|
+
*
|
|
2162
2239
|
* @returns Metadata object describing this class
|
|
2163
2240
|
*/
|
|
2164
2241
|
static getMetadata(): ElementMetadata;
|
|
@@ -2197,8 +2274,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2197
2274
|
import Event from "sap/ui/base/Event";
|
|
2198
2275
|
|
|
2199
2276
|
/**
|
|
2200
|
-
* @since 1.26
|
|
2201
|
-
*
|
|
2202
2277
|
* Represents the static part (header title) of the classic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
2203
2278
|
*
|
|
2204
2279
|
* Overview:
|
|
@@ -2208,6 +2283,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2208
2283
|
*
|
|
2209
2284
|
* **Note:** The `ObjectPageHeader` is meant to be used inside the `ObjectPageLayout` control. Any other
|
|
2210
2285
|
* usage is not supported and can lead to unexpected behavior.
|
|
2286
|
+
*
|
|
2287
|
+
* @since 1.26
|
|
2211
2288
|
*/
|
|
2212
2289
|
export default class ObjectPageHeader
|
|
2213
2290
|
extends Control
|
|
@@ -2262,6 +2339,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2262
2339
|
*
|
|
2263
2340
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2264
2341
|
*
|
|
2342
|
+
*
|
|
2265
2343
|
* @returns Created class / constructor function
|
|
2266
2344
|
*/
|
|
2267
2345
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -2282,12 +2360,14 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2282
2360
|
/**
|
|
2283
2361
|
* Returns a metadata object for class sap.uxap.ObjectPageHeader.
|
|
2284
2362
|
*
|
|
2363
|
+
*
|
|
2285
2364
|
* @returns Metadata object describing this class
|
|
2286
2365
|
*/
|
|
2287
2366
|
static getMetadata(): ElementMetadata;
|
|
2288
2367
|
/**
|
|
2289
2368
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
2290
2369
|
*
|
|
2370
|
+
*
|
|
2291
2371
|
* @returns Reference to `this` in order to allow method chaining
|
|
2292
2372
|
*/
|
|
2293
2373
|
addAction(
|
|
@@ -2297,10 +2377,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2297
2377
|
oAction: Control
|
|
2298
2378
|
): this;
|
|
2299
2379
|
/**
|
|
2300
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2301
|
-
*
|
|
2302
2380
|
* Adds some breadCrumbLink to the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2303
2381
|
*
|
|
2382
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2383
|
+
*
|
|
2304
2384
|
* @returns Reference to `this` in order to allow method chaining
|
|
2305
2385
|
*/
|
|
2306
2386
|
addBreadCrumbLink(
|
|
@@ -2318,6 +2398,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2318
2398
|
*
|
|
2319
2399
|
* The event is fired when the unsaved changes button is pressed
|
|
2320
2400
|
*
|
|
2401
|
+
*
|
|
2321
2402
|
* @returns Reference to `this` in order to allow method chaining
|
|
2322
2403
|
*/
|
|
2323
2404
|
attachMarkChangesPress(
|
|
@@ -2344,6 +2425,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2344
2425
|
*
|
|
2345
2426
|
* The event is fired when the unsaved changes button is pressed
|
|
2346
2427
|
*
|
|
2428
|
+
*
|
|
2347
2429
|
* @returns Reference to `this` in order to allow method chaining
|
|
2348
2430
|
*/
|
|
2349
2431
|
attachMarkChangesPress(
|
|
@@ -2365,6 +2447,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2365
2447
|
*
|
|
2366
2448
|
* The event is fired when the Locked button is pressed
|
|
2367
2449
|
*
|
|
2450
|
+
*
|
|
2368
2451
|
* @returns Reference to `this` in order to allow method chaining
|
|
2369
2452
|
*/
|
|
2370
2453
|
attachMarkLockedPress(
|
|
@@ -2391,6 +2474,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2391
2474
|
*
|
|
2392
2475
|
* The event is fired when the Locked button is pressed
|
|
2393
2476
|
*
|
|
2477
|
+
*
|
|
2394
2478
|
* @returns Reference to `this` in order to allow method chaining
|
|
2395
2479
|
*/
|
|
2396
2480
|
attachMarkLockedPress(
|
|
@@ -2412,6 +2496,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2412
2496
|
*
|
|
2413
2497
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
2414
2498
|
*
|
|
2499
|
+
*
|
|
2415
2500
|
* @returns Reference to `this` in order to allow method chaining
|
|
2416
2501
|
*/
|
|
2417
2502
|
attachTitleSelectorPress(
|
|
@@ -2438,6 +2523,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2438
2523
|
*
|
|
2439
2524
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
2440
2525
|
*
|
|
2526
|
+
*
|
|
2441
2527
|
* @returns Reference to `this` in order to allow method chaining
|
|
2442
2528
|
*/
|
|
2443
2529
|
attachTitleSelectorPress(
|
|
@@ -2453,44 +2539,46 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2453
2539
|
/**
|
|
2454
2540
|
* Destroys all the actions in the aggregation {@link #getActions actions}.
|
|
2455
2541
|
*
|
|
2542
|
+
*
|
|
2456
2543
|
* @returns Reference to `this` in order to allow method chaining
|
|
2457
2544
|
*/
|
|
2458
2545
|
destroyActions(): this;
|
|
2459
2546
|
/**
|
|
2460
|
-
* @since 1.50
|
|
2461
|
-
*
|
|
2462
2547
|
* Destroys the breadcrumbs in the aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
2463
2548
|
*
|
|
2549
|
+
* @since 1.50
|
|
2550
|
+
*
|
|
2464
2551
|
* @returns Reference to `this` in order to allow method chaining
|
|
2465
2552
|
*/
|
|
2466
2553
|
destroyBreadcrumbs(): this;
|
|
2467
2554
|
/**
|
|
2468
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2469
|
-
*
|
|
2470
2555
|
* Destroys all the breadCrumbsLinks in the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2471
2556
|
*
|
|
2557
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2558
|
+
*
|
|
2472
2559
|
* @returns Reference to `this` in order to allow method chaining
|
|
2473
2560
|
*/
|
|
2474
2561
|
destroyBreadCrumbsLinks(): this;
|
|
2475
2562
|
/**
|
|
2476
2563
|
* Destroys the navigationBar in the aggregation {@link #getNavigationBar navigationBar}.
|
|
2477
2564
|
*
|
|
2565
|
+
*
|
|
2478
2566
|
* @returns Reference to `this` in order to allow method chaining
|
|
2479
2567
|
*/
|
|
2480
2568
|
destroyNavigationBar(): this;
|
|
2481
2569
|
/**
|
|
2482
|
-
* @since 1.38.0
|
|
2483
|
-
*
|
|
2484
2570
|
* Destroys the sideContentButton in the aggregation {@link #getSideContentButton sideContentButton}.
|
|
2485
2571
|
*
|
|
2572
|
+
* @since 1.38.0
|
|
2573
|
+
*
|
|
2486
2574
|
* @returns Reference to `this` in order to allow method chaining
|
|
2487
2575
|
*/
|
|
2488
2576
|
destroySideContentButton(): this;
|
|
2489
2577
|
/**
|
|
2490
|
-
* @since 1.56
|
|
2491
|
-
*
|
|
2492
2578
|
* Destroys the titleSelectorTooltip in the aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
2493
2579
|
*
|
|
2580
|
+
* @since 1.56
|
|
2581
|
+
*
|
|
2494
2582
|
* @returns Reference to `this` in order to allow method chaining
|
|
2495
2583
|
*/
|
|
2496
2584
|
destroyTitleSelectorTooltip(): this;
|
|
@@ -2500,6 +2588,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2500
2588
|
*
|
|
2501
2589
|
* The passed function and listener object must match the ones used for event registration.
|
|
2502
2590
|
*
|
|
2591
|
+
*
|
|
2503
2592
|
* @returns Reference to `this` in order to allow method chaining
|
|
2504
2593
|
*/
|
|
2505
2594
|
detachMarkChangesPress(
|
|
@@ -2518,6 +2607,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2518
2607
|
*
|
|
2519
2608
|
* The passed function and listener object must match the ones used for event registration.
|
|
2520
2609
|
*
|
|
2610
|
+
*
|
|
2521
2611
|
* @returns Reference to `this` in order to allow method chaining
|
|
2522
2612
|
*/
|
|
2523
2613
|
detachMarkLockedPress(
|
|
@@ -2536,6 +2626,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2536
2626
|
*
|
|
2537
2627
|
* The passed function and listener object must match the ones used for event registration.
|
|
2538
2628
|
*
|
|
2629
|
+
*
|
|
2539
2630
|
* @returns Reference to `this` in order to allow method chaining
|
|
2540
2631
|
*/
|
|
2541
2632
|
detachTitleSelectorPress(
|
|
@@ -2549,10 +2640,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2549
2640
|
oListener?: object
|
|
2550
2641
|
): this;
|
|
2551
2642
|
/**
|
|
2552
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2553
|
-
*
|
|
2554
2643
|
* Fires event {@link #event:markChangesPress markChangesPress} to attached listeners.
|
|
2555
2644
|
*
|
|
2645
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2646
|
+
*
|
|
2556
2647
|
* @returns Reference to `this` in order to allow method chaining
|
|
2557
2648
|
*/
|
|
2558
2649
|
fireMarkChangesPress(
|
|
@@ -2562,10 +2653,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2562
2653
|
mParameters?: ObjectPageHeader$MarkChangesPressEventParameters
|
|
2563
2654
|
): this;
|
|
2564
2655
|
/**
|
|
2565
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2566
|
-
*
|
|
2567
2656
|
* Fires event {@link #event:markLockedPress markLockedPress} to attached listeners.
|
|
2568
2657
|
*
|
|
2658
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2659
|
+
*
|
|
2569
2660
|
* @returns Reference to `this` in order to allow method chaining
|
|
2570
2661
|
*/
|
|
2571
2662
|
fireMarkLockedPress(
|
|
@@ -2575,10 +2666,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2575
2666
|
mParameters?: ObjectPageHeader$MarkLockedPressEventParameters
|
|
2576
2667
|
): this;
|
|
2577
2668
|
/**
|
|
2578
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2579
|
-
*
|
|
2580
2669
|
* Fires event {@link #event:titleSelectorPress titleSelectorPress} to attached listeners.
|
|
2581
2670
|
*
|
|
2671
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2672
|
+
*
|
|
2582
2673
|
* @returns Reference to `this` in order to allow method chaining
|
|
2583
2674
|
*/
|
|
2584
2675
|
fireTitleSelectorPress(
|
|
@@ -2600,25 +2691,23 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2600
2691
|
*/
|
|
2601
2692
|
getActions(): Control[];
|
|
2602
2693
|
/**
|
|
2603
|
-
* @since 1.50
|
|
2604
|
-
*
|
|
2605
2694
|
* Gets content of aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
2606
2695
|
*
|
|
2607
2696
|
* The breadcrumbs displayed in the `ObjectPageHeader`. If this aggregation is set, the `breadCrumbsLinks`
|
|
2608
2697
|
* aggregation is omitted.
|
|
2698
|
+
*
|
|
2699
|
+
* @since 1.50
|
|
2609
2700
|
*/
|
|
2610
2701
|
getBreadcrumbs(): Breadcrumbs;
|
|
2611
2702
|
/**
|
|
2612
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2613
|
-
*
|
|
2614
2703
|
* Gets content of aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2615
2704
|
*
|
|
2616
2705
|
* A list of all the active link elements in the BreadCrumbs control.
|
|
2706
|
+
*
|
|
2707
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2617
2708
|
*/
|
|
2618
2709
|
getBreadCrumbsLinks(): Link[];
|
|
2619
2710
|
/**
|
|
2620
|
-
* @deprecated (since 1.40.1)
|
|
2621
|
-
*
|
|
2622
2711
|
* Gets current value of property {@link #getHeaderDesign headerDesign}.
|
|
2623
2712
|
*
|
|
2624
2713
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
@@ -2626,6 +2715,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2626
2715
|
*
|
|
2627
2716
|
* Default value is `Light`.
|
|
2628
2717
|
*
|
|
2718
|
+
* @deprecated (since 1.40.1)
|
|
2719
|
+
*
|
|
2629
2720
|
* @returns Value of property `headerDesign`
|
|
2630
2721
|
*/
|
|
2631
2722
|
getHeaderDesign():
|
|
@@ -2638,6 +2729,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2638
2729
|
*
|
|
2639
2730
|
* Default value is `true`.
|
|
2640
2731
|
*
|
|
2732
|
+
*
|
|
2641
2733
|
* @returns Value of property `isActionAreaAlwaysVisible`
|
|
2642
2734
|
*/
|
|
2643
2735
|
getIsActionAreaAlwaysVisible(): boolean;
|
|
@@ -2648,6 +2740,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2648
2740
|
*
|
|
2649
2741
|
* Default value is `false`.
|
|
2650
2742
|
*
|
|
2743
|
+
*
|
|
2651
2744
|
* @returns Value of property `isObjectIconAlwaysVisible`
|
|
2652
2745
|
*/
|
|
2653
2746
|
getIsObjectIconAlwaysVisible(): boolean;
|
|
@@ -2658,6 +2751,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2658
2751
|
*
|
|
2659
2752
|
* Default value is `true`.
|
|
2660
2753
|
*
|
|
2754
|
+
*
|
|
2661
2755
|
* @returns Value of property `isObjectSubtitleAlwaysVisible`
|
|
2662
2756
|
*/
|
|
2663
2757
|
getIsObjectSubtitleAlwaysVisible(): boolean;
|
|
@@ -2668,12 +2762,11 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2668
2762
|
*
|
|
2669
2763
|
* Default value is `true`.
|
|
2670
2764
|
*
|
|
2765
|
+
*
|
|
2671
2766
|
* @returns Value of property `isObjectTitleAlwaysVisible`
|
|
2672
2767
|
*/
|
|
2673
2768
|
getIsObjectTitleAlwaysVisible(): boolean;
|
|
2674
2769
|
/**
|
|
2675
|
-
* @since 1.34.0
|
|
2676
|
-
*
|
|
2677
2770
|
* Gets current value of property {@link #getMarkChanges markChanges}.
|
|
2678
2771
|
*
|
|
2679
2772
|
* Marks that there are unsaved changes in the objectPageHeader. The markChanges state cannot be used together
|
|
@@ -2681,6 +2774,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2681
2774
|
*
|
|
2682
2775
|
* Default value is `false`.
|
|
2683
2776
|
*
|
|
2777
|
+
* @since 1.34.0
|
|
2778
|
+
*
|
|
2684
2779
|
* @returns Value of property `markChanges`
|
|
2685
2780
|
*/
|
|
2686
2781
|
getMarkChanges(): boolean;
|
|
@@ -2692,6 +2787,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2692
2787
|
*
|
|
2693
2788
|
* Default value is `false`.
|
|
2694
2789
|
*
|
|
2790
|
+
*
|
|
2695
2791
|
* @returns Value of property `markFavorite`
|
|
2696
2792
|
*/
|
|
2697
2793
|
getMarkFavorite(): boolean;
|
|
@@ -2703,6 +2799,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2703
2799
|
*
|
|
2704
2800
|
* Default value is `false`.
|
|
2705
2801
|
*
|
|
2802
|
+
*
|
|
2706
2803
|
* @returns Value of property `markFlagged`
|
|
2707
2804
|
*/
|
|
2708
2805
|
getMarkFlagged(): boolean;
|
|
@@ -2713,6 +2810,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2713
2810
|
*
|
|
2714
2811
|
* Default value is `false`.
|
|
2715
2812
|
*
|
|
2813
|
+
*
|
|
2716
2814
|
* @returns Value of property `markLocked`
|
|
2717
2815
|
*/
|
|
2718
2816
|
getMarkLocked(): boolean;
|
|
@@ -2729,18 +2827,19 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2729
2827
|
*
|
|
2730
2828
|
* Default value is `empty string`.
|
|
2731
2829
|
*
|
|
2830
|
+
*
|
|
2732
2831
|
* @returns Value of property `objectImageAlt`
|
|
2733
2832
|
*/
|
|
2734
2833
|
getObjectImageAlt(): string;
|
|
2735
2834
|
/**
|
|
2736
|
-
* @since 1.73
|
|
2737
|
-
*
|
|
2738
2835
|
* Gets current value of property {@link #getObjectImageBackgroundColor objectImageBackgroundColor}.
|
|
2739
2836
|
*
|
|
2740
2837
|
* Determines the background color of the image placeholder or icon if valid icon URI is provided.
|
|
2741
2838
|
*
|
|
2742
2839
|
* Default value is `Accent6`.
|
|
2743
2840
|
*
|
|
2841
|
+
* @since 1.73
|
|
2842
|
+
*
|
|
2744
2843
|
* @returns Value of property `objectImageBackgroundColor`
|
|
2745
2844
|
*/
|
|
2746
2845
|
getObjectImageBackgroundColor(): AvatarColor | keyof typeof AvatarColor;
|
|
@@ -2752,6 +2851,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2752
2851
|
*
|
|
2753
2852
|
* Default value is `false`.
|
|
2754
2853
|
*
|
|
2854
|
+
*
|
|
2755
2855
|
* @returns Value of property `objectImageDensityAware`
|
|
2756
2856
|
*/
|
|
2757
2857
|
getObjectImageDensityAware(): boolean;
|
|
@@ -2762,6 +2862,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2762
2862
|
*
|
|
2763
2863
|
* Default value is `Square`.
|
|
2764
2864
|
*
|
|
2865
|
+
*
|
|
2765
2866
|
* @returns Value of property `objectImageShape`
|
|
2766
2867
|
*/
|
|
2767
2868
|
getObjectImageShape(): AvatarShape | keyof typeof AvatarShape;
|
|
@@ -2770,6 +2871,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2770
2871
|
*
|
|
2771
2872
|
* The URL of the image, representing the business object
|
|
2772
2873
|
*
|
|
2874
|
+
*
|
|
2773
2875
|
* @returns Value of property `objectImageURI`
|
|
2774
2876
|
*/
|
|
2775
2877
|
getObjectImageURI(): string;
|
|
@@ -2778,6 +2880,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2778
2880
|
*
|
|
2779
2881
|
* The description of the object
|
|
2780
2882
|
*
|
|
2883
|
+
*
|
|
2781
2884
|
* @returns Value of property `objectSubtitle`
|
|
2782
2885
|
*/
|
|
2783
2886
|
getObjectSubtitle(): string;
|
|
@@ -2786,6 +2889,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2786
2889
|
*
|
|
2787
2890
|
* The title of the object
|
|
2788
2891
|
*
|
|
2892
|
+
*
|
|
2789
2893
|
* @returns Value of property `objectTitle`
|
|
2790
2894
|
*/
|
|
2791
2895
|
getObjectTitle(): string;
|
|
@@ -2796,6 +2900,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2796
2900
|
*
|
|
2797
2901
|
* Default value is `false`.
|
|
2798
2902
|
*
|
|
2903
|
+
*
|
|
2799
2904
|
* @returns Value of property `showMarkers`
|
|
2800
2905
|
*/
|
|
2801
2906
|
getShowMarkers(): boolean;
|
|
@@ -2807,6 +2912,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2807
2912
|
*
|
|
2808
2913
|
* Default value is `false`.
|
|
2809
2914
|
*
|
|
2915
|
+
*
|
|
2810
2916
|
* @returns Value of property `showPlaceholder`
|
|
2811
2917
|
*/
|
|
2812
2918
|
getShowPlaceholder(): boolean;
|
|
@@ -2817,20 +2923,19 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2817
2923
|
*
|
|
2818
2924
|
* Default value is `false`.
|
|
2819
2925
|
*
|
|
2926
|
+
*
|
|
2820
2927
|
* @returns Value of property `showTitleSelector`
|
|
2821
2928
|
*/
|
|
2822
2929
|
getShowTitleSelector(): boolean;
|
|
2823
2930
|
/**
|
|
2824
|
-
* @since 1.38.0
|
|
2825
|
-
*
|
|
2826
2931
|
* Gets content of aggregation {@link #getSideContentButton sideContentButton}.
|
|
2827
2932
|
*
|
|
2828
2933
|
* A button that is used for opening the side content of the page or some additional content.
|
|
2934
|
+
*
|
|
2935
|
+
* @since 1.38.0
|
|
2829
2936
|
*/
|
|
2830
2937
|
getSideContentButton(): Button;
|
|
2831
2938
|
/**
|
|
2832
|
-
* @since 1.56
|
|
2833
|
-
*
|
|
2834
2939
|
* Gets content of aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
2835
2940
|
*
|
|
2836
2941
|
* A custom tooltip for the title selector button.
|
|
@@ -2839,12 +2944,15 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2839
2944
|
*
|
|
2840
2945
|
* **Note:** If the aggregation is destroyed or set to invalid value, the default tooltip will be set. The
|
|
2841
2946
|
* default tooltip text is "Related options".
|
|
2947
|
+
*
|
|
2948
|
+
* @since 1.56
|
|
2842
2949
|
*/
|
|
2843
2950
|
getTitleSelectorTooltip(): TooltipBase | string;
|
|
2844
2951
|
/**
|
|
2845
2952
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getActions actions}. and returns
|
|
2846
2953
|
* its index if found or -1 otherwise.
|
|
2847
2954
|
*
|
|
2955
|
+
*
|
|
2848
2956
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2849
2957
|
*/
|
|
2850
2958
|
indexOfAction(
|
|
@@ -2854,11 +2962,11 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2854
2962
|
oAction: Control
|
|
2855
2963
|
): int;
|
|
2856
2964
|
/**
|
|
2857
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2858
|
-
*
|
|
2859
2965
|
* Checks for the provided `sap.m.Link` in the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2860
2966
|
* and returns its index if found or -1 otherwise.
|
|
2861
2967
|
*
|
|
2968
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2969
|
+
*
|
|
2862
2970
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2863
2971
|
*/
|
|
2864
2972
|
indexOfBreadCrumbLink(
|
|
@@ -2870,6 +2978,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2870
2978
|
/**
|
|
2871
2979
|
* Inserts a action into the aggregation {@link #getActions actions}.
|
|
2872
2980
|
*
|
|
2981
|
+
*
|
|
2873
2982
|
* @returns Reference to `this` in order to allow method chaining
|
|
2874
2983
|
*/
|
|
2875
2984
|
insertAction(
|
|
@@ -2885,10 +2994,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2885
2994
|
iIndex: int
|
|
2886
2995
|
): this;
|
|
2887
2996
|
/**
|
|
2888
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2889
|
-
*
|
|
2890
2997
|
* Inserts a breadCrumbLink into the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2891
2998
|
*
|
|
2999
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
3000
|
+
*
|
|
2892
3001
|
* @returns Reference to `this` in order to allow method chaining
|
|
2893
3002
|
*/
|
|
2894
3003
|
insertBreadCrumbLink(
|
|
@@ -2906,6 +3015,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2906
3015
|
/**
|
|
2907
3016
|
* Removes a action from the aggregation {@link #getActions actions}.
|
|
2908
3017
|
*
|
|
3018
|
+
*
|
|
2909
3019
|
* @returns The removed action or `null`
|
|
2910
3020
|
*/
|
|
2911
3021
|
removeAction(
|
|
@@ -2919,24 +3029,25 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2919
3029
|
*
|
|
2920
3030
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2921
3031
|
*
|
|
3032
|
+
*
|
|
2922
3033
|
* @returns An array of the removed elements (might be empty)
|
|
2923
3034
|
*/
|
|
2924
3035
|
removeAllActions(): Control[];
|
|
2925
3036
|
/**
|
|
2926
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2927
|
-
*
|
|
2928
3037
|
* Removes all the controls from the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2929
3038
|
*
|
|
2930
3039
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2931
3040
|
*
|
|
3041
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
3042
|
+
*
|
|
2932
3043
|
* @returns An array of the removed elements (might be empty)
|
|
2933
3044
|
*/
|
|
2934
3045
|
removeAllBreadCrumbsLinks(): Link[];
|
|
2935
3046
|
/**
|
|
2936
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2937
|
-
*
|
|
2938
3047
|
* Removes a breadCrumbLink from the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2939
3048
|
*
|
|
3049
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
3050
|
+
*
|
|
2940
3051
|
* @returns The removed breadCrumbLink or `null`
|
|
2941
3052
|
*/
|
|
2942
3053
|
removeBreadCrumbLink(
|
|
@@ -2946,10 +3057,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2946
3057
|
vBreadCrumbLink: int | string | Link
|
|
2947
3058
|
): Link | null;
|
|
2948
3059
|
/**
|
|
2949
|
-
* @since 1.50
|
|
2950
|
-
*
|
|
2951
3060
|
* Sets the aggregated {@link #getBreadcrumbs breadcrumbs}.
|
|
2952
3061
|
*
|
|
3062
|
+
* @since 1.50
|
|
3063
|
+
*
|
|
2953
3064
|
* @returns Reference to `this` in order to allow method chaining
|
|
2954
3065
|
*/
|
|
2955
3066
|
setBreadcrumbs(
|
|
@@ -2967,6 +3078,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2967
3078
|
*
|
|
2968
3079
|
* Default value is `true`.
|
|
2969
3080
|
*
|
|
3081
|
+
*
|
|
2970
3082
|
* @returns Reference to `this` in order to allow method chaining
|
|
2971
3083
|
*/
|
|
2972
3084
|
setIsActionAreaAlwaysVisible(
|
|
@@ -2984,6 +3096,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2984
3096
|
*
|
|
2985
3097
|
* Default value is `false`.
|
|
2986
3098
|
*
|
|
3099
|
+
*
|
|
2987
3100
|
* @returns Reference to `this` in order to allow method chaining
|
|
2988
3101
|
*/
|
|
2989
3102
|
setIsObjectIconAlwaysVisible(
|
|
@@ -3001,6 +3114,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3001
3114
|
*
|
|
3002
3115
|
* Default value is `true`.
|
|
3003
3116
|
*
|
|
3117
|
+
*
|
|
3004
3118
|
* @returns Reference to `this` in order to allow method chaining
|
|
3005
3119
|
*/
|
|
3006
3120
|
setIsObjectSubtitleAlwaysVisible(
|
|
@@ -3018,6 +3132,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3018
3132
|
*
|
|
3019
3133
|
* Default value is `true`.
|
|
3020
3134
|
*
|
|
3135
|
+
*
|
|
3021
3136
|
* @returns Reference to `this` in order to allow method chaining
|
|
3022
3137
|
*/
|
|
3023
3138
|
setIsObjectTitleAlwaysVisible(
|
|
@@ -3027,8 +3142,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3027
3142
|
bIsObjectTitleAlwaysVisible?: boolean
|
|
3028
3143
|
): this;
|
|
3029
3144
|
/**
|
|
3030
|
-
* @since 1.34.0
|
|
3031
|
-
*
|
|
3032
3145
|
* Sets a new value for property {@link #getMarkChanges markChanges}.
|
|
3033
3146
|
*
|
|
3034
3147
|
* Marks that there are unsaved changes in the objectPageHeader. The markChanges state cannot be used together
|
|
@@ -3038,6 +3151,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3038
3151
|
*
|
|
3039
3152
|
* Default value is `false`.
|
|
3040
3153
|
*
|
|
3154
|
+
* @since 1.34.0
|
|
3155
|
+
*
|
|
3041
3156
|
* @returns Reference to `this` in order to allow method chaining
|
|
3042
3157
|
*/
|
|
3043
3158
|
setMarkChanges(
|
|
@@ -3056,6 +3171,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3056
3171
|
*
|
|
3057
3172
|
* Default value is `false`.
|
|
3058
3173
|
*
|
|
3174
|
+
*
|
|
3059
3175
|
* @returns Reference to `this` in order to allow method chaining
|
|
3060
3176
|
*/
|
|
3061
3177
|
setMarkFavorite(
|
|
@@ -3074,6 +3190,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3074
3190
|
*
|
|
3075
3191
|
* Default value is `false`.
|
|
3076
3192
|
*
|
|
3193
|
+
*
|
|
3077
3194
|
* @returns Reference to `this` in order to allow method chaining
|
|
3078
3195
|
*/
|
|
3079
3196
|
setMarkFlagged(
|
|
@@ -3091,6 +3208,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3091
3208
|
*
|
|
3092
3209
|
* Default value is `false`.
|
|
3093
3210
|
*
|
|
3211
|
+
*
|
|
3094
3212
|
* @returns Reference to `this` in order to allow method chaining
|
|
3095
3213
|
*/
|
|
3096
3214
|
setMarkLocked(
|
|
@@ -3102,6 +3220,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3102
3220
|
/**
|
|
3103
3221
|
* Sets the aggregated {@link #getNavigationBar navigationBar}.
|
|
3104
3222
|
*
|
|
3223
|
+
*
|
|
3105
3224
|
* @returns Reference to `this` in order to allow method chaining
|
|
3106
3225
|
*/
|
|
3107
3226
|
setNavigationBar(
|
|
@@ -3119,6 +3238,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3119
3238
|
*
|
|
3120
3239
|
* Default value is `empty string`.
|
|
3121
3240
|
*
|
|
3241
|
+
*
|
|
3122
3242
|
* @returns Reference to `this` in order to allow method chaining
|
|
3123
3243
|
*/
|
|
3124
3244
|
setObjectImageAlt(
|
|
@@ -3128,8 +3248,6 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3128
3248
|
sObjectImageAlt?: string
|
|
3129
3249
|
): this;
|
|
3130
3250
|
/**
|
|
3131
|
-
* @since 1.73
|
|
3132
|
-
*
|
|
3133
3251
|
* Sets a new value for property {@link #getObjectImageBackgroundColor objectImageBackgroundColor}.
|
|
3134
3252
|
*
|
|
3135
3253
|
* Determines the background color of the image placeholder or icon if valid icon URI is provided.
|
|
@@ -3138,6 +3256,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3138
3256
|
*
|
|
3139
3257
|
* Default value is `Accent6`.
|
|
3140
3258
|
*
|
|
3259
|
+
* @since 1.73
|
|
3260
|
+
*
|
|
3141
3261
|
* @returns Reference to `this` in order to allow method chaining
|
|
3142
3262
|
*/
|
|
3143
3263
|
setObjectImageBackgroundColor(
|
|
@@ -3156,6 +3276,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3156
3276
|
*
|
|
3157
3277
|
* Default value is `false`.
|
|
3158
3278
|
*
|
|
3279
|
+
*
|
|
3159
3280
|
* @returns Reference to `this` in order to allow method chaining
|
|
3160
3281
|
*/
|
|
3161
3282
|
setObjectImageDensityAware(
|
|
@@ -3173,6 +3294,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3173
3294
|
*
|
|
3174
3295
|
* Default value is `Square`.
|
|
3175
3296
|
*
|
|
3297
|
+
*
|
|
3176
3298
|
* @returns Reference to `this` in order to allow method chaining
|
|
3177
3299
|
*/
|
|
3178
3300
|
setObjectImageShape(
|
|
@@ -3188,6 +3310,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3188
3310
|
*
|
|
3189
3311
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3190
3312
|
*
|
|
3313
|
+
*
|
|
3191
3314
|
* @returns Reference to `this` in order to allow method chaining
|
|
3192
3315
|
*/
|
|
3193
3316
|
setObjectImageURI(
|
|
@@ -3203,6 +3326,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3203
3326
|
*
|
|
3204
3327
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3205
3328
|
*
|
|
3329
|
+
*
|
|
3206
3330
|
* @returns Reference to `this` in order to allow method chaining
|
|
3207
3331
|
*/
|
|
3208
3332
|
setObjectSubtitle(
|
|
@@ -3218,6 +3342,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3218
3342
|
*
|
|
3219
3343
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3220
3344
|
*
|
|
3345
|
+
*
|
|
3221
3346
|
* @returns Reference to `this` in order to allow method chaining
|
|
3222
3347
|
*/
|
|
3223
3348
|
setObjectTitle(
|
|
@@ -3235,6 +3360,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3235
3360
|
*
|
|
3236
3361
|
* Default value is `false`.
|
|
3237
3362
|
*
|
|
3363
|
+
*
|
|
3238
3364
|
* @returns Reference to `this` in order to allow method chaining
|
|
3239
3365
|
*/
|
|
3240
3366
|
setShowMarkers(
|
|
@@ -3253,6 +3379,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3253
3379
|
*
|
|
3254
3380
|
* Default value is `false`.
|
|
3255
3381
|
*
|
|
3382
|
+
*
|
|
3256
3383
|
* @returns Reference to `this` in order to allow method chaining
|
|
3257
3384
|
*/
|
|
3258
3385
|
setShowPlaceholder(
|
|
@@ -3270,6 +3397,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3270
3397
|
*
|
|
3271
3398
|
* Default value is `false`.
|
|
3272
3399
|
*
|
|
3400
|
+
*
|
|
3273
3401
|
* @returns Reference to `this` in order to allow method chaining
|
|
3274
3402
|
*/
|
|
3275
3403
|
setShowTitleSelector(
|
|
@@ -3279,10 +3407,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3279
3407
|
bShowTitleSelector?: boolean
|
|
3280
3408
|
): this;
|
|
3281
3409
|
/**
|
|
3282
|
-
* @since 1.38.0
|
|
3283
|
-
*
|
|
3284
3410
|
* Sets the aggregated {@link #getSideContentButton sideContentButton}.
|
|
3285
3411
|
*
|
|
3412
|
+
* @since 1.38.0
|
|
3413
|
+
*
|
|
3286
3414
|
* @returns Reference to `this` in order to allow method chaining
|
|
3287
3415
|
*/
|
|
3288
3416
|
setSideContentButton(
|
|
@@ -3292,10 +3420,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3292
3420
|
oSideContentButton: Button
|
|
3293
3421
|
): this;
|
|
3294
3422
|
/**
|
|
3295
|
-
* @since 1.56
|
|
3296
|
-
*
|
|
3297
3423
|
* Sets the aggregated {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
3298
3424
|
*
|
|
3425
|
+
* @since 1.56
|
|
3426
|
+
*
|
|
3299
3427
|
* @returns Reference to `this` in order to allow method chaining
|
|
3300
3428
|
*/
|
|
3301
3429
|
setTitleSelectorTooltip(
|
|
@@ -3342,9 +3470,9 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3342
3470
|
| `{${string}}`;
|
|
3343
3471
|
|
|
3344
3472
|
/**
|
|
3345
|
-
* @since 1.73
|
|
3346
|
-
*
|
|
3347
3473
|
* Determines the background color of the image placeholder or icon if valid icon URI is provided.
|
|
3474
|
+
*
|
|
3475
|
+
* @since 1.73
|
|
3348
3476
|
*/
|
|
3349
3477
|
objectImageBackgroundColor?:
|
|
3350
3478
|
| (AvatarColor | keyof typeof AvatarColor)
|
|
@@ -3375,10 +3503,10 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3375
3503
|
isActionAreaAlwaysVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3376
3504
|
|
|
3377
3505
|
/**
|
|
3378
|
-
* @deprecated (since 1.40.1)
|
|
3379
|
-
*
|
|
3380
3506
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
3381
3507
|
* to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
|
|
3508
|
+
*
|
|
3509
|
+
* @deprecated (since 1.40.1)
|
|
3382
3510
|
*/
|
|
3383
3511
|
headerDesign?:
|
|
3384
3512
|
| (ObjectPageHeaderDesign | keyof typeof ObjectPageHeaderDesign)
|
|
@@ -3419,25 +3547,25 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3419
3547
|
showPlaceholder?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3420
3548
|
|
|
3421
3549
|
/**
|
|
3422
|
-
* @since 1.34.0
|
|
3423
|
-
*
|
|
3424
3550
|
* Marks that there are unsaved changes in the objectPageHeader. The markChanges state cannot be used together
|
|
3425
3551
|
* with the markLocked state. If both are set to true, only the locked state will be displayed.
|
|
3552
|
+
*
|
|
3553
|
+
* @since 1.34.0
|
|
3426
3554
|
*/
|
|
3427
3555
|
markChanges?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3428
3556
|
|
|
3429
3557
|
/**
|
|
3430
|
-
* @since 1.50
|
|
3431
|
-
*
|
|
3432
3558
|
* The breadcrumbs displayed in the `ObjectPageHeader`. If this aggregation is set, the `breadCrumbsLinks`
|
|
3433
3559
|
* aggregation is omitted.
|
|
3560
|
+
*
|
|
3561
|
+
* @since 1.50
|
|
3434
3562
|
*/
|
|
3435
3563
|
breadcrumbs?: Breadcrumbs;
|
|
3436
3564
|
|
|
3437
3565
|
/**
|
|
3438
|
-
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
3439
|
-
*
|
|
3440
3566
|
* A list of all the active link elements in the BreadCrumbs control.
|
|
3567
|
+
*
|
|
3568
|
+
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
3441
3569
|
*/
|
|
3442
3570
|
breadCrumbsLinks?: Link[] | Link | AggregationBindingInfo | `{${string}}`;
|
|
3443
3571
|
|
|
@@ -3458,21 +3586,21 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3458
3586
|
actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
3459
3587
|
|
|
3460
3588
|
/**
|
|
3461
|
-
* @since 1.38.0
|
|
3462
|
-
*
|
|
3463
3589
|
* A button that is used for opening the side content of the page or some additional content.
|
|
3590
|
+
*
|
|
3591
|
+
* @since 1.38.0
|
|
3464
3592
|
*/
|
|
3465
3593
|
sideContentButton?: Button;
|
|
3466
3594
|
|
|
3467
3595
|
/**
|
|
3468
|
-
* @since 1.56
|
|
3469
|
-
*
|
|
3470
3596
|
* A custom tooltip for the title selector button.
|
|
3471
3597
|
*
|
|
3472
3598
|
* The custom tooltip will be visible if the `showTitleSelector` property is set to `true`.
|
|
3473
3599
|
*
|
|
3474
3600
|
* **Note:** If the aggregation is destroyed or set to invalid value, the default tooltip will be set. The
|
|
3475
3601
|
* default tooltip text is "Related options".
|
|
3602
|
+
*
|
|
3603
|
+
* @since 1.56
|
|
3476
3604
|
*/
|
|
3477
3605
|
titleSelectorTooltip?: string | TooltipBase | PropertyBindingInfo;
|
|
3478
3606
|
|
|
@@ -3543,12 +3671,12 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3543
3671
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3544
3672
|
|
|
3545
3673
|
/**
|
|
3546
|
-
* @since 1.26
|
|
3547
|
-
*
|
|
3548
3674
|
* A Button that is used in the `actions` aggregation of the {@link sap.uxap.ObjectPageHeader}.
|
|
3549
3675
|
*
|
|
3550
3676
|
* The button is designed to be used with {@link sap.uxap.ObjectPageHeader} and any usage outside the intended
|
|
3551
3677
|
* context is not recommended.
|
|
3678
|
+
*
|
|
3679
|
+
* @since 1.26
|
|
3552
3680
|
*/
|
|
3553
3681
|
export default class ObjectPageHeaderActionButton
|
|
3554
3682
|
extends Button
|
|
@@ -3591,6 +3719,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3591
3719
|
*
|
|
3592
3720
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
|
|
3593
3721
|
*
|
|
3722
|
+
*
|
|
3594
3723
|
* @returns Created class / constructor function
|
|
3595
3724
|
*/
|
|
3596
3725
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -3611,6 +3740,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3611
3740
|
/**
|
|
3612
3741
|
* Returns a metadata object for class sap.uxap.ObjectPageHeaderActionButton.
|
|
3613
3742
|
*
|
|
3743
|
+
*
|
|
3614
3744
|
* @returns Metadata object describing this class
|
|
3615
3745
|
*/
|
|
3616
3746
|
static getMetadata(): ElementMetadata;
|
|
@@ -3623,6 +3753,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3623
3753
|
*
|
|
3624
3754
|
* Default value is `false`.
|
|
3625
3755
|
*
|
|
3756
|
+
*
|
|
3626
3757
|
* @returns Value of property `hideIcon`
|
|
3627
3758
|
*/
|
|
3628
3759
|
getHideIcon(): boolean;
|
|
@@ -3635,18 +3766,19 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3635
3766
|
*
|
|
3636
3767
|
* Default value is `true`.
|
|
3637
3768
|
*
|
|
3769
|
+
*
|
|
3638
3770
|
* @returns Value of property `hideText`
|
|
3639
3771
|
*/
|
|
3640
3772
|
getHideText(): boolean;
|
|
3641
3773
|
/**
|
|
3642
|
-
* @since 1.34.0
|
|
3643
|
-
*
|
|
3644
3774
|
* Gets current value of property {@link #getImportance importance}.
|
|
3645
3775
|
*
|
|
3646
3776
|
* Determines the order in which the button overflows.
|
|
3647
3777
|
*
|
|
3648
3778
|
* Default value is `High`.
|
|
3649
3779
|
*
|
|
3780
|
+
* @since 1.34.0
|
|
3781
|
+
*
|
|
3650
3782
|
* @returns Value of property `importance`
|
|
3651
3783
|
*/
|
|
3652
3784
|
getImportance(): Importance | keyof typeof Importance;
|
|
@@ -3661,6 +3793,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3661
3793
|
*
|
|
3662
3794
|
* Default value is `false`.
|
|
3663
3795
|
*
|
|
3796
|
+
*
|
|
3664
3797
|
* @returns Reference to `this` in order to allow method chaining
|
|
3665
3798
|
*/
|
|
3666
3799
|
setHideIcon(
|
|
@@ -3680,6 +3813,7 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3680
3813
|
*
|
|
3681
3814
|
* Default value is `true`.
|
|
3682
3815
|
*
|
|
3816
|
+
*
|
|
3683
3817
|
* @returns Reference to `this` in order to allow method chaining
|
|
3684
3818
|
*/
|
|
3685
3819
|
setHideText(
|
|
@@ -3689,8 +3823,6 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3689
3823
|
bHideText?: boolean
|
|
3690
3824
|
): this;
|
|
3691
3825
|
/**
|
|
3692
|
-
* @since 1.34.0
|
|
3693
|
-
*
|
|
3694
3826
|
* Sets a new value for property {@link #getImportance importance}.
|
|
3695
3827
|
*
|
|
3696
3828
|
* Determines the order in which the button overflows.
|
|
@@ -3699,6 +3831,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3699
3831
|
*
|
|
3700
3832
|
* Default value is `High`.
|
|
3701
3833
|
*
|
|
3834
|
+
* @since 1.34.0
|
|
3835
|
+
*
|
|
3702
3836
|
* @returns Reference to `this` in order to allow method chaining
|
|
3703
3837
|
*/
|
|
3704
3838
|
setImportance(
|
|
@@ -3726,9 +3860,9 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3726
3860
|
hideIcon?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3727
3861
|
|
|
3728
3862
|
/**
|
|
3729
|
-
* @since 1.34.0
|
|
3730
|
-
*
|
|
3731
3863
|
* Determines the order in which the button overflows.
|
|
3864
|
+
*
|
|
3865
|
+
* @since 1.34.0
|
|
3732
3866
|
*/
|
|
3733
3867
|
importance?:
|
|
3734
3868
|
| (Importance | keyof typeof Importance)
|
|
@@ -3750,8 +3884,6 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3750
3884
|
} from "sap/ui/base/ManagedObject";
|
|
3751
3885
|
|
|
3752
3886
|
/**
|
|
3753
|
-
* @since 1.30
|
|
3754
|
-
*
|
|
3755
3887
|
* Header content for the classic header of the {@link sap.uxap.ObjectPageLayout}.
|
|
3756
3888
|
*
|
|
3757
3889
|
* Overview:
|
|
@@ -3765,6 +3897,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3765
3897
|
* - {@link https://ui5.sap.com/#/topic/d2ef0099542d44dc868719d908e576d0 Object Page Headers}
|
|
3766
3898
|
* - {@link https://ui5.sap.com/#/topic/0fecbce45e39406aa939bd25e89823f4 Object Page Classic Header}
|
|
3767
3899
|
* - {@link https://experience.sap.com/fiori-design-web/object-page/ UX Guidelines: Object Page}
|
|
3900
|
+
*
|
|
3901
|
+
* @since 1.30
|
|
3768
3902
|
*/
|
|
3769
3903
|
export default class ObjectPageHeaderContent
|
|
3770
3904
|
extends Control
|
|
@@ -3811,6 +3945,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3811
3945
|
*
|
|
3812
3946
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3813
3947
|
*
|
|
3948
|
+
*
|
|
3814
3949
|
* @returns Created class / constructor function
|
|
3815
3950
|
*/
|
|
3816
3951
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -3831,12 +3966,14 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3831
3966
|
/**
|
|
3832
3967
|
* Returns a metadata object for class sap.uxap.ObjectPageHeaderContent.
|
|
3833
3968
|
*
|
|
3969
|
+
*
|
|
3834
3970
|
* @returns Metadata object describing this class
|
|
3835
3971
|
*/
|
|
3836
3972
|
static getMetadata(): ElementMetadata;
|
|
3837
3973
|
/**
|
|
3838
3974
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
3839
3975
|
*
|
|
3976
|
+
*
|
|
3840
3977
|
* @returns Reference to `this` in order to allow method chaining
|
|
3841
3978
|
*/
|
|
3842
3979
|
addContent(
|
|
@@ -3848,6 +3985,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3848
3985
|
/**
|
|
3849
3986
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
3850
3987
|
*
|
|
3988
|
+
*
|
|
3851
3989
|
* @returns Reference to `this` in order to allow method chaining
|
|
3852
3990
|
*/
|
|
3853
3991
|
destroyContent(): this;
|
|
@@ -3858,8 +3996,6 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3858
3996
|
*/
|
|
3859
3997
|
getContent(): Control[];
|
|
3860
3998
|
/**
|
|
3861
|
-
* @deprecated (since 1.40.1)
|
|
3862
|
-
*
|
|
3863
3999
|
* Gets current value of property {@link #getContentDesign contentDesign}.
|
|
3864
4000
|
*
|
|
3865
4001
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
@@ -3867,6 +4003,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3867
4003
|
*
|
|
3868
4004
|
* Default value is `Light`.
|
|
3869
4005
|
*
|
|
4006
|
+
* @deprecated (since 1.40.1)
|
|
4007
|
+
*
|
|
3870
4008
|
* @returns Value of property `contentDesign`
|
|
3871
4009
|
*/
|
|
3872
4010
|
getContentDesign():
|
|
@@ -3876,6 +4014,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3876
4014
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
3877
4015
|
* its index if found or -1 otherwise.
|
|
3878
4016
|
*
|
|
4017
|
+
*
|
|
3879
4018
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3880
4019
|
*/
|
|
3881
4020
|
indexOfContent(
|
|
@@ -3887,6 +4026,7 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3887
4026
|
/**
|
|
3888
4027
|
* Inserts a content into the aggregation {@link #getContent content}.
|
|
3889
4028
|
*
|
|
4029
|
+
*
|
|
3890
4030
|
* @returns Reference to `this` in order to allow method chaining
|
|
3891
4031
|
*/
|
|
3892
4032
|
insertContent(
|
|
@@ -3906,12 +4046,14 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3906
4046
|
*
|
|
3907
4047
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
3908
4048
|
*
|
|
4049
|
+
*
|
|
3909
4050
|
* @returns An array of the removed elements (might be empty)
|
|
3910
4051
|
*/
|
|
3911
4052
|
removeAllContent(): Control[];
|
|
3912
4053
|
/**
|
|
3913
4054
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
3914
4055
|
*
|
|
4056
|
+
*
|
|
3915
4057
|
* @returns The removed content or `null`
|
|
3916
4058
|
*/
|
|
3917
4059
|
removeContent(
|
|
@@ -3921,8 +4063,6 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3921
4063
|
vContent: int | string | Control
|
|
3922
4064
|
): Control | null;
|
|
3923
4065
|
/**
|
|
3924
|
-
* @deprecated (since 1.40.1)
|
|
3925
|
-
*
|
|
3926
4066
|
* Sets a new value for property {@link #getContentDesign contentDesign}.
|
|
3927
4067
|
*
|
|
3928
4068
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
@@ -3932,6 +4072,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3932
4072
|
*
|
|
3933
4073
|
* Default value is `Light`.
|
|
3934
4074
|
*
|
|
4075
|
+
* @deprecated (since 1.40.1)
|
|
4076
|
+
*
|
|
3935
4077
|
* @returns Reference to `this` in order to allow method chaining
|
|
3936
4078
|
*/
|
|
3937
4079
|
setContentDesign(
|
|
@@ -3946,10 +4088,10 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3946
4088
|
|
|
3947
4089
|
export interface $ObjectPageHeaderContentSettings extends $ControlSettings {
|
|
3948
4090
|
/**
|
|
3949
|
-
* @deprecated (since 1.40.1)
|
|
3950
|
-
*
|
|
3951
4091
|
* Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
|
|
3952
4092
|
* to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
|
|
4093
|
+
*
|
|
4094
|
+
* @deprecated (since 1.40.1)
|
|
3953
4095
|
*/
|
|
3954
4096
|
contentDesign?:
|
|
3955
4097
|
| (ObjectPageHeaderDesign | keyof typeof ObjectPageHeaderDesign)
|
|
@@ -3976,13 +4118,13 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3976
4118
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3977
4119
|
|
|
3978
4120
|
/**
|
|
3979
|
-
* @since 1.26
|
|
3980
|
-
*
|
|
3981
4121
|
* A {@link sap.ui.core.LayoutData} element that can be added to controls used in the `headerContent` aggregation
|
|
3982
4122
|
* of the `ObjectPageLayout`.
|
|
3983
4123
|
*
|
|
3984
4124
|
* **Note:** This element is only taken into account when the `sap.uxap.ObjectPageLayout` control is used
|
|
3985
4125
|
* together with `sap.uxap.ObjectPageHeader` as value of `headerTitle`.
|
|
4126
|
+
*
|
|
4127
|
+
* @since 1.26
|
|
3986
4128
|
*/
|
|
3987
4129
|
export default class ObjectPageHeaderLayoutData extends LayoutData {
|
|
3988
4130
|
/**
|
|
@@ -4022,6 +4164,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4022
4164
|
*
|
|
4023
4165
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
4024
4166
|
*
|
|
4167
|
+
*
|
|
4025
4168
|
* @returns Created class / constructor function
|
|
4026
4169
|
*/
|
|
4027
4170
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -4042,6 +4185,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4042
4185
|
/**
|
|
4043
4186
|
* Returns a metadata object for class sap.uxap.ObjectPageHeaderLayoutData.
|
|
4044
4187
|
*
|
|
4188
|
+
*
|
|
4045
4189
|
* @returns Metadata object describing this class
|
|
4046
4190
|
*/
|
|
4047
4191
|
static getMetadata(): ElementMetadata;
|
|
@@ -4052,6 +4196,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4052
4196
|
*
|
|
4053
4197
|
* Default value is `false`.
|
|
4054
4198
|
*
|
|
4199
|
+
*
|
|
4055
4200
|
* @returns Value of property `showSeparatorAfter`
|
|
4056
4201
|
*/
|
|
4057
4202
|
getShowSeparatorAfter(): boolean;
|
|
@@ -4062,6 +4207,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4062
4207
|
*
|
|
4063
4208
|
* Default value is `false`.
|
|
4064
4209
|
*
|
|
4210
|
+
*
|
|
4065
4211
|
* @returns Value of property `showSeparatorBefore`
|
|
4066
4212
|
*/
|
|
4067
4213
|
getShowSeparatorBefore(): boolean;
|
|
@@ -4072,6 +4218,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4072
4218
|
*
|
|
4073
4219
|
* Default value is `true`.
|
|
4074
4220
|
*
|
|
4221
|
+
*
|
|
4075
4222
|
* @returns Value of property `visibleL`
|
|
4076
4223
|
*/
|
|
4077
4224
|
getVisibleL(): boolean;
|
|
@@ -4082,6 +4229,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4082
4229
|
*
|
|
4083
4230
|
* Default value is `true`.
|
|
4084
4231
|
*
|
|
4232
|
+
*
|
|
4085
4233
|
* @returns Value of property `visibleM`
|
|
4086
4234
|
*/
|
|
4087
4235
|
getVisibleM(): boolean;
|
|
@@ -4092,6 +4240,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4092
4240
|
*
|
|
4093
4241
|
* Default value is `true`.
|
|
4094
4242
|
*
|
|
4243
|
+
*
|
|
4095
4244
|
* @returns Value of property `visibleS`
|
|
4096
4245
|
*/
|
|
4097
4246
|
getVisibleS(): boolean;
|
|
@@ -4102,6 +4251,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4102
4251
|
*
|
|
4103
4252
|
* Default value is `'auto'`.
|
|
4104
4253
|
*
|
|
4254
|
+
*
|
|
4105
4255
|
* @returns Value of property `width`
|
|
4106
4256
|
*/
|
|
4107
4257
|
getWidth(): CSSSize;
|
|
@@ -4114,6 +4264,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4114
4264
|
*
|
|
4115
4265
|
* Default value is `false`.
|
|
4116
4266
|
*
|
|
4267
|
+
*
|
|
4117
4268
|
* @returns Reference to `this` in order to allow method chaining
|
|
4118
4269
|
*/
|
|
4119
4270
|
setShowSeparatorAfter(
|
|
@@ -4131,6 +4282,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4131
4282
|
*
|
|
4132
4283
|
* Default value is `false`.
|
|
4133
4284
|
*
|
|
4285
|
+
*
|
|
4134
4286
|
* @returns Reference to `this` in order to allow method chaining
|
|
4135
4287
|
*/
|
|
4136
4288
|
setShowSeparatorBefore(
|
|
@@ -4148,6 +4300,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4148
4300
|
*
|
|
4149
4301
|
* Default value is `true`.
|
|
4150
4302
|
*
|
|
4303
|
+
*
|
|
4151
4304
|
* @returns Reference to `this` in order to allow method chaining
|
|
4152
4305
|
*/
|
|
4153
4306
|
setVisibleL(
|
|
@@ -4165,6 +4318,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4165
4318
|
*
|
|
4166
4319
|
* Default value is `true`.
|
|
4167
4320
|
*
|
|
4321
|
+
*
|
|
4168
4322
|
* @returns Reference to `this` in order to allow method chaining
|
|
4169
4323
|
*/
|
|
4170
4324
|
setVisibleM(
|
|
@@ -4182,6 +4336,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4182
4336
|
*
|
|
4183
4337
|
* Default value is `true`.
|
|
4184
4338
|
*
|
|
4339
|
+
*
|
|
4185
4340
|
* @returns Reference to `this` in order to allow method chaining
|
|
4186
4341
|
*/
|
|
4187
4342
|
setVisibleS(
|
|
@@ -4199,6 +4354,7 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
4199
4354
|
*
|
|
4200
4355
|
* Default value is `'auto'`.
|
|
4201
4356
|
*
|
|
4357
|
+
*
|
|
4202
4358
|
* @returns Reference to `this` in order to allow method chaining
|
|
4203
4359
|
*/
|
|
4204
4360
|
setWidth(
|
|
@@ -4271,8 +4427,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4271
4427
|
import ObjectPageSubSection from "sap/uxap/ObjectPageSubSection";
|
|
4272
4428
|
|
|
4273
4429
|
/**
|
|
4274
|
-
* @since 1.26
|
|
4275
|
-
*
|
|
4276
4430
|
* A layout that allows apps to easily display information related to a business object.
|
|
4277
4431
|
*
|
|
4278
4432
|
* Overview:
|
|
@@ -4309,6 +4463,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4309
4463
|
* Responsive behavior:
|
|
4310
4464
|
*
|
|
4311
4465
|
* The `ObjectPageLayout` is responsive and adapts to all screen sizes.
|
|
4466
|
+
*
|
|
4467
|
+
* @since 1.26
|
|
4312
4468
|
*/
|
|
4313
4469
|
export default class ObjectPageLayout extends Control {
|
|
4314
4470
|
/**
|
|
@@ -4366,6 +4522,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4366
4522
|
*
|
|
4367
4523
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4368
4524
|
*
|
|
4525
|
+
*
|
|
4369
4526
|
* @returns Created class / constructor function
|
|
4370
4527
|
*/
|
|
4371
4528
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -4386,12 +4543,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4386
4543
|
/**
|
|
4387
4544
|
* Returns a metadata object for class sap.uxap.ObjectPageLayout.
|
|
4388
4545
|
*
|
|
4546
|
+
*
|
|
4389
4547
|
* @returns Metadata object describing this class
|
|
4390
4548
|
*/
|
|
4391
4549
|
static getMetadata(): ElementMetadata;
|
|
4392
4550
|
/**
|
|
4393
4551
|
* Adds some headerContent to the aggregation {@link #getHeaderContent headerContent}.
|
|
4394
4552
|
*
|
|
4553
|
+
*
|
|
4395
4554
|
* @returns Reference to `this` in order to allow method chaining
|
|
4396
4555
|
*/
|
|
4397
4556
|
addHeaderContent(
|
|
@@ -4403,6 +4562,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4403
4562
|
/**
|
|
4404
4563
|
* Adds some section to the aggregation {@link #getSections sections}.
|
|
4405
4564
|
*
|
|
4565
|
+
*
|
|
4406
4566
|
* @returns Reference to `this` in order to allow method chaining
|
|
4407
4567
|
*/
|
|
4408
4568
|
addSection(
|
|
@@ -4412,8 +4572,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4412
4572
|
oSection: ObjectPageSection
|
|
4413
4573
|
): this;
|
|
4414
4574
|
/**
|
|
4415
|
-
* @since 1.118
|
|
4416
|
-
*
|
|
4417
4575
|
* Attaches event handler `fnFunction` to the {@link #event:beforeNavigate beforeNavigate} event of this
|
|
4418
4576
|
* `sap.uxap.ObjectPageLayout`.
|
|
4419
4577
|
*
|
|
@@ -4423,6 +4581,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4423
4581
|
* The event is fired before the selected section is changed using the navigation. This event can be aborted
|
|
4424
4582
|
* by the application with preventDefault(), which means that there will be no navigation.
|
|
4425
4583
|
*
|
|
4584
|
+
* @since 1.118
|
|
4585
|
+
*
|
|
4426
4586
|
* @returns Reference to `this` in order to allow method chaining
|
|
4427
4587
|
*/
|
|
4428
4588
|
attachBeforeNavigate(
|
|
@@ -4441,8 +4601,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4441
4601
|
oListener?: object
|
|
4442
4602
|
): this;
|
|
4443
4603
|
/**
|
|
4444
|
-
* @since 1.118
|
|
4445
|
-
*
|
|
4446
4604
|
* Attaches event handler `fnFunction` to the {@link #event:beforeNavigate beforeNavigate} event of this
|
|
4447
4605
|
* `sap.uxap.ObjectPageLayout`.
|
|
4448
4606
|
*
|
|
@@ -4452,6 +4610,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4452
4610
|
* The event is fired before the selected section is changed using the navigation. This event can be aborted
|
|
4453
4611
|
* by the application with preventDefault(), which means that there will be no navigation.
|
|
4454
4612
|
*
|
|
4613
|
+
* @since 1.118
|
|
4614
|
+
*
|
|
4455
4615
|
* @returns Reference to `this` in order to allow method chaining
|
|
4456
4616
|
*/
|
|
4457
4617
|
attachBeforeNavigate(
|
|
@@ -4473,6 +4633,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4473
4633
|
*
|
|
4474
4634
|
* The event is fired when the Edit Header button is pressed
|
|
4475
4635
|
*
|
|
4636
|
+
*
|
|
4476
4637
|
* @returns Reference to `this` in order to allow method chaining
|
|
4477
4638
|
*/
|
|
4478
4639
|
attachEditHeaderButtonPress(
|
|
@@ -4499,6 +4660,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4499
4660
|
*
|
|
4500
4661
|
* The event is fired when the Edit Header button is pressed
|
|
4501
4662
|
*
|
|
4663
|
+
*
|
|
4502
4664
|
* @returns Reference to `this` in order to allow method chaining
|
|
4503
4665
|
*/
|
|
4504
4666
|
attachEditHeaderButtonPress(
|
|
@@ -4512,8 +4674,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4512
4674
|
oListener?: object
|
|
4513
4675
|
): this;
|
|
4514
4676
|
/**
|
|
4515
|
-
* @since 1.93
|
|
4516
|
-
*
|
|
4517
4677
|
* Attaches event handler `fnFunction` to the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
|
|
4518
4678
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4519
4679
|
*
|
|
@@ -4522,6 +4682,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4522
4682
|
*
|
|
4523
4683
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
4524
4684
|
*
|
|
4685
|
+
* @since 1.93
|
|
4686
|
+
*
|
|
4525
4687
|
* @returns Reference to `this` in order to allow method chaining
|
|
4526
4688
|
*/
|
|
4527
4689
|
attachHeaderContentPinnedStateChange(
|
|
@@ -4542,8 +4704,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4542
4704
|
oListener?: object
|
|
4543
4705
|
): this;
|
|
4544
4706
|
/**
|
|
4545
|
-
* @since 1.93
|
|
4546
|
-
*
|
|
4547
4707
|
* Attaches event handler `fnFunction` to the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
|
|
4548
4708
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4549
4709
|
*
|
|
@@ -4552,6 +4712,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4552
4712
|
*
|
|
4553
4713
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
4554
4714
|
*
|
|
4715
|
+
* @since 1.93
|
|
4716
|
+
*
|
|
4555
4717
|
* @returns Reference to `this` in order to allow method chaining
|
|
4556
4718
|
*/
|
|
4557
4719
|
attachHeaderContentPinnedStateChange(
|
|
@@ -4567,8 +4729,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4567
4729
|
oListener?: object
|
|
4568
4730
|
): this;
|
|
4569
4731
|
/**
|
|
4570
|
-
* @since 1.40
|
|
4571
|
-
*
|
|
4572
4732
|
* Attaches event handler `fnFunction` to the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4573
4733
|
*
|
|
4574
4734
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -4576,6 +4736,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4576
4736
|
*
|
|
4577
4737
|
* The event is fired when the selected section is changed using the navigation.
|
|
4578
4738
|
*
|
|
4739
|
+
* @since 1.40
|
|
4740
|
+
*
|
|
4579
4741
|
* @returns Reference to `this` in order to allow method chaining
|
|
4580
4742
|
*/
|
|
4581
4743
|
attachNavigate(
|
|
@@ -4594,8 +4756,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4594
4756
|
oListener?: object
|
|
4595
4757
|
): this;
|
|
4596
4758
|
/**
|
|
4597
|
-
* @since 1.40
|
|
4598
|
-
*
|
|
4599
4759
|
* Attaches event handler `fnFunction` to the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4600
4760
|
*
|
|
4601
4761
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -4603,6 +4763,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4603
4763
|
*
|
|
4604
4764
|
* The event is fired when the selected section is changed using the navigation.
|
|
4605
4765
|
*
|
|
4766
|
+
* @since 1.40
|
|
4767
|
+
*
|
|
4606
4768
|
* @returns Reference to `this` in order to allow method chaining
|
|
4607
4769
|
*/
|
|
4608
4770
|
attachNavigate(
|
|
@@ -4616,8 +4778,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4616
4778
|
oListener?: object
|
|
4617
4779
|
): this;
|
|
4618
4780
|
/**
|
|
4619
|
-
* @since 1.73
|
|
4620
|
-
*
|
|
4621
4781
|
* Attaches event handler `fnFunction` to the {@link #event:sectionChange sectionChange} event of this `sap.uxap.ObjectPageLayout`.
|
|
4622
4782
|
*
|
|
4623
4783
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -4625,6 +4785,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4625
4785
|
*
|
|
4626
4786
|
* Fired when the current section is changed by scrolling.
|
|
4627
4787
|
*
|
|
4788
|
+
* @since 1.73
|
|
4789
|
+
*
|
|
4628
4790
|
* @returns Reference to `this` in order to allow method chaining
|
|
4629
4791
|
*/
|
|
4630
4792
|
attachSectionChange(
|
|
@@ -4643,8 +4805,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4643
4805
|
oListener?: object
|
|
4644
4806
|
): this;
|
|
4645
4807
|
/**
|
|
4646
|
-
* @since 1.73
|
|
4647
|
-
*
|
|
4648
4808
|
* Attaches event handler `fnFunction` to the {@link #event:sectionChange sectionChange} event of this `sap.uxap.ObjectPageLayout`.
|
|
4649
4809
|
*
|
|
4650
4810
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
@@ -4652,6 +4812,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4652
4812
|
*
|
|
4653
4813
|
* Fired when the current section is changed by scrolling.
|
|
4654
4814
|
*
|
|
4815
|
+
* @since 1.73
|
|
4816
|
+
*
|
|
4655
4817
|
* @returns Reference to `this` in order to allow method chaining
|
|
4656
4818
|
*/
|
|
4657
4819
|
attachSectionChange(
|
|
@@ -4665,8 +4827,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4665
4827
|
oListener?: object
|
|
4666
4828
|
): this;
|
|
4667
4829
|
/**
|
|
4668
|
-
* @since 1.77
|
|
4669
|
-
*
|
|
4670
4830
|
* Attaches event handler `fnFunction` to the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
|
|
4671
4831
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4672
4832
|
*
|
|
@@ -4675,6 +4835,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4675
4835
|
*
|
|
4676
4836
|
* Fired when the visibility of subsections is changed.
|
|
4677
4837
|
*
|
|
4838
|
+
* @since 1.77
|
|
4839
|
+
*
|
|
4678
4840
|
* @returns Reference to `this` in order to allow method chaining
|
|
4679
4841
|
*/
|
|
4680
4842
|
attachSubSectionVisibilityChange(
|
|
@@ -4695,8 +4857,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4695
4857
|
oListener?: object
|
|
4696
4858
|
): this;
|
|
4697
4859
|
/**
|
|
4698
|
-
* @since 1.77
|
|
4699
|
-
*
|
|
4700
4860
|
* Attaches event handler `fnFunction` to the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
|
|
4701
4861
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4702
4862
|
*
|
|
@@ -4705,6 +4865,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4705
4865
|
*
|
|
4706
4866
|
* Fired when the visibility of subsections is changed.
|
|
4707
4867
|
*
|
|
4868
|
+
* @since 1.77
|
|
4869
|
+
*
|
|
4708
4870
|
* @returns Reference to `this` in order to allow method chaining
|
|
4709
4871
|
*/
|
|
4710
4872
|
attachSubSectionVisibilityChange(
|
|
@@ -4728,6 +4890,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4728
4890
|
*
|
|
4729
4891
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
4730
4892
|
*
|
|
4893
|
+
*
|
|
4731
4894
|
* @returns Reference to `this` in order to allow method chaining
|
|
4732
4895
|
*/
|
|
4733
4896
|
attachToggleAnchorBar(
|
|
@@ -4754,6 +4917,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4754
4917
|
*
|
|
4755
4918
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
4756
4919
|
*
|
|
4920
|
+
*
|
|
4757
4921
|
* @returns Reference to `this` in order to allow method chaining
|
|
4758
4922
|
*/
|
|
4759
4923
|
attachToggleAnchorBar(
|
|
@@ -4767,47 +4931,50 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4767
4931
|
oListener?: object
|
|
4768
4932
|
): this;
|
|
4769
4933
|
/**
|
|
4770
|
-
* @since 1.40
|
|
4771
|
-
*
|
|
4772
4934
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
4773
4935
|
*
|
|
4936
|
+
* @since 1.40
|
|
4937
|
+
*
|
|
4774
4938
|
* @returns Reference to `this` in order to allow method chaining
|
|
4775
4939
|
*/
|
|
4776
4940
|
destroyFooter(): this;
|
|
4777
4941
|
/**
|
|
4778
4942
|
* Destroys all the headerContent in the aggregation {@link #getHeaderContent headerContent}.
|
|
4779
4943
|
*
|
|
4944
|
+
*
|
|
4780
4945
|
* @returns Reference to `this` in order to allow method chaining
|
|
4781
4946
|
*/
|
|
4782
4947
|
destroyHeaderContent(): this;
|
|
4783
4948
|
/**
|
|
4784
4949
|
* Destroys the headerTitle in the aggregation {@link #getHeaderTitle headerTitle}.
|
|
4785
4950
|
*
|
|
4951
|
+
*
|
|
4786
4952
|
* @returns Reference to `this` in order to allow method chaining
|
|
4787
4953
|
*/
|
|
4788
4954
|
destroyHeaderTitle(): this;
|
|
4789
4955
|
/**
|
|
4790
|
-
* @since 1.61
|
|
4791
|
-
*
|
|
4792
4956
|
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
4793
4957
|
*
|
|
4958
|
+
* @since 1.61
|
|
4959
|
+
*
|
|
4794
4960
|
* @returns Reference to `this` in order to allow method chaining
|
|
4795
4961
|
*/
|
|
4796
4962
|
destroyLandmarkInfo(): this;
|
|
4797
4963
|
/**
|
|
4798
4964
|
* Destroys all the sections in the aggregation {@link #getSections sections}.
|
|
4799
4965
|
*
|
|
4966
|
+
*
|
|
4800
4967
|
* @returns Reference to `this` in order to allow method chaining
|
|
4801
4968
|
*/
|
|
4802
4969
|
destroySections(): this;
|
|
4803
4970
|
/**
|
|
4804
|
-
* @since 1.118
|
|
4805
|
-
*
|
|
4806
4971
|
* Detaches event handler `fnFunction` from the {@link #event:beforeNavigate beforeNavigate} event of this
|
|
4807
4972
|
* `sap.uxap.ObjectPageLayout`.
|
|
4808
4973
|
*
|
|
4809
4974
|
* The passed function and listener object must match the ones used for event registration.
|
|
4810
4975
|
*
|
|
4976
|
+
* @since 1.118
|
|
4977
|
+
*
|
|
4811
4978
|
* @returns Reference to `this` in order to allow method chaining
|
|
4812
4979
|
*/
|
|
4813
4980
|
detachBeforeNavigate(
|
|
@@ -4826,6 +4993,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4826
4993
|
*
|
|
4827
4994
|
* The passed function and listener object must match the ones used for event registration.
|
|
4828
4995
|
*
|
|
4996
|
+
*
|
|
4829
4997
|
* @returns Reference to `this` in order to allow method chaining
|
|
4830
4998
|
*/
|
|
4831
4999
|
detachEditHeaderButtonPress(
|
|
@@ -4839,13 +5007,13 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4839
5007
|
oListener?: object
|
|
4840
5008
|
): this;
|
|
4841
5009
|
/**
|
|
4842
|
-
* @since 1.93
|
|
4843
|
-
*
|
|
4844
5010
|
* Detaches event handler `fnFunction` from the {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange }
|
|
4845
5011
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4846
5012
|
*
|
|
4847
5013
|
* The passed function and listener object must match the ones used for event registration.
|
|
4848
5014
|
*
|
|
5015
|
+
* @since 1.93
|
|
5016
|
+
*
|
|
4849
5017
|
* @returns Reference to `this` in order to allow method chaining
|
|
4850
5018
|
*/
|
|
4851
5019
|
detachHeaderContentPinnedStateChange(
|
|
@@ -4861,12 +5029,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4861
5029
|
oListener?: object
|
|
4862
5030
|
): this;
|
|
4863
5031
|
/**
|
|
4864
|
-
* @since 1.40
|
|
4865
|
-
*
|
|
4866
5032
|
* Detaches event handler `fnFunction` from the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4867
5033
|
*
|
|
4868
5034
|
* The passed function and listener object must match the ones used for event registration.
|
|
4869
5035
|
*
|
|
5036
|
+
* @since 1.40
|
|
5037
|
+
*
|
|
4870
5038
|
* @returns Reference to `this` in order to allow method chaining
|
|
4871
5039
|
*/
|
|
4872
5040
|
detachNavigate(
|
|
@@ -4880,13 +5048,13 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4880
5048
|
oListener?: object
|
|
4881
5049
|
): this;
|
|
4882
5050
|
/**
|
|
4883
|
-
* @since 1.73
|
|
4884
|
-
*
|
|
4885
5051
|
* Detaches event handler `fnFunction` from the {@link #event:sectionChange sectionChange} event of this
|
|
4886
5052
|
* `sap.uxap.ObjectPageLayout`.
|
|
4887
5053
|
*
|
|
4888
5054
|
* The passed function and listener object must match the ones used for event registration.
|
|
4889
5055
|
*
|
|
5056
|
+
* @since 1.73
|
|
5057
|
+
*
|
|
4890
5058
|
* @returns Reference to `this` in order to allow method chaining
|
|
4891
5059
|
*/
|
|
4892
5060
|
detachSectionChange(
|
|
@@ -4900,13 +5068,13 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4900
5068
|
oListener?: object
|
|
4901
5069
|
): this;
|
|
4902
5070
|
/**
|
|
4903
|
-
* @since 1.77
|
|
4904
|
-
*
|
|
4905
5071
|
* Detaches event handler `fnFunction` from the {@link #event:subSectionVisibilityChange subSectionVisibilityChange }
|
|
4906
5072
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4907
5073
|
*
|
|
4908
5074
|
* The passed function and listener object must match the ones used for event registration.
|
|
4909
5075
|
*
|
|
5076
|
+
* @since 1.77
|
|
5077
|
+
*
|
|
4910
5078
|
* @returns Reference to `this` in order to allow method chaining
|
|
4911
5079
|
*/
|
|
4912
5080
|
detachSubSectionVisibilityChange(
|
|
@@ -4927,6 +5095,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4927
5095
|
*
|
|
4928
5096
|
* The passed function and listener object must match the ones used for event registration.
|
|
4929
5097
|
*
|
|
5098
|
+
*
|
|
4930
5099
|
* @returns Reference to `this` in order to allow method chaining
|
|
4931
5100
|
*/
|
|
4932
5101
|
detachToggleAnchorBar(
|
|
@@ -4940,14 +5109,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4940
5109
|
oListener?: object
|
|
4941
5110
|
): this;
|
|
4942
5111
|
/**
|
|
4943
|
-
* @since 1.118
|
|
4944
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4945
|
-
*
|
|
4946
5112
|
* Fires event {@link #event:beforeNavigate beforeNavigate} to attached listeners.
|
|
4947
5113
|
*
|
|
4948
5114
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
4949
5115
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
4950
5116
|
*
|
|
5117
|
+
* @since 1.118
|
|
5118
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5119
|
+
*
|
|
4951
5120
|
* @returns Whether or not to prevent the default action
|
|
4952
5121
|
*/
|
|
4953
5122
|
fireBeforeNavigate(
|
|
@@ -4957,10 +5126,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4957
5126
|
mParameters?: ObjectPageLayout$BeforeNavigateEventParameters
|
|
4958
5127
|
): boolean;
|
|
4959
5128
|
/**
|
|
4960
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4961
|
-
*
|
|
4962
5129
|
* Fires event {@link #event:editHeaderButtonPress editHeaderButtonPress} to attached listeners.
|
|
4963
5130
|
*
|
|
5131
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5132
|
+
*
|
|
4964
5133
|
* @returns Reference to `this` in order to allow method chaining
|
|
4965
5134
|
*/
|
|
4966
5135
|
fireEditHeaderButtonPress(
|
|
@@ -4970,12 +5139,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4970
5139
|
mParameters?: object
|
|
4971
5140
|
): this;
|
|
4972
5141
|
/**
|
|
4973
|
-
* @since 1.93
|
|
4974
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4975
|
-
*
|
|
4976
5142
|
* Fires event {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange} to attached
|
|
4977
5143
|
* listeners.
|
|
4978
5144
|
*
|
|
5145
|
+
* @since 1.93
|
|
5146
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5147
|
+
*
|
|
4979
5148
|
* @returns Reference to `this` in order to allow method chaining
|
|
4980
5149
|
*/
|
|
4981
5150
|
fireHeaderContentPinnedStateChange(
|
|
@@ -4985,11 +5154,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4985
5154
|
mParameters?: ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters
|
|
4986
5155
|
): this;
|
|
4987
5156
|
/**
|
|
5157
|
+
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
5158
|
+
*
|
|
4988
5159
|
* @since 1.40
|
|
4989
5160
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4990
5161
|
*
|
|
4991
|
-
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
4992
|
-
*
|
|
4993
5162
|
* @returns Reference to `this` in order to allow method chaining
|
|
4994
5163
|
*/
|
|
4995
5164
|
fireNavigate(
|
|
@@ -4999,11 +5168,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4999
5168
|
mParameters?: ObjectPageLayout$NavigateEventParameters
|
|
5000
5169
|
): this;
|
|
5001
5170
|
/**
|
|
5171
|
+
* Fires event {@link #event:sectionChange sectionChange} to attached listeners.
|
|
5172
|
+
*
|
|
5002
5173
|
* @since 1.73
|
|
5003
5174
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5004
5175
|
*
|
|
5005
|
-
* Fires event {@link #event:sectionChange sectionChange} to attached listeners.
|
|
5006
|
-
*
|
|
5007
5176
|
* @returns Reference to `this` in order to allow method chaining
|
|
5008
5177
|
*/
|
|
5009
5178
|
fireSectionChange(
|
|
@@ -5013,11 +5182,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5013
5182
|
mParameters?: ObjectPageLayout$SectionChangeEventParameters
|
|
5014
5183
|
): this;
|
|
5015
5184
|
/**
|
|
5185
|
+
* Fires event {@link #event:subSectionVisibilityChange subSectionVisibilityChange} to attached listeners.
|
|
5186
|
+
*
|
|
5016
5187
|
* @since 1.77
|
|
5017
5188
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5018
5189
|
*
|
|
5019
|
-
* Fires event {@link #event:subSectionVisibilityChange subSectionVisibilityChange} to attached listeners.
|
|
5020
|
-
*
|
|
5021
5190
|
* @returns Reference to `this` in order to allow method chaining
|
|
5022
5191
|
*/
|
|
5023
5192
|
fireSubSectionVisibilityChange(
|
|
@@ -5027,10 +5196,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5027
5196
|
mParameters?: ObjectPageLayout$SubSectionVisibilityChangeEventParameters
|
|
5028
5197
|
): this;
|
|
5029
5198
|
/**
|
|
5030
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5031
|
-
*
|
|
5032
5199
|
* Fires event {@link #event:toggleAnchorBar toggleAnchorBar} to attached listeners.
|
|
5033
5200
|
*
|
|
5201
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5202
|
+
*
|
|
5034
5203
|
* @returns Reference to `this` in order to allow method chaining
|
|
5035
5204
|
*/
|
|
5036
5205
|
fireToggleAnchorBar(
|
|
@@ -5040,8 +5209,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5040
5209
|
mParameters?: ObjectPageLayout$ToggleAnchorBarEventParameters
|
|
5041
5210
|
): this;
|
|
5042
5211
|
/**
|
|
5043
|
-
* @since 1.34.0
|
|
5044
|
-
*
|
|
5045
5212
|
* Gets current value of property {@link #getAlwaysShowContentHeader alwaysShowContentHeader}.
|
|
5046
5213
|
*
|
|
5047
5214
|
* Determines whether Header Content will always be expanded on desktop.
|
|
@@ -5051,12 +5218,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5051
5218
|
*
|
|
5052
5219
|
* Default value is `false`.
|
|
5053
5220
|
*
|
|
5221
|
+
* @since 1.34.0
|
|
5222
|
+
*
|
|
5054
5223
|
* @returns Value of property `alwaysShowContentHeader`
|
|
5055
5224
|
*/
|
|
5056
5225
|
getAlwaysShowContentHeader(): boolean;
|
|
5057
5226
|
/**
|
|
5058
|
-
* @since 1.58
|
|
5059
|
-
*
|
|
5060
5227
|
* Gets current value of property {@link #getBackgroundDesignAnchorBar backgroundDesignAnchorBar}.
|
|
5061
5228
|
*
|
|
5062
5229
|
* Determines the background color of the `AnchorBar`.
|
|
@@ -5064,6 +5231,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5064
5231
|
* **Note:** The default value of `backgroundDesignAnchorBar` property is null. If the property is not set,
|
|
5065
5232
|
* the color of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
5066
5233
|
*
|
|
5234
|
+
* @since 1.58
|
|
5235
|
+
*
|
|
5067
5236
|
* @returns Value of property `backgroundDesignAnchorBar`
|
|
5068
5237
|
*/
|
|
5069
5238
|
getBackgroundDesignAnchorBar():
|
|
@@ -5076,12 +5245,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5076
5245
|
*
|
|
5077
5246
|
* Default value is `false`.
|
|
5078
5247
|
*
|
|
5248
|
+
*
|
|
5079
5249
|
* @returns Value of property `enableLazyLoading`
|
|
5080
5250
|
*/
|
|
5081
5251
|
getEnableLazyLoading(): boolean;
|
|
5082
5252
|
/**
|
|
5083
|
-
* @since 1.34.0
|
|
5084
|
-
*
|
|
5085
5253
|
* Gets current value of property {@link #getFlexEnabled flexEnabled}.
|
|
5086
5254
|
*
|
|
5087
5255
|
* Specifies whether the object page enables flexibility features, such as hiding and adding sections.
|
|
@@ -5089,15 +5257,17 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5089
5257
|
*
|
|
5090
5258
|
* Default value is `false`.
|
|
5091
5259
|
*
|
|
5260
|
+
* @since 1.34.0
|
|
5261
|
+
*
|
|
5092
5262
|
* @returns Value of property `flexEnabled`
|
|
5093
5263
|
*/
|
|
5094
5264
|
getFlexEnabled(): boolean;
|
|
5095
5265
|
/**
|
|
5096
|
-
* @since 1.40
|
|
5097
|
-
*
|
|
5098
5266
|
* Gets content of aggregation {@link #getFooter footer}.
|
|
5099
5267
|
*
|
|
5100
5268
|
* Object page floating footer.
|
|
5269
|
+
*
|
|
5270
|
+
* @since 1.40
|
|
5101
5271
|
*/
|
|
5102
5272
|
getFooter(): IBar;
|
|
5103
5273
|
/**
|
|
@@ -5107,8 +5277,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5107
5277
|
*/
|
|
5108
5278
|
getHeaderContent(): Control[];
|
|
5109
5279
|
/**
|
|
5110
|
-
* @since 1.52
|
|
5111
|
-
*
|
|
5112
5280
|
* Gets current value of property {@link #getHeaderContentPinnable headerContentPinnable}.
|
|
5113
5281
|
*
|
|
5114
5282
|
* Determines whether the Header Content area can be pinned.
|
|
@@ -5121,12 +5289,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5121
5289
|
*
|
|
5122
5290
|
* Default value is `true`.
|
|
5123
5291
|
*
|
|
5292
|
+
* @since 1.52
|
|
5293
|
+
*
|
|
5124
5294
|
* @returns Value of property `headerContentPinnable`
|
|
5125
5295
|
*/
|
|
5126
5296
|
getHeaderContentPinnable(): boolean;
|
|
5127
5297
|
/**
|
|
5128
|
-
* @since 1.93
|
|
5129
|
-
*
|
|
5130
5298
|
* Gets current value of property {@link #getHeaderContentPinned headerContentPinned}.
|
|
5131
5299
|
*
|
|
5132
5300
|
* Determines whether the `sap.uxap.ObjectPageDynamicHeaderContent` is pinned.
|
|
@@ -5146,6 +5314,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5146
5314
|
*
|
|
5147
5315
|
* Default value is `false`.
|
|
5148
5316
|
*
|
|
5317
|
+
* @since 1.93
|
|
5318
|
+
*
|
|
5149
5319
|
* @returns Value of property `headerContentPinned`
|
|
5150
5320
|
*/
|
|
5151
5321
|
getHeaderContentPinned(): boolean;
|
|
@@ -5162,12 +5332,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5162
5332
|
*
|
|
5163
5333
|
* Default value is `"100%"`.
|
|
5164
5334
|
*
|
|
5335
|
+
*
|
|
5165
5336
|
* @returns Value of property `height`
|
|
5166
5337
|
*/
|
|
5167
5338
|
getHeight(): CSSSize;
|
|
5168
5339
|
/**
|
|
5169
|
-
* @since 1.34.0
|
|
5170
|
-
*
|
|
5171
5340
|
* Gets current value of property {@link #getIsChildPage isChildPage}.
|
|
5172
5341
|
*
|
|
5173
5342
|
* Determines whether the page is a child page and renders it with a different design. Child pages have
|
|
@@ -5178,22 +5347,22 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5178
5347
|
*
|
|
5179
5348
|
* Default value is `false`.
|
|
5180
5349
|
*
|
|
5350
|
+
* @since 1.34.0
|
|
5351
|
+
*
|
|
5181
5352
|
* @returns Value of property `isChildPage`
|
|
5182
5353
|
*/
|
|
5183
5354
|
getIsChildPage(): boolean;
|
|
5184
5355
|
/**
|
|
5185
|
-
* @since 1.61
|
|
5186
|
-
*
|
|
5187
5356
|
* Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
5188
5357
|
*
|
|
5189
5358
|
* Accessible landmark settings to be applied on the containers of the `sap.uxap.ObjectPageLayout` control.
|
|
5190
5359
|
*
|
|
5191
5360
|
* If not set, no landmarks will be written.
|
|
5361
|
+
*
|
|
5362
|
+
* @since 1.61
|
|
5192
5363
|
*/
|
|
5193
5364
|
getLandmarkInfo(): ObjectPageAccessibleLandmarkInfo;
|
|
5194
5365
|
/**
|
|
5195
|
-
* @since 1.52
|
|
5196
|
-
*
|
|
5197
5366
|
* Gets current value of property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
|
|
5198
5367
|
*
|
|
5199
5368
|
* Preserves the current header state when scrolling. For example, if the user expands the header by clicking
|
|
@@ -5208,12 +5377,15 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5208
5377
|
*
|
|
5209
5378
|
* Default value is `false`.
|
|
5210
5379
|
*
|
|
5380
|
+
* @since 1.52
|
|
5381
|
+
*
|
|
5211
5382
|
* @returns Value of property `preserveHeaderStateOnScroll`
|
|
5212
5383
|
*/
|
|
5213
5384
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
5214
5385
|
/**
|
|
5215
5386
|
* Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
|
|
5216
5387
|
*
|
|
5388
|
+
*
|
|
5217
5389
|
* @returns The scroll delegate instance
|
|
5218
5390
|
*/
|
|
5219
5391
|
getScrollDelegate(): ScrollEnablement;
|
|
@@ -5228,8 +5400,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5228
5400
|
*/
|
|
5229
5401
|
getSections(): ObjectPageSection[];
|
|
5230
5402
|
/**
|
|
5231
|
-
* @since 1.44.0
|
|
5232
|
-
*
|
|
5233
5403
|
* Gets current value of property {@link #getSectionTitleLevel sectionTitleLevel}.
|
|
5234
5404
|
*
|
|
5235
5405
|
* Determines the ARIA level of the `ObjectPageSection` and `ObjectPageSubSection` titles. The ARIA level
|
|
@@ -5254,14 +5424,16 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5254
5424
|
*
|
|
5255
5425
|
* Default value is `Auto`.
|
|
5256
5426
|
*
|
|
5427
|
+
* @since 1.44.0
|
|
5428
|
+
*
|
|
5257
5429
|
* @returns Value of property `sectionTitleLevel`
|
|
5258
5430
|
*/
|
|
5259
5431
|
getSectionTitleLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
5260
5432
|
/**
|
|
5261
|
-
* @since 1.44.0
|
|
5262
|
-
*
|
|
5263
5433
|
* ID of the element which is the current target of the association {@link #getSelectedSection selectedSection},
|
|
5264
5434
|
* or `null`.
|
|
5435
|
+
*
|
|
5436
|
+
* @since 1.44.0
|
|
5265
5437
|
*/
|
|
5266
5438
|
getSelectedSection(): ID;
|
|
5267
5439
|
/**
|
|
@@ -5271,6 +5443,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5271
5443
|
*
|
|
5272
5444
|
* Default value is `true`.
|
|
5273
5445
|
*
|
|
5446
|
+
*
|
|
5274
5447
|
* @returns Value of property `showAnchorBar`
|
|
5275
5448
|
*/
|
|
5276
5449
|
getShowAnchorBar(): boolean;
|
|
@@ -5282,12 +5455,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5282
5455
|
*
|
|
5283
5456
|
* Default value is `true`.
|
|
5284
5457
|
*
|
|
5458
|
+
*
|
|
5285
5459
|
* @returns Value of property `showAnchorBarPopover`
|
|
5286
5460
|
*/
|
|
5287
5461
|
getShowAnchorBarPopover(): boolean;
|
|
5288
5462
|
/**
|
|
5289
|
-
* @since 1.34.0
|
|
5290
|
-
*
|
|
5291
5463
|
* Gets current value of property {@link #getShowEditHeaderButton showEditHeaderButton}.
|
|
5292
5464
|
*
|
|
5293
5465
|
* Determines whether an Edit button will be displayed in Header Content.
|
|
@@ -5297,18 +5469,20 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5297
5469
|
*
|
|
5298
5470
|
* Default value is `false`.
|
|
5299
5471
|
*
|
|
5472
|
+
* @since 1.34.0
|
|
5473
|
+
*
|
|
5300
5474
|
* @returns Value of property `showEditHeaderButton`
|
|
5301
5475
|
*/
|
|
5302
5476
|
getShowEditHeaderButton(): boolean;
|
|
5303
5477
|
/**
|
|
5304
|
-
* @since 1.40
|
|
5305
|
-
*
|
|
5306
5478
|
* Gets current value of property {@link #getShowFooter showFooter}.
|
|
5307
5479
|
*
|
|
5308
5480
|
* Determines whether the footer is visible.
|
|
5309
5481
|
*
|
|
5310
5482
|
* Default value is `false`.
|
|
5311
5483
|
*
|
|
5484
|
+
* @since 1.40
|
|
5485
|
+
*
|
|
5312
5486
|
* @returns Value of property `showFooter`
|
|
5313
5487
|
*/
|
|
5314
5488
|
getShowFooter(): boolean;
|
|
@@ -5319,18 +5493,19 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5319
5493
|
*
|
|
5320
5494
|
* Default value is `true`.
|
|
5321
5495
|
*
|
|
5496
|
+
*
|
|
5322
5497
|
* @returns Value of property `showHeaderContent`
|
|
5323
5498
|
*/
|
|
5324
5499
|
getShowHeaderContent(): boolean;
|
|
5325
5500
|
/**
|
|
5326
|
-
* @since 1.32.0
|
|
5327
|
-
*
|
|
5328
5501
|
* Gets current value of property {@link #getShowOnlyHighImportance showOnlyHighImportance}.
|
|
5329
5502
|
*
|
|
5330
5503
|
* Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
|
|
5331
5504
|
*
|
|
5332
5505
|
* Default value is `false`.
|
|
5333
5506
|
*
|
|
5507
|
+
* @since 1.32.0
|
|
5508
|
+
*
|
|
5334
5509
|
* @returns Value of property `showOnlyHighImportance`
|
|
5335
5510
|
*/
|
|
5336
5511
|
getShowOnlyHighImportance(): boolean;
|
|
@@ -5344,6 +5519,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5344
5519
|
*
|
|
5345
5520
|
* Default value is `false`.
|
|
5346
5521
|
*
|
|
5522
|
+
*
|
|
5347
5523
|
* @returns Value of property `showTitleInHeaderContent`
|
|
5348
5524
|
*/
|
|
5349
5525
|
getShowTitleInHeaderContent(): boolean;
|
|
@@ -5354,14 +5530,13 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5354
5530
|
*
|
|
5355
5531
|
* Default value is `TitleOnTop`.
|
|
5356
5532
|
*
|
|
5533
|
+
*
|
|
5357
5534
|
* @returns Value of property `subSectionLayout`
|
|
5358
5535
|
*/
|
|
5359
5536
|
getSubSectionLayout():
|
|
5360
5537
|
| ObjectPageSubSectionLayout
|
|
5361
5538
|
| keyof typeof ObjectPageSubSectionLayout;
|
|
5362
5539
|
/**
|
|
5363
|
-
* @since 1.52
|
|
5364
|
-
*
|
|
5365
5540
|
* Gets current value of property {@link #getToggleHeaderOnTitleClick toggleHeaderOnTitleClick}.
|
|
5366
5541
|
*
|
|
5367
5542
|
* Determines whether the user can switch between the expanded/collapsed states of the `sap.uxap.ObjectPageDynamicHeaderContent`
|
|
@@ -5374,6 +5549,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5374
5549
|
*
|
|
5375
5550
|
* Default value is `true`.
|
|
5376
5551
|
*
|
|
5552
|
+
* @since 1.52
|
|
5553
|
+
*
|
|
5377
5554
|
* @returns Value of property `toggleHeaderOnTitleClick`
|
|
5378
5555
|
*/
|
|
5379
5556
|
getToggleHeaderOnTitleClick(): boolean;
|
|
@@ -5384,6 +5561,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5384
5561
|
*
|
|
5385
5562
|
* Default value is `true`.
|
|
5386
5563
|
*
|
|
5564
|
+
*
|
|
5387
5565
|
* @returns Value of property `upperCaseAnchorBar`
|
|
5388
5566
|
*/
|
|
5389
5567
|
getUpperCaseAnchorBar(): boolean;
|
|
@@ -5397,6 +5575,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5397
5575
|
*
|
|
5398
5576
|
* Default value is `false`.
|
|
5399
5577
|
*
|
|
5578
|
+
*
|
|
5400
5579
|
* @returns Value of property `useIconTabBar`
|
|
5401
5580
|
*/
|
|
5402
5581
|
getUseIconTabBar(): boolean;
|
|
@@ -5407,6 +5586,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5407
5586
|
*
|
|
5408
5587
|
* Default value is `false`.
|
|
5409
5588
|
*
|
|
5589
|
+
*
|
|
5410
5590
|
* @returns Value of property `useTwoColumnsForLargeScreen`
|
|
5411
5591
|
*/
|
|
5412
5592
|
getUseTwoColumnsForLargeScreen(): boolean;
|
|
@@ -5414,6 +5594,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5414
5594
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getHeaderContent headerContent}.
|
|
5415
5595
|
* and returns its index if found or -1 otherwise.
|
|
5416
5596
|
*
|
|
5597
|
+
*
|
|
5417
5598
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
5418
5599
|
*/
|
|
5419
5600
|
indexOfHeaderContent(
|
|
@@ -5426,6 +5607,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5426
5607
|
* Checks for the provided `sap.uxap.ObjectPageSection` in the aggregation {@link #getSections sections}.
|
|
5427
5608
|
* and returns its index if found or -1 otherwise.
|
|
5428
5609
|
*
|
|
5610
|
+
*
|
|
5429
5611
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
5430
5612
|
*/
|
|
5431
5613
|
indexOfSection(
|
|
@@ -5437,6 +5619,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5437
5619
|
/**
|
|
5438
5620
|
* Inserts a headerContent into the aggregation {@link #getHeaderContent headerContent}.
|
|
5439
5621
|
*
|
|
5622
|
+
*
|
|
5440
5623
|
* @returns Reference to `this` in order to allow method chaining
|
|
5441
5624
|
*/
|
|
5442
5625
|
insertHeaderContent(
|
|
@@ -5454,6 +5637,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5454
5637
|
/**
|
|
5455
5638
|
* Inserts a section into the aggregation {@link #getSections sections}.
|
|
5456
5639
|
*
|
|
5640
|
+
*
|
|
5457
5641
|
* @returns Reference to `this` in order to allow method chaining
|
|
5458
5642
|
*/
|
|
5459
5643
|
insertSection(
|
|
@@ -5469,9 +5653,9 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5469
5653
|
iIndex: int
|
|
5470
5654
|
): this;
|
|
5471
5655
|
/**
|
|
5472
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5473
|
-
*
|
|
5474
5656
|
* This triggers rerendering of itself and its children.
|
|
5657
|
+
*
|
|
5658
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5475
5659
|
*/
|
|
5476
5660
|
invalidate(
|
|
5477
5661
|
/**
|
|
@@ -5486,6 +5670,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5486
5670
|
*
|
|
5487
5671
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
5488
5672
|
*
|
|
5673
|
+
*
|
|
5489
5674
|
* @returns An array of the removed elements (might be empty)
|
|
5490
5675
|
*/
|
|
5491
5676
|
removeAllHeaderContent(): Control[];
|
|
@@ -5494,12 +5679,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5494
5679
|
*
|
|
5495
5680
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
5496
5681
|
*
|
|
5682
|
+
*
|
|
5497
5683
|
* @returns An array of the removed elements (might be empty)
|
|
5498
5684
|
*/
|
|
5499
5685
|
removeAllSections(): ObjectPageSection[];
|
|
5500
5686
|
/**
|
|
5501
5687
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
5502
5688
|
*
|
|
5689
|
+
*
|
|
5503
5690
|
* @returns The removed headerContent or `null`
|
|
5504
5691
|
*/
|
|
5505
5692
|
removeHeaderContent(
|
|
@@ -5511,6 +5698,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5511
5698
|
/**
|
|
5512
5699
|
* Removes a section from the aggregation {@link #getSections sections}.
|
|
5513
5700
|
*
|
|
5701
|
+
*
|
|
5514
5702
|
* @returns The removed section or `null`
|
|
5515
5703
|
*/
|
|
5516
5704
|
removeSection(
|
|
@@ -5537,8 +5725,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5537
5725
|
iOffset?: int
|
|
5538
5726
|
): void;
|
|
5539
5727
|
/**
|
|
5540
|
-
* @since 1.34.0
|
|
5541
|
-
*
|
|
5542
5728
|
* Sets a new value for property {@link #getAlwaysShowContentHeader alwaysShowContentHeader}.
|
|
5543
5729
|
*
|
|
5544
5730
|
* Determines whether Header Content will always be expanded on desktop.
|
|
@@ -5550,6 +5736,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5550
5736
|
*
|
|
5551
5737
|
* Default value is `false`.
|
|
5552
5738
|
*
|
|
5739
|
+
* @since 1.34.0
|
|
5740
|
+
*
|
|
5553
5741
|
* @returns Reference to `this` in order to allow method chaining
|
|
5554
5742
|
*/
|
|
5555
5743
|
setAlwaysShowContentHeader(
|
|
@@ -5559,10 +5747,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5559
5747
|
bAlwaysShowContentHeader?: boolean
|
|
5560
5748
|
): this;
|
|
5561
5749
|
/**
|
|
5562
|
-
* @since 1.58
|
|
5563
|
-
*
|
|
5564
5750
|
* Sets the value of the `backgroundDesignAnchorBar` property.
|
|
5565
5751
|
*
|
|
5752
|
+
* @since 1.58
|
|
5753
|
+
*
|
|
5566
5754
|
* @returns `this` to allow method chaining
|
|
5567
5755
|
*/
|
|
5568
5756
|
setBackgroundDesignAnchorBar(
|
|
@@ -5582,6 +5770,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5582
5770
|
*
|
|
5583
5771
|
* Default value is `false`.
|
|
5584
5772
|
*
|
|
5773
|
+
*
|
|
5585
5774
|
* @returns Reference to `this` in order to allow method chaining
|
|
5586
5775
|
*/
|
|
5587
5776
|
setEnableLazyLoading(
|
|
@@ -5591,8 +5780,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5591
5780
|
bEnableLazyLoading?: boolean
|
|
5592
5781
|
): this;
|
|
5593
5782
|
/**
|
|
5594
|
-
* @since 1.34.0
|
|
5595
|
-
*
|
|
5596
5783
|
* Sets a new value for property {@link #getFlexEnabled flexEnabled}.
|
|
5597
5784
|
*
|
|
5598
5785
|
* Specifies whether the object page enables flexibility features, such as hiding and adding sections.
|
|
@@ -5602,6 +5789,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5602
5789
|
*
|
|
5603
5790
|
* Default value is `false`.
|
|
5604
5791
|
*
|
|
5792
|
+
* @since 1.34.0
|
|
5793
|
+
*
|
|
5605
5794
|
* @returns Reference to `this` in order to allow method chaining
|
|
5606
5795
|
*/
|
|
5607
5796
|
setFlexEnabled(
|
|
@@ -5611,10 +5800,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5611
5800
|
bFlexEnabled?: boolean
|
|
5612
5801
|
): this;
|
|
5613
5802
|
/**
|
|
5614
|
-
* @since 1.40
|
|
5615
|
-
*
|
|
5616
5803
|
* Sets the aggregated {@link #getFooter footer}.
|
|
5617
5804
|
*
|
|
5805
|
+
* @since 1.40
|
|
5806
|
+
*
|
|
5618
5807
|
* @returns Reference to `this` in order to allow method chaining
|
|
5619
5808
|
*/
|
|
5620
5809
|
setFooter(
|
|
@@ -5624,8 +5813,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5624
5813
|
oFooter: IBar
|
|
5625
5814
|
): this;
|
|
5626
5815
|
/**
|
|
5627
|
-
* @since 1.52
|
|
5628
|
-
*
|
|
5629
5816
|
* Sets a new value for property {@link #getHeaderContentPinnable headerContentPinnable}.
|
|
5630
5817
|
*
|
|
5631
5818
|
* Determines whether the Header Content area can be pinned.
|
|
@@ -5640,6 +5827,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5640
5827
|
*
|
|
5641
5828
|
* Default value is `true`.
|
|
5642
5829
|
*
|
|
5830
|
+
* @since 1.52
|
|
5831
|
+
*
|
|
5643
5832
|
* @returns Reference to `this` in order to allow method chaining
|
|
5644
5833
|
*/
|
|
5645
5834
|
setHeaderContentPinnable(
|
|
@@ -5649,8 +5838,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5649
5838
|
bHeaderContentPinnable?: boolean
|
|
5650
5839
|
): this;
|
|
5651
5840
|
/**
|
|
5652
|
-
* @since 1.93
|
|
5653
|
-
*
|
|
5654
5841
|
* Sets a new value for property {@link #getHeaderContentPinned headerContentPinned}.
|
|
5655
5842
|
*
|
|
5656
5843
|
* Determines whether the `sap.uxap.ObjectPageDynamicHeaderContent` is pinned.
|
|
@@ -5672,6 +5859,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5672
5859
|
*
|
|
5673
5860
|
* Default value is `false`.
|
|
5674
5861
|
*
|
|
5862
|
+
* @since 1.93
|
|
5863
|
+
*
|
|
5675
5864
|
* @returns Reference to `this` in order to allow method chaining
|
|
5676
5865
|
*/
|
|
5677
5866
|
setHeaderContentPinned(
|
|
@@ -5683,6 +5872,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5683
5872
|
/**
|
|
5684
5873
|
* Sets the aggregated {@link #getHeaderTitle headerTitle}.
|
|
5685
5874
|
*
|
|
5875
|
+
*
|
|
5686
5876
|
* @returns Reference to `this` in order to allow method chaining
|
|
5687
5877
|
*/
|
|
5688
5878
|
setHeaderTitle(
|
|
@@ -5700,6 +5890,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5700
5890
|
*
|
|
5701
5891
|
* Default value is `"100%"`.
|
|
5702
5892
|
*
|
|
5893
|
+
*
|
|
5703
5894
|
* @returns Reference to `this` in order to allow method chaining
|
|
5704
5895
|
*/
|
|
5705
5896
|
setHeight(
|
|
@@ -5709,8 +5900,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5709
5900
|
sHeight?: CSSSize
|
|
5710
5901
|
): this;
|
|
5711
5902
|
/**
|
|
5712
|
-
* @since 1.34.0
|
|
5713
|
-
*
|
|
5714
5903
|
* Sets a new value for property {@link #getIsChildPage isChildPage}.
|
|
5715
5904
|
*
|
|
5716
5905
|
* Determines whether the page is a child page and renders it with a different design. Child pages have
|
|
@@ -5723,6 +5912,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5723
5912
|
*
|
|
5724
5913
|
* Default value is `false`.
|
|
5725
5914
|
*
|
|
5915
|
+
* @since 1.34.0
|
|
5916
|
+
*
|
|
5726
5917
|
* @returns Reference to `this` in order to allow method chaining
|
|
5727
5918
|
*/
|
|
5728
5919
|
setIsChildPage(
|
|
@@ -5732,10 +5923,10 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5732
5923
|
bIsChildPage?: boolean
|
|
5733
5924
|
): this;
|
|
5734
5925
|
/**
|
|
5735
|
-
* @since 1.61
|
|
5736
|
-
*
|
|
5737
5926
|
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
5738
5927
|
*
|
|
5928
|
+
* @since 1.61
|
|
5929
|
+
*
|
|
5739
5930
|
* @returns Reference to `this` in order to allow method chaining
|
|
5740
5931
|
*/
|
|
5741
5932
|
setLandmarkInfo(
|
|
@@ -5745,8 +5936,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5745
5936
|
oLandmarkInfo: ObjectPageAccessibleLandmarkInfo
|
|
5746
5937
|
): this;
|
|
5747
5938
|
/**
|
|
5748
|
-
* @since 1.52
|
|
5749
|
-
*
|
|
5750
5939
|
* Sets a new value for property {@link #getPreserveHeaderStateOnScroll preserveHeaderStateOnScroll}.
|
|
5751
5940
|
*
|
|
5752
5941
|
* Preserves the current header state when scrolling. For example, if the user expands the header by clicking
|
|
@@ -5763,6 +5952,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5763
5952
|
*
|
|
5764
5953
|
* Default value is `false`.
|
|
5765
5954
|
*
|
|
5955
|
+
* @since 1.52
|
|
5956
|
+
*
|
|
5766
5957
|
* @returns Reference to `this` in order to allow method chaining
|
|
5767
5958
|
*/
|
|
5768
5959
|
setPreserveHeaderStateOnScroll(
|
|
@@ -5772,8 +5963,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5772
5963
|
bPreserveHeaderStateOnScroll?: boolean
|
|
5773
5964
|
): this;
|
|
5774
5965
|
/**
|
|
5775
|
-
* @since 1.44.0
|
|
5776
|
-
*
|
|
5777
5966
|
* Sets a new value for property {@link #getSectionTitleLevel sectionTitleLevel}.
|
|
5778
5967
|
*
|
|
5779
5968
|
* Determines the ARIA level of the `ObjectPageSection` and `ObjectPageSubSection` titles. The ARIA level
|
|
@@ -5800,6 +5989,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5800
5989
|
*
|
|
5801
5990
|
* Default value is `Auto`.
|
|
5802
5991
|
*
|
|
5992
|
+
* @since 1.44.0
|
|
5993
|
+
*
|
|
5803
5994
|
* @returns Reference to `this` in order to allow method chaining
|
|
5804
5995
|
*/
|
|
5805
5996
|
setSectionTitleLevel(
|
|
@@ -5820,6 +6011,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5820
6011
|
* **Note:** Updating the `selectedSection` with a value of `null` resets the `selectedSection` to the first
|
|
5821
6012
|
* visible section and scrolls the page to the top.
|
|
5822
6013
|
*
|
|
6014
|
+
*
|
|
5823
6015
|
* @returns Returns `this` to allow method chaining
|
|
5824
6016
|
*/
|
|
5825
6017
|
setSelectedSection(
|
|
@@ -5837,6 +6029,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5837
6029
|
*
|
|
5838
6030
|
* Default value is `true`.
|
|
5839
6031
|
*
|
|
6032
|
+
*
|
|
5840
6033
|
* @returns Reference to `this` in order to allow method chaining
|
|
5841
6034
|
*/
|
|
5842
6035
|
setShowAnchorBar(
|
|
@@ -5855,6 +6048,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5855
6048
|
*
|
|
5856
6049
|
* Default value is `true`.
|
|
5857
6050
|
*
|
|
6051
|
+
*
|
|
5858
6052
|
* @returns Reference to `this` in order to allow method chaining
|
|
5859
6053
|
*/
|
|
5860
6054
|
setShowAnchorBarPopover(
|
|
@@ -5864,8 +6058,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5864
6058
|
bShowAnchorBarPopover?: boolean
|
|
5865
6059
|
): this;
|
|
5866
6060
|
/**
|
|
5867
|
-
* @since 1.34.0
|
|
5868
|
-
*
|
|
5869
6061
|
* Sets a new value for property {@link #getShowEditHeaderButton showEditHeaderButton}.
|
|
5870
6062
|
*
|
|
5871
6063
|
* Determines whether an Edit button will be displayed in Header Content.
|
|
@@ -5877,6 +6069,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5877
6069
|
*
|
|
5878
6070
|
* Default value is `false`.
|
|
5879
6071
|
*
|
|
6072
|
+
* @since 1.34.0
|
|
6073
|
+
*
|
|
5880
6074
|
* @returns Reference to `this` in order to allow method chaining
|
|
5881
6075
|
*/
|
|
5882
6076
|
setShowEditHeaderButton(
|
|
@@ -5886,8 +6080,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5886
6080
|
bShowEditHeaderButton?: boolean
|
|
5887
6081
|
): this;
|
|
5888
6082
|
/**
|
|
5889
|
-
* @since 1.40
|
|
5890
|
-
*
|
|
5891
6083
|
* Sets a new value for property {@link #getShowFooter showFooter}.
|
|
5892
6084
|
*
|
|
5893
6085
|
* Determines whether the footer is visible.
|
|
@@ -5896,6 +6088,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5896
6088
|
*
|
|
5897
6089
|
* Default value is `false`.
|
|
5898
6090
|
*
|
|
6091
|
+
* @since 1.40
|
|
6092
|
+
*
|
|
5899
6093
|
* @returns Reference to `this` in order to allow method chaining
|
|
5900
6094
|
*/
|
|
5901
6095
|
setShowFooter(
|
|
@@ -5913,6 +6107,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5913
6107
|
*
|
|
5914
6108
|
* Default value is `true`.
|
|
5915
6109
|
*
|
|
6110
|
+
*
|
|
5916
6111
|
* @returns Reference to `this` in order to allow method chaining
|
|
5917
6112
|
*/
|
|
5918
6113
|
setShowHeaderContent(
|
|
@@ -5922,8 +6117,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5922
6117
|
bShowHeaderContent?: boolean
|
|
5923
6118
|
): this;
|
|
5924
6119
|
/**
|
|
5925
|
-
* @since 1.32.0
|
|
5926
|
-
*
|
|
5927
6120
|
* Sets a new value for property {@link #getShowOnlyHighImportance showOnlyHighImportance}.
|
|
5928
6121
|
*
|
|
5929
6122
|
* Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
|
|
@@ -5932,6 +6125,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5932
6125
|
*
|
|
5933
6126
|
* Default value is `false`.
|
|
5934
6127
|
*
|
|
6128
|
+
* @since 1.32.0
|
|
6129
|
+
*
|
|
5935
6130
|
* @returns Reference to `this` in order to allow method chaining
|
|
5936
6131
|
*/
|
|
5937
6132
|
setShowOnlyHighImportance(
|
|
@@ -5952,6 +6147,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5952
6147
|
*
|
|
5953
6148
|
* Default value is `false`.
|
|
5954
6149
|
*
|
|
6150
|
+
*
|
|
5955
6151
|
* @returns Reference to `this` in order to allow method chaining
|
|
5956
6152
|
*/
|
|
5957
6153
|
setShowTitleInHeaderContent(
|
|
@@ -5969,6 +6165,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5969
6165
|
*
|
|
5970
6166
|
* Default value is `TitleOnTop`.
|
|
5971
6167
|
*
|
|
6168
|
+
*
|
|
5972
6169
|
* @returns Reference to `this` in order to allow method chaining
|
|
5973
6170
|
*/
|
|
5974
6171
|
setSubSectionLayout(
|
|
@@ -5980,8 +6177,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5980
6177
|
| keyof typeof ObjectPageSubSectionLayout
|
|
5981
6178
|
): this;
|
|
5982
6179
|
/**
|
|
5983
|
-
* @since 1.52
|
|
5984
|
-
*
|
|
5985
6180
|
* Sets a new value for property {@link #getToggleHeaderOnTitleClick toggleHeaderOnTitleClick}.
|
|
5986
6181
|
*
|
|
5987
6182
|
* Determines whether the user can switch between the expanded/collapsed states of the `sap.uxap.ObjectPageDynamicHeaderContent`
|
|
@@ -5996,6 +6191,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5996
6191
|
*
|
|
5997
6192
|
* Default value is `true`.
|
|
5998
6193
|
*
|
|
6194
|
+
* @since 1.52
|
|
6195
|
+
*
|
|
5999
6196
|
* @returns Reference to `this` in order to allow method chaining
|
|
6000
6197
|
*/
|
|
6001
6198
|
setToggleHeaderOnTitleClick(
|
|
@@ -6013,6 +6210,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6013
6210
|
*
|
|
6014
6211
|
* Default value is `true`.
|
|
6015
6212
|
*
|
|
6213
|
+
*
|
|
6016
6214
|
* @returns Reference to `this` in order to allow method chaining
|
|
6017
6215
|
*/
|
|
6018
6216
|
setUpperCaseAnchorBar(
|
|
@@ -6033,6 +6231,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6033
6231
|
*
|
|
6034
6232
|
* Default value is `false`.
|
|
6035
6233
|
*
|
|
6234
|
+
*
|
|
6036
6235
|
* @returns Reference to `this` in order to allow method chaining
|
|
6037
6236
|
*/
|
|
6038
6237
|
setUseIconTabBar(
|
|
@@ -6050,6 +6249,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6050
6249
|
*
|
|
6051
6250
|
* Default value is `false`.
|
|
6052
6251
|
*
|
|
6252
|
+
*
|
|
6053
6253
|
* @returns Reference to `this` in order to allow method chaining
|
|
6054
6254
|
*/
|
|
6055
6255
|
setUseTwoColumnsForLargeScreen(
|
|
@@ -6078,12 +6278,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6078
6278
|
upperCaseAnchorBar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6079
6279
|
|
|
6080
6280
|
/**
|
|
6081
|
-
* @since 1.58
|
|
6082
|
-
*
|
|
6083
6281
|
* Determines the background color of the `AnchorBar`.
|
|
6084
6282
|
*
|
|
6085
6283
|
* **Note:** The default value of `backgroundDesignAnchorBar` property is null. If the property is not set,
|
|
6086
6284
|
* the color of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
6285
|
+
*
|
|
6286
|
+
* @since 1.58
|
|
6087
6287
|
*/
|
|
6088
6288
|
backgroundDesignAnchorBar?:
|
|
6089
6289
|
| (BackgroundDesign | keyof typeof BackgroundDesign)
|
|
@@ -6109,8 +6309,6 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6109
6309
|
| `{${string}}`;
|
|
6110
6310
|
|
|
6111
6311
|
/**
|
|
6112
|
-
* @since 1.44.0
|
|
6113
|
-
*
|
|
6114
6312
|
* Determines the ARIA level of the `ObjectPageSection` and `ObjectPageSubSection` titles. The ARIA level
|
|
6115
6313
|
* is used by assisting technologies, such as screen readers, to create a hierarchical site map for faster
|
|
6116
6314
|
* navigation.
|
|
@@ -6130,6 +6328,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6130
6328
|
*
|
|
6131
6329
|
* - It is possible to define a `titleLevel` on `ObjectPageSection` or `ObjectPageSubSection` level.
|
|
6132
6330
|
* In this case the value of this property will be ignored.
|
|
6331
|
+
*
|
|
6332
|
+
* @since 1.44.0
|
|
6133
6333
|
*/
|
|
6134
6334
|
sectionTitleLevel?:
|
|
6135
6335
|
| (TitleLevel | keyof typeof TitleLevel)
|
|
@@ -6163,36 +6363,34 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6163
6363
|
showTitleInHeaderContent?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6164
6364
|
|
|
6165
6365
|
/**
|
|
6166
|
-
* @since 1.32.0
|
|
6167
|
-
*
|
|
6168
6366
|
* Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
|
|
6367
|
+
*
|
|
6368
|
+
* @since 1.32.0
|
|
6169
6369
|
*/
|
|
6170
6370
|
showOnlyHighImportance?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6171
6371
|
|
|
6172
6372
|
/**
|
|
6173
|
-
* @since 1.34.0
|
|
6174
|
-
*
|
|
6175
6373
|
* Determines whether the page is a child page and renders it with a different design. Child pages have
|
|
6176
6374
|
* an additional (darker/lighter) stripe on the left side of their header content area.
|
|
6177
6375
|
*
|
|
6178
6376
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
6179
6377
|
* for the `headerTitle` aggregation.
|
|
6378
|
+
*
|
|
6379
|
+
* @since 1.34.0
|
|
6180
6380
|
*/
|
|
6181
6381
|
isChildPage?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6182
6382
|
|
|
6183
6383
|
/**
|
|
6184
|
-
* @since 1.34.0
|
|
6185
|
-
*
|
|
6186
6384
|
* Determines whether Header Content will always be expanded on desktop.
|
|
6187
6385
|
*
|
|
6188
6386
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
6189
6387
|
* for the `headerTitle` aggregation.
|
|
6388
|
+
*
|
|
6389
|
+
* @since 1.34.0
|
|
6190
6390
|
*/
|
|
6191
6391
|
alwaysShowContentHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6192
6392
|
|
|
6193
6393
|
/**
|
|
6194
|
-
* @since 1.52
|
|
6195
|
-
*
|
|
6196
6394
|
* Determines whether the Header Content area can be pinned.
|
|
6197
6395
|
*
|
|
6198
6396
|
* When set to `true`, a pin button is displayed within the Header Content area. The pin button allows the
|
|
@@ -6200,12 +6398,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6200
6398
|
*
|
|
6201
6399
|
* **Note:** This property is only taken into account if an instance of `sap.uxap.ObjectPageDynamicHeaderTitle`
|
|
6202
6400
|
* is used for the `headerTitle` aggregation.
|
|
6401
|
+
*
|
|
6402
|
+
* @since 1.52
|
|
6203
6403
|
*/
|
|
6204
6404
|
headerContentPinnable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6205
6405
|
|
|
6206
6406
|
/**
|
|
6207
|
-
* @since 1.93
|
|
6208
|
-
*
|
|
6209
6407
|
* Determines whether the `sap.uxap.ObjectPageDynamicHeaderContent` is pinned.
|
|
6210
6408
|
*
|
|
6211
6409
|
* The property can be changed explicitly with its setter or in the occurrence of the following user interactions:
|
|
@@ -6220,12 +6418,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6220
6418
|
* - The `headerContentPinnable` property is `true`
|
|
6221
6419
|
* - The `sap.uxap.ObjectPageDynamicHeaderContent` is expanded
|
|
6222
6420
|
* - The `preserveHeaderStateOnScroll` property or the rules for it to work are `false`
|
|
6421
|
+
*
|
|
6422
|
+
* @since 1.93
|
|
6223
6423
|
*/
|
|
6224
6424
|
headerContentPinned?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6225
6425
|
|
|
6226
6426
|
/**
|
|
6227
|
-
* @since 1.52
|
|
6228
|
-
*
|
|
6229
6427
|
* Determines whether the user can switch between the expanded/collapsed states of the `sap.uxap.ObjectPageDynamicHeaderContent`
|
|
6230
6428
|
* by clicking on the `sap.uxap.ObjectPageDynamicHeaderTitle`. If set to `false`, the `sap.uxap.ObjectPageDynamicHeaderTitle`
|
|
6231
6429
|
* is not clickable and the application must provide other means for expanding/collapsing the `sap.uxap.ObjectPageDynamicHeaderContent`,
|
|
@@ -6233,12 +6431,12 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6233
6431
|
*
|
|
6234
6432
|
* **Note:** This property is only taken into account if an instance of `sap.uxap.ObjectPageDynamicHeaderTitle`
|
|
6235
6433
|
* is used for the `headerTitle` aggregation.
|
|
6434
|
+
*
|
|
6435
|
+
* @since 1.52
|
|
6236
6436
|
*/
|
|
6237
6437
|
toggleHeaderOnTitleClick?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6238
6438
|
|
|
6239
6439
|
/**
|
|
6240
|
-
* @since 1.52
|
|
6241
|
-
*
|
|
6242
6440
|
* Preserves the current header state when scrolling. For example, if the user expands the header by clicking
|
|
6243
6441
|
* on the title and then scrolls down the page, the header will remain expanded.
|
|
6244
6442
|
*
|
|
@@ -6248,31 +6446,33 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6248
6446
|
* - Based on internal rules, the value of the property is not always taken into account - for example,
|
|
6249
6447
|
* when the control is rendered on tablet or mobile and the control`s title and header are with height larger
|
|
6250
6448
|
* than the given threshold.
|
|
6449
|
+
*
|
|
6450
|
+
* @since 1.52
|
|
6251
6451
|
*/
|
|
6252
6452
|
preserveHeaderStateOnScroll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6253
6453
|
|
|
6254
6454
|
/**
|
|
6255
|
-
* @since 1.34.0
|
|
6256
|
-
*
|
|
6257
6455
|
* Determines whether an Edit button will be displayed in Header Content.
|
|
6258
6456
|
*
|
|
6259
6457
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
6260
6458
|
* for the `headerTitle` aggregation.
|
|
6459
|
+
*
|
|
6460
|
+
* @since 1.34.0
|
|
6261
6461
|
*/
|
|
6262
6462
|
showEditHeaderButton?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6263
6463
|
|
|
6264
6464
|
/**
|
|
6265
|
-
* @since 1.34.0
|
|
6266
|
-
*
|
|
6267
6465
|
* Specifies whether the object page enables flexibility features, such as hiding and adding sections.
|
|
6268
6466
|
* For more information about SAPUI5 flexibility, refer to the Developer Guide.
|
|
6467
|
+
*
|
|
6468
|
+
* @since 1.34.0
|
|
6269
6469
|
*/
|
|
6270
6470
|
flexEnabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6271
6471
|
|
|
6272
6472
|
/**
|
|
6273
|
-
* @since 1.40
|
|
6274
|
-
*
|
|
6275
6473
|
* Determines whether the footer is visible.
|
|
6474
|
+
*
|
|
6475
|
+
* @since 1.40
|
|
6276
6476
|
*/
|
|
6277
6477
|
showFooter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6278
6478
|
|
|
@@ -6300,32 +6500,32 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6300
6500
|
| `{${string}}`;
|
|
6301
6501
|
|
|
6302
6502
|
/**
|
|
6303
|
-
* @since 1.40
|
|
6304
|
-
*
|
|
6305
6503
|
* Object page floating footer.
|
|
6504
|
+
*
|
|
6505
|
+
* @since 1.40
|
|
6306
6506
|
*/
|
|
6307
6507
|
footer?: IBar;
|
|
6308
6508
|
|
|
6309
6509
|
/**
|
|
6310
|
-
* @since 1.61
|
|
6311
|
-
*
|
|
6312
6510
|
* Accessible landmark settings to be applied on the containers of the `sap.uxap.ObjectPageLayout` control.
|
|
6313
6511
|
*
|
|
6314
6512
|
* If not set, no landmarks will be written.
|
|
6513
|
+
*
|
|
6514
|
+
* @since 1.61
|
|
6315
6515
|
*/
|
|
6316
6516
|
landmarkInfo?: ObjectPageAccessibleLandmarkInfo;
|
|
6317
6517
|
|
|
6318
6518
|
/**
|
|
6319
|
-
* @since 1.44.0
|
|
6320
|
-
*
|
|
6321
6519
|
* The section that is selected by default on load.
|
|
6520
|
+
*
|
|
6521
|
+
* @since 1.44.0
|
|
6322
6522
|
*/
|
|
6323
6523
|
selectedSection?: ObjectPageSection | string;
|
|
6324
6524
|
|
|
6325
6525
|
/**
|
|
6326
|
-
* @since 1.93
|
|
6327
|
-
*
|
|
6328
6526
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
6527
|
+
*
|
|
6528
|
+
* @since 1.93
|
|
6329
6529
|
*/
|
|
6330
6530
|
headerContentPinnedStateChange?: (
|
|
6331
6531
|
oEvent: ObjectPageLayout$HeaderContentPinnedStateChangeEvent
|
|
@@ -6337,9 +6537,9 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6337
6537
|
toggleAnchorBar?: (oEvent: ObjectPageLayout$ToggleAnchorBarEvent) => void;
|
|
6338
6538
|
|
|
6339
6539
|
/**
|
|
6340
|
-
* @since 1.73
|
|
6341
|
-
*
|
|
6342
6540
|
* Fired when the current section is changed by scrolling.
|
|
6541
|
+
*
|
|
6542
|
+
* @since 1.73
|
|
6343
6543
|
*/
|
|
6344
6544
|
sectionChange?: (oEvent: ObjectPageLayout$SectionChangeEvent) => void;
|
|
6345
6545
|
|
|
@@ -6349,24 +6549,24 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
6349
6549
|
editHeaderButtonPress?: (oEvent: Event) => void;
|
|
6350
6550
|
|
|
6351
6551
|
/**
|
|
6352
|
-
* @since 1.118
|
|
6353
|
-
*
|
|
6354
6552
|
* The event is fired before the selected section is changed using the navigation. This event can be aborted
|
|
6355
6553
|
* by the application with preventDefault(), which means that there will be no navigation.
|
|
6554
|
+
*
|
|
6555
|
+
* @since 1.118
|
|
6356
6556
|
*/
|
|
6357
6557
|
beforeNavigate?: (oEvent: ObjectPageLayout$BeforeNavigateEvent) => void;
|
|
6358
6558
|
|
|
6359
6559
|
/**
|
|
6360
|
-
* @since 1.40
|
|
6361
|
-
*
|
|
6362
6560
|
* The event is fired when the selected section is changed using the navigation.
|
|
6561
|
+
*
|
|
6562
|
+
* @since 1.40
|
|
6363
6563
|
*/
|
|
6364
6564
|
navigate?: (oEvent: ObjectPageLayout$NavigateEvent) => void;
|
|
6365
6565
|
|
|
6366
6566
|
/**
|
|
6367
|
-
* @since 1.77
|
|
6368
|
-
*
|
|
6369
6567
|
* Fired when the visibility of subsections is changed.
|
|
6568
|
+
*
|
|
6569
|
+
* @since 1.77
|
|
6370
6570
|
*/
|
|
6371
6571
|
subSectionVisibilityChange?: (
|
|
6372
6572
|
oEvent: ObjectPageLayout$SubSectionVisibilityChangeEvent
|
|
@@ -6479,8 +6679,6 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6479
6679
|
import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6480
6680
|
|
|
6481
6681
|
/**
|
|
6482
|
-
* @since 1.38
|
|
6483
|
-
*
|
|
6484
6682
|
* A helper element that enables a "stashed-based" lazy loading approach for the content of the {@link sap.uxap.ObjectPageSubSection }
|
|
6485
6683
|
* control.
|
|
6486
6684
|
*
|
|
@@ -6493,6 +6691,8 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6493
6691
|
* with `stashed=true` will make the content unstash automatically as the user scrolls.
|
|
6494
6692
|
*
|
|
6495
6693
|
* **Note:** Subsections are required to have an ID when used with `ObjectPageLazyLoader`.
|
|
6694
|
+
*
|
|
6695
|
+
* @since 1.38
|
|
6496
6696
|
*/
|
|
6497
6697
|
export default class ObjectPageLazyLoader extends UI5Element {
|
|
6498
6698
|
/**
|
|
@@ -6532,6 +6732,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6532
6732
|
*
|
|
6533
6733
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
6534
6734
|
*
|
|
6735
|
+
*
|
|
6535
6736
|
* @returns Created class / constructor function
|
|
6536
6737
|
*/
|
|
6537
6738
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -6552,12 +6753,14 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6552
6753
|
/**
|
|
6553
6754
|
* Returns a metadata object for class sap.uxap.ObjectPageLazyLoader.
|
|
6554
6755
|
*
|
|
6756
|
+
*
|
|
6555
6757
|
* @returns Metadata object describing this class
|
|
6556
6758
|
*/
|
|
6557
6759
|
static getMetadata(): ElementMetadata;
|
|
6558
6760
|
/**
|
|
6559
6761
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
6560
6762
|
*
|
|
6763
|
+
*
|
|
6561
6764
|
* @returns Reference to `this` in order to allow method chaining
|
|
6562
6765
|
*/
|
|
6563
6766
|
addContent(
|
|
@@ -6569,6 +6772,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6569
6772
|
/**
|
|
6570
6773
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
6571
6774
|
*
|
|
6775
|
+
*
|
|
6572
6776
|
* @returns Reference to `this` in order to allow method chaining
|
|
6573
6777
|
*/
|
|
6574
6778
|
destroyContent(): this;
|
|
@@ -6582,6 +6786,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6582
6786
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
6583
6787
|
* its index if found or -1 otherwise.
|
|
6584
6788
|
*
|
|
6789
|
+
*
|
|
6585
6790
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6586
6791
|
*/
|
|
6587
6792
|
indexOfContent(
|
|
@@ -6593,6 +6798,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6593
6798
|
/**
|
|
6594
6799
|
* Inserts a content into the aggregation {@link #getContent content}.
|
|
6595
6800
|
*
|
|
6801
|
+
*
|
|
6596
6802
|
* @returns Reference to `this` in order to allow method chaining
|
|
6597
6803
|
*/
|
|
6598
6804
|
insertContent(
|
|
@@ -6612,12 +6818,14 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
6612
6818
|
*
|
|
6613
6819
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
6614
6820
|
*
|
|
6821
|
+
*
|
|
6615
6822
|
* @returns An array of the removed elements (might be empty)
|
|
6616
6823
|
*/
|
|
6617
6824
|
removeAllContent(): Control[];
|
|
6618
6825
|
/**
|
|
6619
6826
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
6620
6827
|
*
|
|
6828
|
+
*
|
|
6621
6829
|
* @returns The removed content or `null`
|
|
6622
6830
|
*/
|
|
6623
6831
|
removeContent(
|
|
@@ -6656,13 +6864,13 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6656
6864
|
} from "sap/ui/base/ManagedObject";
|
|
6657
6865
|
|
|
6658
6866
|
/**
|
|
6659
|
-
* @since 1.26
|
|
6660
|
-
*
|
|
6661
6867
|
* Top-level information container of an {@link sap.uxap.ObjectPageLayout}.
|
|
6662
6868
|
*
|
|
6663
6869
|
* The `ObjectPageSection`'s purpose is to aggregate subsections.
|
|
6664
6870
|
*
|
|
6665
6871
|
* **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
|
|
6872
|
+
*
|
|
6873
|
+
* @since 1.26
|
|
6666
6874
|
*/
|
|
6667
6875
|
export default class ObjectPageSection extends ObjectPageSectionBase {
|
|
6668
6876
|
/**
|
|
@@ -6702,6 +6910,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6702
6910
|
*
|
|
6703
6911
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.uxap.ObjectPageSectionBase.extend}.
|
|
6704
6912
|
*
|
|
6913
|
+
*
|
|
6705
6914
|
* @returns Created class / constructor function
|
|
6706
6915
|
*/
|
|
6707
6916
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -6722,12 +6931,14 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6722
6931
|
/**
|
|
6723
6932
|
* Returns a metadata object for class sap.uxap.ObjectPageSection.
|
|
6724
6933
|
*
|
|
6934
|
+
*
|
|
6725
6935
|
* @returns Metadata object describing this class
|
|
6726
6936
|
*/
|
|
6727
6937
|
static getMetadata(): ElementMetadata;
|
|
6728
6938
|
/**
|
|
6729
6939
|
* Adds some subSection to the aggregation {@link #getSubSections subSections}.
|
|
6730
6940
|
*
|
|
6941
|
+
*
|
|
6731
6942
|
* @returns Reference to `this` in order to allow method chaining
|
|
6732
6943
|
*/
|
|
6733
6944
|
addSubSection(
|
|
@@ -6737,27 +6948,28 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6737
6948
|
oSubSection: ObjectPageSubSection
|
|
6738
6949
|
): this;
|
|
6739
6950
|
/**
|
|
6740
|
-
* @since 1.106
|
|
6741
|
-
*
|
|
6742
6951
|
* Destroys the heading in the aggregation {@link #getHeading heading}.
|
|
6743
6952
|
*
|
|
6953
|
+
* @since 1.106
|
|
6954
|
+
*
|
|
6744
6955
|
* @returns Reference to `this` in order to allow method chaining
|
|
6745
6956
|
*/
|
|
6746
6957
|
destroyHeading(): this;
|
|
6747
6958
|
/**
|
|
6748
6959
|
* Destroys all the subSections in the aggregation {@link #getSubSections subSections}.
|
|
6749
6960
|
*
|
|
6961
|
+
*
|
|
6750
6962
|
* @returns Reference to `this` in order to allow method chaining
|
|
6751
6963
|
*/
|
|
6752
6964
|
destroySubSections(): this;
|
|
6753
6965
|
/**
|
|
6754
|
-
* @since 1.106
|
|
6755
|
-
*
|
|
6756
6966
|
* Gets content of aggregation {@link #getHeading heading}.
|
|
6757
6967
|
*
|
|
6758
6968
|
* Section heading content.
|
|
6759
6969
|
*
|
|
6760
6970
|
* Note: For some accessibility concerns we encourage you to use non-focusable elements.
|
|
6971
|
+
*
|
|
6972
|
+
* @since 1.106
|
|
6761
6973
|
*/
|
|
6762
6974
|
getHeading(): Control;
|
|
6763
6975
|
/**
|
|
@@ -6772,6 +6984,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6772
6984
|
*
|
|
6773
6985
|
* Default value is `true`.
|
|
6774
6986
|
*
|
|
6987
|
+
*
|
|
6775
6988
|
* @returns Value of property `showTitle`
|
|
6776
6989
|
*/
|
|
6777
6990
|
getShowTitle(): boolean;
|
|
@@ -6788,6 +7001,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6788
7001
|
*
|
|
6789
7002
|
* Default value is `true`.
|
|
6790
7003
|
*
|
|
7004
|
+
*
|
|
6791
7005
|
* @returns Value of property `titleUppercase`
|
|
6792
7006
|
*/
|
|
6793
7007
|
getTitleUppercase(): boolean;
|
|
@@ -6798,6 +7012,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6798
7012
|
*
|
|
6799
7013
|
* Default value is `false`.
|
|
6800
7014
|
*
|
|
7015
|
+
*
|
|
6801
7016
|
* @returns Value of property `wrapTitle`
|
|
6802
7017
|
*/
|
|
6803
7018
|
getWrapTitle(): boolean;
|
|
@@ -6805,6 +7020,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6805
7020
|
* Checks for the provided `sap.uxap.ObjectPageSubSection` in the aggregation {@link #getSubSections subSections}.
|
|
6806
7021
|
* and returns its index if found or -1 otherwise.
|
|
6807
7022
|
*
|
|
7023
|
+
*
|
|
6808
7024
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6809
7025
|
*/
|
|
6810
7026
|
indexOfSubSection(
|
|
@@ -6816,6 +7032,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6816
7032
|
/**
|
|
6817
7033
|
* Inserts a subSection into the aggregation {@link #getSubSections subSections}.
|
|
6818
7034
|
*
|
|
7035
|
+
*
|
|
6819
7036
|
* @returns Reference to `this` in order to allow method chaining
|
|
6820
7037
|
*/
|
|
6821
7038
|
insertSubSection(
|
|
@@ -6835,12 +7052,14 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6835
7052
|
*
|
|
6836
7053
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
6837
7054
|
*
|
|
7055
|
+
*
|
|
6838
7056
|
* @returns An array of the removed elements (might be empty)
|
|
6839
7057
|
*/
|
|
6840
7058
|
removeAllSubSections(): ObjectPageSubSection[];
|
|
6841
7059
|
/**
|
|
6842
7060
|
* Removes a subSection from the aggregation {@link #getSubSections subSections}.
|
|
6843
7061
|
*
|
|
7062
|
+
*
|
|
6844
7063
|
* @returns The removed subSection or `null`
|
|
6845
7064
|
*/
|
|
6846
7065
|
removeSubSection(
|
|
@@ -6850,10 +7069,10 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6850
7069
|
vSubSection: int | string | ObjectPageSubSection
|
|
6851
7070
|
): ObjectPageSubSection | null;
|
|
6852
7071
|
/**
|
|
6853
|
-
* @since 1.106
|
|
6854
|
-
*
|
|
6855
7072
|
* Sets the aggregated {@link #getHeading heading}.
|
|
6856
7073
|
*
|
|
7074
|
+
* @since 1.106
|
|
7075
|
+
*
|
|
6857
7076
|
* @returns Reference to `this` in order to allow method chaining
|
|
6858
7077
|
*/
|
|
6859
7078
|
setHeading(
|
|
@@ -6865,6 +7084,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6865
7084
|
/**
|
|
6866
7085
|
* Sets the associated {@link #getSelectedSubSection selectedSubSection}.
|
|
6867
7086
|
*
|
|
7087
|
+
*
|
|
6868
7088
|
* @returns Reference to `this` in order to allow method chaining
|
|
6869
7089
|
*/
|
|
6870
7090
|
setSelectedSubSection(
|
|
@@ -6883,6 +7103,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6883
7103
|
*
|
|
6884
7104
|
* Default value is `true`.
|
|
6885
7105
|
*
|
|
7106
|
+
*
|
|
6886
7107
|
* @returns Reference to `this` in order to allow method chaining
|
|
6887
7108
|
*/
|
|
6888
7109
|
setShowTitle(
|
|
@@ -6900,6 +7121,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6900
7121
|
*
|
|
6901
7122
|
* Default value is `true`.
|
|
6902
7123
|
*
|
|
7124
|
+
*
|
|
6903
7125
|
* @returns Reference to `this` in order to allow method chaining
|
|
6904
7126
|
*/
|
|
6905
7127
|
setTitleUppercase(
|
|
@@ -6917,6 +7139,7 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6917
7139
|
*
|
|
6918
7140
|
* Default value is `false`.
|
|
6919
7141
|
*
|
|
7142
|
+
*
|
|
6920
7143
|
* @returns Reference to `this` in order to allow method chaining
|
|
6921
7144
|
*/
|
|
6922
7145
|
setWrapTitle(
|
|
@@ -6954,11 +7177,11 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6954
7177
|
| `{${string}}`;
|
|
6955
7178
|
|
|
6956
7179
|
/**
|
|
6957
|
-
* @since 1.106
|
|
6958
|
-
*
|
|
6959
7180
|
* Section heading content.
|
|
6960
7181
|
*
|
|
6961
7182
|
* Note: For some accessibility concerns we encourage you to use non-focusable elements.
|
|
7183
|
+
*
|
|
7184
|
+
* @since 1.106
|
|
6962
7185
|
*/
|
|
6963
7186
|
heading?: Control;
|
|
6964
7187
|
|
|
@@ -6983,11 +7206,11 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6983
7206
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
6984
7207
|
|
|
6985
7208
|
/**
|
|
6986
|
-
* @since 1.26
|
|
6987
|
-
*
|
|
6988
7209
|
* An abstract container for sections and subsections in the {@link sap.uxap.ObjectPageLayout}.
|
|
7210
|
+
*
|
|
7211
|
+
* @since 1.26
|
|
6989
7212
|
*/
|
|
6990
|
-
export default class ObjectPageSectionBase extends Control {
|
|
7213
|
+
export default abstract class ObjectPageSectionBase extends Control {
|
|
6991
7214
|
/**
|
|
6992
7215
|
* Constructor for a new `ObjectPageSectionBase`.
|
|
6993
7216
|
*
|
|
@@ -7025,6 +7248,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7025
7248
|
*
|
|
7026
7249
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7027
7250
|
*
|
|
7251
|
+
*
|
|
7028
7252
|
* @returns Created class / constructor function
|
|
7029
7253
|
*/
|
|
7030
7254
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -7045,6 +7269,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7045
7269
|
/**
|
|
7046
7270
|
* Returns a metadata object for class sap.uxap.ObjectPageSectionBase.
|
|
7047
7271
|
*
|
|
7272
|
+
*
|
|
7048
7273
|
* @returns Metadata object describing this class
|
|
7049
7274
|
*/
|
|
7050
7275
|
static getMetadata(): ElementMetadata;
|
|
@@ -7055,6 +7280,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7055
7280
|
/**
|
|
7056
7281
|
* Destroys the customAnchorBarButton in the aggregation {@link #getCustomAnchorBarButton customAnchorBarButton}.
|
|
7057
7282
|
*
|
|
7283
|
+
*
|
|
7058
7284
|
* @returns Reference to `this` in order to allow method chaining
|
|
7059
7285
|
*/
|
|
7060
7286
|
destroyCustomAnchorBarButton(): this;
|
|
@@ -7070,24 +7296,24 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7070
7296
|
*/
|
|
7071
7297
|
getCustomAnchorBarButton(): Button;
|
|
7072
7298
|
/**
|
|
7073
|
-
* @since 1.32.0
|
|
7074
|
-
*
|
|
7075
7299
|
* Gets current value of property {@link #getImportance importance}.
|
|
7076
7300
|
*
|
|
7077
7301
|
* Determines whether the section will be hidden on low resolutions.
|
|
7078
7302
|
*
|
|
7079
7303
|
* Default value is `High`.
|
|
7080
7304
|
*
|
|
7305
|
+
* @since 1.32.0
|
|
7306
|
+
*
|
|
7081
7307
|
* @returns Value of property `importance`
|
|
7082
7308
|
*/
|
|
7083
7309
|
getImportance(): Importance | keyof typeof Importance;
|
|
7084
7310
|
/**
|
|
7085
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7086
|
-
*
|
|
7087
7311
|
* Returns the control name text.
|
|
7088
7312
|
*
|
|
7089
7313
|
* To be overwritten by the specific control method.
|
|
7090
7314
|
*
|
|
7315
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7316
|
+
*
|
|
7091
7317
|
* @returns control name text
|
|
7092
7318
|
*/
|
|
7093
7319
|
getSectionText(): string;
|
|
@@ -7100,12 +7326,11 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7100
7326
|
* instead of the section title. This behavior is true even if the `showTitle` propeprty of {@link sap.uxap.ObjectPageSubSection }
|
|
7101
7327
|
* is set to `false`.
|
|
7102
7328
|
*
|
|
7329
|
+
*
|
|
7103
7330
|
* @returns Value of property `title`
|
|
7104
7331
|
*/
|
|
7105
7332
|
getTitle(): string;
|
|
7106
7333
|
/**
|
|
7107
|
-
* @since 1.44.0
|
|
7108
|
-
*
|
|
7109
7334
|
* Gets current value of property {@link #getTitleLevel titleLevel}.
|
|
7110
7335
|
*
|
|
7111
7336
|
* Determines the ARIA level of the `ObjectPageSectionBase` title. The ARIA level is used by assisting technologies,
|
|
@@ -7118,6 +7343,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7118
7343
|
*
|
|
7119
7344
|
* Default value is `Auto`.
|
|
7120
7345
|
*
|
|
7346
|
+
* @since 1.44.0
|
|
7347
|
+
*
|
|
7121
7348
|
* @returns Value of property `titleLevel`
|
|
7122
7349
|
*/
|
|
7123
7350
|
getTitleLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
@@ -7128,12 +7355,14 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7128
7355
|
*
|
|
7129
7356
|
* Default value is `true`.
|
|
7130
7357
|
*
|
|
7358
|
+
*
|
|
7131
7359
|
* @returns Value of property `visible`
|
|
7132
7360
|
*/
|
|
7133
7361
|
getVisible(): boolean;
|
|
7134
7362
|
/**
|
|
7135
7363
|
* Sets the aggregated {@link #getCustomAnchorBarButton customAnchorBarButton}.
|
|
7136
7364
|
*
|
|
7365
|
+
*
|
|
7137
7366
|
* @returns Reference to `this` in order to allow method chaining
|
|
7138
7367
|
*/
|
|
7139
7368
|
setCustomAnchorBarButton(
|
|
@@ -7143,8 +7372,6 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7143
7372
|
oCustomAnchorBarButton: Button
|
|
7144
7373
|
): this;
|
|
7145
7374
|
/**
|
|
7146
|
-
* @since 1.32.0
|
|
7147
|
-
*
|
|
7148
7375
|
* Sets a new value for property {@link #getImportance importance}.
|
|
7149
7376
|
*
|
|
7150
7377
|
* Determines whether the section will be hidden on low resolutions.
|
|
@@ -7153,6 +7380,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7153
7380
|
*
|
|
7154
7381
|
* Default value is `High`.
|
|
7155
7382
|
*
|
|
7383
|
+
* @since 1.32.0
|
|
7384
|
+
*
|
|
7156
7385
|
* @returns Reference to `this` in order to allow method chaining
|
|
7157
7386
|
*/
|
|
7158
7387
|
setImportance(
|
|
@@ -7172,6 +7401,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7172
7401
|
*
|
|
7173
7402
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7174
7403
|
*
|
|
7404
|
+
*
|
|
7175
7405
|
* @returns Reference to `this` in order to allow method chaining
|
|
7176
7406
|
*/
|
|
7177
7407
|
setTitle(
|
|
@@ -7181,8 +7411,6 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7181
7411
|
sTitle?: string
|
|
7182
7412
|
): this;
|
|
7183
7413
|
/**
|
|
7184
|
-
* @since 1.44.0
|
|
7185
|
-
*
|
|
7186
7414
|
* Sets a new value for property {@link #getTitleLevel titleLevel}.
|
|
7187
7415
|
*
|
|
7188
7416
|
* Determines the ARIA level of the `ObjectPageSectionBase` title. The ARIA level is used by assisting technologies,
|
|
@@ -7197,6 +7425,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7197
7425
|
*
|
|
7198
7426
|
* Default value is `Auto`.
|
|
7199
7427
|
*
|
|
7428
|
+
* @since 1.44.0
|
|
7429
|
+
*
|
|
7200
7430
|
* @returns Reference to `this` in order to allow method chaining
|
|
7201
7431
|
*/
|
|
7202
7432
|
setTitleLevel(
|
|
@@ -7214,6 +7444,7 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7214
7444
|
*
|
|
7215
7445
|
* Default value is `true`.
|
|
7216
7446
|
*
|
|
7447
|
+
*
|
|
7217
7448
|
* @returns Reference to `this` in order to allow method chaining
|
|
7218
7449
|
*/
|
|
7219
7450
|
setVisible(
|
|
@@ -7223,11 +7454,11 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7223
7454
|
bVisible?: boolean
|
|
7224
7455
|
): this;
|
|
7225
7456
|
/**
|
|
7226
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7227
|
-
*
|
|
7228
7457
|
* Performs the update of the invisible text label. This method is called for example when the section title
|
|
7229
7458
|
* is changed.
|
|
7230
7459
|
*
|
|
7460
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7461
|
+
*
|
|
7231
7462
|
* @returns this for chaining
|
|
7232
7463
|
*/
|
|
7233
7464
|
updateInvisibleTextLabelValue(): this;
|
|
@@ -7244,8 +7475,6 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7244
7475
|
title?: string | PropertyBindingInfo;
|
|
7245
7476
|
|
|
7246
7477
|
/**
|
|
7247
|
-
* @since 1.44.0
|
|
7248
|
-
*
|
|
7249
7478
|
* Determines the ARIA level of the `ObjectPageSectionBase` title. The ARIA level is used by assisting technologies,
|
|
7250
7479
|
* such as screen readers, to create a hierarchical site map for faster navigation.
|
|
7251
7480
|
*
|
|
@@ -7253,6 +7482,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7253
7482
|
* `ObjectPageSectionBase` title HTML tag from H1 to H6.
|
|
7254
7483
|
* For example: if `titleLevel` is `TitleLevel.H1`, it will result as aria-level of 1 added to the `ObjectPageSectionBase`
|
|
7255
7484
|
* title.
|
|
7485
|
+
*
|
|
7486
|
+
* @since 1.44.0
|
|
7256
7487
|
*/
|
|
7257
7488
|
titleLevel?:
|
|
7258
7489
|
| (TitleLevel | keyof typeof TitleLevel)
|
|
@@ -7265,9 +7496,9 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
7265
7496
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7266
7497
|
|
|
7267
7498
|
/**
|
|
7268
|
-
* @since 1.32.0
|
|
7269
|
-
*
|
|
7270
7499
|
* Determines whether the section will be hidden on low resolutions.
|
|
7500
|
+
*
|
|
7501
|
+
* @since 1.32.0
|
|
7271
7502
|
*/
|
|
7272
7503
|
importance?:
|
|
7273
7504
|
| (Importance | keyof typeof Importance)
|
|
@@ -7306,8 +7537,6 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7306
7537
|
} from "sap/ui/base/ManagedObject";
|
|
7307
7538
|
|
|
7308
7539
|
/**
|
|
7309
|
-
* @since 1.26
|
|
7310
|
-
*
|
|
7311
7540
|
* Second-level information container of an {@link sap.uxap.ObjectPageLayout}.
|
|
7312
7541
|
*
|
|
7313
7542
|
* An `ObjectPageSubSection` may only be used within sections in the `ObjectPageLayout`. Subsections are
|
|
@@ -7321,6 +7550,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7321
7550
|
* `visibleRowCountMode` set to `Auto`.
|
|
7322
7551
|
*
|
|
7323
7552
|
* **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
|
|
7553
|
+
*
|
|
7554
|
+
* @since 1.26
|
|
7324
7555
|
*/
|
|
7325
7556
|
export default class ObjectPageSubSection extends ObjectPageSectionBase {
|
|
7326
7557
|
/**
|
|
@@ -7360,6 +7591,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7360
7591
|
*
|
|
7361
7592
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.uxap.ObjectPageSectionBase.extend}.
|
|
7362
7593
|
*
|
|
7594
|
+
*
|
|
7363
7595
|
* @returns Created class / constructor function
|
|
7364
7596
|
*/
|
|
7365
7597
|
static extend<T extends Record<string, unknown>>(
|
|
@@ -7380,12 +7612,14 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7380
7612
|
/**
|
|
7381
7613
|
* Returns a metadata object for class sap.uxap.ObjectPageSubSection.
|
|
7382
7614
|
*
|
|
7615
|
+
*
|
|
7383
7616
|
* @returns Metadata object describing this class
|
|
7384
7617
|
*/
|
|
7385
7618
|
static getMetadata(): ElementMetadata;
|
|
7386
7619
|
/**
|
|
7387
7620
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
7388
7621
|
*
|
|
7622
|
+
*
|
|
7389
7623
|
* @returns Reference to `this` in order to allow method chaining
|
|
7390
7624
|
*/
|
|
7391
7625
|
addAction(
|
|
@@ -7397,6 +7631,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7397
7631
|
/**
|
|
7398
7632
|
* Adds some block to the aggregation {@link #getBlocks blocks}.
|
|
7399
7633
|
*
|
|
7634
|
+
*
|
|
7400
7635
|
* @returns Reference to `this` in order to allow method chaining
|
|
7401
7636
|
*/
|
|
7402
7637
|
addBlock(
|
|
@@ -7408,6 +7643,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7408
7643
|
/**
|
|
7409
7644
|
* Adds some moreBlock to the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
7410
7645
|
*
|
|
7646
|
+
*
|
|
7411
7647
|
* @returns Reference to `this` in order to allow method chaining
|
|
7412
7648
|
*/
|
|
7413
7649
|
addMoreBlock(
|
|
@@ -7419,18 +7655,21 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7419
7655
|
/**
|
|
7420
7656
|
* Destroys all the actions in the aggregation {@link #getActions actions}.
|
|
7421
7657
|
*
|
|
7658
|
+
*
|
|
7422
7659
|
* @returns Reference to `this` in order to allow method chaining
|
|
7423
7660
|
*/
|
|
7424
7661
|
destroyActions(): this;
|
|
7425
7662
|
/**
|
|
7426
7663
|
* Destroys all the blocks in the aggregation {@link #getBlocks blocks}.
|
|
7427
7664
|
*
|
|
7665
|
+
*
|
|
7428
7666
|
* @returns Reference to `this` in order to allow method chaining
|
|
7429
7667
|
*/
|
|
7430
7668
|
destroyBlocks(): this;
|
|
7431
7669
|
/**
|
|
7432
7670
|
* Destroys all the moreBlocks in the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
7433
7671
|
*
|
|
7672
|
+
*
|
|
7434
7673
|
* @returns Reference to `this` in order to allow method chaining
|
|
7435
7674
|
*/
|
|
7436
7675
|
destroyMoreBlocks(): this;
|
|
@@ -7480,6 +7719,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7480
7719
|
*
|
|
7481
7720
|
* Default value is `Collapsed`.
|
|
7482
7721
|
*
|
|
7722
|
+
*
|
|
7483
7723
|
* @returns Value of property `mode`
|
|
7484
7724
|
*/
|
|
7485
7725
|
getMode(): ObjectPageSubSectionMode | keyof typeof ObjectPageSubSectionMode;
|
|
@@ -7490,8 +7730,6 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7490
7730
|
*/
|
|
7491
7731
|
getMoreBlocks(): Control[];
|
|
7492
7732
|
/**
|
|
7493
|
-
* @since 1.77
|
|
7494
|
-
*
|
|
7495
7733
|
* Gets current value of property {@link #getShowTitle showTitle}.
|
|
7496
7734
|
*
|
|
7497
7735
|
* Determines whether to display the `SubSection` title or not.
|
|
@@ -7503,6 +7741,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7503
7741
|
*
|
|
7504
7742
|
* Default value is `true`.
|
|
7505
7743
|
*
|
|
7744
|
+
* @since 1.77
|
|
7745
|
+
*
|
|
7506
7746
|
* @returns Value of property `showTitle`
|
|
7507
7747
|
*/
|
|
7508
7748
|
getShowTitle(): boolean;
|
|
@@ -7513,6 +7753,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7513
7753
|
*
|
|
7514
7754
|
* Default value is `false`.
|
|
7515
7755
|
*
|
|
7756
|
+
*
|
|
7516
7757
|
* @returns Value of property `titleUppercase`
|
|
7517
7758
|
*/
|
|
7518
7759
|
getTitleUppercase(): boolean;
|
|
@@ -7520,6 +7761,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7520
7761
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getActions actions}. and returns
|
|
7521
7762
|
* its index if found or -1 otherwise.
|
|
7522
7763
|
*
|
|
7764
|
+
*
|
|
7523
7765
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
7524
7766
|
*/
|
|
7525
7767
|
indexOfAction(
|
|
@@ -7532,6 +7774,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7532
7774
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getBlocks blocks}. and returns
|
|
7533
7775
|
* its index if found or -1 otherwise.
|
|
7534
7776
|
*
|
|
7777
|
+
*
|
|
7535
7778
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
7536
7779
|
*/
|
|
7537
7780
|
indexOfBlock(
|
|
@@ -7544,6 +7787,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7544
7787
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMoreBlocks moreBlocks}. and
|
|
7545
7788
|
* returns its index if found or -1 otherwise.
|
|
7546
7789
|
*
|
|
7790
|
+
*
|
|
7547
7791
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
7548
7792
|
*/
|
|
7549
7793
|
indexOfMoreBlock(
|
|
@@ -7555,6 +7799,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7555
7799
|
/**
|
|
7556
7800
|
* Inserts a action into the aggregation {@link #getActions actions}.
|
|
7557
7801
|
*
|
|
7802
|
+
*
|
|
7558
7803
|
* @returns Reference to `this` in order to allow method chaining
|
|
7559
7804
|
*/
|
|
7560
7805
|
insertAction(
|
|
@@ -7575,6 +7820,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7575
7820
|
* **Note:** The `insertBlock` method is not supported by design. If used, it works as an `addBlock`, adding
|
|
7576
7821
|
* a single block to the end of the `blocks` aggregation.
|
|
7577
7822
|
*
|
|
7823
|
+
*
|
|
7578
7824
|
* @returns The `sap.uxap.ObjectPageSubSection` instance
|
|
7579
7825
|
*/
|
|
7580
7826
|
insertBlock(
|
|
@@ -7593,6 +7839,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7593
7839
|
* **Note:** The `insertMoreBlock` method is not supported by design. If used, it works as an `addMoreBlock`,
|
|
7594
7840
|
* adding a single block to the end of the `moreBlocks` aggregation.
|
|
7595
7841
|
*
|
|
7842
|
+
*
|
|
7596
7843
|
* @returns The `sap.uxap.ObjectPageSubSection` instance
|
|
7597
7844
|
*/
|
|
7598
7845
|
insertMoreBlock(
|
|
@@ -7608,6 +7855,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7608
7855
|
/**
|
|
7609
7856
|
* Removes a action from the aggregation {@link #getActions actions}.
|
|
7610
7857
|
*
|
|
7858
|
+
*
|
|
7611
7859
|
* @returns The removed action or `null`
|
|
7612
7860
|
*/
|
|
7613
7861
|
removeAction(
|
|
@@ -7621,6 +7869,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7621
7869
|
*
|
|
7622
7870
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7623
7871
|
*
|
|
7872
|
+
*
|
|
7624
7873
|
* @returns An array of the removed elements (might be empty)
|
|
7625
7874
|
*/
|
|
7626
7875
|
removeAllActions(): Control[];
|
|
@@ -7629,6 +7878,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7629
7878
|
*
|
|
7630
7879
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7631
7880
|
*
|
|
7881
|
+
*
|
|
7632
7882
|
* @returns An array of the removed elements (might be empty)
|
|
7633
7883
|
*/
|
|
7634
7884
|
removeAllBlocks(): Control[];
|
|
@@ -7637,12 +7887,14 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7637
7887
|
*
|
|
7638
7888
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7639
7889
|
*
|
|
7890
|
+
*
|
|
7640
7891
|
* @returns An array of the removed elements (might be empty)
|
|
7641
7892
|
*/
|
|
7642
7893
|
removeAllMoreBlocks(): Control[];
|
|
7643
7894
|
/**
|
|
7644
7895
|
* Removes a block from the aggregation {@link #getBlocks blocks}.
|
|
7645
7896
|
*
|
|
7897
|
+
*
|
|
7646
7898
|
* @returns The removed block or `null`
|
|
7647
7899
|
*/
|
|
7648
7900
|
removeBlock(
|
|
@@ -7654,6 +7906,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7654
7906
|
/**
|
|
7655
7907
|
* Removes a moreBlock from the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
7656
7908
|
*
|
|
7909
|
+
*
|
|
7657
7910
|
* @returns The removed moreBlock or `null`
|
|
7658
7911
|
*/
|
|
7659
7912
|
removeMoreBlock(
|
|
@@ -7672,6 +7925,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7672
7925
|
*
|
|
7673
7926
|
* Default value is `Collapsed`.
|
|
7674
7927
|
*
|
|
7928
|
+
*
|
|
7675
7929
|
* @returns Reference to `this` in order to allow method chaining
|
|
7676
7930
|
*/
|
|
7677
7931
|
setMode(
|
|
@@ -7681,8 +7935,6 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7681
7935
|
sMode?: ObjectPageSubSectionMode | keyof typeof ObjectPageSubSectionMode
|
|
7682
7936
|
): this;
|
|
7683
7937
|
/**
|
|
7684
|
-
* @since 1.77
|
|
7685
|
-
*
|
|
7686
7938
|
* Sets a new value for property {@link #getShowTitle showTitle}.
|
|
7687
7939
|
*
|
|
7688
7940
|
* Determines whether to display the `SubSection` title or not.
|
|
@@ -7696,6 +7948,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7696
7948
|
*
|
|
7697
7949
|
* Default value is `true`.
|
|
7698
7950
|
*
|
|
7951
|
+
* @since 1.77
|
|
7952
|
+
*
|
|
7699
7953
|
* @returns Reference to `this` in order to allow method chaining
|
|
7700
7954
|
*/
|
|
7701
7955
|
setShowTitle(
|
|
@@ -7713,6 +7967,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7713
7967
|
*
|
|
7714
7968
|
* Default value is `false`.
|
|
7715
7969
|
*
|
|
7970
|
+
*
|
|
7716
7971
|
* @returns Reference to `this` in order to allow method chaining
|
|
7717
7972
|
*/
|
|
7718
7973
|
setTitleUppercase(
|
|
@@ -7726,14 +7981,14 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
7726
7981
|
export interface $ObjectPageSubSectionSettings
|
|
7727
7982
|
extends $ObjectPageSectionBaseSettings {
|
|
7728
7983
|
/**
|
|
7729
|
-
* @since 1.77
|
|
7730
|
-
*
|
|
7731
7984
|
* Determines whether to display the `SubSection` title or not.
|
|
7732
7985
|
*
|
|
7733
7986
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
7734
7987
|
* instead of the section title even if this property is set to `false`. To hide the title of a subsection
|
|
7735
7988
|
* which is the only one (or the only one visible), you need to set the `showTitle` properties to `false`
|
|
7736
7989
|
* for both the section and its subsection.
|
|
7990
|
+
*
|
|
7991
|
+
* @since 1.77
|
|
7737
7992
|
*/
|
|
7738
7993
|
showTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7739
7994
|
|