@openui5/ts-types-esm 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-esm",
3
- "version": "1.108.17",
3
+ "version": "1.108.18",
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.108.17
1
+ // For Library Version: 1.108.18
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
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 module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -4957,7 +4957,7 @@ declare module "sap/m/App" {
4957
4957
  declare module "sap/m/Avatar" {
4958
4958
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
4959
4959
 
4960
- import { ID, aria, URI, CSSSize } from "sap/ui/core/library";
4960
+ import { ID, aria, URI, ValueState, CSSSize } from "sap/ui/core/library";
4961
4961
 
4962
4962
  import Event from "sap/ui/base/Event";
4963
4963
 
@@ -5254,6 +5254,16 @@ declare module "sap/m/Avatar" {
5254
5254
  * @returns Value of property `badgeTooltip`
5255
5255
  */
5256
5256
  getBadgeTooltip(): string;
5257
+ /**
5258
+ * Gets current value of property {@link #getBadgeValueState badgeValueState}.
5259
+ *
5260
+ * Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5261
+ *
5262
+ * Default value is `None`.
5263
+ *
5264
+ * @returns Value of property `badgeValueState`
5265
+ */
5266
+ getBadgeValueState(): ValueState | keyof typeof ValueState;
5257
5267
  /**
5258
5268
  * Gets current value of property {@link #getCustomDisplaySize customDisplaySize}.
5259
5269
  *
@@ -5321,6 +5331,17 @@ declare module "sap/m/Avatar" {
5321
5331
  * @returns Value of property `displaySize`
5322
5332
  */
5323
5333
  getDisplaySize(): AvatarSize | keyof typeof AvatarSize;
5334
+ /**
5335
+ * Gets current value of property {@link #getEnabled enabled}.
5336
+ *
5337
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
5338
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
5339
+ *
5340
+ * Default value is `true`.
5341
+ *
5342
+ * @returns Value of property `enabled`
5343
+ */
5344
+ getEnabled(): boolean;
5324
5345
  /**
5325
5346
  * Gets current value of property {@link #getFallbackIcon fallbackIcon}.
5326
5347
  *
@@ -5493,6 +5514,23 @@ declare module "sap/m/Avatar" {
5493
5514
  */
5494
5515
  sBadgeTooltip?: string
5495
5516
  ): this;
5517
+ /**
5518
+ * Sets a new value for property {@link #getBadgeValueState badgeValueState}.
5519
+ *
5520
+ * Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5521
+ *
5522
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5523
+ *
5524
+ * Default value is `None`.
5525
+ *
5526
+ * @returns Reference to `this` in order to allow method chaining
5527
+ */
5528
+ setBadgeValueState(
5529
+ /**
5530
+ * New value for property `badgeValueState`
5531
+ */
5532
+ sBadgeValueState?: ValueState | keyof typeof ValueState
5533
+ ): this;
5496
5534
  /**
5497
5535
  * Sets a new value for property {@link #getCustomDisplaySize customDisplaySize}.
5498
5536
  *
@@ -5597,6 +5635,24 @@ declare module "sap/m/Avatar" {
5597
5635
  */
5598
5636
  sDisplaySize?: AvatarSize | keyof typeof AvatarSize
5599
5637
  ): this;
5638
+ /**
5639
+ * Sets a new value for property {@link #getEnabled enabled}.
5640
+ *
5641
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
5642
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
5643
+ *
5644
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5645
+ *
5646
+ * Default value is `true`.
5647
+ *
5648
+ * @returns Reference to `this` in order to allow method chaining
5649
+ */
5650
+ setEnabled(
5651
+ /**
5652
+ * New value for property `enabled`
5653
+ */
5654
+ bEnabled?: boolean
5655
+ ): this;
5600
5656
  /**
5601
5657
  * Sets a new value for property {@link #getFallbackIcon fallbackIcon}.
5602
5658
  *
@@ -5810,6 +5866,20 @@ declare module "sap/m/Avatar" {
5810
5866
  | PropertyBindingInfo
5811
5867
  | `{${string}}`;
5812
5868
 
5869
+ /**
5870
+ * Visualizes the validation state of the badge, e.g. `Error`, `Warning`, `Success`, `Information`.
5871
+ */
5872
+ badgeValueState?:
5873
+ | (ValueState | keyof typeof ValueState)
5874
+ | PropertyBindingInfo
5875
+ | `{${string}}`;
5876
+
5877
+ /**
5878
+ * Determines whether the `Avatar` is enabled (default is set to `true`). A disabled `Button` has different
5879
+ * colors depending on the {@link sap.m.AvatarColor AvatarColor}.
5880
+ */
5881
+ enabled?: boolean | PropertyBindingInfo | `{${string}}`;
5882
+
5813
5883
  /**
5814
5884
  * A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
5815
5885
  * control.
@@ -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/tnt/library" {
4
4
  /**
@@ -1340,8 +1340,6 @@ declare module "sap/tnt/SideNavigation" {
1340
1340
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1341
1341
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1342
1342
  * of the syntax of the settings object.
1343
- * See:
1344
- * {@link fiori:https://experience.sap.com/fiori-design-web/side-navigation/ Side Navigation}
1345
1343
  */
1346
1344
  constructor(
1347
1345
  /**
@@ -1355,8 +1353,6 @@ declare module "sap/tnt/SideNavigation" {
1355
1353
  * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
1356
1354
  * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
1357
1355
  * of the syntax of the settings object.
1358
- * See:
1359
- * {@link fiori:https://experience.sap.com/fiori-design-web/side-navigation/ Side Navigation}
1360
1356
  */
1361
1357
  constructor(
1362
1358
  /**
@@ -1716,16 +1712,19 @@ declare module "sap/tnt/ToolHeader" {
1716
1712
  /**
1717
1713
  * @SINCE 1.34
1718
1714
  *
1719
- * The ToolHeader control is a horizontal container that is most commonly used to display buttons, labels,
1715
+ * The ToolHeader control is a horizontal container that is most commonly used to display buttons, texts,
1720
1716
  * and other various input controls. Overview: The ToolHeader control is based on {@link sap.m.OverflowToolbar}.
1721
1717
  * It contains clearly structured menus of commands that are available across the various apps within the
1722
1718
  * same tool layout. Usage:
1719
+ * - This control is specialized for administrative applications. For other types of applications use:
1720
+ * {@link sap.m.Shell}
1723
1721
  * - If an app implements side navigation in addition to the tool header menu, the menu icon must be the
1724
1722
  * first item on the left-hand side of the tool header.
1725
1723
  * - The app menu and the side navigation must not have any dependencies and must work independently.
1726
- * Fiori 3 theme specifics: In Fiori 3 Default theme the ToolHeader is with dark design unlike most
1727
- * of the other controls. This defines the usage of limited controls inside it, which will result in good
1728
- * design combination.
1724
+ * Horizon theme specifics: Only the following controls are supported: sap.m.Button, sap.m.Image,
1725
+ * sap.m.Title, sap.m.Text, sap.m.SearchField, sap.m.Avatar. Fiori 3 theme specifics: In Fiori 3 Default
1726
+ * theme the ToolHeader is with dark design unlike most of the other controls. This defines the usage of
1727
+ * limited controls inside it, which will result in good design combination.
1729
1728
  * The ToolHeader stylizes the contained controls with the Shell color parameters, to match the dark design
1730
1729
  * requirement. However, that's not a dark theme.
1731
1730
  *
@@ -1761,8 +1760,6 @@ declare module "sap/tnt/ToolHeader" {
1761
1760
  *
1762
1761
  * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
1763
1762
  * sap.m.OverflowToolbar} can be used.
1764
- * See:
1765
- * {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
1766
1763
  */
1767
1764
  constructor(
1768
1765
  /**
@@ -1779,8 +1776,6 @@ declare module "sap/tnt/ToolHeader" {
1779
1776
  *
1780
1777
  * This class does not have its own settings, but all settings applicable to the base type {@link sap.m.OverflowToolbar#constructor
1781
1778
  * sap.m.OverflowToolbar} can be used.
1782
- * See:
1783
- * {@link fiori:https://experience.sap.com/fiori-design-web/tool-header/ Tool Header}
1784
1779
  */
1785
1780
  constructor(
1786
1781
  /**
@@ -1914,6 +1909,8 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
1914
1909
  declare module "sap/tnt/ToolPage" {
1915
1910
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
1916
1911
 
1912
+ import { PageBackgroundDesign } from "sap/m/library";
1913
+
1917
1914
  import { IToolHeader } from "sap/tnt/library";
1918
1915
 
1919
1916
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -2032,6 +2029,20 @@ declare module "sap/tnt/ToolPage" {
2032
2029
  * @returns Reference to `this` in order to allow method chaining
2033
2030
  */
2034
2031
  destroySubHeader(): this;
2032
+ /**
2033
+ * @SINCE 1.115
2034
+ *
2035
+ * Gets current value of property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2036
+ *
2037
+ * Specifies the content background design.
2038
+ *
2039
+ * Default value is `Standard`.
2040
+ *
2041
+ * @returns Value of property `contentBackgroundDesign`
2042
+ */
2043
+ getContentBackgroundDesign():
2044
+ | PageBackgroundDesign
2045
+ | keyof typeof PageBackgroundDesign;
2035
2046
  /**
2036
2047
  * Gets content of aggregation {@link #getHeader header}.
2037
2048
  *
@@ -2116,6 +2127,27 @@ declare module "sap/tnt/ToolPage" {
2116
2127
  */
2117
2128
  vMainContent: int | string | Control
2118
2129
  ): Control | null;
2130
+ /**
2131
+ * @SINCE 1.115
2132
+ *
2133
+ * Sets a new value for property {@link #getContentBackgroundDesign contentBackgroundDesign}.
2134
+ *
2135
+ * Specifies the content background design.
2136
+ *
2137
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2138
+ *
2139
+ * Default value is `Standard`.
2140
+ *
2141
+ * @returns Reference to `this` in order to allow method chaining
2142
+ */
2143
+ setContentBackgroundDesign(
2144
+ /**
2145
+ * New value for property `contentBackgroundDesign`
2146
+ */
2147
+ sContentBackgroundDesign?:
2148
+ | PageBackgroundDesign
2149
+ | keyof typeof PageBackgroundDesign
2150
+ ): this;
2119
2151
  /**
2120
2152
  * Sets the aggregated {@link #getHeader header}.
2121
2153
  *
@@ -2176,6 +2208,16 @@ declare module "sap/tnt/ToolPage" {
2176
2208
  */
2177
2209
  sideExpanded?: boolean | PropertyBindingInfo | `{${string}}`;
2178
2210
 
2211
+ /**
2212
+ * @SINCE 1.115
2213
+ *
2214
+ * Specifies the content background design.
2215
+ */
2216
+ contentBackgroundDesign?:
2217
+ | (PageBackgroundDesign | keyof typeof PageBackgroundDesign)
2218
+ | PropertyBindingInfo
2219
+ | `{${string}}`;
2220
+
2179
2221
  /**
2180
2222
  * The control to appear in the header area.
2181
2223
  */
@@ -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/codeeditor/library" {}
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 module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -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 module "sap/ui/fl/library" {}
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 module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -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/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -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/mdc/filterbar/vh/FilterContainer" {
4
4
  import Metadata from "sap/ui/base/Metadata";
@@ -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
  import Control from "sap/ui/core/Control";
@@ -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/suite/library" {
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 module "sap/ui/support/library" {
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 module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -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/testrecorder/library" {}
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 module "sap/ui/unified/library" {
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 module "sap/ui/ux3/library" {
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 module "sap/ui/webc/common/library" {}
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 module "sap/ui/webc/fiori/library" {
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 module "sap/ui/webc/main/library" {
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 module "sap/uxap/library" {
4
4
  /**