@sapui5/ts-types 1.96.9 → 1.96.10
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.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.navigation.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 +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.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 +66 -3
- package/types/sap.suite.ui.commons.d.ts +1 -1
- 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 +26 -1
- 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.vbm.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.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.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.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.96.
|
|
1
|
+
// For Library Version: 1.96.9
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -38,6 +38,16 @@ declare namespace sap {
|
|
|
38
38
|
| boolean
|
|
39
39
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
40
40
|
|
|
41
|
+
/**
|
|
42
|
+
* Defines the frame rate of the camera.
|
|
43
|
+
*/
|
|
44
|
+
frameRate?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Defines the zoom of the camera. This parameter is not supported on iOS.
|
|
48
|
+
*/
|
|
49
|
+
zoom?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
50
|
+
|
|
41
51
|
/**
|
|
42
52
|
* Event is fired when the scanning is finished or cancelled
|
|
43
53
|
*/
|
|
@@ -112,7 +122,10 @@ declare namespace sap {
|
|
|
112
122
|
* function (mParams) {
|
|
113
123
|
* alert("Value entered: " + mParams.newValue);
|
|
114
124
|
* },
|
|
115
|
-
* "Enter Product Bar Code"
|
|
125
|
+
* "Enter Product Bar Code",
|
|
126
|
+
* true,
|
|
127
|
+
* 30,
|
|
128
|
+
* 1
|
|
116
129
|
* );
|
|
117
130
|
* });
|
|
118
131
|
* ```
|
|
@@ -133,7 +146,19 @@ declare namespace sap {
|
|
|
133
146
|
/**
|
|
134
147
|
* Defines the bar code input dialog title. If unset, a predefined title will be used.
|
|
135
148
|
*/
|
|
136
|
-
dialogTitle?: string
|
|
149
|
+
dialogTitle?: string,
|
|
150
|
+
/**
|
|
151
|
+
* Flag, which defines whether the front or back camera should be used.
|
|
152
|
+
*/
|
|
153
|
+
preferFrontCamera?: boolean,
|
|
154
|
+
/**
|
|
155
|
+
* Defines the frame rate of the camera.
|
|
156
|
+
*/
|
|
157
|
+
frameRate?: float,
|
|
158
|
+
/**
|
|
159
|
+
* Defines the zoom of the camera. This parameter is not supported on iOS.
|
|
160
|
+
*/
|
|
161
|
+
zoom?: float
|
|
137
162
|
): void;
|
|
138
163
|
}
|
|
139
164
|
const BarcodeScanner: BarcodeScanner;
|
|
@@ -422,6 +447,12 @@ declare namespace sap {
|
|
|
422
447
|
* Defines the bar code input dialog title. If unset, a predefined title will be used.
|
|
423
448
|
*/
|
|
424
449
|
getDialogTitle(): string;
|
|
450
|
+
/**
|
|
451
|
+
* Gets current value of property {@link #getFrameRate frameRate}.
|
|
452
|
+
*
|
|
453
|
+
* Defines the frame rate of the camera.
|
|
454
|
+
*/
|
|
455
|
+
getFrameRate(): float;
|
|
425
456
|
/**
|
|
426
457
|
* Gets current value of property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
427
458
|
*
|
|
@@ -454,6 +485,12 @@ declare namespace sap {
|
|
|
454
485
|
* Defines the width of the scanner button.
|
|
455
486
|
*/
|
|
456
487
|
getWidth(): sap.ui.core.CSSSize;
|
|
488
|
+
/**
|
|
489
|
+
* Gets current value of property {@link #getZoom zoom}.
|
|
490
|
+
*
|
|
491
|
+
* Defines the zoom of the camera. This parameter is not supported on iOS.
|
|
492
|
+
*/
|
|
493
|
+
getZoom(): float;
|
|
457
494
|
/**
|
|
458
495
|
* Sets a new value for property {@link #getDialogTitle dialogTitle}.
|
|
459
496
|
*
|
|
@@ -467,6 +504,19 @@ declare namespace sap {
|
|
|
467
504
|
*/
|
|
468
505
|
sDialogTitle?: string
|
|
469
506
|
): this;
|
|
507
|
+
/**
|
|
508
|
+
* Sets a new value for property {@link #getFrameRate frameRate}.
|
|
509
|
+
*
|
|
510
|
+
* Defines the frame rate of the camera.
|
|
511
|
+
*
|
|
512
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
513
|
+
*/
|
|
514
|
+
setFrameRate(
|
|
515
|
+
/**
|
|
516
|
+
* New value for property `frameRate`
|
|
517
|
+
*/
|
|
518
|
+
fFrameRate: float
|
|
519
|
+
): this;
|
|
470
520
|
/**
|
|
471
521
|
* Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
|
|
472
522
|
*
|
|
@@ -527,6 +577,19 @@ declare namespace sap {
|
|
|
527
577
|
*/
|
|
528
578
|
sWidth?: sap.ui.core.CSSSize
|
|
529
579
|
): this;
|
|
580
|
+
/**
|
|
581
|
+
* Sets a new value for property {@link #getZoom zoom}.
|
|
582
|
+
*
|
|
583
|
+
* Defines the zoom of the camera. This parameter is not supported on iOS.
|
|
584
|
+
*
|
|
585
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
586
|
+
*/
|
|
587
|
+
setZoom(
|
|
588
|
+
/**
|
|
589
|
+
* New value for property `zoom`
|
|
590
|
+
*/
|
|
591
|
+
fZoom: float
|
|
592
|
+
): this;
|
|
530
593
|
}
|
|
531
594
|
}
|
|
532
595
|
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.96.
|
|
267
|
+
// For Library Version: 1.96.9
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -12696,6 +12696,11 @@ declare namespace sap {
|
|
|
12696
12696
|
* sap.ui.core.Configuration.FormatSettings#setCustomCurrencies} and {@link sap.ui.core.Configuration.FormatSettings#addCustomCurrencies}.
|
|
12697
12697
|
*/
|
|
12698
12698
|
customCurrencies?: Record<string, object>;
|
|
12699
|
+
/**
|
|
12700
|
+
* whether the positions of grouping separators are validated. Space characters used as grouping separators
|
|
12701
|
+
* are not validated.
|
|
12702
|
+
*/
|
|
12703
|
+
strictGroupingValidation?: boolean;
|
|
12699
12704
|
},
|
|
12700
12705
|
/**
|
|
12701
12706
|
* Locale to get the formatter for
|
|
@@ -12832,6 +12837,11 @@ declare namespace sap {
|
|
|
12832
12837
|
* string.
|
|
12833
12838
|
*/
|
|
12834
12839
|
emptyString?: number;
|
|
12840
|
+
/**
|
|
12841
|
+
* whether the positions of grouping separators are validated. Space characters used as grouping separators
|
|
12842
|
+
* are not validated.
|
|
12843
|
+
*/
|
|
12844
|
+
strictGroupingValidation?: boolean;
|
|
12835
12845
|
},
|
|
12836
12846
|
/**
|
|
12837
12847
|
* Locale to get the formatter for
|
|
@@ -12967,6 +12977,11 @@ declare namespace sap {
|
|
|
12967
12977
|
* this parameter is set to NaN, empty string is parsed as NaN and NaN is formatted as empty string.
|
|
12968
12978
|
*/
|
|
12969
12979
|
emptyString?: number;
|
|
12980
|
+
/**
|
|
12981
|
+
* whether the positions of grouping separators are validated. Space characters used as grouping separators
|
|
12982
|
+
* are not validated.
|
|
12983
|
+
*/
|
|
12984
|
+
strictGroupingValidation?: boolean;
|
|
12970
12985
|
},
|
|
12971
12986
|
/**
|
|
12972
12987
|
* Locale to get the formatter for
|
|
@@ -13111,6 +13126,11 @@ declare namespace sap {
|
|
|
13111
13126
|
* string.
|
|
13112
13127
|
*/
|
|
13113
13128
|
emptyString?: number;
|
|
13129
|
+
/**
|
|
13130
|
+
* whether the positions of grouping separators are validated. Space characters used as grouping separators
|
|
13131
|
+
* are not validated.
|
|
13132
|
+
*/
|
|
13133
|
+
strictGroupingValidation?: boolean;
|
|
13114
13134
|
},
|
|
13115
13135
|
/**
|
|
13116
13136
|
* Locale to get the formatter for
|
|
@@ -13270,6 +13290,11 @@ declare namespace sap {
|
|
|
13270
13290
|
* as empty string.
|
|
13271
13291
|
*/
|
|
13272
13292
|
emptyString?: number;
|
|
13293
|
+
/**
|
|
13294
|
+
* whether the positions of grouping separators are validated. Space characters used as grouping separators
|
|
13295
|
+
* are not validated.
|
|
13296
|
+
*/
|
|
13297
|
+
strictGroupingValidation?: boolean;
|
|
13273
13298
|
},
|
|
13274
13299
|
/**
|
|
13275
13300
|
* Locale to get the formatter for
|
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.96.
|
|
1
|
+
// For Library Version: 1.96.9
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -180,7 +180,7 @@ declare namespace sap {
|
|
|
180
180
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
181
181
|
* following fields:
|
|
182
182
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
183
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.
|
|
183
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.96.9")
|
|
184
184
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
185
185
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
186
186
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -266,7 +266,7 @@ declare namespace sap {
|
|
|
266
266
|
* columns: aColumns,
|
|
267
267
|
* context: {
|
|
268
268
|
* application: 'Debug Test Application',
|
|
269
|
-
* version: '1.96.
|
|
269
|
+
* version: '1.96.9',
|
|
270
270
|
* title: 'Some random title',
|
|
271
271
|
* modifiedBy: 'John Doe',
|
|
272
272
|
* 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.96.
|
|
1
|
+
// For Library Version: 1.96.9
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.96.
|
|
241
|
+
* @SINCE 1.96.9
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.96.
|
|
260
|
+
* @SINCE 1.96.9
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.96.
|
|
315
|
+
* @SINCE 1.96.9
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.96.
|
|
330
|
+
* @SINCE 1.96.9
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.96.
|
|
349
|
+
* @SINCE 1.96.9
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED