@openui5/ts-types 1.112.2 → 1.114.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.
- package/package.json +1 -1
- package/types/sap.f.d.ts +125 -38
- package/types/sap.m.d.ts +2306 -1028
- package/types/sap.tnt.d.ts +7 -1
- package/types/sap.ui.codeeditor.d.ts +5 -1
- package/types/sap.ui.commons.d.ts +197 -1
- package/types/sap.ui.core.d.ts +3117 -1641
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +13 -3
- package/types/sap.ui.integration.d.ts +158 -22
- package/types/sap.ui.layout.d.ts +43 -1
- package/types/sap.ui.mdc.d.ts +17 -7
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +5 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +98 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +433 -111
- package/types/sap.ui.ux3.d.ts +147 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +63 -1
- package/types/sap.ui.webc.main.d.ts +189 -5
- package/types/sap.uxap.d.ts +26 -1
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -781,6 +781,8 @@ declare namespace sap {
|
|
|
781
781
|
oListener?: object
|
|
782
782
|
): this;
|
|
783
783
|
/**
|
|
784
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
785
|
+
*
|
|
784
786
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
785
787
|
*
|
|
786
788
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1130,6 +1132,8 @@ declare namespace sap {
|
|
|
1130
1132
|
oListener?: object
|
|
1131
1133
|
): this;
|
|
1132
1134
|
/**
|
|
1135
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1136
|
+
*
|
|
1133
1137
|
* Fires event {@link #event:select select} to attached listeners.
|
|
1134
1138
|
*
|
|
1135
1139
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1537,6 +1541,8 @@ declare namespace sap {
|
|
|
1537
1541
|
oListener?: object
|
|
1538
1542
|
): this;
|
|
1539
1543
|
/**
|
|
1544
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
1545
|
+
*
|
|
1540
1546
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
1541
1547
|
*
|
|
1542
1548
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.114.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -322,6 +322,8 @@ declare namespace sap {
|
|
|
322
322
|
oListener?: object
|
|
323
323
|
): this;
|
|
324
324
|
/**
|
|
325
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
326
|
+
*
|
|
325
327
|
* Fires event {@link #event:change change} to attached listeners.
|
|
326
328
|
*
|
|
327
329
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -342,6 +344,8 @@ declare namespace sap {
|
|
|
342
344
|
}
|
|
343
345
|
): this;
|
|
344
346
|
/**
|
|
347
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
348
|
+
*
|
|
345
349
|
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
346
350
|
*
|
|
347
351
|
* @returns Reference to `this` in order to allow method chaining
|