@sapui5/ts-types 1.106.0 → 1.107.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 (65) hide show
  1. package/README.md +6 -2
  2. package/package.json +1 -1
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.esh.search.ui.d.ts +63 -25
  8. package/types/sap.f.d.ts +810 -163
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +47 -47
  11. package/types/sap.fe.macros.d.ts +82 -6
  12. package/types/sap.fe.navigation.d.ts +1 -1
  13. package/types/sap.fe.templates.d.ts +51 -4
  14. package/types/sap.fe.test.d.ts +1 -1
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +9 -1
  17. package/types/sap.insights.d.ts +1 -1
  18. package/types/sap.landvisz.d.ts +1 -1
  19. package/types/sap.m.d.ts +149 -99
  20. package/types/sap.makit.d.ts +1 -1
  21. package/types/sap.me.d.ts +1 -1
  22. package/types/sap.ndc.d.ts +1 -1
  23. package/types/sap.ovp.d.ts +1 -1
  24. package/types/sap.rules.ui.d.ts +1 -1
  25. package/types/sap.sac.df.d.ts +301 -1
  26. package/types/sap.sac.grid.d.ts +1 -1
  27. package/types/sap.suite.ui.commons.d.ts +2 -37
  28. package/types/sap.suite.ui.generic.template.d.ts +15 -2
  29. package/types/sap.suite.ui.microchart.d.ts +1 -1
  30. package/types/sap.tnt.d.ts +1 -1
  31. package/types/sap.ui.codeeditor.d.ts +1 -1
  32. package/types/sap.ui.commons.d.ts +1 -1
  33. package/types/sap.ui.comp.d.ts +61 -1
  34. package/types/sap.ui.core.d.ts +443 -147
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +1 -1
  37. package/types/sap.ui.fl.d.ts +3 -1
  38. package/types/sap.ui.generic.app.d.ts +1 -1
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +195 -19
  41. package/types/sap.ui.layout.d.ts +1 -1
  42. package/types/sap.ui.mdc.d.ts +5 -1
  43. package/types/sap.ui.richtexteditor.d.ts +36 -17
  44. package/types/sap.ui.rta.d.ts +1 -1
  45. package/types/sap.ui.suite.d.ts +1 -1
  46. package/types/sap.ui.support.d.ts +1 -1
  47. package/types/sap.ui.table.d.ts +7 -7
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +1 -1
  50. package/types/sap.ui.ux3.d.ts +1 -1
  51. package/types/sap.ui.vbm.d.ts +1 -1
  52. package/types/sap.ui.vk.d.ts +1 -1
  53. package/types/sap.ui.vtm.d.ts +1 -1
  54. package/types/sap.ui.webc.common.d.ts +1 -1
  55. package/types/sap.ui.webc.fiori.d.ts +1 -1
  56. package/types/sap.ui.webc.main.d.ts +1 -1
  57. package/types/sap.uiext.inbox.d.ts +1 -1
  58. package/types/sap.ushell.d.ts +1 -1
  59. package/types/sap.ushell_abap.d.ts +1 -1
  60. package/types/sap.uxap.d.ts +36 -1
  61. package/types/sap.viz.d.ts +1 -1
  62. package/types/sap.webanalytics.core.d.ts +1 -1
  63. package/types/sap.zen.commons.d.ts +1 -1
  64. package/types/sap.zen.crosstab.d.ts +1 -1
  65. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1047,6 +1047,14 @@ declare namespace sap {
1047
1047
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1048
1048
  | `{${string}}`;
1049
1049
 
1050
+ /**
1051
+ * Determines whether the Section title wraps on multiple lines, when the available space is not enough.
1052
+ */
1053
+ wrapTitle?:
1054
+ | boolean
1055
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1056
+ | `{${string}}`;
1057
+
1050
1058
  /**
1051
1059
  * The list of Subsections.
1052
1060
  */
@@ -6565,6 +6573,16 @@ declare namespace sap {
6565
6573
  * @returns Value of property `titleUppercase`
6566
6574
  */
6567
6575
  getTitleUppercase(): boolean;
6576
+ /**
6577
+ * Gets current value of property {@link #getWrapTitle wrapTitle}.
6578
+ *
6579
+ * Determines whether the Section title wraps on multiple lines, when the available space is not enough.
6580
+ *
6581
+ * Default value is `false`.
6582
+ *
6583
+ * @returns Value of property `wrapTitle`
6584
+ */
6585
+ getWrapTitle(): boolean;
6568
6586
  /**
6569
6587
  * Checks for the provided `sap.uxap.ObjectPageSubSection` in the aggregation {@link #getSubSections subSections}.
6570
6588
  * and returns its index if found or -1 otherwise.
@@ -6672,6 +6690,23 @@ declare namespace sap {
6672
6690
  */
6673
6691
  bTitleUppercase?: boolean
6674
6692
  ): this;
6693
+ /**
6694
+ * Sets a new value for property {@link #getWrapTitle wrapTitle}.
6695
+ *
6696
+ * Determines whether the Section title wraps on multiple lines, when the available space is not enough.
6697
+ *
6698
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6699
+ *
6700
+ * Default value is `false`.
6701
+ *
6702
+ * @returns Reference to `this` in order to allow method chaining
6703
+ */
6704
+ setWrapTitle(
6705
+ /**
6706
+ * New value for property `wrapTitle`
6707
+ */
6708
+ bWrapTitle?: boolean
6709
+ ): this;
6675
6710
  }
6676
6711
  /**
6677
6712
  * @SINCE 1.26
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.106.0
1
+ // For Library Version: 1.107.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {