@openui5/ts-types 1.102.9 → 1.102.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.102.9",
3
+ "version": "1.102.11",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
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.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -15183,6 +15183,18 @@ declare namespace sap {
15183
15183
  | sap.ui.base.ManagedObject.PropertyBindingInfo
15184
15184
  | `{${string}}`;
15185
15185
 
15186
+ /**
15187
+ * @SINCE 1.102.11
15188
+ *
15189
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
15190
+ * global configuration is used. Note: This API has been introduced with version 1.108 and downported to
15191
+ * this release with patch level 11.
15192
+ */
15193
+ calendarWeekNumbering?:
15194
+ | sap.ui.core.date.CalendarWeekNumbering
15195
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
15196
+ | `{${string}}`;
15197
+
15186
15198
  /**
15187
15199
  * @SINCE 1.38.5
15188
15200
  *
@@ -42946,6 +42958,18 @@ declare namespace sap {
42946
42958
  * @returns Current accessibility state of the control.
42947
42959
  */
42948
42960
  getAccessibilityInfo(): object;
42961
+ /**
42962
+ * @SINCE 1.102.11
42963
+ *
42964
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
42965
+ *
42966
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
42967
+ * global configuration is used. Note: This API has been introduced with version 1.108 and downported to
42968
+ * this release with patch level 11.
42969
+ *
42970
+ * @returns Value of property `calendarWeekNumbering`
42971
+ */
42972
+ getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
42949
42973
  /**
42950
42974
  * The date as JavaScript Date object. This is independent from any formatter.
42951
42975
  *
@@ -43198,6 +43222,25 @@ declare namespace sap {
43198
43222
  */
43199
43223
  oSpecialDate: sap.ui.unified.DateTypeRange
43200
43224
  ): sap.ui.unified.DateTypeRange;
43225
+ /**
43226
+ * @SINCE 1.102.11
43227
+ *
43228
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
43229
+ *
43230
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
43231
+ * global configuration is used. Note: This API has been introduced with version 1.108 and downported to
43232
+ * this release with patch level 11.
43233
+ *
43234
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
43235
+ *
43236
+ * @returns Reference to `this` in order to allow method chaining
43237
+ */
43238
+ setCalendarWeekNumbering(
43239
+ /**
43240
+ * New value for property `calendarWeekNumbering`
43241
+ */
43242
+ sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
43243
+ ): this;
43201
43244
  /**
43202
43245
  * Sets the displayFormat of the DatePicker.
43203
43246
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.9
267
+ // For Library Version: 1.102.11
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -966,6 +966,9 @@ declare module "sap/base/security/URLListValidator" {
966
966
  *
967
967
  * Note: Adding the first entry to the list of allowed entries will disallow all URLs but the ones matching
968
968
  * the newly added entry.
969
+ *
970
+ * **Note**: It is strongly recommended to set a path only in combination with an origin (never set a path
971
+ * alone). There's almost no case where checking only the path of a URL would allow to ensure its validity.
969
972
  */
970
973
  add(
971
974
  /**
@@ -1000,7 +1003,13 @@ declare module "sap/base/security/URLListValidator" {
1000
1003
  /**
1001
1004
  * Validates a URL. Check if it's not a script or other security issue.
1002
1005
  *
1003
- * Split URL into components and check for allowed characters according to RFC 3986:
1006
+ * **Note**: It is strongly recommended to validate only absolute URLs. There's almost no case where checking
1007
+ * only the path of a URL would allow to ensure its validity. For compatibility reasons, this API cannot
1008
+ * automatically resolve URLs relative to `document.baseURI`, but callers should do so. In that case, and
1009
+ * when the allow list is not empty, an entry for the origin of `document.baseURI` must be added to the
1010
+ * allow list.
1011
+ *
1012
+ * Details: Splits the given URL into components and checks for allowed characters according to RFC 3986:
1004
1013
  *
1005
1014
  *
1006
1015
  * ```javascript
@@ -2273,6 +2282,50 @@ declare module "sap/ui/core/ComponentSupport" {
2273
2282
  export default ComponentSupport;
2274
2283
  }
2275
2284
 
2285
+ declare module "sap/ui/core/date/CalendarUtils" {
2286
+ /**
2287
+ * @SINCE 1.102.11
2288
+ *
2289
+ * Provides calendar-related utilities.
2290
+ *
2291
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
2292
+ * 11.
2293
+ */
2294
+ interface CalendarUtils {
2295
+ /**
2296
+ * @SINCE 1.102.11
2297
+ *
2298
+ * Resolves calendar week configuration.
2299
+ *
2300
+ * Returns an object with the following fields:
2301
+ * - `firstDayOfWeek`: specifies the first day of the week starting with `0` (which is Sunday)
2302
+ * - `minimalDaysInFirstWeek`: minimal days at the beginning of the year which define the first calendar
2303
+ * week
2304
+ *
2305
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
2306
+ * 11.
2307
+ *
2308
+ * @returns The calendar week configuration, or `undefined for an invalid value of sap.ui.core.date.CalendarWeekNumbering`.
2309
+ */
2310
+ getWeekConfigurationValues(
2311
+ /**
2312
+ * The calendar week numbering; if omitted, `Default` is used.
2313
+ */
2314
+ sCalendarWeekNumbering?:
2315
+ | sap.ui.core.date.CalendarWeekNumbering
2316
+ | keyof typeof sap.ui.core.date.CalendarWeekNumbering,
2317
+ /**
2318
+ * The locale to use; if not provided, this falls back to the format locale from the Configuration; see
2319
+ * {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
2320
+ * is set to `Default`.
2321
+ */
2322
+ oLocale?: sap.ui.core.Locale
2323
+ ): Object | undefined;
2324
+ }
2325
+ const CalendarUtils: CalendarUtils;
2326
+ export default CalendarUtils;
2327
+ }
2328
+
2276
2329
  declare module "sap/ui/core/InvisibleRenderer" {
2277
2330
  /**
2278
2331
  * @SINCE 1.66.0
@@ -13060,6 +13113,11 @@ declare namespace sap {
13060
13113
  * Object which defines the format options
13061
13114
  */
13062
13115
  oFormatOptions?: {
13116
+ /**
13117
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
13118
+ * 1.108 and downported to this release with patch level 11.
13119
+ */
13120
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
13063
13121
  /**
13064
13122
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
13065
13123
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -13138,6 +13196,11 @@ declare namespace sap {
13138
13196
  * Object which defines the format options
13139
13197
  */
13140
13198
  oFormatOptions?: {
13199
+ /**
13200
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
13201
+ * 1.108 and downported to this release with patch level 11.
13202
+ */
13203
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
13141
13204
  /**
13142
13205
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
13143
13206
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -13220,6 +13283,11 @@ declare namespace sap {
13220
13283
  * An object which defines the format options
13221
13284
  */
13222
13285
  oFormatOptions?: {
13286
+ /**
13287
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
13288
+ * 1.108 and downported to this release with patch level 11.
13289
+ */
13290
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
13223
13291
  /**
13224
13292
  * A string containing pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into a pattern for
13225
13293
  * the used locale that matches the wanted symbols best. The symbols must be in canonical order, that is:
@@ -13299,6 +13367,11 @@ declare namespace sap {
13299
13367
  * Object which defines the format options
13300
13368
  */
13301
13369
  oFormatOptions?: {
13370
+ /**
13371
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
13372
+ * 1.108 and downported to this release with patch level 11.
13373
+ */
13374
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
13302
13375
  /**
13303
13376
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
13304
13377
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -17951,6 +18024,44 @@ declare namespace sap {
17951
18024
  }
17952
18025
  }
17953
18026
 
18027
+ namespace date {
18028
+ /**
18029
+ * @SINCE 1.102.11
18030
+ *
18031
+ * The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
18032
+ * - The first day of the week,
18033
+ * - the first week of the year.
18034
+ *
18035
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
18036
+ * 11.
18037
+ */
18038
+ enum CalendarWeekNumbering {
18039
+ /**
18040
+ * The default calendar week numbering:
18041
+ *
18042
+ * The framework determines the week numbering scheme; currently it is derived from the active format locale.
18043
+ * Future versions of UI5 might select a different week numbering scheme.
18044
+ */
18045
+ Default = "Default",
18046
+ /**
18047
+ * Official calendar week numbering in most of Europe (ISO 8601 standard):
18048
+ * Monday is first day of the week, the week containing January 4th is first week of the year.
18049
+ */
18050
+ ISO_8601 = "ISO_8601",
18051
+ /**
18052
+ * Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
18053
+ * Saturday is first day of the week, the week containing January 1st is first week of the year.
18054
+ */
18055
+ MiddleEastern = "MiddleEastern",
18056
+ /**
18057
+ * Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
18058
+ * (Western traditional calendar):
18059
+ * Sunday is first day of the week, the week containing January 1st is first week of the year.
18060
+ */
18061
+ WesternTraditional = "WesternTraditional",
18062
+ }
18063
+ }
18064
+
17954
18065
  namespace Element {
17955
18066
  /**
17956
18067
  * @SINCE 1.67
@@ -72470,6 +72581,10 @@ declare namespace sap {
72470
72581
 
72471
72582
  "sap/ui/core/CustomData": undefined;
72472
72583
 
72584
+ "sap/ui/core/date/CalendarUtils": undefined;
72585
+
72586
+ "sap/ui/core/date/CalendarWeekNumbering": undefined;
72587
+
72473
72588
  "sap/ui/core/date/UniversalDate": undefined;
72474
72589
 
72475
72590
  "sap/ui/core/date/UniversalDateUtils": undefined;
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -240,8 +240,9 @@ declare namespace sap {
240
240
  /**
241
241
  * @SINCE 1.28.9
242
242
  *
243
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
244
- * is set, the default of the used locale is used.
243
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
244
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
245
+ * with the calendarWeekNumbering property.
245
246
  */
246
247
  firstDayOfWeek?:
247
248
  | int
@@ -304,6 +305,18 @@ declare namespace sap {
304
305
  | sap.ui.base.ManagedObject.PropertyBindingInfo
305
306
  | `{${string}}`;
306
307
 
308
+ /**
309
+ * @SINCE 1.102.11
310
+ *
311
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
312
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
313
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
314
+ */
315
+ calendarWeekNumbering?:
316
+ | sap.ui.core.date.CalendarWeekNumbering
317
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
318
+ | `{${string}}`;
319
+
307
320
  /**
308
321
  * Date Ranges for selected dates of the DatePicker
309
322
  */
@@ -2305,6 +2318,18 @@ declare namespace sap {
2305
2318
  * ariaLabelledBy}.
2306
2319
  */
2307
2320
  getAriaLabelledBy(): sap.ui.core.ID[];
2321
+ /**
2322
+ * @SINCE 1.102.11
2323
+ *
2324
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
2325
+ *
2326
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
2327
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
2328
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
2329
+ *
2330
+ * @returns Value of property `calendarWeekNumbering`
2331
+ */
2332
+ getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
2308
2333
  /**
2309
2334
  * Gets current value of property {@link #getDate date}.
2310
2335
  *
@@ -2327,8 +2352,9 @@ declare namespace sap {
2327
2352
  *
2328
2353
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
2329
2354
  *
2330
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
2331
- * is set, the default of the used locale is used.
2355
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
2356
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
2357
+ * with the calendarWeekNumbering property.
2332
2358
  *
2333
2359
  * Default value is `-1`.
2334
2360
  *
@@ -2614,6 +2640,25 @@ declare namespace sap {
2614
2640
  */
2615
2641
  vSpecialDate: int | string | sap.ui.unified.DateTypeRange
2616
2642
  ): sap.ui.unified.DateTypeRange;
2643
+ /**
2644
+ * @SINCE 1.102.11
2645
+ *
2646
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
2647
+ *
2648
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
2649
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
2650
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
2651
+ *
2652
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2653
+ *
2654
+ * @returns Reference to `this` in order to allow method chaining
2655
+ */
2656
+ setCalendarWeekNumbering(
2657
+ /**
2658
+ * New value for property `calendarWeekNumbering`
2659
+ */
2660
+ sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
2661
+ ): this;
2617
2662
  /**
2618
2663
  * Sets a new value for property {@link #getDate date}.
2619
2664
  *
@@ -2635,8 +2680,9 @@ declare namespace sap {
2635
2680
  *
2636
2681
  * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
2637
2682
  *
2638
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
2639
- * is set, the default of the used locale is used.
2683
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
2684
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
2685
+ * with the calendarWeekNumbering property.
2640
2686
  *
2641
2687
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2642
2688
  *
@@ -5155,8 +5201,9 @@ declare namespace sap {
5155
5201
  /**
5156
5202
  * @SINCE 1.28.9
5157
5203
  *
5158
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
5159
- * is set, the default of the used locale is used.
5204
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
5205
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
5206
+ * with the calendarWeekNumbering property.
5160
5207
  */
5161
5208
  firstDayOfWeek?:
5162
5209
  | int
@@ -5268,6 +5315,18 @@ declare namespace sap {
5268
5315
  | sap.ui.base.ManagedObject.PropertyBindingInfo
5269
5316
  | `{${string}}`;
5270
5317
 
5318
+ /**
5319
+ * @SINCE 1.102.11
5320
+ *
5321
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
5322
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
5323
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
5324
+ */
5325
+ calendarWeekNumbering?:
5326
+ | sap.ui.core.date.CalendarWeekNumbering
5327
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
5328
+ | `{${string}}`;
5329
+
5271
5330
  /**
5272
5331
  * Dates or date ranges for selected dates.
5273
5332
  *
@@ -7807,6 +7866,18 @@ declare namespace sap {
7807
7866
  * ariaLabelledBy}.
7808
7867
  */
7809
7868
  getAriaLabelledBy(): sap.ui.core.ID[];
7869
+ /**
7870
+ * @SINCE 1.102.11
7871
+ *
7872
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
7873
+ *
7874
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
7875
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
7876
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
7877
+ *
7878
+ * @returns Value of property `calendarWeekNumbering`
7879
+ */
7880
+ getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
7810
7881
  /**
7811
7882
  * @SINCE 1.38.0
7812
7883
  *
@@ -7823,8 +7894,9 @@ declare namespace sap {
7823
7894
  *
7824
7895
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
7825
7896
  *
7826
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
7827
- * is set, the default of the used locale is used.
7897
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
7898
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
7899
+ * with the calendarWeekNumbering property.
7828
7900
  *
7829
7901
  * Default value is `-1`.
7830
7902
  *
@@ -8198,13 +8270,33 @@ declare namespace sap {
8198
8270
  */
8199
8271
  vSpecialDate: int | string | sap.ui.unified.DateTypeRange
8200
8272
  ): sap.ui.unified.DateTypeRange;
8273
+ /**
8274
+ * @SINCE 1.102.11
8275
+ *
8276
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
8277
+ *
8278
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
8279
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
8280
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
8281
+ *
8282
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8283
+ *
8284
+ * @returns Reference to `this` in order to allow method chaining
8285
+ */
8286
+ setCalendarWeekNumbering(
8287
+ /**
8288
+ * New value for property `calendarWeekNumbering`
8289
+ */
8290
+ sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
8291
+ ): this;
8201
8292
  /**
8202
8293
  * @SINCE 1.28.9
8203
8294
  *
8204
8295
  * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
8205
8296
  *
8206
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
8207
- * is set, the default of the used locale is used.
8297
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
8298
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
8299
+ * with the calendarWeekNumbering property.
8208
8300
  *
8209
8301
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8210
8302
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.9
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {
4
4
  /**