@sapui5/ts-types 1.84.18 → 1.84.22

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 (44) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.chart.d.ts +1 -1
  4. package/types/sap.f.d.ts +197 -1
  5. package/types/sap.fe.core.d.ts +1 -1
  6. package/types/sap.fe.macros.d.ts +1 -1
  7. package/types/sap.fe.plugins.d.ts +1 -1
  8. package/types/sap.fe.templates.d.ts +1 -1
  9. package/types/sap.fe.test.d.ts +1 -1
  10. package/types/sap.fe.tools.d.ts +1 -1
  11. package/types/sap.gantt.d.ts +1 -1
  12. package/types/sap.m.d.ts +50 -2
  13. package/types/sap.makit.d.ts +1 -1
  14. package/types/sap.me.d.ts +1 -1
  15. package/types/sap.ndc.d.ts +49 -29
  16. package/types/sap.ovp.d.ts +1 -1
  17. package/types/sap.suite.ui.commons.d.ts +1 -1
  18. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  19. package/types/sap.suite.ui.microchart.d.ts +1 -1
  20. package/types/sap.tnt.d.ts +31 -1
  21. package/types/sap.ui.codeeditor.d.ts +1 -1
  22. package/types/sap.ui.commons.d.ts +1 -1
  23. package/types/sap.ui.comp.d.ts +1 -1
  24. package/types/sap.ui.core.d.ts +13 -6
  25. package/types/sap.ui.dt.d.ts +1 -1
  26. package/types/sap.ui.export.d.ts +3 -3
  27. package/types/sap.ui.fl.d.ts +1 -1
  28. package/types/sap.ui.integration.d.ts +1 -1
  29. package/types/sap.ui.layout.d.ts +1 -1
  30. package/types/sap.ui.mdc.d.ts +1 -1
  31. package/types/sap.ui.richtexteditor.d.ts +1 -1
  32. package/types/sap.ui.rta.d.ts +1 -1
  33. package/types/sap.ui.suite.d.ts +1 -1
  34. package/types/sap.ui.support.d.ts +6 -6
  35. package/types/sap.ui.table.d.ts +1 -1
  36. package/types/sap.ui.testrecorder.d.ts +1 -1
  37. package/types/sap.ui.unified.d.ts +1 -1
  38. package/types/sap.ui.ux3.d.ts +1 -1
  39. package/types/sap.ui.vbm.d.ts +1 -1
  40. package/types/sap.ui.vk.d.ts +77 -4
  41. package/types/sap.uiext.inbox.d.ts +2 -1
  42. package/types/sap.ushell.d.ts +1 -1
  43. package/types/sap.uxap.d.ts +1 -1
  44. package/types/sap.viz.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types",
3
- "version": "1.84.18",
3
+ "version": "1.84.22",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.4
1
+ // For Library Version: 1.84.5
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -5723,6 +5723,15 @@ declare namespace sap {
5723
5723
  */
5724
5724
  endColumnPages?: sap.ui.core.Control[] | sap.ui.core.Control;
5725
5725
 
5726
+ /**
5727
+ * @SINCE 1.84.22
5728
+ *
5729
+ * Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
5730
+ *
5731
+ * If not set, no landmarks will be written. Note: This is a downported feature introduced in version 1.95.0.
5732
+ */
5733
+ landmarkInfo?: sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo;
5734
+
5726
5735
  /**
5727
5736
  * Sets the initial `Begin` column page, which is displayed on application launch.
5728
5737
  */
@@ -5739,6 +5748,33 @@ declare namespace sap {
5739
5748
  initialEndColumnPage?: sap.ui.core.Control | string;
5740
5749
  }
5741
5750
 
5751
+ interface $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
5752
+ extends sap.ui.core.$ElementSettings {
5753
+ /**
5754
+ * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
5755
+ * control.
5756
+ *
5757
+ * If not set, a predefined text is used.
5758
+ */
5759
+ firstColumnLabel?: string;
5760
+
5761
+ /**
5762
+ * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
5763
+ * control.
5764
+ *
5765
+ * If not set, a predefined text is used.
5766
+ */
5767
+ middleColumnLabel?: string;
5768
+
5769
+ /**
5770
+ * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
5771
+ * control.
5772
+ *
5773
+ * If not set, a predefined text is used.
5774
+ */
5775
+ lastColumnLabel?: string;
5776
+ }
5777
+
5742
5778
  interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
5743
5779
  /**
5744
5780
  * Defines the width of the control.
@@ -9002,6 +9038,12 @@ declare namespace sap {
9002
9038
  * Destroys all the endColumnPages in the aggregation {@link #getEndColumnPages endColumnPages}.
9003
9039
  */
9004
9040
  destroyEndColumnPages(): sap.f.FlexibleColumnLayout;
9041
+ /**
9042
+ * @SINCE 1.84.22
9043
+ *
9044
+ * Destroys the landmarkInfo in the aggregation {@link #getLandmarkInfo landmarkInfo}.
9045
+ */
9046
+ destroyLandmarkInfo(): sap.f.FlexibleColumnLayout;
9005
9047
  /**
9006
9048
  * Destroys all the midColumnPages in the aggregation {@link #getMidColumnPages midColumnPages}.
9007
9049
  */
@@ -9628,6 +9670,16 @@ declare namespace sap {
9628
9670
  * or `null`.
9629
9671
  */
9630
9672
  getInitialMidColumnPage(): sap.ui.core.ID;
9673
+ /**
9674
+ * @SINCE 1.84.22
9675
+ *
9676
+ * Gets content of aggregation {@link #getLandmarkInfo landmarkInfo}.
9677
+ *
9678
+ * Accessible landmark settings to be applied on the containers of the `sap.f.FlexibleColumnLayout` control.
9679
+ *
9680
+ * If not set, no landmarks will be written. Note: This is a downported feature introduced in version 1.95.0.
9681
+ */
9682
+ getLandmarkInfo(): sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo;
9631
9683
  /**
9632
9684
  * Gets current value of property {@link #getLayout layout}.
9633
9685
  *
@@ -9907,6 +9959,17 @@ declare namespace sap {
9907
9959
  */
9908
9960
  oInitialMidColumnPage: sap.ui.core.ID | sap.ui.core.Control
9909
9961
  ): sap.f.FlexibleColumnLayout;
9962
+ /**
9963
+ * @SINCE 1.84.22
9964
+ *
9965
+ * Sets the aggregated {@link #getLandmarkInfo landmarkInfo}.
9966
+ */
9967
+ setLandmarkInfo(
9968
+ /**
9969
+ * The landmarkInfo to set
9970
+ */
9971
+ oLandmarkInfo: sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo
9972
+ ): sap.f.FlexibleColumnLayout;
9910
9973
  /**
9911
9974
  * Sets a new value for property {@link #getLayout layout}.
9912
9975
  *
@@ -10410,6 +10473,137 @@ declare namespace sap {
10410
10473
  oTransitionParameters: object
10411
10474
  ): sap.f.FlexibleColumnLayout;
10412
10475
  }
10476
+ /**
10477
+ * @SINCE 1.95
10478
+ *
10479
+ * Settings for accessible landmarks which can be applied to the container elements of a `sap.f.FlexibleColumnLayout`
10480
+ * control. For example, these landmarks are used by assistive technologies (such as screen readers) to
10481
+ * provide a meaningful columns overview.
10482
+ */
10483
+ class FlexibleColumnLayoutAccessibleLandmarkInfo extends sap.ui.core
10484
+ .Element {
10485
+ /**
10486
+ * Constructor for a new `sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo` element.
10487
+ *
10488
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
10489
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
10490
+ * of the syntax of the settings object.
10491
+ */
10492
+ constructor(
10493
+ /**
10494
+ * ID for the new element, generated automatically if no ID is given
10495
+ */
10496
+ sId?: string,
10497
+ /**
10498
+ * Initial settings for the new element
10499
+ */
10500
+ mSettings?: $FlexibleColumnLayoutAccessibleLandmarkInfoSettings
10501
+ );
10502
+
10503
+ /**
10504
+ * Creates a new subclass of class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo with name `sClassName`
10505
+ * and enriches it with the information contained in `oClassInfo`.
10506
+ *
10507
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
10508
+ */
10509
+ // @ts-ignore
10510
+ static extend<T extends Record<string, unknown>>(
10511
+ /**
10512
+ * Name of the class being created
10513
+ */
10514
+ sClassName: string,
10515
+ /**
10516
+ * Object literal with information about the class
10517
+ */
10518
+ oClassInfo?: T &
10519
+ ThisType<T & sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo>,
10520
+ /**
10521
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
10522
+ * used by this class
10523
+ */
10524
+ FNMetaImpl?: Function
10525
+ ): Function;
10526
+ /**
10527
+ * Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
10528
+ *
10529
+ * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
10530
+ * control.
10531
+ *
10532
+ * If not set, a predefined text is used.
10533
+ */
10534
+ getFirstColumnLabel(): string;
10535
+ /**
10536
+ * Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
10537
+ *
10538
+ * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
10539
+ * control.
10540
+ *
10541
+ * If not set, a predefined text is used.
10542
+ */
10543
+ getLastColumnLabel(): string;
10544
+ /**
10545
+ * Returns a metadata object for class sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo.
10546
+ */
10547
+ // @ts-ignore
10548
+ static getMetadata(): sap.ui.core.ElementMetadata;
10549
+ /**
10550
+ * Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
10551
+ *
10552
+ * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
10553
+ * control.
10554
+ *
10555
+ * If not set, a predefined text is used.
10556
+ */
10557
+ getMiddleColumnLabel(): string;
10558
+ /**
10559
+ * Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
10560
+ *
10561
+ * Text that describes the landmark of the first column of the corresponding `sap.f.FlexibleColumnLayout`
10562
+ * control.
10563
+ *
10564
+ * If not set, a predefined text is used.
10565
+ *
10566
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10567
+ */
10568
+ setFirstColumnLabel(
10569
+ /**
10570
+ * New value for property `firstColumnLabel`
10571
+ */
10572
+ sFirstColumnLabel?: string
10573
+ ): sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo;
10574
+ /**
10575
+ * Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
10576
+ *
10577
+ * Text that describes the landmark of the last column of the corresponding `sap.f.FlexibleColumnLayout`
10578
+ * control.
10579
+ *
10580
+ * If not set, a predefined text is used.
10581
+ *
10582
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10583
+ */
10584
+ setLastColumnLabel(
10585
+ /**
10586
+ * New value for property `lastColumnLabel`
10587
+ */
10588
+ sLastColumnLabel?: string
10589
+ ): sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo;
10590
+ /**
10591
+ * Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
10592
+ *
10593
+ * Text that describes the landmark of the middle column of the corresponding `sap.f.FlexibleColumnLayout`
10594
+ * control.
10595
+ *
10596
+ * If not set, a predefined text is used.
10597
+ *
10598
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
10599
+ */
10600
+ setMiddleColumnLabel(
10601
+ /**
10602
+ * New value for property `middleColumnLabel`
10603
+ */
10604
+ sMiddleColumnLabel?: string
10605
+ ): sap.f.FlexibleColumnLayoutAccessibleLandmarkInfo;
10606
+ }
10413
10607
  /**
10414
10608
  * @SINCE 1.46.0
10415
10609
  *
@@ -14065,6 +14259,8 @@ declare namespace sap {
14065
14259
 
14066
14260
  "sap/f/FlexibleColumnLayout": undefined;
14067
14261
 
14262
+ "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo": undefined;
14263
+
14068
14264
  "sap/f/FlexibleColumnLayoutSemanticHelper": undefined;
14069
14265
 
14070
14266
  "sap/f/GridContainer": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.9
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.9
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.9
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.11
1
+ // For Library Version: 1.84.15
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -12183,6 +12183,14 @@ declare namespace sap {
12183
12183
  * Numeric value rendered by the control.
12184
12184
  */
12185
12185
  value?: sap.m.ObjectNumber;
12186
+
12187
+ /**
12188
+ * @SINCE 1.84.22
12189
+ *
12190
+ * Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy). Note:
12191
+ * This is a downported feature introduced in version 1.97.0.
12192
+ */
12193
+ ariaLabelledBy?: sap.ui.core.Control[] | string[];
12186
12194
  }
12187
12195
 
12188
12196
  interface $GenericTileSettings extends sap.ui.core.$ControlSettings {
@@ -37064,6 +37072,17 @@ declare namespace sap {
37064
37072
  mSettings?: $GenericTagSettings
37065
37073
  );
37066
37074
 
37075
+ /**
37076
+ * @SINCE 1.84.22
37077
+ *
37078
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
37079
+ */
37080
+ addAriaLabelledBy(
37081
+ /**
37082
+ * The ariaLabelledBy to add; if empty, nothing is inserted
37083
+ */
37084
+ vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
37085
+ ): sap.m.GenericTag;
37067
37086
  /**
37068
37087
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
37069
37088
  *
@@ -37137,6 +37156,13 @@ declare namespace sap {
37137
37156
  */
37138
37157
  mParameters?: object
37139
37158
  ): sap.m.GenericTag;
37159
+ /**
37160
+ * @SINCE 1.84.22
37161
+ *
37162
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
37163
+ * ariaLabelledBy}.
37164
+ */
37165
+ getAriaLabelledBy(): sap.ui.core.ID[];
37140
37166
  /**
37141
37167
  * Gets current value of property {@link #getDesign design}.
37142
37168
  *
@@ -37188,6 +37214,23 @@ declare namespace sap {
37188
37214
  * Default value is `None`.
37189
37215
  */
