@openui5/ts-types-esm 1.102.10 → 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-esm",
3
- "version": "1.102.10",
3
+ "version": "1.102.11",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
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.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -15242,6 +15242,8 @@ declare module "sap/m/DatePicker" {
15242
15242
 
15243
15243
  import DateRange from "sap/ui/unified/DateRange";
15244
15244
 
15245
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
15246
+
15245
15247
  import { ID } from "sap/ui/core/library";
15246
15248
 
15247
15249
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -15687,6 +15689,20 @@ declare module "sap/m/DatePicker" {
15687
15689
  * @returns Current accessibility state of the control.
15688
15690
  */
15689
15691
  getAccessibilityInfo(): object;
15692
+ /**
15693
+ * @SINCE 1.102.11
15694
+ *
15695
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
15696
+ *
15697
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
15698
+ * global configuration is used. Note: This API has been introduced with version 1.108 and downported to
15699
+ * this release with patch level 11.
15700
+ *
15701
+ * @returns Value of property `calendarWeekNumbering`
15702
+ */
15703
+ getCalendarWeekNumbering():
15704
+ | CalendarWeekNumbering
15705
+ | keyof typeof CalendarWeekNumbering;
15690
15706
  /**
15691
15707
  * The date as JavaScript Date object. This is independent from any formatter.
15692
15708
  *
@@ -15939,6 +15955,27 @@ declare module "sap/m/DatePicker" {
15939
15955
  */
15940
15956
  oSpecialDate: DateTypeRange
15941
15957
  ): DateTypeRange;
15958
+ /**
15959
+ * @SINCE 1.102.11
15960
+ *
15961
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
15962
+ *
15963
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
15964
+ * global configuration is used. Note: This API has been introduced with version 1.108 and downported to
15965
+ * this release with patch level 11.
15966
+ *
15967
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
15968
+ *
15969
+ * @returns Reference to `this` in order to allow method chaining
15970
+ */
15971
+ setCalendarWeekNumbering(
15972
+ /**
15973
+ * New value for property `calendarWeekNumbering`
15974
+ */
15975
+ sCalendarWeekNumbering?:
15976
+ | CalendarWeekNumbering
15977
+ | keyof typeof CalendarWeekNumbering
15978
+ ): this;
15942
15979
  /**
15943
15980
  * Sets the displayFormat of the DatePicker.
15944
15981
  *
@@ -16212,6 +16249,18 @@ declare module "sap/m/DatePicker" {
16212
16249
  */
16213
16250
  hideInput?: boolean | PropertyBindingInfo | `{${string}}`;
16214
16251
 
16252
+ /**
16253
+ * @SINCE 1.102.11
16254
+ *
16255
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
16256
+ * global configuration is used. Note: This API has been introduced with version 1.108 and downported to
16257
+ * this release with patch level 11.
16258
+ */
16259
+ calendarWeekNumbering?:
16260
+ | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
16261
+ | PropertyBindingInfo
16262
+ | `{${string}}`;
16263
+
16215
16264
  /**
16216
16265
  * @SINCE 1.38.5
16217
16266
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.10
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
@@ -2275,6 +2284,54 @@ declare module "sap/ui/core/ComponentSupport" {
2275
2284
  export default ComponentSupport;
2276
2285
  }
2277
2286
 
2287
+ declare module "sap/ui/core/date/CalendarUtils" {
2288
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
2289
+
2290
+ import Locale from "sap/ui/core/Locale";
2291
+
2292
+ /**
2293
+ * @SINCE 1.102.11
2294
+ *
2295
+ * Provides calendar-related utilities.
2296
+ *
2297
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
2298
+ * 11.
2299
+ */
2300
+ interface CalendarUtils {
2301
+ /**
2302
+ * @SINCE 1.102.11
2303
+ *
2304
+ * Resolves calendar week configuration.
2305
+ *
2306
+ * Returns an object with the following fields:
2307
+ * - `firstDayOfWeek`: specifies the first day of the week starting with `0` (which is Sunday)
2308
+ * - `minimalDaysInFirstWeek`: minimal days at the beginning of the year which define the first calendar
2309
+ * week
2310
+ *
2311
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
2312
+ * 11.
2313
+ *
2314
+ * @returns The calendar week configuration, or `undefined for an invalid value of sap.ui.core.date.CalendarWeekNumbering`.
2315
+ */
2316
+ getWeekConfigurationValues(
2317
+ /**
2318
+ * The calendar week numbering; if omitted, `Default` is used.
2319
+ */
2320
+ sCalendarWeekNumbering?:
2321
+ | CalendarWeekNumbering
2322
+ | keyof typeof CalendarWeekNumbering,
2323
+ /**
2324
+ * The locale to use; if not provided, this falls back to the format locale from the Configuration; see
2325
+ * {@link sap.ui.core.Configuration.FormatSettings#getFormatLocale}. Is only used when `sCalendarWeekNumbering`
2326
+ * is set to `Default`.
2327
+ */
2328
+ oLocale?: Locale
2329
+ ): Object | undefined;
2330
+ }
2331
+ const CalendarUtils: CalendarUtils;
2332
+ export default CalendarUtils;
2333
+ }
2334
+
2278
2335
  declare module "sap/ui/core/InvisibleRenderer" {
2279
2336
  import Control from "sap/ui/core/Control";
2280
2337
 
@@ -15740,6 +15797,45 @@ declare module "sap/ui/core/CustomData" {
15740
15797
  }
15741
15798
  }
15742
15799
 
15800
+ declare module "sap/ui/core/date/CalendarWeekNumbering" {
15801
+ /**
15802
+ * @SINCE 1.102.11
15803
+ *
15804
+ * The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
15805
+ * - The first day of the week,
15806
+ * - the first week of the year.
15807
+ *
15808
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
15809
+ * 11.
15810
+ */
15811
+ enum CalendarWeekNumbering {
15812
+ /**
15813
+ * The default calendar week numbering:
15814
+ *
15815
+ * The framework determines the week numbering scheme; currently it is derived from the active format locale.
15816
+ * Future versions of UI5 might select a different week numbering scheme.
15817
+ */
15818
+ Default = "Default",
15819
+ /**
15820
+ * Official calendar week numbering in most of Europe (ISO 8601 standard):
15821
+ * Monday is first day of the week, the week containing January 4th is first week of the year.
15822
+ */
15823
+ ISO_8601 = "ISO_8601",
15824
+ /**
15825
+ * Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
15826
+ * Saturday is first day of the week, the week containing January 1st is first week of the year.
15827
+ */
15828
+ MiddleEastern = "MiddleEastern",
15829
+ /**
15830
+ * Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
15831
+ * (Western traditional calendar):
15832
+ * Sunday is first day of the week, the week containing January 1st is first week of the year.
15833
+ */
15834
+ WesternTraditional = "WesternTraditional",
15835
+ }
15836
+ export default CalendarWeekNumbering;
15837
+ }
15838
+
15743
15839
  declare module "sap/ui/core/DeclarativeSupport" {
15744
15840
  import HTMLView from "sap/ui/core/mvc/HTMLView";
15745
15841
 
@@ -19266,6 +19362,8 @@ declare module "sap/ui/core/ExtensionPoint" {
19266
19362
  }
19267
19363
 
19268
19364
  declare module "sap/ui/core/format/DateFormat" {
19365
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
19366
+
19269
19367
  import CalendarType from "sap/ui/core/CalendarType";
19270
19368
 
19271
19369
  import Locale from "sap/ui/core/Locale";
@@ -19294,6 +19392,13 @@ declare module "sap/ui/core/format/DateFormat" {
19294
19392
  * Object which defines the format options
19295
19393
  */
19296
19394
  oFormatOptions?: {
19395
+ /**
19396
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
19397
+ * 1.108 and downported to this release with patch level 11.
19398
+ */
19399
+ calendarWeekNumbering?:
19400
+ | CalendarWeekNumbering
19401
+ | keyof typeof CalendarWeekNumbering;
19297
19402
  /**
19298
19403
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
19299
19404
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -19372,6 +19477,13 @@ declare module "sap/ui/core/format/DateFormat" {
19372
19477
  * Object which defines the format options
19373
19478
  */
19374
19479
  oFormatOptions?: {
19480
+ /**
19481
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
19482
+ * 1.108 and downported to this release with patch level 11.
19483
+ */
19484
+ calendarWeekNumbering?:
19485
+ | CalendarWeekNumbering
19486
+ | keyof typeof CalendarWeekNumbering;
19375
19487
  /**
19376
19488
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
19377
19489
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -19454,6 +19566,13 @@ declare module "sap/ui/core/format/DateFormat" {
19454
19566
  * An object which defines the format options
19455
19567
  */
19456
19568
  oFormatOptions?: {
19569
+ /**
19570
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
19571
+ * 1.108 and downported to this release with patch level 11.
19572
+ */
19573
+ calendarWeekNumbering?:
19574
+ | CalendarWeekNumbering
19575
+ | keyof typeof CalendarWeekNumbering;
19457
19576
  /**
19458
19577
  * A string containing pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into a pattern for
19459
19578
  * the used locale that matches the wanted symbols best. The symbols must be in canonical order, that is:
@@ -19533,6 +19652,13 @@ declare module "sap/ui/core/format/DateFormat" {
19533
19652
  * Object which defines the format options
19534
19653
  */
19535
19654
  oFormatOptions?: {
19655
+ /**
19656
+ * @since 1.102.11 specifies the calendar week numbering. Note: This API has been introduced with version
19657
+ * 1.108 and downported to this release with patch level 11.
19658
+ */
19659
+ calendarWeekNumbering?:
19660
+ | CalendarWeekNumbering
19661
+ | keyof typeof CalendarWeekNumbering;
19536
19662
  /**
19537
19663
  * @since 1.34.0 contains pattern symbols (e.g. "yMMMd" or "Hms") which will be converted into the pattern
19538
19664
  * in the used locale, which matches the wanted symbols best. The symbols must be in canonical order, that
@@ -75175,6 +75301,10 @@ declare namespace sap {
75175
75301
 
75176
75302
  "sap/ui/core/CustomData": undefined;
75177
75303
 
75304
+ "sap/ui/core/date/CalendarUtils": undefined;
75305
+
75306
+ "sap/ui/core/date/CalendarWeekNumbering": undefined;
75307
+
75178
75308
  "sap/ui/core/date/UniversalDate": undefined;
75179
75309
 
75180
75310
  "sap/ui/core/date/UniversalDateUtils": undefined;
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
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.102.10
1
+ // For Library Version: 1.102.11
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.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
4
4
  import Metadata from "sap/ui/base/Metadata";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
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.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
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.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -331,6 +331,8 @@ declare module "sap/ui/unified/Calendar" {
331
331
 
332
332
  import Event from "sap/ui/base/Event";
333
333
 
334
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
335
+
334
336
  import ElementMetadata from "sap/ui/core/ElementMetadata";
335
337
 
336
338
  import CalendarType from "sap/ui/core/CalendarType";
@@ -851,6 +853,20 @@ declare module "sap/ui/unified/Calendar" {
851
853
  * ariaLabelledBy}.
852
854
  */
853
855
  getAriaLabelledBy(): ID[];
856
+ /**
857
+ * @SINCE 1.102.11
858
+ *
859
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
860
+ *
861
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
862
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
863
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
864
+ *
865
+ * @returns Value of property `calendarWeekNumbering`
866
+ */
867
+ getCalendarWeekNumbering():
868
+ | CalendarWeekNumbering
869
+ | keyof typeof CalendarWeekNumbering;
854
870
  /**
855
871
  * @SINCE 1.38.0
856
872
  *
@@ -867,8 +883,9 @@ declare module "sap/ui/unified/Calendar" {
867
883
  *
868
884
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
869
885
  *
870
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
871
- * is set, the default of the used locale is used.
886
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
887
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
888
+ * with the calendarWeekNumbering property.
872
889
  *
873
890
  * Default value is `-1`.
874
891
  *
@@ -1242,13 +1259,35 @@ declare module "sap/ui/unified/Calendar" {
1242
1259
  */
1243
1260
  vSpecialDate: int | string | DateTypeRange
1244
1261
  ): DateTypeRange;
1262
+ /**
1263
+ * @SINCE 1.102.11
1264
+ *
1265
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
1266
+ *
1267
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
1268
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
1269
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
1270
+ *
1271
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1272
+ *
1273
+ * @returns Reference to `this` in order to allow method chaining
1274
+ */
1275
+ setCalendarWeekNumbering(
1276
+ /**
1277
+ * New value for property `calendarWeekNumbering`
1278
+ */
1279
+ sCalendarWeekNumbering?:
1280
+ | CalendarWeekNumbering
1281
+ | keyof typeof CalendarWeekNumbering
1282
+ ): this;
1245
1283
  /**
1246
1284
  * @SINCE 1.28.9
1247
1285
  *
1248
1286
  * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
1249
1287
  *
1250
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
1251
- * is set, the default of the used locale is used.
1288
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
1289
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
1290
+ * with the calendarWeekNumbering property.
1252
1291
  *
1253
1292
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1254
1293
  *
@@ -1492,8 +1531,9 @@ declare module "sap/ui/unified/Calendar" {
1492
1531
  /**
1493
1532
  * @SINCE 1.28.9
1494
1533
  *
1495
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
1496
- * is set, the default of the used locale is used.
1534
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
1535
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
1536
+ * with the calendarWeekNumbering property.
1497
1537
  */
1498
1538
  firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
1499
1539
 
@@ -1584,6 +1624,18 @@ declare module "sap/ui/unified/Calendar" {
1584
1624
  */
1585
1625
  showCurrentDateButton?: boolean | PropertyBindingInfo | `{${string}}`;
1586
1626
 
1627
+ /**
1628
+ * @SINCE 1.102.11
1629
+ *
1630
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
1631
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
1632
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
1633
+ */
1634
+ calendarWeekNumbering?:
1635
+ | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
1636
+ | PropertyBindingInfo
1637
+ | `{${string}}`;
1638
+
1587
1639
  /**
1588
1640
  * Dates or date ranges for selected dates.
1589
1641
  *
@@ -2979,6 +3031,8 @@ declare module "sap/ui/unified/calendar/Month" {
2979
3031
 
2980
3032
  import Event from "sap/ui/base/Event";
2981
3033
 
3034
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
3035
+
2982
3036
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2983
3037
 
2984
3038
  import CalendarType from "sap/ui/core/CalendarType";
@@ -3419,6 +3473,20 @@ declare module "sap/ui/unified/calendar/Month" {
3419
3473
  * ariaLabelledBy}.
3420
3474
  */
3421
3475
  getAriaLabelledBy(): ID[];
3476
+ /**
3477
+ * @SINCE 1.102.11
3478
+ *
3479
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
3480
+ *
3481
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
3482
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
3483
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
3484
+ *
3485
+ * @returns Value of property `calendarWeekNumbering`
3486
+ */
3487
+ getCalendarWeekNumbering():
3488
+ | CalendarWeekNumbering
3489
+ | keyof typeof CalendarWeekNumbering;
3422
3490
  /**
3423
3491
  * Gets current value of property {@link #getDate date}.
3424
3492
  *
@@ -3441,8 +3509,9 @@ declare module "sap/ui/unified/calendar/Month" {
3441
3509
  *
3442
3510
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
3443
3511
  *
3444
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
3445
- * is set, the default of the used locale is used.
3512
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
3513
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
3514
+ * with the calendarWeekNumbering property.
3446
3515
  *
3447
3516
  * Default value is `-1`.
3448
3517
  *
@@ -3728,6 +3797,27 @@ declare module "sap/ui/unified/calendar/Month" {
3728
3797
  */
3729
3798
  vSpecialDate: int | string | DateTypeRange
3730
3799
  ): DateTypeRange;
3800
+ /**
3801
+ * @SINCE 1.102.11
3802
+ *
3803
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
3804
+ *
3805
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
3806
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
3807
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
3808
+ *
3809
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3810
+ *
3811
+ * @returns Reference to `this` in order to allow method chaining
3812
+ */
3813
+ setCalendarWeekNumbering(
3814
+ /**
3815
+ * New value for property `calendarWeekNumbering`
3816
+ */
3817
+ sCalendarWeekNumbering?:
3818
+ | CalendarWeekNumbering
3819
+ | keyof typeof CalendarWeekNumbering
3820
+ ): this;
3731
3821
  /**
3732
3822
  * Sets a new value for property {@link #getDate date}.
3733
3823
  *
@@ -3749,8 +3839,9 @@ declare module "sap/ui/unified/calendar/Month" {
3749
3839
  *
3750
3840
  * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
3751
3841
  *
3752
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
3753
- * is set, the default of the used locale is used.
3842
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
3843
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
3844
+ * with the calendarWeekNumbering property.
3754
3845
  *
3755
3846
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3756
3847
  *
@@ -3949,8 +4040,9 @@ declare module "sap/ui/unified/calendar/Month" {
3949
4040
  /**
3950
4041
  * @SINCE 1.28.9
3951
4042
  *
3952
- * If set, the first day of the displayed week is this day. Valid values are 0 to 6. If not a valid value
3953
- * is set, the default of the used locale is used.
4043
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
4044
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
4045
+ * with the calendarWeekNumbering property.
3954
4046
  */
3955
4047
  firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
3956
4048
 
@@ -4001,6 +4093,18 @@ declare module "sap/ui/unified/calendar/Month" {
4001
4093
  */
4002
4094
  showWeekNumbers?: boolean | PropertyBindingInfo | `{${string}}`;
4003
4095
 
4096
+ /**
4097
+ * @SINCE 1.102.11
4098
+ *
4099
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
4100
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property. Note:
4101
+ * This API has been introduced with version 1.108 and downported to this release with patch level 11.
4102
+ */
4103
+ calendarWeekNumbering?:
4104
+ | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
4105
+ | PropertyBindingInfo
4106
+ | `{${string}}`;
4107
+
4004
4108
  /**
4005
4109
  * Date Ranges for selected dates of the DatePicker
4006
4110
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.10
1
+ // For Library Version: 1.102.11
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**