@openui5/ts-types 1.117.1 → 1.119.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 +530 -3
- package/types/sap.m.d.ts +662 -155
- package/types/sap.tnt.d.ts +17 -15
- package/types/sap.ui.codeeditor.d.ts +5 -2
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1371 -214
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -3
- package/types/sap.ui.integration.d.ts +75 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1382 -336
- package/types/sap.ui.rta.d.ts +1 -4
- 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 +1083 -31
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -20
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +75 -33
- package/types/sap.ui.webc.fiori.d.ts +113 -115
- package/types/sap.ui.webc.main.d.ts +299 -306
- package/types/sap.uxap.d.ts +116 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.119.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -87,6 +87,18 @@ declare namespace sap {
|
|
|
87
87
|
* Defines the toolbar.
|
|
88
88
|
*/
|
|
89
89
|
toolbar?: sap.ui.core.Control;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @since 1.118
|
|
93
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
94
|
+
*
|
|
95
|
+
* Show as a banner in the header area. Use for example for system info and application shortcut.
|
|
96
|
+
*/
|
|
97
|
+
bannerLines?:
|
|
98
|
+
| sap.m.Text[]
|
|
99
|
+
| sap.m.Text
|
|
100
|
+
| sap.ui.base.ManagedObject.AggregationBindingInfo
|
|
101
|
+
| `{${string}}`;
|
|
90
102
|
}
|
|
91
103
|
|
|
92
104
|
interface $HeaderSettings extends sap.f.cards.$BaseHeaderSettings {
|
|
@@ -173,6 +185,16 @@ declare namespace sap {
|
|
|
173
185
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
174
186
|
| `{${string}}`;
|
|
175
187
|
|
|
188
|
+
/**
|
|
189
|
+
* @experimental (since 1.119) - this feature is experimental and the API may change.
|
|
190
|
+
*
|
|
191
|
+
* Defines the size of the icon.
|
|
192
|
+
*/
|
|
193
|
+
iconSize?:
|
|
194
|
+
| sap.m.AvatarSize
|
|
195
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
196
|
+
| `{${string}}`;
|
|
197
|
+
|
|
176
198
|
/**
|
|
177
199
|
* Fires when the user presses the control.
|
|
178
200
|
*/
|
|
@@ -215,6 +237,76 @@ declare namespace sap {
|
|
|
215
237
|
*/
|
|
216
238
|
statusText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
217
239
|
|
|
240
|
+
/**
|
|
241
|
+
* @since 1.118
|
|
242
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
243
|
+
*
|
|
244
|
+
* Defines the shape of the icon.
|
|
245
|
+
*/
|
|
246
|
+
iconDisplayShape?:
|
|
247
|
+
| sap.m.AvatarShape
|
|
248
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
249
|
+
| `{${string}}`;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @since 1.118
|
|
253
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
254
|
+
*
|
|
255
|
+
* Defines the icon source.
|
|
256
|
+
*/
|
|
257
|
+
iconSrc?:
|
|
258
|
+
| sap.ui.core.URI
|
|
259
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
260
|
+
| `{${string}}`;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* @since 1.118
|
|
264
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
265
|
+
*
|
|
266
|
+
* Defines the initials of the icon.
|
|
267
|
+
*/
|
|
268
|
+
iconInitials?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* @since 1.118
|
|
272
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
273
|
+
*
|
|
274
|
+
* Defines an alt text for the avatar or icon.
|
|
275
|
+
*/
|
|
276
|
+
iconAlt?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* @since 1.118
|
|
280
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
281
|
+
*
|
|
282
|
+
* Defines a background color for the avatar or icon.
|
|
283
|
+
*/
|
|
284
|
+
iconBackgroundColor?:
|
|
285
|
+
| sap.m.AvatarColor
|
|
286
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
287
|
+
| `{${string}}`;
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* @since 1.118
|
|
291
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
292
|
+
*
|
|
293
|
+
* Defines whether the card icon is visible.
|
|
294
|
+
*/
|
|
295
|
+
iconVisible?:
|
|
296
|
+
| boolean
|
|
297
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
298
|
+
| `{${string}}`;
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* @experimental (since 1.119) - this feature is experimental and the API may change.
|
|
302
|
+
*
|
|
303
|
+
* Defines the size of the icon.
|
|
304
|
+
*/
|
|
305
|
+
iconSize?:
|
|
306
|
+
| sap.m.AvatarSize
|
|
307
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
308
|
+
| `{${string}}`;
|
|
309
|
+
|
|
218
310
|
/**
|
|
219
311
|
* General unit of measurement for the header. Displayed as side information to the subtitle.
|
|
220
312
|
*/
|
|
@@ -228,6 +320,11 @@ declare namespace sap {
|
|
|
228
320
|
*/
|
|
229
321
|
number?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
230
322
|
|
|
323
|
+
/**
|
|
324
|
+
* The size of the of the main indicator. Possible values are "S" and "L".
|
|
325
|
+
*/
|
|
326
|
+
numberSize?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
327
|
+
|
|
231
328
|
/**
|
|
232
329
|
* @since 1.109
|
|
233
330
|
*
|
|
@@ -269,6 +366,17 @@ declare namespace sap {
|
|
|
269
366
|
*/
|
|
270
367
|
details?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
271
368
|
|
|
369
|
+
/**
|
|
370
|
+
* @since 1.118
|
|
371
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
372
|
+
*
|
|
373
|
+
* The semantic color which represents the state of the details text.
|
|
374
|
+
*/
|
|
375
|
+
detailsState?:
|
|
376
|
+
| sap.ui.core.ValueState
|
|
377
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
378
|
+
| `{${string}}`;
|
|
379
|
+
|
|
272
380
|
/**
|
|
273
381
|
* @experimental (since 1.101)
|
|
274
382
|
*
|
|
@@ -402,6 +510,29 @@ declare namespace sap {
|
|
|
402
510
|
* @returns Metadata object describing this class
|
|
403
511
|
*/
|
|
404
512
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
513
|
+
/**
|
|
514
|
+
* @since 1.118
|
|
515
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
516
|
+
*
|
|
517
|
+
* Adds some bannerLine to the aggregation {@link #getBannerLines bannerLines}.
|
|
518
|
+
*
|
|
519
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
520
|
+
*/
|
|
521
|
+
addBannerLine(
|
|
522
|
+
/**
|
|
523
|
+
* The bannerLine to add; if empty, nothing is inserted
|
|
524
|
+
*/
|
|
525
|
+
oBannerLine: sap.m.Text
|
|
526
|
+
): this;
|
|
527
|
+
/**
|
|
528
|
+
* @since 1.118
|
|
529
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
530
|
+
*
|
|
531
|
+
* Destroys all the bannerLines in the aggregation {@link #getBannerLines bannerLines}.
|
|
532
|
+
*
|
|
533
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
534
|
+
*/
|
|
535
|
+
destroyBannerLines(): this;
|
|
405
536
|
/**
|
|
406
537
|
* @since 1.86
|
|
407
538
|
* @experimental (since 1.86)
|
|
@@ -411,6 +542,15 @@ declare namespace sap {
|
|
|
411
542
|
* @returns Reference to `this` in order to allow method chaining
|
|
412
543
|
*/
|
|
413
544
|
destroyToolbar(): this;
|
|
545
|
+
/**
|
|
546
|
+
* @since 1.118
|
|
547
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
548
|
+
*
|
|
549
|
+
* Gets content of aggregation {@link #getBannerLines bannerLines}.
|
|
550
|
+
*
|
|
551
|
+
* Show as a banner in the header area. Use for example for system info and application shortcut.
|
|
552
|
+
*/
|
|
553
|
+
getBannerLines(): sap.m.Text[];
|
|
414
554
|
/**
|
|
415
555
|
* @experimental (since 1.89) - this feature is experimental and the API may change.
|
|
416
556
|
*
|
|
@@ -449,6 +589,66 @@ declare namespace sap {
|
|
|
449
589
|
* Defines the toolbar.
|
|
450
590
|
*/
|
|
451
591
|
getToolbar(): sap.ui.core.Control;
|
|
592
|
+
/**
|
|
593
|
+
* @since 1.118
|
|
594
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
595
|
+
*
|
|
596
|
+
* Checks for the provided `sap.m.Text` in the aggregation {@link #getBannerLines bannerLines}. and returns
|
|
597
|
+
* its index if found or -1 otherwise.
|
|
598
|
+
*
|
|
599
|
+
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
600
|
+
*/
|
|
601
|
+
indexOfBannerLine(
|
|
602
|
+
/**
|
|
603
|
+
* The bannerLine whose index is looked for
|
|
604
|
+
*/
|
|
605
|
+
oBannerLine: sap.m.Text
|
|
606
|
+
): int;
|
|
607
|
+
/**
|
|
608
|
+
* @since 1.118
|
|
609
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
610
|
+
*
|
|
611
|
+
* Inserts a bannerLine into the aggregation {@link #getBannerLines bannerLines}.
|
|
612
|
+
*
|
|
613
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
614
|
+
*/
|
|
615
|
+
insertBannerLine(
|
|
616
|
+
/**
|
|
617
|
+
* The bannerLine to insert; if empty, nothing is inserted
|
|
618
|
+
*/
|
|
619
|
+
oBannerLine: sap.m.Text,
|
|
620
|
+
/**
|
|
621
|
+
* The `0`-based index the bannerLine should be inserted at; for a negative value of `iIndex`, the bannerLine
|
|
622
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the bannerLine
|
|
623
|
+
* is inserted at the last position
|
|
624
|
+
*/
|
|
625
|
+
iIndex: int
|
|
626
|
+
): this;
|
|
627
|
+
/**
|
|
628
|
+
* @since 1.118
|
|
629
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
630
|
+
*
|
|
631
|
+
* Removes all the controls from the aggregation {@link #getBannerLines bannerLines}.
|
|
632
|
+
*
|
|
633
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
634
|
+
*
|
|
635
|
+
* @returns An array of the removed elements (might be empty)
|
|
636
|
+
*/
|
|
637
|
+
removeAllBannerLines(): sap.m.Text[];
|
|
638
|
+
/**
|
|
639
|
+
* @since 1.118
|
|
640
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
641
|
+
*
|
|
642
|
+
* Removes a bannerLine from the aggregation {@link #getBannerLines bannerLines}.
|
|
643
|
+
*
|
|
644
|
+
* @returns The removed bannerLine or `null`
|
|
645
|
+
*/
|
|
646
|
+
removeBannerLine(
|
|
647
|
+
/**
|
|
648
|
+
* The bannerLine to remove or its index or id
|
|
649
|
+
*/
|
|
650
|
+
vBannerLine: int | string | sap.m.Text
|
|
651
|
+
): sap.m.Text | null;
|
|
452
652
|
/**
|
|
453
653
|
* @experimental (since 1.116) - this feature is experimental and the API may change.
|
|
454
654
|
*
|
|
@@ -697,6 +897,18 @@ declare namespace sap {
|
|
|
697
897
|
* @returns Value of property `iconInitials`
|
|
698
898
|
*/
|
|
699
899
|
getIconInitials(): string;
|
|
900
|
+
/**
|
|
901
|
+
* @experimental (since 1.119) - this feature is experimental and the API may change.
|
|
902
|
+
*
|
|
903
|
+
* Gets current value of property {@link #getIconSize iconSize}.
|
|
904
|
+
*
|
|
905
|
+
* Defines the size of the icon.
|
|
906
|
+
*
|
|
907
|
+
* Default value is `S`.
|
|
908
|
+
*
|
|
909
|
+
* @returns Value of property `iconSize`
|
|
910
|
+
*/
|
|
911
|
+
getIconSize(): sap.m.AvatarSize;
|
|
700
912
|
/**
|
|
701
913
|
* Gets current value of property {@link #getIconSrc iconSrc}.
|
|
702
914
|
*
|
|
@@ -845,6 +1057,25 @@ declare namespace sap {
|
|
|
845
1057
|
*/
|
|
846
1058
|
sIconInitials?: string
|
|
847
1059
|
): this;
|
|
1060
|
+
/**
|
|
1061
|
+
* @experimental (since 1.119) - this feature is experimental and the API may change.
|
|
1062
|
+
*
|
|
1063
|
+
* Sets a new value for property {@link #getIconSize iconSize}.
|
|
1064
|
+
*
|
|
1065
|
+
* Defines the size of the icon.
|
|
1066
|
+
*
|
|
1067
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1068
|
+
*
|
|
1069
|
+
* Default value is `S`.
|
|
1070
|
+
*
|
|
1071
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1072
|
+
*/
|
|
1073
|
+
setIconSize(
|
|
1074
|
+
/**
|
|
1075
|
+
* New value for property `iconSize`
|
|
1076
|
+
*/
|
|
1077
|
+
sIconSize?: sap.m.AvatarSize
|
|
1078
|
+
): this;
|
|
848
1079
|
/**
|
|
849
1080
|
* Sets a new value for property {@link #getIconSrc iconSrc}.
|
|
850
1081
|
*
|
|
@@ -1188,6 +1419,109 @@ declare namespace sap {
|
|
|
1188
1419
|
* @returns Value of property `detailsMaxLines`
|
|
1189
1420
|
*/
|
|
1190
1421
|
getDetailsMaxLines(): int;
|
|
1422
|
+
/**
|
|
1423
|
+
* @since 1.118
|
|
1424
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1425
|
+
*
|
|
1426
|
+
* Gets current value of property {@link #getDetailsState detailsState}.
|
|
1427
|
+
*
|
|
1428
|
+
* The semantic color which represents the state of the details text.
|
|
1429
|
+
*
|
|
1430
|
+
* Default value is `None`.
|
|
1431
|
+
*
|
|
1432
|
+
* @returns Value of property `detailsState`
|
|
1433
|
+
*/
|
|
1434
|
+
getDetailsState(): sap.ui.core.ValueState;
|
|
1435
|
+
/**
|
|
1436
|
+
* @since 1.118
|
|
1437
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1438
|
+
*
|
|
1439
|
+
* Gets current value of property {@link #getIconAlt iconAlt}.
|
|
1440
|
+
*
|
|
1441
|
+
* Defines an alt text for the avatar or icon.
|
|
1442
|
+
*
|
|
1443
|
+
* Default value is `empty string`.
|
|
1444
|
+
*
|
|
1445
|
+
* @returns Value of property `iconAlt`
|
|
1446
|
+
*/
|
|
1447
|
+
getIconAlt(): string;
|
|
1448
|
+
/**
|
|
1449
|
+
* @since 1.118
|
|
1450
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1451
|
+
*
|
|
1452
|
+
* Gets current value of property {@link #getIconBackgroundColor iconBackgroundColor}.
|
|
1453
|
+
*
|
|
1454
|
+
* Defines a background color for the avatar or icon.
|
|
1455
|
+
*
|
|
1456
|
+
* Default value is `Transparent`.
|
|
1457
|
+
*
|
|
1458
|
+
* @returns Value of property `iconBackgroundColor`
|
|
1459
|
+
*/
|
|
1460
|
+
getIconBackgroundColor(): sap.m.AvatarColor;
|
|
1461
|
+
/**
|
|
1462
|
+
* @since 1.118
|
|
1463
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1464
|
+
*
|
|
1465
|
+
* Gets current value of property {@link #getIconDisplayShape iconDisplayShape}.
|
|
1466
|
+
*
|
|
1467
|
+
* Defines the shape of the icon.
|
|
1468
|
+
*
|
|
1469
|
+
* Default value is `Circle`.
|
|
1470
|
+
*
|
|
1471
|
+
* @returns Value of property `iconDisplayShape`
|
|
1472
|
+
*/
|
|
1473
|
+
getIconDisplayShape(): sap.m.AvatarShape;
|
|
1474
|
+
/**
|
|
1475
|
+
* @since 1.118
|
|
1476
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1477
|
+
*
|
|
1478
|
+
* Gets current value of property {@link #getIconInitials iconInitials}.
|
|
1479
|
+
*
|
|
1480
|
+
* Defines the initials of the icon.
|
|
1481
|
+
*
|
|
1482
|
+
* Default value is `empty string`.
|
|
1483
|
+
*
|
|
1484
|
+
* @returns Value of property `iconInitials`
|
|
1485
|
+
*/
|
|
1486
|
+
getIconInitials(): string;
|
|
1487
|
+
/**
|
|
1488
|
+
* @experimental (since 1.119) - this feature is experimental and the API may change.
|
|
1489
|
+
*
|
|
1490
|
+
* Gets current value of property {@link #getIconSize iconSize}.
|
|
1491
|
+
*
|
|
1492
|
+
* Defines the size of the icon.
|
|
1493
|
+
*
|
|
1494
|
+
* Default value is `S`.
|
|
1495
|
+
*
|
|
1496
|
+
* @returns Value of property `iconSize`
|
|
1497
|
+
*/
|
|
1498
|
+
getIconSize(): sap.m.AvatarSize;
|
|
1499
|
+
/**
|
|
1500
|
+
* @since 1.118
|
|
1501
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1502
|
+
*
|
|
1503
|
+
* Gets current value of property {@link #getIconSrc iconSrc}.
|
|
1504
|
+
*
|
|
1505
|
+
* Defines the icon source.
|
|
1506
|
+
*
|
|
1507
|
+
* Default value is `empty string`.
|
|
1508
|
+
*
|
|
1509
|
+
* @returns Value of property `iconSrc`
|
|
1510
|
+
*/
|
|
1511
|
+
getIconSrc(): sap.ui.core.URI;
|
|
1512
|
+
/**
|
|
1513
|
+
* @since 1.118
|
|
1514
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1515
|
+
*
|
|
1516
|
+
* Gets current value of property {@link #getIconVisible iconVisible}.
|
|
1517
|
+
*
|
|
1518
|
+
* Defines whether the card icon is visible.
|
|
1519
|
+
*
|
|
1520
|
+
* Default value is `true`.
|
|
1521
|
+
*
|
|
1522
|
+
* @returns Value of property `iconVisible`
|
|
1523
|
+
*/
|
|
1524
|
+
getIconVisible(): boolean;
|
|
1191
1525
|
/**
|
|
1192
1526
|
* Gets current value of property {@link #getNumber number}.
|
|
1193
1527
|
*
|
|
@@ -1197,6 +1531,16 @@ declare namespace sap {
|
|
|
1197
1531
|
* @returns Value of property `number`
|
|
1198
1532
|
*/
|
|
1199
1533
|
getNumber(): string;
|
|
1534
|
+
/**
|
|
1535
|
+
* Gets current value of property {@link #getNumberSize numberSize}.
|
|
1536
|
+
*
|
|
1537
|
+
* The size of the of the main indicator. Possible values are "S" and "L".
|
|
1538
|
+
*
|
|
1539
|
+
* Default value is `"L"`.
|
|
1540
|
+
*
|
|
1541
|
+
* @returns Value of property `numberSize`
|
|
1542
|
+
*/
|
|
1543
|
+
getNumberSize(): string;
|
|
1200
1544
|
/**
|
|
1201
1545
|
* @since 1.109
|
|
1202
1546
|
*
|
|
@@ -1399,6 +1743,165 @@ declare namespace sap {
|
|
|
1399
1743
|
*/
|
|
1400
1744
|
iDetailsMaxLines?: int
|
|
1401
1745
|
): this;
|
|
1746
|
+
/**
|
|
1747
|
+
* @since 1.118
|
|
1748
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1749
|
+
*
|
|
1750
|
+
* Sets a new value for property {@link #getDetailsState detailsState}.
|
|
1751
|
+
*
|
|
1752
|
+
* The semantic color which represents the state of the details text.
|
|
1753
|
+
*
|
|
1754
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1755
|
+
*
|
|
1756
|
+
* Default value is `None`.
|
|
1757
|
+
*
|
|
1758
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1759
|
+
*/
|
|
1760
|
+
setDetailsState(
|
|
1761
|
+
/**
|
|
1762
|
+
* New value for property `detailsState`
|
|
1763
|
+
*/
|
|
1764
|
+
sDetailsState?: sap.ui.core.ValueState
|
|
1765
|
+
): this;
|
|
1766
|
+
/**
|
|
1767
|
+
* @since 1.118
|
|
1768
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1769
|
+
*
|
|
1770
|
+
* Sets a new value for property {@link #getIconAlt iconAlt}.
|
|
1771
|
+
*
|
|
1772
|
+
* Defines an alt text for the avatar or icon.
|
|
1773
|
+
*
|
|
1774
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1775
|
+
*
|
|
1776
|
+
* Default value is `empty string`.
|
|
1777
|
+
*
|
|
1778
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1779
|
+
*/
|
|
1780
|
+
setIconAlt(
|
|
1781
|
+
/**
|
|
1782
|
+
* New value for property `iconAlt`
|
|
1783
|
+
*/
|
|
1784
|
+
sIconAlt?: string
|
|
1785
|
+
): this;
|
|
1786
|
+
/**
|
|
1787
|
+
* @since 1.118
|
|
1788
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1789
|
+
*
|
|
1790
|
+
* Sets a new value for property {@link #getIconBackgroundColor iconBackgroundColor}.
|
|
1791
|
+
*
|
|
1792
|
+
* Defines a background color for the avatar or icon.
|
|
1793
|
+
*
|
|
1794
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1795
|
+
*
|
|
1796
|
+
* Default value is `Transparent`.
|
|
1797
|
+
*
|
|
1798
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1799
|
+
*/
|
|
1800
|
+
setIconBackgroundColor(
|
|
1801
|
+
/**
|
|
1802
|
+
* New value for property `iconBackgroundColor`
|
|
1803
|
+
*/
|
|
1804
|
+
sIconBackgroundColor?: sap.m.AvatarColor
|
|
1805
|
+
): this;
|
|
1806
|
+
/**
|
|
1807
|
+
* @since 1.118
|
|
1808
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1809
|
+
*
|
|
1810
|
+
* Sets a new value for property {@link #getIconDisplayShape iconDisplayShape}.
|
|
1811
|
+
*
|
|
1812
|
+
* Defines the shape of the icon.
|
|
1813
|
+
*
|
|
1814
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1815
|
+
*
|
|
1816
|
+
* Default value is `Circle`.
|
|
1817
|
+
*
|
|
1818
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1819
|
+
*/
|
|
1820
|
+
setIconDisplayShape(
|
|
1821
|
+
/**
|
|
1822
|
+
* New value for property `iconDisplayShape`
|
|
1823
|
+
*/
|
|
1824
|
+
sIconDisplayShape?: sap.m.AvatarShape
|
|
1825
|
+
): this;
|
|
1826
|
+
/**
|
|
1827
|
+
* @since 1.118
|
|
1828
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1829
|
+
*
|
|
1830
|
+
* Sets a new value for property {@link #getIconInitials iconInitials}.
|
|
1831
|
+
*
|
|
1832
|
+
* Defines the initials of the icon.
|
|
1833
|
+
*
|
|
1834
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1835
|
+
*
|
|
1836
|
+
* Default value is `empty string`.
|
|
1837
|
+
*
|
|
1838
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1839
|
+
*/
|
|
1840
|
+
setIconInitials(
|
|
1841
|
+
/**
|
|
1842
|
+
* New value for property `iconInitials`
|
|
1843
|
+
*/
|
|
1844
|
+
sIconInitials?: string
|
|
1845
|
+
): this;
|
|
1846
|
+
/**
|
|
1847
|
+
* @experimental (since 1.119) - this feature is experimental and the API may change.
|
|
1848
|
+
*
|
|
1849
|
+
* Sets a new value for property {@link #getIconSize iconSize}.
|
|
1850
|
+
*
|
|
1851
|
+
* Defines the size of the icon.
|
|
1852
|
+
*
|
|
1853
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1854
|
+
*
|
|
1855
|
+
* Default value is `S`.
|
|
1856
|
+
*
|
|
1857
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1858
|
+
*/
|
|
1859
|
+
setIconSize(
|
|
1860
|
+
/**
|
|
1861
|
+
* New value for property `iconSize`
|
|
1862
|
+
*/
|
|
1863
|
+
sIconSize?: sap.m.AvatarSize
|
|
1864
|
+
): this;
|
|
1865
|
+
/**
|
|
1866
|
+
* @since 1.118
|
|
1867
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1868
|
+
*
|
|
1869
|
+
* Sets a new value for property {@link #getIconSrc iconSrc}.
|
|
1870
|
+
*
|
|
1871
|
+
* Defines the icon source.
|
|
1872
|
+
*
|
|
1873
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1874
|
+
*
|
|
1875
|
+
* Default value is `empty string`.
|
|
1876
|
+
*
|
|
1877
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1878
|
+
*/
|
|
1879
|
+
setIconSrc(
|
|
1880
|
+
/**
|
|
1881
|
+
* New value for property `iconSrc`
|
|
1882
|
+
*/
|
|
1883
|
+
sIconSrc?: sap.ui.core.URI
|
|
1884
|
+
): this;
|
|
1885
|
+
/**
|
|
1886
|
+
* @since 1.118
|
|
1887
|
+
* @experimental (since 1.118) - For usage only by Work Zone.
|
|
1888
|
+
*
|
|
1889
|
+
* Sets a new value for property {@link #getIconVisible iconVisible}.
|
|
1890
|
+
*
|
|
1891
|
+
* Defines whether the card icon is visible.
|
|
1892
|
+
*
|
|
1893
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1894
|
+
*
|
|
1895
|
+
* Default value is `true`.
|
|
1896
|
+
*
|
|
1897
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1898
|
+
*/
|
|
1899
|
+
setIconVisible(
|
|
1900
|
+
/**
|
|
1901
|
+
* New value for property `iconVisible`
|
|
1902
|
+
*/
|
|
1903
|
+
bIconVisible?: boolean
|
|
1904
|
+
): this;
|
|
1402
1905
|
/**
|
|
1403
1906
|
* Sets a new value for property {@link #getNumber number}.
|
|
1404
1907
|
*
|
|
@@ -1415,6 +1918,23 @@ declare namespace sap {
|
|
|
1415
1918
|
*/
|
|
1416
1919
|
sNumber: string
|
|
1417
1920
|
): this;
|
|
1921
|
+
/**
|
|
1922
|
+
* Sets a new value for property {@link #getNumberSize numberSize}.
|
|
1923
|
+
*
|
|
1924
|
+
* The size of the of the main indicator. Possible values are "S" and "L".
|
|
1925
|
+
*
|
|
1926
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1927
|
+
*
|
|
1928
|
+
* Default value is `"L"`.
|
|
1929
|
+
*
|
|
1930
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1931
|
+
*/
|
|
1932
|
+
setNumberSize(
|
|
1933
|
+
/**
|
|
1934
|
+
* New value for property `numberSize`
|
|
1935
|
+
*/
|
|
1936
|
+
sNumberSize?: string
|
|
1937
|
+
): this;
|
|
1418
1938
|
/**
|
|
1419
1939
|
* @since 1.109
|
|
1420
1940
|
*
|
|
@@ -1605,6 +2125,13 @@ declare namespace sap {
|
|
|
1605
2125
|
*/
|
|
1606
2126
|
sUnitOfMeasurement: string
|
|
1607
2127
|
): this;
|
|
2128
|
+
/**
|
|
2129
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2130
|
+
*
|
|
2131
|
+
*
|
|
2132
|
+
* @returns If the icon should be shown.
|
|
2133
|
+
*/
|
|
2134
|
+
shouldShowIcon(): boolean;
|
|
1608
2135
|
}
|
|
1609
2136
|
/**
|
|
1610
2137
|
* @since 1.64
|
|
@@ -2096,7 +2623,7 @@ declare namespace sap {
|
|
|
2096
2623
|
/**
|
|
2097
2624
|
* The value of the {@link sap.f.FlexibleColumnLayout#getLayout layout} property.
|
|
2098
2625
|
*/
|
|
2099
|
-
layout?:
|
|
2626
|
+
layout?: sap.f.LayoutType;
|
|
2100
2627
|
/**
|
|
2101
2628
|
* The maximum number of columns that can be displayed at once based on the control width. See {@link sap.f.FlexibleColumnLayout#getMaxColumnsCount}
|
|
2102
2629
|
*/
|
|
@@ -14409,7 +14936,7 @@ declare namespace sap {
|
|
|
14409
14936
|
* for the first two pages, all other pages will open in fullscreen), and `SingleColumn` (one page at a
|
|
14410
14937
|
* time only).
|
|
14411
14938
|
*/
|
|
14412
|
-
mode
|
|
14939
|
+
mode?: string;
|
|
14413
14940
|
}
|
|
14414
14941
|
);
|
|
14415
14942
|
|