@sapui5/ts-types 1.84.29 → 1.84.32

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 (39) hide show
  1. package/package.json +1 -1
  2. package/types/sap.chart.d.ts +1 -1
  3. package/types/sap.f.d.ts +1 -1
  4. package/types/sap.gantt.d.ts +28 -1
  5. package/types/sap.m.d.ts +115 -19
  6. package/types/sap.makit.d.ts +1 -1
  7. package/types/sap.me.d.ts +1 -1
  8. package/types/sap.ndc.d.ts +150 -27
  9. package/types/sap.ovp.d.ts +1 -1
  10. package/types/sap.suite.ui.commons.d.ts +1 -1
  11. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  12. package/types/sap.suite.ui.microchart.d.ts +1 -1
  13. package/types/sap.tnt.d.ts +1 -1
  14. package/types/sap.ui.codeeditor.d.ts +1 -1
  15. package/types/sap.ui.commons.d.ts +1 -1
  16. package/types/sap.ui.comp.d.ts +7 -1
  17. package/types/sap.ui.core.d.ts +54 -3
  18. package/types/sap.ui.dt.d.ts +1 -1
  19. package/types/sap.ui.export.d.ts +3 -3
  20. package/types/sap.ui.fl.d.ts +1 -1
  21. package/types/sap.ui.integration.d.ts +1 -1
  22. package/types/sap.ui.layout.d.ts +1 -1
  23. package/types/sap.ui.mdc.d.ts +1 -1
  24. package/types/sap.ui.richtexteditor.d.ts +1 -1
  25. package/types/sap.ui.rta.d.ts +1 -1
  26. package/types/sap.ui.suite.d.ts +1 -1
  27. package/types/sap.ui.support.d.ts +6 -6
  28. package/types/sap.ui.table.d.ts +1 -1
  29. package/types/sap.ui.testrecorder.d.ts +1 -1
  30. package/types/sap.ui.unified.d.ts +85 -13
  31. package/types/sap.ui.ux3.d.ts +1 -1
  32. package/types/sap.ui.vbm.d.ts +1 -1
  33. package/types/sap.uiext.inbox.d.ts +1 -1
  34. package/types/sap.ushell.d.ts +1 -1
  35. package/types/sap.uxap.d.ts +6 -7
  36. package/types/sap.viz.d.ts +1 -1
  37. package/types/sap.zen.commons.d.ts +1 -1
  38. package/types/sap.zen.crosstab.d.ts +1 -1
  39. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -8,6 +8,9 @@ declare namespace sap {
8
8
  /**
9
9
  * @SINCE 1.28.0
10
10
  *
11
+ * Please refer to SAP
12
+ * Note 2402585 for information on Barcode Scanner support in native iOS and Android browsers.
13
+ *
11
14
  * Here is an example of how to trigger the scan function of BarcodeScanner:
12
15
  * ```javascript
13
16
  *
@@ -19,30 +22,80 @@ declare namespace sap {
19
22
  * );
20
23
  * });
21
24
  * ```
25
+ *
26
+ *
27
+ * The Barcode Scanner control integrates with the laser scanner when the page is loaded in the Enterprise
28
+ * Browser on a Zebra device. To enable laser scanning with a Zebra device, two JavaScript files (ebapi.js
29
+ * and eb.barcode.js) need to be loaded during runtime by the Enterprise Browser.
30
+ * - Your company admin / IT should configure the Barcode API settings in the Enterprise Browser config.xml
31
+ * file using mobile device management (MDM). Refer to CustomDOMElements
32
+ * for detailed information (recommended).
33
+ * - Developers can load these files directly into an HTML file. Refer to Enabling the API for detailed
34
+ * information.
22
35
  */
23
36
  namespace BarcodeScanner {
24
37
  /**
25
- * Closes the bar code input dialog. It can be used to close the dialog before the user presses the OK or
38
+ * Closes the barcode input dialog. It can be used to close the dialog before the user presses the OK or
26
39
  * the Cancel button (e.g. in the fnLiveUpdate callback function of the {@link sap.ndc.BarcodeScanner.scan}
27
40
  * method.)
28
41
  */
29
42
  function closeScanDialog(): void;
30
43
  /**
31
- * Returns the status model of the BarcodeScanner. It is a JSON model which contains a single boolean property
32
- * '`available`' indicating whether or not the bar code scanner feature is available. It can be used to
33
- * bind to the `visible` property of UI controls which have to be hidden in case the feature is unavailable.
44
+ * Returns the scanner API info that will be used to scan the barcode.
45
+ */
46
+ function getScanAPIInfo(): string;
47
+ /**
48
+ * Returns the status model of the Barcode Scanner. It is a JSON model which contains below properties:
49
+ *
50
+ * ```javascript
51
+ *
52
+ * {
53
+ * scannerAPI: "ZXingCPP",
54
+ * available: true,
55
+ * deviceId: undefined,
56
+ * devices: [],
57
+ * apis: [
58
+ * {
59
+ * key: "ZebraEnterpriseBrowser",
60
+ * status: "UnAvailable"
61
+ * },
62
+ * {
63
+ * key: "Cordova",
64
+ * status: "UnAvailable"
65
+ * },
66
+ * {
67
+ * key: "ZXingCPP",
68
+ * status: "Available"
69
+ * },
70
+ * {
71
+ * key: "ZXing",
72
+ * status: "Initial"
73
+ * }
74
+ * ]
75
+ * }
76
+ * ```
77
+ * '`scannerAPI`' shows the current scanner API used to scan the Barcode. '`available`' indicating whether
78
+ * or not the Barcode Scanner feature is available. It can be used to bind to the `visible` property of
79
+ * UI controls which have to be hidden in case the feature is unavailable. '`deviceId`' lists the current
80
+ * used camera id of current device. Not working for iOS devices since do not support to get all the cameras.
81
+ * '`devices`' lists all the cameras of current device. Not working for iOS devices since do not support
82
+ * to get all the cameras. '`apis`' lists scanner APIs with status value. Status value can be: "Initial",
83
+ * "Loading", "Available" or "UnAvailable".
84
+ *
85
+ * IMPORTANT: This model just shows current status of Barcode Scanner. Any change to it will not impact
86
+ * Barcode Scanner.
34
87
  */
35
88
  function getStatusModel(): sap.ui.model.json.JSONModel;
36
89
  /**
37
- * Starts the bar code scanning process either showing the live input from the camera or displaying a dialog
38
- * to enter the value directly if the bar code scanning feature is not available.
90
+ * Starts the barcode scanning process either showing the live input from the camera or displaying a dialog
91
+ * to enter the value directly if the barcode scanning feature is unavailable.
39
92
  *
40
- * The bar code scanning is done asynchronously. When it is triggered, this function returns without waiting
93
+ * The barcode scanning is done asynchronously. When it is triggered, this function returns without waiting
41
94
  * for the scanning process to finish. The applications have to provide callback functions to react to the
42
95
  * events of a successful scanning, an error during scanning, and the live input on the dialog.
43
96
  *
44
97
  * `fnSuccess` is passed an object with text, format and cancelled properties. Text is the text representation
45
- * of the bar code data, format is the type of the bar code detected, and cancelled is whether or not the
98
+ * of the barcode data, format is the type of the barcode detected, and cancelled is whether or not the
46
99
  * user cancelled the scan. `fnError` is given the error, `fnLiveUpdate` is passed the new value entered
47
100
  * in the dialog's input field. An example:
48
101
  *
@@ -52,7 +105,7 @@ declare namespace sap {
52
105
  * sap.ui.require(["sap/ndc/BarcodeScanner"], function(BarcodeScanner) {
53
106
  * BarcodeScanner.scan(
54
107
  * function (mResult) {
55
- * alert("We got a bar code\n" +
108
+ * alert("We got a barcode\n" +
56
109
  * "Result: " + mResult.text + "\n" +
57
110
  * "Format: " + mResult.format + "\n" +
58
111
  * "Cancelled: " + mResult.cancelled);
@@ -63,10 +116,11 @@ declare namespace sap {
63
116
  * function (mParams) {
64
117
  * alert("Value entered: " + mParams.newValue);
65
118
  * },
66
- * "Enter Product Bar Code",
119
+ * "Enter Product Barcode",
67
120
  * true,
68
121
  * 30,
69
- * 1
122
+ * 1,
123
+ * false
70
124
  * );
71
125
  * });
72
126
  * ```
@@ -85,7 +139,7 @@ declare namespace sap {
85
139
  */
86
140
  fnLiveUpdate?: Function,
87
141
  /**
88
- * Defines the bar code input dialog title. If unset, a predefined title will be used.
142
+ * Defines the barcode input dialog title. If unset, a predefined title will be used.
89
143
  */
90
144
  dialogTitle?: string,
91
145
  /**
@@ -99,20 +153,61 @@ declare namespace sap {
99
153
  /**
100
154
  * Defines the zoom of the camera. This parameter is not supported on iOS.
101
155
  */
102
- zoom?: number
156
+ zoom?: number,
157
+ /**
158
+ * Flag, which defines whether the camera should be used for scanning in Zebra Enterprise Browser.
159
+ */
160
+ keepCameraScan?: boolean
103
161
  ): void;
162
+ /**
163
+ * Set the configs of the control Barcode Scanner.
164
+ */
165
+ function setConfig(
166
+ /**
167
+ * The options are the configs that will be used to scan. It is a object which contains below key and value:
168
+ * { "enableGS1Header": true, //If set to true, add the symbology identifier (GS1 specification 5.4.3.7.
169
+ * and 5.4.6.4.) as prefix into the result text "deviceId": "string" // The specific camera id to scan the
170
+ * Barcode. If set to "", Barcode Scanner will use default camera. This option is not working for iOS devices
171
+ * since do not support to get all the cameras. }
172
+ */
173
+ options?: object
174
+ ): void;
175
+ /**
176
+ * Set the callback function for the physical scan button.
177
+ */
178
+ function setPhysicalScan(
179
+ /**
180
+ * Function to be called when the scanning is done by pressing physical scan button.
181
+ */
182
+ fnPhysicalScan?: Function
183
+ ): void;
184
+ /**
185
+ * Set the scanner API info that will be used to scan the barcode.
186
+ *
187
+ * IMPORTANT: The status of the scanner API must be **"Available"**(for ZXingCPP and ZXing, status is **NOT
188
+ * "UnAvailable"**), or will return False. Scanner APIs with status value can be got by using {@link #getStatusModel}.
189
+ * By default, Barcode Scanner will select the scanner API(Available) with priority: ZebraEnterpriseBrowser
190
+ * > Cordova > ZXingCPP > ZXing.
191
+ */
192
+ function setScanAPIInfo(
193
+ /**
194
+ * Defines the scanner API to scan the barcode. Scanner API can be "ZebraEnterpriseBrowser", "Cordova",
195
+ * "ZXingCPP" or "ZXing".
196
+ */
197
+ scannerAPI?: string
198
+ ): boolean;
104
199
  }
