@sapui5/ts-types 1.94.0 → 1.96.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/index.d.ts +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +235 -1
- package/types/sap.f.d.ts +310 -40
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +102 -1
- package/types/sap.fe.macros.d.ts +36 -12
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.semantics.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +2 -2
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1070 -44
- package/types/sap.landvisz.d.ts +1 -1
- package/types/sap.m.d.ts +643 -115
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +21 -29
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.grid.d.ts +635 -0
- package/types/sap.suite.ui.commons.d.ts +177 -3
- package/types/sap.suite.ui.generic.template.d.ts +49 -6
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +11 -12
- package/types/sap.ui.codeeditor.d.ts +29 -31
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +149 -18
- package/types/sap.ui.core.d.ts +691 -313
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +119 -69
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +232 -1
- package/types/sap.ui.layout.d.ts +19 -1
- package/types/sap.ui.mdc.d.ts +51 -1
- package/types/sap.ui.richtexteditor.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 +6 -6
- package/types/sap.ui.table.d.ts +7 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +140 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +793 -130
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +2 -1
- package/types/sap.ushell.d.ts +69 -49
- package/types/sap.ushell_abap.d.ts +2 -2
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +53 -34
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.96.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -50,14 +50,11 @@ declare namespace sap {
|
|
|
50
50
|
/**
|
|
51
51
|
* @SINCE 1.28.0
|
|
52
52
|
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
55
|
-
* As `BarcodeScanner` is a static class, a `sap.ui.define();` statement must be explicitly executed before
|
|
56
|
-
* the class can be used. Example: *
|
|
53
|
+
* Here is an example of how to trigger the scan function of BarcodeScanner:
|
|
57
54
|
* ```javascript
|
|
58
55
|
*
|
|
59
|
-
* sap.ui.
|
|
60
|
-
*
|
|
56
|
+
* sap.ui.require(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
|
|
57
|
+
* BarcodeScanner.scan(
|
|
61
58
|
* function (oResult) { / * process scan result * / },
|
|
62
59
|
* function (oError) { / * handle scan error * / },
|
|
63
60
|
* function (oResult) { / * handle input dialog change * / }
|
|
@@ -82,13 +79,6 @@ declare namespace sap {
|
|
|
82
79
|
* Starts the bar code scanning process either showing the live input from the camera or displaying a dialog
|
|
83
80
|
* to enter the value directly if the bar code scanning feature is not available.
|
|
84
81
|
*
|
|
85
|
-
*
|
|
86
|
-
* ```javascript
|
|
87
|
-
*
|
|
88
|
-
* sap.ndc.BarcodeScanner.scan(fnSuccess, fnFail, fnLiveUpdate, dialogTitle)
|
|
89
|
-
* ```
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
82
|
* The bar code scanning is done asynchronously. When it is triggered, this function returns without waiting
|
|
93
83
|
* for the scanning process to finish. The applications have to provide callback functions to react to the
|
|
94
84
|
* events of a successful scanning, an error during scanning, and the live input on the dialog.
|
|
@@ -101,21 +91,23 @@ declare namespace sap {
|
|
|
101
91
|
*
|
|
102
92
|
* ```javascript
|
|
103
93
|
*
|
|
104
|
-
* sap.ndc
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
94
|
+
* sap.ui.require(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
|
|
95
|
+
* BarcodeScanner.scan(
|
|
96
|
+
* function (mResult) {
|
|
97
|
+
* alert("We got a bar code\n" +
|
|
98
|
+
* "Result: " + mResult.text + "\n" +
|
|
99
|
+
* "Format: " + mResult.format + "\n" +
|
|
100
|
+
* "Cancelled: " + mResult.cancelled);
|
|
101
|
+
* },
|
|
102
|
+
* function (Error) {
|
|
103
|
+
* alert("Scanning failed: " + Error);
|
|
104
|
+
* },
|
|
105
|
+
* function (mParams) {
|
|
106
|
+
* alert("Value entered: " + mParams.newValue);
|
|
107
|
+
* },
|
|
108
|
+
* "Enter Product Bar Code"
|
|
109
|
+
* );
|
|
110
|
+
* });
|
|
119
111
|
* ```
|
|
120
112
|
*/
|
|
121
113
|
scan(
|
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.rules.ui.d.ts
CHANGED