37190
37216
  getValueState(): sap.m.GenericTagValueState;
37217
+ /**
37218
+ * @SINCE 1.84.22
37219
+ *
37220
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
37221
+ */
37222
+ removeAllAriaLabelledBy(): sap.ui.core.ID[];
37223
+ /**
37224
+ * @SINCE 1.84.22
37225
+ *
37226
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
37227
+ */
37228
+ removeAriaLabelledBy(
37229
+ /**
37230
+ * The ariaLabelledBy to be removed or its index or ID
37231
+ */
37232
+ vAriaLabelledBy: number | sap.ui.core.ID | sap.ui.core.Control
37233
+ ): sap.ui.core.ID;
37191
37234
  /**
37192
37235
  * Sets a new value for property {@link #getDesign design}.
37193
37236
  *
@@ -66676,7 +66719,12 @@ declare namespace sap {
66676
66719
  /**
66677
66720
  * Parameters to pass along with the event
66678
66721
  */
66679
- mParameters?: object
66722
+ mParameters?: {
66723
+ /**
66724
+ * The iframe element.
66725
+ */
66726
+ target?: any;
66727
+ }
66680
66728
  ): sap.m.PDFViewer;
66681
66729
  /**
66682
66730
  * Fires event {@link #event:loaded loaded} to attached listeners.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
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
- * TODO: description
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.define(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
18
- * sap.ndc.BarcodeScanner.scan(
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.BarcodeScanner.scan(
63
- * function (mResult) {
64
- * alert("We got a bar code\n" +
65
- * "Result: " + mResult.text + "\n" +
66
- * "Format: " + mResult.format + "\n" +
67
- * "Cancelled: " + mResult.cancelled);
68
- * },
69
- * function (Error) {
70
- * alert("Scanning failed: " + Error);
71
- * },
72
- * function (mParams) {
73
- * alert("Value entered: " + mParams.newValue);
74
- * },
75
- * "Enter Product Bar Code"
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(
@@ -120,6 +112,11 @@ declare namespace sap {
120
112
  */
121
113
  dialogTitle?: string;
122
114
 
115
+ /**
116
+ * If set to true, the front camera will be used to decode.
117
+ */
118
+ preferFrontCamera?: boolean;
119
+
123
120
  /**
124
121
  * Event is fired when the scanning is finished or cancelled
125
122
  */
@@ -353,6 +350,14 @@ declare namespace sap {
353
350
  */
354
351
  // @ts-ignore
355
352
  static getMetadata(): sap.ui.core.ElementMetadata;
353
+ /**
354
+ * Gets current value of property {@link #getPreferFrontCamera preferFrontCamera}.
355
+ *
356
+ * If set to true, the front camera will be used to decode.
357
+ *
358
+ * Default value is `false`.
359
+ */
360
+ getPreferFrontCamera(): boolean;
356
361
  /**
357
362
  * Gets current value of property {@link #getProvideFallback provideFallback}.
358
363
  *
@@ -391,6 +396,21 @@ declare namespace sap {
391
396
  */
392
397
  sDialogTitle?: string
393
398
  ): sap.ndc.BarcodeScannerButton;
399
+ /**
400
+ * Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
401
+ *
402
+ * If set to true, the front camera will be used to decode.
403
+ *
404
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
405
+ *
406
+ * Default value is `false`.
407
+ */
408
+ setPreferFrontCamera(
409
+ /**
410
+ * New value for property `preferFrontCamera`
411
+ */
412
+ bPreferFrontCamera?: boolean
413
+ ): sap.ndc.BarcodeScannerButton;
394
414
  /**
395
415
  * Sets a new value for property {@link #getProvideFallback provideFallback}.
396
416
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.8
1
+ // For Library Version: 1.84.10
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.9
1
+ // For Library Version: 1.84.10
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.12
1
+ // For Library Version: 1.84.16
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -167,6 +167,13 @@ declare namespace sap {
167
167
  */
168
168
  selectedKey?: string;
169
169
 
170
+ /**
171
+ * @SINCE 1.84.22
172
+ *
173
+ * Specifies an optional aria-label that can be used by the screen readers.
174
+ */
175
+ ariaLabel?: string;
176
+
170
177
  /**
171
178
  * Fired when an item is selected.
172
179
  */
@@ -1250,6 +1257,14 @@ declare namespace sap {
1250
1257
  item?: sap.ui.core.Item;
1251
1258
  }
1252
1259
  ): sap.tnt.SideNavigation;
1260
+ /**
1261
+ * @SINCE 1.84.22
1262
+ *
1263
+ * Gets current value of property {@link #getAriaLabel ariaLabel}.
1264
+ *
1265
+ * Specifies an optional aria-label that can be used by the screen readers.
1266
+ */
1267
+ getAriaLabel(): string;
1253
1268
  /**
1254
1269
  * Gets current value of property {@link #getExpanded expanded}.
1255
1270
  *
@@ -1296,6 +1311,21 @@ declare namespace sap {
1296
1311
  * Specifies the currently selected key.
1297
1312
  */
1298
1313
  getSelectedKey(): string;
1314
+ /**
1315
+ * @SINCE 1.84.22
1316
+ *
1317
+ * Sets a new value for property {@link #getAriaLabel ariaLabel}.
1318
+ *
1319
+ * Specifies an optional aria-label that can be used by the screen readers.
1320
+ *
1321
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1322
+ */
1323
+ setAriaLabel(
1324
+ /**
1325
+ * New value for property `ariaLabel`
1326
+ */
1327
+ sAriaLabel?: string
1328
+ ): sap.tnt.SideNavigation;
1299
1329
  /**
1300
1330
  * Sets if the control is in expanded or collapsed mode.
1301
1331
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -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.17
21
+ // For Library Version: 1.84.21
22
22
  /**
23
23
  * Root namespace for JavaScript functionality provided by SAP SE.
24
24
  *
@@ -4515,16 +4515,23 @@ declare namespace sap {
4515
4515
  * If no check function is given, all aggregated objects will pass the check and be added to the result
4516
4516
  * array.
4517
4517
  *
4518
- * **Take care: this operation might be expensive.**/
4518
+ * When setting `bIncludeBindingTemplates` to `true`, binding templates will be included in the search.
4519
+ *
4520
+ * **Take care:** this operation might be expensive.
4521
+ */
4519
4522
  findAggregatedObjects(
4520
4523
  /**
4521
4524
  * Whether the whole aggregation tree should be searched
4522
4525
  */
4523
- bRecursive: boolean,
4526
+ bRecursive?: boolean,
4524
4527
  /**
4525
4528
  * Objects for which this function returns a falsy value will not be added to the result array
4526
4529
  */
4527
- fnCondition?: boolean
4530
+ fnCondition?: Function,
4531
+ /**
4532
+ * Whether binding templates should be included
4533
+ */
4534
+ bIncludeBindingTemplates?: boolean
4528
4535
  ): sap.ui.base.ManagedObject[];