105
200
 
106
201
  interface $BarcodeScannerButtonSettings
107
202
  extends sap.ui.core.$ControlSettings {
108
203
  /**
109
204
  * If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
110
- * bar code.
205
+ * barcode.
111
206
  */
112
207
  provideFallback?: boolean;
113
208
 
114
209
  /**
115
- * The invisible bar code scanner button is not rendered regardless of the availability of the native scan
210
+ * The invisible barcode scanner button is not rendered regardless of the availability of the native scan
116
211
  * feature.
117
212
  */
118
213
  visible?: boolean;
@@ -123,7 +218,7 @@ declare namespace sap {
123
218
  width?: sap.ui.core.CSSSize;
124
219
 
125
220
  /**
126
- * Defines the bar code input dialog title. If unset, a predefined title will be used.
221
+ * Defines the barcode input dialog title. If unset, a predefined title will be used.
127
222
  */
128
223
  dialogTitle?: string;
129
224
 
@@ -142,6 +237,11 @@ declare namespace sap {
142
237
  */
143
238
  zoom?: number;
144
239
 
240
+ /**
241
+ * If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
242
+ */
243
+ keepCameraScan?: boolean;
244
+
145
245
  /**
146
246
  * Event is fired when the scanning is finished or cancelled
147
247
  */
@@ -158,9 +258,9 @@ declare namespace sap {
158
258
  inputLiveUpdate?: Function;
159
259
  }
160
260
  /**
161
- * A button control (displaying a bar code icon) to start the bar code scanning process. If the native scanning
261
+ * A button control (displaying a barcode icon) to start the barcode scanning process. If the native scanning
162
262
  * feature is not available or camera capability is not granted, the button is either hidden or it provides
163
- * a fallback by opening a dialog with an input field where the bar code can be entered manually.
263
+ * a fallback by opening a dialog with an input field where the barcode can be entered manually.
164
264
  */
165
265
  class BarcodeScannerButton extends sap.ui.core.Control {
166
266
  /**
@@ -351,11 +451,11 @@ declare namespace sap {
351
451
  */
352
452
  mParameters?: {
353
453
  /**
354
- * The the text representation of the bar code data.
454
+ * The the text representation of the barcode data.
355
455
  */
356
456
  text?: string;
357
457
  /**
358
- * The type of the bar code detected.
458
+ * The type of the barcode detected.
359
459
  */
360
460
  format?: string;
361
461
  /**
@@ -367,7 +467,7 @@ declare namespace sap {
367
467
  /**
368
468
  * Gets current value of property {@link #getDialogTitle dialogTitle}.
369
469
  *
370
- * Defines the bar code input dialog title. If unset, a predefined title will be used.
470
+ * Defines the barcode input dialog title. If unset, a predefined title will be used.
371
471
  */
372
472
  getDialogTitle(): string;
373
473
  /**
@@ -376,6 +476,14 @@ declare namespace sap {
376
476
  * Defines the frame rate of the camera.
377
477
  */
378
478
  getFrameRate(): number;
479
+ /**
480
+ * Gets current value of property {@link #getKeepCameraScan keepCameraScan}.
481
+ *
482
+ * If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
483
+ *
484
+ * Default value is `false`.
485
+ */
486
+ getKeepCameraScan(): boolean;
379
487
  /**
380
488
  * Returns a metadata object for class sap.ndc.BarcodeScannerButton.
381
489
  */
@@ -393,7 +501,7 @@ declare namespace sap {
393
501
  * Gets current value of property {@link #getProvideFallback provideFallback}.
394
502
  *
395
503
  * If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
396
- * bar code.
504
+ * barcode.
397
505
  *
398
506
  * Default value is `true`.
399
507
  */
@@ -401,7 +509,7 @@ declare namespace sap {
401
509
  /**
402
510
  * Gets current value of property {@link #getVisible visible}.
403
511
  *
404
- * The invisible bar code scanner button is not rendered regardless of the availability of the native scan
512
+ * The invisible barcode scanner button is not rendered regardless of the availability of the native scan
405
513
  * feature.
406
514
  *
407
515
  * Default value is `true`.
@@ -423,7 +531,7 @@ declare namespace sap {
423
531
  /**
424
532
  * Sets a new value for property {@link #getDialogTitle dialogTitle}.
425
533
  *
426
- * Defines the bar code input dialog title. If unset, a predefined title will be used.
534
+ * Defines the barcode input dialog title. If unset, a predefined title will be used.
427
535
  *
428
536
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
429
537
  */
@@ -446,6 +554,21 @@ declare namespace sap {
446
554
  */
447
555
  fFrameRate: number
448
556
  ): sap.ndc.BarcodeScannerButton;
557
+ /**
558
+ * Sets a new value for property {@link #getKeepCameraScan keepCameraScan}.
559
+ *
560
+ * If set to true, the camera should be used for scanning in Zebra Enterprise Browser.
561
+ *
562
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
563
+ *
564
+ * Default value is `false`.
565
+ */
566
+ setKeepCameraScan(
567
+ /**
568
+ * New value for property `keepCameraScan`
569
+ */
570
+ bKeepCameraScan?: boolean
571
+ ): sap.ndc.BarcodeScannerButton;
449
572
  /**
450
573
  * Sets a new value for property {@link #getPreferFrontCamera preferFrontCamera}.
451
574
  *
@@ -465,7 +588,7 @@ declare namespace sap {
465
588
  * Sets a new value for property {@link #getProvideFallback provideFallback}.
466
589
  *
467
590
  * If set to true, the button remains visible if the scanner is not available and triggers a dialog to enter
468
- * bar code.
591
+ * barcode.
469
592
  *
470
593
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
471
594
  *
@@ -480,7 +603,7 @@ declare namespace sap {
480
603
  /**
481
604
  * Sets a new value for property {@link #getVisible visible}.
482
605
  *
483
- * The invisible bar code scanner button is not rendered regardless of the availability of the native scan
606
+ * The invisible barcode scanner button is not rendered regardless of the availability of the native scan
484
607
  * feature.
485
608
  *
486
609
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.11
1
+ // For Library Version: 1.84.12
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.14
1
+ // For Library Version: 1.84.17
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.23
1
+ // For Library Version: 1.84.26
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -25192,6 +25192,7 @@ declare namespace sap {
25192
25192
 
25193
25193
  /**
25194
25194
  * @SINCE 1.24
25195
+ * @deprecated (since 1.84.1)
25195
25196
  *
25196
25197
  * Defines the maximum number of include ranges.
25197
25198
  */
@@ -25199,6 +25200,7 @@ declare namespace sap {
25199
25200
 
25200
25201
  /**
25201
25202
  * @SINCE 1.24
25203
+ * @deprecated (since 1.84.1)
25202
25204
  *
25203
25205
  * Defines the maximum number of exclude ranges.
25204
25206
  */
@@ -25715,6 +25717,7 @@ declare namespace sap {
25715
25717
  getKeys(): string[];
25716
25718
  /**
25717
25719
  * @SINCE 1.24
25720
+ * @deprecated (since 1.84.1)
25718
25721
  *
25719
25722
  * Gets current value of property {@link #getMaxExcludeRanges maxExcludeRanges}.
25720
25723
  *
@@ -25725,6 +25728,7 @@ declare namespace sap {
25725
25728
  getMaxExcludeRanges(): string;
25726
25729
  /**
25727
25730
  * @SINCE 1.24
25731
+ * @deprecated (since 1.84.1)
25728
25732
  *
25729
25733
  * Gets current value of property {@link #getMaxIncludeRanges maxIncludeRanges}.
25730
25734
  *
@@ -25937,6 +25941,7 @@ declare namespace sap {
25937
25941
  ): sap.ui.comp.valuehelpdialog.ValueHelpDialog;
25938
25942
  /**
25939
25943
  * @SINCE 1.24
25944
+ * @deprecated (since 1.84.1)
25940
25945
  *
25941
25946
  * Sets a new value for property {@link #getMaxExcludeRanges maxExcludeRanges}.
25942
25947
  *
@@ -25954,6 +25959,7 @@ declare namespace sap {
25954
25959
  ): sap.ui.comp.valuehelpdialog.ValueHelpDialog;
25955
25960
  /**
25956
25961
  * @SINCE 1.24
25962
+ * @deprecated (since 1.84.1)
25957
25963
  *
25958
25964
  * Sets a new value for property {@link #getMaxIncludeRanges maxIncludeRanges}.
25959
25965
  *
@@ -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.28
21
+ // For Library Version: 1.84.32
22
22
  /**
23
23
  * Root namespace for JavaScript functionality provided by SAP SE.
24
24
  *
@@ -8285,6 +8285,11 @@ declare namespace sap {
8285
8285
  * Object which defines the format options
8286
8286
  */
8287
8287
  oFormatOptions?: {
8288
+ /**
8289
+ * @since 1.84.31 specifies the calendar week numbering. Note: This API has been introduced with version
8290
+ * 1.108 and downported to this release with patch level 31.
8291
+ */
8292
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
8288
8293
  /**
8289
8294
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
8290
8295
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -8361,6 +8366,11 @@ declare namespace sap {
8361
8366
  * Object which defines the format options
8362
8367
  */
8363
8368
  oFormatOptions?: {
8369
+ /**
8370
+ * @since 1.84.31 specifies the calendar week numbering. Note: This API has been introduced with version
8371
+ * 1.108 and downported to this release with patch level 31.
8372
+ */
8373
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
8364
8374
  /**
8365
8375
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
8366
8376
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -8440,6 +8450,11 @@ declare namespace sap {
8440
8450
  * Object which defines the format options
8441
8451
  */
8442
8452
  oFormatOptions?: {
8453
+ /**
8454
+ * @since 1.84.31 specifies the calendar week numbering. Note: This API has been introduced with version
8455
+ * 1.108 and downported to this release with patch level 31.
8456
+ */
8457
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
8443
8458
  /**
8444
8459
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
8445
8460
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -12331,6 +12346,44 @@ declare namespace sap {
12331
12346
  }
12332
12347
  }
12333
12348
 
12349
+ namespace date {
12350
+ /**
12351
+ * @SINCE 1.84.31
12352
+ *
12353
+ * The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
12354
+ * - The first day of the week,
12355
+ * - the first week of the year.
12356
+ *
12357
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
12358
+ * 31.
12359
+ */
12360
+ enum CalendarWeekNumbering {
12361
+ /**
12362
+ * The default calendar week numbering:
12363
+ *
12364
+ * The framework determines the week numbering scheme; currently it is derived from the active format locale.
12365
+ * Future versions of UI5 might select a different week numbering scheme.
12366
+ */
12367
+ Default,
12368
+ /**
12369
+ * Official calendar week numbering in most of Europe (ISO 8601 standard):
12370
+ * Monday is first day of the week, the week containing January 4th is first week of the year.
12371
+ */
12372
+ ISO_8601,
12373
+ /**
12374
+ * Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
12375
+ * Saturday is first day of the week, the week containing January 1st is first week of the year.
12376
+ */
12377
+ MiddleEastern,
12378
+ /**
12379
+ * Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
12380
+ * (Western traditional calendar):
12381
+ * Sunday is first day of the week, the week containing January 1st is first week of the year.
12382
+ */
12383
+ WesternTraditional,
12384
+ }
12385
+ }
12386
+
12334
12387
  namespace hyphenation {
12335
12388
  /**
12336
12389
  * @SINCE 1.60
@@ -18943,8 +18996,6 @@ declare namespace sap {
18943
18996
 
18944
18997
  interface URI {}
18945
18998
 
18946
- interface date {}
18947
-
18948
18999
  interface postmessage {}
18949
19000
 
18950
19001
  interface service {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
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.28")
78
+ * - `version` (string) - Application version that creates the XLSX document (default: "1.84.32")
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.28',
164
+ * version: '1.84.32',
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.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
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.28
240
+ * @SINCE 1.84.32
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.28
259
+ * @SINCE 1.84.32
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.28
314
+ * @SINCE 1.84.32
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.28
329
+ * @SINCE 1.84.32
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.28
348
+ * @SINCE 1.84.32
349
349
  *
350
350
  * Contains the available system presets.
351
351
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {