@openui5/ts-types 1.98.0 → 1.99.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/package.json +1 -1
- package/types/sap.f.d.ts +156 -64
- package/types/sap.m.d.ts +1024 -66
- 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.core.d.ts +564 -190
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +7 -5
- package/types/sap.ui.integration.d.ts +9 -9
- package/types/sap.ui.layout.d.ts +4 -1
- package/types/sap.ui.mdc.d.ts +5 -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.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +2438 -554
- package/types/sap.ui.webc.main.d.ts +2187 -394
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.99.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -68,6 +68,10 @@ declare namespace sap {
|
|
|
68
68
|
|
|
69
69
|
"sap/ui/fl/apply/_internal/flexState/UI2Personalization/UI2PersonalizationState": undefined;
|
|
70
70
|
|
|
71
|
+
"sap/ui/fl/apply/_internal/preprocessors/ControllerExtension": undefined;
|
|
72
|
+
|
|
73
|
+
"sap/ui/fl/apply/_internal/preprocessors/EventHistory": undefined;
|
|
74
|
+
|
|
71
75
|
"sap/ui/fl/apply/api/ControlVariantApplyAPI": undefined;
|
|
72
76
|
|
|
73
77
|
"sap/ui/fl/apply/api/DelegateMediatorAPI": undefined;
|
|
@@ -94,8 +98,6 @@ declare namespace sap {
|
|
|
94
98
|
|
|
95
99
|
"sap/ui/fl/descriptorRelated/api/DescriptorVariantFactory": undefined;
|
|
96
100
|
|
|
97
|
-
"sap/ui/fl/EventHistory": undefined;
|
|
98
|
-
|
|
99
101
|
"sap/ui/fl/FlexControllerFactory": undefined;
|
|
100
102
|
|
|
101
103
|
"sap/ui/fl/initial/_internal/changeHandlers/ChangeRegistryItem": undefined;
|
|
@@ -126,12 +128,12 @@ declare namespace sap {
|
|
|
126
128
|
|
|
127
129
|
"sap/ui/fl/library": undefined;
|
|
128
130
|
|
|
129
|
-
"sap/ui/fl/PreprocessorImpl": undefined;
|
|
130
|
-
|
|
131
131
|
"sap/ui/fl/registry/Settings": undefined;
|
|
132
132
|
|
|
133
133
|
"sap/ui/fl/support/_internal/getChangeDependencies": undefined;
|
|
134
134
|
|
|
135
|
+
"sap/ui/fl/support/_internal/getFlexSettings": undefined;
|
|
136
|
+
|
|
135
137
|
"sap/ui/fl/support/api/SupportAPI": undefined;
|
|
136
138
|
|
|
137
139
|
"sap/ui/fl/transport/TransportDialog": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.99.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -612,7 +612,7 @@ declare namespace sap {
|
|
|
612
612
|
* "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
|
|
613
613
|
* to an object is up to the developer.
|
|
614
614
|
*/
|
|
615
|
-
dataType?:
|
|
615
|
+
dataType?: string;
|
|
616
616
|
/**
|
|
617
617
|
* The HTTP headers of the request.
|
|
618
618
|
*/
|
|
@@ -646,9 +646,9 @@ declare namespace sap {
|
|
|
646
646
|
/**
|
|
647
647
|
* @EXPERIMENTAL (since 1.81)
|
|
648
648
|
*
|
|
649
|
-
* Displays a message strip
|
|
650
|
-
*
|
|
651
|
-
*
|
|
649
|
+
* Displays a message strip above the content with the given text. There can be only 1 message displayed.
|
|
650
|
+
* If there is a previous message, it is removed. Can be used only after the `manifestApplied` event is
|
|
651
|
+
* fired.
|
|
652
652
|
*/
|
|
653
653
|
showMessage(
|
|
654
654
|
/**
|
|
@@ -1519,7 +1519,7 @@ declare namespace sap {
|
|
|
1519
1519
|
* "jsonp". Note: Complex Binding is not supported when a dataType is provided. Serialization of the response
|
|
1520
1520
|
* to an object is up to the developer.
|
|
1521
1521
|
*/
|
|
1522
|
-
dataType?:
|
|
1522
|
+
dataType?: string;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* The HTTP headers of the request.
|
|
1525
1525
|
*/
|
|
@@ -1638,9 +1638,9 @@ declare namespace sap {
|
|
|
1638
1638
|
/**
|
|
1639
1639
|
* @EXPERIMENTAL (since 1.81)
|
|
1640
1640
|
*
|
|
1641
|
-
* Displays a message strip
|
|
1642
|
-
*
|
|
1643
|
-
*
|
|
1641
|
+
* Displays a message strip above the content with the given text. There can be only 1 message displayed.
|
|
1642
|
+
* If there is a previous message, it is removed. Can be used only after the `manifestApplied` event is
|
|
1643
|
+
* fired.
|
|
1644
1644
|
*/
|
|
1645
1645
|
showMessage(
|
|
1646
1646
|
/**
|
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.99.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -6921,6 +6921,9 @@ declare namespace sap {
|
|
|
6921
6921
|
*/
|
|
6922
6922
|
ColumnLayout = "ColumnLayout",
|
|
6923
6923
|
/**
|
|
6924
|
+
* @deprecated (since 1.67.0) - as the `sap.ui.commons` library is deprecated, and the `GridLayout` must
|
|
6925
|
+
* not be used in responsive applications. Please use `ResponsiveGridLayout` or `ColumnLayout` instead.
|
|
6926
|
+
*
|
|
6924
6927
|
* Uses the `GridLayout` layout to render the `SimpleForm` control
|
|
6925
6928
|
*/
|
|
6926
6929
|
GridLayout = "GridLayout",
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.99.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -110,6 +110,10 @@ declare namespace sap {
|
|
|
110
110
|
|
|
111
111
|
"sap/ui/mdc/field/OutParameter": undefined;
|
|
112
112
|
|
|
113
|
+
"sap/ui/mdc/field/TokenDisplay": undefined;
|
|
114
|
+
|
|
115
|
+
"sap/ui/mdc/field/TokenizerDisplay": undefined;
|
|
116
|
+
|
|
113
117
|
"sap/ui/mdc/field/ValueHelpPanel": undefined;
|
|
114
118
|
|
|
115
119
|
"sap/ui/mdc/FilterBar": undefined;
|
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.
|
|
1
|
+
// For Library Version: 1.99.0
|
|
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.
|
|
241
|
+
* @SINCE 1.99.0
|
|
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.
|
|
260
|
+
* @SINCE 1.99.0
|
|
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.
|
|
315
|
+
* @SINCE 1.99.0
|
|
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.
|
|
330
|
+
* @SINCE 1.99.0
|
|
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.
|
|
349
|
+
* @SINCE 1.99.0
|
|
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