@openui5/types 1.121.1 → 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.1
1
+ // For Library Version: 1.122.0
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -6866,12 +6866,12 @@ declare module "sap/uxap/ObjectPageSection" {
6866
6866
 
6867
6867
  import ObjectPageSubSection from "sap/uxap/ObjectPageSubSection";
6868
6868
 
6869
+ import { IconColor, ID } from "sap/ui/core/library";
6870
+
6869
6871
  import Control from "sap/ui/core/Control";
6870
6872
 
6871
6873
  import ElementMetadata from "sap/ui/core/ElementMetadata";
6872
6874
 
6873
- import { ID } from "sap/ui/core/library";
6874
-
6875
6875
  import {
6876
6876
  PropertyBindingInfo,
6877
6877
  AggregationBindingInfo,
@@ -6976,6 +6976,20 @@ declare module "sap/uxap/ObjectPageSection" {
6976
6976
  * @returns Reference to `this` in order to allow method chaining
6977
6977
  */
6978
6978
  destroySubSections(): this;
6979
+ /**
6980
+ * Gets current value of property {@link #getAnchorBarButtonColor anchorBarButtonColor}.
6981
+ *
6982
+ * Specifies the text color of each button inside the AnchorBar.
6983
+ *
6984
+ * The color can be chosen from the icon colors (https://ui5.sap.com/#/api/sap.ui.core.IconColor%23overview).
6985
+ * Possible semantic colors are: Neutral, Positive, Critical, Negative.
6986
+ *
6987
+ * Default value is `Default`.
6988
+ *
6989
+ *
6990
+ * @returns Value of property `anchorBarButtonColor`
6991
+ */
6992
+ getAnchorBarButtonColor(): IconColor | keyof typeof IconColor;
6979
6993
  /**
6980
6994
  * Gets content of aggregation {@link #getHeading heading}.
6981
6995
  *
@@ -7082,6 +7096,27 @@ declare module "sap/uxap/ObjectPageSection" {
7082
7096
  */
7083
7097
  vSubSection: int | string | ObjectPageSubSection
7084
7098
  ): ObjectPageSubSection | null;
7099
+ /**
7100
+ * Sets a new value for property {@link #getAnchorBarButtonColor anchorBarButtonColor}.
7101
+ *
7102
+ * Specifies the text color of each button inside the AnchorBar.
7103
+ *
7104
+ * The color can be chosen from the icon colors (https://ui5.sap.com/#/api/sap.ui.core.IconColor%23overview).
7105
+ * Possible semantic colors are: Neutral, Positive, Critical, Negative.
7106
+ *
7107
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7108
+ *
7109
+ * Default value is `Default`.
7110
+ *
7111
+ *
7112
+ * @returns Reference to `this` in order to allow method chaining
7113
+ */
7114
+ setAnchorBarButtonColor(
7115
+ /**
7116
+ * New value for property `anchorBarButtonColor`
7117
+ */
7118
+ sAnchorBarButtonColor?: IconColor | keyof typeof IconColor
7119
+ ): this;
7085
7120
  /**
7086
7121
  * Sets the aggregated {@link #getHeading heading}.
7087
7122
  *
@@ -7181,6 +7216,17 @@ declare module "sap/uxap/ObjectPageSection" {
7181
7216
  */
7182
7217
  wrapTitle?: boolean | PropertyBindingInfo | `{${string}}`;
7183
7218
 
7219
+ /**
7220
+ * Specifies the text color of each button inside the AnchorBar.
7221
+ *
7222
+ * The color can be chosen from the icon colors (https://ui5.sap.com/#/api/sap.ui.core.IconColor%23overview).
7223
+ * Possible semantic colors are: Neutral, Positive, Critical, Negative.
7224
+ */
7225
+ anchorBarButtonColor?:
7226
+ | (IconColor | keyof typeof IconColor)
7227
+ | PropertyBindingInfo
7228
+ | `{${string}}`;
7229
+
7184
7230
  /**
7185
7231
  * The list of Subsections.
7186
7232
  */
@@ -7596,6 +7642,9 @@ declare module "sap/uxap/ObjectPageSubSection" {
7596
7642
  * where the sub-section contains a control that has “100%” height, for example, `sap.ui.table.Table` with
7597
7643
  * `visibleRowCountMode` set to `Auto`.
7598
7644
  *
7645
+ * As of version 1.122, applications can set transparent background to subsections by adding the `sapUxAPObjectPageSubSectionTransparentBackground`
7646
+ * class to the subsection.
7647
+ *
7599
7648
  * **Note:** This control is intended to be used only as part of the `ObjectPageLayout`.
7600
7649
  *
7601
7650
  * @since 1.26