@openui5/ts-types-esm 1.102.2 → 1.104.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.102.2",
3
+ "version": "1.104.0",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.104.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -511,6 +511,8 @@ declare module "sap/f/AvatarGroup" {
511
511
 
512
512
  import Event from "sap/ui/base/Event";
513
513
 
514
+ import { AbsoluteCSSSize } from "sap/ui/core/library";
515
+
514
516
  import AvatarSize from "sap/m/AvatarSize";
515
517
 
516
518
  import { AvatarGroupType } from "sap/f/library";
@@ -720,6 +722,36 @@ declare module "sap/f/AvatarGroup" {
720
722
  avatarsDisplayed?: int;
721
723
  }
722
724
  ): this;
725
+ /**
726
+ * @SINCE 1.103
727
+ *
728
+ * Gets current value of property {@link #getAvatarCustomDisplaySize avatarCustomDisplaySize}.
729
+ *
730
+ * Specifies a custom display size for each avatar.
731
+ *
732
+ * **Notes:**
733
+ * - Supports only `px` and code>rem values.
734
+ * - It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
735
+ *
736
+ * Default value is `"3rem"`.
737
+ *
738
+ * @returns Value of property `avatarCustomDisplaySize`
739
+ */
740
+ getAvatarCustomDisplaySize(): AbsoluteCSSSize;
741
+ /**
742
+ * @SINCE 1.103
743
+ *
744
+ * Gets current value of property {@link #getAvatarCustomFontSize avatarCustomFontSize}.
745
+ *
746
+ * Specifies a custom font size for each avatar.
747
+ *
748
+ * **Note:** It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
749
+ *
750
+ * Default value is `"1.125rem"`.
751
+ *
752
+ * @returns Value of property `avatarCustomFontSize`
753
+ */
754
+ getAvatarCustomFontSize(): AbsoluteCSSSize;
723
755
  /**
724
756
  * Gets current value of property {@link #getAvatarDisplaySize avatarDisplaySize}.
725
757
  *
@@ -793,7 +825,51 @@ declare module "sap/f/AvatarGroup" {
793
825
  * The item to remove or its index or id
794
826
  */
795
827
  vItem: int | string | AvatarGroupItem
796
- ): AvatarGroupItem;
828
+ ): AvatarGroupItem | null;
829
+ /**
830
+ * @SINCE 1.103
831
+ *
832
+ * Sets a new value for property {@link #getAvatarCustomDisplaySize avatarCustomDisplaySize}.
833
+ *
834
+ * Specifies a custom display size for each avatar.
835
+ *
836
+ * **Notes:**
837
+ * - Supports only `px` and code>rem values.
838
+ * - It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
839
+ *
840
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
841
+ *
842
+ * Default value is `"3rem"`.
843
+ *
844
+ * @returns Reference to `this` in order to allow method chaining
845
+ */
846
+ setAvatarCustomDisplaySize(
847
+ /**
848
+ * New value for property `avatarCustomDisplaySize`
849
+ */
850
+ sAvatarCustomDisplaySize?: AbsoluteCSSSize
851
+ ): this;
852
+ /**
853
+ * @SINCE 1.103
854
+ *
855
+ * Sets a new value for property {@link #getAvatarCustomFontSize avatarCustomFontSize}.
856
+ *
857
+ * Specifies a custom font size for each avatar.
858
+ *
859
+ * **Note:** It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
860
+ *
861
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
862
+ *
863
+ * Default value is `"1.125rem"`.
864
+ *
865
+ * @returns Reference to `this` in order to allow method chaining
866
+ */
867
+ setAvatarCustomFontSize(
868
+ /**
869
+ * New value for property `avatarCustomFontSize`
870
+ */
871
+ sAvatarCustomFontSize?: AbsoluteCSSSize
872
+ ): this;
797
873
  /**
798
874
  * Sets a new value for property {@link #getAvatarDisplaySize avatarDisplaySize}.
799
875
  *
@@ -847,6 +923,32 @@ declare module "sap/f/AvatarGroup" {
847
923
  | PropertyBindingInfo
848
924
  | `{${string}}`;
849
925
 
926
+ /**
927
+ * @SINCE 1.103
928
+ *
929
+ * Specifies a custom display size for each avatar.
930
+ *
931
+ * **Notes:**
932
+ * - Supports only `px` and code>rem values.
933
+ * - It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
934
+ */
935
+ avatarCustomDisplaySize?:
936
+ | AbsoluteCSSSize
937
+ | PropertyBindingInfo
938
+ | `{${string}}`;
939
+
940
+ /**
941
+ * @SINCE 1.103
942
+ *
943
+ * Specifies a custom font size for each avatar.
944
+ *
945
+ * **Note:** It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
946
+ */
947
+ avatarCustomFontSize?:
948
+ | AbsoluteCSSSize
949
+ | PropertyBindingInfo
950
+ | `{${string}}`;
951
+
850
952
  /**
851
953
  * The `AvatarGroupItems` contained by the control.
852
954
  */
@@ -1612,6 +1714,8 @@ declare module "sap/f/cards/Header" {
1612
1714
 
1613
1715
  import Event from "sap/ui/base/Event";
1614
1716
 
1717
+ import Control from "sap/ui/core/Control";
1718
+
1615
1719
  import AvatarColor from "sap/m/AvatarColor";
1616
1720
 
1617
1721
  import AvatarShape from "sap/m/AvatarShape";
@@ -1757,6 +1861,20 @@ declare module "sap/f/cards/Header" {
1757
1861
  */
1758
1862
  oListener?: object
1759
1863
  ): this;
1864
+ /**
1865
+ * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
1866
+ * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
1867
+ */
1868
+ enhanceAccessibilityState(
1869
+ /**
1870
+ * The Control that gets rendered by the RenderManager
1871
+ */
1872
+ oElement: Control,
1873
+ /**
1874
+ * The mapping of "aria-" prefixed attributes
1875
+ */
1876
+ mAriaProps: object
1877
+ ): void;
1760
1878
  /**
1761
1879
  * Fires event {@link #event:press press} to attached listeners.
1762
1880
  *
@@ -2140,6 +2258,8 @@ declare module "sap/f/cards/NumericHeader" {
2140
2258
 
2141
2259
  import Event from "sap/ui/base/Event";
2142
2260
 
2261
+ import Control from "sap/ui/core/Control";
2262
+
2143
2263
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2144
2264
 
2145
2265
  import { ValueColor, DeviationIndicator } from "sap/m/library";
@@ -2306,6 +2426,20 @@ declare module "sap/f/cards/NumericHeader" {
2306
2426
  */
2307
2427
  oListener?: object
2308
2428
  ): this;
2429
+ /**
2430
+ * This method is a hook for the RenderManager that gets called during the rendering of child Controls.
2431
+ * It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
2432
+ */
2433
+ enhanceAccessibilityState(
2434
+ /**
2435
+ * The Control that gets rendered by the RenderManager
2436
+ */
2437
+ oElement: Control,
2438
+ /**
2439
+ * The mapping of "aria-" prefixed attributes
2440
+ */
2441
+ mAriaProps: object
2442
+ ): void;
2309
2443
  /**
2310
2444
  * Fires event {@link #event:press press} to attached listeners.
2311
2445
  *
@@ -2502,7 +2636,7 @@ declare module "sap/f/cards/NumericHeader" {
2502
2636
  * The sideIndicator to remove or its index or id
2503
2637
  */
2504
2638
  vSideIndicator: int | string | NumericSideIndicator
2505
- ): NumericSideIndicator;
2639
+ ): NumericSideIndicator | null;
2506
2640
  /**
2507
2641
  * Sets a new value for property {@link #getDetails details}.
2508
2642
  *
@@ -4612,7 +4746,7 @@ declare module "sap/f/DynamicPageHeader" {
4612
4746
  * The content to remove or its index or id
4613
4747
  */
4614
4748
  vContent: int | string | Control
4615
- ): Control;
4749
+ ): Control | null;
4616
4750
  /**
4617
4751
  * @SINCE 1.58
4618
4752
  *
@@ -5391,7 +5525,7 @@ declare module "sap/f/DynamicPageTitle" {
5391
5525
  * The action to remove or its index or id
5392
5526
  */
5393
5527
  vAction: int | string | Control