4529
4536
  /**
4530
4537
  * Fires event {@link #event:formatError formatError} to attached listeners.
@@ -39887,8 +39894,8 @@ declare namespace sap {
39887
39894
  */
39888
39895
  read(
39889
39896
  /**
39890
- * A string containing the path to the data which should be retrieved. The path is concatenated to the service
39891
- * URL which was specified in the model constructor.
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
39892
39899
  */
39893
39900
  sPath: string,
39894
39901
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
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.17")
78
+ * - `version` (string) - Application version that creates the XLSX document (default: "1.84.21")
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.17',
164
+ * version: '1.84.21',
165
165
  * title: 'Some random title',
166
166
  * modifiedBy: 'John Doe',
167
167
  * metaSheetName: 'Custom metadata',
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
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.17
240
+ * @SINCE 1.84.21
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.17
259
+ * @SINCE 1.84.21
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.17
314
+ * @SINCE 1.84.21
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.17
329
+ * @SINCE 1.84.21
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.17
348
+ * @SINCE 1.84.21
349
349
  *
350
350
  * Contains the available system presets.
351
351
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.5
1
+ // For Library Version: 1.84.6
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.7
1
+ // For Library Version: 1.84.10
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -458,6 +458,23 @@ declare namespace sap {
458
458
  */
459
459
  handler: sap.ui.vk.DecryptionHandler
460
460
  ): sap.ui.vk.dvl.GraphicsCore;
461
+ /**
462
+ * @SINCE 1.94.0
463
+ *
464
+ * Sets the number of retry attempts for a download operation if the initial request to retrieve a model
465
+ * from a remote server could not be fulfilled and the error with which the request failed is considered
466
+ * retriable.
467
+ *
468
+ * See {@link sap.ui.vk.ContentConnector#setRetryCount} for details.
469
+ */
470
+ setRetryCount(
471
+ /**
472
+ * Number of retry attempts. Value must be non-negative. The default number of retry attempts is 1, unless
473
+ * specified otherwise by calling this method and passing in the desired value. Specifying 0 disables any
474
+ * retry attempts.
475
+ */
476
+ retryCount: number
477
+ ): sap.ui.vk.dvl.GraphicsCore;
461
478
  /**
462
479
  * Shows or hides debug information in the viewports.
463
480
  */
@@ -9711,7 +9728,7 @@ declare namespace sap {
9711
9728
  * the {@link https://en.wikipedia.org/wiki/Hash-based_message_authentication_code HMAC}-{@link https://en.wikipedia.org/wiki/SHA-2
9712
9729
  * SHA256} function 10,000 times.
9713
9730
  *
9714
- * The resulting 128-bit key should be passed to subseqeunt calls to {@link sap.ui.vk.DecryptionHandler#decrypt
9731
+ * The resulting 128-bit key should be passed to subsequent calls to {@link sap.ui.vk.DecryptionHandler#decrypt
9715
9732
  * sap.ui.vk.DecryptionHandler.decrypt}.
9716
9733
  */
9717
9734
  deriveKey(
@@ -12313,7 +12330,7 @@ declare namespace sap {
12313
12330
  * The simplest resolver tests the content resource source type. The test can be either a string comparison
12314
12331
  * or a regular expression.
12315
12332
  *
12316
- * A more sofisticated resolver is a function that can use the full content resource definition to find
12333
+ * A more sophisticated resolver is a function that can use the full content resource definition to find
12317
12334
  * a proper content manager dynamically, e.g. the resolver can use the 'HEAD' HTTP request to get the 'Content-Type'
12318
12335
  * header to find out the type of the content resource.
12319
12336
  */
@@ -12897,7 +12914,7 @@ declare namespace sap {
12897
12914
  /**
12898
12915
  * @SINCE 1.60.0
12899
12916
  *
12900
- * Sets a callback function which will be used to obtain authorizatio token when connected to remote server.
12917
+ * Sets a callback function which will be used to obtain authorization token when connected to remote server.
12901
12918
  */
12902
12919
  setAuthorizationHandler(
12903
12920
  /**
@@ -12916,6 +12933,45 @@ declare namespace sap {
12916
12933
  */
12917
12934
  handler: sap.ui.vk.DecryptionHandler
12918
12935
  ): sap.ui.vk.ContentConnector;
12936
+ /**
12937
+ * @SINCE 1.94.0
12938
+ *
12939
+ * Sets the number of retry attempts for a download operation if the initial request to retrieve a model
12940
+ * from a remote server could not be fulfilled and the error with which the request failed is considered
12941
+ * retriable.
12942
+ *
12943
+ * Retry Mechanism: Requests to retrieve (download) a model from a remote server may not always be fulfilled.
12944
+ * If the request failed with an error that is considered retriable then the download manager will
12945
+ * keep on trying issuing new requests until the request is fulfilled or the specified `retryCount` is exceeded.
12946
+ *
12947
+ * The default number of retry attempts is 1, unless specified otherwise by calling this method. Note that,
12948
+ * specifying 0 as `retryCount` disables the retry mechanism altogether.
12949
+ *
12950
+ * **Timing of retry attempts**: There is no delay between subsequent attempts.
12951
+ *
12952
+ * **Events fired**: The download manager will not fire any events between subsequent attempts. For
12953
+ * each requested item there will be a single `itemSucceeded` or `itemFailed` event fired when the download
12954
+ * operation for that given item finishes.
12955
+ *
12956
+ * **Retriable errors**: The following errors are considered retriable:
12957
+ * - Any kind of network error (e.g. due to temporary network outage). HTTP status code is expected to
12958
+ * be 0.
12959
+ * - Responses with the following 4xx-5xx HTTP status codes:
12960
+ * 408: Request Timeout
12961
+ * - 425: Too Early (RFC 8470)
12962
+ * - 429: Too Many Requests (RFC 6585)
12963
+ * - 500: Internal Server Error
12964
+ * - 502: Bad Gateway
12965
+ * - 503: Service Unavailable
12966
+ * - 504: Gateway Timeout
12967
+ */
12968
+ setRetryCount(
12969
+ /**
12970
+ * Number of retry attempts. Value must be non-negative. The default retry count is 1, unless specified
12971
+ * otherwise by calling this method and passing in the desired value. Passing in 0 disables any retry attempts.
12972
+ */
12973
+ retryCount: number
12974
+ ): sap.ui.vk.ContentConnector;
12919
12975
  /**
12920
12976
  * Unbinds aggregation {@link #getContentResources contentResources} from model data.
12921
12977
  */
@@ -13375,6 +13431,23 @@ declare namespace sap {
13375
13431
  */
13376
13432
  contentResources: sap.ui.vk.ContentResource[]
13377
13433
  ): sap.ui.vk.ContentManager;
13434
+ /**
13435
+ * @SINCE 1.94.0
13436
+ *
13437
+ * Sets the number of retry attempts for a download operation if the initial request to retrieve a model
13438
+ * from a remote server could not be fulfilled and the error with which the request failed is considered
13439
+ * retriable.
13440
+ *
13441
+ * See {@link sap.ui.vk.ContentConnector#setRetryCount} for details.
13442
+ */
13443
+ setRetryCount(
13444
+ /**
13445
+ * Number of retry attempts. Value must be non-negative. The default number of retry attempts is 1, unless
13446
+ * specified otherwise by calling this method and passing in the desired value. Specifying 0 disables any
13447
+ * retry attempts.
13448
+ */
13449
+ retryCount: number
13450
+ ): sap.ui.vk.ContentManager;
13378
13451
  /**
13379
13452
  * Attaches event handler `fnFunction` to the {@link #event:contentChangesFinished contentChangesFinished}
13380
13453
  * event of this `sap.ui.vk.ContentManager`.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  namespace uiext {
@@ -2020,6 +2020,7 @@ declare namespace sap {
2020
2020
  interface $SubstitutionRulesManagerSettings
2021
2021
  extends sap.ui.core.$ControlSettings {}
2022
2022
  /**
2023
+ * @deprecated (since 1.38.0)
2023
2024
  * @EXPERIMENTAL (since 1.5.2)
2024
2025
  *
2025
2026
  * A comprehensive UI design approach with graphical and functional elements for search tasks, filter tasks,
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.17
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**