@sapui5/ts-types 1.136.16 → 1.136.17
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/{core-1.136.2-d.ts → core-1.136.14-d.ts} +51 -5
- package/types/index.d.ts +6 -6
- package/types/{mobile-1.136.2-d.ts → mobile-1.136.14-d.ts} +71 -5
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.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.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +2 -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.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -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 +1 -1
- package/types/sap.ui.layout.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 +1 -1
- 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.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.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/types/{sap.ui.commons.d.ts → commons-1.136.14-d.ts} +0 -0
- /package/types/{sap.ui.dt.d.ts → dt-1.136.14-d.ts} +0 -0
- /package/types/{sap.tnt.d.ts → tnt-1.136.14-d.ts} +0 -0
- /package/types/{sap.ui.ux3.d.ts → ux3-1.136.14-d.ts} +0 -0
package/package.json
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.136.
|
|
282
|
+
// For Library Version: 1.136.14
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -11460,7 +11460,11 @@ declare namespace sap {
|
|
|
11460
11460
|
/**
|
|
11461
11461
|
* Qualified name of the type to retrieve
|
|
11462
11462
|
*/
|
|
11463
|
-
sTypeName: string
|
|
11463
|
+
sTypeName: string,
|
|
11464
|
+
/**
|
|
11465
|
+
* Metadata of the property
|
|
11466
|
+
*/
|
|
11467
|
+
oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
|
|
11464
11468
|
): sap.ui.base.DataType | undefined;
|
|
11465
11469
|
/**
|
|
11466
11470
|
* Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
|
|
@@ -54883,6 +54887,43 @@ declare namespace sap {
|
|
|
54883
54887
|
*/
|
|
54884
54888
|
mParameters?: object
|
|
54885
54889
|
);
|
|
54890
|
+
|
|
54891
|
+
/**
|
|
54892
|
+
* Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
|
|
54893
|
+
* it with the information contained in `oClassInfo`.
|
|
54894
|
+
*
|
|
54895
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
|
|
54896
|
+
*
|
|
54897
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54898
|
+
*
|
|
54899
|
+
* @returns Created class / constructor function
|
|
54900
|
+
*/
|
|
54901
|
+
static extend<T extends Record<string, unknown>>(
|
|
54902
|
+
/**
|
|
54903
|
+
* Name of the class being created
|
|
54904
|
+
*/
|
|
54905
|
+
sClassName: string,
|
|
54906
|
+
/**
|
|
54907
|
+
* Object literal with information about the class
|
|
54908
|
+
*/
|
|
54909
|
+
oClassInfo?: sap.ClassInfo<
|
|
54910
|
+
T,
|
|
54911
|
+
sap.ui.model.json.JSONPropertyBinding
|
|
54912
|
+
>,
|
|
54913
|
+
/**
|
|
54914
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
54915
|
+
* used by this class
|
|
54916
|
+
*/
|
|
54917
|
+
FNMetaImpl?: Function
|
|
54918
|
+
): Function;
|
|
54919
|
+
/**
|
|
54920
|
+
* Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
|
|
54921
|
+
*
|
|
54922
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
54923
|
+
*
|
|
54924
|
+
* @returns Metadata object describing this class
|
|
54925
|
+
*/
|
|
54926
|
+
static getMetadata(): sap.ui.base.Metadata;
|
|
54886
54927
|
}
|
|
54887
54928
|
/**
|
|
54888
54929
|
* Tree binding implementation for JSON format.
|
|
@@ -58652,6 +58693,10 @@ declare namespace sap {
|
|
|
58652
58693
|
* A valid cache key
|
|
58653
58694
|
*/
|
|
58654
58695
|
cacheKey?: string;
|
|
58696
|
+
/**
|
|
58697
|
+
* If set to `true`, the user credentials are included in a cross-origin request
|
|
58698
|
+
*/
|
|
58699
|
+
withCredentials?: boolean;
|
|
58655
58700
|
}
|
|
58656
58701
|
);
|
|
58657
58702
|
/**
|
|
@@ -64269,7 +64314,8 @@ declare namespace sap {
|
|
|
64269
64314
|
* Since 1.82.0 absolute paths are supported. Absolute paths must start with the entity container (example
|
|
64270
64315
|
* "/com.sap.gateway.default.iwbep.tea_busi.v0001.Container/TEAMS") of the service. All (navigation) properties
|
|
64271
64316
|
* in the complete model matching such an absolute path are updated. Since 1.85.0, "14.4.11 Expression edm:String"
|
|
64272
|
-
* is accepted as well.
|
|
64317
|
+
* is accepted as well. Since 1.145.0, you can use `null` values (and `{$Null : null}`) as synonyms for
|
|
64318
|
+
* empty navigation property paths.
|
|
64273
64319
|
*
|
|
64274
64320
|
* Since 1.108.8, a property path matching the "com.sap.vocabularies.Common.v1.Messages" annotation of a
|
|
64275
64321
|
* list binding's entity type is treated specially for a row context of a list binding: It is loaded even
|
|
@@ -85905,11 +85951,11 @@ declare namespace sap {
|
|
|
85905
85951
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
85906
85952
|
* `waitFor` statements.
|
|
85907
85953
|
*/
|
|
85908
|
-
actions?: Record<string,
|
|
85954
|
+
actions?: Record<string, Function> | Function;
|
|
85909
85955
|
/**
|
|
85910
85956
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
85911
85957
|
*/
|
|
85912
|
-
assertions?: Record<string,
|
|
85958
|
+
assertions?: Record<string, Function> | Function;
|
|
85913
85959
|
};
|
|
85914
85960
|
}
|
|
85915
85961
|
/**
|
package/types/index.d.ts
CHANGED
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
/// <reference path="./sap.zen.dsh.d.ts"/>
|
|
18
18
|
/// <reference path="./sap.zen.commons.d.ts"/>
|
|
19
19
|
/// <reference path="./sap.sac.df.d.ts"/>
|
|
20
|
-
/// <reference path="./
|
|
20
|
+
/// <reference path="./commons-1.136.14-d.ts"/>
|
|
21
21
|
/// <reference path="./sap.ui.comp.d.ts"/>
|
|
22
|
-
/// <reference path="./core-1.136.
|
|
23
|
-
/// <reference path="./
|
|
22
|
+
/// <reference path="./core-1.136.14-d.ts"/>
|
|
23
|
+
/// <reference path="./dt-1.136.14-d.ts"/>
|
|
24
24
|
/// <reference path="./sap.ui.export.d.ts"/>
|
|
25
25
|
/// <reference path="./sap.f.d.ts"/>
|
|
26
26
|
/// <reference path="./sap.ui.fl.d.ts"/>
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
/// <reference path="./sap.ui.layout.d.ts"/>
|
|
34
34
|
/// <reference path="./sap.makit.d.ts"/>
|
|
35
35
|
/// <reference path="./mdc-1.136.9-d.ts"/>
|
|
36
|
-
/// <reference path="./mobile-1.136.
|
|
36
|
+
/// <reference path="./mobile-1.136.14-d.ts"/>
|
|
37
37
|
/// <reference path="./sap.me.d.ts"/>
|
|
38
38
|
/// <reference path="./sap.ndc.d.ts"/>
|
|
39
39
|
/// <reference path="./sap.ovp.d.ts"/>
|
|
@@ -67,12 +67,12 @@
|
|
|
67
67
|
/// <reference path="./sap.ui.support.d.ts"/>
|
|
68
68
|
/// <reference path="./sap.ui.table.d.ts"/>
|
|
69
69
|
/// <reference path="./sap.ui.testrecorder.d.ts"/>
|
|
70
|
-
/// <reference path="./
|
|
70
|
+
/// <reference path="./tnt-1.136.14-d.ts"/>
|
|
71
71
|
/// <reference path="./sap.ca.ui.d.ts"/>
|
|
72
72
|
/// <reference path="./sap.ui.unified.d.ts"/>
|
|
73
73
|
/// <reference path="./sap.ushell.d.ts"/>
|
|
74
74
|
/// <reference path="./sap.ushell_abap.d.ts"/>
|
|
75
|
-
/// <reference path="./
|
|
75
|
+
/// <reference path="./ux3-1.136.14-d.ts"/>
|
|
76
76
|
/// <reference path="./sap.uxap.d.ts"/>
|
|
77
77
|
/// <reference path="./sap.ui.vbm.d.ts"/>
|
|
78
78
|
/// <reference path="./sap.viz.d.ts"/>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.136.
|
|
1
|
+
// For Library Version: 1.136.14
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -2489,7 +2489,16 @@ declare namespace sap {
|
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Escape handler for sap.m.Dialog control.
|
|
2491
2491
|
*/
|
|
2492
|
-
type EscapeHandler = (oHandlers:
|
|
2492
|
+
type EscapeHandler = (oHandlers: {
|
|
2493
|
+
/**
|
|
2494
|
+
* Call this function if the dialog should be closed.
|
|
2495
|
+
*/
|
|
2496
|
+
resolve: () => void;
|
|
2497
|
+
/**
|
|
2498
|
+
* Call this function if the dialog should not be closed.
|
|
2499
|
+
*/
|
|
2500
|
+
reject: () => void;
|
|
2501
|
+
}) => void;
|
|
2493
2502
|
}
|
|
2494
2503
|
|
|
2495
2504
|
namespace MessageBox {
|
|
@@ -37419,6 +37428,11 @@ declare namespace sap {
|
|
|
37419
37428
|
* Optionally, this property can also be set to a data URI path or a blob URL in all major web browsers
|
|
37420
37429
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
37421
37430
|
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
37431
|
+
*
|
|
37432
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
37433
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
37434
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
37435
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
37422
37436
|
*/
|
|
37423
37437
|
source?:
|
|
37424
37438
|
| sap.ui.core.URI
|
|
@@ -37524,6 +37538,12 @@ declare namespace sap {
|
|
|
37524
37538
|
* configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
|
|
37525
37539
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
37526
37540
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
37541
|
+
*
|
|
37542
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
37543
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
37544
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
37545
|
+
*
|
|
37546
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
37527
37547
|
*/
|
|
37528
37548
|
sourceValidationFailed?: (oEvent: sap.ui.base.Event) => void;
|
|
37529
37549
|
}
|
|
@@ -47397,6 +47417,8 @@ declare namespace sap {
|
|
|
47397
47417
|
|
|
47398
47418
|
/**
|
|
47399
47419
|
* Parameters of the PDFViewer#sourceValidationFailed event.
|
|
47420
|
+
*
|
|
47421
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
47400
47422
|
*/
|
|
47401
47423
|
interface PDFViewer$SourceValidationFailedEventParameters {}
|
|
47402
47424
|
|
|
@@ -48355,6 +48377,11 @@ declare namespace sap {
|
|
|
48355
48377
|
* All appointments with changed selected state.
|
|
48356
48378
|
*/
|
|
48357
48379
|
appointments?: sap.ui.unified.CalendarAppointment[];
|
|
48380
|
+
|
|
48381
|
+
/**
|
|
48382
|
+
* The original browser event.
|
|
48383
|
+
*/
|
|
48384
|
+
originalEvent?: object;
|
|
48358
48385
|
}
|
|
48359
48386
|
|
|
48360
48387
|
/**
|
|
@@ -48370,6 +48397,11 @@ declare namespace sap {
|
|
|
48370
48397
|
* The end date as a UI5Date or JavaScript Date object of the focused grid cell.
|
|
48371
48398
|
*/
|
|
48372
48399
|
endDate?: object;
|
|
48400
|
+
|
|
48401
|
+
/**
|
|
48402
|
+
* The original browser event.
|
|
48403
|
+
*/
|
|
48404
|
+
originalEvent?: object;
|
|
48373
48405
|
}
|
|
48374
48406
|
|
|
48375
48407
|
/**
|
|
@@ -51741,8 +51773,8 @@ declare namespace sap {
|
|
|
51741
51773
|
* sap.m.MessageToast.show("This message should appear in the message toast", {
|
|
51742
51774
|
* duration: 3000, // default
|
|
51743
51775
|
* width: "15em", // default
|
|
51744
|
-
* my: "
|
|
51745
|
-
* at: "
|
|
51776
|
+
* my: "CenterBottom", // default
|
|
51777
|
+
* at: "CenterBottom", // default
|
|
51746
51778
|
* of: window, // default
|
|
51747
51779
|
* offset: "0 0", // default
|
|
51748
51780
|
* collision: "fit fit", // default
|
|
@@ -114941,6 +114973,11 @@ declare namespace sap {
|
|
|
114941
114973
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
114942
114974
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
114943
114975
|
*
|
|
114976
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
114977
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
114978
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
114979
|
+
*
|
|
114980
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
114944
114981
|
*
|
|
114945
114982
|
* @returns Reference to `this` in order to allow method chaining
|
|
114946
114983
|
*/
|
|
@@ -114971,6 +115008,11 @@ declare namespace sap {
|
|
|
114971
115008
|
* happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
|
|
114972
115009
|
* when this event is fired, call the preventDefault() method inside the event handler.
|
|
114973
115010
|
*
|
|
115011
|
+
* Modern browsers implement strict policies for validating external resources loaded within an iframe.
|
|
115012
|
+
* PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
|
|
115013
|
+
* cannot be performed the sourceValidationFailed event cannot be triggered.
|
|
115014
|
+
*
|
|
115015
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
114974
115016
|
*
|
|
114975
115017
|
* @returns Reference to `this` in order to allow method chaining
|
|
114976
115018
|
*/
|
|
@@ -115040,6 +115082,7 @@ declare namespace sap {
|
|
|
115040
115082
|
*
|
|
115041
115083
|
* The passed function and listener object must match the ones used for event registration.
|
|
115042
115084
|
*
|
|
115085
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
115043
115086
|
*
|
|
115044
115087
|
* @returns Reference to `this` in order to allow method chaining
|
|
115045
115088
|
*/
|
|
@@ -115086,6 +115129,7 @@ declare namespace sap {
|
|
|
115086
115129
|
/**
|
|
115087
115130
|
* Fires event {@link #event:sourceValidationFailed sourceValidationFailed} to attached listeners.
|
|
115088
115131
|
*
|
|
115132
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
115089
115133
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
115090
115134
|
*
|
|
115091
115135
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -115209,6 +115253,11 @@ declare namespace sap {
|
|
|
115209
115253
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
115210
115254
|
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
115211
115255
|
*
|
|
115256
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
115257
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
115258
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
115259
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
115260
|
+
*
|
|
115212
115261
|
*
|
|
115213
115262
|
* @returns Value of property `source`
|
|
115214
115263
|
*/
|
|
@@ -115459,6 +115508,11 @@ declare namespace sap {
|
|
|
115459
115508
|
* except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
|
|
115460
115509
|
* For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
115461
115510
|
*
|
|
115511
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
115512
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
115513
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
115514
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
115515
|
+
*
|
|
115462
115516
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
115463
115517
|
*
|
|
115464
115518
|
*
|
|
@@ -127309,11 +127363,13 @@ declare namespace sap {
|
|
|
127309
127363
|
implements
|
|
127310
127364
|
sap.ui.core.IFormContent,
|
|
127311
127365
|
sap.f.IShellBar,
|
|
127312
|
-
sap.m.IToolbarInteractiveControl
|
|
127366
|
+
sap.m.IToolbarInteractiveControl,
|
|
127367
|
+
sap.m.IOverflowToolbarContent
|
|
127313
127368
|
{
|
|
127314
127369
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
127315
127370
|
__implements__sap_f_IShellBar: boolean;
|
|
127316
127371
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
127372
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
127317
127373
|
/**
|
|
127318
127374
|
* Constructor for a new SearchField.
|
|
127319
127375
|
*
|
|
@@ -127816,6 +127872,14 @@ declare namespace sap {
|
|
|
127816
127872
|
* @returns Value of property `maxLength`
|
|
127817
127873
|
*/
|
|
127818
127874
|
getMaxLength(): int;
|
|
127875
|
+
/**
|
|
127876
|
+
* Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
|
|
127877
|
+
* interface.
|
|
127878
|
+
*
|
|
127879
|
+
*
|
|
127880
|
+
* @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
|
|
127881
|
+
*/
|
|
127882
|
+
getOverflowToolbarConfig(): sap.m.OverflowToolbarConfig;
|
|
127819
127883
|
/**
|
|
127820
127884
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
127821
127885
|
*
|
|
@@ -168864,6 +168928,8 @@ declare namespace sap {
|
|
|
168864
168928
|
|
|
168865
168929
|
/**
|
|
168866
168930
|
* Event object of the PDFViewer#sourceValidationFailed event.
|
|
168931
|
+
*
|
|
168932
|
+
* @deprecated As of version 1.136.9. with no replacement.
|
|
168867
168933
|
*/
|
|
168868
168934
|
type PDFViewer$SourceValidationFailedEvent = sap.ui.base.Event<
|
|
168869
168935
|
PDFViewer$SourceValidationFailedEventParameters,
|
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.ina.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.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.136.
|
|
1
|
+
// For Library Version: 1.136.15
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -362,6 +362,7 @@ declare namespace sap {
|
|
|
362
362
|
* {
|
|
363
363
|
* "enableGS1Header": true, //If set to true, add the symbology identifier (GS1 specification 5.4.3.7. and 5.4.6.4.) as prefix into the result text.
|
|
364
364
|
* "deviceId": "string" // The specific camera id to scan the Barcode. If set to "", Barcode Scanner will use default camera. This option is not working for iOS devices since do not support to get all the cameras.
|
|
365
|
+
* "textMode": "string" // Defines how the decoded byte content of a barcode should be transcoded to text in ZXingcpp. Value can be "Plain", "ECI", "HRI", "Escaped", "Hex", or "HexECI". Default value is "HRI".
|
|
365
366
|
* "multiScan": {
|
|
366
367
|
* "enabled": false, // If set to true, will support scan multi barcodes, and the max number of the barcodes in each scanning is 10. Default value is false. Only working for ZXingCPP.
|
|
367
368
|
* "showPauseButton": false, // If set to true, will show a button so that can pause/restart the scan in the scan dialog.
|
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|