5394
- ): Control;
5528
+ ): Control | null;
5395
5529
  /**
5396
5530
  * Removes all the controls from the aggregation {@link #getActions actions}.
5397
5531
  *
@@ -5469,7 +5603,7 @@ declare module "sap/f/DynamicPageTitle" {
5469
5603
  * The content to remove or its index or id
5470
5604
  */
5471
5605
  vContent: int | string | Control
5472
- ): Control;
5606
+ ): Control | null;
5473
5607
  /**
5474
5608
  * Removes a expandedContent from the aggregation {@link #getExpandedContent expandedContent}.
5475
5609
  *
@@ -5480,7 +5614,7 @@ declare module "sap/f/DynamicPageTitle" {
5480
5614
  * The expandedContent to remove or its index or id
5481
5615
  */
5482
5616
  vExpandedContent: int | string | Control
5483
- ): Control;
5617
+ ): Control | null;
5484
5618
  /**
5485
5619
  * @SINCE 1.52
5486
5620
  *
@@ -5493,7 +5627,7 @@ declare module "sap/f/DynamicPageTitle" {
5493
5627
  * The navigationAction to remove or its index or id
5494
5628
  */
5495
5629
  vNavigationAction: int | string | Button
5496
- ): Button;
5630
+ ): Button | null;
5497
5631
  /**
5498
5632
  * Removes a snappedContent from the aggregation {@link #getSnappedContent snappedContent}.
5499
5633
  *
@@ -5504,7 +5638,7 @@ declare module "sap/f/DynamicPageTitle" {
5504
5638
  * The snappedContent to remove or its index or id
5505
5639
  */
5506
5640
  vSnappedContent: int | string | Control
5507
- ): Control;
5641
+ ): Control | null;
5508
5642
  /**
5509
5643
  * @SINCE 1.54
5510
5644
  *
@@ -7422,7 +7556,7 @@ declare module "sap/f/FlexibleColumnLayout" {
7422
7556
  * The beginColumnPage to remove or its index or id
7423
7557
  */
7424
7558
  vBeginColumnPage: int | string | Control
7425
- ): Control;
7559
+ ): Control | null;
7426
7560
  /**
7427
7561
  * Removes a endColumnPage from the aggregation {@link #getEndColumnPages endColumnPages}.
7428
7562
  *
@@ -7433,7 +7567,7 @@ declare module "sap/f/FlexibleColumnLayout" {
7433
7567
  * The endColumnPage to remove or its index or id
7434
7568
  */
7435
7569
  vEndColumnPage: int | string | Control
7436
- ): Control;
7570
+ ): Control | null;
7437
7571
  /**
7438
7572
  * Removes a midColumnPage from the aggregation {@link #getMidColumnPages midColumnPages}.
7439
7573
  *
@@ -7444,7 +7578,7 @@ declare module "sap/f/FlexibleColumnLayout" {
7444
7578
  * The midColumnPage to remove or its index or id
7445
7579
  */
7446
7580
  vMidColumnPage: int | string | Control
7447
- ): Control;
7581
+ ): Control | null;
7448
7582
  /**
7449
7583
  * @SINCE 1.76
7450
7584
  *
@@ -8211,6 +8345,17 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8211
8345
  * @returns Metadata object describing this class
8212
8346
  */
8213
8347
  static getMetadata(): ElementMetadata;
8348
+ /**
8349
+ * Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
8350
+ *
8351
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
8352
+ * control.
8353
+ *
8354
+ * If not set, a predefined text is used.
8355
+ *
8356
+ * @returns Value of property `firstColumnBackArrowLabel`
8357
+ */
8358
+ getFirstColumnBackArrowLabel(): string;
8214
8359
  /**
8215
8360
  * Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
8216
8361
  *
@@ -8222,6 +8367,17 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8222
8367
  * @returns Value of property `firstColumnLabel`
8223
8368
  */
8224
8369
  getFirstColumnLabel(): string;
8370
+ /**
8371
+ * Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
8372
+ *
8373
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
8374
+ * control.
8375
+ *
8376
+ * If not set, a predefined text is used.
8377
+ *
8378
+ * @returns Value of property `lastColumnForwardArrowLabel`
8379
+ */
8380
+ getLastColumnForwardArrowLabel(): string;
8225
8381
  /**
8226
8382
  * Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
8227
8383
  *
@@ -8233,6 +8389,28 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8233
8389
  * @returns Value of property `lastColumnLabel`
8234
8390
  */
8235
8391
  getLastColumnLabel(): string;
8392
+ /**
8393
+ * Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
8394
+ *
8395
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
8396
+ * control.
8397
+ *
8398
+ * If not set, a predefined text is used.
8399
+ *
8400
+ * @returns Value of property `middleColumnBackArrowLabel`
8401
+ */
8402
+ getMiddleColumnBackArrowLabel(): string;
8403
+ /**
8404
+ * Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
8405
+ *
8406
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
8407
+ * control.
8408
+ *
8409
+ * If not set, a predefined text is used.
8410
+ *
8411
+ * @returns Value of property `middleColumnForwardArrowLabel`
8412
+ */
8413
+ getMiddleColumnForwardArrowLabel(): string;
8236
8414
  /**
8237
8415
  * Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
8238
8416
  *
@@ -8244,6 +8422,24 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8244
8422
  * @returns Value of property `middleColumnLabel`
8245
8423
  */
8246
8424
  getMiddleColumnLabel(): string;
8425
+ /**
8426
+ * Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
8427
+ *
8428
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
8429
+ * control.
8430
+ *
8431
+ * If not set, a predefined text is used.
8432
+ *
8433
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8434
+ *
8435
+ * @returns Reference to `this` in order to allow method chaining
8436
+ */
8437
+ setFirstColumnBackArrowLabel(
8438
+ /**
8439
+ * New value for property `firstColumnBackArrowLabel`
8440
+ */
8441
+ sFirstColumnBackArrowLabel?: string
8442
+ ): this;
8247
8443
  /**
8248
8444
  * Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
8249
8445
  *
@@ -8262,6 +8458,24 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8262
8458
  */
8263
8459
  sFirstColumnLabel?: string
8264
8460
  ): this;
8461
+ /**
8462
+ * Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
8463
+ *
8464
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
8465
+ * control.
8466
+ *
8467
+ * If not set, a predefined text is used.
8468
+ *
8469
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8470
+ *
8471
+ * @returns Reference to `this` in order to allow method chaining
8472
+ */
8473
+ setLastColumnForwardArrowLabel(
8474
+ /**
8475
+ * New value for property `lastColumnForwardArrowLabel`
8476
+ */
8477
+ sLastColumnForwardArrowLabel?: string
8478
+ ): this;
8265
8479
  /**
8266
8480
  * Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
8267
8481
  *
@@ -8280,6 +8494,42 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8280
8494
  */
8281
8495
  sLastColumnLabel?: string
8282
8496
  ): this;
8497
+ /**
8498
+ * Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
8499
+ *
8500
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
8501
+ * control.
8502
+ *
8503
+ * If not set, a predefined text is used.
8504
+ *
8505
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8506
+ *
8507
+ * @returns Reference to `this` in order to allow method chaining
8508
+ */
8509
+ setMiddleColumnBackArrowLabel(
8510
+ /**
8511
+ * New value for property `middleColumnBackArrowLabel`
8512
+ */
8513
+ sMiddleColumnBackArrowLabel?: string
8514
+ ): this;
8515
+ /**
8516
+ * Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
8517
+ *
8518
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
8519
+ * control.
8520
+ *
8521
+ * If not set, a predefined text is used.
8522
+ *
8523
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8524
+ *
8525
+ * @returns Reference to `this` in order to allow method chaining
8526
+ */
8527
+ setMiddleColumnForwardArrowLabel(
8528
+ /**
8529
+ * New value for property `middleColumnForwardArrowLabel`
8530
+ */
8531
+ sMiddleColumnForwardArrowLabel?: string
8532
+ ): this;
8283
8533
  /**
8284
8534
  * Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
8285
8535
  *
@@ -8325,6 +8575,38 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
8325
8575
  * If not set, a predefined text is used.
8326
8576
  */
8327
8577
  lastColumnLabel?: string | PropertyBindingInfo;
8578
+
8579
+ /**
8580
+ * Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
8581
+ * control.
8582
+ *
8583
+ * If not set, a predefined text is used.
8584
+ */
8585
+ firstColumnBackArrowLabel?: string | PropertyBindingInfo;
8586
+
8587
+ /**
8588
+ * Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
8589
+ * control.
8590
+ *
8591
+ * If not set, a predefined text is used.
8592
+ */
8593
+ middleColumnForwardArrowLabel?: string | PropertyBindingInfo;
8594
+
8595
+ /**
8596
+ * Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
8597
+ * control.
8598
+ *
8599
+ * If not set, a predefined text is used.
8600
+ */
8601
+ middleColumnBackArrowLabel?: string | PropertyBindingInfo;
8602
+
8603
+ /**
8604
+ * Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
8605
+ * control.
8606
+ *
8607
+ * If not set, a predefined text is used.
8608
+ */
8609
+ lastColumnForwardArrowLabel?: string | PropertyBindingInfo;
8328
8610
  }
8329
8611
  }
8330
8612
 
@@ -8765,6 +9047,9 @@ declare module "sap/f/GridContainer" {
8765
9047
  * drag and drop. The difference is that the `{@link sap.f.dnd.GridDropInfo}` will provide a drop indicator,
8766
9048
  * which mimics the size of the dragged item and shows the potential drop position inside the grid.
8767
9049
  *
9050
+ * Drag and drop is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control` + arrow keys
9051
+ * (Mac OS).
9052
+ *
8768
9053
  * Keyboard Navigation:: `GridContainer` provides support for two-dimensional keyboard navigation through
8769
9054
  * its contained controls. Navigating up/down or left/right using the arrow keys follows the configurable
8770
9055
  * two-dimensional grid mesh. This provides stable navigation paths in the cases when there are items of
@@ -10652,7 +10937,7 @@ declare module "sap/f/GridListItem" {
10652
10937
  * The content to remove or its index or id
10653
10938
  */
10654
10939
  vContent: int | string | Control
10655
- ): Control;
10940
+ ): Control | null;
10656
10941
  /**
10657
10942
  * Unbinds aggregation {@link #getContent content} from model data.
10658
10943
  *
@@ -11129,7 +11414,7 @@ declare module "sap/f/ProductSwitch" {
11129
11414
  * The item to remove or its index or id
11130
11415
  */
11131
11416
  vItem: int | string | ProductSwitchItem
11132
- ): ProductSwitchItem;
11417
+ ): ProductSwitchItem | null;
11133
11418
  /**
11134
11419
  * Sets the `selectedItem` association.
11135
11420
  *
@@ -11278,6 +11563,9 @@ declare module "sap/f/ProductSwitchItem" {
11278
11563
  *
11279
11564
  * Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
11280
11565
  *
11566
+ * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
11567
+ * change} event of `sap.f.ProductSwitch`.
11568
+ *
11281
11569
  * @returns Value of property `targetSrc`
11282
11570
  */
11283
11571
  getTargetSrc(): URI;
@@ -11343,6 +11631,9 @@ declare module "sap/f/ProductSwitchItem" {
11343
11631
  *
11344
11632
  * Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
11345
11633
  *
11634
+ * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
11635
+ * change} event of `sap.f.ProductSwitch`.
11636
+ *
11346
11637
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11347
11638
  *
11348
11639
  * @returns Reference to `this` in order to allow method chaining
@@ -11389,6 +11680,9 @@ declare module "sap/f/ProductSwitchItem" {
11389
11680
 
11390
11681
  /**
11391
11682
  * Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
11683
+ *
11684
+ * **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
11685
+ * change} event of `sap.f.ProductSwitch`.
11392
11686
  */
11393
11687
  targetSrc?: URI | PropertyBindingInfo | `{${string}}`;
11394
11688
 
@@ -12472,7 +12766,7 @@ declare module "sap/f/SearchManager" {
12472
12766
  * The suggestionItem to remove or its index or id
12473
12767
  */
12474
12768
  vSuggestionItem: int | string | SuggestionItem
12475
- ): SuggestionItem;
12769
+ ): SuggestionItem | null;
12476
12770
  /**
12477
12771
  * Sets a new value for property {@link #getEnabled enabled}.
12478
12772
  *
@@ -15663,7 +15957,7 @@ declare module "sap/f/semantic/SemanticPage" {
15663
15957
  * The customShareAction to remove or its index or id
15664
15958
  */
15665
15959
  vCustomShareAction: int | string | Button
15666
- ): Button;
15960
+ ): Button | null;
15667
15961
  /**
15668
15962
  * Removes a footerCustomAction from the aggregation {@link #getFooterCustomActions footerCustomActions}.
15669
15963
  *
@@ -15674,7 +15968,7 @@ declare module "sap/f/semantic/SemanticPage" {
15674
15968
  * The footerCustomAction to remove or its index or id
15675
15969
  */
15676
15970
  vFooterCustomAction: int | string | Button
15677
- ): Button;
15971
+ ): Button | null;
15678
15972
  /**
15679
15973
  * Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
15680
15974
  *
@@ -15685,7 +15979,7 @@ declare module "sap/f/semantic/SemanticPage" {
15685
15979
  * The headerContent to remove or its index or id
15686
15980
  */
15687
15981
  vHeaderContent: int | string | Control
15688
- ): Control;
15982
+ ): Control | null;
15689
15983
  /**
15690
15984
  * @SINCE 1.52
15691
15985
  *
@@ -15698,7 +15992,7 @@ declare module "sap/f/semantic/SemanticPage" {
15698
15992
  * The titleContent to remove or its index or id
15699
15993
  */
15700
15994
  vTitleContent: int | string | Control
15701
- ): Control;
15995
+ ): Control | null;
15702
15996
  /**
15703
15997
  * Removes a titleCustomIconAction from the aggregation {@link #getTitleCustomIconActions titleCustomIconActions}.
15704
15998
  *
@@ -15709,7 +16003,7 @@ declare module "sap/f/semantic/SemanticPage" {
15709
16003
  * The titleCustomIconAction to remove or its index or id
15710
16004
  */
15711
16005
  vTitleCustomIconAction: int | string | OverflowToolbarButton
15712
- ): OverflowToolbarButton;
16006
+ ): OverflowToolbarButton | null;
15713
16007
  /**
15714
16008
  * Removes a titleCustomTextAction from the aggregation {@link #getTitleCustomTextActions titleCustomTextActions}.
15715
16009
  *
@@ -15720,7 +16014,7 @@ declare module "sap/f/semantic/SemanticPage" {
15720
16014
  * The titleCustomTextAction to remove or its index or id
15721
16015
  */
15722
16016
  vTitleCustomTextAction: int | string | Button
15723
- ): Button;
16017
+ ): Button | null;
15724
16018
  /**
15725
16019
  * Removes a titleExpandedContent from the aggregation {@link #getTitleExpandedContent titleExpandedContent}.
15726
16020
  *
@@ -15731,7 +16025,7 @@ declare module "sap/f/semantic/SemanticPage" {
15731
16025
  * The titleExpandedContent to remove or its index or id
15732
16026
  */
15733
16027
  vTitleExpandedContent: int | string | Control
15734
- ): Control;
16028
+ ): Control | null;
15735
16029
  /**
15736
16030
  * Removes a titleSnappedContent from the aggregation {@link #getTitleSnappedContent titleSnappedContent}.
15737
16031
  *
@@ -15742,7 +16036,7 @@ declare module "sap/f/semantic/SemanticPage" {
15742
16036
  * The titleSnappedContent to remove or its index or id
15743
16037
  */
15744
16038
  vTitleSnappedContent: int | string | Control
15745
- ): Control;
16039
+ ): Control | null;
15746
16040
  /**
15747
16041
  * Sets the aggregated {@link #getAddAction addAction}.
15748
16042
  *
@@ -18215,7 +18509,7 @@ declare module "sap/f/ShellBar" {
18215
18509
  * The additionalContent to remove or its index or id
18216
18510
  */
18217
18511
  vAdditionalContent: int | string | IShellBar
18218
- ): IShellBar;
18512
+ ): IShellBar | null;
18219
18513
  /**
18220
18514
  * Removes all the controls from the aggregation {@link #getAdditionalContent additionalContent}.
18221
18515
  *