@sapui5/ts-types-esm 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.
Files changed (50) hide show
  1. package/package.json +1 -1
  2. package/types/{core-1.136.2-esm-d.ts → core-1.136.14-esm-d.ts} +50 -5
  3. package/types/index.d.ts +6 -6
  4. package/types/{mobile-1.136.2-esm-d.ts → mobile-1.136.14-esm-d.ts} +79 -6
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +1 -1
  7. package/types/sap.f.d.ts +1 -1
  8. package/types/sap.fe.base.d.ts +1 -1
  9. package/types/sap.fe.controls.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +1 -1
  11. package/types/sap.fe.ina.d.ts +1 -1
  12. package/types/sap.fe.macros.d.ts +1 -1
  13. package/types/sap.fe.navigation.d.ts +1 -1
  14. package/types/sap.fe.placeholder.d.ts +1 -1
  15. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  16. package/types/sap.fe.templates.d.ts +1 -1
  17. package/types/sap.fe.test.d.ts +1 -1
  18. package/types/sap.fe.tools.d.ts +1 -1
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +2 -1
  22. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  23. package/types/sap.suite.ui.microchart.d.ts +1 -1
  24. package/types/sap.ui.codeeditor.d.ts +1 -1
  25. package/types/sap.ui.comp.d.ts +1 -1
  26. package/types/sap.ui.export.d.ts +1 -1
  27. package/types/sap.ui.fl.d.ts +1 -1
  28. package/types/sap.ui.generic.app.d.ts +1 -1
  29. package/types/sap.ui.generic.template.d.ts +1 -1
  30. package/types/sap.ui.integration.d.ts +1 -1
  31. package/types/sap.ui.layout.d.ts +1 -1
  32. package/types/sap.ui.richtexteditor.d.ts +1 -1
  33. package/types/sap.ui.rta.d.ts +1 -1
  34. package/types/sap.ui.suite.d.ts +1 -1
  35. package/types/sap.ui.support.d.ts +1 -1
  36. package/types/sap.ui.table.d.ts +1 -1
  37. package/types/sap.ui.testrecorder.d.ts +1 -1
  38. package/types/sap.ui.unified.d.ts +1 -1
  39. package/types/sap.ui.webc.common.d.ts +1 -1
  40. package/types/sap.ui.webc.fiori.d.ts +1 -1
  41. package/types/sap.ui.webc.main.d.ts +1 -1
  42. package/types/sap.uiext.inbox.d.ts +1 -1
  43. package/types/sap.ushell.d.ts +1 -1
  44. package/types/sap.ushell_abap.d.ts +1 -1
  45. package/types/sap.uxap.d.ts +1 -1
  46. package/types/sap.viz.d.ts +1 -1
  47. /package/types/{sap.ui.commons.d.ts → commons-1.136.14-esm-d.ts} +0 -0
  48. /package/types/{sap.ui.dt.d.ts → dt-1.136.14-esm-d.ts} +0 -0
  49. /package/types/{sap.tnt.d.ts → tnt-1.136.14-esm-d.ts} +0 -0
  50. /package/types/{sap.ui.ux3.d.ts → ux3-1.136.14-esm-d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types-esm",
3
- "version": "1.136.16",
3
+ "version": "1.136.17",
4
4
  "description": "SAPUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -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.2
282
+ // For Library Version: 1.136.14
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -11051,7 +11051,11 @@ declare module "sap/ui/base/DataType" {
11051
11051
  /**
11052
11052
  * Qualified name of the type to retrieve
11053
11053
  */
11054
- sTypeName: string
11054
+ sTypeName: string,
11055
+ /**
11056
+ * Metadata of the property
11057
+ */
11058
+ oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
11055
11059
  ): DataType | undefined;
11056
11060
  /**
11057
11061
  * Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
@@ -59684,6 +59688,8 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
59684
59688
 
59685
59689
  import Context from "sap/ui/model/Context";
59686
59690
 
59691
+ import Metadata from "sap/ui/base/Metadata";
59692
+
59687
59693
  /**
59688
59694
  * Property binding implementation for JSON format.
59689
59695
  *
@@ -59717,6 +59723,40 @@ declare module "sap/ui/model/json/JSONPropertyBinding" {
59717
59723
  */
59718
59724
  mParameters?: object
59719
59725
  );
59726
+
59727
+ /**
59728
+ * Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
59729
+ * it with the information contained in `oClassInfo`.
59730
+ *
59731
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
59732
+ *
59733
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
59734
+ *
59735
+ * @returns Created class / constructor function
59736
+ */
59737
+ static extend<T extends Record<string, unknown>>(
59738
+ /**
59739
+ * Name of the class being created
59740
+ */
59741
+ sClassName: string,
59742
+ /**
59743
+ * Object literal with information about the class
59744
+ */
59745
+ oClassInfo?: sap.ClassInfo<T, JSONPropertyBinding>,
59746
+ /**
59747
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
59748
+ * used by this class
59749
+ */
59750
+ FNMetaImpl?: Function
59751
+ ): Function;
59752
+ /**
59753
+ * Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
59754
+ *
59755
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
59756
+ *
59757
+ * @returns Metadata object describing this class
59758
+ */
59759
+ static getMetadata(): Metadata;
59720
59760
  }
59721
59761
  }
59722
59762
 
@@ -69340,6 +69380,10 @@ declare module "sap/ui/model/odata/v2/ODataAnnotations" {
69340
69380
  * A valid cache key
69341
69381
  */
69342
69382
  cacheKey?: string;
69383
+ /**
69384
+ * If set to `true`, the user credentials are included in a cross-origin request
69385
+ */
69386
+ withCredentials?: boolean;
69343
69387
  }
69344
69388
  );
69345
69389
  /**
@@ -72057,7 +72101,8 @@ declare module "sap/ui/model/odata/v4/Context" {
72057
72101
  * Since 1.82.0 absolute paths are supported. Absolute paths must start with the entity container (example
72058
72102
  * "/com.sap.gateway.default.iwbep.tea_busi.v0001.Container/TEAMS") of the service. All (navigation) properties
72059
72103
  * in the complete model matching such an absolute path are updated. Since 1.85.0, "14.4.11 Expression edm:String"
72060
- * is accepted as well.
72104
+ * is accepted as well. Since 1.145.0, you can use `null` values (and `{$Null : null}`) as synonyms for
72105
+ * empty navigation property paths.
72061
72106
  *
72062
72107
  * Since 1.108.8, a property path matching the "com.sap.vocabularies.Common.v1.Messages" annotation of a
72063
72108
  * list binding's entity type is treated specially for a row context of a list binding: It is loaded even
@@ -84536,11 +84581,11 @@ declare module "sap/ui/test/Opa5" {
84536
84581
  * whether a function is used as arrangement or action. Each function typically contains one or multiple
84537
84582
  * `waitFor` statements.
84538
84583
  */
84539
- actions?: Record<string, () => void> | Function;
84584
+ actions?: Record<string, Function> | Function;
84540
84585
  /**
84541
84586
  * A map or a class of functions that can be used as assertions in Opa tests.
84542
84587
  */
84543
- assertions?: Record<string, () => void> | Function;
84588
+ assertions?: Record<string, Function> | Function;
84544
84589
  };
84545
84590
  }
84546
84591
 
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="./sap.ui.commons.d.ts"/>
20
+ /// <reference path="./commons-1.136.14-esm-d.ts"/>
21
21
  /// <reference path="./sap.ui.comp.d.ts"/>
22
- /// <reference path="./core-1.136.2-esm-d.ts"/>
23
- /// <reference path="./sap.ui.dt.d.ts"/>
22
+ /// <reference path="./core-1.136.14-esm-d.ts"/>
23
+ /// <reference path="./dt-1.136.14-esm-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-esm-d.ts"/>
36
- /// <reference path="./mobile-1.136.2-esm-d.ts"/>
36
+ /// <reference path="./mobile-1.136.14-esm-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="./sap.tnt.d.ts"/>
70
+ /// <reference path="./tnt-1.136.14-esm-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="./sap.ui.ux3.d.ts"/>
75
+ /// <reference path="./ux3-1.136.14-esm-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.2
1
+ // For Library Version: 1.136.14
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -23508,7 +23508,16 @@ declare module "sap/m/Dialog" {
23508
23508
  /**
23509
23509
  * Escape handler for sap.m.Dialog control.
23510
23510
  */
23511
- export type EscapeHandler = (oHandlers: object) => void;
23511
+ export type EscapeHandler = (oHandlers: {
23512
+ /**
23513
+ * Call this function if the dialog should be closed.
23514
+ */
23515
+ resolve: () => void;
23516
+ /**
23517
+ * Call this function if the dialog should not be closed.
23518
+ */
23519
+ reject: () => void;
23520
+ }) => void;
23512
23521
 
23513
23522
  /**
23514
23523
  * Describes the settings that can be provided to the Dialog constructor.
@@ -61430,8 +61439,8 @@ declare module "sap/m/MessageToast" {
61430
61439
  * sap.m.MessageToast.show("This message should appear in the message toast", {
61431
61440
  * duration: 3000, // default
61432
61441
  * width: "15em", // default
61433
- * my: "center bottom", // default
61434
- * at: "center bottom", // default
61442
+ * my: "CenterBottom", // default
61443
+ * at: "CenterBottom", // default
61435
61444
  * of: window, // default
61436
61445
  * offset: "0 0", // default
61437
61446
  * collision: "fit fit", // default
@@ -87593,6 +87602,11 @@ declare module "sap/m/PDFViewer" {
87593
87602
  * happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
87594
87603
  * when this event is fired, call the preventDefault() method inside the event handler.
87595
87604
  *
87605
+ * Modern browsers implement strict policies for validating external resources loaded within an iframe.
87606
+ * PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
87607
+ * cannot be performed the sourceValidationFailed event cannot be triggered.
87608
+ *
87609
+ * @deprecated As of version 1.136.9. with no replacement.
87596
87610
  *
87597
87611
  * @returns Reference to `this` in order to allow method chaining
87598
87612
  */
@@ -87623,6 +87637,11 @@ declare module "sap/m/PDFViewer" {
87623
87637
  * happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
87624
87638
  * when this event is fired, call the preventDefault() method inside the event handler.
87625
87639
  *
87640
+ * Modern browsers implement strict policies for validating external resources loaded within an iframe.
87641
+ * PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
87642
+ * cannot be performed the sourceValidationFailed event cannot be triggered.
87643
+ *
87644
+ * @deprecated As of version 1.136.9. with no replacement.
87626
87645
  *
87627
87646
  * @returns Reference to `this` in order to allow method chaining
87628
87647
  */
@@ -87692,6 +87711,7 @@ declare module "sap/m/PDFViewer" {
87692
87711
  *
87693
87712
  * The passed function and listener object must match the ones used for event registration.
87694
87713
  *
87714
+ * @deprecated As of version 1.136.9. with no replacement.
87695
87715
  *
87696
87716
  * @returns Reference to `this` in order to allow method chaining
87697
87717
  */
@@ -87738,6 +87758,7 @@ declare module "sap/m/PDFViewer" {
87738
87758
  /**
87739
87759
  * Fires event {@link #event:sourceValidationFailed sourceValidationFailed} to attached listeners.
87740
87760
  *
87761
+ * @deprecated As of version 1.136.9. with no replacement.
87741
87762
  * @ui5-protected Do not call from applications (only from related classes in the framework)
87742
87763
  *
87743
87764
  * @returns Reference to `this` in order to allow method chaining
@@ -87861,6 +87882,11 @@ declare module "sap/m/PDFViewer" {
87861
87882
  * except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
87862
87883
  * For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
87863
87884
  *
87885
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
87886
+ * GET request to ensure it exists and is accessible. This validation:
87887
+ * - Prevents loading invalid or non-existent PDF files
87888
+ * - If validation fails, error content is displayed instead of attempting PDF load
87889
+ *
87864
87890
  *
87865
87891
  * @returns Value of property `source`
87866
87892
  */
@@ -88111,6 +88137,11 @@ declare module "sap/m/PDFViewer" {
88111
88137
  * except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
88112
88138
  * For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
88113
88139
  *
88140
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
88141
+ * GET request to ensure it exists and is accessible. This validation:
88142
+ * - Prevents loading invalid or non-existent PDF files
88143
+ * - If validation fails, error content is displayed instead of attempting PDF load
88144
+ *
88114
88145
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
88115
88146
  *
88116
88147
  *
@@ -88179,6 +88210,11 @@ declare module "sap/m/PDFViewer" {
88179
88210
  * Optionally, this property can also be set to a data URI path or a blob URL in all major web browsers
88180
88211
  * except Internet Explorer and Microsoft Edge, provided that this data URI or blob URL is allowed in advance.
88181
88212
  * For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
88213
+ *
88214
+ * Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
88215
+ * GET request to ensure it exists and is accessible. This validation:
88216
+ * - Prevents loading invalid or non-existent PDF files
88217
+ * - If validation fails, error content is displayed instead of attempting PDF load
88182
88218
  */
88183
88219
  source?: URI | PropertyBindingInfo | `{${string}}`;
88184
88220
 
@@ -88269,6 +88305,12 @@ declare module "sap/m/PDFViewer" {
88269
88305
  * configuration of the Mozilla Firefox browser may not allow checking the loaded content. This may also
88270
88306
  * happen when the source PDF file is stored in a different domain. If you want no error message to be displayed
88271
88307
  * when this event is fired, call the preventDefault() method inside the event handler.
88308
+ *
88309
+ * Modern browsers implement strict policies for validating external resources loaded within an iframe.
88310
+ * PDFViewer cannot determine whether the resource inside the iframe is a valid PDF by itself. As the validation
88311
+ * cannot be performed the sourceValidationFailed event cannot be triggered.
88312
+ *
88313
+ * @deprecated As of version 1.136.9. with no replacement.
88272
88314
  */
88273
88315
  sourceValidationFailed?: (oEvent: Event) => void;
88274
88316
  }
@@ -88306,11 +88348,15 @@ declare module "sap/m/PDFViewer" {
88306
88348
 
88307
88349
  /**
88308
88350
  * Parameters of the PDFViewer#sourceValidationFailed event.
88351
+ *
88352
+ * @deprecated As of version 1.136.9. with no replacement.
88309
88353
  */
88310
88354
  export interface PDFViewer$SourceValidationFailedEventParameters {}
88311
88355
 
88312
88356
  /**
88313
88357
  * Event object of the PDFViewer#sourceValidationFailed event.
88358
+ *
88359
+ * @deprecated As of version 1.136.9. with no replacement.
88314
88360
  */
88315
88361
  export type PDFViewer$SourceValidationFailedEvent = Event<
88316
88362
  PDFViewer$SourceValidationFailedEventParameters,
@@ -108801,7 +108847,11 @@ declare module "sap/m/SearchField" {
108801
108847
 
108802
108848
  import { IShellBar } from "sap/f/library";
108803
108849
 
108804
- import { IToolbarInteractiveControl } from "sap/m/library";
108850
+ import {
108851
+ IToolbarInteractiveControl,
108852
+ IOverflowToolbarContent,
108853
+ OverflowToolbarConfig,
108854
+ } from "sap/m/library";
108805
108855
 
108806
108856
  import SuggestionItem from "sap/m/SuggestionItem";
108807
108857
 
@@ -108832,11 +108882,16 @@ declare module "sap/m/SearchField" {
108832
108882
  */
108833
108883
  export default class SearchField
108834
108884
  extends Control
108835
- implements IFormContent, IShellBar, IToolbarInteractiveControl
108885
+ implements
108886
+ IFormContent,
108887
+ IShellBar,
108888
+ IToolbarInteractiveControl,
108889
+ IOverflowToolbarContent
108836
108890
  {
108837
108891
  __implements__sap_ui_core_IFormContent: boolean;
108838
108892
  __implements__sap_f_IShellBar: boolean;
108839
108893
  __implements__sap_m_IToolbarInteractiveControl: boolean;
108894
+ __implements__sap_m_IOverflowToolbarContent: boolean;
108840
108895
  /**
108841
108896
  * Constructor for a new SearchField.
108842
108897
  *
@@ -109339,6 +109394,14 @@ declare module "sap/m/SearchField" {
109339
109394
  * @returns Value of property `maxLength`
109340
109395
  */
109341
109396
  getMaxLength(): int;
109397
+ /**
109398
+ * Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
109399
+ * interface.
109400
+ *
109401
+ *
109402
+ * @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
109403
+ */
109404
+ getOverflowToolbarConfig(): OverflowToolbarConfig;
109342
109405
  /**
109343
109406
  * Gets current value of property {@link #getPlaceholder placeholder}.
109344
109407
  *
@@ -128933,6 +128996,11 @@ declare module "sap/m/SinglePlanningCalendar" {
128933
128996
  * All appointments with changed selected state.
128934
128997
  */
128935
128998
  appointments?: CalendarAppointment[];
128999
+
129000
+ /**
129001
+ * The original browser event.
129002
+ */
129003
+ originalEvent?: object;
128936
129004
  }
128937
129005
 
128938
129006
  /**
@@ -128956,6 +129024,11 @@ declare module "sap/m/SinglePlanningCalendar" {
128956
129024
  * The end date as a UI5Date or JavaScript Date object of the focused grid cell.
128957
129025
  */
128958
129026
  endDate?: object;
129027
+
129028
+ /**
129029
+ * The original browser event.
129030
+ */
129031
+ originalEvent?: object;
128959
129032
  }
128960
129033
 
128961
129034
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.8
1
+ // For Library Version: 1.136.10
2
2
 
3
3
  declare module "sap/esh/search/ui/SearchCompositeControl" {
4
4
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/base/BuildingBlockBase" {
4
4
  import { default as Control, $ControlSettings } from "sap/ui/core/Control";
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/core/AppComponent" {
4
4
  import {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/macros/Chart" {
4
4
  import {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/navigation/library" {
4
4
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/plugins/managecache/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/templates/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/fe/test/library" {}
4
4
 
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/makit/library" {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/me/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ndc/library" {}
4
4
 
@@ -231,6 +231,7 @@ declare module "sap/ndc/BarcodeScanner" {
231
231
  * {
232
232
  * "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.
233
233
  * "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.
234
+ * "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".
234
235
  * "multiScan": {
235
236
  * "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.
236
237
  * "showPauseButton": false, // If set to true, will show a button so that can pause/restart the scan in the scan dialog.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.15
1
+ // For Library Version: 1.136.16
2
2
 
3
3
  declare module "sap/suite/ui/generic/template/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/suite/ui/microchart/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/comp/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/export/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/generic/app/library" {
4
4
  export namespace navigation {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.2
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/richtexteditor/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/uiext/inbox/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare module "sap/ushell/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.16
1
+ // For Library Version: 1.136.17
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.14
1
+ // For Library Version: 1.136.15
2
2
 
3
3
  declare module "sap/viz/library" {
4
4
  export namespace ui5 {
File without changes
File without changes