@sapui5/ts-types-esm 1.127.2 → 1.128.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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +221 -22
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1414 -225
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +11 -26
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +7 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +14 -3
- package/types/sap.fe.test.d.ts +3 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +123 -64
- package/types/sap.insights.d.ts +24 -1
- package/types/sap.m.d.ts +327 -26
- 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.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +110 -29
- package/types/sap.suite.ui.commons.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 +10 -4
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +997 -4
- package/types/sap.ui.core.d.ts +48 -28
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +10 -4
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +55 -5
- package/types/sap.ui.layout.d.ts +5 -5
- package/types/sap.ui.mdc.d.ts +426 -212
- 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 +1 -1
- package/types/sap.ui.table.d.ts +91 -23
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +624 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +48 -23
- package/types/sap.ui.vtm.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +16 -8
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +44 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.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
package/types/sap.ca.ui.d.ts
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.cux.home.d.ts
CHANGED
|
@@ -7,8 +7,21 @@ declare module "sap/cux/home/AppsContainer" {
|
|
|
7
7
|
* @since 1.121
|
|
8
8
|
* @experimental (since 1.121)
|
|
9
9
|
*/
|
|
10
|
-
export default class AppsContainer
|
|
11
|
-
|
|
10
|
+
export default class AppsContainer {
|
|
11
|
+
/**
|
|
12
|
+
* Constructor for a new Apps Container.
|
|
13
|
+
*/
|
|
14
|
+
constructor(
|
|
15
|
+
/**
|
|
16
|
+
* ID for the new control, generated automatically if no ID is given
|
|
17
|
+
*/
|
|
18
|
+
id?: string,
|
|
19
|
+
/**
|
|
20
|
+
* Initial settings for the new control
|
|
21
|
+
*/
|
|
22
|
+
settings?: /* was: sap.cux.home.BaseContainer.$BaseContainerSettings */ any
|
|
23
|
+
);
|
|
24
|
+
}
|
|
12
25
|
}
|
|
13
26
|
|
|
14
27
|
declare module "sap/cux/home/CardsPanel" {
|
|
@@ -19,7 +32,22 @@ declare module "sap/cux/home/CardsPanel" {
|
|
|
19
32
|
* @experimental (since 1.122.0)
|
|
20
33
|
*/
|
|
21
34
|
export default class CardsPanel
|
|
22
|
-
extends /* was: sap.cux.home.BasePanel */ Object
|
|
35
|
+
extends /* was: sap.cux.home.BasePanel */ Object
|
|
36
|
+
{
|
|
37
|
+
/**
|
|
38
|
+
* Constructor for a new Cards Panel.
|
|
39
|
+
*/
|
|
40
|
+
constructor(
|
|
41
|
+
/**
|
|
42
|
+
* ID for the new control, generated automatically if no ID is given
|
|
43
|
+
*/
|
|
44
|
+
id?: string,
|
|
45
|
+
/**
|
|
46
|
+
* Initial settings for the new control
|
|
47
|
+
*/
|
|
48
|
+
settings?: /* was: sap.cux.home.CardsPanel.$CardsPanelSettings */ any
|
|
49
|
+
);
|
|
50
|
+
}
|
|
23
51
|
}
|
|
24
52
|
|
|
25
53
|
declare module "sap/cux/home/FrequentAppPanel" {
|
|
@@ -29,8 +57,21 @@ declare module "sap/cux/home/FrequentAppPanel" {
|
|
|
29
57
|
* @since 1.121.0
|
|
30
58
|
* @experimental (since 1.121.0)
|
|
31
59
|
*/
|
|
32
|
-
export default class FrequentAppPanel
|
|
33
|
-
|
|
60
|
+
export default class FrequentAppPanel {
|
|
61
|
+
/**
|
|
62
|
+
* Constructor for a new Frequent Apps Panel.
|
|
63
|
+
*/
|
|
64
|
+
constructor(
|
|
65
|
+
/**
|
|
66
|
+
* ID for the new control, generated automatically if no ID is given
|
|
67
|
+
*/
|
|
68
|
+
id?: string,
|
|
69
|
+
/**
|
|
70
|
+
* Initial settings for the new control
|
|
71
|
+
*/
|
|
72
|
+
settings?: /* was: sap.cux.home.BaseAppPersPanel.$BaseAppPersPanelSettings */ any
|
|
73
|
+
);
|
|
74
|
+
}
|
|
34
75
|
}
|
|
35
76
|
|
|
36
77
|
declare module "sap/cux/home/InsightsContainer" {
|
|
@@ -40,8 +81,21 @@ declare module "sap/cux/home/InsightsContainer" {
|
|
|
40
81
|
* @since 1.121
|
|
41
82
|
* @experimental (since 1.121)
|
|
42
83
|
*/
|
|
43
|
-
export default class InsightsContainer
|
|
44
|
-
|
|
84
|
+
export default class InsightsContainer {
|
|
85
|
+
/**
|
|
86
|
+
* Constructor for a new Insights Container.
|
|
87
|
+
*/
|
|
88
|
+
constructor(
|
|
89
|
+
/**
|
|
90
|
+
* ID for the new control, generated automatically if no ID is given
|
|
91
|
+
*/
|
|
92
|
+
id?: string,
|
|
93
|
+
/**
|
|
94
|
+
* Initial settings for the new control
|
|
95
|
+
*/
|
|
96
|
+
settings?: /* was: sap.cux.home.BaseContainer.$BaseContainerSettings */ any
|
|
97
|
+
);
|
|
98
|
+
}
|
|
45
99
|
}
|
|
46
100
|
|
|
47
101
|
declare module "sap/cux/home/Layout" {
|
|
@@ -51,8 +105,21 @@ declare module "sap/cux/home/Layout" {
|
|
|
51
105
|
* @since 1.121
|
|
52
106
|
* @experimental (since 1.121)
|
|
53
107
|
*/
|
|
54
|
-
export default class Layout
|
|
55
|
-
|
|
108
|
+
export default class Layout {
|
|
109
|
+
/**
|
|
110
|
+
* Constructor for a new Layout.
|
|
111
|
+
*/
|
|
112
|
+
constructor(
|
|
113
|
+
/**
|
|
114
|
+
* ID for the new control, generated automatically if no ID is given
|
|
115
|
+
*/
|
|
116
|
+
id?: string,
|
|
117
|
+
/**
|
|
118
|
+
* Initial settings for the new control
|
|
119
|
+
*/
|
|
120
|
+
settings?: /* was: sap.cux.home.BaseLayout.$BaseLayoutSettings */ any
|
|
121
|
+
);
|
|
122
|
+
}
|
|
56
123
|
}
|
|
57
124
|
|
|
58
125
|
declare module "sap/cux/home/library" {
|
|
@@ -113,7 +180,21 @@ declare module "sap/cux/home/MenuItem" {
|
|
|
113
180
|
* @since 1.121
|
|
114
181
|
* @experimental (since 1.121)
|
|
115
182
|
*/
|
|
116
|
-
export default class MenuItem extends UI5Element {
|
|
183
|
+
export default class MenuItem extends UI5Element {
|
|
184
|
+
/**
|
|
185
|
+
* Constructor for a new Menu Item.
|
|
186
|
+
*/
|
|
187
|
+
constructor(
|
|
188
|
+
/**
|
|
189
|
+
* ID for the new control, generated automatically if no ID is given
|
|
190
|
+
*/
|
|
191
|
+
id?: string,
|
|
192
|
+
/**
|
|
193
|
+
* Initial settings for the new control
|
|
194
|
+
*/
|
|
195
|
+
settings?: /* was: sap.cux.home.MenuItem.$MenuItemSettings */ any
|
|
196
|
+
);
|
|
197
|
+
}
|
|
117
198
|
/**
|
|
118
199
|
* Describes the settings that can be provided to the MenuItem constructor.
|
|
119
200
|
*
|
|
@@ -157,8 +238,21 @@ declare module "sap/cux/home/NewsAndPagesContainer" {
|
|
|
157
238
|
* @since 1.121
|
|
158
239
|
* @experimental (since 1.121)
|
|
159
240
|
*/
|
|
160
|
-
export default class NewsAndPagesContainer
|
|
161
|
-
|
|
241
|
+
export default class NewsAndPagesContainer {
|
|
242
|
+
/**
|
|
243
|
+
* Constructor for a new News and Pages Container.
|
|
244
|
+
*/
|
|
245
|
+
constructor(
|
|
246
|
+
/**
|
|
247
|
+
* ID for the new control, generated automatically if no ID is given
|
|
248
|
+
*/
|
|
249
|
+
id?: string,
|
|
250
|
+
/**
|
|
251
|
+
* Initial settings for the new control
|
|
252
|
+
*/
|
|
253
|
+
settings?: /* was: sap.cux.home.BaseContainer.$BaseContainerSettings */ any
|
|
254
|
+
);
|
|
255
|
+
}
|
|
162
256
|
}
|
|
163
257
|
|
|
164
258
|
declare module "sap/cux/home/NewsPanel" {
|
|
@@ -168,8 +262,21 @@ declare module "sap/cux/home/NewsPanel" {
|
|
|
168
262
|
* @since 1.121
|
|
169
263
|
* @experimental (since 1.121)
|
|
170
264
|
*/
|
|
171
|
-
export default class NewsPanel
|
|
172
|
-
|
|
265
|
+
export default class NewsPanel {
|
|
266
|
+
/**
|
|
267
|
+
* Constructor for a new News Panel.
|
|
268
|
+
*/
|
|
269
|
+
constructor(
|
|
270
|
+
/**
|
|
271
|
+
* ID for the new control, generated automatically if no ID is given
|
|
272
|
+
*/
|
|
273
|
+
id?: string,
|
|
274
|
+
/**
|
|
275
|
+
* Initial settings for the new control
|
|
276
|
+
*/
|
|
277
|
+
settings?: /* was: sap.cux.home.BaseNewsPanel.$BaseNewsPanelSettings */ any
|
|
278
|
+
);
|
|
279
|
+
}
|
|
173
280
|
}
|
|
174
281
|
|
|
175
282
|
declare module "sap/cux/home/PagePanel" {
|
|
@@ -179,8 +286,21 @@ declare module "sap/cux/home/PagePanel" {
|
|
|
179
286
|
* @since 1.122
|
|
180
287
|
* @experimental (since 1.122)
|
|
181
288
|
*/
|
|
182
|
-
export default class PagePanel
|
|
183
|
-
|
|
289
|
+
export default class PagePanel {
|
|
290
|
+
/**
|
|
291
|
+
* Constructor for a new Page Panel.
|
|
292
|
+
*/
|
|
293
|
+
constructor(
|
|
294
|
+
/**
|
|
295
|
+
* ID for the new control, generated automatically if no ID is given
|
|
296
|
+
*/
|
|
297
|
+
id?: string,
|
|
298
|
+
/**
|
|
299
|
+
* Initial settings for the new control
|
|
300
|
+
*/
|
|
301
|
+
settings?: /* was: sap.cux.home.BasePagePanel.$BasePagePanelSettings */ any
|
|
302
|
+
);
|
|
303
|
+
}
|
|
184
304
|
}
|
|
185
305
|
|
|
186
306
|
declare module "sap/cux/home/RecentAppPanel" {
|
|
@@ -190,8 +310,21 @@ declare module "sap/cux/home/RecentAppPanel" {
|
|
|
190
310
|
* @since 1.121.0
|
|
191
311
|
* @experimental (since 1.121.0)
|
|
192
312
|
*/
|
|
193
|
-
export default class RecentAppPanel
|
|
194
|
-
|
|
313
|
+
export default class RecentAppPanel {
|
|
314
|
+
/**
|
|
315
|
+
* Constructor for a new Recent Apps Panel.
|
|
316
|
+
*/
|
|
317
|
+
constructor(
|
|
318
|
+
/**
|
|
319
|
+
* ID for the new control, generated automatically if no ID is given
|
|
320
|
+
*/
|
|
321
|
+
id?: string,
|
|
322
|
+
/**
|
|
323
|
+
* Initial settings for the new control
|
|
324
|
+
*/
|
|
325
|
+
settings?: /* was: sap.cux.home.BaseAppPersPanel.$BaseAppPersPanelSettings */ any
|
|
326
|
+
);
|
|
327
|
+
}
|
|
195
328
|
}
|
|
196
329
|
|
|
197
330
|
declare module "sap/cux/home/SituationPanel" {
|
|
@@ -205,6 +338,19 @@ declare module "sap/cux/home/SituationPanel" {
|
|
|
205
338
|
implements /* was: sap.cux.home.ToDoPanel.IToDoPanel */ Object
|
|
206
339
|
{
|
|
207
340
|
__implements__sap_cux_home_ToDoPanel_IToDoPanel: boolean;
|
|
341
|
+
/**
|
|
342
|
+
* Constructor for a new Situation Panel.
|
|
343
|
+
*/
|
|
344
|
+
constructor(
|
|
345
|
+
/**
|
|
346
|
+
* ID for the new control, generated automatically if no ID is given
|
|
347
|
+
*/
|
|
348
|
+
id?: string,
|
|
349
|
+
/**
|
|
350
|
+
* Initial settings for the new control
|
|
351
|
+
*/
|
|
352
|
+
settings?: /* was: sap.cux.home.ToDoPanel.$ToDoPanelSettings */ any
|
|
353
|
+
);
|
|
208
354
|
}
|
|
209
355
|
}
|
|
210
356
|
|
|
@@ -219,6 +365,19 @@ declare module "sap/cux/home/TaskPanel" {
|
|
|
219
365
|
implements /* was: sap.cux.home.ToDoPanel.IToDoPanel */ Object
|
|
220
366
|
{
|
|
221
367
|
__implements__sap_cux_home_ToDoPanel_IToDoPanel: boolean;
|
|
368
|
+
/**
|
|
369
|
+
* Constructor for a new Task Panel.
|
|
370
|
+
*/
|
|
371
|
+
constructor(
|
|
372
|
+
/**
|
|
373
|
+
* ID for the new control, generated automatically if no ID is given
|
|
374
|
+
*/
|
|
375
|
+
id?: string,
|
|
376
|
+
/**
|
|
377
|
+
* Initial settings for the new control
|
|
378
|
+
*/
|
|
379
|
+
settings?: /* was: sap.cux.home.TaskPanel.$TaskPanelSettings */ any
|
|
380
|
+
);
|
|
222
381
|
}
|
|
223
382
|
}
|
|
224
383
|
|
|
@@ -230,7 +389,22 @@ declare module "sap/cux/home/TilesPanel" {
|
|
|
230
389
|
* @experimental (since 1.122.0)
|
|
231
390
|
*/
|
|
232
391
|
export default class TilesPanel
|
|
233
|
-
extends /* was: sap.cux.home.BasePanel */ Object
|
|
392
|
+
extends /* was: sap.cux.home.BasePanel */ Object
|
|
393
|
+
{
|
|
394
|
+
/**
|
|
395
|
+
* Constructor for a new Tiles Panel.
|
|
396
|
+
*/
|
|
397
|
+
constructor(
|
|
398
|
+
/**
|
|
399
|
+
* ID for the new control, generated automatically if no ID is given
|
|
400
|
+
*/
|
|
401
|
+
id?: string,
|
|
402
|
+
/**
|
|
403
|
+
* Initial settings for the new control
|
|
404
|
+
*/
|
|
405
|
+
settings?: /* was: sap.cux.home.TilesPanel.$TilesPanelSettings */ any
|
|
406
|
+
);
|
|
407
|
+
}
|
|
234
408
|
}
|
|
235
409
|
|
|
236
410
|
declare module "sap/cux/home/ToDoPanel" {
|
|
@@ -249,6 +423,19 @@ declare module "sap/cux/home/ToDoPanel" {
|
|
|
249
423
|
implements /* was: sap.cux.home.ToDoPanel.IToDoPanel */ Object
|
|
250
424
|
{
|
|
251
425
|
__implements__sap_cux_home_ToDoPanel_IToDoPanel: boolean;
|
|
426
|
+
/**
|
|
427
|
+
* Constructor for a new ToDo Panel.
|
|
428
|
+
*/
|
|
429
|
+
constructor(
|
|
430
|
+
/**
|
|
431
|
+
* ID for the new control, generated automatically if no ID is given
|
|
432
|
+
*/
|
|
433
|
+
id?: string,
|
|
434
|
+
/**
|
|
435
|
+
* Initial settings for the new control
|
|
436
|
+
*/
|
|
437
|
+
settings?: /* was: sap.cux.home.ToDoPanel.$ToDoPanelSettings */ any
|
|
438
|
+
);
|
|
252
439
|
|
|
253
440
|
/**
|
|
254
441
|
* Generate a default card template for the Current Panel.
|
|
@@ -278,9 +465,21 @@ declare module "sap/cux/home/ToDosContainer" {
|
|
|
278
465
|
* @since 1.121
|
|
279
466
|
* @experimental (since 1.121)
|
|
280
467
|
*/
|
|
281
|
-
export default class ToDosContainer
|
|
282
|
-
|
|
283
|
-
|
|
468
|
+
export default class ToDosContainer {
|
|
469
|
+
/**
|
|
470
|
+
* Constructor for a new ToDos Container.
|
|
471
|
+
*/
|
|
472
|
+
constructor(
|
|
473
|
+
/**
|
|
474
|
+
* ID for the new control, generated automatically if no ID is given
|
|
475
|
+
*/
|
|
476
|
+
id?: string,
|
|
477
|
+
/**
|
|
478
|
+
* Initial settings for the new control
|
|
479
|
+
*/
|
|
480
|
+
settings?: /* was: sap.cux.home.BaseContainer.$BaseContainerSettings */ any
|
|
481
|
+
);
|
|
482
|
+
|
|
284
483
|
/**
|
|
285
484
|
* Gets the selected key of the ToDosContainer.
|
|
286
485
|
* If no selected key is set, it defaults to the first item.
|