@openui5/ts-types 1.120.11 → 1.120.13
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 +369 -2
- package/types/sap.m.d.ts +3123 -7
- package/types/sap.tnt.d.ts +40 -2
- package/types/sap.ui.codeeditor.d.ts +16 -1
- package/types/sap.ui.commons.d.ts +753 -1
- package/types/sap.ui.core.d.ts +1098 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -1
- package/types/sap.ui.integration.d.ts +144 -2
- package/types/sap.ui.layout.d.ts +166 -2
- package/types/sap.ui.mdc.d.ts +430 -4
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -2
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -2
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -2
- package/types/sap.ui.ux3.d.ts +524 -2
- package/types/sap.ui.webc.common.d.ts +7 -2
- package/types/sap.ui.webc.fiori.d.ts +351 -2
- package/types/sap.ui.webc.main.d.ts +1035 -2
- package/types/sap.uxap.d.ts +118 -1
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -16,6 +16,9 @@ declare namespace sap {
|
|
|
16
16
|
__implements__sap_tnt_IToolHeader: boolean;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
+
/**
|
|
20
|
+
* Describes the settings that can be provided to the InfoLabel constructor.
|
|
21
|
+
*/
|
|
19
22
|
interface $InfoLabelSettings extends sap.ui.core.$ControlSettings {
|
|
20
23
|
/**
|
|
21
24
|
* Specifies the text inside the `InfoLabel` control.
|
|
@@ -82,6 +85,9 @@ declare namespace sap {
|
|
|
82
85
|
| `{${string}}`;
|
|
83
86
|
}
|
|
84
87
|
|
|
88
|
+
/**
|
|
89
|
+
* Describes the settings that can be provided to the NavigationList constructor.
|
|
90
|
+
*/
|
|
85
91
|
interface $NavigationListSettings extends sap.ui.core.$ControlSettings {
|
|
86
92
|
/**
|
|
87
93
|
* Specifies the width of the control.
|
|
@@ -138,6 +144,9 @@ declare namespace sap {
|
|
|
138
144
|
itemSelect?: (oEvent: NavigationList$ItemSelectEvent) => void;
|
|
139
145
|
}
|
|
140
146
|
|
|
147
|
+
/**
|
|
148
|
+
* Describes the settings that can be provided to the NavigationListItem constructor.
|
|
149
|
+
*/
|
|
141
150
|
interface $NavigationListItemSettings extends sap.ui.core.$ItemSettings {
|
|
142
151
|
/**
|
|
143
152
|
* Specifies the icon for the item.
|
|
@@ -218,6 +227,9 @@ declare namespace sap {
|
|
|
218
227
|
select?: (oEvent: NavigationListItem$SelectEvent) => void;
|
|
219
228
|
}
|
|
220
229
|
|
|
230
|
+
/**
|
|
231
|
+
* Describes the settings that can be provided to the SideNavigation constructor.
|
|
232
|
+
*/
|
|
221
233
|
interface $SideNavigationSettings extends sap.ui.core.$ControlSettings {
|
|
222
234
|
/**
|
|
223
235
|
* Specifies the width of the control.
|
|
@@ -284,11 +296,20 @@ declare namespace sap {
|
|
|
284
296
|
itemSelect?: (oEvent: SideNavigation$ItemSelectEvent) => void;
|
|
285
297
|
}
|
|
286
298
|
|
|
299
|
+
/**
|
|
300
|
+
* Describes the settings that can be provided to the ToolHeader constructor.
|
|
301
|
+
*/
|
|
287
302
|
interface $ToolHeaderSettings extends sap.m.$OverflowToolbarSettings {}
|
|
288
303
|
|
|
304
|
+
/**
|
|
305
|
+
* Describes the settings that can be provided to the ToolHeaderUtilitySeparator constructor.
|
|
306
|
+
*/
|
|
289
307
|
interface $ToolHeaderUtilitySeparatorSettings
|
|
290
308
|
extends sap.ui.core.$ControlSettings {}
|
|
291
309
|
|
|
310
|
+
/**
|
|
311
|
+
* Describes the settings that can be provided to the ToolPage constructor.
|
|
312
|
+
*/
|
|
292
313
|
interface $ToolPageSettings extends sap.ui.core.$ControlSettings {
|
|
293
314
|
/**
|
|
294
315
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
@@ -335,6 +356,9 @@ declare namespace sap {
|
|
|
335
356
|
| `{${string}}`;
|
|
336
357
|
}
|
|
337
358
|
|
|
359
|
+
/**
|
|
360
|
+
* Parameters of the NavigationList#itemSelect event.
|
|
361
|
+
*/
|
|
338
362
|
interface NavigationList$ItemSelectEventParameters {
|
|
339
363
|
/**
|
|
340
364
|
* The selected item.
|
|
@@ -342,6 +366,9 @@ declare namespace sap {
|
|
|
342
366
|
item?: sap.ui.core.Item;
|
|
343
367
|
}
|
|
344
368
|
|
|
369
|
+
/**
|
|
370
|
+
* Parameters of the NavigationListItem#select event.
|
|
371
|
+
*/
|
|
345
372
|
interface NavigationListItem$SelectEventParameters {
|
|
346
373
|
/**
|
|
347
374
|
* The selected item.
|
|
@@ -349,6 +376,9 @@ declare namespace sap {
|
|
|
349
376
|
item?: sap.ui.core.Item;
|
|
350
377
|
}
|
|
351
378
|
|
|
379
|
+
/**
|
|
380
|
+
* Parameters of the SideNavigation#itemSelect event.
|
|
381
|
+
*/
|
|
352
382
|
interface SideNavigation$ItemSelectEventParameters {
|
|
353
383
|
/**
|
|
354
384
|
* The selected item.
|
|
@@ -2390,17 +2420,25 @@ declare namespace sap {
|
|
|
2390
2420
|
*/
|
|
2391
2421
|
Narrow = "Narrow",
|
|
2392
2422
|
}
|
|
2393
|
-
|
|
2423
|
+
/**
|
|
2424
|
+
* Event object of the NavigationList#itemSelect event.
|
|
2425
|
+
*/
|
|
2394
2426
|
type NavigationList$ItemSelectEvent = sap.ui.base.Event<
|
|
2395
2427
|
NavigationList$ItemSelectEventParameters,
|
|
2396
2428
|
NavigationList
|
|
2397
2429
|
>;
|
|
2398
2430
|
|
|
2431
|
+
/**
|
|
2432
|
+
* Event object of the NavigationListItem#select event.
|
|
2433
|
+
*/
|
|
2399
2434
|
type NavigationListItem$SelectEvent = sap.ui.base.Event<
|
|
2400
2435
|
NavigationListItem$SelectEventParameters,
|
|
2401
2436
|
NavigationListItem
|
|
2402
2437
|
>;
|
|
2403
2438
|
|
|
2439
|
+
/**
|
|
2440
|
+
* Event object of the SideNavigation#itemSelect event.
|
|
2441
|
+
*/
|
|
2404
2442
|
type SideNavigation$ItemSelectEvent = sap.ui.base.Event<
|
|
2405
2443
|
SideNavigation$ItemSelectEventParameters,
|
|
2406
2444
|
SideNavigation
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -8,6 +8,9 @@ declare namespace sap {
|
|
|
8
8
|
* @since 1.48
|
|
9
9
|
*/
|
|
10
10
|
namespace codeeditor {
|
|
11
|
+
/**
|
|
12
|
+
* Describes the settings that can be provided to the CodeEditor constructor.
|
|
13
|
+
*/
|
|
11
14
|
interface $CodeEditorSettings extends sap.ui.core.$ControlSettings {
|
|
12
15
|
/**
|
|
13
16
|
* The value displayed in the code editor.
|
|
@@ -114,6 +117,9 @@ declare namespace sap {
|
|
|
114
117
|
change?: (oEvent: CodeEditor$ChangeEvent) => void;
|
|
115
118
|
}
|
|
116
119
|
|
|
120
|
+
/**
|
|
121
|
+
* Parameters of the CodeEditor#change event.
|
|
122
|
+
*/
|
|
117
123
|
interface CodeEditor$ChangeEventParameters {
|
|
118
124
|
/**
|
|
119
125
|
* The current value of the code editor.
|
|
@@ -126,6 +132,9 @@ declare namespace sap {
|
|
|
126
132
|
oldValue?: string;
|
|
127
133
|
}
|
|
128
134
|
|
|
135
|
+
/**
|
|
136
|
+
* Parameters of the CodeEditor#liveChange event.
|
|
137
|
+
*/
|
|
129
138
|
interface CodeEditor$LiveChangeEventParameters {
|
|
130
139
|
/**
|
|
131
140
|
* The current value of the code editor.
|
|
@@ -737,11 +746,17 @@ declare namespace sap {
|
|
|
737
746
|
): this;
|
|
738
747
|
}
|
|
739
748
|
|
|
749
|
+
/**
|
|
750
|
+
* Event object of the CodeEditor#change event.
|
|
751
|
+
*/
|
|
740
752
|
type CodeEditor$ChangeEvent = sap.ui.base.Event<
|
|
741
753
|
CodeEditor$ChangeEventParameters,
|
|
742
754
|
CodeEditor
|
|
743
755
|
>;
|
|
744
756
|
|
|
757
|
+
/**
|
|
758
|
+
* Event object of the CodeEditor#liveChange event.
|
|
759
|
+
*/
|
|
745
760
|
type CodeEditor$LiveChangeEvent = sap.ui.base.Event<
|
|
746
761
|
CodeEditor$LiveChangeEventParameters,
|
|
747
762
|
CodeEditor
|