@sapui5/ts-types 1.84.20 → 1.84.21
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.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- 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.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- 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.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +3 -3
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- 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.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 +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.vk.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
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.84.
|
|
1
|
+
// For Library Version: 1.84.20
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -8,14 +8,11 @@ declare namespace sap {
|
|
|
8
8
|
/**
|
|
9
9
|
* @SINCE 1.28.0
|
|
10
10
|
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* As `BarcodeScanner` is a static class, a `sap.ui.define();` statement must be explicitly executed before
|
|
14
|
-
* the class can be used. Example: *
|
|
11
|
+
* Here is an example of how to trigger the scan function of BarcodeScanner:
|
|
15
12
|
* ```javascript
|
|
16
13
|
*
|
|
17
|
-
* sap.ui.
|
|
18
|
-
*
|
|
14
|
+
* sap.ui.require(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
|
|
15
|
+
* BarcodeScanner.scan(
|
|
19
16
|
* function (oResult) { / * process scan result * / },
|
|
20
17
|
* function (oError) { / * handle scan error * / },
|
|
21
18
|
* function (oResult) { / * handle input dialog change * / }
|
|
@@ -40,13 +37,6 @@ declare namespace sap {
|
|
|
40
37
|
* Starts the bar code scanning process either showing the live input from the camera or displaying a dialog
|
|
41
38
|
* to enter the value directly if the bar code scanning feature is not available.
|
|
42
39
|
*
|
|
43
|
-
*
|
|
44
|
-
* ```javascript
|
|
45
|
-
*
|
|
46
|
-
* sap.ndc.BarcodeScanner.scan(fnSuccess, fnFail, fnLiveUpdate, dialogTitle)
|
|
47
|
-
* ```
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
40
|
* The bar code scanning is done asynchronously. When it is triggered, this function returns without waiting
|
|
51
41
|
* for the scanning process to finish. The applications have to provide callback functions to react to the
|
|
52
42
|
* events of a successful scanning, an error during scanning, and the live input on the dialog.
|
|
@@ -59,21 +49,23 @@ declare namespace sap {
|
|
|
59
49
|
*
|
|
60
50
|
* ```javascript
|
|
61
51
|
*
|
|
62
|
-
* sap.ndc
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
*
|
|
71
|
-
*
|
|
72
|
-
*
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
*
|
|
76
|
-
*
|
|
52
|
+
* sap.ui.require(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
|
|
53
|
+
* BarcodeScanner.scan(
|
|
54
|
+
* function (mResult) {
|
|
55
|
+
* alert("We got a bar code\n" +
|
|
56
|
+
* "Result: " + mResult.text + "\n" +
|
|
57
|
+
* "Format: " + mResult.format + "\n" +
|
|
58
|
+
* "Cancelled: " + mResult.cancelled);
|
|
59
|
+
* },
|
|
60
|
+
* function (Error) {
|
|
61
|
+
* alert("Scanning failed: " + Error);
|
|
62
|
+
* },
|
|
63
|
+
* function (mParams) {
|
|
64
|
+
* alert("Value entered: " + mParams.newValue);
|
|
65
|
+
* },
|
|
66
|
+
* "Enter Product Bar Code"
|
|
67
|
+
* );
|
|
68
|
+
* });
|
|
77
69
|
* ```
|
|
78
70
|
*/
|
|
79
71
|
function scan(
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare module "sap/base/util/Version";
|
|
|
18
18
|
declare module "sap/ui/performance/Measurement.Entry";
|
|
19
19
|
|
|
20
20
|
declare module "sap/ui/util/Storage.Type";
|
|
21
|
-
// For Library Version: 1.84.
|
|
21
|
+
// For Library Version: 1.84.20
|
|
22
22
|
/**
|
|
23
23
|
* Root namespace for JavaScript functionality provided by SAP SE.
|
|
24
24
|
*
|
|
@@ -39894,8 +39894,8 @@ declare namespace sap {
|
|
|
39894
39894
|
*/
|
|
39895
39895
|
read(
|
|
39896
39896
|
/**
|
|
39897
|
-
*
|
|
39898
|
-
*
|
|
39897
|
+
* An absolute path or a path relative to the context given in `mParameters.context`; if the path contains
|
|
39898
|
+
* a query string, the query string is ignored, use `mParameters.urlParameters` instead
|
|
39899
39899
|
*/
|
|
39900
39900
|
sPath: string,
|
|
39901
39901
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.20
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
|
|
@@ -75,7 +75,7 @@ class Spreadsheet{
|
|
|
75
75
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
76
76
|
* following fields:
|
|
77
77
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
78
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.84.
|
|
78
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.84.20")
|
|
79
79
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
80
80
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
81
81
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -161,7 +161,7 @@ class Spreadsheet{
|
|
|
161
161
|
* columns: aColumns,
|
|
162
162
|
* context: {
|
|
163
163
|
* application: 'Debug Test Application',
|
|
164
|
-
* version: '1.84.
|
|
164
|
+
* version: '1.84.20',
|
|
165
165
|
* title: 'Some random title',
|
|
166
166
|
* modifiedBy: 'John Doe',
|
|
167
167
|
* metaSheetName: 'Custom metadata',
|
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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.84.
|
|
1
|
+
// For Library Version: 1.84.20
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -237,7 +237,7 @@ declare namespace sap {
|
|
|
237
237
|
static getType(): string;
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
|
-
* @SINCE 1.84.
|
|
240
|
+
* @SINCE 1.84.20
|
|
241
241
|
*
|
|
242
242
|
* Defines the Audiences.
|
|
243
243
|
*/
|
|
@@ -256,7 +256,7 @@ declare namespace sap {
|
|
|
256
256
|
Internal,
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
|
-
* @SINCE 1.84.
|
|
259
|
+
* @SINCE 1.84.20
|
|
260
260
|
*
|
|
261
261
|
* Issue Categories.
|
|
262
262
|
*/
|
|
@@ -311,7 +311,7 @@ declare namespace sap {
|
|
|
311
311
|
Usage,
|
|
312
312
|
}
|
|
313
313
|
/**
|
|
314
|
-
* @SINCE 1.84.
|
|
314
|
+
* @SINCE 1.84.20
|
|
315
315
|
*
|
|
316
316
|
* Analysis history formats.
|
|
317
317
|
*/
|
|
@@ -326,7 +326,7 @@ declare namespace sap {
|
|
|
326
326
|
String,
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
|
-
* @SINCE 1.84.
|
|
329
|
+
* @SINCE 1.84.20
|
|
330
330
|
*
|
|
331
331
|
* Defines severity types.
|
|
332
332
|
*/
|
|
@@ -345,7 +345,7 @@ declare namespace sap {
|
|
|
345
345
|
Medium,
|
|
346
346
|
}
|
|
347
347
|
/**
|
|
348
|
-
* @SINCE 1.84.
|
|
348
|
+
* @SINCE 1.84.20
|
|
349
349
|
*
|
|
350
350
|
* Contains the available system presets.
|
|
351
351
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED