@openui5/ts-types 1.139.0 → 1.141.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",
3
- "version": "1.139.0",
3
+ "version": "1.141.0",
4
4
  "description": "OpenUI5 TypeScript Definitions",
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.139.0
1
+ // For Library Version: 1.141.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -306,6 +306,16 @@ declare namespace sap {
306
306
  | sap.m.AvatarImageFitType
307
307
  | sap.ui.base.ManagedObject.PropertyBindingInfo
308
308
  | `{${string}}`;
309
+
310
+ /**
311
+ * Defines a status-colored, non-interactive message icon in the icon area.
312
+ *
313
+ * @since 1.141
314
+ */
315
+ iconState?:
316
+ | sap.ui.core.ValueState
317
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
318
+ | `{${string}}`;
309
319
  }
310
320
 
311
321
  /**
@@ -1499,6 +1509,18 @@ declare namespace sap {
1499
1509
  * @returns Value of property `iconSrc`
1500
1510
  */
1501
1511
  getIconSrc(): sap.ui.core.URI;
1512
+ /**
1513
+ * Gets current value of property {@link #getIconState iconState}.
1514
+ *
1515
+ * Defines a status-colored, non-interactive message icon in the icon area.
1516
+ *
1517
+ * Default value is `None`.
1518
+ *
1519
+ * @since 1.141
1520
+ *
1521
+ * @returns Value of property `iconState`
1522
+ */
1523
+ getIconState(): sap.ui.core.ValueState;
1502
1524
  /**
1503
1525
  * Gets current value of property {@link #getIconVisible iconVisible}.
1504
1526
  *
@@ -1698,6 +1720,25 @@ declare namespace sap {
1698
1720
  */
1699
1721
  sIconSrc?: sap.ui.core.URI
1700
1722
  ): this;
1723
+ /**
1724
+ * Sets a new value for property {@link #getIconState iconState}.
1725
+ *
1726
+ * Defines a status-colored, non-interactive message icon in the icon area.
1727
+ *
1728
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1729
+ *
1730
+ * Default value is `None`.
1731
+ *
1732
+ * @since 1.141
1733
+ *
1734
+ * @returns Reference to `this` in order to allow method chaining
1735
+ */
1736
+ setIconState(
1737
+ /**
1738
+ * New value for property `iconState`
1739
+ */
1740
+ sIconState?: sap.ui.core.ValueState
1741
+ ): this;
1701
1742
  /**
1702
1743
  * Sets a new value for property {@link #getIconVisible iconVisible}.
1703
1744
  *
@@ -3310,16 +3351,24 @@ declare namespace sap {
3310
3351
 
3311
3352
  namespace routing {
3312
3353
  /**
3313
- * The `sap.f.routing.Router` class is intended to be used with `{@link sap.f.FlexibleColumnLayout}` as
3314
- * a root control.
3354
+ * The `sap.f.routing.Router` extends the capabilities of the standard `{@link sap.ui.core.routing.Router}`
3355
+ * to support flexible and responsive layouts based on `{@link sap.f.FlexibleColumnLayout}` as the root
3356
+ * control.
3315
3357
  *
3316
- * The difference to the `{@link sap.ui.core.routing.Router}` are the `level`, `transition`, and `transitionParameters`
3317
- * properties that you can specify in every Route or Target created by this router.
3358
+ * This router enables advanced navigation scenarios tailored to flexible column layouts, such as changing
3359
+ * both the layout type (e.g., OneColumn, TwoColumnsMidExpanded) and the currently displayed views within
3360
+ * individual columns.
3318
3361
  *
3319
- * The difference to the `{@link sap.m.routing.Router}` is the additional `layout` property that can be
3320
- * specified in every Route, in which case it is applied to the root control. Also, the `sap.f.routing.Router`
3321
- * supports navigations that involve both change of `{@link sap.f.LayoutType}` and change of the current
3322
- * page within a single column of the `sap.f.FlexibleColumnLayout`.
3362
+ * Compared to `{@link sap.ui.core.routing.Router}`, it adds support for additional target properties:
3363
+ *
3364
+ * - `level`: Defines the hierarchical level of the target view for proper history and back navigation
3365
+ * handling
3366
+ * - `transition`: Specifies the type of transition animation between views (e.g., `slide`, `fade`)
3367
+ * - `transitionParameters`: Custom parameters for transitions
3368
+ *
3369
+ * Compared to `{@link sap.m.routing.Router}`, it further introduces a `layout` property on each route,
3370
+ * allowing you to define the desired `{@link sap.f.LayoutType}` to be applied to the `FlexibleColumnLayout`
3371
+ * root control during navigation.
3323
3372
  *
3324
3373
  * See `{@link sap.ui.core.routing.Router}` for the constructor arguments.
3325
3374
  *
@@ -9858,6 +9907,18 @@ declare namespace sap {
9858
9907
  | sap.ui.base.ManagedObject.PropertyBindingInfo
9859
9908
  | `{${string}}`;
9860
9909
 
9910
+ /**
9911
+ * Defines the image to be displayed as graphical element within the `ProductSwitchItem`.
9912
+ *
9913
+ * **Note:** This property takes precedence over the `src` property.
9914
+ *
9915
+ * @since 1.140
9916
+ */
9917
+ imageSrc?:
9918
+ | sap.ui.core.URI
9919
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
9920
+ | `{${string}}`;
9921
+
9861
9922
  /**
9862
9923
  * Determines the title of the `ProductSwitchItem`.
9863
9924
  */
@@ -19680,6 +19741,18 @@ declare namespace sap {
19680
19741
  * @returns Metadata object describing this class
19681
19742
  */
19682
19743
  static getMetadata(): sap.ui.core.ElementMetadata;
19744
+ /**
19745
+ * Gets current value of property {@link #getImageSrc imageSrc}.
19746
+ *
19747
+ * Defines the image to be displayed as graphical element within the `ProductSwitchItem`.
19748
+ *
19749
+ * **Note:** This property takes precedence over the `src` property.
19750
+ *
19751
+ * @since 1.140
19752
+ *
19753
+ * @returns Value of property `imageSrc`
19754
+ */
19755
+ getImageSrc(): sap.ui.core.URI;
19683
19756
  /**
19684
19757
  * Gets current value of property {@link #getSrc src}.
19685
19758
  *
@@ -19732,6 +19805,25 @@ declare namespace sap {
19732
19805
  * @returns Value of property `title`
19733
19806
  */
19734
19807
  getTitle(): string;
19808
+ /**
19809
+ * Sets a new value for property {@link #getImageSrc imageSrc}.
19810
+ *
19811
+ * Defines the image to be displayed as graphical element within the `ProductSwitchItem`.
19812
+ *
19813
+ * **Note:** This property takes precedence over the `src` property.
19814
+ *
19815
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
19816
+ *
19817
+ * @since 1.140
19818
+ *
19819
+ * @returns Reference to `this` in order to allow method chaining
19820
+ */
19821
+ setImageSrc(
19822
+ /**
19823
+ * New value for property `imageSrc`
19824
+ */
19825
+ sImageSrc?: sap.ui.core.URI
19826
+ ): this;
19735
19827
  /**
19736
19828
  * Sets a new value for property {@link #getSrc src}.
19737
19829
  *
@@ -22565,7 +22657,7 @@ declare namespace sap {
22565
22657
  *
22566
22658
  * Each layout has a default predefined ratio for the three columns, depending on device size. Based on
22567
22659
  * the device and layout, some columns are hidden. For more information, refer to the ratios (in %) for
22568
- * each value, listed below: (dash "-" means non-accessible columns).
22660
+ * each value, listed below: (hyphen "-" means non-accessible columns).
22569
22661
  *
22570
22662
  * **Notes:**
22571
22663
  * - The user is allowed to customize the default ratio by dragging the column separators to resize the