@sapui5/ts-types 1.101.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 (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1757 -134
  5. package/types/sap.chart.d.ts +376 -30
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +1 -669
  8. package/types/sap.f.d.ts +1948 -123
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +29 -1091
  11. package/types/sap.fe.macros.d.ts +58 -589
  12. package/types/sap.fe.navigation.d.ts +7 -1175
  13. package/types/sap.fe.templates.d.ts +2 -140
  14. package/types/sap.fe.test.d.ts +476 -213
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7540 -559
  17. package/types/sap.insights.d.ts +21 -0
  18. package/types/sap.landvisz.d.ts +1029 -80
  19. package/types/sap.m.d.ts +17162 -1399
  20. package/types/sap.makit.d.ts +579 -58
  21. package/types/sap.me.d.ts +579 -52
  22. package/types/sap.ndc.d.ts +137 -7
  23. package/types/sap.ovp.d.ts +5 -1
  24. package/types/sap.rules.ui.d.ts +171 -15
  25. package/types/sap.sac.df.d.ts +1629 -252
  26. package/types/sap.sac.grid.d.ts +91 -8
  27. package/types/sap.suite.ui.commons.d.ts +5573 -454
  28. package/types/sap.suite.ui.generic.template.d.ts +228 -54
  29. package/types/sap.suite.ui.microchart.d.ts +1814 -173
  30. package/types/sap.tnt.d.ts +282 -22
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3818 -347
  33. package/types/sap.ui.comp.d.ts +3965 -303
  34. package/types/sap.ui.core.d.ts +6395 -258
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +3 -1
  38. package/types/sap.ui.generic.app.d.ts +245 -64
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +318 -25
  41. package/types/sap.ui.layout.d.ts +1883 -239
  42. package/types/sap.ui.mdc.d.ts +1 -1
  43. package/types/sap.ui.richtexteditor.d.ts +341 -50
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +30 -1
  47. package/types/sap.ui.table.d.ts +1057 -87
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2738 -236
  50. package/types/sap.ui.ux3.d.ts +2421 -223
  51. package/types/sap.ui.vbm.d.ts +2006 -126
  52. package/types/sap.ui.vk.d.ts +5369 -326
  53. package/types/sap.ui.vtm.d.ts +1144 -52
  54. package/types/sap.uiext.inbox.d.ts +425 -24
  55. package/types/sap.ushell.d.ts +1500 -59
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +914 -99
  58. package/types/sap.viz.d.ts +5521 -387
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +168 -23
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +227 -14
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.101.1
1
+ // For Library Version: 1.103.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -10,152 +10,14 @@ declare namespace sap {
10
10
  /**
11
11
  * @SINCE 1.79.0
12
12
  *
13
- *
14
13
  * Extension API for list reports on SAP Fiori elements for OData V4.
15
14
  */
16
- class ExtensionAPI
17
- /* was: sap.fe.templates.ExtensionAPI */ extends Object {
18
- constructor();
19
-
20
- /**
21
- * Add any control as a dependent control to this SAP Fiori elements page.
22
- */
23
- addDependent(
24
- /**
25
- * Control to be added as a dependent control
26
- */
27
- oControl: sap.ui.core.Control
28
- ): void;
29
- /**
30
- * This method converts filter conditions to filters.
31
- */
32
- createFiltersFromFilterConditions(
33
- /**
34
- * Map containing the filter conditions of the FilterBar.
35
- */
36
- mFilterConditions: any
37
- ): any;
38
- /**
39
- * Get access to models managed by SAP Fiori elements.
40
- *
41
- * The following models can be accessed:
42
- *
43
- *
44
- * - undefined: the undefined model returns the SAPUI5 OData V4 model bound to this page
45
- *
46
- * - i18n / further data models defined in the manifest
47
- * ui: returns a SAPUI5 JSON model containing UI information.
48
- * Only the following properties are public and supported:
49
- *
50
- *
51
- * - isEditable: set to true if the application is in edit mode
52
- *
53
- *
54
- * .
55
- * editMode is deprecated and should not be used anymore. Use isEditable instead.
56
- */
57
- getModel(
58
- /**
59
- * Name of the model
60
- */
61
- sModelName?: string
62
- ): undefined | sap.ui.model.Model;
63
- /**
64
- * Gets the list entries currently selected for the displayed control.
65
- */
66
- getSelectedContexts(): any;
67
- /**
68
- * Load a fragment and go through the template preprocessor with the current page context.
69
- */
70
- loadFragment(
71
- /**
72
- * The settings object
73
- */
74
- mSettings: {
75
- /**
76
- * The contextPath to be used for the templating process
77
- */
78
- contextPath: string;
79
- /**
80
- * The controller to be attached to the fragment
81
- */
82
- controller: object;
83
- /**
84
- * The ID of the fragment itself
85
- */
86
- id: string;
87
- /**
88
- * The initial binding context
89
- */
90
- initialBindingContext: sap.ui.model.Context;
91
- /**
92
- * The name of the fragment to be loaded
93
- */
94
- name: string;
95
- }
96
- ): Promise<any>;
97
- /**
98
- * Navigate to another target.
99
- */
100
- navigateToTarget(
101
- /**
102
- * Name of the target route
103
- */
104
- sTarget: string,
105
- /**
106
- * Context instance
107
- */
108
- oContext: sap.ui.model.Context
109
- ): void;
110
- /**
111
- * Refreshes the List Report.
112
- * This method currently only supports triggering the search (by clicking on the GO button)
113
- * in the List Report Filter Bar. It can be used to request the initial load or to refresh the
114
- * currently shown data based on the filters entered by the user.
115
- * Please note: The Promise is resolved once the search is triggered and not once the data is returned.
116
- */
117
- refresh(): any;
118
- /**
119
- * Remove a dependent control from this SAP Fiori elements page.
120
- */
121
- removeDependent(
122
- /**
123
- * Control to be added as a dependent control
124
- */
125
- oControl: sap.ui.core.Control
126
- ): void;
127
- /**
128
- * Set the filter values for the given property in the filter bar.
129
- * The filter values can be either a single value or an array of values.
130
- * Each filter value must be represented as a string corresponding to the given operator.
131
- */
132
- setFilterValues(
133
- /**
134
- * The path to the property as a condition path
135
- */
136
- sConditionPath: string,
137
- /**
138
- * The operator to be used (optional) - if not set, the default operator (EQ) will be used
139
- */
140
- sOperator: undefined | string,
141
- /**
142
- * The values to be applied
143
- */
144
- vValues: undefined | string | string[]
145
- ): any;
146
- /**
147
- * Triggers an update of the app state.
148
- * Should be called if the state of a control, or any other state-relevant information, was changed.
149
- */
150
- updateAppState(): undefined | Promise<any>;
151
- }
15
+ export const ExtensionAPI: undefined;
152
16
  }
153
17
  }
154
18
  }
155
19
 
156
20
  interface IUI5DefineDependencyNames {
157
21
  "sap/fe/templates/library": undefined;
158
-
159
- "sap/fe/templates/ListReport/ExtensionAPI": undefined;
160
22
  }
161
23
  }