@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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/ts-types",
3
- "version": "1.84.29",
3
+ "version": "1.84.32",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://ui5.sap.com",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.28
1
+ // For Library Version: 1.84.32
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.84.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.18
1
+ // For Library Version: 1.84.21
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -13166,6 +13166,12 @@ declare namespace sap {
13166
13166
  */
13167
13167
  mouseWheelZoomType?: sap.gantt.MouseWheelZoomType;
13168
13168
 
13169
+ /**
13170
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
13171
+ * global configuration is used.
13172
+ */
13173
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
13174
+
13169
13175
  /**
13170
13176
  * Entire time span Gantt Chart can display in the chart area We recommend that you set the type of this
13171
13177
  * argument to `sap.gantt.config.TimeHorizon`. Otherwise some properties you set may not function properly.
@@ -13345,6 +13351,13 @@ declare namespace sap {
13345
13351
  * Default value is `sap.ui.core.CalendarType.Gregorian`.
13346
13352
  */
13347
13353
  getCalendarType(): string;
13354
+ /**
13355
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
13356
+ *
13357
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
13358
+ * global configuration is used.
13359
+ */
13360
+ getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
13348
13361
  /**
13349
13362
  * Gets current value of property {@link #getCoarsestTimeLineOption coarsestTimeLineOption}.
13350
13363
  *
@@ -13526,6 +13539,20 @@ declare namespace sap {
13526
13539
  */
13527
13540
  sCalendarType?: string
13528
13541
  ): sap.gantt.axistime.AxisTimeStrategyBase;
13542
+ /**
13543
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
13544
+ *
13545
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
13546
+ * global configuration is used.
13547
+ *
13548
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13549
+ */
13550
+ setCalendarWeekNumbering(
13551
+ /**
13552
+ * New value for property `calendarWeekNumbering`
13553
+ */
13554
+ sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
13555
+ ): sap.gantt.axistime.AxisTimeStrategyBase;
13529
13556
  /**
13530
13557
  * Sets a new value for property {@link #getCoarsestTimeLineOption coarsestTimeLineOption}.
13531
13558
  *
package/types/sap.m.d.ts CHANGED
@@ -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
  /**
@@ -10961,6 +10961,14 @@ declare namespace sap {
10961
10961
  */
10962
10962
  showFooter?: boolean;
10963
10963
 
10964
+ /**
10965
+ * @SINCE 1.108.0
10966
+ *
10967
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
10968
+ * global configuration is used.
10969
+ */
10970
+ calendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering;
10971
+
10964
10972
  /**
10965
10973
  * @SINCE 1.46.0
10966
10974
  *
@@ -15706,6 +15714,13 @@ declare namespace sap {
15706
15714
  */
15707
15715
  textDirection?: sap.ui.core.TextDirection;
15708
15716
 
15717
+ /**
15718
+ * @SINCE 1.110
15719
+ *
15720
+ * Еnables overriding of the default state announcement.
15721
+ */
15722
+ stateAnnouncementText?: string;
15723
+
15709
15724
  /**
15710
15725
  * @SINCE 1.54
15711
15726
  *
@@ -15715,6 +15730,8 @@ declare namespace sap {
15715
15730
 
15716
15731
  /**
15717
15732
  * Association to controls / IDs, which describe this control (see WAI-ARIA attribute aria-describedby).
15733
+ *
15734
+ * **Note:** The additional description will take effect only if `active` property is set to `true`.
15718
15735
  */
15719
15736
  ariaDescribedBy?: sap.ui.core.Control[] | string[];
15720
15737
  }
