@sapui5/types 1.115.0 → 1.116.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 (66) hide show
  1. package/README.md +5 -3
  2. package/package.json +1 -1
  3. package/types/index.d.ts +11 -3
  4. package/types/sap.apf.d.ts +47 -40
  5. package/types/sap.ca.ui.d.ts +171 -161
  6. package/types/sap.chart.d.ts +56 -47
  7. package/types/sap.collaboration.d.ts +31 -38
  8. package/types/sap.esh.search.ui.d.ts +112 -109
  9. package/types/sap.f.d.ts +718 -786
  10. package/types/sap.fe.core.d.ts +206 -92
  11. package/types/sap.fe.macros.d.ts +66 -40
  12. package/types/sap.fe.navigation.d.ts +9 -13
  13. package/types/sap.fe.placeholder.d.ts +3 -0
  14. package/types/sap.fe.templates.d.ts +11 -9
  15. package/types/sap.fe.test.d.ts +40 -69
  16. package/types/sap.fe.tools.d.ts +3 -0
  17. package/types/sap.feedback.ui.d.ts +1 -1
  18. package/types/sap.gantt.d.ts +1223 -1502
  19. package/types/sap.insights.d.ts +3 -3
  20. package/types/sap.landvisz.d.ts +73 -67
  21. package/types/sap.m.d.ts +6504 -6706
  22. package/types/sap.makit.d.ts +55 -56
  23. package/types/sap.me.d.ts +71 -79
  24. package/types/sap.ndc.d.ts +44 -36
  25. package/types/sap.ovp.d.ts +25 -8
  26. package/types/sap.rules.ui.d.ts +38 -51
  27. package/types/sap.sac.df.d.ts +11 -12
  28. package/types/sap.suite.ui.commons.d.ts +1180 -1233
  29. package/types/sap.suite.ui.generic.template.d.ts +75 -82
  30. package/types/sap.suite.ui.microchart.d.ts +280 -291
  31. package/types/sap.tnt.d.ts +119 -86
  32. package/types/sap.ui.codeeditor.d.ts +28 -25
  33. package/types/sap.ui.commons.d.ts +691 -684
  34. package/types/sap.ui.comp.d.ts +2247 -2189
  35. package/types/sap.ui.core.d.ts +2434 -2444
  36. package/types/sap.ui.dt.d.ts +1 -1
  37. package/types/sap.ui.export.d.ts +38 -33
  38. package/types/sap.ui.fl.d.ts +55 -82
  39. package/types/sap.ui.generic.app.d.ts +39 -43
  40. package/types/sap.ui.generic.template.d.ts +1 -1
  41. package/types/sap.ui.integration.d.ts +401 -292
  42. package/types/sap.ui.layout.d.ts +369 -420
  43. package/types/sap.ui.mdc.d.ts +1557 -1344
  44. package/types/sap.ui.richtexteditor.d.ts +40 -33
  45. package/types/sap.ui.rta.d.ts +7 -7
  46. package/types/sap.ui.suite.d.ts +13 -11
  47. package/types/sap.ui.support.d.ts +12 -13
  48. package/types/sap.ui.table.d.ts +366 -368
  49. package/types/sap.ui.testrecorder.d.ts +1 -1
  50. package/types/sap.ui.unified.d.ts +961 -1007
  51. package/types/sap.ui.ux3.d.ts +663 -653
  52. package/types/sap.ui.vbm.d.ts +568 -541
  53. package/types/sap.ui.vk.d.ts +1511 -1834
  54. package/types/sap.ui.vtm.d.ts +335 -329
  55. package/types/sap.ui.webc.common.d.ts +7 -9
  56. package/types/sap.ui.webc.fiori.d.ts +1099 -509
  57. package/types/sap.ui.webc.main.d.ts +4937 -1323
  58. package/types/sap.uiext.inbox.d.ts +73 -63
  59. package/types/sap.ushell.d.ts +492 -1024
  60. package/types/sap.ushell_abap.d.ts +1 -1
  61. package/types/sap.uxap.d.ts +244 -277
  62. package/types/sap.viz.d.ts +993 -856
  63. package/types/sap.webanalytics.core.d.ts +1 -1
  64. package/types/sap.zen.commons.d.ts +7 -12
  65. package/types/sap.zen.crosstab.d.ts +4 -7
  66. package/types/sap.zen.dsh.d.ts +133 -157
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
@@ -53,7 +53,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
53
53
  *
54
54
  * The Absolute Layout positions its child controls absolutely
55
55
  */
