@openui5/ts-types-esm 1.105.1 → 1.105.3

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.105.1",
3
+ "version": "1.105.3",
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.105.1
1
+ // For Library Version: 1.105.3
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.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -15408,6 +15408,8 @@ declare module "sap/m/DatePicker" {
15408
15408
 
15409
15409
  import DateRange from "sap/ui/unified/DateRange";
15410
15410
 
15411
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
15412
+
15411
15413
  import { ID } from "sap/ui/core/library";
15412
15414
 
15413
15415
  import ElementMetadata from "sap/ui/core/ElementMetadata";
@@ -15853,6 +15855,19 @@ declare module "sap/m/DatePicker" {
15853
15855
  * @returns Current accessibility state of the control.
15854
15856
  */
15855
15857
  getAccessibilityInfo(): object;
15858
+ /**
15859
+ * @SINCE 1.108.0
15860
+ *
15861
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
15862
+ *
15863
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
15864
+ * global configuration is used.
15865
+ *
15866
+ * @returns Value of property `calendarWeekNumbering`
15867
+ */
15868
+ getCalendarWeekNumbering():
15869
+ | CalendarWeekNumbering
15870
+ | keyof typeof CalendarWeekNumbering;
15856
15871
  /**
15857
15872
  * The date as JavaScript Date object. This is independent from any formatter.
15858
15873
  *
@@ -16105,6 +16120,26 @@ declare module "sap/m/DatePicker" {
16105
16120
  */
16106
16121
  oSpecialDate: DateTypeRange
16107
16122
  ): DateTypeRange;
16123
+ /**
16124
+ * @SINCE 1.108.0
16125
+ *
16126
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
16127
+ *
16128
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
16129
+ * global configuration is used.
16130
+ *
16131
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
16132
+ *
16133
+ * @returns Reference to `this` in order to allow method chaining
16134
+ */
16135
+ setCalendarWeekNumbering(
16136
+ /**
16137
+ * New value for property `calendarWeekNumbering`
16138
+ */
16139
+ sCalendarWeekNumbering?:
16140
+ | CalendarWeekNumbering
16141
+ | keyof typeof CalendarWeekNumbering
16142
+ ): this;
16108
16143
  /**
16109
16144
  * Sets the displayFormat of the DatePicker.
16110
16145
  *
@@ -16378,6 +16413,17 @@ declare module "sap/m/DatePicker" {
16378
16413
  */
16379
16414
  hideInput?: boolean | PropertyBindingInfo | `{${string}}`;
16380
16415
 
16416
+ /**
16417
+ * @SINCE 1.108.0
16418
+ *
16419
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
16420
+ * global configuration is used.
16421
+ */
16422
+ calendarWeekNumbering?:
16423
+ | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
16424
+ | PropertyBindingInfo
16425
+ | `{${string}}`;
16426
+
16381
16427
  /**
16382
16428
  * @SINCE 1.38.5
16383
16429
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
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.105.1
267
+ // For Library Version: 1.105.3
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
@@ -15826,6 +15835,45 @@ declare module "sap/ui/core/CustomData" {
15826
15835
  }
15827
15836
  }
15828
15837
 
15838
+ declare module "sap/ui/core/date/CalendarWeekNumbering" {
15839
+ /**
15840
+ * @SINCE 1.105.2
15841
+ *
15842
+ * The `CalendarWeekNumbering` enum defines how to calculate calendar weeks. Each value defines:
15843
+ * - The first day of the week,
15844
+ * - the first week of the year.
15845
+ *
15846
+ * Note: This API has been introduced with version 1.108 and downported to this release with patch level
15847
+ * 2.
15848
+ */
15849
+ enum CalendarWeekNumbering {
15850
+ /**
15851
+ * The default calendar week numbering:
15852
+ *
15853
+ * The framework determines the week numbering scheme; currently it is derived from the active format locale.
15854
+ * Future versions of UI5 might select a different week numbering scheme.
15855
+ */
15856
+ Default = "Default",
15857
+ /**
15858
+ * Official calendar week numbering in most of Europe (ISO 8601 standard):
15859
+ * Monday is first day of the week, the week containing January 4th is first week of the year.
15860
+ */
15861
+ ISO_8601 = "ISO_8601",
15862
+ /**
15863
+ * Official calendar week numbering in much of the Middle East (Middle Eastern calendar):
15864
+ * Saturday is first day of the week, the week containing January 1st is first week of the year.
15865
+ */
15866
+ MiddleEastern = "MiddleEastern",
15867
+ /**
15868
+ * Official calendar week numbering in the United States, Canada, Brazil, Israel, Japan, and other countries
15869
+ * (Western traditional calendar):
15870
+ * Sunday is first day of the week, the week containing January 1st is first week of the year.
15871
+ */
15872
+ WesternTraditional = "WesternTraditional",
15873
+ }
15874
+ export default CalendarWeekNumbering;
15875
+ }
15876
+
15829
15877
  declare module "sap/ui/core/DeclarativeSupport" {
15830
15878
  import HTMLView from "sap/ui/core/mvc/HTMLView";
15831
15879
 
@@ -19352,6 +19400,8 @@ declare module "sap/ui/core/ExtensionPoint" {
19352
19400
  }
19353
19401
 
19354
19402
  declare module "sap/ui/core/format/DateFormat" {
19403
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
19404
+
19355
19405
  import CalendarType from "sap/ui/core/CalendarType";
19356
19406
 
19357
19407
  import Locale from "sap/ui/core/Locale";
@@ -19380,6 +19430,14 @@ declare module "sap/ui/core/format/DateFormat" {
19380
19430
  * Object which defines the format options
19381
19431
  */
19382
19432
  oFormatOptions?: {
19433
+ /**
19434
+ * @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
19435
+ * and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
19436
+ * downported to this release with patch level 2.
19437
+ */
19438
+ calendarWeekNumbering?:
19439
+ | CalendarWeekNumbering
19440
+ | keyof typeof CalendarWeekNumbering;
19383
19441
  /**
19384
19442
  * @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
19385
19443
  * the value taken from the locale is used
@@ -19468,6 +19526,14 @@ declare module "sap/ui/core/format/DateFormat" {
19468
19526
  * Object which defines the format options
19469
19527
  */
19470
19528
  oFormatOptions?: {
19529
+ /**
19530
+ * @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
19531
+ * and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
19532
+ * downported to this release with patch level 2.
19533
+ */
19534
+ calendarWeekNumbering?:
19535
+ | CalendarWeekNumbering
19536
+ | keyof typeof CalendarWeekNumbering;
19471
19537
  /**
19472
19538
  * @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
19473
19539
  * the value taken from the locale is used
@@ -19560,6 +19626,14 @@ declare module "sap/ui/core/format/DateFormat" {
19560
19626
  * An object which defines the format options
19561
19627
  */
19562
19628
  oFormatOptions?: {
19629
+ /**
19630
+ * @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
19631
+ * and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
19632
+ * downported to this release with patch level 2.
19633
+ */
19634
+ calendarWeekNumbering?:
19635
+ | CalendarWeekNumbering
19636
+ | keyof typeof CalendarWeekNumbering;
19563
19637
  /**
19564
19638
  * @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
19565
19639
  * the value taken from the locale is used
@@ -19649,6 +19723,14 @@ declare module "sap/ui/core/format/DateFormat" {
19649
19723
  * Object which defines the format options
19650
19724
  */
19651
19725
  oFormatOptions?: {
19726
+ /**
19727
+ * @since 1.105.2 specifies the calendar week numbering. If specified, this overwrites `oFormatOptions.firstDayOfWeek`
19728
+ * and `oFormatOptions.minimalDaysInFirstWeek`. Note: This API has been introduced with version 1.108 and
19729
+ * downported to this release with patch level 2.
19730
+ */
19731
+ calendarWeekNumbering?:
19732
+ | CalendarWeekNumbering
19733
+ | keyof typeof CalendarWeekNumbering;
19652
19734
  /**
19653
19735
  * @since 1.105.0 specifies the first day of the week starting with `0` (which is Sunday); if not defined,
19654
19736
  * the value taken from the locale is used
@@ -75616,6 +75698,8 @@ declare namespace sap {
75616
75698
 
75617
75699
  "sap/ui/core/CustomData": undefined;
75618
75700
 
75701
+ "sap/ui/core/date/CalendarWeekNumbering": undefined;
75702
+
75619
75703
  "sap/ui/core/date/UniversalDate": undefined;
75620
75704
 
75621
75705
  "sap/ui/core/date/UniversalDateUtils": undefined;
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
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.105.1
1
+ // For Library Version: 1.105.3
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.105.1
1
+ // For Library Version: 1.105.3
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.105.1
1
+ // For Library Version: 1.105.3
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.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
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.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
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,19 @@ declare module "sap/ui/unified/Calendar" {
851
853
  * ariaLabelledBy}.
852
854
  */
853
855
  getAriaLabelledBy(): ID[];
856
+ /**
857
+ * @SINCE 1.108.0
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.
863
+ *
864
+ * @returns Value of property `calendarWeekNumbering`
865
+ */
866
+ getCalendarWeekNumbering():
867
+ | CalendarWeekNumbering
868
+ | keyof typeof CalendarWeekNumbering;
854
869
  /**
855
870
  * @SINCE 1.38.0
856
871
  *
@@ -867,8 +882,9 @@ declare module "sap/ui/unified/Calendar" {
867
882
  *
868
883
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
869
884
  *
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.
885
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
886
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
887
+ * with the calendarWeekNumbering property.
872
888
  *
873
889
  * Default value is `-1`.
874
890
  *
@@ -1242,13 +1258,34 @@ declare module "sap/ui/unified/Calendar" {
1242
1258
  */
1243
1259
  vSpecialDate: int | string | DateTypeRange
1244
1260
  ): DateTypeRange | null;
1261
+ /**
1262
+ * @SINCE 1.108.0
1263
+ *
1264
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
1265
+ *
1266
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
1267
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
1268
+ *
1269
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1270
+ *
1271
+ * @returns Reference to `this` in order to allow method chaining
1272
+ */
1273
+ setCalendarWeekNumbering(
1274
+ /**
1275
+ * New value for property `calendarWeekNumbering`
1276
+ */
1277
+ sCalendarWeekNumbering?:
1278
+ | CalendarWeekNumbering
1279
+ | keyof typeof CalendarWeekNumbering
1280
+ ): this;
1245
1281
  /**
1246
1282
  * @SINCE 1.28.9
1247
1283
  *
1248
1284
  * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
1249
1285
  *
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.
1286
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
1287
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
1288
+ * with the calendarWeekNumbering property.
1252
1289
  *
1253
1290
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1254
1291
  *
@@ -1492,8 +1529,9 @@ declare module "sap/ui/unified/Calendar" {
1492
1529
  /**
1493
1530
  * @SINCE 1.28.9
1494
1531
  *
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.
1532
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
1533
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
1534
+ * with the calendarWeekNumbering property.
1497
1535
  */
1498
1536
  firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
1499
1537
 
@@ -1584,6 +1622,17 @@ declare module "sap/ui/unified/Calendar" {
1584
1622
  */
1585
1623
  showCurrentDateButton?: boolean | PropertyBindingInfo | `{${string}}`;
1586
1624
 
1625
+ /**
1626
+ * @SINCE 1.108.0
1627
+ *
1628
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
1629
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
1630
+ */
1631
+ calendarWeekNumbering?:
1632
+ | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
1633
+ | PropertyBindingInfo
1634
+ | `{${string}}`;
1635
+
1587
1636
  /**
1588
1637
  * Dates or date ranges for selected dates.
1589
1638
  *
@@ -2979,6 +3028,8 @@ declare module "sap/ui/unified/calendar/Month" {
2979
3028
 
2980
3029
  import Event from "sap/ui/base/Event";
2981
3030
 
3031
+ import CalendarWeekNumbering from "sap/ui/core/date/CalendarWeekNumbering";
3032
+
2982
3033
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2983
3034
 
2984
3035
  import CalendarType from "sap/ui/core/CalendarType";
@@ -3419,6 +3470,19 @@ declare module "sap/ui/unified/calendar/Month" {
3419
3470
  * ariaLabelledBy}.
3420
3471
  */
3421
3472
  getAriaLabelledBy(): ID[];
3473
+ /**
3474
+ * @SINCE 1.108.0
3475
+ *
3476
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
3477
+ *
3478
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
3479
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
3480
+ *
3481
+ * @returns Value of property `calendarWeekNumbering`
3482
+ */
3483
+ getCalendarWeekNumbering():
3484
+ | CalendarWeekNumbering
3485
+ | keyof typeof CalendarWeekNumbering;
3422
3486
  /**
3423
3487
  * Gets current value of property {@link #getDate date}.
3424
3488
  *
@@ -3441,8 +3505,9 @@ declare module "sap/ui/unified/calendar/Month" {
3441
3505
  *
3442
3506
  * Gets current value of property {@link #getFirstDayOfWeek firstDayOfWeek}.
3443
3507
  *
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.
3508
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
3509
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
3510
+ * with the calendarWeekNumbering property.
3446
3511
  *
3447
3512
  * Default value is `-1`.
3448
3513
  *
@@ -3728,6 +3793,26 @@ declare module "sap/ui/unified/calendar/Month" {
3728
3793
  */
3729
3794
  vSpecialDate: int | string | DateTypeRange
3730
3795
  ): DateTypeRange | null;
3796
+ /**
3797
+ * @SINCE 1.108.0
3798
+ *
3799
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
3800
+ *
3801
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
3802
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
3803
+ *
3804
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3805
+ *
3806
+ * @returns Reference to `this` in order to allow method chaining
3807
+ */
3808
+ setCalendarWeekNumbering(
3809
+ /**
3810
+ * New value for property `calendarWeekNumbering`
3811
+ */
3812
+ sCalendarWeekNumbering?:
3813
+ | CalendarWeekNumbering
3814
+ | keyof typeof CalendarWeekNumbering
3815
+ ): this;
3731
3816
  /**
3732
3817
  * Sets a new value for property {@link #getDate date}.
3733
3818
  *
@@ -3749,8 +3834,9 @@ declare module "sap/ui/unified/calendar/Month" {
3749
3834
  *
3750
3835
  * Sets a new value for property {@link #getFirstDayOfWeek firstDayOfWeek}.
3751
3836
  *
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.
3837
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
3838
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
3839
+ * with the calendarWeekNumbering property.
3754
3840
  *
3755
3841
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3756
3842
  *
@@ -3949,8 +4035,9 @@ declare module "sap/ui/unified/calendar/Month" {
3949
4035
  /**
3950
4036
  * @SINCE 1.28.9
3951
4037
  *
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.
4038
+ * If the property is set, this day marks the start of the displayed week. Valid values are 0 to 6. If no
4039
+ * valid property is set, the current locale's default is applied. Note: This property should not be used
4040
+ * with the calendarWeekNumbering property.
3954
4041
  */
3955
4042
  firstDayOfWeek?: int | PropertyBindingInfo | `{${string}}`;
3956
4043
 
@@ -4001,6 +4088,17 @@ declare module "sap/ui/unified/calendar/Month" {
4001
4088
  */
4002
4089
  showWeekNumbers?: boolean | PropertyBindingInfo | `{${string}}`;
4003
4090
 
4091
+ /**
4092
+ * @SINCE 1.108.0
4093
+ *
4094
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
4095
+ * global configuration is used. Note: This property should not be used with firstDayOfWeek property.
4096
+ */
4097
+ calendarWeekNumbering?:
4098
+ | (CalendarWeekNumbering | keyof typeof CalendarWeekNumbering)
4099
+ | PropertyBindingInfo
4100
+ | `{${string}}`;
4101
+
4004
4102
  /**
4005
4103
  * Date Ranges for selected dates of the DatePicker
4006
4104
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.105.3
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**