@openui5/ts-types 1.108.17 → 1.108.18

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.108.17",
3
+ "version": "1.108.18",
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.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -14853,6 +14853,23 @@ declare namespace sap {
14853
14853
  | sap.ui.base.ManagedObject.PropertyBindingInfo
14854
14854
  | `{${string}}`;
14855
14855
 
14856
+ /**
14857
+ * Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
14858
+ */
14859
+ badgeValueState?:
14860
+ | sap.ui.core.ValueState
14861
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
14862
+ | `{${string}}`;
14863
+
14864
+ /**
14865
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
14866
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
14867
+ */
14868
+ enabled?:
14869
+ | boolean
14870
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
14871
+ | `{${string}}`;
14872
+
14856
14873
  /**
14857
14874
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
14858
14875
  * control.
@@ -35573,6 +35590,16 @@ declare namespace sap {
35573
35590
  * @returns Value of property `badgeTooltip`
35574
35591
  */
35575
35592
  getBadgeTooltip(): string;
35593
+ /**
35594
+ * Gets current value of property {@link #getBadgeValueState badgeValueState}.
35595
+ *
35596
+ * Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
35597
+ *
35598
+ * Default value is `None`.
35599
+ *
35600
+ * @returns Value of property `badgeValueState`
35601
+ */
35602
+ getBadgeValueState(): sap.ui.core.ValueState;
35576
35603
  /**
35577
35604
  * Gets current value of property {@link #getCustomDisplaySize customDisplaySize}.
35578
35605
  *
@@ -35640,6 +35667,17 @@ declare namespace sap {
35640
35667
  * @returns Value of property `displaySize`
35641
35668
  */
35642
35669
  getDisplaySize(): sap.m.AvatarSize;
35670
+ /**
35671
+ * Gets current value of property {@link #getEnabled enabled}.
35672
+ *
35673
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
35674
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
35675
+ *
35676
+ * Default value is `true`.
35677
+ *
35678
+ * @returns Value of property `enabled`
35679
+ */
35680
+ getEnabled(): boolean;
35643
35681
  /**
35644
35682
  * Gets current value of property {@link #getFallbackIcon fallbackIcon}.
35645
35683
  *
@@ -35812,6 +35850,23 @@ declare namespace sap {
35812
35850
  */
35813
35851
  sBadgeTooltip?: string
35814
35852
  ): this;
35853
+ /**
35854
+ * Sets a new value for property {@link #getBadgeValueState badgeValueState}.
35855
+ *
35856
+ * Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
35857
+ *
35858
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35859
+ *
35860
+ * Default value is `None`.
35861
+ *
35862
+ * @returns Reference to `this` in order to allow method chaining
35863
+ */
35864
+ setBadgeValueState(
35865
+ /**
35866
+ * New value for property `badgeValueState`
35867
+ */
35868
+ sBadgeValueState?: sap.ui.core.ValueState
35869
+ ): this;
35815
35870
  /**
35816
35871
  * Sets a new value for property {@link #getCustomDisplaySize customDisplaySize}.
35817
35872
  *
@@ -35916,6 +35971,24 @@ declare namespace sap {
35916
35971
  */
35917
35972
  sDisplaySize?: sap.m.AvatarSize
35918
35973
  ): this;
35974
+ /**
35975
+ * Sets a new value for property {@link #getEnabled enabled}.
35976
+ *
35977
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
35978
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
35979
+ *
35980
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
35981
+ *
35982
+ * Default value is `true`.
35983
+ *
35984
+ * @returns Reference to `this` in order to allow method chaining
35985
+ */
35986
+ setEnabled(
35987
+ /**
35988
+ * New value for property `enabled`
35989
+ */
35990
+ bEnabled?: boolean
35991
+ ): this;
35919
35992
  /**
35920
35993
  * Sets a new value for property {@link #getFallbackIcon fallbackIcon}.
35921
35994
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -270,6 +270,16 @@ declare namespace sap {
270
270
  | sap.ui.base.ManagedObject.PropertyBindingInfo
271
271
  | `{${string}}`;
272
272
 
273
+ /**
274
+ * @SINCE 1.115
275
+ *
276
+ * Specifies the content background design.
277
+ */
278
+ contentBackgroundDesign?:
279
+ | sap.m.PageBackgroundDesign
280
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
281
+ | `{${string}}`;
282
+
273
283
  /**
274
284
  * The control to appear in the header area.
275
285
  */
@@ -1384,8 +1394,6 @@ declare namespace sap {
1384
1394
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1385
1395
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1386
1396
  * of the syntax of the settings object.
1387
- * See:
1388
- * {@link fiori:https://experience.sap.com/fiori-design-web/side-navigation/ Side Navigation}
1389
1397
  */
1390
1398
  constructor(
1391
1399
  /**
@@ -1399,8 +1407,6 @@ declare namespace sap {
1399
1407
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1400
1408
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1401
1409
  * of the syntax of the settings object.
1402
- * See:
1403
- * {@link fiori:https://experience.sap.com/fiori-design-web/side-navigation/ Side Navigation}
1404
1410
  */
1405
1411
  constructor(
1406
1412
  /**
@@ -1700,16 +1706,19 @@ declare namespace sap {
1700
1706
  /**
1701
1707
  * @SINCE 1.34
1702
1708
  *
1703
- * The ToolHeader control is a horizontal container that is most commonly used to display buttons, labels,
1709
+ * The ToolHeader control is a horizontal container that is most commonly used to display buttons, texts,
1704
1710
  * and other various input controls. Overview: The ToolHeader control is based on {@link sap.m.OverflowToolbar}.
1705
1711
  * It contains clearly structured menus of commands that are available across the various apps within the
1706
1712
  * same tool layout. Usage:
1713
+ * - This control is specialized for administrative applications. For other types of applications use:
1714
+ * {@link sap.m.Shell}
1707
1715
  * - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
1708
1716
  * first item on the left-hand side of the tool header.
1709
1717
  * - The app menu and the side navigation must not have any dependencies and must work independently.
1710
- * Fiori 3 theme specifics: In Fiori 3 Default theme the ToolHeader is with dark design unlike most
1711
- * of the other controls. This defines the usage of limited controls inside it, which will result in good
1712
- * design combination.
1718
+ * Horizon theme specifics: Only the following controls are supported: sap.m.Button, sap.m.Image,
1719
+ * sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori 3 Default
1720
+ * theme the ToolHeader is with dark design unlike most of the other controls. This defines the usage of
1721
+ * limited controls inside it, which will result in good design combination.
1713
1722
  * The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
1714
1723
  * requirement. However, that's not a dark theme.
1715
1724
  *
@@ -1745,8 +1754,6 @@ declare namespace sap {
1745
1754
  *
1746
1755
  * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
1747
1756
  * sap.m.OverflowToolbar} can be used.
1748
- * See:
1749
- * {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
1750
1757
  */
1751
1758
  constructor(
1752
1759
  /**
@@ -1763,8 +1770,6 @@ declare namespace sap {
1763
1770
  *
1764
1771
  * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
1765
1772
  * sap.m.OverflowToolbar} can be used.
1766
- * See:
1767
- * {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
1768
1773
  */
1769
1774
  constructor(
1770
1775
  /**
@@ -1988,6 +1993,18 @@ declare namespace sap {
1988
1993
  * @returns Reference to `this` in order to allow method chaining
1989
1994
  */
1990
1995
  destroySubHeader(): this;
1996
+ /**
1997
+ * @SINCE 1.115
1998
+ *
1999
+ * Gets current value of property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2000
+ *
2001
+ * Specifies the content background design.
2002
+ *
2003
+ * Default value is `Standard`.
2004
+ *
2005
+ * @returns Value of property `contentBackgroundDesign`
2006
+ */
2007
+ getContentBackgroundDesign(): sap.m.PageBackgroundDesign;
1991
2008
  /**
1992
2009
  * Gets content of aggregation {@link #getHeader header}.
1993
2010
  *
@@ -2072,6 +2089,25 @@ declare namespace sap {
2072
2089
  */
2073
2090
  vMainContent: int | string | sap.ui.core.Control
2074
2091
  ): sap.ui.core.Control | null;
2092
+ /**
2093
+ * @SINCE 1.115
2094
+ *
2095
+ * Sets a new value for property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2096
+ *
2097
+ * Specifies the content background design.
2098
+ *
2099
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2100
+ *
2101
+ * Default value is `Standard`.
2102
+ *
2103
+ * @returns Reference to `this` in order to allow method chaining
2104
+ */
2105
+ setContentBackgroundDesign(
2106
+ /**
2107
+ * New value for property `contentBackgroundDesign`
2108
+ */
2109
+ sContentBackgroundDesign?: sap.m.PageBackgroundDesign
2110
+ ): this;
2075
2111
  /**
2076
2112
  * Sets the aggregated {@link #getHeader header}.
2077
2113
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.108.17
267
+ // For Library Version: 1.108.18
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare namespace sap {
4
4
  /**