@openui5/types 1.120.11 → 1.120.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.11
1
+ // For Library Version: 1.120.13
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -402,7 +402,9 @@ declare module "sap/uxap/AnchorBar" {
402
402
  bUpperCase?: boolean
403
403
  ): this;
404
404
  }
405
-
405
+ /**
406
+ * Describes the settings that can be provided to the AnchorBar constructor.
407
+ */
406
408
  export interface $AnchorBarSettings extends $ToolbarSettings {
407
409
  /**
408
410
  * Determines whether to show a Popover with Subsection links when clicking on Section links in the Anchor
@@ -895,7 +897,9 @@ declare module "sap/uxap/BlockBase" {
895
897
  bVisible?: boolean
896
898
  ): this;
897
899
  }
898
-
900
+ /**
901
+ * Describes the settings that can be provided to the BlockBase constructor.
902
+ */
899
903
  export interface $BlockBaseSettings extends $ControlSettings {
900
904
  /**
901
905
  * Determines the mode of the block. See {@link sap.uxap.ObjectPageSubSectionMode ObjectPageSubSectionMode}.
@@ -963,6 +967,9 @@ declare module "sap/uxap/BlockBase" {
963
967
  viewInit?: (oEvent: BlockBase$ViewInitEvent) => void;
964
968
  }
965
969
 
970
+ /**
971
+ * Parameters of the BlockBase#viewInit event.
972
+ */
966
973
  export interface BlockBase$ViewInitEventParameters {
967
974
  /**
968
975
  * The initialized view.
@@ -970,6 +977,9 @@ declare module "sap/uxap/BlockBase" {
970
977
  view?: View;
971
978
  }
972
979
 
980
+ /**
981
+ * Event object of the BlockBase#viewInit event.
982
+ */
973
983
  export type BlockBase$ViewInitEvent = Event<
974
984
  BlockBase$ViewInitEventParameters,
975
985
  BlockBase
@@ -1200,7 +1210,9 @@ declare module "sap/uxap/BreadCrumbs" {
1200
1210
  bShowCurrentLocation?: boolean
1201
1211
  ): this;
1202
1212
  }
1203
-
1213
+ /**
1214
+ * Describes the settings that can be provided to the BreadCrumbs constructor.
1215
+ */
1204
1216
  export interface $BreadCrumbsSettings extends $ControlSettings {
1205
1217
  /**
1206
1218
  * Sets the visibility of the current/last element in the BreadCrumbs path.
@@ -1327,7 +1339,9 @@ declare module "sap/uxap/HierarchicalSelect" {
1327
1339
  bUpperCase?: boolean
1328
1340
  ): this;
1329
1341
  }
1330
-
1342
+ /**
1343
+ * Describes the settings that can be provided to the HierarchicalSelect constructor.
1344
+ */
1331
1345
  export interface $HierarchicalSelectSettings extends $SelectSettings {
1332
1346
  /**
1333
1347
  * Determines whether the HierarchicalSelect items are displayed in upper case.
@@ -1491,7 +1505,9 @@ declare module "sap/uxap/ModelMapping" {
1491
1505
  sInternalModelName?: string
1492
1506
  ): this;
1493
1507
  }
1494
-
1508
+ /**
1509
+ * Describes the settings that can be provided to the ModelMapping constructor.
1510
+ */
1495
1511
  export interface $ModelMappingSettings extends $ElementSettings {
1496
1512
  /**
1497
1513
  * Determines the external model name.
@@ -1932,7 +1948,9 @@ declare module "sap/uxap/ObjectPageAccessibleLandmarkInfo" {
1932
1948
  sRootRole?: AccessibleLandmarkRole | keyof typeof AccessibleLandmarkRole
1933
1949
  ): this;
1934
1950
  }
1935
-
1951
+ /**
1952
+ * Describes the settings that can be provided to the ObjectPageAccessibleLandmarkInfo constructor.
1953
+ */
1936
1954
  export interface $ObjectPageAccessibleLandmarkInfoSettings
1937
1955
  extends $ElementSettings {
1938
1956
  /**
@@ -2131,7 +2149,9 @@ declare module "sap/uxap/ObjectPageDynamicHeaderContent" {
2131
2149
  */
2132
2150
  static getMetadata(): ElementMetadata;
2133
2151
  }
2134
-
2152
+ /**
2153
+ * Describes the settings that can be provided to the ObjectPageDynamicHeaderContent constructor.
2154
+ */
2135
2155
  export interface $ObjectPageDynamicHeaderContentSettings
2136
2156
  extends $DynamicPageHeaderSettings {}
2137
2157
  }
@@ -2240,7 +2260,9 @@ declare module "sap/uxap/ObjectPageDynamicHeaderTitle" {
2240
2260
  */
2241
2261
  static getMetadata(): ElementMetadata;
2242
2262
  }
2243
-
2263
+ /**
2264
+ * Describes the settings that can be provided to the ObjectPageDynamicHeaderTitle constructor.
2265
+ */
2244
2266
  export interface $ObjectPageDynamicHeaderTitleSettings
2245
2267
  extends $DynamicPageTitleSettings {}
2246
2268
  }
@@ -3433,7 +3455,9 @@ declare module "sap/uxap/ObjectPageHeader" {
3433
3455
  vTitleSelectorTooltip: TooltipBase | string
3434
3456
  ): this;
3435
3457
  }
3436
-
3458
+ /**
3459
+ * Describes the settings that can be provided to the ObjectPageHeader constructor.
3460
+ */
3437
3461
  export interface $ObjectPageHeaderSettings extends $ControlSettings {
3438
3462
  /**
3439
3463
  * The URL of the image, representing the business object
@@ -3622,6 +3646,9 @@ declare module "sap/uxap/ObjectPageHeader" {
3622
3646
  markChangesPress?: (oEvent: ObjectPageHeader$MarkChangesPressEvent) => void;
3623
3647
  }
3624
3648
 
3649
+ /**
3650
+ * Parameters of the ObjectPageHeader#markChangesPress event.
3651
+ */
3625
3652
  export interface ObjectPageHeader$MarkChangesPressEventParameters {
3626
3653
  /**
3627
3654
  * DOM reference of the changed item's icon to be used for positioning.
@@ -3629,11 +3656,17 @@ declare module "sap/uxap/ObjectPageHeader" {
3629
3656
  domRef?: string;
3630
3657
  }
3631
3658
 
3659
+ /**
3660
+ * Event object of the ObjectPageHeader#markChangesPress event.
3661
+ */
3632
3662
  export type ObjectPageHeader$MarkChangesPressEvent = Event<
3633
3663
  ObjectPageHeader$MarkChangesPressEventParameters,
3634
3664
  ObjectPageHeader
3635
3665
  >;
3636
3666
 
3667
+ /**
3668
+ * Parameters of the ObjectPageHeader#markLockedPress event.
3669
+ */
3637
3670
  export interface ObjectPageHeader$MarkLockedPressEventParameters {
3638
3671
  /**
3639
3672
  * DOM reference of the lock item's icon to be used for positioning.
@@ -3641,11 +3674,17 @@ declare module "sap/uxap/ObjectPageHeader" {
3641
3674
  domRef?: string;
3642
3675
  }
3643
3676
 
3677
+ /**
3678
+ * Event object of the ObjectPageHeader#markLockedPress event.
3679
+ */
3644
3680
  export type ObjectPageHeader$MarkLockedPressEvent = Event<
3645
3681
  ObjectPageHeader$MarkLockedPressEventParameters,
3646
3682
  ObjectPageHeader
3647
3683
  >;
3648
3684
 
3685
+ /**
3686
+ * Parameters of the ObjectPageHeader#titleSelectorPress event.
3687
+ */
3649
3688
  export interface ObjectPageHeader$TitleSelectorPressEventParameters {
3650
3689
  /**
3651
3690
  * DOM reference of the title item's icon to be used for positioning.
@@ -3653,6 +3692,9 @@ declare module "sap/uxap/ObjectPageHeader" {
3653
3692
  domRef?: string;
3654
3693
  }
3655
3694
 
3695
+ /**
3696
+ * Event object of the ObjectPageHeader#titleSelectorPress event.
3697
+ */
3656
3698
  export type ObjectPageHeader$TitleSelectorPressEvent = Event<
3657
3699
  ObjectPageHeader$TitleSelectorPressEventParameters,
3658
3700
  ObjectPageHeader
@@ -3842,7 +3884,9 @@ declare module "sap/uxap/ObjectPageHeaderActionButton" {
3842
3884
  sImportance?: Importance | keyof typeof Importance
3843
3885
  ): this;
3844
3886
  }
3845
-
3887
+ /**
3888
+ * Describes the settings that can be provided to the ObjectPageHeaderActionButton constructor.
3889
+ */
3846
3890
  export interface $ObjectPageHeaderActionButtonSettings
3847
3891
  extends $ButtonSettings {
3848
3892
  /**
@@ -4085,7 +4129,9 @@ declare module "sap/uxap/ObjectPageHeaderContent" {
4085
4129
  | keyof typeof ObjectPageHeaderDesign
4086
4130
  ): this;
4087
4131
  }
4088
-
4132
+ /**
4133
+ * Describes the settings that can be provided to the ObjectPageHeaderContent constructor.
4134
+ */
4089
4135
  export interface $ObjectPageHeaderContentSettings extends $ControlSettings {
4090
4136
  /**
4091
4137
  * Determines the design of the header - Light or Dark. **Note: **This property is deprecated. It will continue
@@ -4364,7 +4410,9 @@ declare module "sap/uxap/ObjectPageHeaderLayoutData" {
4364
4410
  sWidth?: CSSSize
4365
4411
  ): this;
4366
4412
  }
4367
-
4413
+ /**
4414
+ * Describes the settings that can be provided to the ObjectPageHeaderLayoutData constructor.
4415
+ */
4368
4416
  export interface $ObjectPageHeaderLayoutDataSettings
4369
4417
  extends $LayoutDataSettings {
4370
4418
  /**
@@ -6259,7 +6307,9 @@ declare module "sap/uxap/ObjectPageLayout" {
6259
6307
  bUseTwoColumnsForLargeScreen?: boolean
6260
6308
  ): this;
6261
6309
  }
6262
-
6310
+ /**
6311
+ * Describes the settings that can be provided to the ObjectPageLayout constructor.
6312
+ */
6263
6313
  export interface $ObjectPageLayoutSettings extends $ControlSettings {
6264
6314
  /**
6265
6315
  * Determines whether the Navigation bar (Anchor bar) is displayed.
@@ -6573,6 +6623,9 @@ declare module "sap/uxap/ObjectPageLayout" {
6573
6623
  ) => void;
6574
6624
  }
6575
6625
 
6626
+ /**
6627
+ * Parameters of the ObjectPageLayout#beforeNavigate event.
6628
+ */
6576
6629
  export interface ObjectPageLayout$BeforeNavigateEventParameters {
6577
6630
  /**
6578
6631
  * The selected section object.
@@ -6585,18 +6638,30 @@ declare module "sap/uxap/ObjectPageLayout" {
6585
6638
  subSection?: ObjectPageSubSection;
6586
6639
  }
6587
6640
 
6641
+ /**
6642
+ * Event object of the ObjectPageLayout#beforeNavigate event.
6643
+ */
6588
6644
  export type ObjectPageLayout$BeforeNavigateEvent = Event<
6589
6645
  ObjectPageLayout$BeforeNavigateEventParameters,
6590
6646
  ObjectPageLayout
6591
6647
  >;
6592
6648
 
6649
+ /**
6650
+ * Parameters of the ObjectPageLayout#editHeaderButtonPress event.
6651
+ */
6593
6652
  export interface ObjectPageLayout$EditHeaderButtonPressEventParameters {}
6594
6653
 
6654
+ /**
6655
+ * Event object of the ObjectPageLayout#editHeaderButtonPress event.
6656
+ */
6595
6657
  export type ObjectPageLayout$EditHeaderButtonPressEvent = Event<
6596
6658
  ObjectPageLayout$EditHeaderButtonPressEventParameters,
6597
6659
  ObjectPageLayout
6598
6660
  >;
6599
6661
 
6662
+ /**
6663
+ * Parameters of the ObjectPageLayout#headerContentPinnedStateChange event.
6664
+ */
6600
6665
  export interface ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters {
6601
6666
  /**
6602
6667
  * False or True values indicate the new pinned property value.
@@ -6604,11 +6669,17 @@ declare module "sap/uxap/ObjectPageLayout" {
6604
6669
  pinned?: boolean;
6605
6670
  }
6606
6671
 
6672
+ /**
6673
+ * Event object of the ObjectPageLayout#headerContentPinnedStateChange event.
6674
+ */
6607
6675
  export type ObjectPageLayout$HeaderContentPinnedStateChangeEvent = Event<
6608
6676
  ObjectPageLayout$HeaderContentPinnedStateChangeEventParameters,
6609
6677
  ObjectPageLayout
6610
6678
  >;
6611
6679
 
6680
+ /**
6681
+ * Parameters of the ObjectPageLayout#navigate event.
6682
+ */
6612
6683
  export interface ObjectPageLayout$NavigateEventParameters {
6613
6684
  /**
6614
6685
  * The selected section object.
@@ -6621,11 +6692,17 @@ declare module "sap/uxap/ObjectPageLayout" {
6621
6692
  subSection?: ObjectPageSubSection;
6622
6693
  }
6623
6694
 
6695
+ /**
6696
+ * Event object of the ObjectPageLayout#navigate event.
6697
+ */
6624
6698
  export type ObjectPageLayout$NavigateEvent = Event<
6625
6699
  ObjectPageLayout$NavigateEventParameters,
6626
6700
  ObjectPageLayout
6627
6701
  >;
6628
6702
 
6703
+ /**
6704
+ * Parameters of the ObjectPageLayout#sectionChange event.
6705
+ */
6629
6706
  export interface ObjectPageLayout$SectionChangeEventParameters {
6630
6707
  /**
6631
6708
  * The section which the layout is scrolled to.
@@ -6638,11 +6715,17 @@ declare module "sap/uxap/ObjectPageLayout" {
6638
6715
  subSection?: ObjectPageSubSection;
6639
6716
  }
6640
6717
 
6718
+ /**
6719
+ * Event object of the ObjectPageLayout#sectionChange event.
6720
+ */
6641
6721
  export type ObjectPageLayout$SectionChangeEvent = Event<
6642
6722
  ObjectPageLayout$SectionChangeEventParameters,
6643
6723
  ObjectPageLayout
6644
6724
  >;
6645
6725
 
6726
+ /**
6727
+ * Parameters of the ObjectPageLayout#subSectionVisibilityChange event.
6728
+ */
6646
6729
  export interface ObjectPageLayout$SubSectionVisibilityChangeEventParameters {
6647
6730
  /**
6648
6731
  * Object whose keys are the visible SubSection IDs and their values are the SubSection instances
@@ -6650,11 +6733,17 @@ declare module "sap/uxap/ObjectPageLayout" {
6650
6733
  visibleSubSections?: object;
6651
6734
  }
6652
6735
 
6736
+ /**
6737
+ * Event object of the ObjectPageLayout#subSectionVisibilityChange event.
6738
+ */
6653
6739
  export type ObjectPageLayout$SubSectionVisibilityChangeEvent = Event<
6654
6740
  ObjectPageLayout$SubSectionVisibilityChangeEventParameters,
6655
6741
  ObjectPageLayout
6656
6742
  >;
6657
6743
 
6744
+ /**
6745
+ * Parameters of the ObjectPageLayout#toggleAnchorBar event.
6746
+ */
6658
6747
  export interface ObjectPageLayout$ToggleAnchorBarEventParameters {
6659
6748
  /**
6660
6749
  * False indicates that the Anchor bar has just detached from the Header and became part of the scrolling
@@ -6663,6 +6752,9 @@ declare module "sap/uxap/ObjectPageLayout" {
6663
6752
  fixed?: boolean;
6664
6753
  }
6665
6754
 
6755
+ /**
6756
+ * Event object of the ObjectPageLayout#toggleAnchorBar event.
6757
+ */
6666
6758
  export type ObjectPageLayout$ToggleAnchorBarEvent = Event<
6667
6759
  ObjectPageLayout$ToggleAnchorBarEventParameters,
6668
6760
  ObjectPageLayout
@@ -6835,7 +6927,9 @@ declare module "sap/uxap/ObjectPageLazyLoader" {
6835
6927
  vContent: int | string | Control
6836
6928
  ): Control | null;
6837
6929
  }
6838
-
6930
+ /**
6931
+ * Describes the settings that can be provided to the ObjectPageLazyLoader constructor.
6932
+ */
6839
6933
  export interface $ObjectPageLazyLoaderSettings extends $ElementSettings {
6840
6934
  /**
6841
6935
  * Controls to be displayed after this element is unstashed
@@ -7149,7 +7243,9 @@ declare module "sap/uxap/ObjectPageSection" {
7149
7243
  bWrapTitle?: boolean
7150
7244
  ): this;
7151
7245
  }
7152
-
7246
+ /**
7247
+ * Describes the settings that can be provided to the ObjectPageSection constructor.
7248
+ */
7153
7249
  export interface $ObjectPageSectionSettings
7154
7250
  extends $ObjectPageSectionBaseSettings {
7155
7251
  /**
@@ -7463,7 +7559,9 @@ declare module "sap/uxap/ObjectPageSectionBase" {
7463
7559
  */
7464
7560
  updateInvisibleTextLabelValue(): this;
7465
7561
  }
7466
-
7562
+ /**
7563
+ * Describes the settings that can be provided to the ObjectPageSectionBase constructor.
7564
+ */
7467
7565
  export interface $ObjectPageSectionBaseSettings extends $ControlSettings {
7468
7566
  /**
7469
7567
  * Defines the title of the respective section/subsection.
@@ -7977,7 +8075,9 @@ declare module "sap/uxap/ObjectPageSubSection" {
7977
8075
  bTitleUppercase?: boolean
7978
8076
  ): this;
7979
8077
  }
7980
-
8078
+ /**
8079
+ * Describes the settings that can be provided to the ObjectPageSubSection constructor.
8080
+ */
7981
8081
  export interface $ObjectPageSubSectionSettings
7982
8082
  extends $ObjectPageSectionBaseSettings {
7983
8083
  /**