@sapui5/ts-types 1.102.1 → 1.103.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 (61) 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 +11 -11
  4. package/types/sap.chart.d.ts +2 -2
  5. package/types/sap.collaboration.d.ts +1 -1
  6. package/types/sap.esh.search.ui.d.ts +1 -1
  7. package/types/sap.f.d.ts +164 -24
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +29 -1159
  10. package/types/sap.fe.macros.d.ts +52 -627
  11. package/types/sap.fe.navigation.d.ts +1 -1309
  12. package/types/sap.fe.templates.d.ts +2 -161
  13. package/types/sap.fe.test.d.ts +12 -244
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +343 -63
  16. package/types/sap.insights.d.ts +2 -61
  17. package/types/sap.landvisz.d.ts +15 -15
  18. package/types/sap.m.d.ts +513 -284
  19. package/types/sap.makit.d.ts +5 -5
  20. package/types/sap.me.d.ts +2 -2
  21. package/types/sap.ndc.d.ts +75 -3
  22. package/types/sap.ovp.d.ts +6 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +163 -1
  25. package/types/sap.sac.grid.d.ts +1 -1
  26. package/types/sap.suite.ui.commons.d.ts +59 -59
  27. package/types/sap.suite.ui.generic.template.d.ts +98 -12
  28. package/types/sap.suite.ui.microchart.d.ts +14 -14
  29. package/types/sap.tnt.d.ts +5 -5
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +36 -36
  32. package/types/sap.ui.comp.d.ts +113 -28
  33. package/types/sap.ui.core.d.ts +294 -92
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +3 -1
  37. package/types/sap.ui.generic.app.d.ts +13 -6
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +3 -3
  40. package/types/sap.ui.layout.d.ts +33 -41
  41. package/types/sap.ui.mdc.d.ts +1 -1
  42. package/types/sap.ui.richtexteditor.d.ts +2 -2
  43. package/types/sap.ui.rta.d.ts +1 -1
  44. package/types/sap.ui.suite.d.ts +1 -1
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +9 -9
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +35 -35
  49. package/types/sap.ui.ux3.d.ts +43 -43
  50. package/types/sap.ui.vbm.d.ts +130 -55
  51. package/types/sap.ui.vk.d.ts +25 -25
  52. package/types/sap.ui.vtm.d.ts +15 -12
  53. package/types/sap.uiext.inbox.d.ts +3 -3
  54. package/types/sap.ushell.d.ts +14 -12
  55. package/types/sap.ushell_abap.d.ts +1 -1
  56. package/types/sap.uxap.d.ts +13 -13
  57. package/types/sap.viz.d.ts +8 -8
  58. package/types/sap.webanalytics.core.d.ts +1 -1
  59. package/types/sap.zen.commons.d.ts +4 -4
  60. package/types/sap.zen.crosstab.d.ts +1 -1
  61. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.103.0
2
2
 
3
3
  declare module "sap/insights/CardHelper" {
4
4
  /**
@@ -7,66 +7,7 @@ declare module "sap/insights/CardHelper" {
7
7
  *
8
8
  * Provides functionality for Insight cards CRUD operations.
9
9
  */
10
- interface CardHelper {
11
- /**
12
- * @EXPERIMENTAL (since 1.102)
13
- *
14
- * Support storing the insight card in SAP Insights service.
15
- */
16
- create(
17
- /**
18
- * Card name which will be used to store the card in the repository
19
- */
20
- sCardName: string,
21
- /**
22
- * Card manifest which needs to be stored in the repository
23
- */
24
- oCardManifest: object,
25
- /**
26
- * Should be set to true in case the Card has to be persisted as key user
27
- */
28
- isKeyUser: boolean
29
- ): void;
30
- /**
31
- * @EXPERIMENTAL (since 1.102)
32
- *
33
- * Support deleting the insight card from SAP Insights service.
34
- */
35
- delete(
36
- /**
37
- * Url of the card manifest
38
- */
39
- sCardManifestUrl: string,
40
- /**
41
- * Should be set to true in case the Card has to be persisted as key user
42
- */
43
- isKeyUser: boolean
44
- ): void;
45
- /**
46
- * @EXPERIMENTAL (since 1.102)
47
- *
48
- * Retrieve the insight cards from SAP Insights service for the current user.
49
- *
50
- * @returns Returns array of suggested cards
51
- */
52
- getSuggestedCards(): any[];
53
- /**
54
- * @EXPERIMENTAL (since 1.102)
55
- *
56
- * Retrieve the insight cards from SAP Insights service for the current user.
57
- *
58
- * @returns Returns array of user cards
59
- */
60
- getUserCards(): any[];
61
- /**
62
- * @EXPERIMENTAL (since 1.102)
63
- *
64
- * Method could be used check whether insights is supported or not.
65
- *
66
- * @returns Returns true if supported else false
67
- */
68
- isSupported(): boolean;
69
- }
10
+ interface CardHelper {}
70
11
  const CardHelper: CardHelper;
71
12
  export default CardHelper;
72
13
  }
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.0
1
+ // For Library Version: 1.103.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -747,7 +747,7 @@ declare namespace sap {
747
747
  * The menu to remove or its index or id
748
748
  */
749
749
  vMenu: int | string | sap.ui.commons.Menu
750
- ): sap.ui.commons.Menu;
750
+ ): sap.ui.commons.Menu | null;
751
751
  /**
752
752
  * Sets a new value for property {@link #getActionLabel actionLabel}.
753
753
  *
@@ -1122,7 +1122,7 @@ declare namespace sap {
1122
1122
  * The property to remove or its index or id
1123
1123
  */
1124
1124
  vProperty: int | string | sap.ui.core.Control
1125
- ): sap.ui.core.Control;
1125
+ ): sap.ui.core.Control | null;
1126
1126
  /**
1127
1127
  * Sets a new value for property {@link #getHeader header}.
1128
1128
  *
@@ -2905,7 +2905,7 @@ declare namespace sap {
2905
2905
  * The linearRow to remove or its index or id
2906
2906
  */
2907
2907
  vLinearRow: int | string | sap.landvisz.internal.LinearRowField
2908
- ): sap.landvisz.internal.LinearRowField;
2908
+ ): sap.landvisz.internal.LinearRowField | null;
2909
2909
  /**
2910
2910
  * Sets a new value for property {@link #getIconTitle iconTitle}.
2911
2911
  *
@@ -3261,7 +3261,7 @@ declare namespace sap {
3261
3261
  * The property to remove or its index or id
3262
3262
  */
3263
3263
  vProperty: int | string | sap.ui.core.Control
3264
- ): sap.ui.core.Control;
3264
+ ): sap.ui.core.Control | null;
3265
3265
  /**
3266
3266
  * Sets a new value for property {@link #getHeader header}.
3267
3267
  *
@@ -3451,7 +3451,7 @@ declare namespace sap {
3451
3451
  * The treeNode to remove or its index or id
3452
3452
  */
3453
3453
  vTreeNode: int | string | sap.ui.commons.TreeNode
3454
- ): sap.ui.commons.TreeNode;
3454
+ ): sap.ui.commons.TreeNode | null;
3455
3455
  /**
3456
3456
  * Sets a new value for property {@link #getBindingName bindingName}.
3457
3457
  *
@@ -4290,7 +4290,7 @@ declare namespace sap {
4290
4290
  * The connectionData to remove or its index or id
4291
4291
  */
4292
4292
  vConnectionData: int | string | sap.landvisz.internal.LinearRowField
4293
- ): sap.landvisz.internal.LinearRowField;
4293
+ ): sap.landvisz.internal.LinearRowField | null;
4294
4294
  /**
4295
4295
  * Sets a new value for property {@link #getConnectionId connectionId}.
4296
4296
  *
@@ -5105,7 +5105,7 @@ declare namespace sap {
5105
5105
  * The actionBar to remove or its index or id
5106
5106
  */
