@openui5/ts-types-esm 1.101.0 → 1.102.2
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 +1722 -100
- package/types/sap.m.d.ts +15212 -1155
- package/types/sap.tnt.d.ts +251 -19
- package/types/sap.ui.codeeditor.d.ts +74 -8
- package/types/sap.ui.commons.d.ts +3379 -313
- package/types/sap.ui.core.d.ts +6107 -312
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +149 -8
- package/types/sap.ui.integration.d.ts +293 -23
- package/types/sap.ui.layout.d.ts +1550 -199
- package/types/sap.ui.mdc.d.ts +5 -1
- package/types/sap.ui.rta.d.ts +5 -1
- package/types/sap.ui.suite.d.ts +75 -6
- package/types/sap.ui.support.d.ts +30 -1
- package/types/sap.ui.table.d.ts +920 -80
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +2456 -202
- package/types/sap.ui.ux3.d.ts +2192 -181
- package/types/sap.ui.webc.common.d.ts +5 -4
- package/types/sap.ui.webc.fiori.d.ts +1386 -105
- package/types/sap.ui.webc.main.d.ts +4946 -365
- package/types/sap.uxap.d.ts +811 -87
package/types/sap.uxap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.102.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/uxap/library" {
|
|
4
4
|
/**
|
|
@@ -226,6 +226,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
226
226
|
* contained in `oClassInfo`.
|
|
227
227
|
*
|
|
228
228
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Toolbar.extend}.
|
|
229
|
+
*
|
|
230
|
+
* @returns Created class / constructor function
|
|
229
231
|
*/
|
|
230
232
|
static extend<T extends Record<string, unknown>>(
|
|
231
233
|
/**
|
|
@@ -244,6 +246,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
244
246
|
): Function;
|
|
245
247
|
/**
|
|
246
248
|
* Returns a metadata object for class sap.uxap.AnchorBar.
|
|
249
|
+
*
|
|
250
|
+
* @returns Metadata object describing this class
|
|
247
251
|
*/
|
|
248
252
|
static getMetadata(): ElementMetadata;
|
|
249
253
|
/**
|
|
@@ -269,10 +273,14 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
269
273
|
*
|
|
270
274
|
* **Note:** The default value of `backgroundDesign` property is null. If the property is not set, the color
|
|
271
275
|
* of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
276
|
+
*
|
|
277
|
+
* @returns Value of property `backgroundDesign`
|
|
272
278
|
*/
|
|
273
279
|
getBackgroundDesign(): BackgroundDesign | keyof typeof BackgroundDesign;
|
|
274
280
|
/**
|
|
275
281
|
* Returns an sap.ui.core.delegate.ScrollEnablement object used to handle scrolling.
|
|
282
|
+
*
|
|
283
|
+
* @returns The `sap.ui.core.delegate.ScrollEnablement` instance
|
|
276
284
|
*/
|
|
277
285
|
getScrollDelegate(): ScrollEnablement;
|
|
278
286
|
/**
|
|
@@ -287,6 +295,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
287
295
|
* bar.
|
|
288
296
|
*
|
|
289
297
|
* Default value is `true`.
|
|
298
|
+
*
|
|
299
|
+
* @returns Value of property `showPopover`
|
|
290
300
|
*/
|
|
291
301
|
getShowPopover(): boolean;
|
|
292
302
|
/**
|
|
@@ -295,8 +305,14 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
295
305
|
* Determines whether the Anchor bar items are displayed in upper case.
|
|
296
306
|
*
|
|
297
307
|
* Default value is `false`.
|
|
308
|
+
*
|
|
309
|
+
* @returns Value of property `upperCase`
|
|
298
310
|
*/
|
|
299
311
|
getUpperCase(): boolean;
|
|
312
|
+
/**
|
|
313
|
+
* Scrolls to the currently selected Section tab, when the header titles is snapped/unsnapped
|
|
314
|
+
*/
|
|
315
|
+
scrollToCurrentlySelectedSection(): void;
|
|
300
316
|
/**
|
|
301
317
|
* Scroll to a specific Section.
|
|
302
318
|
*/
|
|
@@ -321,6 +337,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
321
337
|
* of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
322
338
|
*
|
|
323
339
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
340
|
+
*
|
|
341
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
324
342
|
*/
|
|
325
343
|
setBackgroundDesign(
|
|
326
344
|
/**
|
|
@@ -330,6 +348,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
330
348
|
): this;
|
|
331
349
|
/**
|
|
332
350
|
* Sets the associated {@link #getSelectedButton selectedButton}.
|
|
351
|
+
*
|
|
352
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
333
353
|
*/
|
|
334
354
|
setSelectedButton(
|
|
335
355
|
/**
|
|
@@ -347,6 +367,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
347
367
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
348
368
|
*
|
|
349
369
|
* Default value is `true`.
|
|
370
|
+
*
|
|
371
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
350
372
|
*/
|
|
351
373
|
setShowPopover(
|
|
352
374
|
/**
|
|
@@ -362,6 +384,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
362
384
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
363
385
|
*
|
|
364
386
|
* Default value is `false`.
|
|
387
|
+
*
|
|
388
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
365
389
|
*/
|
|
366
390
|
setUpperCase(
|
|
367
391
|
/**
|
|
@@ -376,12 +400,12 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
376
400
|
* Determines whether to show a Popover with Subsection links when clicking on Section links in the Anchor
|
|
377
401
|
* bar.
|
|
378
402
|
*/
|
|
379
|
-
showPopover?: boolean | PropertyBindingInfo
|
|
403
|
+
showPopover?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
380
404
|
|
|
381
405
|
/**
|
|
382
406
|
* Determines whether the Anchor bar items are displayed in upper case.
|
|
383
407
|
*/
|
|
384
|
-
upperCase?: boolean | PropertyBindingInfo
|
|
408
|
+
upperCase?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
385
409
|
|
|
386
410
|
/**
|
|
387
411
|
* @SINCE 1.58
|
|
@@ -393,7 +417,8 @@ declare module "sap/uxap/AnchorBar" {
|
|
|
393
417
|
*/
|
|
394
418
|
backgroundDesign?:
|
|
395
419
|
| (BackgroundDesign | keyof typeof BackgroundDesign)
|
|
396
|
-
| PropertyBindingInfo
|
|
420
|
+
| PropertyBindingInfo
|
|
421
|
+
| `{${string}}`;
|
|
397
422
|
|
|
398
423
|
/**
|
|
399
424
|
* The button that represents the Section being scrolled by the user.
|
|
@@ -488,6 +513,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
488
513
|
* contained in `oClassInfo`.
|
|
489
514
|
*
|
|
490
515
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
516
|
+
*
|
|
517
|
+
* @returns Created class / constructor function
|
|
491
518
|
*/
|
|
492
519
|
static extend<T extends Record<string, unknown>>(
|
|
493
520
|
/**
|
|
@@ -506,10 +533,14 @@ declare module "sap/uxap/BlockBase" {
|
|
|
506
533
|
): Function;
|
|
507
534
|
/**
|
|
508
535
|
* Returns a metadata object for class sap.uxap.BlockBase.
|
|
536
|
+
*
|
|
537
|
+
* @returns Metadata object describing this class
|
|
509
538
|
*/
|
|
510
539
|
static getMetadata(): ElementMetadata;
|
|
511
540
|
/**
|
|
512
541
|
* Adds some mapping to the aggregation {@link #getMappings mappings}.
|
|
542
|
+
*
|
|
543
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
513
544
|
*/
|
|
514
545
|
addMapping(
|
|
515
546
|
/**
|
|
@@ -526,6 +557,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
526
557
|
* otherwise it will be bound to this `sap.uxap.BlockBase` itself.
|
|
527
558
|
*
|
|
528
559
|
* Fired when an aggregated view is instantiated.
|
|
560
|
+
*
|
|
561
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
529
562
|
*/
|
|
530
563
|
attachViewInit(
|
|
531
564
|
/**
|
|
@@ -551,6 +584,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
551
584
|
* otherwise it will be bound to this `sap.uxap.BlockBase` itself.
|
|
552
585
|
*
|
|
553
586
|
* Fired when an aggregated view is instantiated.
|
|
587
|
+
*
|
|
588
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
554
589
|
*/
|
|
555
590
|
attachViewInit(
|
|
556
591
|
/**
|
|
@@ -564,6 +599,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
564
599
|
): this;
|
|
565
600
|
/**
|
|
566
601
|
* Creates a view.
|
|
602
|
+
*
|
|
603
|
+
* @returns A promise on the created view.
|
|
567
604
|
*/
|
|
568
605
|
createView(
|
|
569
606
|
/**
|
|
@@ -577,6 +614,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
577
614
|
): Promise<View>;
|
|
578
615
|
/**
|
|
579
616
|
* Destroys all the mappings in the aggregation {@link #getMappings mappings}.
|
|
617
|
+
*
|
|
618
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
580
619
|
*/
|
|
581
620
|
destroyMappings(): this;
|
|
582
621
|
/**
|
|
@@ -585,6 +624,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
585
624
|
* Detaches event handler `fnFunction` from the {@link #event:viewInit viewInit} event of this `sap.uxap.BlockBase`.
|
|
586
625
|
*
|
|
587
626
|
* The passed function and listener object must match the ones used for event registration.
|
|
627
|
+
*
|
|
628
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
588
629
|
*/
|
|
589
630
|
detachViewInit(
|
|
590
631
|
/**
|
|
@@ -600,6 +641,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
600
641
|
* @SINCE 1.72
|
|
601
642
|
*
|
|
602
643
|
* Fires event {@link #event:viewInit viewInit} to attached listeners.
|
|
644
|
+
*
|
|
645
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
603
646
|
*/
|
|
604
647
|
fireViewInit(
|
|
605
648
|
/**
|
|
@@ -619,6 +662,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
619
662
|
* "auto".
|
|
620
663
|
*
|
|
621
664
|
* Default value is `"auto"`.
|
|
665
|
+
*
|
|
666
|
+
* @returns Value of property `columnLayout`
|
|
622
667
|
*/
|
|
623
668
|
getColumnLayout(): BlockBaseColumnLayout;
|
|
624
669
|
/**
|
|
@@ -631,6 +676,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
631
676
|
* inner forms will be made and the form will keep its original column count.
|
|
632
677
|
*
|
|
633
678
|
* Default value is `BlockColumns`.
|
|
679
|
+
*
|
|
680
|
+
* @returns Value of property `formAdjustment`
|
|
634
681
|
*/
|
|
635
682
|
getFormAdjustment():
|
|
636
683
|
| BlockBaseFormAdjustment
|
|
@@ -648,6 +695,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
648
695
|
* When `BlockBase` is used inside an `ObjectPageLayout`, the `mode` property is inherited from the respective
|
|
649
696
|
* {@link sap.uxap.ObjectPageSubSection SubSection}. The `mode` property of `BlockBase` changes when the
|
|
650
697
|
* `mode` property of `ObjectPageSubSection` changes.
|
|
698
|
+
*
|
|
699
|
+
* @returns Value of property `mode`
|
|
651
700
|
*/
|
|
652
701
|
getMode(): string;
|
|
653
702
|
/**
|
|
@@ -664,6 +713,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
664
713
|
* be ignored in case the `BlockBase` is nested inside another `BlockBase`.
|
|
665
714
|
*
|
|
666
715
|
* Default value is `false`.
|
|
716
|
+
*
|
|
717
|
+
* @returns Value of property `showSubSectionMore`
|
|
667
718
|
*/
|
|
668
719
|
getShowSubSectionMore(): boolean;
|
|
669
720
|
/**
|
|
@@ -672,11 +723,15 @@ declare module "sap/uxap/BlockBase" {
|
|
|
672
723
|
* Determines the visibility of the block.
|
|
673
724
|
*
|
|
674
725
|
* Default value is `true`.
|
|
726
|
+
*
|
|
727
|
+
* @returns Value of property `visible`
|
|
675
728
|
*/
|
|
676
729
|
getVisible(): boolean;
|
|
677
730
|
/**
|
|
678
731
|
* Checks for the provided `sap.uxap.ModelMapping` in the aggregation {@link #getMappings mappings}. and
|
|
679
732
|
* returns its index if found or -1 otherwise.
|
|
733
|
+
*
|
|
734
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
680
735
|
*/
|
|
681
736
|
indexOfMapping(
|
|
682
737
|
/**
|
|
@@ -686,6 +741,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
686
741
|
): int;
|
|
687
742
|
/**
|
|
688
743
|
* Inserts a mapping into the aggregation {@link #getMappings mappings}.
|
|
744
|
+
*
|
|
745
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
689
746
|
*/
|
|
690
747
|
insertMapping(
|
|
691
748
|
/**
|
|
@@ -703,10 +760,14 @@ declare module "sap/uxap/BlockBase" {
|
|
|
703
760
|
* Removes all the controls from the aggregation {@link #getMappings mappings}.
|
|
704
761
|
*
|
|
705
762
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
763
|
+
*
|
|
764
|
+
* @returns An array of the removed elements (might be empty)
|
|
706
765
|
*/
|
|
707
766
|
removeAllMappings(): ModelMapping[];
|
|
708
767
|
/**
|
|
709
768
|
* Removes a mapping from the aggregation {@link #getMappings mappings}.
|
|
769
|
+
*
|
|
770
|
+
* @returns The removed mapping or `null`
|
|
710
771
|
*/
|
|
711
772
|
removeMapping(
|
|
712
773
|
/**
|
|
@@ -716,6 +777,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
716
777
|
): ModelMapping;
|
|
717
778
|
/**
|
|
718
779
|
* Set the column layout for this particular block.
|
|
780
|
+
*
|
|
781
|
+
* @returns this
|
|
719
782
|
*/
|
|
720
783
|
setColumnLayout(
|
|
721
784
|
/**
|
|
@@ -735,6 +798,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
735
798
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
736
799
|
*
|
|
737
800
|
* Default value is `BlockColumns`.
|
|
801
|
+
*
|
|
802
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
738
803
|
*/
|
|
739
804
|
setFormAdjustment(
|
|
740
805
|
/**
|
|
@@ -746,6 +811,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
746
811
|
): this;
|
|
747
812
|
/**
|
|
748
813
|
* Set the view mode for this particular block.
|
|
814
|
+
*
|
|
815
|
+
* @returns this
|
|
749
816
|
*/
|
|
750
817
|
setMode(
|
|
751
818
|
/**
|
|
@@ -755,6 +822,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
755
822
|
): any;
|
|
756
823
|
/**
|
|
757
824
|
* Sets the associated {@link #getSelectedView selectedView}.
|
|
825
|
+
*
|
|
826
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
758
827
|
*/
|
|
759
828
|
setSelectedView(
|
|
760
829
|
/**
|
|
@@ -774,6 +843,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
774
843
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
775
844
|
*
|
|
776
845
|
* Default value is `false`.
|
|
846
|
+
*
|
|
847
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
777
848
|
*/
|
|
778
849
|
setShowSubSectionMore(
|
|
779
850
|
/**
|
|
@@ -789,6 +860,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
789
860
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
790
861
|
*
|
|
791
862
|
* Default value is `true`.
|
|
863
|
+
*
|
|
864
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
792
865
|
*/
|
|
793
866
|
setVisible(
|
|
794
867
|
/**
|
|
@@ -810,13 +883,13 @@ declare module "sap/uxap/BlockBase" {
|
|
|
810
883
|
/**
|
|
811
884
|
* Determines the visibility of the block.
|
|
812
885
|
*/
|
|
813
|
-
visible?: boolean | PropertyBindingInfo
|
|
886
|
+
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
814
887
|
|
|
815
888
|
/**
|
|
816
889
|
* Determines on how many columns the layout will be rendered. Allowed values are integers from 1 to 4 and
|
|
817
890
|
* "auto".
|
|
818
891
|
*/
|
|
819
|
-
columnLayout?: BlockBaseColumnLayout | PropertyBindingInfo
|
|
892
|
+
columnLayout?: BlockBaseColumnLayout | PropertyBindingInfo | `{${string}}`;
|
|
820
893
|
|
|
821
894
|
/**
|
|
822
895
|
* Determines if the block should automatically adjust its inner forms. Allowed values are "BlockColumns"
|
|
@@ -827,7 +900,8 @@ declare module "sap/uxap/BlockBase" {
|
|
|
827
900
|
*/
|
|
828
901
|
formAdjustment?:
|
|
829
902
|
| (BlockBaseFormAdjustment | keyof typeof BlockBaseFormAdjustment)
|
|
830
|
-
| PropertyBindingInfo
|
|
903
|
+
| PropertyBindingInfo
|
|
904
|
+
| `{${string}}`;
|
|
831
905
|
|
|
832
906
|
/**
|
|
833
907
|
* Determines whether the show more button should be shown.
|
|
@@ -835,12 +909,16 @@ declare module "sap/uxap/BlockBase" {
|
|
|
835
909
|
* **Note:** The property will take effect if the `BlockBase` is inside `ObjectPageSubSection` and would
|
|
836
910
|
* be ignored in case the `BlockBase` is nested inside another `BlockBase`.
|
|
837
911
|
*/
|
|
838
|
-
showSubSectionMore?: boolean | PropertyBindingInfo
|
|
912
|
+
showSubSectionMore?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
839
913
|
|
|
840
914
|
/**
|
|
841
915
|
* Map external UI5 model and internal Block model
|
|
842
916
|
*/
|
|
843
|
-
mappings?:
|
|
917
|
+
mappings?:
|
|
918
|
+
| ModelMapping[]
|
|
919
|
+
| ModelMapping
|
|
920
|
+
| AggregationBindingInfo
|
|
921
|
+
| `{${string}}`;
|
|
844
922
|
|
|
845
923
|
/**
|
|
846
924
|
* The current view. Corresponds to the currently specified `mode` of the sap.uxap.BlockBase.
|
|
@@ -927,6 +1005,8 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
927
1005
|
* information contained in `oClassInfo`.
|
|
928
1006
|
*
|
|
929
1007
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1008
|
+
*
|
|
1009
|
+
* @returns Created class / constructor function
|
|
930
1010
|
*/
|
|
931
1011
|
static extend<T extends Record<string, unknown>>(
|
|
932
1012
|
/**
|
|
@@ -945,10 +1025,14 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
945
1025
|
): Function;
|
|
946
1026
|
/**
|
|
947
1027
|
* Returns a metadata object for class sap.uxap.BreadCrumbs.
|
|
1028
|
+
*
|
|
1029
|
+
* @returns Metadata object describing this class
|
|
948
1030
|
*/
|
|
949
1031
|
static getMetadata(): ElementMetadata;
|
|
950
1032
|
/**
|
|
951
1033
|
* Adds some link to the aggregation {@link #getLinks links}.
|
|
1034
|
+
*
|
|
1035
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
952
1036
|
*/
|
|
953
1037
|
addLink(
|
|
954
1038
|
/**
|
|
@@ -958,10 +1042,14 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
958
1042
|
): this;
|
|
959
1043
|
/**
|
|
960
1044
|
* Destroys the currentLocation in the aggregation {@link #getCurrentLocation currentLocation}.
|
|
1045
|
+
*
|
|
1046
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
961
1047
|
*/
|
|
962
1048
|
destroyCurrentLocation(): this;
|
|
963
1049
|
/**
|
|
964
1050
|
* Destroys all the links in the aggregation {@link #getLinks links}.
|
|
1051
|
+
*
|
|
1052
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
965
1053
|
*/
|
|
966
1054
|
destroyLinks(): this;
|
|
967
1055
|
/**
|
|
@@ -982,11 +1070,15 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
982
1070
|
* Sets the visibility of the current/last element in the BreadCrumbs path.
|
|
983
1071
|
*
|
|
984
1072
|
* Default value is `true`.
|
|
1073
|
+
*
|
|
1074
|
+
* @returns Value of property `showCurrentLocation`
|
|
985
1075
|
*/
|
|
986
1076
|
getShowCurrentLocation(): boolean;
|
|
987
1077
|
/**
|
|
988
1078
|
* Checks for the provided `sap.m.Link` in the aggregation {@link #getLinks links}. and returns its index
|
|
989
1079
|
* if found or -1 otherwise.
|
|
1080
|
+
*
|
|
1081
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
990
1082
|
*/
|
|
991
1083
|
indexOfLink(
|
|
992
1084
|
/**
|
|
@@ -996,6 +1088,8 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
996
1088
|
): int;
|
|
997
1089
|
/**
|
|
998
1090
|
* Inserts a link into the aggregation {@link #getLinks links}.
|
|
1091
|
+
*
|
|
1092
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
999
1093
|
*/
|
|
1000
1094
|
insertLink(
|
|
1001
1095
|
/**
|
|
@@ -1013,10 +1107,14 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1013
1107
|
* Removes all the controls from the aggregation {@link #getLinks links}.
|
|
1014
1108
|
*
|
|
1015
1109
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
1110
|
+
*
|
|
1111
|
+
* @returns An array of the removed elements (might be empty)
|
|
1016
1112
|
*/
|
|
1017
1113
|
removeAllLinks(): Link[];
|
|
1018
1114
|
/**
|
|
1019
1115
|
* Removes a link from the aggregation {@link #getLinks links}.
|
|
1116
|
+
*
|
|
1117
|
+
* @returns The removed link or `null`
|
|
1020
1118
|
*/
|
|
1021
1119
|
removeLink(
|
|
1022
1120
|
/**
|
|
@@ -1026,6 +1124,8 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1026
1124
|
): Link;
|
|
1027
1125
|
/**
|
|
1028
1126
|
* Sets the aggregated {@link #getCurrentLocation currentLocation}.
|
|
1127
|
+
*
|
|
1128
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1029
1129
|
*/
|
|
1030
1130
|
setCurrentLocation(
|
|
1031
1131
|
/**
|
|
@@ -1041,6 +1141,8 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1041
1141
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1042
1142
|
*
|
|
1043
1143
|
* Default value is `true`.
|
|
1144
|
+
*
|
|
1145
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1044
1146
|
*/
|
|
1045
1147
|
setShowCurrentLocation(
|
|
1046
1148
|
/**
|
|
@@ -1054,12 +1156,12 @@ declare module "sap/uxap/BreadCrumbs" {
|
|
|
1054
1156
|
/**
|
|
1055
1157
|
* Sets the visibility of the current/last element in the BreadCrumbs path.
|
|
1056
1158
|
*/
|
|
1057
|
-
showCurrentLocation?: boolean | PropertyBindingInfo
|
|
1159
|
+
showCurrentLocation?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1058
1160
|
|
|
1059
1161
|
/**
|
|
1060
1162
|
* A list of all the active link elements in the BreadCrumbs control.
|
|
1061
1163
|
*/
|
|
1062
|
-
links?: Link[] | Link | AggregationBindingInfo
|
|
1164
|
+
links?: Link[] | Link | AggregationBindingInfo | `{${string}}`;
|
|
1063
1165
|
|
|
1064
1166
|
/**
|
|
1065
1167
|
* The current/last element in the BreadCrumbs path.
|
|
@@ -1120,6 +1222,8 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1120
1222
|
* the information contained in `oClassInfo`.
|
|
1121
1223
|
*
|
|
1122
1224
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Select.extend}.
|
|
1225
|
+
*
|
|
1226
|
+
* @returns Created class / constructor function
|
|
1123
1227
|
*/
|
|
1124
1228
|
static extend<T extends Record<string, unknown>>(
|
|
1125
1229
|
/**
|
|
@@ -1138,6 +1242,8 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1138
1242
|
): Function;
|
|
1139
1243
|
/**
|
|
1140
1244
|
* Returns a metadata object for class sap.uxap.HierarchicalSelect.
|
|
1245
|
+
*
|
|
1246
|
+
* @returns Metadata object describing this class
|
|
1141
1247
|
*/
|
|
1142
1248
|
static getMetadata(): ElementMetadata;
|
|
1143
1249
|
/**
|
|
@@ -1146,6 +1252,8 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1146
1252
|
* Determines whether the HierarchicalSelect items are displayed in upper case.
|
|
1147
1253
|
*
|
|
1148
1254
|
* Default value is `false`.
|
|
1255
|
+
*
|
|
1256
|
+
* @returns Value of property `upperCase`
|
|
1149
1257
|
*/
|
|
1150
1258
|
getUpperCase(): boolean;
|
|
1151
1259
|
/**
|
|
@@ -1156,6 +1264,8 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1156
1264
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1157
1265
|
*
|
|
1158
1266
|
* Default value is `false`.
|
|
1267
|
+
*
|
|
1268
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1159
1269
|
*/
|
|
1160
1270
|
setUpperCase(
|
|
1161
1271
|
/**
|
|
@@ -1169,7 +1279,7 @@ declare module "sap/uxap/HierarchicalSelect" {
|
|
|
1169
1279
|
/**
|
|
1170
1280
|
* Determines whether the HierarchicalSelect items are displayed in upper case.
|
|
1171
1281
|
*/
|
|
1172
|
-
upperCase?: boolean | PropertyBindingInfo
|
|
1282
|
+
upperCase?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
1173
1283
|
}
|
|
1174
1284
|
}
|
|
1175
1285
|
|
|
@@ -1222,6 +1332,8 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1222
1332
|
* information contained in `oClassInfo`.
|
|
1223
1333
|
*
|
|
1224
1334
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1335
|
+
*
|
|
1336
|
+
* @returns Created class / constructor function
|
|
1225
1337
|
*/
|
|
1226
1338
|
static extend<T extends Record<string, unknown>>(
|
|
1227
1339
|
/**
|
|
@@ -1240,18 +1352,24 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1240
1352
|
): Function;
|
|
1241
1353
|
/**
|
|
1242
1354
|
* Returns a metadata object for class sap.uxap.ModelMapping.
|
|
1355
|
+
*
|
|
1356
|
+
* @returns Metadata object describing this class
|
|
1243
1357
|
*/
|
|
1244
1358
|
static getMetadata(): ElementMetadata;
|
|
1245
1359
|
/**
|
|
1246
1360
|
* Gets current value of property {@link #getExternalModelName externalModelName}.
|
|
1247
1361
|
*
|
|
1248
1362
|
* Determines the external model name.
|
|
1363
|
+
*
|
|
1364
|
+
* @returns Value of property `externalModelName`
|
|
1249
1365
|
*/
|
|
1250
1366
|
getExternalModelName(): string;
|
|
1251
1367
|
/**
|
|
1252
1368
|
* Gets current value of property {@link #getExternalPath externalPath}.
|
|
1253
1369
|
*
|
|
1254
1370
|
* Determines the external path.
|
|
1371
|
+
*
|
|
1372
|
+
* @returns Value of property `externalPath`
|
|
1255
1373
|
*/
|
|
1256
1374
|
getExternalPath(): string;
|
|
1257
1375
|
/**
|
|
@@ -1260,6 +1378,8 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1260
1378
|
* Determines the internal model name.
|
|
1261
1379
|
*
|
|
1262
1380
|
* Default value is `"Model"`.
|
|
1381
|
+
*
|
|
1382
|
+
* @returns Value of property `internalModelName`
|
|
1263
1383
|
*/
|
|
1264
1384
|
getInternalModelName(): string;
|
|
1265
1385
|
/**
|
|
@@ -1268,6 +1388,8 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1268
1388
|
* Determines the external model name.
|
|
1269
1389
|
*
|
|
1270
1390
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1391
|
+
*
|
|
1392
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1271
1393
|
*/
|
|
1272
1394
|
setExternalModelName(
|
|
1273
1395
|
/**
|
|
@@ -1281,6 +1403,8 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1281
1403
|
* Determines the external path.
|
|
1282
1404
|
*
|
|
1283
1405
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1406
|
+
*
|
|
1407
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1284
1408
|
*/
|
|
1285
1409
|
setExternalPath(
|
|
1286
1410
|
/**
|
|
@@ -1296,6 +1420,8 @@ declare module "sap/uxap/ModelMapping" {
|
|
|
1296
1420
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1297
1421
|
*
|
|
1298
1422
|
* Default value is `"Model"`.
|
|
1423
|
+
*
|
|
1424
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1299
1425
|
*/
|
|
1300
1426
|
setInternalModelName(
|
|
1301
1427
|
/**
|
|
@@ -1376,6 +1502,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1376
1502
|
* enriches it with the information contained in `oClassInfo`.
|
|
1377
1503
|
*
|
|
1378
1504
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
1505
|
+
*
|
|
1506
|
+
* @returns Created class / constructor function
|
|
1379
1507
|
*/
|
|
1380
1508
|
static extend<T extends Record<string, unknown>>(
|
|
1381
1509
|
/**
|
|
@@ -1394,6 +1522,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1394
1522
|
): Function;
|
|
1395
1523
|
/**
|
|
1396
1524
|
* Returns a metadata object for class sap.uxap.ObjectPageAccessibleLandmarkInfo.
|
|
1525
|
+
*
|
|
1526
|
+
* @returns Metadata object describing this class
|
|
1397
1527
|
*/
|
|
1398
1528
|
static getMetadata(): ElementMetadata;
|
|
1399
1529
|
/**
|
|
@@ -1404,6 +1534,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1404
1534
|
*
|
|
1405
1535
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1406
1536
|
* is set.
|
|
1537
|
+
*
|
|
1538
|
+
* @returns Value of property `contentLabel`
|
|
1407
1539
|
*/
|
|
1408
1540
|
getContentLabel(): string;
|
|
1409
1541
|
/**
|
|
@@ -1414,6 +1546,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1414
1546
|
* If set to `sap.ui.core.AccessibleLandmarkRole.None`, no landmark will be added to the container.
|
|
1415
1547
|
*
|
|
1416
1548
|
* Default value is `"None"`.
|
|
1549
|
+
*
|
|
1550
|
+
* @returns Value of property `contentRole`
|
|
1417
1551
|
*/
|
|
1418
1552
|
getContentRole():
|
|
1419
1553
|
| AccessibleLandmarkRole
|
|
@@ -1426,6 +1560,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1426
1560
|
*
|
|
1427
1561
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1428
1562
|
* is set.
|
|
1563
|
+
*
|
|
1564
|
+
* @returns Value of property `footerLabel`
|
|
1429
1565
|
*/
|
|
1430
1566
|
getFooterLabel(): string;
|
|
1431
1567
|
/**
|
|
@@ -1436,6 +1572,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1436
1572
|
* If set to `sap.ui.core.AccessibleLandmarkRole.None`, no landmark will be added to the container.
|
|
1437
1573
|
*
|
|
1438
1574
|
* Default value is `"Region"`.
|
|
1575
|
+
*
|
|
1576
|
+
* @returns Value of property `footerRole`
|
|
1439
1577
|
*/
|
|
1440
1578
|
getFooterRole():
|
|
1441
1579
|
| AccessibleLandmarkRole
|
|
@@ -1448,6 +1586,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1448
1586
|
*
|
|
1449
1587
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1450
1588
|
* is set.
|
|
1589
|
+
*
|
|
1590
|
+
* @returns Value of property `headerLabel`
|
|
1451
1591
|
*/
|
|
1452
1592
|
getHeaderLabel(): string;
|
|
1453
1593
|
/**
|
|
@@ -1458,6 +1598,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1458
1598
|
* If set to `sap.ui.core.AccessibleLandmarkRole.None`, no landmark will be added to the container.
|
|
1459
1599
|
*
|
|
1460
1600
|
* Default value is `"Banner"`.
|
|
1601
|
+
*
|
|
1602
|
+
* @returns Value of property `headerRole`
|
|
1461
1603
|
*/
|
|
1462
1604
|
getHeaderRole():
|
|
1463
1605
|
| AccessibleLandmarkRole
|
|
@@ -1470,6 +1612,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1470
1612
|
*
|
|
1471
1613
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1472
1614
|
* is set.
|
|
1615
|
+
*
|
|
1616
|
+
* @returns Value of property `navigationLabel`
|
|
1473
1617
|
*/
|
|
1474
1618
|
getNavigationLabel(): string;
|
|
1475
1619
|
/**
|
|
@@ -1480,6 +1624,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1480
1624
|
* If set to `sap.ui.core.AccessibleLandmarkRole.None`, no landmark will be added to the container.
|
|
1481
1625
|
*
|
|
1482
1626
|
* Default value is `"Navigation"`.
|
|
1627
|
+
*
|
|
1628
|
+
* @returns Value of property `navigationRole`
|
|
1483
1629
|
*/
|
|
1484
1630
|
getNavigationRole():
|
|
1485
1631
|
| AccessibleLandmarkRole
|
|
@@ -1492,6 +1638,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1492
1638
|
*
|
|
1493
1639
|
* If not set (and a landmark different than `sap.ui.core.AccessibleLandmarkRole.None` is defined), no label
|
|
1494
1640
|
* is set.
|
|
1641
|
+
*
|
|
1642
|
+
* @returns Value of property `rootLabel`
|
|
1495
1643
|
*/
|
|
1496
1644
|
getRootLabel(): string;
|
|
1497
1645
|
/**
|
|
@@ -1502,6 +1650,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1502
1650
|
* If set to `sap.ui.core.AccessibleLandmarkRole.None`, no landmark will be added to the container.
|
|
1503
1651
|
*
|
|
1504
1652
|
* Default value is `"Main"`.
|
|
1653
|
+
*
|
|
1654
|
+
* @returns Value of property `rootRole`
|
|
1505
1655
|
*/
|
|
1506
1656
|
getRootRole(): AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole;
|
|
1507
1657
|
/**
|
|
@@ -1514,6 +1664,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1514
1664
|
* is set.
|
|
1515
1665
|
*
|
|
1516
1666
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1667
|
+
*
|
|
1668
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1517
1669
|
*/
|
|
1518
1670
|
setContentLabel(
|
|
1519
1671
|
/**
|
|
@@ -1531,6 +1683,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1531
1683
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1532
1684
|
*
|
|
1533
1685
|
* Default value is `"None"`.
|
|
1686
|
+
*
|
|
1687
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1534
1688
|
*/
|
|
1535
1689
|
setContentRole(
|
|
1536
1690
|
/**
|
|
@@ -1550,6 +1704,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1550
1704
|
* is set.
|
|
1551
1705
|
*
|
|
1552
1706
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1707
|
+
*
|
|
1708
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1553
1709
|
*/
|
|
1554
1710
|
setFooterLabel(
|
|
1555
1711
|
/**
|
|
@@ -1567,6 +1723,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1567
1723
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1568
1724
|
*
|
|
1569
1725
|
* Default value is `"Region"`.
|
|
1726
|
+
*
|
|
1727
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1570
1728
|
*/
|
|
1571
1729
|
setFooterRole(
|
|
1572
1730
|
/**
|
|
@@ -1584,6 +1742,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1584
1742
|
* is set.
|
|
1585
1743
|
*
|
|
1586
1744
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1745
|
+
*
|
|
1746
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1587
1747
|
*/
|
|
1588
1748
|
setHeaderLabel(
|
|
1589
1749
|
/**
|
|
@@ -1601,6 +1761,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1601
1761
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1602
1762
|
*
|
|
1603
1763
|
* Default value is `"Banner"`.
|
|
1764
|
+
*
|
|
1765
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1604
1766
|
*/
|
|
1605
1767
|
setHeaderRole(
|
|
1606
1768
|
/**
|
|
@@ -1618,6 +1780,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1618
1780
|
* is set.
|
|
1619
1781
|
*
|
|
1620
1782
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1783
|
+
*
|
|
1784
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1621
1785
|
*/
|
|
1622
1786
|
setNavigationLabel(
|
|
1623
1787
|
/**
|
|
@@ -1635,6 +1799,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1635
1799
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1636
1800
|
*
|
|
1637
1801
|
* Default value is `"Navigation"`.
|
|
1802
|
+
*
|
|
1803
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1638
1804
|
*/
|
|
1639
1805
|
setNavigationRole(
|
|
1640
1806
|
/**
|
|
@@ -1654,6 +1820,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1654
1820
|
* is set.
|
|
1655
1821
|
*
|
|
1656
1822
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1823
|
+
*
|
|
1824
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1657
1825
|
*/
|
|
1658
1826
|
setRootLabel(
|
|
1659
1827
|
/**
|
|
@@ -1671,6 +1839,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1671
1839
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1672
1840
|
*
|
|
1673
1841
|
* Default value is `"Main"`.
|
|
1842
|
+
*
|
|
1843
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1674
1844
|
*/
|
|
1675
1845
|
setRootRole(
|
|
1676
1846
|
/**
|
|
@@ -1689,7 +1859,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1689
1859
|
*/
|
|
1690
1860
|
rootRole?:
|
|
1691
1861
|
| (AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole)
|
|
1692
|
-
| PropertyBindingInfo
|
|
1862
|
+
| PropertyBindingInfo
|
|
1863
|
+
| `{${string}}`;
|
|
1693
1864
|
|
|
1694
1865
|
/**
|
|
1695
1866
|
* Texts which describe the landmark of the root container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
@@ -1707,7 +1878,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1707
1878
|
*/
|
|
1708
1879
|
contentRole?:
|
|
1709
1880
|
| (AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole)
|
|
1710
|
-
| PropertyBindingInfo
|
|
1881
|
+
| PropertyBindingInfo
|
|
1882
|
+
| `{${string}}`;
|
|
1711
1883
|
|
|
1712
1884
|
/**
|
|
1713
1885
|
* Texts which describe the landmark of the content container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
@@ -1725,7 +1897,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1725
1897
|
*/
|
|
1726
1898
|
navigationRole?:
|
|
1727
1899
|
| (AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole)
|
|
1728
|
-
| PropertyBindingInfo
|
|
1900
|
+
| PropertyBindingInfo
|
|
1901
|
+
| `{${string}}`;
|
|
1729
1902
|
|
|
1730
1903
|
/**
|
|
1731
1904
|
* Texts which describe the landmark of the navigation container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
@@ -1743,7 +1916,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1743
1916
|
*/
|
|
1744
1917
|
headerRole?:
|
|
1745
1918
|
| (AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole)
|
|
1746
|
-
| PropertyBindingInfo
|
|
1919
|
+
| PropertyBindingInfo
|
|
1920
|
+
| `{${string}}`;
|
|
1747
1921
|
|
|
1748
1922
|
/**
|
|
1749
1923
|
* Texts which describe the landmark of the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
@@ -1761,7 +1935,8 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
|
|
|
1761
1935
|
*/
|
|
1762
1936
|
footerRole?:
|
|
1763
1937
|
| (AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole)
|
|
1764
|
-
| PropertyBindingInfo
|
|
1938
|
+
| PropertyBindingInfo
|
|
1939
|
+
| `{${string}}`;
|
|
1765
1940
|
|
|
1766
1941
|
/**
|
|
1767
1942
|
* Texts which describe the landmark of the header container of the corresponding `sap.uxap.ObjectPageLayout`
|
|
@@ -1846,6 +2021,8 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
1846
2021
|
* it with the information contained in `oClassInfo`.
|
|
1847
2022
|
*
|
|
1848
2023
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.f.DynamicPageHeader.extend}.
|
|
2024
|
+
*
|
|
2025
|
+
* @returns Created class / constructor function
|
|
1849
2026
|
*/
|
|
1850
2027
|
static extend<T extends Record<string, unknown>>(
|
|
1851
2028
|
/**
|
|
@@ -1864,6 +2041,8 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
|
|
|
1864
2041
|
): Function;
|
|
1865
2042
|
/**
|
|
1866
2043
|
* Returns a metadata object for class sap.uxap.ObjectPageDynamicHeaderContent.
|
|
2044
|
+
*
|
|
2045
|
+
* @returns Metadata object describing this class
|
|
1867
2046
|
*/
|
|
1868
2047
|
static getMetadata(): ElementMetadata;
|
|
1869
2048
|
}
|
|
@@ -1949,6 +2128,8 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
1949
2128
|
* it with the information contained in `oClassInfo`.
|
|
1950
2129
|
*
|
|
1951
2130
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.f.DynamicPageTitle.extend}.
|
|
2131
|
+
*
|
|
2132
|
+
* @returns Created class / constructor function
|
|
1952
2133
|
*/
|
|
1953
2134
|
static extend<T extends Record<string, unknown>>(
|
|
1954
2135
|
/**
|
|
@@ -1967,6 +2148,8 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
|
|
|
1967
2148
|
): Function;
|
|
1968
2149
|
/**
|
|
1969
2150
|
* Returns a metadata object for class sap.uxap.ObjectPageDynamicHeaderTitle.
|
|
2151
|
+
*
|
|
2152
|
+
* @returns Metadata object describing this class
|
|
1970
2153
|
*/
|
|
1971
2154
|
static getMetadata(): ElementMetadata;
|
|
1972
2155
|
}
|
|
@@ -2068,6 +2251,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2068
2251
|
* the information contained in `oClassInfo`.
|
|
2069
2252
|
*
|
|
2070
2253
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2254
|
+
*
|
|
2255
|
+
* @returns Created class / constructor function
|
|
2071
2256
|
*/
|
|
2072
2257
|
static extend<T extends Record<string, unknown>>(
|
|
2073
2258
|
/**
|
|
@@ -2086,10 +2271,14 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2086
2271
|
): Function;
|
|
2087
2272
|
/**
|
|
2088
2273
|
* Returns a metadata object for class sap.uxap.ObjectPageHeader.
|
|
2274
|
+
*
|
|
2275
|
+
* @returns Metadata object describing this class
|
|
2089
2276
|
*/
|
|
2090
2277
|
static getMetadata(): ElementMetadata;
|
|
2091
2278
|
/**
|
|
2092
2279
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
2280
|
+
*
|
|
2281
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2093
2282
|
*/
|
|
2094
2283
|
addAction(
|
|
2095
2284
|
/**
|
|
@@ -2101,6 +2290,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2101
2290
|
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2102
2291
|
*
|
|
2103
2292
|
* Adds some breadCrumbLink to the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2293
|
+
*
|
|
2294
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2104
2295
|
*/
|
|
2105
2296
|
addBreadCrumbLink(
|
|
2106
2297
|
/**
|
|
@@ -2116,6 +2307,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2116
2307
|
* otherwise it will be bound to this `sap.uxap.ObjectPageHeader` itself.
|
|
2117
2308
|
*
|
|
2118
2309
|
* The event is fired when the unsaved changes button is pressed
|
|
2310
|
+
*
|
|
2311
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2119
2312
|
*/
|
|
2120
2313
|
attachMarkChangesPress(
|
|
2121
2314
|
/**
|
|
@@ -2140,6 +2333,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2140
2333
|
* otherwise it will be bound to this `sap.uxap.ObjectPageHeader` itself.
|
|
2141
2334
|
*
|
|
2142
2335
|
* The event is fired when the unsaved changes button is pressed
|
|
2336
|
+
*
|
|
2337
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2143
2338
|
*/
|
|
2144
2339
|
attachMarkChangesPress(
|
|
2145
2340
|
/**
|
|
@@ -2159,6 +2354,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2159
2354
|
* otherwise it will be bound to this `sap.uxap.ObjectPageHeader` itself.
|
|
2160
2355
|
*
|
|
2161
2356
|
* The event is fired when the Locked button is pressed
|
|
2357
|
+
*
|
|
2358
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2162
2359
|
*/
|
|
2163
2360
|
attachMarkLockedPress(
|
|
2164
2361
|
/**
|
|
@@ -2183,6 +2380,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2183
2380
|
* otherwise it will be bound to this `sap.uxap.ObjectPageHeader` itself.
|
|
2184
2381
|
*
|
|
2185
2382
|
* The event is fired when the Locked button is pressed
|
|
2383
|
+
*
|
|
2384
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2186
2385
|
*/
|
|
2187
2386
|
attachMarkLockedPress(
|
|
2188
2387
|
/**
|
|
@@ -2202,6 +2401,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2202
2401
|
* otherwise it will be bound to this `sap.uxap.ObjectPageHeader` itself.
|
|
2203
2402
|
*
|
|
2204
2403
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
2404
|
+
*
|
|
2405
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2205
2406
|
*/
|
|
2206
2407
|
attachTitleSelectorPress(
|
|
2207
2408
|
/**
|
|
@@ -2226,6 +2427,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2226
2427
|
* otherwise it will be bound to this `sap.uxap.ObjectPageHeader` itself.
|
|
2227
2428
|
*
|
|
2228
2429
|
* The event is fired when the objectPage header title selector (down-arrow) is pressed
|
|
2430
|
+
*
|
|
2431
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2229
2432
|
*/
|
|
2230
2433
|
attachTitleSelectorPress(
|
|
2231
2434
|
/**
|
|
@@ -2239,34 +2442,46 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2239
2442
|
): this;
|
|
2240
2443
|
/**
|
|
2241
2444
|
* Destroys all the actions in the aggregation {@link #getActions actions}.
|
|
2445
|
+
*
|
|
2446
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2242
2447
|
*/
|
|
2243
2448
|
destroyActions(): this;
|
|
2244
2449
|
/**
|
|
2245
2450
|
* @SINCE 1.50
|
|
2246
2451
|
*
|
|
2247
2452
|
* Destroys the breadcrumbs in the aggregation {@link #getBreadcrumbs breadcrumbs}.
|
|
2453
|
+
*
|
|
2454
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2248
2455
|
*/
|
|
2249
2456
|
destroyBreadcrumbs(): this;
|
|
2250
2457
|
/**
|
|
2251
2458
|
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2252
2459
|
*
|
|
2253
2460
|
* Destroys all the breadCrumbsLinks in the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2461
|
+
*
|
|
2462
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2254
2463
|
*/
|
|
2255
2464
|
destroyBreadCrumbsLinks(): this;
|
|
2256
2465
|
/**
|
|
2257
2466
|
* Destroys the navigationBar in the aggregation {@link #getNavigationBar navigationBar}.
|
|
2467
|
+
*
|
|
2468
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2258
2469
|
*/
|
|
2259
2470
|
destroyNavigationBar(): this;
|
|
2260
2471
|
/**
|
|
2261
2472
|
* @SINCE 1.38.0
|
|
2262
2473
|
*
|
|
2263
2474
|
* Destroys the sideContentButton in the aggregation {@link #getSideContentButton sideContentButton}.
|
|
2475
|
+
*
|
|
2476
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2264
2477
|
*/
|
|
2265
2478
|
destroySideContentButton(): this;
|
|
2266
2479
|
/**
|
|
2267
2480
|
* @SINCE 1.56
|
|
2268
2481
|
*
|
|
2269
2482
|
* Destroys the titleSelectorTooltip in the aggregation {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
2483
|
+
*
|
|
2484
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2270
2485
|
*/
|
|
2271
2486
|
destroyTitleSelectorTooltip(): this;
|
|
2272
2487
|
/**
|
|
@@ -2274,6 +2489,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2274
2489
|
* this `sap.uxap.ObjectPageHeader`.
|
|
2275
2490
|
*
|
|
2276
2491
|
* The passed function and listener object must match the ones used for event registration.
|
|
2492
|
+
*
|
|
2493
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2277
2494
|
*/
|
|
2278
2495
|
detachMarkChangesPress(
|
|
2279
2496
|
/**
|
|
@@ -2290,6 +2507,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2290
2507
|
* this `sap.uxap.ObjectPageHeader`.
|
|
2291
2508
|
*
|
|
2292
2509
|
* The passed function and listener object must match the ones used for event registration.
|
|
2510
|
+
*
|
|
2511
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2293
2512
|
*/
|
|
2294
2513
|
detachMarkLockedPress(
|
|
2295
2514
|
/**
|
|
@@ -2306,6 +2525,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2306
2525
|
* of this `sap.uxap.ObjectPageHeader`.
|
|
2307
2526
|
*
|
|
2308
2527
|
* The passed function and listener object must match the ones used for event registration.
|
|
2528
|
+
*
|
|
2529
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2309
2530
|
*/
|
|
2310
2531
|
detachTitleSelectorPress(
|
|
2311
2532
|
/**
|
|
@@ -2319,6 +2540,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2319
2540
|
): this;
|
|
2320
2541
|
/**
|
|
2321
2542
|
* Fires event {@link #event:markChangesPress markChangesPress} to attached listeners.
|
|
2543
|
+
*
|
|
2544
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2322
2545
|
*/
|
|
2323
2546
|
fireMarkChangesPress(
|
|
2324
2547
|
/**
|
|
@@ -2333,6 +2556,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2333
2556
|
): this;
|
|
2334
2557
|
/**
|
|
2335
2558
|
* Fires event {@link #event:markLockedPress markLockedPress} to attached listeners.
|
|
2559
|
+
*
|
|
2560
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2336
2561
|
*/
|
|
2337
2562
|
fireMarkLockedPress(
|
|
2338
2563
|
/**
|
|
@@ -2347,6 +2572,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2347
2572
|
): this;
|
|
2348
2573
|
/**
|
|
2349
2574
|
* Fires event {@link #event:titleSelectorPress titleSelectorPress} to attached listeners.
|
|
2575
|
+
*
|
|
2576
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2350
2577
|
*/
|
|
2351
2578
|
fireTitleSelectorPress(
|
|
2352
2579
|
/**
|
|
@@ -2397,6 +2624,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2397
2624
|
* to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
|
|
2398
2625
|
*
|
|
2399
2626
|
* Default value is `Light`.
|
|
2627
|
+
*
|
|
2628
|
+
* @returns Value of property `headerDesign`
|
|
2400
2629
|
*/
|
|
2401
2630
|
getHeaderDesign():
|
|
2402
2631
|
| ObjectPageHeaderDesign
|
|
@@ -2407,6 +2636,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2407
2636
|
* Determines whether the action buttons should always be visible or visible only when the header is snapped.
|
|
2408
2637
|
*
|
|
2409
2638
|
* Default value is `true`.
|
|
2639
|
+
*
|
|
2640
|
+
* @returns Value of property `isActionAreaAlwaysVisible`
|
|
2410
2641
|
*/
|
|
2411
2642
|
getIsActionAreaAlwaysVisible(): boolean;
|
|
2412
2643
|
/**
|
|
@@ -2415,6 +2646,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2415
2646
|
* Determines whether the icon should always be visible or visible only when the header is snapped.
|
|
2416
2647
|
*
|
|
2417
2648
|
* Default value is `false`.
|
|
2649
|
+
*
|
|
2650
|
+
* @returns Value of property `isObjectIconAlwaysVisible`
|
|
2418
2651
|
*/
|
|
2419
2652
|
getIsObjectIconAlwaysVisible(): boolean;
|
|
2420
2653
|
/**
|
|
@@ -2423,6 +2656,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2423
2656
|
* Determines whether the subtitle should always be visible or visible only when the header is snapped.
|
|
2424
2657
|
*
|
|
2425
2658
|
* Default value is `true`.
|
|
2659
|
+
*
|
|
2660
|
+
* @returns Value of property `isObjectSubtitleAlwaysVisible`
|
|
2426
2661
|
*/
|
|
2427
2662
|
getIsObjectSubtitleAlwaysVisible(): boolean;
|
|
2428
2663
|
/**
|
|
@@ -2431,6 +2666,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2431
2666
|
* Determines whether the title should always be visible or visible only when the header is snapped.
|
|
2432
2667
|
*
|
|
2433
2668
|
* Default value is `true`.
|
|
2669
|
+
*
|
|
2670
|
+
* @returns Value of property `isObjectTitleAlwaysVisible`
|
|
2434
2671
|
*/
|
|
2435
2672
|
getIsObjectTitleAlwaysVisible(): boolean;
|
|
2436
2673
|
/**
|
|
@@ -2442,6 +2679,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2442
2679
|
* with the markLocked state. If both are set to true, only the locked state will be displayed.
|
|
2443
2680
|
*
|
|
2444
2681
|
* Default value is `false`.
|
|
2682
|
+
*
|
|
2683
|
+
* @returns Value of property `markChanges`
|
|
2445
2684
|
*/
|
|
2446
2685
|
getMarkChanges(): boolean;
|
|
2447
2686
|
/**
|
|
@@ -2451,6 +2690,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2451
2690
|
* effect.
|
|
2452
2691
|
*
|
|
2453
2692
|
* Default value is `false`.
|
|
2693
|
+
*
|
|
2694
|
+
* @returns Value of property `markFavorite`
|
|
2454
2695
|
*/
|
|
2455
2696
|
getMarkFavorite(): boolean;
|
|
2456
2697
|
/**
|
|
@@ -2460,6 +2701,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2460
2701
|
* effect.
|
|
2461
2702
|
*
|
|
2462
2703
|
* Default value is `false`.
|
|
2704
|
+
*
|
|
2705
|
+
* @returns Value of property `markFlagged`
|
|
2463
2706
|
*/
|
|
2464
2707
|
getMarkFlagged(): boolean;
|
|
2465
2708
|
/**
|
|
@@ -2468,6 +2711,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2468
2711
|
* Set the locked state of the objectPageHeader.
|
|
2469
2712
|
*
|
|
2470
2713
|
* Default value is `false`.
|
|
2714
|
+
*
|
|
2715
|
+
* @returns Value of property `markLocked`
|
|
2471
2716
|
*/
|
|
2472
2717
|
getMarkLocked(): boolean;
|
|
2473
2718
|
/**
|
|
@@ -2482,6 +2727,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2482
2727
|
* The text to be used for the Alt and Tooltip attribute of the image, supplied via the objectImageURI property
|
|
2483
2728
|
*
|
|
2484
2729
|
* Default value is `empty string`.
|
|
2730
|
+
*
|
|
2731
|
+
* @returns Value of property `objectImageAlt`
|
|
2485
2732
|
*/
|
|
2486
2733
|
getObjectImageAlt(): string;
|
|
2487
2734
|
/**
|
|
@@ -2492,6 +2739,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2492
2739
|
* Determines the background color of the image placeholder or icon if valid icon URI is provided.
|
|
2493
2740
|
*
|
|
2494
2741
|
* Default value is `Accent6`.
|
|
2742
|
+
*
|
|
2743
|
+
* @returns Value of property `objectImageBackgroundColor`
|
|
2495
2744
|
*/
|
|
2496
2745
|
getObjectImageBackgroundColor(): AvatarColor | keyof typeof AvatarColor;
|
|
2497
2746
|
/**
|
|
@@ -2501,6 +2750,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2501
2750
|
* more details on densityAware.
|
|
2502
2751
|
*
|
|
2503
2752
|
* Default value is `false`.
|
|
2753
|
+
*
|
|
2754
|
+
* @returns Value of property `objectImageDensityAware`
|
|
2504
2755
|
*/
|
|
2505
2756
|
getObjectImageDensityAware(): boolean;
|
|
2506
2757
|
/**
|
|
@@ -2509,24 +2760,32 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2509
2760
|
* Determines whether the picture should be displayed in a square or with a circle-shaped mask.
|
|
2510
2761
|
*
|
|
2511
2762
|
* Default value is `Square`.
|
|
2763
|
+
*
|
|
2764
|
+
* @returns Value of property `objectImageShape`
|
|
2512
2765
|
*/
|
|
2513
2766
|
getObjectImageShape(): AvatarShape | keyof typeof AvatarShape;
|
|
2514
2767
|
/**
|
|
2515
2768
|
* Gets current value of property {@link #getObjectImageURI objectImageURI}.
|
|
2516
2769
|
*
|
|
2517
2770
|
* The URL of the image, representing the business object
|
|
2771
|
+
*
|
|
2772
|
+
* @returns Value of property `objectImageURI`
|
|
2518
2773
|
*/
|
|
2519
2774
|
getObjectImageURI(): string;
|
|
2520
2775
|
/**
|
|
2521
2776
|
* Gets current value of property {@link #getObjectSubtitle objectSubtitle}.
|
|
2522
2777
|
*
|
|
2523
2778
|
* The description of the object
|
|
2779
|
+
*
|
|
2780
|
+
* @returns Value of property `objectSubtitle`
|
|
2524
2781
|
*/
|
|
2525
2782
|
getObjectSubtitle(): string;
|
|
2526
2783
|
/**
|
|
2527
2784
|
* Gets current value of property {@link #getObjectTitle objectTitle}.
|
|
2528
2785
|
*
|
|
2529
2786
|
* The title of the object
|
|
2787
|
+
*
|
|
2788
|
+
* @returns Value of property `objectTitle`
|
|
2530
2789
|
*/
|
|
2531
2790
|
getObjectTitle(): string;
|
|
2532
2791
|
/**
|
|
@@ -2535,6 +2794,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2535
2794
|
* Indicates if object page header title supports showing markers such as flagged and favorite.
|
|
2536
2795
|
*
|
|
2537
2796
|
* Default value is `false`.
|
|
2797
|
+
*
|
|
2798
|
+
* @returns Value of property `showMarkers`
|
|
2538
2799
|
*/
|
|
2539
2800
|
getShowMarkers(): boolean;
|
|
2540
2801
|
/**
|
|
@@ -2544,6 +2805,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2544
2805
|
* is invalid.
|
|
2545
2806
|
*
|
|
2546
2807
|
* Default value is `false`.
|
|
2808
|
+
*
|
|
2809
|
+
* @returns Value of property `showPlaceholder`
|
|
2547
2810
|
*/
|
|
2548
2811
|
getShowPlaceholder(): boolean;
|
|
2549
2812
|
/**
|
|
@@ -2552,6 +2815,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2552
2815
|
* When set to true, the selector arrow icon/image is shown and can be pressed.
|
|
2553
2816
|
*
|
|
2554
2817
|
* Default value is `false`.
|
|
2818
|
+
*
|
|
2819
|
+
* @returns Value of property `showTitleSelector`
|
|
2555
2820
|
*/
|
|
2556
2821
|
getShowTitleSelector(): boolean;
|
|
2557
2822
|
/**
|
|
@@ -2578,6 +2843,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2578
2843
|
/**
|
|
2579
2844
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getActions actions}. and returns
|
|
2580
2845
|
* its index if found or -1 otherwise.
|
|
2846
|
+
*
|
|
2847
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2581
2848
|
*/
|
|
2582
2849
|
indexOfAction(
|
|
2583
2850
|
/**
|
|
@@ -2590,6 +2857,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2590
2857
|
*
|
|
2591
2858
|
* Checks for the provided `sap.m.Link` in the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2592
2859
|
* and returns its index if found or -1 otherwise.
|
|
2860
|
+
*
|
|
2861
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
2593
2862
|
*/
|
|
2594
2863
|
indexOfBreadCrumbLink(
|
|
2595
2864
|
/**
|
|
@@ -2599,6 +2868,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2599
2868
|
): int;
|
|
2600
2869
|
/**
|
|
2601
2870
|
* Inserts a action into the aggregation {@link #getActions actions}.
|
|
2871
|
+
*
|
|
2872
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2602
2873
|
*/
|
|
2603
2874
|
insertAction(
|
|
2604
2875
|
/**
|
|
@@ -2616,6 +2887,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2616
2887
|
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2617
2888
|
*
|
|
2618
2889
|
* Inserts a breadCrumbLink into the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2890
|
+
*
|
|
2891
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2619
2892
|
*/
|
|
2620
2893
|
insertBreadCrumbLink(
|
|
2621
2894
|
/**
|
|
@@ -2631,6 +2904,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2631
2904
|
): this;
|
|
2632
2905
|
/**
|
|
2633
2906
|
* Removes a action from the aggregation {@link #getActions actions}.
|
|
2907
|
+
*
|
|
2908
|
+
* @returns The removed action or `null`
|
|
2634
2909
|
*/
|
|
2635
2910
|
removeAction(
|
|
2636
2911
|
/**
|
|
@@ -2642,6 +2917,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2642
2917
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
2643
2918
|
*
|
|
2644
2919
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2920
|
+
*
|
|
2921
|
+
* @returns An array of the removed elements (might be empty)
|
|
2645
2922
|
*/
|
|
2646
2923
|
removeAllActions(): Control[];
|
|
2647
2924
|
/**
|
|
@@ -2650,12 +2927,16 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2650
2927
|
* Removes all the controls from the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2651
2928
|
*
|
|
2652
2929
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
2930
|
+
*
|
|
2931
|
+
* @returns An array of the removed elements (might be empty)
|
|
2653
2932
|
*/
|
|
2654
2933
|
removeAllBreadCrumbsLinks(): Link[];
|
|
2655
2934
|
/**
|
|
2656
2935
|
* @deprecated (since 1.50) - use the `breadcrumbs` aggregation instead.
|
|
2657
2936
|
*
|
|
2658
2937
|
* Removes a breadCrumbLink from the aggregation {@link #getBreadCrumbsLinks breadCrumbsLinks}.
|
|
2938
|
+
*
|
|
2939
|
+
* @returns The removed breadCrumbLink or `null`
|
|
2659
2940
|
*/
|
|
2660
2941
|
removeBreadCrumbLink(
|
|
2661
2942
|
/**
|
|
@@ -2667,6 +2948,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2667
2948
|
* @SINCE 1.50
|
|
2668
2949
|
*
|
|
2669
2950
|
* Sets the aggregated {@link #getBreadcrumbs breadcrumbs}.
|
|
2951
|
+
*
|
|
2952
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2670
2953
|
*/
|
|
2671
2954
|
setBreadcrumbs(
|
|
2672
2955
|
/**
|
|
@@ -2685,6 +2968,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2685
2968
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2686
2969
|
*
|
|
2687
2970
|
* Default value is `Light`.
|
|
2971
|
+
*
|
|
2972
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2688
2973
|
*/
|
|
2689
2974
|
setHeaderDesign(
|
|
2690
2975
|
/**
|
|
@@ -2702,6 +2987,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2702
2987
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2703
2988
|
*
|
|
2704
2989
|
* Default value is `true`.
|
|
2990
|
+
*
|
|
2991
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2705
2992
|
*/
|
|
2706
2993
|
setIsActionAreaAlwaysVisible(
|
|
2707
2994
|
/**
|
|
@@ -2717,6 +3004,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2717
3004
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2718
3005
|
*
|
|
2719
3006
|
* Default value is `false`.
|
|
3007
|
+
*
|
|
3008
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2720
3009
|
*/
|
|
2721
3010
|
setIsObjectIconAlwaysVisible(
|
|
2722
3011
|
/**
|
|
@@ -2732,6 +3021,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2732
3021
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2733
3022
|
*
|
|
2734
3023
|
* Default value is `true`.
|
|
3024
|
+
*
|
|
3025
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2735
3026
|
*/
|
|
2736
3027
|
setIsObjectSubtitleAlwaysVisible(
|
|
2737
3028
|
/**
|
|
@@ -2747,6 +3038,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2747
3038
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2748
3039
|
*
|
|
2749
3040
|
* Default value is `true`.
|
|
3041
|
+
*
|
|
3042
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2750
3043
|
*/
|
|
2751
3044
|
setIsObjectTitleAlwaysVisible(
|
|
2752
3045
|
/**
|
|
@@ -2765,6 +3058,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2765
3058
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2766
3059
|
*
|
|
2767
3060
|
* Default value is `false`.
|
|
3061
|
+
*
|
|
3062
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2768
3063
|
*/
|
|
2769
3064
|
setMarkChanges(
|
|
2770
3065
|
/**
|
|
@@ -2781,6 +3076,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2781
3076
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2782
3077
|
*
|
|
2783
3078
|
* Default value is `false`.
|
|
3079
|
+
*
|
|
3080
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2784
3081
|
*/
|
|
2785
3082
|
setMarkFavorite(
|
|
2786
3083
|
/**
|
|
@@ -2797,6 +3094,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2797
3094
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2798
3095
|
*
|
|
2799
3096
|
* Default value is `false`.
|
|
3097
|
+
*
|
|
3098
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2800
3099
|
*/
|
|
2801
3100
|
setMarkFlagged(
|
|
2802
3101
|
/**
|
|
@@ -2812,6 +3111,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2812
3111
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2813
3112
|
*
|
|
2814
3113
|
* Default value is `false`.
|
|
3114
|
+
*
|
|
3115
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2815
3116
|
*/
|
|
2816
3117
|
setMarkLocked(
|
|
2817
3118
|
/**
|
|
@@ -2821,6 +3122,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2821
3122
|
): this;
|
|
2822
3123
|
/**
|
|
2823
3124
|
* Sets the aggregated {@link #getNavigationBar navigationBar}.
|
|
3125
|
+
*
|
|
3126
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2824
3127
|
*/
|
|
2825
3128
|
setNavigationBar(
|
|
2826
3129
|
/**
|
|
@@ -2836,6 +3139,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2836
3139
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2837
3140
|
*
|
|
2838
3141
|
* Default value is `empty string`.
|
|
3142
|
+
*
|
|
3143
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2839
3144
|
*/
|
|
2840
3145
|
setObjectImageAlt(
|
|
2841
3146
|
/**
|
|
@@ -2853,6 +3158,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2853
3158
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2854
3159
|
*
|
|
2855
3160
|
* Default value is `Accent6`.
|
|
3161
|
+
*
|
|
3162
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2856
3163
|
*/
|
|
2857
3164
|
setObjectImageBackgroundColor(
|
|
2858
3165
|
/**
|
|
@@ -2869,6 +3176,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2869
3176
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2870
3177
|
*
|
|
2871
3178
|
* Default value is `false`.
|
|
3179
|
+
*
|
|
3180
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2872
3181
|
*/
|
|
2873
3182
|
setObjectImageDensityAware(
|
|
2874
3183
|
/**
|
|
@@ -2884,6 +3193,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2884
3193
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2885
3194
|
*
|
|
2886
3195
|
* Default value is `Square`.
|
|
3196
|
+
*
|
|
3197
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2887
3198
|
*/
|
|
2888
3199
|
setObjectImageShape(
|
|
2889
3200
|
/**
|
|
@@ -2897,6 +3208,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2897
3208
|
* The URL of the image, representing the business object
|
|
2898
3209
|
*
|
|
2899
3210
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3211
|
+
*
|
|
3212
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2900
3213
|
*/
|
|
2901
3214
|
setObjectImageURI(
|
|
2902
3215
|
/**
|
|
@@ -2910,6 +3223,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2910
3223
|
* The description of the object
|
|
2911
3224
|
*
|
|
2912
3225
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3226
|
+
*
|
|
3227
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2913
3228
|
*/
|
|
2914
3229
|
setObjectSubtitle(
|
|
2915
3230
|
/**
|
|
@@ -2923,6 +3238,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2923
3238
|
* The title of the object
|
|
2924
3239
|
*
|
|
2925
3240
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3241
|
+
*
|
|
3242
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2926
3243
|
*/
|
|
2927
3244
|
setObjectTitle(
|
|
2928
3245
|
/**
|
|
@@ -2938,6 +3255,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2938
3255
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2939
3256
|
*
|
|
2940
3257
|
* Default value is `false`.
|
|
3258
|
+
*
|
|
3259
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2941
3260
|
*/
|
|
2942
3261
|
setShowMarkers(
|
|
2943
3262
|
/**
|
|
@@ -2954,6 +3273,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2954
3273
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2955
3274
|
*
|
|
2956
3275
|
* Default value is `false`.
|
|
3276
|
+
*
|
|
3277
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2957
3278
|
*/
|
|
2958
3279
|
setShowPlaceholder(
|
|
2959
3280
|
/**
|
|
@@ -2969,6 +3290,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2969
3290
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2970
3291
|
*
|
|
2971
3292
|
* Default value is `false`.
|
|
3293
|
+
*
|
|
3294
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2972
3295
|
*/
|
|
2973
3296
|
setShowTitleSelector(
|
|
2974
3297
|
/**
|
|
@@ -2980,6 +3303,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2980
3303
|
* @SINCE 1.38.0
|
|
2981
3304
|
*
|
|
2982
3305
|
* Sets the aggregated {@link #getSideContentButton sideContentButton}.
|
|
3306
|
+
*
|
|
3307
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2983
3308
|
*/
|
|
2984
3309
|
setSideContentButton(
|
|
2985
3310
|
/**
|
|
@@ -2991,6 +3316,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
2991
3316
|
* @SINCE 1.56
|
|
2992
3317
|
*
|
|
2993
3318
|
* Sets the aggregated {@link #getTitleSelectorTooltip titleSelectorTooltip}.
|
|
3319
|
+
*
|
|
3320
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2994
3321
|
*/
|
|
2995
3322
|
setTitleSelectorTooltip(
|
|
2996
3323
|
/**
|
|
@@ -3015,7 +3342,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3015
3342
|
* The value of densityAware for the image, supplied via the objectImageURI property. See sap.m.Image for
|
|
3016
3343
|
* more details on densityAware.
|
|
3017
3344
|
*/
|
|
3018
|
-
objectImageDensityAware?: boolean | PropertyBindingInfo
|
|
3345
|
+
objectImageDensityAware?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3019
3346
|
|
|
3020
3347
|
/**
|
|
3021
3348
|
* The title of the object
|
|
@@ -3032,7 +3359,8 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3032
3359
|
*/
|
|
3033
3360
|
objectImageShape?:
|
|
3034
3361
|
| (AvatarShape | keyof typeof AvatarShape)
|
|
3035
|
-
| PropertyBindingInfo
|
|
3362
|
+
| PropertyBindingInfo
|
|
3363
|
+
| `{${string}}`;
|
|
3036
3364
|
|
|
3037
3365
|
/**
|
|
3038
3366
|
* @SINCE 1.73
|
|
@@ -3041,27 +3369,31 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3041
3369
|
*/
|
|
3042
3370
|
objectImageBackgroundColor?:
|
|
3043
3371
|
| (AvatarColor | keyof typeof AvatarColor)
|
|
3044
|
-
| PropertyBindingInfo
|
|
3372
|
+
| PropertyBindingInfo
|
|
3373
|
+
| `{${string}}`;
|
|
3045
3374
|
|
|
3046
3375
|
/**
|
|
3047
3376
|
* Determines whether the icon should always be visible or visible only when the header is snapped.
|
|
3048
3377
|
*/
|
|
3049
|
-
isObjectIconAlwaysVisible?: boolean | PropertyBindingInfo
|
|
3378
|
+
isObjectIconAlwaysVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3050
3379
|
|
|
3051
3380
|
/**
|
|
3052
3381
|
* Determines whether the title should always be visible or visible only when the header is snapped.
|
|
3053
3382
|
*/
|
|
3054
|
-
isObjectTitleAlwaysVisible?: boolean | PropertyBindingInfo
|
|
3383
|
+
isObjectTitleAlwaysVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3055
3384
|
|
|
3056
3385
|
/**
|
|
3057
3386
|
* Determines whether the subtitle should always be visible or visible only when the header is snapped.
|
|
3058
3387
|
*/
|
|
3059
|
-
isObjectSubtitleAlwaysVisible?:
|
|
3388
|
+
isObjectSubtitleAlwaysVisible?:
|
|
3389
|
+
| boolean
|
|
3390
|
+
| PropertyBindingInfo
|
|
3391
|
+
| `{${string}}`;
|
|
3060
3392
|
|
|
3061
3393
|
/**
|
|
3062
3394
|
* Determines whether the action buttons should always be visible or visible only when the header is snapped.
|
|
3063
3395
|
*/
|
|
3064
|
-
isActionAreaAlwaysVisible?: boolean | PropertyBindingInfo
|
|
3396
|
+
isActionAreaAlwaysVisible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3065
3397
|
|
|
3066
3398
|
/**
|
|
3067
3399
|
* @deprecated (since 1.40.1)
|
|
@@ -3071,40 +3403,41 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3071
3403
|
*/
|
|
3072
3404
|
headerDesign?:
|
|
3073
3405
|
| (ObjectPageHeaderDesign | keyof typeof ObjectPageHeaderDesign)
|
|
3074
|
-
| PropertyBindingInfo
|
|
3406
|
+
| PropertyBindingInfo
|
|
3407
|
+
| `{${string}}`;
|
|
3075
3408
|
|
|
3076
3409
|
/**
|
|
3077
3410
|
* When set to true, the selector arrow icon/image is shown and can be pressed.
|
|
3078
3411
|
*/
|
|
3079
|
-
showTitleSelector?: boolean | PropertyBindingInfo
|
|
3412
|
+
showTitleSelector?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3080
3413
|
|
|
3081
3414
|
/**
|
|
3082
3415
|
* Set the favorite state to true or false. The showMarkers property must be true for this property to take
|
|
3083
3416
|
* effect.
|
|
3084
3417
|
*/
|
|
3085
|
-
markFavorite?: boolean | PropertyBindingInfo
|
|
3418
|
+
markFavorite?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3086
3419
|
|
|
3087
3420
|
/**
|
|
3088
3421
|
* Set the flagged state to true or false. The showMarkers property must be true for this property to take
|
|
3089
3422
|
* effect.
|
|
3090
3423
|
*/
|
|
3091
|
-
markFlagged?: boolean | PropertyBindingInfo
|
|
3424
|
+
markFlagged?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3092
3425
|
|
|
3093
3426
|
/**
|
|
3094
3427
|
* Indicates if object page header title supports showing markers such as flagged and favorite.
|
|
3095
3428
|
*/
|
|
3096
|
-
showMarkers?: boolean | PropertyBindingInfo
|
|
3429
|
+
showMarkers?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3097
3430
|
|
|
3098
3431
|
/**
|
|
3099
3432
|
* Set the locked state of the objectPageHeader.
|
|
3100
3433
|
*/
|
|
3101
|
-
markLocked?: boolean | PropertyBindingInfo
|
|
3434
|
+
markLocked?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3102
3435
|
|
|
3103
3436
|
/**
|
|
3104
3437
|
* Enables support of a placeholder image in case no image is specified or the URL of the provided image
|
|
3105
3438
|
* is invalid.
|
|
3106
3439
|
*/
|
|
3107
|
-
showPlaceholder?: boolean | PropertyBindingInfo
|
|
3440
|
+
showPlaceholder?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3108
3441
|
|
|
3109
3442
|
/**
|
|
3110
3443
|
* @SINCE 1.34.0
|
|
@@ -3112,7 +3445,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3112
3445
|
* Marks that there are unsaved changes in the objectPageHeader. The markChanges state cannot be used together
|
|
3113
3446
|
* with the markLocked state. If both are set to true, only the locked state will be displayed.
|
|
3114
3447
|
*/
|
|
3115
|
-
markChanges?: boolean | PropertyBindingInfo
|
|
3448
|
+
markChanges?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3116
3449
|
|
|
3117
3450
|
/**
|
|
3118
3451
|
* @SINCE 1.50
|
|
@@ -3127,7 +3460,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3127
3460
|
*
|
|
3128
3461
|
* A list of all the active link elements in the BreadCrumbs control.
|
|
3129
3462
|
*/
|
|
3130
|
-
breadCrumbsLinks?: Link[] | Link | AggregationBindingInfo
|
|
3463
|
+
breadCrumbsLinks?: Link[] | Link | AggregationBindingInfo | `{${string}}`;
|
|
3131
3464
|
|
|
3132
3465
|
/**
|
|
3133
3466
|
* An instance of sap.m.Bar to be embedded in the header
|
|
@@ -3143,7 +3476,7 @@ declare module "sap/uxap/ObjectPageHeader" {
|
|
|
3143
3476
|
* along with the `press` event to indicate that a popup shouldn't be opened from that action and a dialog
|
|
3144
3477
|
* should be used instead.
|
|
3145
3478
|
*/
|
|
3146
|
-
actions?: Control[] | Control | AggregationBindingInfo
|
|
3479
|
+
actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
3147
3480
|
|
|
3148
3481
|
/**
|
|
3149
3482
|
* @SINCE 1.38.0
|
|
@@ -3240,6 +3573,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3240
3573
|
* it with the information contained in `oClassInfo`.
|
|
3241
3574
|
*
|
|
3242
3575
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.Button.extend}.
|
|
3576
|
+
*
|
|
3577
|
+
* @returns Created class / constructor function
|
|
3243
3578
|
*/
|
|
3244
3579
|
static extend<T extends Record<string, unknown>>(
|
|
3245
3580
|
/**
|
|
@@ -3258,6 +3593,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3258
3593
|
): Function;
|
|
3259
3594
|
/**
|
|
3260
3595
|
* Returns a metadata object for class sap.uxap.ObjectPageHeaderActionButton.
|
|
3596
|
+
*
|
|
3597
|
+
* @returns Metadata object describing this class
|
|
3261
3598
|
*/
|
|
3262
3599
|
static getMetadata(): ElementMetadata;
|
|
3263
3600
|
/**
|
|
@@ -3268,6 +3605,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3268
3605
|
* actionSheet that appears when not enough space is available on the screen for displaying all actions.
|
|
3269
3606
|
*
|
|
3270
3607
|
* Default value is `false`.
|
|
3608
|
+
*
|
|
3609
|
+
* @returns Value of property `hideIcon`
|
|
3271
3610
|
*/
|
|
3272
3611
|
getHideIcon(): boolean;
|
|
3273
3612
|
/**
|
|
@@ -3278,6 +3617,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3278
3617
|
* actionSheet that appears when not enough space is available on the screen for displaying all actions.
|
|
3279
3618
|
*
|
|
3280
3619
|
* Default value is `true`.
|
|
3620
|
+
*
|
|
3621
|
+
* @returns Value of property `hideText`
|
|
3281
3622
|
*/
|
|
3282
3623
|
getHideText(): boolean;
|
|
3283
3624
|
/**
|
|
@@ -3288,6 +3629,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3288
3629
|
* Determines the order in which the button overflows.
|
|
3289
3630
|
*
|
|
3290
3631
|
* Default value is `High`.
|
|
3632
|
+
*
|
|
3633
|
+
* @returns Value of property `importance`
|
|
3291
3634
|
*/
|
|
3292
3635
|
getImportance(): Importance | keyof typeof Importance;
|
|
3293
3636
|
/**
|
|
@@ -3300,6 +3643,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3300
3643
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3301
3644
|
*
|
|
3302
3645
|
* Default value is `false`.
|
|
3646
|
+
*
|
|
3647
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3303
3648
|
*/
|
|
3304
3649
|
setHideIcon(
|
|
3305
3650
|
/**
|
|
@@ -3317,6 +3662,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3317
3662
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3318
3663
|
*
|
|
3319
3664
|
* Default value is `true`.
|
|
3665
|
+
*
|
|
3666
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3320
3667
|
*/
|
|
3321
3668
|
setHideText(
|
|
3322
3669
|
/**
|
|
@@ -3334,6 +3681,8 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3334
3681
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3335
3682
|
*
|
|
3336
3683
|
* Default value is `High`.
|
|
3684
|
+
*
|
|
3685
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3337
3686
|
*/
|
|
3338
3687
|
setImportance(
|
|
3339
3688
|
/**
|
|
@@ -3350,21 +3699,24 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
|
|
|
3350
3699
|
* if you want to display icons only in the headerTitle part but still want to display text + icon in the
|
|
3351
3700
|
* actionSheet that appears when not enough space is available on the screen for displaying all actions.
|
|
3352
3701
|
*/
|
|
3353
|
-
hideText?: boolean | PropertyBindingInfo
|
|
3702
|
+
hideText?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3354
3703
|
|
|
3355
3704
|
/**
|
|
3356
3705
|
* Hide the button icon when rendered into the headerTitle part of the ObjectPageLayout. This is useful
|
|
3357
3706
|
* if you want to display texts only in the headerTitle part but still want to display text + icon in the
|
|
3358
3707
|
* actionSheet that appears when not enough space is available on the screen for displaying all actions.
|
|
3359
3708
|
*/
|
|
3360
|
-
hideIcon?: boolean | PropertyBindingInfo
|
|
3709
|
+
hideIcon?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3361
3710
|
|
|
3362
3711
|
/**
|
|
3363
3712
|
* @SINCE 1.34.0
|
|
3364
3713
|
*
|
|
3365
3714
|
* Determines the order in which the button overflows.
|
|
3366
3715
|
*/
|
|
3367
|
-
importance?:
|
|
3716
|
+
importance?:
|
|
3717
|
+
| (Importance | keyof typeof Importance)
|
|
3718
|
+
| PropertyBindingInfo
|
|
3719
|
+
| `{${string}}`;
|
|
3368
3720
|
}
|
|
3369
3721
|
}
|
|
3370
3722
|
|
|
@@ -3443,6 +3795,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3443
3795
|
* it with the information contained in `oClassInfo`.
|
|
3444
3796
|
*
|
|
3445
3797
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3798
|
+
*
|
|
3799
|
+
* @returns Created class / constructor function
|
|
3446
3800
|
*/
|
|
3447
3801
|
static extend<T extends Record<string, unknown>>(
|
|
3448
3802
|
/**
|
|
@@ -3461,10 +3815,14 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3461
3815
|
): Function;
|
|
3462
3816
|
/**
|
|
3463
3817
|
* Returns a metadata object for class sap.uxap.ObjectPageHeaderContent.
|
|
3818
|
+
*
|
|
3819
|
+
* @returns Metadata object describing this class
|
|
3464
3820
|
*/
|
|
3465
3821
|
static getMetadata(): ElementMetadata;
|
|
3466
3822
|
/**
|
|
3467
3823
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
3824
|
+
*
|
|
3825
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3468
3826
|
*/
|
|
3469
3827
|
addContent(
|
|
3470
3828
|
/**
|
|
@@ -3474,6 +3832,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3474
3832
|
): this;
|
|
3475
3833
|
/**
|
|
3476
3834
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
3835
|
+
*
|
|
3836
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3477
3837
|
*/
|
|
3478
3838
|
destroyContent(): this;
|
|
3479
3839
|
/**
|
|
@@ -3491,6 +3851,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3491
3851
|
* to work in the Blue Crystal theme, but it will not be taken into account for the Belize themes.
|
|
3492
3852
|
*
|
|
3493
3853
|
* Default value is `Light`.
|
|
3854
|
+
*
|
|
3855
|
+
* @returns Value of property `contentDesign`
|
|
3494
3856
|
*/
|
|
3495
3857
|
getContentDesign():
|
|
3496
3858
|
| ObjectPageHeaderDesign
|
|
@@ -3498,6 +3860,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3498
3860
|
/**
|
|
3499
3861
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
3500
3862
|
* its index if found or -1 otherwise.
|
|
3863
|
+
*
|
|
3864
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
3501
3865
|
*/
|
|
3502
3866
|
indexOfContent(
|
|
3503
3867
|
/**
|
|
@@ -3507,6 +3871,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3507
3871
|
): int;
|
|
3508
3872
|
/**
|
|
3509
3873
|
* Inserts a content into the aggregation {@link #getContent content}.
|
|
3874
|
+
*
|
|
3875
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3510
3876
|
*/
|
|
3511
3877
|
insertContent(
|
|
3512
3878
|
/**
|
|
@@ -3524,10 +3890,14 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3524
3890
|
* Removes all the controls from the aggregation {@link #getContent content}.
|
|
3525
3891
|
*
|
|
3526
3892
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
3893
|
+
*
|
|
3894
|
+
* @returns An array of the removed elements (might be empty)
|
|
3527
3895
|
*/
|
|
3528
3896
|
removeAllContent(): Control[];
|
|
3529
3897
|
/**
|
|
3530
3898
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
3899
|
+
*
|
|
3900
|
+
* @returns The removed content or `null`
|
|
3531
3901
|
*/
|
|
3532
3902
|
removeContent(
|
|
3533
3903
|
/**
|
|
@@ -3546,6 +3916,8 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3546
3916
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3547
3917
|
*
|
|
3548
3918
|
* Default value is `Light`.
|
|
3919
|
+
*
|
|
3920
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3549
3921
|
*/
|
|
3550
3922
|
setContentDesign(
|
|
3551
3923
|
/**
|
|
@@ -3566,12 +3938,13 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
|
|
|
3566
3938
|
*/
|
|
3567
3939
|
contentDesign?:
|
|
3568
3940
|
| (ObjectPageHeaderDesign | keyof typeof ObjectPageHeaderDesign)
|
|
3569
|
-
| PropertyBindingInfo
|
|
3941
|
+
| PropertyBindingInfo
|
|
3942
|
+
| `{${string}}`;
|
|
3570
3943
|
|
|
3571
3944
|
/**
|
|
3572
3945
|
* The list of Objects of type sap.ui.core.Control.
|
|
3573
3946
|
*/
|
|
3574
|
-
content?: Control[] | Control | AggregationBindingInfo
|
|
3947
|
+
content?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
3575
3948
|
}
|
|
3576
3949
|
}
|
|
3577
3950
|
|
|
@@ -3633,6 +4006,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3633
4006
|
* it with the information contained in `oClassInfo`.
|
|
3634
4007
|
*
|
|
3635
4008
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.LayoutData.extend}.
|
|
4009
|
+
*
|
|
4010
|
+
* @returns Created class / constructor function
|
|
3636
4011
|
*/
|
|
3637
4012
|
static extend<T extends Record<string, unknown>>(
|
|
3638
4013
|
/**
|
|
@@ -3651,6 +4026,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3651
4026
|
): Function;
|
|
3652
4027
|
/**
|
|
3653
4028
|
* Returns a metadata object for class sap.uxap.ObjectPageHeaderLayoutData.
|
|
4029
|
+
*
|
|
4030
|
+
* @returns Metadata object describing this class
|
|
3654
4031
|
*/
|
|
3655
4032
|
static getMetadata(): ElementMetadata;
|
|
3656
4033
|
/**
|
|
@@ -3659,6 +4036,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3659
4036
|
* If this property is set the control will display a separator after it.
|
|
3660
4037
|
*
|
|
3661
4038
|
* Default value is `false`.
|
|
4039
|
+
*
|
|
4040
|
+
* @returns Value of property `showSeparatorAfter`
|
|
3662
4041
|
*/
|
|
3663
4042
|
getShowSeparatorAfter(): boolean;
|
|
3664
4043
|
/**
|
|
@@ -3667,6 +4046,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3667
4046
|
* If this property is set the control will display a separator before it.
|
|
3668
4047
|
*
|
|
3669
4048
|
* Default value is `false`.
|
|
4049
|
+
*
|
|
4050
|
+
* @returns Value of property `showSeparatorBefore`
|
|
3670
4051
|
*/
|
|
3671
4052
|
getShowSeparatorBefore(): boolean;
|
|
3672
4053
|
/**
|
|
@@ -3675,6 +4056,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3675
4056
|
* If this property is set the control will be visible (or not) in a large sized layout.
|
|
3676
4057
|
*
|
|
3677
4058
|
* Default value is `true`.
|
|
4059
|
+
*
|
|
4060
|
+
* @returns Value of property `visibleL`
|
|
3678
4061
|
*/
|
|
3679
4062
|
getVisibleL(): boolean;
|
|
3680
4063
|
/**
|
|
@@ -3683,6 +4066,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3683
4066
|
* If this property is set the control will be visible (or not) in a medium sized layout.
|
|
3684
4067
|
*
|
|
3685
4068
|
* Default value is `true`.
|
|
4069
|
+
*
|
|
4070
|
+
* @returns Value of property `visibleM`
|
|
3686
4071
|
*/
|
|
3687
4072
|
getVisibleM(): boolean;
|
|
3688
4073
|
/**
|
|
@@ -3691,6 +4076,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3691
4076
|
* If this property is set the control will be visible (or not) in a small sized layout.
|
|
3692
4077
|
*
|
|
3693
4078
|
* Default value is `true`.
|
|
4079
|
+
*
|
|
4080
|
+
* @returns Value of property `visibleS`
|
|
3694
4081
|
*/
|
|
3695
4082
|
getVisibleS(): boolean;
|
|
3696
4083
|
/**
|
|
@@ -3699,6 +4086,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3699
4086
|
* If this property is set the control will take the provided size.
|
|
3700
4087
|
*
|
|
3701
4088
|
* Default value is `'auto'`.
|
|
4089
|
+
*
|
|
4090
|
+
* @returns Value of property `width`
|
|
3702
4091
|
*/
|
|
3703
4092
|
getWidth(): CSSSize;
|
|
3704
4093
|
/**
|
|
@@ -3709,6 +4098,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3709
4098
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3710
4099
|
*
|
|
3711
4100
|
* Default value is `false`.
|
|
4101
|
+
*
|
|
4102
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3712
4103
|
*/
|
|
3713
4104
|
setShowSeparatorAfter(
|
|
3714
4105
|
/**
|
|
@@ -3724,6 +4115,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3724
4115
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3725
4116
|
*
|
|
3726
4117
|
* Default value is `false`.
|
|
4118
|
+
*
|
|
4119
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3727
4120
|
*/
|
|
3728
4121
|
setShowSeparatorBefore(
|
|
3729
4122
|
/**
|
|
@@ -3739,6 +4132,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3739
4132
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3740
4133
|
*
|
|
3741
4134
|
* Default value is `true`.
|
|
4135
|
+
*
|
|
4136
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3742
4137
|
*/
|
|
3743
4138
|
setVisibleL(
|
|
3744
4139
|
/**
|
|
@@ -3754,6 +4149,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3754
4149
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3755
4150
|
*
|
|
3756
4151
|
* Default value is `true`.
|
|
4152
|
+
*
|
|
4153
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3757
4154
|
*/
|
|
3758
4155
|
setVisibleM(
|
|
3759
4156
|
/**
|
|
@@ -3769,6 +4166,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3769
4166
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3770
4167
|
*
|
|
3771
4168
|
* Default value is `true`.
|
|
4169
|
+
*
|
|
4170
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3772
4171
|
*/
|
|
3773
4172
|
setVisibleS(
|
|
3774
4173
|
/**
|
|
@@ -3784,6 +4183,8 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3784
4183
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
3785
4184
|
*
|
|
3786
4185
|
* Default value is `'auto'`.
|
|
4186
|
+
*
|
|
4187
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3787
4188
|
*/
|
|
3788
4189
|
setWidth(
|
|
3789
4190
|
/**
|
|
@@ -3798,32 +4199,32 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
|
|
|
3798
4199
|
/**
|
|
3799
4200
|
* If this property is set the control will be visible (or not) in a small sized layout.
|
|
3800
4201
|
*/
|
|
3801
|
-
visibleS?: boolean | PropertyBindingInfo
|
|
4202
|
+
visibleS?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3802
4203
|
|
|
3803
4204
|
/**
|
|
3804
4205
|
* If this property is set the control will be visible (or not) in a medium sized layout.
|
|
3805
4206
|
*/
|
|
3806
|
-
visibleM?: boolean | PropertyBindingInfo
|
|
4207
|
+
visibleM?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3807
4208
|
|
|
3808
4209
|
/**
|
|
3809
4210
|
* If this property is set the control will be visible (or not) in a large sized layout.
|
|
3810
4211
|
*/
|
|
3811
|
-
visibleL?: boolean | PropertyBindingInfo
|
|
4212
|
+
visibleL?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3812
4213
|
|
|
3813
4214
|
/**
|
|
3814
4215
|
* If this property is set the control will display a separator before it.
|
|
3815
4216
|
*/
|
|
3816
|
-
showSeparatorBefore?: boolean | PropertyBindingInfo
|
|
4217
|
+
showSeparatorBefore?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3817
4218
|
|
|
3818
4219
|
/**
|
|
3819
4220
|
* If this property is set the control will display a separator after it.
|
|
3820
4221
|
*/
|
|
3821
|
-
showSeparatorAfter?: boolean | PropertyBindingInfo
|
|
4222
|
+
showSeparatorAfter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
3822
4223
|
|
|
3823
4224
|
/**
|
|
3824
4225
|
* If this property is set the control will take the provided size.
|
|
3825
4226
|
*/
|
|
3826
|
-
width?: CSSSize | PropertyBindingInfo
|
|
4227
|
+
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
3827
4228
|
}
|
|
3828
4229
|
}
|
|
3829
4230
|
|
|
@@ -3951,6 +4352,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
3951
4352
|
* the information contained in `oClassInfo`.
|
|
3952
4353
|
*
|
|
3953
4354
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4355
|
+
*
|
|
4356
|
+
* @returns Created class / constructor function
|
|
3954
4357
|
*/
|
|
3955
4358
|
static extend<T extends Record<string, unknown>>(
|
|
3956
4359
|
/**
|
|
@@ -3969,10 +4372,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
3969
4372
|
): Function;
|
|
3970
4373
|
/**
|
|
3971
4374
|
* Returns a metadata object for class sap.uxap.ObjectPageLayout.
|
|
4375
|
+
*
|
|
4376
|
+
* @returns Metadata object describing this class
|
|
3972
4377
|
*/
|
|
3973
4378
|
static getMetadata(): ElementMetadata;
|
|
3974
4379
|
/**
|
|
3975
4380
|
* Adds some headerContent to the aggregation {@link #getHeaderContent headerContent}.
|
|
4381
|
+
*
|
|
4382
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3976
4383
|
*/
|
|
3977
4384
|
addHeaderContent(
|
|
3978
4385
|
/**
|
|
@@ -3982,6 +4389,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
3982
4389
|
): this;
|
|
3983
4390
|
/**
|
|
3984
4391
|
* Adds some section to the aggregation {@link #getSections sections}.
|
|
4392
|
+
*
|
|
4393
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
3985
4394
|
*/
|
|
3986
4395
|
addSection(
|
|
3987
4396
|
/**
|
|
@@ -3997,6 +4406,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
3997
4406
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
3998
4407
|
*
|
|
3999
4408
|
* The event is fired when the Edit Header button is pressed
|
|
4409
|
+
*
|
|
4410
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4000
4411
|
*/
|
|
4001
4412
|
attachEditHeaderButtonPress(
|
|
4002
4413
|
/**
|
|
@@ -4021,6 +4432,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4021
4432
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4022
4433
|
*
|
|
4023
4434
|
* The event is fired when the Edit Header button is pressed
|
|
4435
|
+
*
|
|
4436
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4024
4437
|
*/
|
|
4025
4438
|
attachEditHeaderButtonPress(
|
|
4026
4439
|
/**
|
|
@@ -4042,6 +4455,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4042
4455
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4043
4456
|
*
|
|
4044
4457
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
4458
|
+
*
|
|
4459
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4045
4460
|
*/
|
|
4046
4461
|
attachHeaderContentPinnedStateChange(
|
|
4047
4462
|
/**
|
|
@@ -4068,6 +4483,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4068
4483
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4069
4484
|
*
|
|
4070
4485
|
* The event is fired when the `headerContentPinned` property is changed via user interaction.
|
|
4486
|
+
*
|
|
4487
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4071
4488
|
*/
|
|
4072
4489
|
attachHeaderContentPinnedStateChange(
|
|
4073
4490
|
/**
|
|
@@ -4088,6 +4505,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4088
4505
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4089
4506
|
*
|
|
4090
4507
|
* The event is fired when the selected section is changed using the navigation.
|
|
4508
|
+
*
|
|
4509
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4091
4510
|
*/
|
|
4092
4511
|
attachNavigate(
|
|
4093
4512
|
/**
|
|
@@ -4113,6 +4532,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4113
4532
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4114
4533
|
*
|
|
4115
4534
|
* The event is fired when the selected section is changed using the navigation.
|
|
4535
|
+
*
|
|
4536
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4116
4537
|
*/
|
|
4117
4538
|
attachNavigate(
|
|
4118
4539
|
/**
|
|
@@ -4133,6 +4554,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4133
4554
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4134
4555
|
*
|
|
4135
4556
|
* Fired when the current section is changed by scrolling.
|
|
4557
|
+
*
|
|
4558
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4136
4559
|
*/
|
|
4137
4560
|
attachSectionChange(
|
|
4138
4561
|
/**
|
|
@@ -4158,6 +4581,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4158
4581
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4159
4582
|
*
|
|
4160
4583
|
* Fired when the current section is changed by scrolling.
|
|
4584
|
+
*
|
|
4585
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4161
4586
|
*/
|
|
4162
4587
|
attachSectionChange(
|
|
4163
4588
|
/**
|
|
@@ -4179,6 +4604,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4179
4604
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4180
4605
|
*
|
|
4181
4606
|
* Fired when the visibility of subsections is changed.
|
|
4607
|
+
*
|
|
4608
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4182
4609
|
*/
|
|
4183
4610
|
attachSubSectionVisibilityChange(
|
|
4184
4611
|
/**
|
|
@@ -4205,6 +4632,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4205
4632
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4206
4633
|
*
|
|
4207
4634
|
* Fired when the visibility of subsections is changed.
|
|
4635
|
+
*
|
|
4636
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4208
4637
|
*/
|
|
4209
4638
|
attachSubSectionVisibilityChange(
|
|
4210
4639
|
/**
|
|
@@ -4224,6 +4653,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4224
4653
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4225
4654
|
*
|
|
4226
4655
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
4656
|
+
*
|
|
4657
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4227
4658
|
*/
|
|
4228
4659
|
attachToggleAnchorBar(
|
|
4229
4660
|
/**
|
|
@@ -4248,6 +4679,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4248
4679
|
* otherwise it will be bound to this `sap.uxap.ObjectPageLayout` itself.
|
|
4249
4680
|
*
|
|
4250
4681
|
* The event is fired when the Anchor bar is switched from moving to fixed or the other way round.
|
|
4682
|
+
*
|
|
4683
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4251
4684
|
*/
|
|
4252
4685
|
attachToggleAnchorBar(
|
|
4253
4686
|
/**
|
|
@@ -4263,24 +4696,34 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4263
4696
|
* @SINCE 1.40
|
|
4264
4697
|
*
|
|
4265
4698
|
* Destroys the footer in the aggregation {@link #getFooter footer}.
|
|
4699
|
+
*
|
|
4700
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4266
4701
|
*/
|
|
4267
4702
|
destroyFooter(): this;
|
|
4268
4703
|
/**
|
|
4269
4704
|
* Destroys all the headerContent in the aggregation {@link #getHeaderContent headerContent}.
|
|
4705
|
+
*
|
|
4706
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4270
4707
|
*/
|
|
4271
4708
|
destroyHeaderContent(): this;
|
|
4272
4709
|
/**
|
|
4273
4710
|
* Destroys the headerTitle in the aggregation {@link #getHeaderTitle headerTitle}.
|
|
4711
|
+
*
|
|
4712
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4274
4713
|
*/
|
|
4275
4714
|
destroyHeaderTitle(): this;
|
|
4276
4715
|
/**
|
|
4277
4716
|
* @SINCE 1.61
|
|
4278
4717
|
*
|
|
4279
4718
|
* Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
|
|
4719
|
+
*
|
|
4720
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4280
4721
|
*/
|
|
4281
4722
|
destroyLandmarkInfo(): this;
|
|
4282
4723
|
/**
|
|
4283
4724
|
* Destroys all the sections in the aggregation {@link #getSections sections}.
|
|
4725
|
+
*
|
|
4726
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4284
4727
|
*/
|
|
4285
4728
|
destroySections(): this;
|
|
4286
4729
|
/**
|
|
@@ -4288,6 +4731,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4288
4731
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4289
4732
|
*
|
|
4290
4733
|
* The passed function and listener object must match the ones used for event registration.
|
|
4734
|
+
*
|
|
4735
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4291
4736
|
*/
|
|
4292
4737
|
detachEditHeaderButtonPress(
|
|
4293
4738
|
/**
|
|
@@ -4306,6 +4751,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4306
4751
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4307
4752
|
*
|
|
4308
4753
|
* The passed function and listener object must match the ones used for event registration.
|
|
4754
|
+
*
|
|
4755
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4309
4756
|
*/
|
|
4310
4757
|
detachHeaderContentPinnedStateChange(
|
|
4311
4758
|
/**
|
|
@@ -4323,6 +4770,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4323
4770
|
* Detaches event handler `fnFunction` from the {@link #event:navigate navigate} event of this `sap.uxap.ObjectPageLayout`.
|
|
4324
4771
|
*
|
|
4325
4772
|
* The passed function and listener object must match the ones used for event registration.
|
|
4773
|
+
*
|
|
4774
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4326
4775
|
*/
|
|
4327
4776
|
detachNavigate(
|
|
4328
4777
|
/**
|
|
@@ -4341,6 +4790,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4341
4790
|
* `sap.uxap.ObjectPageLayout`.
|
|
4342
4791
|
*
|
|
4343
4792
|
* The passed function and listener object must match the ones used for event registration.
|
|
4793
|
+
*
|
|
4794
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4344
4795
|
*/
|
|
4345
4796
|
detachSectionChange(
|
|
4346
4797
|
/**
|
|
@@ -4359,6 +4810,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4359
4810
|
* event of this `sap.uxap.ObjectPageLayout`.
|
|
4360
4811
|
*
|
|
4361
4812
|
* The passed function and listener object must match the ones used for event registration.
|
|
4813
|
+
*
|
|
4814
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4362
4815
|
*/
|
|
4363
4816
|
detachSubSectionVisibilityChange(
|
|
4364
4817
|
/**
|
|
@@ -4375,6 +4828,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4375
4828
|
* this `sap.uxap.ObjectPageLayout`.
|
|
4376
4829
|
*
|
|
4377
4830
|
* The passed function and listener object must match the ones used for event registration.
|
|
4831
|
+
*
|
|
4832
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4378
4833
|
*/
|
|
4379
4834
|
detachToggleAnchorBar(
|
|
4380
4835
|
/**
|
|
@@ -4388,6 +4843,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4388
4843
|
): this;
|
|
4389
4844
|
/**
|
|
4390
4845
|
* Fires event {@link #event:editHeaderButtonPress editHeaderButtonPress} to attached listeners.
|
|
4846
|
+
*
|
|
4847
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4391
4848
|
*/
|
|
4392
4849
|
fireEditHeaderButtonPress(
|
|
4393
4850
|
/**
|
|
@@ -4400,6 +4857,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4400
4857
|
*
|
|
4401
4858
|
* Fires event {@link #event:headerContentPinnedStateChange headerContentPinnedStateChange} to attached
|
|
4402
4859
|
* listeners.
|
|
4860
|
+
*
|
|
4861
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4403
4862
|
*/
|
|
4404
4863
|
fireHeaderContentPinnedStateChange(
|
|
4405
4864
|
/**
|
|
@@ -4416,6 +4875,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4416
4875
|
* @SINCE 1.40
|
|
4417
4876
|
*
|
|
4418
4877
|
* Fires event {@link #event:navigate navigate} to attached listeners.
|
|
4878
|
+
*
|
|
4879
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4419
4880
|
*/
|
|
4420
4881
|
fireNavigate(
|
|
4421
4882
|
/**
|
|
@@ -4436,6 +4897,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4436
4897
|
* @SINCE 1.73
|
|
4437
4898
|
*
|
|
4438
4899
|
* Fires event {@link #event:sectionChange sectionChange} to attached listeners.
|
|
4900
|
+
*
|
|
4901
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4439
4902
|
*/
|
|
4440
4903
|
fireSectionChange(
|
|
4441
4904
|
/**
|
|
@@ -4456,6 +4919,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4456
4919
|
* @SINCE 1.77
|
|
4457
4920
|
*
|
|
4458
4921
|
* Fires event {@link #event:subSectionVisibilityChange subSectionVisibilityChange} to attached listeners.
|
|
4922
|
+
*
|
|
4923
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4459
4924
|
*/
|
|
4460
4925
|
fireSubSectionVisibilityChange(
|
|
4461
4926
|
/**
|
|
@@ -4470,6 +4935,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4470
4935
|
): this;
|
|
4471
4936
|
/**
|
|
4472
4937
|
* Fires event {@link #event:toggleAnchorBar toggleAnchorBar} to attached listeners.
|
|
4938
|
+
*
|
|
4939
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4473
4940
|
*/
|
|
4474
4941
|
fireToggleAnchorBar(
|
|
4475
4942
|
/**
|
|
@@ -4494,6 +4961,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4494
4961
|
* for the `headerTitle` aggregation.
|
|
4495
4962
|
*
|
|
4496
4963
|
* Default value is `false`.
|
|
4964
|
+
*
|
|
4965
|
+
* @returns Value of property `alwaysShowContentHeader`
|
|
4497
4966
|
*/
|
|
4498
4967
|
getAlwaysShowContentHeader(): boolean;
|
|
4499
4968
|
/**
|
|
@@ -4505,6 +4974,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4505
4974
|
*
|
|
4506
4975
|
* **Note:** The default value of `backgroundDesignAnchorBar` property is null. If the property is not set,
|
|
4507
4976
|
* the color of the background is `@sapUiObjectHeaderBackground`, which depends on the specific theme.
|
|
4977
|
+
*
|
|
4978
|
+
* @returns Value of property `backgroundDesignAnchorBar`
|
|
4508
4979
|
*/
|
|
4509
4980
|
getBackgroundDesignAnchorBar():
|
|
4510
4981
|
| BackgroundDesign
|
|
@@ -4515,6 +4986,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4515
4986
|
* Enable lazy loading for the Object page Subsections.
|
|
4516
4987
|
*
|
|
4517
4988
|
* Default value is `false`.
|
|
4989
|
+
*
|
|
4990
|
+
* @returns Value of property `enableLazyLoading`
|
|
4518
4991
|
*/
|
|
4519
4992
|
getEnableLazyLoading(): boolean;
|
|
4520
4993
|
/**
|
|
@@ -4526,6 +4999,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4526
4999
|
* For more information about SAPUI5 flexibility, refer to the Developer Guide.
|
|
4527
5000
|
*
|
|
4528
5001
|
* Default value is `false`.
|
|
5002
|
+
*
|
|
5003
|
+
* @returns Value of property `flexEnabled`
|
|
4529
5004
|
*/
|
|
4530
5005
|
getFlexEnabled(): boolean;
|
|
4531
5006
|
/**
|
|
@@ -4556,6 +5031,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4556
5031
|
* is used for the `headerTitle` aggregation.
|
|
4557
5032
|
*
|
|
4558
5033
|
* Default value is `true`.
|
|
5034
|
+
*
|
|
5035
|
+
* @returns Value of property `headerContentPinnable`
|
|
4559
5036
|
*/
|
|
4560
5037
|
getHeaderContentPinnable(): boolean;
|
|
4561
5038
|
/**
|
|
@@ -4579,6 +5056,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4579
5056
|
* - The `preserveHeaderStateOnScroll` property or the rules for it to work are `false`
|
|
4580
5057
|
*
|
|
4581
5058
|
* Default value is `false`.
|
|
5059
|
+
*
|
|
5060
|
+
* @returns Value of property `headerContentPinned`
|
|
4582
5061
|
*/
|
|
4583
5062
|
getHeaderContentPinned(): boolean;
|
|
4584
5063
|
/**
|
|
@@ -4593,6 +5072,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4593
5072
|
* Determines the height of the ObjectPage.
|
|
4594
5073
|
*
|
|
4595
5074
|
* Default value is `"100%"`.
|
|
5075
|
+
*
|
|
5076
|
+
* @returns Value of property `height`
|
|
4596
5077
|
*/
|
|
4597
5078
|
getHeight(): CSSSize;
|
|
4598
5079
|
/**
|
|
@@ -4607,6 +5088,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4607
5088
|
* for the `headerTitle` aggregation.
|
|
4608
5089
|
*
|
|
4609
5090
|
* Default value is `false`.
|
|
5091
|
+
*
|
|
5092
|
+
* @returns Value of property `isChildPage`
|
|
4610
5093
|
*/
|
|
4611
5094
|
getIsChildPage(): boolean;
|
|
4612
5095
|
/**
|
|
@@ -4635,10 +5118,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4635
5118
|
* than the given threshold.
|
|
4636
5119
|
*
|
|
4637
5120
|
* Default value is `false`.
|
|
5121
|
+
*
|
|
5122
|
+
* @returns Value of property `preserveHeaderStateOnScroll`
|
|
4638
5123
|
*/
|
|
4639
5124
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
4640
5125
|
/**
|
|
4641
5126
|
* Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
|
|
5127
|
+
*
|
|
5128
|
+
* @returns The scroll delegate instance
|
|
4642
5129
|
*/
|
|
4643
5130
|
getScrollDelegate(): ScrollEnablement;
|
|
4644
5131
|
/**
|
|
@@ -4677,6 +5164,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4677
5164
|
* In this case the value of this property will be ignored.
|
|
4678
5165
|
*
|
|
4679
5166
|
* Default value is `Auto`.
|
|
5167
|
+
*
|
|
5168
|
+
* @returns Value of property `sectionTitleLevel`
|
|
4680
5169
|
*/
|
|
4681
5170
|
getSectionTitleLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
4682
5171
|
/**
|
|
@@ -4692,6 +5181,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4692
5181
|
* Determines whether the Navigation bar (Anchor bar) is displayed.
|
|
4693
5182
|
*
|
|
4694
5183
|
* Default value is `true`.
|
|
5184
|
+
*
|
|
5185
|
+
* @returns Value of property `showAnchorBar`
|
|
4695
5186
|
*/
|
|
4696
5187
|
getShowAnchorBar(): boolean;
|
|
4697
5188
|
/**
|
|
@@ -4701,6 +5192,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4701
5192
|
* bar.
|
|
4702
5193
|
*
|
|
4703
5194
|
* Default value is `true`.
|
|
5195
|
+
*
|
|
5196
|
+
* @returns Value of property `showAnchorBarPopover`
|
|
4704
5197
|
*/
|
|
4705
5198
|
getShowAnchorBarPopover(): boolean;
|
|
4706
5199
|
/**
|
|
@@ -4714,6 +5207,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4714
5207
|
* for the `headerTitle` aggregation.
|
|
4715
5208
|
*
|
|
4716
5209
|
* Default value is `false`.
|
|
5210
|
+
*
|
|
5211
|
+
* @returns Value of property `showEditHeaderButton`
|
|
4717
5212
|
*/
|
|
4718
5213
|
getShowEditHeaderButton(): boolean;
|
|
4719
5214
|
/**
|
|
@@ -4724,6 +5219,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4724
5219
|
* Determines whether the footer is visible.
|
|
4725
5220
|
*
|
|
4726
5221
|
* Default value is `false`.
|
|
5222
|
+
*
|
|
5223
|
+
* @returns Value of property `showFooter`
|
|
4727
5224
|
*/
|
|
4728
5225
|
getShowFooter(): boolean;
|
|
4729
5226
|
/**
|
|
@@ -4732,6 +5229,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4732
5229
|
* Determines the visibility of the Header content (headerContent aggregation).
|
|
4733
5230
|
*
|
|
4734
5231
|
* Default value is `true`.
|
|
5232
|
+
*
|
|
5233
|
+
* @returns Value of property `showHeaderContent`
|
|
4735
5234
|
*/
|
|
4736
5235
|
getShowHeaderContent(): boolean;
|
|
4737
5236
|
/**
|
|
@@ -4742,6 +5241,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4742
5241
|
* Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
|
|
4743
5242
|
*
|
|
4744
5243
|
* Default value is `false`.
|
|
5244
|
+
*
|
|
5245
|
+
* @returns Value of property `showOnlyHighImportance`
|
|
4745
5246
|
*/
|
|
4746
5247
|
getShowOnlyHighImportance(): boolean;
|
|
4747
5248
|
/**
|
|
@@ -4753,6 +5254,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4753
5254
|
* for the `headerTitle` aggregation.
|
|
4754
5255
|
*
|
|
4755
5256
|
* Default value is `false`.
|
|
5257
|
+
*
|
|
5258
|
+
* @returns Value of property `showTitleInHeaderContent`
|
|
4756
5259
|
*/
|
|
4757
5260
|
getShowTitleInHeaderContent(): boolean;
|
|
4758
5261
|
/**
|
|
@@ -4761,6 +5264,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4761
5264
|
* Determines whether Subsection titles are displayed on top or to the left of the Subsection content.
|
|
4762
5265
|
*
|
|
4763
5266
|
* Default value is `TitleOnTop`.
|
|
5267
|
+
*
|
|
5268
|
+
* @returns Value of property `subSectionLayout`
|
|
4764
5269
|
*/
|
|
4765
5270
|
getSubSectionLayout():
|
|
4766
5271
|
| ObjectPageSubSectionLayout
|
|
@@ -4779,6 +5284,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4779
5284
|
* is used for the `headerTitle` aggregation.
|
|
4780
5285
|
*
|
|
4781
5286
|
* Default value is `true`.
|
|
5287
|
+
*
|
|
5288
|
+
* @returns Value of property `toggleHeaderOnTitleClick`
|
|
4782
5289
|
*/
|
|
4783
5290
|
getToggleHeaderOnTitleClick(): boolean;
|
|
4784
5291
|
/**
|
|
@@ -4787,6 +5294,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4787
5294
|
* Determines whether the Anchor bar items are displayed in upper case.
|
|
4788
5295
|
*
|
|
4789
5296
|
* Default value is `true`.
|
|
5297
|
+
*
|
|
5298
|
+
* @returns Value of property `upperCaseAnchorBar`
|
|
4790
5299
|
*/
|
|
4791
5300
|
getUpperCaseAnchorBar(): boolean;
|
|
4792
5301
|
/**
|
|
@@ -4798,6 +5307,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4798
5307
|
* **Note:** Keep in mind that the `sap.m.IconTabBar` control is no longer used for the tab navigation mode.
|
|
4799
5308
|
*
|
|
4800
5309
|
* Default value is `false`.
|
|
5310
|
+
*
|
|
5311
|
+
* @returns Value of property `useIconTabBar`
|
|
4801
5312
|
*/
|
|
4802
5313
|
getUseIconTabBar(): boolean;
|
|
4803
5314
|
/**
|
|
@@ -4806,11 +5317,15 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4806
5317
|
* Determines whether the to use two column layout for the L screen size.
|
|
4807
5318
|
*
|
|
4808
5319
|
* Default value is `false`.
|
|
5320
|
+
*
|
|
5321
|
+
* @returns Value of property `useTwoColumnsForLargeScreen`
|
|
4809
5322
|
*/
|
|
4810
5323
|
getUseTwoColumnsForLargeScreen(): boolean;
|
|
4811
5324
|
/**
|
|
4812
5325
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getHeaderContent headerContent}.
|
|
4813
5326
|
* and returns its index if found or -1 otherwise.
|
|
5327
|
+
*
|
|
5328
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
4814
5329
|
*/
|
|
4815
5330
|
indexOfHeaderContent(
|
|
4816
5331
|
/**
|
|
@@ -4821,6 +5336,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4821
5336
|
/**
|
|
4822
5337
|
* Checks for the provided `sap.uxap.ObjectPageSection` in the aggregation {@link #getSections sections}.
|
|
4823
5338
|
* and returns its index if found or -1 otherwise.
|
|
5339
|
+
*
|
|
5340
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
4824
5341
|
*/
|
|
4825
5342
|
indexOfSection(
|
|
4826
5343
|
/**
|
|
@@ -4830,6 +5347,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4830
5347
|
): int;
|
|
4831
5348
|
/**
|
|
4832
5349
|
* Inserts a headerContent into the aggregation {@link #getHeaderContent headerContent}.
|
|
5350
|
+
*
|
|
5351
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4833
5352
|
*/
|
|
4834
5353
|
insertHeaderContent(
|
|
4835
5354
|
/**
|
|
@@ -4845,6 +5364,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4845
5364
|
): this;
|
|
4846
5365
|
/**
|
|
4847
5366
|
* Inserts a section into the aggregation {@link #getSections sections}.
|
|
5367
|
+
*
|
|
5368
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4848
5369
|
*/
|
|
4849
5370
|
insertSection(
|
|
4850
5371
|
/**
|
|
@@ -4873,16 +5394,22 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4873
5394
|
* Removes all the controls from the aggregation {@link #getHeaderContent headerContent}.
|
|
4874
5395
|
*
|
|
4875
5396
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
5397
|
+
*
|
|
5398
|
+
* @returns An array of the removed elements (might be empty)
|
|
4876
5399
|
*/
|
|
4877
5400
|
removeAllHeaderContent(): Control[];
|
|
4878
5401
|
/**
|
|
4879
5402
|
* Removes all the controls from the aggregation {@link #getSections sections}.
|
|
4880
5403
|
*
|
|
4881
5404
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
5405
|
+
*
|
|
5406
|
+
* @returns An array of the removed elements (might be empty)
|
|
4882
5407
|
*/
|
|
4883
5408
|
removeAllSections(): ObjectPageSection[];
|
|
4884
5409
|
/**
|
|
4885
5410
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
5411
|
+
*
|
|
5412
|
+
* @returns The removed headerContent or `null`
|
|
4886
5413
|
*/
|
|
4887
5414
|
removeHeaderContent(
|
|
4888
5415
|
/**
|
|
@@ -4892,6 +5419,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4892
5419
|
): Control;
|
|
4893
5420
|
/**
|
|
4894
5421
|
* Removes a section from the aggregation {@link #getSections sections}.
|
|
5422
|
+
*
|
|
5423
|
+
* @returns The removed section or `null`
|
|
4895
5424
|
*/
|
|
4896
5425
|
removeSection(
|
|
4897
5426
|
/**
|
|
@@ -4929,6 +5458,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4929
5458
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4930
5459
|
*
|
|
4931
5460
|
* Default value is `false`.
|
|
5461
|
+
*
|
|
5462
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4932
5463
|
*/
|
|
4933
5464
|
setAlwaysShowContentHeader(
|
|
4934
5465
|
/**
|
|
@@ -4940,6 +5471,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4940
5471
|
* @SINCE 1.58
|
|
4941
5472
|
*
|
|
4942
5473
|
* Sets the value of the `backgroundDesignAnchorBar` property.
|
|
5474
|
+
*
|
|
5475
|
+
* @returns `this` to allow method chaining
|
|
4943
5476
|
*/
|
|
4944
5477
|
setBackgroundDesignAnchorBar(
|
|
4945
5478
|
/**
|
|
@@ -4957,6 +5490,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4957
5490
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4958
5491
|
*
|
|
4959
5492
|
* Default value is `false`.
|
|
5493
|
+
*
|
|
5494
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4960
5495
|
*/
|
|
4961
5496
|
setEnableLazyLoading(
|
|
4962
5497
|
/**
|
|
@@ -4975,6 +5510,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4975
5510
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4976
5511
|
*
|
|
4977
5512
|
* Default value is `false`.
|
|
5513
|
+
*
|
|
5514
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4978
5515
|
*/
|
|
4979
5516
|
setFlexEnabled(
|
|
4980
5517
|
/**
|
|
@@ -4986,6 +5523,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
4986
5523
|
* @SINCE 1.40
|
|
4987
5524
|
*
|
|
4988
5525
|
* Sets the aggregated {@link #getFooter footer}.
|
|
5526
|
+
*
|
|
5527
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
4989
5528
|
*/
|
|
4990
5529
|
setFooter(
|
|
4991
5530
|
/**
|
|
@@ -5009,6 +5548,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5009
5548
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5010
5549
|
*
|
|
5011
5550
|
* Default value is `true`.
|
|
5551
|
+
*
|
|
5552
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5012
5553
|
*/
|
|
5013
5554
|
setHeaderContentPinnable(
|
|
5014
5555
|
/**
|
|
@@ -5039,6 +5580,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5039
5580
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5040
5581
|
*
|
|
5041
5582
|
* Default value is `false`.
|
|
5583
|
+
*
|
|
5584
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5042
5585
|
*/
|
|
5043
5586
|
setHeaderContentPinned(
|
|
5044
5587
|
/**
|
|
@@ -5048,6 +5591,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5048
5591
|
): this;
|
|
5049
5592
|
/**
|
|
5050
5593
|
* Sets the aggregated {@link #getHeaderTitle headerTitle}.
|
|
5594
|
+
*
|
|
5595
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5051
5596
|
*/
|
|
5052
5597
|
setHeaderTitle(
|
|
5053
5598
|
/**
|
|
@@ -5063,6 +5608,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5063
5608
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5064
5609
|
*
|
|
5065
5610
|
* Default value is `"100%"`.
|
|
5611
|
+
*
|
|
5612
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5066
5613
|
*/
|
|
5067
5614
|
setHeight(
|
|
5068
5615
|
/**
|
|
@@ -5084,6 +5631,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5084
5631
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5085
5632
|
*
|
|
5086
5633
|
* Default value is `false`.
|
|
5634
|
+
*
|
|
5635
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5087
5636
|
*/
|
|
5088
5637
|
setIsChildPage(
|
|
5089
5638
|
/**
|
|
@@ -5095,6 +5644,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5095
5644
|
* @SINCE 1.61
|
|
5096
5645
|
*
|
|
5097
5646
|
* Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
|
|
5647
|
+
*
|
|
5648
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5098
5649
|
*/
|
|
5099
5650
|
setLandmarkInfo(
|
|
5100
5651
|
/**
|
|
@@ -5120,6 +5671,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5120
5671
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5121
5672
|
*
|
|
5122
5673
|
* Default value is `false`.
|
|
5674
|
+
*
|
|
5675
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5123
5676
|
*/
|
|
5124
5677
|
setPreserveHeaderStateOnScroll(
|
|
5125
5678
|
/**
|
|
@@ -5155,6 +5708,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5155
5708
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5156
5709
|
*
|
|
5157
5710
|
* Default value is `Auto`.
|
|
5711
|
+
*
|
|
5712
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5158
5713
|
*/
|
|
5159
5714
|
setSectionTitleLevel(
|
|
5160
5715
|
/**
|
|
@@ -5167,14 +5722,18 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5167
5722
|
*
|
|
5168
5723
|
* The section can either be given by itself or by its id.
|
|
5169
5724
|
*
|
|
5170
|
-
*
|
|
5171
|
-
*
|
|
5172
|
-
* has 0 visible sections).
|
|
5725
|
+
* If left unspecified, then the page automatically sets the value to the first visible section before rendering.
|
|
5726
|
+
* The value never remains empty because `sap.uxap.ObjectPageLayout` should always have one of its sections
|
|
5727
|
+
* selected (unless it has 0 visible sections).
|
|
5728
|
+
*
|
|
5729
|
+
* **Note:** Updating the `selectedSection` with a value of `null` resets the `selectedSection` to the first
|
|
5730
|
+
* visible section and scrolls the page to the top.
|
|
5731
|
+
*
|
|
5732
|
+
* @returns Returns `this` to allow method chaining
|
|
5173
5733
|
*/
|
|
5174
5734
|
setSelectedSection(
|
|
5175
5735
|
/**
|
|
5176
|
-
* The ID or the section instance that should be selected Note that `
|
|
5177
|
-
* arguments
|
|
5736
|
+
* The ID or the section instance that should be selected Note that `undefined` is not a valid argument
|
|
5178
5737
|
*/
|
|
5179
5738
|
sId: string | ObjectPageSection
|
|
5180
5739
|
): this;
|
|
@@ -5186,6 +5745,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5186
5745
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5187
5746
|
*
|
|
5188
5747
|
* Default value is `true`.
|
|
5748
|
+
*
|
|
5749
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5189
5750
|
*/
|
|
5190
5751
|
setShowAnchorBar(
|
|
5191
5752
|
/**
|
|
@@ -5202,6 +5763,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5202
5763
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5203
5764
|
*
|
|
5204
5765
|
* Default value is `true`.
|
|
5766
|
+
*
|
|
5767
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5205
5768
|
*/
|
|
5206
5769
|
setShowAnchorBarPopover(
|
|
5207
5770
|
/**
|
|
@@ -5222,6 +5785,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5222
5785
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5223
5786
|
*
|
|
5224
5787
|
* Default value is `false`.
|
|
5788
|
+
*
|
|
5789
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5225
5790
|
*/
|
|
5226
5791
|
setShowEditHeaderButton(
|
|
5227
5792
|
/**
|
|
@@ -5239,6 +5804,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5239
5804
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5240
5805
|
*
|
|
5241
5806
|
* Default value is `false`.
|
|
5807
|
+
*
|
|
5808
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5242
5809
|
*/
|
|
5243
5810
|
setShowFooter(
|
|
5244
5811
|
/**
|
|
@@ -5254,6 +5821,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5254
5821
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5255
5822
|
*
|
|
5256
5823
|
* Default value is `true`.
|
|
5824
|
+
*
|
|
5825
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5257
5826
|
*/
|
|
5258
5827
|
setShowHeaderContent(
|
|
5259
5828
|
/**
|
|
@@ -5271,6 +5840,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5271
5840
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5272
5841
|
*
|
|
5273
5842
|
* Default value is `false`.
|
|
5843
|
+
*
|
|
5844
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5274
5845
|
*/
|
|
5275
5846
|
setShowOnlyHighImportance(
|
|
5276
5847
|
/**
|
|
@@ -5289,6 +5860,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5289
5860
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5290
5861
|
*
|
|
5291
5862
|
* Default value is `false`.
|
|
5863
|
+
*
|
|
5864
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5292
5865
|
*/
|
|
5293
5866
|
setShowTitleInHeaderContent(
|
|
5294
5867
|
/**
|
|
@@ -5304,6 +5877,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5304
5877
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5305
5878
|
*
|
|
5306
5879
|
* Default value is `TitleOnTop`.
|
|
5880
|
+
*
|
|
5881
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5307
5882
|
*/
|
|
5308
5883
|
setSubSectionLayout(
|
|
5309
5884
|
/**
|
|
@@ -5329,6 +5904,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5329
5904
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5330
5905
|
*
|
|
5331
5906
|
* Default value is `true`.
|
|
5907
|
+
*
|
|
5908
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5332
5909
|
*/
|
|
5333
5910
|
setToggleHeaderOnTitleClick(
|
|
5334
5911
|
/**
|
|
@@ -5344,6 +5921,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5344
5921
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5345
5922
|
*
|
|
5346
5923
|
* Default value is `true`.
|
|
5924
|
+
*
|
|
5925
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5347
5926
|
*/
|
|
5348
5927
|
setUpperCaseAnchorBar(
|
|
5349
5928
|
/**
|
|
@@ -5362,6 +5941,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5362
5941
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5363
5942
|
*
|
|
5364
5943
|
* Default value is `false`.
|
|
5944
|
+
*
|
|
5945
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5365
5946
|
*/
|
|
5366
5947
|
setUseIconTabBar(
|
|
5367
5948
|
/**
|
|
@@ -5377,6 +5958,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5377
5958
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5378
5959
|
*
|
|
5379
5960
|
* Default value is `false`.
|
|
5961
|
+
*
|
|
5962
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5380
5963
|
*/
|
|
5381
5964
|
setUseTwoColumnsForLargeScreen(
|
|
5382
5965
|
/**
|
|
@@ -5390,18 +5973,18 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5390
5973
|
/**
|
|
5391
5974
|
* Determines whether the Navigation bar (Anchor bar) is displayed.
|
|
5392
5975
|
*/
|
|
5393
|
-
showAnchorBar?: boolean | PropertyBindingInfo
|
|
5976
|
+
showAnchorBar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5394
5977
|
|
|
5395
5978
|
/**
|
|
5396
5979
|
* Determines whether to show a Popover with Subsection links when clicking on Section links in the Anchor
|
|
5397
5980
|
* bar.
|
|
5398
5981
|
*/
|
|
5399
|
-
showAnchorBarPopover?: boolean | PropertyBindingInfo
|
|
5982
|
+
showAnchorBarPopover?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5400
5983
|
|
|
5401
5984
|
/**
|
|
5402
5985
|
* Determines whether the Anchor bar items are displayed in upper case.
|
|
5403
5986
|
*/
|
|
5404
|
-
upperCaseAnchorBar?: boolean | PropertyBindingInfo
|
|
5987
|
+
upperCaseAnchorBar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5405
5988
|
|
|
5406
5989
|
/**
|
|
5407
5990
|
* @SINCE 1.58
|
|
@@ -5413,24 +5996,26 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5413
5996
|
*/
|
|
5414
5997
|
backgroundDesignAnchorBar?:
|
|
5415
5998
|
| (BackgroundDesign | keyof typeof BackgroundDesign)
|
|
5416
|
-
| PropertyBindingInfo
|
|
5999
|
+
| PropertyBindingInfo
|
|
6000
|
+
| `{${string}}`;
|
|
5417
6001
|
|
|
5418
6002
|
/**
|
|
5419
6003
|
* Determines the height of the ObjectPage.
|
|
5420
6004
|
*/
|
|
5421
|
-
height?: CSSSize | PropertyBindingInfo
|
|
6005
|
+
height?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
5422
6006
|
|
|
5423
6007
|
/**
|
|
5424
6008
|
* Enable lazy loading for the Object page Subsections.
|
|
5425
6009
|
*/
|
|
5426
|
-
enableLazyLoading?: boolean | PropertyBindingInfo
|
|
6010
|
+
enableLazyLoading?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5427
6011
|
|
|
5428
6012
|
/**
|
|
5429
6013
|
* Determines whether Subsection titles are displayed on top or to the left of the Subsection content.
|
|
5430
6014
|
*/
|
|
5431
6015
|
subSectionLayout?:
|
|
5432
6016
|
| (ObjectPageSubSectionLayout | keyof typeof ObjectPageSubSectionLayout)
|
|
5433
|
-
| PropertyBindingInfo
|
|
6017
|
+
| PropertyBindingInfo
|
|
6018
|
+
| `{${string}}`;
|
|
5434
6019
|
|
|
5435
6020
|
/**
|
|
5436
6021
|
* @SINCE 1.44.0
|
|
@@ -5457,7 +6042,8 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5457
6042
|
*/
|
|
5458
6043
|
sectionTitleLevel?:
|
|
5459
6044
|
| (TitleLevel | keyof typeof TitleLevel)
|
|
5460
|
-
| PropertyBindingInfo
|
|
6045
|
+
| PropertyBindingInfo
|
|
6046
|
+
| `{${string}}`;
|
|
5461
6047
|
|
|
5462
6048
|
/**
|
|
5463
6049
|
* Determines whether the navigation mode is tab-based instead of the default anchor bar. If enabled, the
|
|
@@ -5465,17 +6051,17 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5465
6051
|
*
|
|
5466
6052
|
* **Note:** Keep in mind that the `sap.m.IconTabBar` control is no longer used for the tab navigation mode.
|
|
5467
6053
|
*/
|
|
5468
|
-
useIconTabBar?: boolean | PropertyBindingInfo
|
|
6054
|
+
useIconTabBar?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5469
6055
|
|
|
5470
6056
|
/**
|
|
5471
6057
|
* Determines the visibility of the Header content (headerContent aggregation).
|
|
5472
6058
|
*/
|
|
5473
|
-
showHeaderContent?: boolean | PropertyBindingInfo
|
|
6059
|
+
showHeaderContent?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5474
6060
|
|
|
5475
6061
|
/**
|
|
5476
6062
|
* Determines whether the to use two column layout for the L screen size.
|
|
5477
6063
|
*/
|
|
5478
|
-
useTwoColumnsForLargeScreen?: boolean | PropertyBindingInfo
|
|
6064
|
+
useTwoColumnsForLargeScreen?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5479
6065
|
|
|
5480
6066
|
/**
|
|
5481
6067
|
* Determines whether the title, image, markers and selectTitleArrow are shown in the Header content area.
|
|
@@ -5483,14 +6069,14 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5483
6069
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
5484
6070
|
* for the `headerTitle` aggregation.
|
|
5485
6071
|
*/
|
|
5486
|
-
showTitleInHeaderContent?: boolean | PropertyBindingInfo
|
|
6072
|
+
showTitleInHeaderContent?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5487
6073
|
|
|
5488
6074
|
/**
|
|
5489
6075
|
* @SINCE 1.32.0
|
|
5490
6076
|
*
|
|
5491
6077
|
* Determines whether sections and subsections with importance Low and Medium are hidden even on large screens.
|
|
5492
6078
|
*/
|
|
5493
|
-
showOnlyHighImportance?: boolean | PropertyBindingInfo
|
|
6079
|
+
showOnlyHighImportance?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5494
6080
|
|
|
5495
6081
|
/**
|
|
5496
6082
|
* @SINCE 1.34.0
|
|
@@ -5501,7 +6087,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5501
6087
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
5502
6088
|
* for the `headerTitle` aggregation.
|
|
5503
6089
|
*/
|
|
5504
|
-
isChildPage?: boolean | PropertyBindingInfo
|
|
6090
|
+
isChildPage?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5505
6091
|
|
|
5506
6092
|
/**
|
|
5507
6093
|
* @SINCE 1.34.0
|
|
@@ -5511,7 +6097,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5511
6097
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
5512
6098
|
* for the `headerTitle` aggregation.
|
|
5513
6099
|
*/
|
|
5514
|
-
alwaysShowContentHeader?: boolean | PropertyBindingInfo
|
|
6100
|
+
alwaysShowContentHeader?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5515
6101
|
|
|
5516
6102
|
/**
|
|
5517
6103
|
* @SINCE 1.52
|
|
@@ -5524,7 +6110,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5524
6110
|
* **Note:** This property is only taken into account if an instance of `sap.uxap.ObjectPageDynamicHeaderTitle`
|
|
5525
6111
|
* is used for the `headerTitle` aggregation.
|
|
5526
6112
|
*/
|
|
5527
|
-
headerContentPinnable?: boolean | PropertyBindingInfo
|
|
6113
|
+
headerContentPinnable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5528
6114
|
|
|
5529
6115
|
/**
|
|
5530
6116
|
* @SINCE 1.93
|
|
@@ -5544,7 +6130,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5544
6130
|
* - The `sap.uxap.ObjectPageDynamicHeaderContent` is expanded
|
|
5545
6131
|
* - The `preserveHeaderStateOnScroll` property or the rules for it to work are `false`
|
|
5546
6132
|
*/
|
|
5547
|
-
headerContentPinned?: boolean | PropertyBindingInfo
|
|
6133
|
+
headerContentPinned?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5548
6134
|
|
|
5549
6135
|
/**
|
|
5550
6136
|
* @SINCE 1.52
|
|
@@ -5557,7 +6143,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5557
6143
|
* **Note:** This property is only taken into account if an instance of `sap.uxap.ObjectPageDynamicHeaderTitle`
|
|
5558
6144
|
* is used for the `headerTitle` aggregation.
|
|
5559
6145
|
*/
|
|
5560
|
-
toggleHeaderOnTitleClick?: boolean | PropertyBindingInfo
|
|
6146
|
+
toggleHeaderOnTitleClick?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5561
6147
|
|
|
5562
6148
|
/**
|
|
5563
6149
|
* @SINCE 1.52
|
|
@@ -5572,7 +6158,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5572
6158
|
* when the control is rendered on tablet or mobile and the control`s title and header are with height larger
|
|
5573
6159
|
* than the given threshold.
|
|
5574
6160
|
*/
|
|
5575
|
-
preserveHeaderStateOnScroll?: boolean | PropertyBindingInfo
|
|
6161
|
+
preserveHeaderStateOnScroll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5576
6162
|
|
|
5577
6163
|
/**
|
|
5578
6164
|
* @SINCE 1.34.0
|
|
@@ -5582,7 +6168,7 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5582
6168
|
* **Note**: This property is only taken into account if an instance of `sap.uxap.ObjectPageHeader` is used
|
|
5583
6169
|
* for the `headerTitle` aggregation.
|
|
5584
6170
|
*/
|
|
5585
|
-
showEditHeaderButton?: boolean | PropertyBindingInfo
|
|
6171
|
+
showEditHeaderButton?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5586
6172
|
|
|
5587
6173
|
/**
|
|
5588
6174
|
* @SINCE 1.34.0
|
|
@@ -5590,19 +6176,23 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5590
6176
|
* Specifies whether the object page enables flexibility features, such as hiding and adding sections.
|
|
5591
6177
|
* For more information about SAPUI5 flexibility, refer to the Developer Guide.
|
|
5592
6178
|
*/
|
|
5593
|
-
flexEnabled?: boolean | PropertyBindingInfo
|
|
6179
|
+
flexEnabled?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5594
6180
|
|
|
5595
6181
|
/**
|
|
5596
6182
|
* @SINCE 1.40
|
|
5597
6183
|
*
|
|
5598
6184
|
* Determines whether the footer is visible.
|
|
5599
6185
|
*/
|
|
5600
|
-
showFooter?: boolean | PropertyBindingInfo
|
|
6186
|
+
showFooter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
5601
6187
|
|
|
5602
6188
|
/**
|
|
5603
6189
|
* The sections that make up the Object page content area.
|
|
5604
6190
|
*/
|
|
5605
|
-
sections?:
|
|
6191
|
+
sections?:
|
|
6192
|
+
| ObjectPageSection[]
|
|
6193
|
+
| ObjectPageSection
|
|
6194
|
+
| AggregationBindingInfo
|
|
6195
|
+
| `{${string}}`;
|
|
5606
6196
|
|
|
5607
6197
|
/**
|
|
5608
6198
|
* Object page header title - the upper, always static, part of the Object page header.
|
|
@@ -5612,7 +6202,11 @@ declare module "sap/uxap/ObjectPageLayout" {
|
|
|
5612
6202
|
/**
|
|
5613
6203
|
* Object page header content - the dynamic part of the Object page header.
|
|
5614
6204
|
*/
|
|
5615
|
-
headerContent?:
|
|
6205
|
+
headerContent?:
|
|
6206
|
+
| Control[]
|
|
6207
|
+
| Control
|
|
6208
|
+
| AggregationBindingInfo
|
|
6209
|
+
| `{${string}}`;
|
|
5616
6210
|
|
|
5617
6211
|
/**
|
|
5618
6212
|
* @SINCE 1.40
|
|
@@ -5739,6 +6333,8 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5739
6333
|
* with the information contained in `oClassInfo`.
|
|
5740
6334
|
*
|
|
5741
6335
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
6336
|
+
*
|
|
6337
|
+
* @returns Created class / constructor function
|
|
5742
6338
|
*/
|
|
5743
6339
|
static extend<T extends Record<string, unknown>>(
|
|
5744
6340
|
/**
|
|
@@ -5757,10 +6353,14 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5757
6353
|
): Function;
|
|
5758
6354
|
/**
|
|
5759
6355
|
* Returns a metadata object for class sap.uxap.ObjectPageLazyLoader.
|
|
6356
|
+
*
|
|
6357
|
+
* @returns Metadata object describing this class
|
|
5760
6358
|
*/
|
|
5761
6359
|
static getMetadata(): ElementMetadata;
|
|
5762
6360
|
/**
|
|
5763
6361
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
6362
|
+
*
|
|
6363
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5764
6364
|
*/
|
|
5765
6365
|
addContent(
|
|
5766
6366
|
/**
|
|
@@ -5770,6 +6370,8 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5770
6370
|
): this;
|
|
5771
6371
|
/**
|
|
5772
6372
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
6373
|
+
*
|
|
6374
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5773
6375
|
*/
|
|
5774
6376
|
destroyContent(): this;
|
|
5775
6377
|
/**
|
|
@@ -5781,6 +6383,8 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5781
6383
|
/**
|
|
5782
6384
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
5783
6385
|
* its index if found or -1 otherwise.
|
|
6386
|
+
*
|
|
6387
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
5784
6388
|
*/
|
|
5785
6389
|
indexOfContent(
|
|
5786
6390
|
/**
|
|
@@ -5790,6 +6394,8 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5790
6394
|
): int;
|
|
5791
6395
|
/**
|
|
5792
6396
|
* Inserts a content into the aggregation {@link #getContent content}.
|
|
6397
|
+
*
|
|
6398
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5793
6399
|
*/
|
|
5794
6400
|
insertContent(
|
|
5795
6401
|
/**
|
|
@@ -5807,10 +6413,14 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5807
6413
|
* Removes all the controls from the aggregation {@link #getContent content}.
|
|
5808
6414
|
*
|
|
5809
6415
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
6416
|
+
*
|
|
6417
|
+
* @returns An array of the removed elements (might be empty)
|
|
5810
6418
|
*/
|
|
5811
6419
|
removeAllContent(): Control[];
|
|
5812
6420
|
/**
|
|
5813
6421
|
* Removes a content from the aggregation {@link #getContent content}.
|
|
6422
|
+
*
|
|
6423
|
+
* @returns The removed content or `null`
|
|
5814
6424
|
*/
|
|
5815
6425
|
removeContent(
|
|
5816
6426
|
/**
|
|
@@ -5824,7 +6434,7 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
|
|
|
5824
6434
|
/**
|
|
5825
6435
|
* Controls to be displayed after this element is unstashed
|
|
5826
6436
|
*/
|
|
5827
|
-
content?: Control[] | Control | AggregationBindingInfo
|
|
6437
|
+
content?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
5828
6438
|
}
|
|
5829
6439
|
}
|
|
5830
6440
|
|
|
@@ -5891,6 +6501,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5891
6501
|
* the information contained in `oClassInfo`.
|
|
5892
6502
|
*
|
|
5893
6503
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.uxap.ObjectPageSectionBase.extend}.
|
|
6504
|
+
*
|
|
6505
|
+
* @returns Created class / constructor function
|
|
5894
6506
|
*/
|
|
5895
6507
|
static extend<T extends Record<string, unknown>>(
|
|
5896
6508
|
/**
|
|
@@ -5909,10 +6521,14 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5909
6521
|
): Function;
|
|
5910
6522
|
/**
|
|
5911
6523
|
* Returns a metadata object for class sap.uxap.ObjectPageSection.
|
|
6524
|
+
*
|
|
6525
|
+
* @returns Metadata object describing this class
|
|
5912
6526
|
*/
|
|
5913
6527
|
static getMetadata(): ElementMetadata;
|
|
5914
6528
|
/**
|
|
5915
6529
|
* Adds some subSection to the aggregation {@link #getSubSections subSections}.
|
|
6530
|
+
*
|
|
6531
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5916
6532
|
*/
|
|
5917
6533
|
addSubSection(
|
|
5918
6534
|
/**
|
|
@@ -5922,6 +6538,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5922
6538
|
): this;
|
|
5923
6539
|
/**
|
|
5924
6540
|
* Destroys all the subSections in the aggregation {@link #getSubSections subSections}.
|
|
6541
|
+
*
|
|
6542
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5925
6543
|
*/
|
|
5926
6544
|
destroySubSections(): this;
|
|
5927
6545
|
/**
|
|
@@ -5935,6 +6553,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5935
6553
|
* Determines whether to display the Section title or not.
|
|
5936
6554
|
*
|
|
5937
6555
|
* Default value is `true`.
|
|
6556
|
+
*
|
|
6557
|
+
* @returns Value of property `showTitle`
|
|
5938
6558
|
*/
|
|
5939
6559
|
getShowTitle(): boolean;
|
|
5940
6560
|
/**
|
|
@@ -5949,11 +6569,15 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5949
6569
|
* Determines whether the Section title is displayed in upper case.
|
|
5950
6570
|
*
|
|
5951
6571
|
* Default value is `true`.
|
|
6572
|
+
*
|
|
6573
|
+
* @returns Value of property `titleUppercase`
|
|
5952
6574
|
*/
|
|
5953
6575
|
getTitleUppercase(): boolean;
|
|
5954
6576
|
/**
|
|
5955
6577
|
* Checks for the provided `sap.uxap.ObjectPageSubSection` in the aggregation {@link #getSubSections subSections}.
|
|
5956
6578
|
* and returns its index if found or -1 otherwise.
|
|
6579
|
+
*
|
|
6580
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
5957
6581
|
*/
|
|
5958
6582
|
indexOfSubSection(
|
|
5959
6583
|
/**
|
|
@@ -5963,6 +6587,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5963
6587
|
): int;
|
|
5964
6588
|
/**
|
|
5965
6589
|
* Inserts a subSection into the aggregation {@link #getSubSections subSections}.
|
|
6590
|
+
*
|
|
6591
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5966
6592
|
*/
|
|
5967
6593
|
insertSubSection(
|
|
5968
6594
|
/**
|
|
@@ -5980,10 +6606,14 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5980
6606
|
* Removes all the controls from the aggregation {@link #getSubSections subSections}.
|
|
5981
6607
|
*
|
|
5982
6608
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
6609
|
+
*
|
|
6610
|
+
* @returns An array of the removed elements (might be empty)
|
|
5983
6611
|
*/
|
|
5984
6612
|
removeAllSubSections(): ObjectPageSubSection[];
|
|
5985
6613
|
/**
|
|
5986
6614
|
* Removes a subSection from the aggregation {@link #getSubSections subSections}.
|
|
6615
|
+
*
|
|
6616
|
+
* @returns The removed subSection or `null`
|
|
5987
6617
|
*/
|
|
5988
6618
|
removeSubSection(
|
|
5989
6619
|
/**
|
|
@@ -5993,6 +6623,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
5993
6623
|
): ObjectPageSubSection;
|
|
5994
6624
|
/**
|
|
5995
6625
|
* Sets the associated {@link #getSelectedSubSection selectedSubSection}.
|
|
6626
|
+
*
|
|
6627
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5996
6628
|
*/
|
|
5997
6629
|
setSelectedSubSection(
|
|
5998
6630
|
/**
|
|
@@ -6009,6 +6641,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6009
6641
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6010
6642
|
*
|
|
6011
6643
|
* Default value is `true`.
|
|
6644
|
+
*
|
|
6645
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6012
6646
|
*/
|
|
6013
6647
|
setShowTitle(
|
|
6014
6648
|
/**
|
|
@@ -6024,6 +6658,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6024
6658
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6025
6659
|
*
|
|
6026
6660
|
* Default value is `true`.
|
|
6661
|
+
*
|
|
6662
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6027
6663
|
*/
|
|
6028
6664
|
setTitleUppercase(
|
|
6029
6665
|
/**
|
|
@@ -6038,12 +6674,12 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6038
6674
|
/**
|
|
6039
6675
|
* Determines whether to display the Section title or not.
|
|
6040
6676
|
*/
|
|
6041
|
-
showTitle?: boolean | PropertyBindingInfo
|
|
6677
|
+
showTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6042
6678
|
|
|
6043
6679
|
/**
|
|
6044
6680
|
* Determines whether the Section title is displayed in upper case.
|
|
6045
6681
|
*/
|
|
6046
|
-
titleUppercase?: boolean | PropertyBindingInfo
|
|
6682
|
+
titleUppercase?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6047
6683
|
|
|
6048
6684
|
/**
|
|
6049
6685
|
* The list of Subsections.
|
|
@@ -6051,7 +6687,8 @@ declare module "sap/uxap/ObjectPageSection" {
|
|
|
6051
6687
|
subSections?:
|
|
6052
6688
|
| ObjectPageSubSection[]
|
|
6053
6689
|
| ObjectPageSubSection
|
|
6054
|
-
| AggregationBindingInfo
|
|
6690
|
+
| AggregationBindingInfo
|
|
6691
|
+
| `{${string}}`;
|
|
6055
6692
|
|
|
6056
6693
|
/**
|
|
6057
6694
|
* The most recently selected Subsection by the user.
|
|
@@ -6115,6 +6752,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6115
6752
|
* with the information contained in `oClassInfo`.
|
|
6116
6753
|
*
|
|
6117
6754
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
6755
|
+
*
|
|
6756
|
+
* @returns Created class / constructor function
|
|
6118
6757
|
*/
|
|
6119
6758
|
static extend<T extends Record<string, unknown>>(
|
|
6120
6759
|
/**
|
|
@@ -6133,6 +6772,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6133
6772
|
): Function;
|
|
6134
6773
|
/**
|
|
6135
6774
|
* Returns a metadata object for class sap.uxap.ObjectPageSectionBase.
|
|
6775
|
+
*
|
|
6776
|
+
* @returns Metadata object describing this class
|
|
6136
6777
|
*/
|
|
6137
6778
|
static getMetadata(): ElementMetadata;
|
|
6138
6779
|
/**
|
|
@@ -6141,6 +6782,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6141
6782
|
connectToModels(): void;
|
|
6142
6783
|
/**
|
|
6143
6784
|
* Destroys the customAnchorBarButton in the aggregation {@link #getCustomAnchorBarButton customAnchorBarButton}.
|
|
6785
|
+
*
|
|
6786
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6144
6787
|
*/
|
|
6145
6788
|
destroyCustomAnchorBarButton(): this;
|
|
6146
6789
|
/**
|
|
@@ -6162,12 +6805,16 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6162
6805
|
* Determines whether the section will be hidden on low resolutions.
|
|
6163
6806
|
*
|
|
6164
6807
|
* Default value is `High`.
|
|
6808
|
+
*
|
|
6809
|
+
* @returns Value of property `importance`
|
|
6165
6810
|
*/
|
|
6166
6811
|
getImportance(): Importance | keyof typeof Importance;
|
|
6167
6812
|
/**
|
|
6168
6813
|
* Returns the control name text.
|
|
6169
6814
|
*
|
|
6170
6815
|
* To be overwritten by the specific control method.
|
|
6816
|
+
*
|
|
6817
|
+
* @returns control name text
|
|
6171
6818
|
*/
|
|
6172
6819
|
getSectionText(): string;
|
|
6173
6820
|
/**
|
|
@@ -6178,6 +6825,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6178
6825
|
* **Note:** If a subsection is the only one (or the only one visible) within a section, its title is displayed
|
|
6179
6826
|
* instead of the section title. This behavior is true even if the `showTitle` propeprty of {@link sap.uxap.ObjectPageSubSection}
|
|
6180
6827
|
* is set to `false`.
|
|
6828
|
+
*
|
|
6829
|
+
* @returns Value of property `title`
|
|
6181
6830
|
*/
|
|
6182
6831
|
getTitle(): string;
|
|
6183
6832
|
/**
|
|
@@ -6194,6 +6843,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6194
6843
|
* title.
|
|
6195
6844
|
*
|
|
6196
6845
|
* Default value is `Auto`.
|
|
6846
|
+
*
|
|
6847
|
+
* @returns Value of property `titleLevel`
|
|
6197
6848
|
*/
|
|
6198
6849
|
getTitleLevel(): TitleLevel | keyof typeof TitleLevel;
|
|
6199
6850
|
/**
|
|
@@ -6202,10 +6853,14 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6202
6853
|
* Invisible ObjectPageSectionBase are not rendered
|
|
6203
6854
|
*
|
|
6204
6855
|
* Default value is `true`.
|
|
6856
|
+
*
|
|
6857
|
+
* @returns Value of property `visible`
|
|
6205
6858
|
*/
|
|
6206
6859
|
getVisible(): boolean;
|
|
6207
6860
|
/**
|
|
6208
6861
|
* Sets the aggregated {@link #getCustomAnchorBarButton customAnchorBarButton}.
|
|
6862
|
+
*
|
|
6863
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6209
6864
|
*/
|
|
6210
6865
|
setCustomAnchorBarButton(
|
|
6211
6866
|
/**
|
|
@@ -6223,6 +6878,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6223
6878
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6224
6879
|
*
|
|
6225
6880
|
* Default value is `High`.
|
|
6881
|
+
*
|
|
6882
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6226
6883
|
*/
|
|
6227
6884
|
setImportance(
|
|
6228
6885
|
/**
|
|
@@ -6234,6 +6891,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6234
6891
|
* Returns the DOM Element that should get the focus.
|
|
6235
6892
|
*
|
|
6236
6893
|
* To be overwritten by the specific control method.
|
|
6894
|
+
*
|
|
6895
|
+
* @returns this for chaining
|
|
6237
6896
|
*/
|
|
6238
6897
|
setInvisibleTextLabelValue(): this;
|
|
6239
6898
|
/**
|
|
@@ -6246,6 +6905,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6246
6905
|
* is set to `false`.
|
|
6247
6906
|
*
|
|
6248
6907
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6908
|
+
*
|
|
6909
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6249
6910
|
*/
|
|
6250
6911
|
setTitle(
|
|
6251
6912
|
/**
|
|
@@ -6269,6 +6930,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6269
6930
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6270
6931
|
*
|
|
6271
6932
|
* Default value is `Auto`.
|
|
6933
|
+
*
|
|
6934
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6272
6935
|
*/
|
|
6273
6936
|
setTitleLevel(
|
|
6274
6937
|
/**
|
|
@@ -6284,6 +6947,8 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6284
6947
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6285
6948
|
*
|
|
6286
6949
|
* Default value is `true`.
|
|
6950
|
+
*
|
|
6951
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6287
6952
|
*/
|
|
6288
6953
|
setVisible(
|
|
6289
6954
|
/**
|
|
@@ -6314,19 +6979,25 @@ declare module "sap/uxap/ObjectPageSectionBase" {
|
|
|
6314
6979
|
* For example: if `titleLevel` is `TitleLevel.H1`, it will result as aria-level of 1 added to the `ObjectPageSectionBase`
|
|
6315
6980
|
* title.
|
|
6316
6981
|
*/
|
|
6317
|
-
titleLevel?:
|
|
6982
|
+
titleLevel?:
|
|
6983
|
+
| (TitleLevel | keyof typeof TitleLevel)
|
|
6984
|
+
| PropertyBindingInfo
|
|
6985
|
+
| `{${string}}`;
|
|
6318
6986
|
|
|
6319
6987
|
/**
|
|
6320
6988
|
* Invisible ObjectPageSectionBase are not rendered
|
|
6321
6989
|
*/
|
|
6322
|
-
visible?: boolean | PropertyBindingInfo
|
|
6990
|
+
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6323
6991
|
|
|
6324
6992
|
/**
|
|
6325
6993
|
* @SINCE 1.32.0
|
|
6326
6994
|
*
|
|
6327
6995
|
* Determines whether the section will be hidden on low resolutions.
|
|
6328
6996
|
*/
|
|
6329
|
-
importance?:
|
|
6997
|
+
importance?:
|
|
6998
|
+
| (Importance | keyof typeof Importance)
|
|
6999
|
+
| PropertyBindingInfo
|
|
7000
|
+
| `{${string}}`;
|
|
6330
7001
|
|
|
6331
7002
|
/**
|
|
6332
7003
|
* The custom button that will provide a link to the section in the ObjectPageLayout anchor bar. This button
|
|
@@ -6413,6 +7084,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6413
7084
|
* with the information contained in `oClassInfo`.
|
|
6414
7085
|
*
|
|
6415
7086
|
* `oClassInfo` might contain the same kind of information as described in {@link sap.uxap.ObjectPageSectionBase.extend}.
|
|
7087
|
+
*
|
|
7088
|
+
* @returns Created class / constructor function
|
|
6416
7089
|
*/
|
|
6417
7090
|
static extend<T extends Record<string, unknown>>(
|
|
6418
7091
|
/**
|
|
@@ -6431,10 +7104,14 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6431
7104
|
): Function;
|
|
6432
7105
|
/**
|
|
6433
7106
|
* Returns a metadata object for class sap.uxap.ObjectPageSubSection.
|
|
7107
|
+
*
|
|
7108
|
+
* @returns Metadata object describing this class
|
|
6434
7109
|
*/
|
|
6435
7110
|
static getMetadata(): ElementMetadata;
|
|
6436
7111
|
/**
|
|
6437
7112
|
* Adds some action to the aggregation {@link #getActions actions}.
|
|
7113
|
+
*
|
|
7114
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6438
7115
|
*/
|
|
6439
7116
|
addAction(
|
|
6440
7117
|
/**
|
|
@@ -6444,6 +7121,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6444
7121
|
): this;
|
|
6445
7122
|
/**
|
|
6446
7123
|
* Adds some block to the aggregation {@link #getBlocks blocks}.
|
|
7124
|
+
*
|
|
7125
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6447
7126
|
*/
|
|
6448
7127
|
addBlock(
|
|
6449
7128
|
/**
|
|
@@ -6453,6 +7132,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6453
7132
|
): this;
|
|
6454
7133
|
/**
|
|
6455
7134
|
* Adds some moreBlock to the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
7135
|
+
*
|
|
7136
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6456
7137
|
*/
|
|
6457
7138
|
addMoreBlock(
|
|
6458
7139
|
/**
|
|
@@ -6462,14 +7143,20 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6462
7143
|
): this;
|
|
6463
7144
|
/**
|
|
6464
7145
|
* Destroys all the actions in the aggregation {@link #getActions actions}.
|
|
7146
|
+
*
|
|
7147
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6465
7148
|
*/
|
|
6466
7149
|
destroyActions(): this;
|
|
6467
7150
|
/**
|
|
6468
7151
|
* Destroys all the blocks in the aggregation {@link #getBlocks blocks}.
|
|
7152
|
+
*
|
|
7153
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6469
7154
|
*/
|
|
6470
7155
|
destroyBlocks(): this;
|
|
6471
7156
|
/**
|
|
6472
7157
|
* Destroys all the moreBlocks in the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
7158
|
+
*
|
|
7159
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6473
7160
|
*/
|
|
6474
7161
|
destroyMoreBlocks(): this;
|
|
6475
7162
|
/**
|
|
@@ -6517,6 +7204,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6517
7204
|
* if these aggregations use Object page blocks.
|
|
6518
7205
|
*
|
|
6519
7206
|
* Default value is `Collapsed`.
|
|
7207
|
+
*
|
|
7208
|
+
* @returns Value of property `mode`
|
|
6520
7209
|
*/
|
|
6521
7210
|
getMode(): ObjectPageSubSectionMode | keyof typeof ObjectPageSubSectionMode;
|
|
6522
7211
|
/**
|
|
@@ -6538,6 +7227,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6538
7227
|
* for both the section and its subsection.
|
|
6539
7228
|
*
|
|
6540
7229
|
* Default value is `true`.
|
|
7230
|
+
*
|
|
7231
|
+
* @returns Value of property `showTitle`
|
|
6541
7232
|
*/
|
|
6542
7233
|
getShowTitle(): boolean;
|
|
6543
7234
|
/**
|
|
@@ -6546,11 +7237,15 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6546
7237
|
* Determines whether the Subsection title is displayed in upper case.
|
|
6547
7238
|
*
|
|
6548
7239
|
* Default value is `false`.
|
|
7240
|
+
*
|
|
7241
|
+
* @returns Value of property `titleUppercase`
|
|
6549
7242
|
*/
|
|
6550
7243
|
getTitleUppercase(): boolean;
|
|
6551
7244
|
/**
|
|
6552
7245
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getActions actions}. and returns
|
|
6553
7246
|
* its index if found or -1 otherwise.
|
|
7247
|
+
*
|
|
7248
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6554
7249
|
*/
|
|
6555
7250
|
indexOfAction(
|
|
6556
7251
|
/**
|
|
@@ -6561,6 +7256,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6561
7256
|
/**
|
|
6562
7257
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getBlocks blocks}. and returns
|
|
6563
7258
|
* its index if found or -1 otherwise.
|
|
7259
|
+
*
|
|
7260
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6564
7261
|
*/
|
|
6565
7262
|
indexOfBlock(
|
|
6566
7263
|
/**
|
|
@@ -6571,6 +7268,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6571
7268
|
/**
|
|
6572
7269
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMoreBlocks moreBlocks}. and
|
|
6573
7270
|
* returns its index if found or -1 otherwise.
|
|
7271
|
+
*
|
|
7272
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
6574
7273
|
*/
|
|
6575
7274
|
indexOfMoreBlock(
|
|
6576
7275
|
/**
|
|
@@ -6580,6 +7279,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6580
7279
|
): int;
|
|
6581
7280
|
/**
|
|
6582
7281
|
* Inserts a action into the aggregation {@link #getActions actions}.
|
|
7282
|
+
*
|
|
7283
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6583
7284
|
*/
|
|
6584
7285
|
insertAction(
|
|
6585
7286
|
/**
|
|
@@ -6598,6 +7299,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6598
7299
|
*
|
|
6599
7300
|
* **Note:** The `insertBlock` method is not supported by design. If used, it works as an `addBlock`, adding
|
|
6600
7301
|
* a single block to the end of the `blocks` aggregation.
|
|
7302
|
+
*
|
|
7303
|
+
* @returns The `sap.uxap.ObjectPageSubSection` instance
|
|
6601
7304
|
*/
|
|
6602
7305
|
insertBlock(
|
|
6603
7306
|
/**
|
|
@@ -6614,6 +7317,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6614
7317
|
*
|
|
6615
7318
|
* **Note:** The `insertMoreBlock` method is not supported by design. If used, it works as an `addMoreBlock`,
|
|
6616
7319
|
* adding a single block to the end of the `moreBlocks` aggregation.
|
|
7320
|
+
*
|
|
7321
|
+
* @returns The `sap.uxap.ObjectPageSubSection` instance
|
|
6617
7322
|
*/
|
|
6618
7323
|
insertMoreBlock(
|
|
6619
7324
|
/**
|
|
@@ -6627,6 +7332,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6627
7332
|
): this;
|
|
6628
7333
|
/**
|
|
6629
7334
|
* Removes a action from the aggregation {@link #getActions actions}.
|
|
7335
|
+
*
|
|
7336
|
+
* @returns The removed action or `null`
|
|
6630
7337
|
*/
|
|
6631
7338
|
removeAction(
|
|
6632
7339
|
/**
|
|
@@ -6638,22 +7345,30 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6638
7345
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
6639
7346
|
*
|
|
6640
7347
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7348
|
+
*
|
|
7349
|
+
* @returns An array of the removed elements (might be empty)
|
|
6641
7350
|
*/
|
|
6642
7351
|
removeAllActions(): Control[];
|
|
6643
7352
|
/**
|
|
6644
7353
|
* Removes all the controls from the aggregation {@link #getBlocks blocks}.
|
|
6645
7354
|
*
|
|
6646
7355
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7356
|
+
*
|
|
7357
|
+
* @returns An array of the removed elements (might be empty)
|
|
6647
7358
|
*/
|
|
6648
7359
|
removeAllBlocks(): Control[];
|
|
6649
7360
|
/**
|
|
6650
7361
|
* Removes all the controls from the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
6651
7362
|
*
|
|
6652
7363
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
7364
|
+
*
|
|
7365
|
+
* @returns An array of the removed elements (might be empty)
|
|
6653
7366
|
*/
|
|
6654
7367
|
removeAllMoreBlocks(): Control[];
|
|
6655
7368
|
/**
|
|
6656
7369
|
* Removes a block from the aggregation {@link #getBlocks blocks}.
|
|
7370
|
+
*
|
|
7371
|
+
* @returns The removed block or `null`
|
|
6657
7372
|
*/
|
|
6658
7373
|
removeBlock(
|
|
6659
7374
|
/**
|
|
@@ -6663,6 +7378,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6663
7378
|
): Control;
|
|
6664
7379
|
/**
|
|
6665
7380
|
* Removes a moreBlock from the aggregation {@link #getMoreBlocks moreBlocks}.
|
|
7381
|
+
*
|
|
7382
|
+
* @returns The removed moreBlock or `null`
|
|
6666
7383
|
*/
|
|
6667
7384
|
removeMoreBlock(
|
|
6668
7385
|
/**
|
|
@@ -6679,6 +7396,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6679
7396
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6680
7397
|
*
|
|
6681
7398
|
* Default value is `Collapsed`.
|
|
7399
|
+
*
|
|
7400
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6682
7401
|
*/
|
|
6683
7402
|
setMode(
|
|
6684
7403
|
/**
|
|
@@ -6701,6 +7420,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6701
7420
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6702
7421
|
*
|
|
6703
7422
|
* Default value is `true`.
|
|
7423
|
+
*
|
|
7424
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6704
7425
|
*/
|
|
6705
7426
|
setShowTitle(
|
|
6706
7427
|
/**
|
|
@@ -6716,6 +7437,8 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6716
7437
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6717
7438
|
*
|
|
6718
7439
|
* Default value is `false`.
|
|
7440
|
+
*
|
|
7441
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6719
7442
|
*/
|
|
6720
7443
|
setTitleUppercase(
|
|
6721
7444
|
/**
|
|
@@ -6737,7 +7460,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6737
7460
|
* which is the only one (or the only one visible), you need to set the `showTitle` properties to `false`
|
|
6738
7461
|
* for both the section and its subsection.
|
|
6739
7462
|
*/
|
|
6740
|
-
showTitle?: boolean | PropertyBindingInfo
|
|
7463
|
+
showTitle?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6741
7464
|
|
|
6742
7465
|
/**
|
|
6743
7466
|
* A mode property that will be passed to the controls in the blocks and moreBlocks aggregations. Only relevant
|
|
@@ -6745,12 +7468,13 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6745
7468
|
*/
|
|
6746
7469
|
mode?:
|
|
6747
7470
|
| (ObjectPageSubSectionMode | keyof typeof ObjectPageSubSectionMode)
|
|
6748
|
-
| PropertyBindingInfo
|
|
7471
|
+
| PropertyBindingInfo
|
|
7472
|
+
| `{${string}}`;
|
|
6749
7473
|
|
|
6750
7474
|
/**
|
|
6751
7475
|
* Determines whether the Subsection title is displayed in upper case.
|
|
6752
7476
|
*/
|
|
6753
|
-
titleUppercase?: boolean | PropertyBindingInfo
|
|
7477
|
+
titleUppercase?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
6754
7478
|
|
|
6755
7479
|
/**
|
|
6756
7480
|
* Controls to be displayed in the subsection
|
|
@@ -6774,12 +7498,12 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6774
7498
|
* ` <Form class="sapUxAPObjectPageSubSectionAlignContent" width="auto"></Form> `
|
|
6775
7499
|
* ```
|
|
6776
7500
|
*/
|
|
6777
|
-
blocks?: Control[] | Control | AggregationBindingInfo
|
|
7501
|
+
blocks?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
6778
7502
|
|
|
6779
7503
|
/**
|
|
6780
7504
|
* Additional controls to display when the Show more / See all / (...) button is pressed
|
|
6781
7505
|
*/
|
|
6782
|
-
moreBlocks?: Control[] | Control | AggregationBindingInfo
|
|
7506
|
+
moreBlocks?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
6783
7507
|
|
|
6784
7508
|
/**
|
|
6785
7509
|
* Actions available for this subsection.
|
|
@@ -6791,7 +7515,7 @@ declare module "sap/uxap/ObjectPageSubSection" {
|
|
|
6791
7515
|
* NOT have overflow behavior. If the available space is not enough, the controls will be displayed on more
|
|
6792
7516
|
* lines.
|
|
6793
7517
|
*/
|
|
6794
|
-
actions?: Control[] | Control | AggregationBindingInfo
|
|
7518
|
+
actions?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
|
|
6795
7519
|
}
|
|
6796
7520
|
}
|
|
6797
7521
|
|