@@ -24633,7 +24650,7 @@ declare namespace sap {
24633
24650
  */
24634
24651
  class Breadcrumbs
24635
24652
  extends sap.ui.core.Control
24636
- implements sap.m.IBreadcrumbs {
24653
+ implements sap.m.IBreadcrumbs, sap.m.IToolbarInteractiveControl {
24637
24654
  /**
24638
24655
  * Constructor for a new `Breadcrumbs`.
24639
24656
  *
@@ -25537,7 +25554,7 @@ declare namespace sap {
25537
25554
  */
25538
25555
  class Button
25539
25556
  extends sap.ui.core.Control
25540
- implements sap.ui.core.IFormContent {
25557
+ implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl {
25541
25558
  /**
25542
25559
  * Constructor for a new `Button`.
25543
25560
  *
@@ -26860,7 +26877,7 @@ declare namespace sap {
26860
26877
  */
26861
26878
  class CheckBox
26862
26879
  extends sap.ui.core.Control
26863
- implements sap.ui.core.IFormContent {
26880
+ implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl {
26864
26881
  /**
26865
26882
  * Constructor for a new `CheckBox`.
26866
26883
  *
@@ -28776,7 +28793,9 @@ declare namespace sap {
28776
28793
  * truncated.
28777
28794
  * - On phone devices the combo box option list opens a dialog.
28778
28795
  */
28779
- class ComboBox extends sap.m.ComboBoxBase {
28796
+ class ComboBox
28797
+ extends sap.m.ComboBoxBase
28798
+ implements sap.m.IToolbarInteractiveControl {
28780
28799
  /**
28781
28800
  * Constructor for a new ComboBox.
28782
28801
  *
@@ -30406,6 +30425,15 @@ declare namespace sap {
30406
30425
  */
30407
30426
  // @ts-ignore
30408
30427
  getAccessibilityInfo(): Object;
30428
+ /**
30429
+ * @SINCE 1.108.0
30430
+ *
30431
+ * Gets current value of property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
30432
+ *
30433
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
30434
+ * global configuration is used.
30435
+ */
30436
+ getCalendarWeekNumbering(): sap.ui.core.date.CalendarWeekNumbering;
30409
30437
  /**
30410
30438
  * The date as JavaScript Date object. This is independent from any formatter.
30411
30439
  *
@@ -30586,6 +30614,22 @@ declare namespace sap {
30586
30614
  */
30587
30615
  oSpecialDate: sap.ui.unified.DateTypeRange
30588
30616
  ): sap.ui.unified.DateTypeRange;
30617
+ /**
30618
+ * @SINCE 1.108.0
30619
+ *
30620
+ * Sets a new value for property {@link #getCalendarWeekNumbering calendarWeekNumbering}.
30621
+ *
30622
+ * If set, the calendar week numbering is used for display. If not set, the calendar week numbering of the
30623
+ * global configuration is used.
30624
+ *
30625
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
30626
+ */
30627
+ setCalendarWeekNumbering(
30628
+ /**
30629
+ * New value for property `calendarWeekNumbering`
30630
+ */
30631
+ sCalendarWeekNumbering?: sap.ui.core.date.CalendarWeekNumbering
30632
+ ): sap.m.DatePicker;
30589
30633
  /**
30590
30634
  * @SINCE 1.28.6
30591
30635
  *
@@ -31202,7 +31246,9 @@ declare namespace sap {
31202
31246
  * **Note:** This control should not be used any longer, instead please use the dedicated `sap.m.DatePicker`,
31203
31247
  * `sap.m.TimePicker` or `sap.m.DateTimePicker` control.
31204
31248
  */
31205
- class DateTimeInput extends sap.ui.core.Control {
31249
+ class DateTimeInput
31250
+ extends sap.ui.core.Control
31251
+ implements sap.m.IToolbarInteractiveControl {
31206
31252
  /**
31207
31253
  * Constructor for a new DateTimeInput.
31208
31254
  *
@@ -37056,7 +37102,9 @@ declare namespace sap {
37056
37102
  */
37057
37103
  class GenericTag
37058
37104
  extends sap.ui.core.Control
37059
- implements sap.m.IOverflowToolbarContent {
37105
+ implements
37106
+ sap.m.IOverflowToolbarContent,
37107
+ sap.m.IToolbarInteractiveControl {
37060
37108
  /**
37061
37109
  * Constructor for a new `sap.m.GenericTag`.
37062
37110
  *
@@ -41777,7 +41825,9 @@ declare namespace sap {
41777
41825
  * - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
41778
41826
  * be overwritten by the binding update.
41779
41827
  */
41780
- class Input extends sap.m.InputBase {
41828
+ class Input
41829
+ extends sap.m.InputBase
41830
+ implements sap.m.IToolbarInteractiveControl {
41781
41831
  /**
41782
41832
  * Constructor for a new `Input`.
41783
41833
  *
@@ -44278,7 +44328,8 @@ declare namespace sap {
44278
44328
  implements
44279
44329
  sap.ui.core.Label,
44280
44330
  sap.ui.core.IShrinkable,
44281
- sap.m.IOverflowToolbarContent {
44331
+ sap.m.IOverflowToolbarContent,
44332
+ sap.m.IToolbarInteractiveControl {
44282
44333
  /**
44283
44334
  * Constructor for a new Label.
44284
44335
  *
@@ -44958,7 +45009,10 @@ declare namespace sap {
44958
45009
  */
44959
45010
  class Link
44960
45011
  extends sap.ui.core.Control
44961
- implements sap.ui.core.IShrinkable, sap.ui.core.IFormContent {
45012
+ implements
45013
+ sap.ui.core.IShrinkable,
45014
+ sap.ui.core.IFormContent,
45015
+ sap.m.IToolbarInteractiveControl {
44962
45016
  /**
44963
45017
  * Constructor for a new `Link`.
44964
45018
  *
@@ -48648,7 +48702,9 @@ declare namespace sap {
48648
48702
  /**
48649
48703
  * The `sap.m.MenuButton` control enables the user to show a hierarchical menu.
48650
48704
  */
48651
- class MenuButton extends sap.ui.core.Control {
48705
+ class MenuButton
48706
+ extends sap.ui.core.Control
48707
+ implements sap.m.IToolbarInteractiveControl {
48652
48708
  /**
48653
48709
  * Constructor for a new MenuButton.
48654
48710
  *
@@ -59265,6 +59321,14 @@ declare namespace sap {
59265
59321
  * Default value is `ValueState.None`.
59266
59322
  */
59267
59323
  getState(): string;
59324
+ /**
59325
+ * @SINCE 1.110
59326
+ *
59327
+ * Gets current value of property {@link #getStateAnnouncementText stateAnnouncementText}.
59328
+ *
59329
+ * Еnables overriding of the default state announcement.
59330
+ */
59331
+ getStateAnnouncementText(): string;
59268
59332
  /**
59269
59333
  * Gets current value of property {@link #getText text}.
59270
59334
  *
@@ -59376,6 +59440,21 @@ declare namespace sap {
59376
59440
  */
59377
59441
  sValue: string
59378
59442
  ): sap.m.ObjectStatus;
59443
+ /**
59444
+ * @SINCE 1.110
59445
+ *
59446
+ * Sets a new value for property {@link #getStateAnnouncementText stateAnnouncementText}.
59447
+ *
59448
+ * Еnables overriding of the default state announcement.
59449
+ *
59450
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
59451
+ */
59452
+ setStateAnnouncementText(
59453
+ /**
59454
+ * New value for property `stateAnnouncementText`
59455
+ */
59456
+ sStateAnnouncementText: string
59457
+ ): sap.m.ObjectStatus;
59379
59458
  /**
59380
59459
  * Sets a new value for property {@link #getText text}.
59381
59460
  *
@@ -59601,7 +59680,7 @@ declare namespace sap {
59601
59680
  */
59602
59681
  class OverflowToolbarButton
59603
59682
  extends sap.m.Button
59604
- implements sap.f.IShellBar {
59683
+ implements sap.f.IShellBar, sap.m.IToolbarInteractiveControl {
59605
59684
  /**
59606
59685
  * Constructor for a new `OverflowToolbarButton`.
59607
59686
  */
@@ -73490,7 +73569,7 @@ declare namespace sap {
73490
73569
  */
73491
73570
  class RadioButton
73492
73571
  extends sap.ui.core.Control
73493
- implements sap.ui.core.IFormContent {
73572
+ implements sap.ui.core.IFormContent, sap.m.IToolbarInteractiveControl {
73494
73573
  /**
73495
73574
  * Constructor for a new RadioButton.
73496
73575
  *
@@ -76386,7 +76465,10 @@ declare namespace sap {
76386
76465
  */
76387
76466
  class SearchField
76388
76467
  extends sap.ui.core.Control
76389
- implements sap.ui.core.IFormContent, sap.f.IShellBar {
76468
+ implements
76469
+ sap.ui.core.IFormContent,
76470
+ sap.f.IShellBar,
76471
+ sap.m.IToolbarInteractiveControl {
76390
76472
  /**
76391
76473
  * Constructor for a new SearchField.
76392
76474
  *
@@ -77236,7 +77318,10 @@ declare namespace sap {
77236
77318
  */
77237
77319
  class SegmentedButton
77238
77320
  extends sap.ui.core.Control
77239
- implements sap.ui.core.IFormContent, sap.m.IOverflowToolbarContent {
77321
+ implements
77322
+ sap.ui.core.IFormContent,
77323
+ sap.m.IOverflowToolbarContent,
77324
+ sap.m.IToolbarInteractiveControl {
77240
77325
  /**
77241
77326
  * Constructor for a new `SegmentedButton`.
77242
77327
  *
@@ -78019,6 +78104,7 @@ declare namespace sap {
78019
78104
  implements
78020
78105
  sap.ui.core.IFormContent,
78021
78106
  sap.m.IOverflowToolbarContent,
78107
+ sap.m.IToolbarInteractiveControl,
78022
78108
  sap.f.IShellBar {
78023
78109
  /**
78024
78110
  * Constructor for a new `sap.m.Select`.
@@ -88455,7 +88541,10 @@ declare namespace sap {
88455
88541
  */
88456
88542
  class Switch
88457
88543
  extends sap.ui.core.Control
88458
- implements sap.ui.core.IFormContent, sap.m.IOverflowToolbarContent {
88544
+ implements
88545
+ sap.ui.core.IFormContent,
88546
+ sap.m.IOverflowToolbarContent,
88547
+ sap.m.IToolbarInteractiveControl {
88459
88548
  /**
88460
88549
  * Constructor for a new Switch.
88461
88550
  *
@@ -91943,7 +92032,10 @@ declare namespace sap {
91943
92032
  */
91944
92033
  class Text
91945
92034
  extends sap.ui.core.Control
91946
- implements sap.ui.core.IShrinkable, sap.ui.core.IFormContent {
92035
+ implements
92036
+ sap.ui.core.IShrinkable,
92037
+ sap.ui.core.IFormContent,
92038
+ sap.m.IToolbarInteractiveControl {
91947
92039
  /**
91948
92040
  * Constructor for a new Text.
91949
92041
  *
@@ -94370,7 +94462,9 @@ declare namespace sap {
94370
94462
  * - If the text is inside a text block.
94371
94463
  * - If The text is inside a form element.
94372
94464
  */
94373
- class Title extends sap.ui.core.Control implements sap.ui.core.IShrinkable {
94465
+ class Title
94466
+ extends sap.ui.core.Control
94467
+ implements sap.ui.core.IShrinkable, sap.m.IToolbarInteractiveControl {
94374
94468
  /**
94375
94469
  * Constructor for a new Title control.
94376
94470
  *
@@ -94638,7 +94732,9 @@ declare namespace sap {
94638
94732
  * Clicking or tapping a `ToggleButton` changes its state to `pressed`. The button returns to its initial
94639
94733
  * state when the user clicks or taps it again.
94640
94734
  */
94641
- class ToggleButton extends sap.m.Button {
94735
+ class ToggleButton
94736
+ extends sap.m.Button
94737
+ implements sap.m.IToolbarInteractiveControl {
94642
94738
  /**
94643
94739
  * Constructor for a new `ToggleButton`.
94644
94740
  *
@@ -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
  /**
package/types/sap.me.d.ts CHANGED
@@ -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
  /**