5107
5107
  vActionBar: int | string | sap.landvisz.internal.ActionBar
5108
- ): sap.landvisz.internal.ActionBar;
5108
+ ): sap.landvisz.internal.ActionBar | null;
5109
5109
  /**
5110
5110
  * Removes all the controls from the aggregation {@link #getActionBar actionBar}.
5111
5111
  *
@@ -5132,7 +5132,7 @@ declare namespace sap {
5132
5132
  * The dataContainer to remove or its index or id
5133
5133
  */
5134
5134
  vDataContainer: int | string | sap.landvisz.internal.DataContainer
5135
- ): sap.landvisz.internal.DataContainer;
5135
+ ): sap.landvisz.internal.DataContainer | null;
5136
5136
  /**
5137
5137
  * Sets a new value for property {@link #getActions actions}.
5138
5138
  *
@@ -6198,7 +6198,7 @@ declare namespace sap {
6198
6198
  * The connectionEntity to remove or its index or id
6199
6199
  */
6200
6200
  vConnectionEntity: int | string | sap.landvisz.ConnectionEntity
6201
- ): sap.landvisz.ConnectionEntity;
6201
+ ): sap.landvisz.ConnectionEntity | null;
6202
6202
  /**
6203
6203
  * Removes a connector from the aggregation {@link #getConnectors connectors}.
6204
6204
  *
@@ -6209,7 +6209,7 @@ declare namespace sap {
6209
6209
  * The connector to remove or its index or id
6210
6210
  */
6211
6211
  vConnector: int | string | sap.landvisz.Connector
6212
- ): sap.landvisz.Connector;
6212
+ ): sap.landvisz.Connector | null;
6213
6213
  /**
6214
6214
  * Removes a solutionOption from the aggregation {@link #getSolutionOptions solutionOptions}.
6215
6215
  *
@@ -6220,7 +6220,7 @@ declare namespace sap {
6220
6220
  * The solutionOption to remove or its index or id
6221
6221
  */
6222
6222
  vSolutionOption: int | string | sap.landvisz.Option
6223
- ): sap.landvisz.Option;
6223
+ ): sap.landvisz.Option | null;
6224
6224
  /**
6225
6225
  * Removes a system from the aggregation {@link #getSystems systems}.
6226
6226
  *
@@ -6231,7 +6231,7 @@ declare namespace sap {
6231
6231
  * The system to remove or its index or id
6232
6232
  */
6233
6233
  vSystem: int | string | sap.landvisz.LandscapeEntity
6234
- ): sap.landvisz.LandscapeEntity;
6234
+ ): sap.landvisz.LandscapeEntity | null;
6235
6235
  /**
6236
6236
  * Sets a new value for property {@link #getBoxDependencyLabel boxDependencyLabel}.
6237
6237
  *
@@ -6927,7 +6927,7 @@ declare namespace sap {
6927
6927
  * The optionEntity to remove or its index or id
6928
6928
  */
6929
6929
  vOptionEntity: int | string | sap.landvisz.OptionEntity
6930
- ): sap.landvisz.OptionEntity;
6930
+ ): sap.landvisz.OptionEntity | null;
6931
6931
  /**
6932
6932
  * Sets a new value for property {@link #getCurrentEntity currentEntity}.
6933
6933
  *
@@ -7204,7 +7204,7 @@ declare namespace sap {
7204
7204
  * The optionSource to remove or its index or id
7205
7205
  */
7206
7206
  vOptionSource: int | string | sap.landvisz.OptionSource
7207
- ): sap.landvisz.OptionSource;
7207
+ ): sap.landvisz.OptionSource | null;
7208
7208
  /**
7209
7209
  * Sets a new value for property {@link #getEnable enable}.
7210
7210
  *