@sapui5/ts-types 1.144.1 → 1.146.0

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 (69) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +172 -99
  7. package/types/sap.f.d.ts +71 -528
  8. package/types/sap.fe.ariba.d.ts +1 -1
  9. package/types/sap.fe.base.d.ts +300 -28
  10. package/types/sap.fe.controls.d.ts +1 -1
  11. package/types/sap.fe.core.d.ts +165 -4
  12. package/types/sap.fe.ina.d.ts +1 -1
  13. package/types/sap.fe.macros.d.ts +1137 -290
  14. package/types/sap.fe.navigation.d.ts +1 -1
  15. package/types/sap.fe.placeholder.d.ts +1 -1
  16. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  17. package/types/sap.fe.templates.d.ts +12 -1
  18. package/types/sap.fe.test.d.ts +150 -1
  19. package/types/sap.fe.tools.d.ts +1 -1
  20. package/types/sap.feedback.ui.d.ts +1 -1
  21. package/types/sap.gantt.d.ts +181 -1
  22. package/types/sap.insights.d.ts +1 -1
  23. package/types/sap.m.d.ts +356 -29
  24. package/types/sap.makit.d.ts +1 -1
  25. package/types/sap.me.d.ts +1 -1
  26. package/types/sap.ndc.d.ts +1 -1
  27. package/types/sap.ovp.d.ts +32 -2
  28. package/types/sap.rules.ui.d.ts +1 -1
  29. package/types/sap.sac.df.d.ts +1 -1
  30. package/types/sap.suite.ui.commons.d.ts +403 -21
  31. package/types/sap.suite.ui.generic.template.d.ts +46 -1
  32. package/types/sap.suite.ui.microchart.d.ts +2 -1
  33. package/types/sap.tnt.d.ts +27 -26
  34. package/types/sap.ui.codeeditor.d.ts +1 -1
  35. package/types/sap.ui.commons.d.ts +1 -1
  36. package/types/sap.ui.comp.d.ts +76 -2
  37. package/types/sap.ui.core.d.ts +1173 -456
  38. package/types/sap.ui.dt.d.ts +1 -1
  39. package/types/sap.ui.export.d.ts +1 -1
  40. package/types/sap.ui.fl.d.ts +9 -1
  41. package/types/sap.ui.generic.app.d.ts +1 -1
  42. package/types/sap.ui.generic.template.d.ts +1 -1
  43. package/types/sap.ui.geomap.d.ts +1 -1
  44. package/types/sap.ui.integration.d.ts +65 -265
  45. package/types/sap.ui.layout.d.ts +1 -1
  46. package/types/sap.ui.mdc.d.ts +357 -50
  47. package/types/sap.ui.richtexteditor.d.ts +33 -11
  48. package/types/sap.ui.rta.d.ts +1 -1
  49. package/types/sap.ui.suite.d.ts +1 -1
  50. package/types/sap.ui.support.d.ts +1 -1
  51. package/types/sap.ui.table.d.ts +5 -1
  52. package/types/sap.ui.testrecorder.d.ts +1 -1
  53. package/types/sap.ui.unified.d.ts +77 -3
  54. package/types/sap.ui.ux3.d.ts +1 -1
  55. package/types/sap.ui.vbm.d.ts +1 -1
  56. package/types/sap.ui.vk.d.ts +390 -2
  57. package/types/sap.ui.vtm.d.ts +2 -2
  58. package/types/sap.ui.webc.common.d.ts +1 -1
  59. package/types/sap.ui.webc.fiori.d.ts +1 -1
  60. package/types/sap.ui.webc.main.d.ts +1 -1
  61. package/types/sap.uiext.inbox.d.ts +1 -1
  62. package/types/sap.ushell.d.ts +188 -131
  63. package/types/sap.ushell_abap.d.ts +1 -1
  64. package/types/sap.uxap.d.ts +18 -8
  65. package/types/sap.viz.d.ts +1 -1
  66. package/types/sap.webanalytics.core.d.ts +1 -1
  67. package/types/sap.zen.commons.d.ts +1 -1
  68. package/types/sap.zen.crosstab.d.ts +1 -1
  69. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -60,8 +60,10 @@ declare namespace sap {
60
60
  * that may be introduced by other groups (hence this is not an enumeration).
61
61
  *
62
62
  * **Notes:**
63
- * - TinyMCE version 3 and 4 are no longer supported and cannot be used. If you set the property to TinyMCE,
64
- * it will load TinyMCE version 7.
63
+ * - Do not use TinyMCE versions that are no longer supported. We may remove such versions without notice
64
+ * in future releases if critical vulnerabilities or other serious issues are discovered in their code.
65
+ *
66
+ * - Setting the property to `TinyMCE` loads the latest TinyMCE available.
65
67
  * - Any attempts to set this property after the first rendering will not have any effect.
66
68
  * - The default value of the property will always resolve to the recommended version by UI5. Due to the
67
69
  * different support cycles, we will be constantly getting newer TinyMCE versions and update the default
@@ -276,7 +278,7 @@ declare namespace sap {
276
278
  * Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
277
279
  * footer aggregation accepts only controls inheriting `sap.m.IBar`.
278
280
  *
279
- * @experimental As of version 1.135.
281
+ * @since 1.135
280
282
  */
281
283
  footer?: sap.ui.core.Control;
282
284
 
@@ -408,7 +410,10 @@ declare namespace sap {
408
410
  * Restrictions:
409
411
  *
410
412
  * **Note: The `RichTextEditor` uses a third-party component and therefore some additional restrictions
411
- * apply for its proper usage and support. For more information see the Preamble section in {@link https://ui5.sap.com/#/topic/d4f3f1598373452bb73f2120930c133c sap.ui.richtexteditor}.
413
+ * apply for its proper usage and support. Use the native third-party API cautiously. Ensure you migrate
414
+ * to newer versions within 12 months of deprecation. Unsupported third-party versions, once deprecated
415
+ * by us, may be removed without notice if critical vulnerabilities or other serious issues are discovered
416
+ * in their code. For more information see the Preamble section in {@link https://ui5.sap.com/#/topic/d4f3f1598373452bb73f2120930c133c sap.ui.richtexteditor}.
412
417
  * **
413
418
  *
414
419
  * Guidelines:
@@ -869,7 +874,7 @@ declare namespace sap {
869
874
  /**
870
875
  * Destroys the footer in the aggregation {@link #getFooter footer}.
871
876
  *
872
- * @experimental As of version 1.135.
877
+ * @since 1.135
873
878
  *
874
879
  * @returns Reference to `this` in order to allow method chaining
875
880
  */
@@ -1092,8 +1097,10 @@ declare namespace sap {
1092
1097
  * that may be introduced by other groups (hence this is not an enumeration).
1093
1098
  *
1094
1099
  * **Notes:**
1095
- * - TinyMCE version 3 and 4 are no longer supported and cannot be used. If you set the property to TinyMCE,
1096
- * it will load TinyMCE version 7.
1100
+ * - Do not use TinyMCE versions that are no longer supported. We may remove such versions without notice
1101
+ * in future releases if critical vulnerabilities or other serious issues are discovered in their code.
1102
+ *
1103
+ * - Setting the property to `TinyMCE` loads the latest TinyMCE available.
1097
1104
  * - Any attempts to set this property after the first rendering will not have any effect.
1098
1105
  * - The default value of the property will always resolve to the recommended version by UI5. Due to the
1099
1106
  * different support cycles, we will be constantly getting newer TinyMCE versions and update the default
@@ -1116,7 +1123,7 @@ declare namespace sap {
1116
1123
  * Defines the footer of the control. The footer will be available only with custom toolbar. **Note:** The
1117
1124
  * footer aggregation accepts only controls inheriting `sap.m.IBar`.
1118
1125
  *
1119
- * @experimental As of version 1.135.
1126
+ * @since 1.135
1120
1127
  */
1121
1128
  getFooter(): sap.ui.core.Control;
1122
1129
  /**
@@ -1135,6 +1142,10 @@ declare namespace sap {
1135
1142
  * editor and breaks the wrapping character of the RichTextEditor control, so it should only be done in
1136
1143
  * justified cases.
1137
1144
  *
1145
+ * **Note: Use the native third-party API cautiously. Ensure you migrate to newer versions within 12 months
1146
+ * of deprecation. Unsupported third-party versions, once deprecated by us, may be removed without notice
1147
+ * if critical vulnerabilities or other serious issues are discovered in their code.**
1148
+ *
1138
1149
  *
1139
1150
  * @returns The native editor object (here: The TinyMCE editor instance)
1140
1151
  */
@@ -1621,7 +1632,7 @@ declare namespace sap {
1621
1632
  /**
1622
1633
  * Sets the aggregated {@link #getFooter footer}.
1623
1634
  *
1624
- * @experimental As of version 1.135.
1635
+ * @since 1.135
1625
1636
  *
1626
1637
  * @returns Reference to `this` in order to allow method chaining
1627
1638
  */
@@ -2173,7 +2184,11 @@ declare namespace sap {
2173
2184
  ): this;
2174
2185
  }
2175
2186
  /**
2176
- * Determines which editor component should be used for editing the text.
2187
+ * Determines which editor component should be used for editing the text. **Note: To ensure stability and
2188
+ * to access the latest features, use the most current TinyMCE version supported by your SAPUI5 version
2189
+ * by setting the property to `TinyMCE`.
2190
+ * Unsupported TinyMCE versions with critical vulnerabilities or other serious issues may be removed without
2191
+ * notice.**
2177
2192
  *
2178
2193
  * This enum is part of the 'sap/ui/richtexteditor/library' module export and must be accessed by the property
2179
2194
  * 'EditorType'.
@@ -2183,6 +2198,13 @@ declare namespace sap {
2183
2198
  * Uses latest recommended TinyMCE version Current one is TinyMCE 7
2184
2199
  */
2185
2200
  TinyMCE = "TinyMCE",
2201
+ /**
2202
+ * Uses TinyMCE version 6 as editor
2203
+ *
2204
+ * @deprecated As of version 1.136.13. TinyMCE 6 is no longer supported. Use the {@link sap.ui.richtexteditor.EditorType.TinyMCE }
2205
+ * instead.
2206
+ */
2207
+ TinyMCE6 = "TinyMCE6",
2186
2208
  /**
2187
2209
  * Uses TinyMCE version 7 as editor
2188
2210
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -4675,6 +4675,10 @@ declare namespace sap {
4675
4675
  * @returns Value of property `collapseRecursive`
4676
4676
  */
4677
4677
  getCollapseRecursive(): boolean;
4678
+ /**
4679
+ * Returns the Columns of the AnalyticalTable.
4680
+ */
4681
+ getColumns(): sap.ui.table.AnalyticalColumn[];
4678
4682
  /**
4679
4683
  * Gets current value of property {@link #getColumnVisibilityMenuSorter columnVisibilityMenuSorter}.
4680
4684
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -595,6 +595,16 @@ declare namespace sap {
595
595
  | sap.ui.base.ManagedObject.PropertyBindingInfo
596
596
  | `{${string}}`;
597
597
 
598
+ /**
599
+ * Determines if the week numbers are displayed.
600
+ *
601
+ * @since 1.145.0
602
+ */
603
+ showWeekNumbers?:
604
+ | boolean
605
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
606
+ | `{${string}}`;
607
+
598
608
  /**
599
609
  * Date ranges for selected dates. If `singleSelection` is set, only the first entry is used.
600
610
  *
@@ -4127,6 +4137,18 @@ declare namespace sap {
4127
4137
  * @returns Value of property `showHeader`
4128
4138
  */
4129
4139
  getShowHeader(): boolean;
4140
+ /**
4141
+ * Gets current value of property {@link #getShowWeekNumbers showWeekNumbers}.
4142
+ *
4143
+ * Determines if the week numbers are displayed.
4144
+ *
4145
+ * Default value is `false`.
4146
+ *
4147
+ * @since 1.145.0
4148
+ *
4149
+ * @returns Value of property `showWeekNumbers`
4150
+ */
4151
+ getShowWeekNumbers(): boolean;
4130
4152
  /**
4131
4153
  * Gets current value of property {@link #getSingleSelection singleSelection}.
4132
4154
  *
@@ -4363,6 +4385,25 @@ declare namespace sap {
4363
4385
  */
4364
4386
  bShowHeader?: boolean
4365
4387
  ): this;
4388
+ /**
4389
+ * Sets a new value for property {@link #getShowWeekNumbers showWeekNumbers}.
4390
+ *
4391
+ * Determines if the week numbers are displayed.
4392
+ *
4393
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4394
+ *
4395
+ * Default value is `false`.
4396
+ *
4397
+ * @since 1.145.0
4398
+ *
4399
+ * @returns Reference to `this` in order to allow method chaining
4400
+ */
4401
+ setShowWeekNumbers(
4402
+ /**
4403
+ * New value for property `showWeekNumbers`
4404
+ */
4405
+ bShowWeekNumbers?: boolean
4406
+ ): this;
4366
4407
  /**
4367
4408
  * Sets a new value for property {@link #getSingleSelection singleSelection}.
4368
4409
  *
@@ -7413,6 +7454,9 @@ declare namespace sap {
7413
7454
  /**
7414
7455
  * Allows users to upload all files from a given directory and its corresponding subdirectories.
7415
7456
  *
7457
+ * **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
7458
+ * after version 50. **Note:** Multiple directory selection is not supported.
7459
+ *
7416
7460
  * @since 1.105.0
7417
7461
  */
7418
7462
  directory?:
@@ -7423,6 +7467,10 @@ declare namespace sap {
7423
7467
  /**
7424
7468
  * Indicates whether the file uploader is required.
7425
7469
  *
7470
+ * **Note:** The control can be marked as required either by setting this property to `true` or by using
7471
+ * the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
7472
+ * property pointing to this control.
7473
+ *
7426
7474
  * @since 1.144
7427
7475
  */
7428
7476
  required?:
@@ -16912,6 +16960,9 @@ declare namespace sap {
16912
16960
  *
16913
16961
  * Allows users to upload all files from a given directory and its corresponding subdirectories.
16914
16962
  *
16963
+ * **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
16964
+ * after version 50. **Note:** Multiple directory selection is not supported.
16965
+ *
16915
16966
  * Default value is `false`.
16916
16967
  *
16917
16968
  * @since 1.105.0
@@ -16954,7 +17005,7 @@ declare namespace sap {
16954
17005
  *
16955
17006
  * Chosen HTTP request method for file upload.
16956
17007
  *
16957
- * Default value is `Post`.
17008
+ * Default value is `POST`.
16958
17009
  *
16959
17010
  * @since 1.81.0
16960
17011
  *
@@ -17143,6 +17194,10 @@ declare namespace sap {
17143
17194
  *
17144
17195
  * Indicates whether the file uploader is required.
17145
17196
  *
17197
+ * **Note:** The control can be marked as required either by setting this property to `true` or by using
17198
+ * the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
17199
+ * property pointing to this control.
17200
+ *
17146
17201
  * Default value is `false`.
17147
17202
  *
17148
17203
  * @since 1.144
@@ -17485,6 +17540,9 @@ declare namespace sap {
17485
17540
  *
17486
17541
  * Allows users to upload all files from a given directory and its corresponding subdirectories.
17487
17542
  *
17543
+ * **Note:** This feature is supported on all WebKit-based browsers as well as Microsoft Edge and Firefox
17544
+ * after version 50. **Note:** Multiple directory selection is not supported.
17545
+ *
17488
17546
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17489
17547
  *
17490
17548
  * Default value is `false`.
@@ -17544,7 +17602,7 @@ declare namespace sap {
17544
17602
  *
17545
17603
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17546
17604
  *
17547
- * Default value is `Post`.
17605
+ * Default value is `POST`.
17548
17606
  *
17549
17607
  * @since 1.81.0
17550
17608
  *
@@ -17779,6 +17837,10 @@ declare namespace sap {
17779
17837
  *
17780
17838
  * Indicates whether the file uploader is required.
17781
17839
  *
17840
+ * **Note:** The control can be marked as required either by setting this property to `true` or by using
17841
+ * the legacy approach of setting the `required` property to `true` on a `sap.m.Label` that has its `labelFor`
17842
+ * property pointing to this control.
17843
+ *
17782
17844
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
17783
17845
  *
17784
17846
  * Default value is `false`.
@@ -22912,10 +22974,22 @@ declare namespace sap {
22912
22974
  /**
22913
22975
  * HTTP request POST method.
22914
22976
  */
22977
+ POST = "POST",
22978
+ /**
22979
+ * HTTP request POST method.
22980
+ *
22981
+ * @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.POST} instead
22982
+ */
22915
22983
  Post = "POST",
22916
22984
  /**
22917
22985
  * HTTP request PUT method.
22918
22986
  */
22987
+ PUT = "PUT",
22988
+ /**
22989
+ * HTTP request PUT method.
22990
+ *
22991
+ * @deprecated As of version 1.145.0. use {@link sap.ui.unified.FileUploaderHttpRequestMethod.PUT} instead
22992
+ */
22919
22993
  Put = "PUT",
22920
22994
  }
22921
22995
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.144.0
1
+ // For Library Version: 1.146.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {