@openui5/types 1.120.37 → 1.120.39

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/types",
3
- "version": "1.120.37",
3
+ "version": "1.120.39",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript",
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.120.37
1
+ // For Library Version: 1.120.39
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.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -120326,6 +120326,11 @@ declare module "sap/m/SinglePlanningCalendar" {
120326
120326
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
120327
120327
  */
120328
120328
  endDate?: object;
120329
+
120330
+ /**
120331
+ * The original browser event.
120332
+ */
120333
+ originalEvent?: object;
120329
120334
  }
120330
120335
 
120331
120336
  /**
@@ -138994,11 +138999,12 @@ declare module "sap/m/TileContent" {
138994
138999
  /**
138995
139000
  * Gets current value of property {@link #getPriority priority}.
138996
139001
  *
138997
- * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
139002
+ * Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
139003
+ * NewsContent.
138998
139004
  *
138999
139005
  * Default value is `None`.
139000
139006
  *
139001
- * @experimental (since 1.96)
139007
+ * @since 1.96
139002
139008
  *
139003
139009
  * @returns Value of property `priority`
139004
139010
  */
@@ -139006,9 +139012,10 @@ declare module "sap/m/TileContent" {
139006
139012
  /**
139007
139013
  * Gets current value of property {@link #getPriorityText priorityText}.
139008
139014
  *
139009
- * Sets the Text inside the Priority badge in Generic Tile ActionMode.
139015
+ * Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
139016
+ * Article Mode containing NewsContent.
139010
139017
  *
139011
- * @experimental (since 1.103)
139018
+ * @since 1.103
139012
139019
  *
139013
139020
  * @returns Value of property `priorityText`
139014
139021
  */
@@ -139132,40 +139139,28 @@ declare module "sap/m/TileContent" {
139132
139139
  sFrameType?: FrameType | keyof typeof FrameType
139133
139140
  ): this;
139134
139141
  /**
139135
- * Sets a new value for property {@link #getPriority priority}.
139136
- *
139137
- * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
139138
- *
139139
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
139140
- *
139141
- * Default value is `None`.
139142
+ * Sets the priority of the tile content.
139142
139143
  *
139143
- * @experimental (since 1.96)
139144
139144
  *
139145
- * @returns Reference to `this` in order to allow method chaining
139145
+ * @returns Reference to the current instance for method chaining.
139146
139146
  */
139147
139147
  setPriority(
139148
139148
  /**
139149
- * New value for property `priority`
139149
+ * The priority level.
139150
139150
  */
139151
- sPriority?: Priority | keyof typeof Priority
139151
+ sPriority: Priority | keyof typeof Priority
139152
139152
  ): this;
139153
139153
  /**
139154
- * Sets a new value for property {@link #getPriorityText priorityText}.
139154
+ * Sets the text for the priority badge.
139155
139155
  *
139156
- * Sets the Text inside the Priority badge in Generic Tile ActionMode.
139157
139156
  *
139158
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
139159
- *
139160
- * @experimental (since 1.103)
139161
- *
139162
- * @returns Reference to `this` in order to allow method chaining
139157
+ * @returns Reference to the current instance for method chaining.
139163
139158
  */
139164
139159
  setPriorityText(
139165
139160
  /**
139166
- * New value for property `priorityText`
139161
+ * The text to be displayed on the badge.
139167
139162
  */
139168
- sPriorityText?: string
139163
+ sPriorityText: string
139169
139164
  ): this;
139170
139165
  /**
139171
139166
  * Setter for protected property to enable or disable content rendering. This function does not invalidate
@@ -139306,9 +139301,10 @@ declare module "sap/m/TileContent" {
139306
139301
  | `{${string}}`;
139307
139302
 
139308
139303
  /**
139309
- * Adds a priority badge before the content. Works only in Generic Tile ActionMode.
139304
+ * Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
139305
+ * NewsContent.
139310
139306
  *
139311
- * @experimental (since 1.96)
139307
+ * @since 1.96
139312
139308
  */
139313
139309
  priority?:
139314
139310
  | (Priority | keyof typeof Priority)
@@ -139316,9 +139312,10 @@ declare module "sap/m/TileContent" {
139316
139312
  | `{${string}}`;
139317
139313
 
139318
139314
  /**
139319
- * Sets the Text inside the Priority badge in Generic Tile ActionMode.
139315
+ * Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
139316
+ * Article Mode containing NewsContent.
139320
139317
  *
139321
- * @experimental (since 1.103)
139318
+ * @since 1.103
139322
139319
  */
139323
139320
  priorityText?: string | PropertyBindingInfo;
139324
139321
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.37
283
+ // For Library Version: 1.120.39
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
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.120.37
1
+ // For Library Version: 1.120.39
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.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
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.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
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.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.37
1
+ // For Library Version: 1.120.39
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**