56
- class AbsoluteLayout extends Control {
56
+ export default class AbsoluteLayout extends Control {
57
57
  /**
58
58
  * Constructor for a new layout/AbsoluteLayout.
59
59
  *
@@ -382,7 +382,6 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
382
382
  sWidth?: CSSSize
383
383
  ): this;
384
384
  }
385
- export default AbsoluteLayout;
386
385
 
387
386
  export interface $AbsoluteLayoutSettings extends $ControlSettings {
388
387
  /**
@@ -441,7 +440,7 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
441
440
  /**
442
441
  * @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
443
442
  */
444
- class MatrixLayout extends Control {
443
+ export default class MatrixLayout extends Control {
445
444
  /**
446
445
  * Constructor for a new layout/MatrixLayout.
447
446
  *
@@ -716,7 +715,6 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
716
715
  sWidths?: CSSSize[]
717
716
  ): this;
718
717
  }
719
- export default MatrixLayout;
720
718
 
721
719
  export interface $MatrixLayoutSettings extends $ControlSettings {
722
720
  /**
@@ -767,7 +765,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
767
765
  *
768
766
  * Non-control element used as part of a matrix layout's inner structure.
769
767
  */
770
- class MatrixLayoutCell extends UI5Element {
768
+ export default class MatrixLayoutCell extends UI5Element {
771
769
  /**
772
770
  * Constructor for a new layout/MatrixLayoutCell.
773
771
  *
@@ -860,7 +858,6 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
860
858
  sStyleClass: string
861
859
  ): MatrixLayoutCell;
862
860
  }
863
- export default MatrixLayoutCell;
864
861
 
865
862
  export interface $MatrixLayoutCellSettings extends $ElementSettings {}
866
863
  }
@@ -884,7 +881,7 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
884
881
  *
885
882
  * Non-control element used as part of a matrix layout's inner structure.
886
883
  */
887
- class MatrixLayoutRow extends UI5Element {
884
+ export default class MatrixLayoutRow extends UI5Element {
888
885
  /**
889
886
  * Constructor for a new layout/MatrixLayoutRow.
890
887
  *
@@ -1100,7 +1097,6 @@ declare module "sap/zen/commons/layout/MatrixLayoutRow" {
1100
1097
  sHeight?: CSSSize
1101
1098
  ): this;
1102
1099
  }
1103
- export default MatrixLayoutRow;
1104
1100
 
1105
1101
  export interface $MatrixLayoutRowSettings extends $ElementSettings {
1106
1102
  /**
@@ -1135,7 +1131,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1135
1131
  *
1136
1132
  * Is used to specify the position of a control in the AbsoluteLayout
1137
1133
  */
1138
- class PositionContainer extends UI5Element {
1134
+ export default class PositionContainer extends UI5Element {
1139
1135
  /**
1140
1136
  * Constructor for a new layout/PositionContainer.
1141
1137
  *
@@ -1381,7 +1377,6 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1381
1377
  oPos: object
1382
1378
  ): void;
1383
1379
  }
1384
- export default PositionContainer;
1385
1380
 
1386
1381
  export interface $PositionContainerSettings extends $ElementSettings {
1387
1382
  /**
@@ -1426,7 +1421,7 @@ declare module "sap/zen/commons/layout/PositionContainer" {
1426
1421
  declare module "sap/zen/commons/Padding" {
1427
1422
  /**
1428
1423
  * @deprecated (since 1.89)
1429
- * @EXPERIMENTAL
1424
+ * @experimental
1430
1425
  *
1431
1426
  * Padding, e.g. of a layout cell's content within the cell's borders. Note that all options except "None"
1432
1427
  * include a padding of 2px at the top and bottom, and differ only in the presence of a 4px padding towards
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.116.0
2
2
 
3
3
  declare module "sap/zen/crosstab/library" {}
4
4
 
@@ -16,7 +16,7 @@ declare module "sap/zen/crosstab/Crosstab" {
16
16
  *
17
17
  * Add your documentation for the new Crosstab
18
18
  */
19
- class Crosstab extends Control {
19
+ export default class Crosstab extends Control {
20
20
  /**
21
21
  * Constructor for a new Crosstab.
22
22
  *
@@ -124,7 +124,6 @@ declare module "sap/zen/crosstab/Crosstab" {
124
124
  sWidth?: CSSSize
125
125
  ): this;
126
126
  }
127
- export default Crosstab;
128
127
 
129
128
  export interface $CrosstabSettings extends $ControlSettings {
130
129
  /**
@@ -151,7 +150,7 @@ declare module "sap/zen/crosstab/DataCell" {
151
150
  *
152
151
  * Add your documentation for the new DataCell
153
152
  */
154
- class DataCell extends Control {
153
+ export default class DataCell extends Control {
155
154
  /**
156
155
  * Constructor for a new DataCell.
157
156
  *
@@ -353,7 +352,6 @@ declare module "sap/zen/crosstab/DataCell" {
353
352
  sText?: string
354
353
  ): this;
355
354
  }
356
- export default DataCell;
357
355
 
358
356
  export interface $DataCellSettings extends $ControlSettings {
359
357
  /**
@@ -400,7 +398,7 @@ declare module "sap/zen/crosstab/HeaderCell" {
400
398
  *
401
399
  * Add your documentation for the new HeaderCell
402
400
  */
403
- class HeaderCell extends Control {
401
+ export default class HeaderCell extends Control {
404
402
  /**
405
403
  * Constructor for a new HeaderCell.
406
404
  *
@@ -1022,7 +1020,6 @@ declare module "sap/zen/crosstab/HeaderCell" {
1022
1020
  sText?: string
1023
1021
  ): this;
1024
1022
  }
1025
- export default HeaderCell;
1026
1023
 
1027
1024
  export interface $HeaderCellSettings extends $ControlSettings {
1028
1025
  /**