@openui5/ts-types 1.99.0 → 1.100.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 +1 -1
- package/types/sap.m.d.ts +462 -86
- 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 +771 -470
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +21 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +9 -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 -12
- package/types/sap.ui.table.d.ts +2 -9
- 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 +245 -225
- package/types/sap.ui.webc.main.d.ts +963 -595
- 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.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -48,6 +48,10 @@ declare namespace sap {
|
|
|
48
48
|
|
|
49
49
|
"sap/ui/fl/apply/_internal/flexObjects/CompVariantRevertData": undefined;
|
|
50
50
|
|
|
51
|
+
"sap/ui/fl/apply/_internal/flexObjects/FlexObject": undefined;
|
|
52
|
+
|
|
53
|
+
"sap/ui/fl/apply/_internal/flexObjects/FlexObjectFactory": undefined;
|
|
54
|
+
|
|
51
55
|
"sap/ui/fl/apply/_internal/flexObjects/RevertData": undefined;
|
|
52
56
|
|
|
53
57
|
"sap/ui/fl/apply/_internal/flexObjects/UpdatableChange": undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2872,6 +2872,12 @@ declare namespace sap {
|
|
|
2872
2872
|
* Date selection. Available only for Calendar cards.
|
|
2873
2873
|
*/
|
|
2874
2874
|
DateChange = "DateChange",
|
|
2875
|
+
/**
|
|
2876
|
+
* @EXPERIMENTAL (since 1.100)
|
|
2877
|
+
*
|
|
2878
|
+
* Used for hiding the appeared details about the card.
|
|
2879
|
+
*/
|
|
2880
|
+
HideCard = "HideCard",
|
|
2875
2881
|
/**
|
|
2876
2882
|
* @EXPERIMENTAL (since 1.87)
|
|
2877
2883
|
*
|
|
@@ -2882,6 +2888,12 @@ declare namespace sap {
|
|
|
2882
2888
|
* Used for navigation actions
|
|
2883
2889
|
*/
|
|
2884
2890
|
Navigation = "Navigation",
|
|
2891
|
+
/**
|
|
2892
|
+
* @EXPERIMENTAL (since 1.100)
|
|
2893
|
+
*
|
|
2894
|
+
* Used for showing more details about the card.
|
|
2895
|
+
*/
|
|
2896
|
+
ShowCard = "ShowCard",
|
|
2885
2897
|
/**
|
|
2886
2898
|
* Used for submit actions
|
|
2887
2899
|
*/
|
|
@@ -3013,6 +3025,8 @@ declare namespace sap {
|
|
|
3013
3025
|
|
|
3014
3026
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor": undefined;
|
|
3015
3027
|
|
|
3028
|
+
"sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor": undefined;
|
|
3029
|
+
|
|
3016
3030
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory": undefined;
|
|
3017
3031
|
|
|
3018
3032
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor": undefined;
|
|
@@ -3081,12 +3095,16 @@ declare namespace sap {
|
|
|
3081
3095
|
|
|
3082
3096
|
"sap/ui/integration/editor/fields/IntegerField": undefined;
|
|
3083
3097
|
|
|
3084
|
-
"sap/ui/integration/editor/fields/ListField": undefined;
|
|
3085
|
-
|
|
3086
3098
|
"sap/ui/integration/editor/fields/NumberField": undefined;
|
|
3087
3099
|
|
|
3100
|
+
"sap/ui/integration/editor/fields/ObjectField": undefined;
|
|
3101
|
+
|
|
3102
|
+
"sap/ui/integration/editor/fields/ObjectListField": undefined;
|
|
3103
|
+
|
|
3088
3104
|
"sap/ui/integration/editor/fields/StringField": undefined;
|
|
3089
3105
|
|
|
3106
|
+
"sap/ui/integration/editor/fields/StringListField": undefined;
|
|
3107
|
+
|
|
3090
3108
|
"sap/ui/integration/editor/fields/viz/ColorSelect": undefined;
|
|
3091
3109
|
|
|
3092
3110
|
"sap/ui/integration/editor/fields/viz/IconSelect": undefined;
|
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
interface IUI5DefineDependencyNames {
|
|
@@ -122,6 +122,10 @@ declare namespace sap {
|
|
|
122
122
|
|
|
123
123
|
"sap/ui/mdc/filterbar/vh/CollectiveSearchSelect": undefined;
|
|
124
124
|
|
|
125
|
+
"sap/ui/mdc/filterbar/vh/FilterBar": undefined;
|
|
126
|
+
|
|
127
|
+
"sap/ui/mdc/filterbar/vh/FilterContainer": undefined;
|
|
128
|
+
|
|
125
129
|
"sap/ui/mdc/FilterBarDelegate": undefined;
|
|
126
130
|
|
|
127
131
|
"sap/ui/mdc/FilterField": undefined;
|
|
@@ -140,6 +144,8 @@ declare namespace sap {
|
|
|
140
144
|
|
|
141
145
|
"sap/ui/mdc/mixin/PromiseMixin": undefined;
|
|
142
146
|
|
|
147
|
+
"sap/ui/mdc/mixin/PropertyHelperMixin": undefined;
|
|
148
|
+
|
|
143
149
|
"sap/ui/mdc/MultiValueField": undefined;
|
|
144
150
|
|
|
145
151
|
"sap/ui/mdc/odata/v4/FieldBaseDelegate": undefined;
|
|
@@ -174,6 +180,8 @@ declare namespace sap {
|
|
|
174
180
|
|
|
175
181
|
"sap/ui/mdc/table/ResponsiveTableType": undefined;
|
|
176
182
|
|
|
183
|
+
"sap/ui/mdc/table/RowActionItem": undefined;
|
|
184
|
+
|
|
177
185
|
"sap/ui/mdc/table/RowSettings": undefined;
|
|
178
186
|
|
|
179
187
|
"sap/ui/mdc/table/TableTypeBase": 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.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -13,12 +13,6 @@ declare namespace sap {
|
|
|
13
13
|
namespace support {
|
|
14
14
|
export const CoreFacade: undefined;
|
|
15
15
|
|
|
16
|
-
/**
|
|
17
|
-
* Overview: These channels enable the user to hook to the {@link sap.ui.support.WindowCommunicationBus
|
|
18
|
-
* } Usage: These channels are used for communication with Main.
|
|
19
|
-
*/
|
|
20
|
-
export const WCBChannels: undefined;
|
|
21
|
-
|
|
22
16
|
/**
|
|
23
17
|
* Creates a RuleSet. The RuleSet can store multiple rules concerning namespaces. Usage: The RuleSet is
|
|
24
18
|
* an interface used to create, update and delete rulesets.
|
|
@@ -238,7 +232,7 @@ declare namespace sap {
|
|
|
238
232
|
static getType(): string;
|
|
239
233
|
}
|
|
240
234
|
/**
|
|
241
|
-
* @SINCE 1.
|
|
235
|
+
* @SINCE 1.100.0
|
|
242
236
|
*
|
|
243
237
|
* Defines the Audiences.
|
|
244
238
|
*/
|
|
@@ -257,7 +251,7 @@ declare namespace sap {
|
|
|
257
251
|
Internal = "Internal",
|
|
258
252
|
}
|
|
259
253
|
/**
|
|
260
|
-
* @SINCE 1.
|
|
254
|
+
* @SINCE 1.100.0
|
|
261
255
|
*
|
|
262
256
|
* Issue Categories.
|
|
263
257
|
*/
|
|
@@ -312,7 +306,7 @@ declare namespace sap {
|
|
|
312
306
|
Usage = "Usage",
|
|
313
307
|
}
|
|
314
308
|
/**
|
|
315
|
-
* @SINCE 1.
|
|
309
|
+
* @SINCE 1.100.0
|
|
316
310
|
*
|
|
317
311
|
* Analysis history formats.
|
|
318
312
|
*/
|
|
@@ -327,7 +321,7 @@ declare namespace sap {
|
|
|
327
321
|
String = "String",
|
|
328
322
|
}
|
|
329
323
|
/**
|
|
330
|
-
* @SINCE 1.
|
|
324
|
+
* @SINCE 1.100.0
|
|
331
325
|
*
|
|
332
326
|
* Defines severity types.
|
|
333
327
|
*/
|
|
@@ -346,7 +340,7 @@ declare namespace sap {
|
|
|
346
340
|
Medium = "Medium",
|
|
347
341
|
}
|
|
348
342
|
/**
|
|
349
|
-
* @SINCE 1.
|
|
343
|
+
* @SINCE 1.100.0
|
|
350
344
|
*
|
|
351
345
|
* Contains the available system presets.
|
|
352
346
|
*/
|
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -2705,13 +2705,6 @@ declare namespace sap {
|
|
|
2705
2705
|
* Default value is `false`.
|
|
2706
2706
|
*/
|
|
2707
2707
|
getAutoResizable(): boolean;
|
|
2708
|
-
/**
|
|
2709
|
-
* @SINCE 1.98.0
|
|
2710
|
-
*
|
|
2711
|
-
* Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
|
|
2712
|
-
* or null.
|
|
2713
|
-
*/
|
|
2714
|
-
getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
|
|
2715
2708
|
/**
|
|
2716
2709
|
* Gets current value of property {@link #getDefaultFilterOperator defaultFilterOperator}.
|
|
2717
2710
|
*
|
|
@@ -5804,7 +5797,7 @@ declare namespace sap {
|
|
|
5804
5797
|
/**
|
|
5805
5798
|
* binding context of the row which has been clicked so that selection has been changed
|
|
5806
5799
|
*/
|
|
5807
|
-
rowContext?:
|
|
5800
|
+
rowContext?: sap.ui.model.Context;
|
|
5808
5801
|
/**
|
|
5809
5802
|
* array of row indices which selection has been changed (either selected or deselected)
|
|
5810
5803
|
*/
|
package/types/sap.ui.ux3.d.ts
CHANGED