@openui5/ts-types 1.107.1 → 1.108.1
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 +111 -44
- package/types/sap.m.d.ts +200 -97
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +12 -2
- package/types/sap.ui.core.d.ts +306 -103
- 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 +104 -58
- package/types/sap.ui.layout.d.ts +2 -2
- 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 +8 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +28 -20
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +198 -24
- package/types/sap.ui.ux3.d.ts +18 -9
- package/types/sap.ui.webc.common.d.ts +3 -3
- package/types/sap.ui.webc.fiori.d.ts +58 -58
- package/types/sap.ui.webc.main.d.ts +129 -129
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.108.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -11864,7 +11864,17 @@ declare namespace sap {
|
|
|
11864
11864
|
*/
|
|
11865
11865
|
getDefaultButton(): sap.ui.core.ID;
|
|
11866
11866
|
/**
|
|
11867
|
-
* @EXPERIMENTAL
|
|
11867
|
+
* @EXPERIMENTAL - Whether a dialog is regarded as "enabled" during the state transitions (OPENING, CLOSING)
|
|
11868
|
+
* is not fully decided. Currently, it is enabled during the OPENING phase and disabled during the CLOSING
|
|
11869
|
+
* phase. The only potential change would be to treat the OPENING phase as disabled as well. Applications
|
|
11870
|
+
* should be prepared to receive events from "enabled" controls after they called open() on the dialog until
|
|
11871
|
+
* close() is called on it. If the mentioned potential change should happen, the dialog will become enabled
|
|
11872
|
+
* only after the transition to OPEN. Events from "enabled" children then can still only arrive between
|
|
11873
|
+
* open() and close(), so applications that obey the previous rule should continue to work. Only end users
|
|
11874
|
+
* or code that explicitly triggers pseudo user events will notice a difference.
|
|
11875
|
+
* A second aspect that might change is the visual behavior of the content: during the CLOSING phase it
|
|
11876
|
+
* 'looks' enabled but in fact it is already disabled. This avoids unnecessary redraws for content that
|
|
11877
|
+
* becomes hidden soon. Should this show to be confusing for end users, it might be changed.
|
|
11868
11878
|
*
|
|
11869
11879
|
* Determines whether the dialog is currently enabled or not.
|
|
11870
11880
|
*
|