@openui5/ts-types 1.121.0 → 1.122.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.121.0
1
+ // For Library Version: 1.122.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1069,6 +1069,17 @@ declare namespace sap {
1069
1069
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1070
1070
  | `{${string}}`;
1071
1071
 
1072
+ /**
1073
+ * Specifies the text color of each button inside the AnchorBar.
1074
+ *
1075
+ * The color can be chosen from the icon colors (https://ui5.sap.com/#/api/sap.ui.core.IconColor%23overview).
1076
+ * Possible semantic colors are: Neutral, Positive, Critical, Negative.
1077
+ */
1078
+ anchorBarButtonColor?:
1079
+ | sap.ui.core.IconColor
1080
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1081
+ | `{${string}}`;
1082
+
1072
1083
  /**
1073
1084
  * The list of Subsections.
1074
1085
  */
@@ -6905,6 +6916,20 @@ declare namespace sap {
6905
6916
  * @returns Reference to `this` in order to allow method chaining
6906
6917
  */
6907
6918
  destroySubSections(): this;
6919
+ /**
6920
+ * Gets current value of property {@link #getAnchorBarButtonColor anchorBarButtonColor}.
6921
+ *
6922
+ * Specifies the text color of each button inside the AnchorBar.
6923
+ *
6924
+ * The color can be chosen from the icon colors (https://ui5.sap.com/#/api/sap.ui.core.IconColor%23overview).
6925
+ * Possible semantic colors are: Neutral, Positive, Critical, Negative.
6926
+ *
6927
+ * Default value is `Default`.
6928
+ *
6929
+ *
6930
+ * @returns Value of property `anchorBarButtonColor`
6931
+ */
6932
+ getAnchorBarButtonColor(): sap.ui.core.IconColor;
6908
6933
  /**
6909
6934
  * Gets content of aggregation {@link #getHeading heading}.
6910
6935
  *
@@ -7011,6 +7036,27 @@ declare namespace sap {
7011
7036
  */
7012
7037
  vSubSection: int | string | sap.uxap.ObjectPageSubSection
7013
7038
  ): sap.uxap.ObjectPageSubSection | null;
7039
+ /**
7040
+ * Sets a new value for property {@link #getAnchorBarButtonColor anchorBarButtonColor}.
7041
+ *
7042
+ * Specifies the text color of each button inside the AnchorBar.
7043
+ *
7044
+ * The color can be chosen from the icon colors (https://ui5.sap.com/#/api/sap.ui.core.IconColor%23overview).
7045
+ * Possible semantic colors are: Neutral, Positive, Critical, Negative.
7046
+ *
7047
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7048
+ *
7049
+ * Default value is `Default`.
7050
+ *
7051
+ *
7052
+ * @returns Reference to `this` in order to allow method chaining
7053
+ */
7054
+ setAnchorBarButtonColor(
7055
+ /**
7056
+ * New value for property `anchorBarButtonColor`
7057
+ */
7058
+ sAnchorBarButtonColor?: sap.ui.core.IconColor
7059
+ ): this;
7014
7060
  /**
7015
7061
  * Sets the aggregated {@link #getHeading heading}.
7016
7062
  *
@@ -7385,6 +7431,9 @@ declare namespace sap {
7385
7431
  * where the sub-section contains a control that has “100%” height, for example, `sap.ui.table.Table` with
7386
7432
  * `visibleRowCountMode` set to `Auto`.
7387
7433
  *
7434
+ * As of version 1.122, applications can set transparent background to subsections by adding the `sapUxAPObjectPageSubSectionTransparentBackground`
7435
+ * class to the subsection.
7436
+ *
7388
7437
  * **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
7389
7438
  *
7390
7439
  * @since 1.26