@sapui5/ts-types 1.90.5 → 1.90.9
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/package.json +1 -1
- package/types/sap.apf.d.ts +4 -138
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -6
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +2 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.apf.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.90.
|
|
1
|
+
// For Library Version: 1.90.2
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -12,67 +12,6 @@ declare namespace sap {
|
|
|
12
12
|
*/
|
|
13
13
|
export const constants: Object;
|
|
14
14
|
|
|
15
|
-
namespace base {
|
|
16
|
-
interface $ComponentSettings extends sap.ui.core.$UIComponentSettings {}
|
|
17
|
-
|
|
18
|
-
/**
|
|
19
|
-
* Base Component for all APF based applications.
|
|
20
|
-
*/
|
|
21
|
-
class Component extends sap.ui.core.UIComponent {
|
|
22
|
-
/**/
|
|
23
|
-
constructor();
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Creates the content of the component. A component that extends this component shall call this method.
|
|
27
|
-
*/
|
|
28
|
-
createContent(): sap.ui.core.Control;
|
|
29
|
-
/**
|
|
30
|
-
* Cleanup the Component instance. The component that extends this component should call this method.
|
|
31
|
-
*/
|
|
32
|
-
exit(): void;
|
|
33
|
-
/**
|
|
34
|
-
* Creates a new subclass of class sap.apf.base.Component with name `sClassName` and enriches it with the
|
|
35
|
-
* information contained in `oClassInfo`.
|
|
36
|
-
*
|
|
37
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
|
|
38
|
-
*/
|
|
39
|
-
static extend<T extends Record<string, unknown>>(
|
|
40
|
-
/**
|
|
41
|
-
* Name of the class being created
|
|
42
|
-
*/
|
|
43
|
-
sClassName: string,
|
|
44
|
-
/**
|
|
45
|
-
* Object literal with information about the class
|
|
46
|
-
*/
|
|
47
|
-
oClassInfo?: sap.ClassInfo<T, sap.apf.base.Component>,
|
|
48
|
-
/**
|
|
49
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
50
|
-
* used by this class
|
|
51
|
-
*/
|
|
52
|
-
FNMetaImpl?: Function
|
|
53
|
-
): Function;
|
|
54
|
-
/**
|
|
55
|
-
* Returns the instance of the APF API.
|
|
56
|
-
*/
|
|
57
|
-
getApi(): sap.apf.Api;
|
|
58
|
-
/**
|
|
59
|
-
* @SINCE 1.38.4
|
|
60
|
-
* @EXPERIMENTAL
|
|
61
|
-
*
|
|
62
|
-
* This function is optional and can be implemented in any extending Component.js. Its return value is an
|
|
63
|
-
* object containing injected constructors, functions, references and exits. The injected sub entities are
|
|
64
|
-
* all optional and will be used by the APF logic when defined. Exits are used to change predefined enhancement
|
|
65
|
-
* points. Instances, functions and constructors are used for test isolation. Probe is used in tests to
|
|
66
|
-
* access internal APF references.
|
|
67
|
-
*/
|
|
68
|
-
getInjections(): object;
|
|
69
|
-
/**
|
|
70
|
-
* Returns a metadata object for class sap.apf.base.Component.
|
|
71
|
-
*/
|
|
72
|
-
static getMetadata(): sap.ui.core.ComponentMetadata;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
15
|
namespace core {
|
|
77
16
|
/**
|
|
78
17
|
* The message object represents the APF specific message object for detailed evaluation. The message object
|
|
@@ -728,8 +667,6 @@ declare namespace sap {
|
|
|
728
667
|
}
|
|
729
668
|
}
|
|
730
669
|
|
|
731
|
-
interface $ComponentSettings extends sap.ui.core.$UIComponentSettings {}
|
|
732
|
-
|
|
733
670
|
/**
|
|
734
671
|
* Official API for Analysis Path Framework (APF)
|
|
735
672
|
* The APF API provides a consuming application access to the functionality of the APF. It is assumed
|
|
@@ -751,7 +688,9 @@ declare namespace sap {
|
|
|
751
688
|
/**
|
|
752
689
|
* A reference to the calling Component.js. The reference provides access to parameters and context.
|
|
753
690
|
*/
|
|
754
|
-
oComponent:
|
|
691
|
+
oComponent: /* was: sap.apf.Component */
|
|
692
|
+
| any
|
|
693
|
+
| /* was: sap.apf.base.Component */ any,
|
|
755
694
|
/**
|
|
756
695
|
* injected constructors and functions for testing only.
|
|
757
696
|
*/
|
|
@@ -761,10 +700,6 @@ declare namespace sap {
|
|
|
761
700
|
*/
|
|
762
701
|
manifests?: Object
|
|
763
702
|
);
|
|
764
|
-
/**
|
|
765
|
-
* Contains 'api'
|
|
766
|
-
*/
|
|
767
|
-
type: undefined;
|
|
768
703
|
|
|
769
704
|
/**
|
|
770
705
|
* @EXPERIMENTAL
|
|
@@ -830,18 +765,6 @@ declare namespace sap {
|
|
|
830
765
|
rawText?: string;
|
|
831
766
|
}
|
|
832
767
|
): sap.apf.core.MessageObject;
|
|
833
|
-
/**
|
|
834
|
-
* Creates an object for performing an Odata Request get operation.
|
|
835
|
-
* See:
|
|
836
|
-
* sap.apf#createReadRequest
|
|
837
|
-
*/
|
|
838
|
-
createReadRequest(
|
|
839
|
-
/**
|
|
840
|
-
* identifies a request configuration, which is contained in the analytical configuration. or the request
|
|
841
|
-
* configuration is directly passed as an object oRequestConfiguration.
|
|
842
|
-
*/
|
|
843
|
-
requestConfiguration: String | Object
|
|
844
|
-
): sap.apf.core.ReadRequest;
|
|
845
768
|
/**
|
|
846
769
|
* helps to call customer defined custom formatter function(fnCallback).
|
|
847
770
|
*/
|
|
@@ -976,59 +899,6 @@ declare namespace sap {
|
|
|
976
899
|
filter: sap.apf.utils.Filter
|
|
977
900
|
): void;
|
|
978
901
|
}
|
|
979
|
-
/**
|
|
980
|
-
* @deprecated - since SAP UI 1.30. This ./Component.js was used for any application build with UI5 Version
|
|
981
|
-
* < 1.30. Use the new ./base/Component.js instead for any application build with UI5 Version >= 1.30
|
|
982
|
-
*
|
|
983
|
-
* Base Component for all APF based applications.
|
|
984
|
-
*/
|
|
985
|
-
class Component extends sap.ui.core.UIComponent {
|
|
986
|
-
/**/
|
|
987
|
-
constructor();
|
|
988
|
-
|
|
989
|
-
/**
|
|
990
|
-
* Creates the content of the component. A component, that extends this component should call this method.
|
|
991
|
-
*/
|
|
992
|
-
createContent(): sap.ui.core.Control;
|
|
993
|
-
/**
|
|
994
|
-
* Cleanup the Component instance . The component, that extends this component should call this method.
|
|
995
|
-
*/
|
|
996
|
-
exit(): void;
|
|
997
|
-
/**
|
|
998
|
-
* Creates a new subclass of class sap.apf.Component with name `sClassName` and enriches it with the information
|
|
999
|
-
* contained in `oClassInfo`.
|
|
1000
|
-
*
|
|
1001
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.UIComponent.extend}.
|
|
1002
|
-
*/
|
|
1003
|
-
static extend<T extends Record<string, unknown>>(
|
|
1004
|
-
/**
|
|
1005
|
-
* Name of the class being created
|
|
1006
|
-
*/
|
|
1007
|
-
sClassName: string,
|
|
1008
|
-
/**
|
|
1009
|
-
* Object literal with information about the class
|
|
1010
|
-
*/
|
|
1011
|
-
oClassInfo?: sap.ClassInfo<T, sap.apf.Component>,
|
|
1012
|
-
/**
|
|
1013
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1014
|
-
* used by this class
|
|
1015
|
-
*/
|
|
1016
|
-
FNMetaImpl?: Function
|
|
1017
|
-
): Function;
|
|
1018
|
-
/**
|
|
1019
|
-
* Returns the instance of the APF API.
|
|
1020
|
-
*/
|
|
1021
|
-
getApi(): sap.apf.Api;
|
|
1022
|
-
/**
|
|
1023
|
-
* Returns a metadata object for class sap.apf.Component.
|
|
1024
|
-
*/
|
|
1025
|
-
static getMetadata(): sap.ui.core.ComponentMetadata;
|
|
1026
|
-
/**
|
|
1027
|
-
* Initialize the Component instance after creation. The component, that extends this component should call
|
|
1028
|
-
* this method.
|
|
1029
|
-
*/
|
|
1030
|
-
init(): void;
|
|
1031
|
-
}
|
|
1032
902
|
}
|
|
1033
903
|
|
|
1034
904
|
interface IUI5DefineDependencyNames {
|
|
@@ -1036,10 +906,6 @@ declare namespace sap {
|
|
|
1036
906
|
|
|
1037
907
|
"sap/apf/api": undefined;
|
|
1038
908
|
|
|
1039
|
-
"sap/apf/base/Component": undefined;
|
|
1040
|
-
|
|
1041
|
-
"sap/apf/Component": undefined;
|
|
1042
|
-
|
|
1043
909
|
"sap/apf/core/messageObject": undefined;
|
|
1044
910
|
|
|
1045
911
|
"sap/apf/core/readRequest": undefined;
|
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.90.
|
|
1
|
+
// For Library Version: 1.90.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -66,7 +66,7 @@ declare namespace sap {
|
|
|
66
66
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
67
67
|
* following fields:
|
|
68
68
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
69
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.90.
|
|
69
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.90.8")
|
|
70
70
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
71
71
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
72
72
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -152,7 +152,7 @@ declare namespace sap {
|
|
|
152
152
|
* columns: aColumns,
|
|
153
153
|
* context: {
|
|
154
154
|
* application: 'Debug Test Application',
|
|
155
|
-
* version: '1.90.
|
|
155
|
+
* version: '1.90.8',
|
|
156
156
|
* title: 'Some random title',
|
|
157
157
|
* modifiedBy: 'John Doe',
|
|
158
158
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.90.
|
|
1
|
+
// For Library Version: 1.90.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -238,7 +238,7 @@ declare namespace sap {
|
|
|
238
238
|
static getType(): string;
|
|
239
239
|
}
|
|
240
240
|
/**
|
|
241
|
-
* @SINCE 1.90.
|
|
241
|
+
* @SINCE 1.90.8
|
|
242
242
|
*
|
|
243
243
|
* Defines the Audiences.
|
|
244
244
|
*/
|
|
@@ -257,7 +257,7 @@ declare namespace sap {
|
|
|
257
257
|
Internal = "Internal",
|
|
258
258
|
}
|
|
259
259
|
/**
|
|
260
|
-
* @SINCE 1.90.
|
|
260
|
+
* @SINCE 1.90.8
|
|
261
261
|
*
|
|
262
262
|
* Issue Categories.
|
|
263
263
|
*/
|
|
@@ -312,7 +312,7 @@ declare namespace sap {
|
|
|
312
312
|
Usage = "Usage",
|
|
313
313
|
}
|
|
314
314
|
/**
|
|
315
|
-
* @SINCE 1.90.
|
|
315
|
+
* @SINCE 1.90.8
|
|
316
316
|
*
|
|
317
317
|
* Analysis history formats.
|
|
318
318
|
*/
|
|
@@ -327,7 +327,7 @@ declare namespace sap {
|
|
|
327
327
|
String = "String",
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
|
-
* @SINCE 1.90.
|
|
330
|
+
* @SINCE 1.90.8
|
|
331
331
|
*
|
|
332
332
|
* Defines severity types.
|
|
333
333
|
*/
|
|
@@ -346,7 +346,7 @@ declare namespace sap {
|
|
|
346
346
|
Medium = "Medium",
|
|
347
347
|
}
|
|
348
348
|
/**
|
|
349
|
-
* @SINCE 1.90.
|
|
349
|
+
* @SINCE 1.90.8
|
|
350
350
|
*
|
|
351
351
|
* Contains the available system presets.
|
|
352
352
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.90.
|
|
1
|
+
// For Library Version: 1.90.8
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace uiext {
|
|
@@ -2169,6 +2169,7 @@ declare namespace sap {
|
|
|
2169
2169
|
const InboxSecondaryFilterValuesEnum: InboxSecondaryFilterValuesEnum;
|
|
2170
2170
|
|
|
2171
2171
|
/**
|
|
2172
|
+
* @deprecated (since 1.38.0)
|
|
2172
2173
|
* @EXPERIMENTAL (since 1.5.2)
|
|
2173
2174
|
*
|
|
2174
2175
|
* A comprehensive UI design approach with graphical and functional elements for search tasks, filter tasks,
|
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED