@sapui5/types 1.113.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.
- package/LICENSE.txt +35 -0
- package/README.md +35 -0
- package/package.json +23 -0
- package/types/index.d.ts +67 -0
- package/types/sap.apf.d.ts +1026 -0
- package/types/sap.ca.ui.d.ts +14005 -0
- package/types/sap.chart.d.ts +4815 -0
- package/types/sap.collaboration.d.ts +2704 -0
- package/types/sap.esh.search.ui.d.ts +1595 -0
- package/types/sap.f.d.ts +20085 -0
- package/types/sap.fe.core.d.ts +1508 -0
- package/types/sap.fe.macros.d.ts +975 -0
- package/types/sap.fe.navigation.d.ts +917 -0
- package/types/sap.fe.templates.d.ts +522 -0
- package/types/sap.fe.test.d.ts +3533 -0
- package/types/sap.feedback.ui.d.ts +3 -0
- package/types/sap.gantt.d.ts +51684 -0
- package/types/sap.insights.d.ts +23 -0
- package/types/sap.landvisz.d.ts +7952 -0
- package/types/sap.m.d.ts +147796 -0
- package/types/sap.makit.d.ts +4533 -0
- package/types/sap.me.d.ts +3665 -0
- package/types/sap.ndc.d.ts +774 -0
- package/types/sap.ovp.d.ts +176 -0
- package/types/sap.rules.ui.d.ts +1471 -0
- package/types/sap.sac.df.d.ts +2292 -0
- package/types/sap.sac.grid.d.ts +774 -0
- package/types/sap.suite.ui.commons.d.ts +46971 -0
- package/types/sap.suite.ui.generic.template.d.ts +3431 -0
- package/types/sap.suite.ui.microchart.d.ts +12652 -0
- package/types/sap.tnt.d.ts +2227 -0
- package/types/sap.ui.codeeditor.d.ts +693 -0
- package/types/sap.ui.commons.d.ts +30235 -0
- package/types/sap.ui.comp.d.ts +37411 -0
- package/types/sap.ui.core.d.ts +78872 -0
- package/types/sap.ui.dt.d.ts +3 -0
- package/types/sap.ui.export.d.ts +843 -0
- package/types/sap.ui.fl.d.ts +1663 -0
- package/types/sap.ui.generic.app.d.ts +2683 -0
- package/types/sap.ui.generic.template.d.ts +3 -0
- package/types/sap.ui.integration.d.ts +4032 -0
- package/types/sap.ui.layout.d.ts +14472 -0
- package/types/sap.ui.mdc.d.ts +476 -0
- package/types/sap.ui.richtexteditor.d.ts +1666 -0
- package/types/sap.ui.rta.d.ts +124 -0
- package/types/sap.ui.suite.d.ts +685 -0
- package/types/sap.ui.support.d.ts +453 -0
- package/types/sap.ui.table.d.ts +9325 -0
- package/types/sap.ui.testrecorder.d.ts +9 -0
- package/types/sap.ui.unified.d.ts +20640 -0
- package/types/sap.ui.ux3.d.ts +18288 -0
- package/types/sap.ui.vbm.d.ts +17251 -0
- package/types/sap.ui.vk.d.ts +42381 -0
- package/types/sap.ui.vtm.d.ts +10547 -0
- package/types/sap.ui.webc.common.d.ts +113 -0
- package/types/sap.ui.webc.fiori.d.ts +13850 -0
- package/types/sap.ui.webc.main.d.ts +40833 -0
- package/types/sap.uiext.inbox.d.ts +4079 -0
- package/types/sap.ushell.d.ts +10255 -0
- package/types/sap.ushell_abap.d.ts +9 -0
- package/types/sap.uxap.d.ts +7636 -0
- package/types/sap.viz.d.ts +51209 -0
- package/types/sap.webanalytics.core.d.ts +3 -0
- package/types/sap.zen.commons.d.ts +1542 -0
- package/types/sap.zen.crosstab.d.ts +1159 -0
- package/types/sap.zen.dsh.d.ts +2132 -0
|
@@ -0,0 +1,176 @@
|
|
|
1
|
+
// For Library Version: 1.113.0
|
|
2
|
+
|
|
3
|
+
declare module "sap/ovp/library" {}
|
|
4
|
+
|
|
5
|
+
declare module "sap/ovp/app/Component" {
|
|
6
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Overview Page Application Component
|
|
10
|
+
*/
|
|
11
|
+
export default class Component
|
|
12
|
+
/* was: sap.fe.core.AppComponent */ extends Object {
|
|
13
|
+
/**
|
|
14
|
+
* Main class used for Overview Page Application Component
|
|
15
|
+
*
|
|
16
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
17
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
18
|
+
* of the syntax of the settings object.
|
|
19
|
+
*/
|
|
20
|
+
constructor();
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Creates a new subclass of class sap.ovp.app.Component with name `sClassName` and enriches it with the
|
|
24
|
+
* information contained in `oClassInfo`.
|
|
25
|
+
*
|
|
26
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.fe.core.AppComponent.extend}.
|
|
27
|
+
*
|
|
28
|
+
* @returns Created class / constructor function
|
|
29
|
+
*/
|
|
30
|
+
static extend<T extends Record<string, unknown>>(
|
|
31
|
+
/**
|
|
32
|
+
* Name of the class being created
|
|
33
|
+
*/
|
|
34
|
+
sClassName: string,
|
|
35
|
+
/**
|
|
36
|
+
* Object literal with information about the class
|
|
37
|
+
*/
|
|
38
|
+
oClassInfo?: sap.ClassInfo<T, Component>,
|
|
39
|
+
/**
|
|
40
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
41
|
+
* used by this class
|
|
42
|
+
*/
|
|
43
|
+
FNMetaImpl?: Function
|
|
44
|
+
): Function;
|
|
45
|
+
/**
|
|
46
|
+
* Returns a metadata object for class sap.ovp.app.Component.
|
|
47
|
+
*
|
|
48
|
+
* @returns Metadata object describing this class
|
|
49
|
+
*/
|
|
50
|
+
static getMetadata(): Metadata;
|
|
51
|
+
/**
|
|
52
|
+
* Gets current value of property {@link #getCardContainerFragment cardContainerFragment}.
|
|
53
|
+
*
|
|
54
|
+
* Default value is `"sap.ovp.app.CardContainer"`.
|
|
55
|
+
*
|
|
56
|
+
* @returns Value of property `cardContainerFragment`
|
|
57
|
+
*/
|
|
58
|
+
getCardContainerFragment(): string;
|
|
59
|
+
/**
|
|
60
|
+
* Gets current value of property {@link #getDashboardLayoutUtil dashboardLayoutUtil}.
|
|
61
|
+
*
|
|
62
|
+
* @returns Value of property `dashboardLayoutUtil`
|
|
63
|
+
*/
|
|
64
|
+
getDashboardLayoutUtil(): /* was: sap.ovp.ui.DashboardLayoutUtil */ any;
|
|
65
|
+
/**
|
|
66
|
+
* Gets current value of property {@link #getDesigntimePath designtimePath}.
|
|
67
|
+
*
|
|
68
|
+
* Default value is `"sap/ovp/ui/OVPWrapper.designtime"`.
|
|
69
|
+
*
|
|
70
|
+
* @returns Value of property `designtimePath`
|
|
71
|
+
*/
|
|
72
|
+
getDesigntimePath(): string;
|
|
73
|
+
/**
|
|
74
|
+
* Sets a new value for property {@link #getCardContainerFragment cardContainerFragment}.
|
|
75
|
+
*
|
|
76
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
77
|
+
*
|
|
78
|
+
* Default value is `"sap.ovp.app.CardContainer"`.
|
|
79
|
+
*
|
|
80
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
81
|
+
*/
|
|
82
|
+
setCardContainerFragment(
|
|
83
|
+
/**
|
|
84
|
+
* New value for property `cardContainerFragment`
|
|
85
|
+
*/
|
|
86
|
+
sCardContainerFragment?: string
|
|
87
|
+
): this;
|
|
88
|
+
/**
|
|
89
|
+
* Sets a new value for property {@link #getDashboardLayoutUtil dashboardLayoutUtil}.
|
|
90
|
+
*
|
|
91
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
92
|
+
*
|
|
93
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
94
|
+
*/
|
|
95
|
+
setDashboardLayoutUtil(
|
|
96
|
+
/**
|
|
97
|
+
* New value for property `dashboardLayoutUtil`
|
|
98
|
+
*/
|
|
99
|
+
sDashboardLayoutUtil: /* was: sap.ovp.ui.DashboardLayoutUtil */ any
|
|
100
|
+
): this;
|
|
101
|
+
/**
|
|
102
|
+
* Sets a new value for property {@link #getDesigntimePath designtimePath}.
|
|
103
|
+
*
|
|
104
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
105
|
+
*
|
|
106
|
+
* Default value is `"sap/ovp/ui/OVPWrapper.designtime"`.
|
|
107
|
+
*
|
|
108
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
109
|
+
*/
|
|
110
|
+
setDesigntimePath(
|
|
111
|
+
/**
|
|
112
|
+
* New value for property `designtimePath`
|
|
113
|
+
*/
|
|
114
|
+
sDesigntimePath?: string
|
|
115
|
+
): this;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
declare module "sap/ovp/app/TemplateBaseExtension" {
|
|
120
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
124
|
+
*
|
|
125
|
+
* This class contains all extension functions that can be implemented by the application developers in
|
|
126
|
+
* their extension code. Application developers must not override any methods that are not mentioned in
|
|
127
|
+
* this documentation.
|
|
128
|
+
*/
|
|
129
|
+
interface TemplateBaseExtension {
|
|
130
|
+
/**
|
|
131
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
132
|
+
*
|
|
133
|
+
* Creates a new subclass of class sap.ovp.app.TemplateBaseExtension with name `sClassName` and enriches
|
|
134
|
+
* it with the information contained in `oClassInfo`.
|
|
135
|
+
*
|
|
136
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.mvc.ControllerExtension.extend}.
|
|
137
|
+
*
|
|
138
|
+
* @returns Created class / constructor function
|
|
139
|
+
*/
|
|
140
|
+
extend(
|
|
141
|
+
/**
|
|
142
|
+
* Name of the class being created
|
|
143
|
+
*/
|
|
144
|
+
sClassName: string,
|
|
145
|
+
/**
|
|
146
|
+
* Object literal with information about the class
|
|
147
|
+
*/
|
|
148
|
+
oClassInfo?: object,
|
|
149
|
+
/**
|
|
150
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
151
|
+
* used by this class
|
|
152
|
+
*/
|
|
153
|
+
FNMetaImpl?: Function
|
|
154
|
+
): Function;
|
|
155
|
+
/**
|
|
156
|
+
* @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
157
|
+
*
|
|
158
|
+
* Returns a metadata object for class sap.ovp.app.TemplateBaseExtension.
|
|
159
|
+
*
|
|
160
|
+
* @returns Metadata object describing this class
|
|
161
|
+
*/
|
|
162
|
+
getMetadata(): Metadata;
|
|
163
|
+
}
|
|
164
|
+
const TemplateBaseExtension: TemplateBaseExtension;
|
|
165
|
+
export default TemplateBaseExtension;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
declare namespace sap {
|
|
169
|
+
interface IUI5DefineDependencyNames {
|
|
170
|
+
"sap/ovp/app/Component": undefined;
|
|
171
|
+
|
|
172
|
+
"sap/ovp/app/TemplateBaseExtension": undefined;
|
|
173
|
+
|
|
174
|
+
"sap/ovp/library": undefined;
|
|
175
|
+
}
|
|
176
|
+
}
|