@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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +26 -29
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
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
|
|
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
|
-
* @
|
|
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
|
-
* @
|
|
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
|
|
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
|
|
139145
|
+
* @returns Reference to the current instance for method chaining.
|
|
139146
139146
|
*/
|
|
139147
139147
|
setPriority(
|
|
139148
139148
|
/**
|
|
139149
|
-
*
|
|
139149
|
+
* The priority level.
|
|
139150
139150
|
*/
|
|
139151
|
-
sPriority
|
|
139151
|
+
sPriority: Priority | keyof typeof Priority
|
|
139152
139152
|
): this;
|
|
139153
139153
|
/**
|
|
139154
|
-
* Sets
|
|
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
|
-
*
|
|
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
|
-
*
|
|
139161
|
+
* The text to be displayed on the badge.
|
|
139167
139162
|
*/
|
|
139168
|
-
sPriorityText
|
|
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
|
|
139304
|
+
* Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
|
|
139305
|
+
* NewsContent.
|
|
139310
139306
|
*
|
|
139311
|
-
* @
|
|
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
|
-
* @
|
|
139318
|
+
* @since 1.103
|
|
139322
139319
|
*/
|
|
139323
139320
|
priorityText?: string | PropertyBindingInfo;
|
|
139324
139321
|
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED