@openui5/ts-types 1.128.0 → 1.130.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 +83 -1
- package/types/sap.m.d.ts +1721 -3936
- 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 +171 -170
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +15 -1
- package/types/sap.ui.integration.d.ts +58 -5
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +798 -259
- 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 +76 -28
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +103 -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 +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -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.130.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -226,6 +226,16 @@ declare namespace sap {
|
|
|
226
226
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
227
227
|
| `{${string}}`;
|
|
228
228
|
|
|
229
|
+
/**
|
|
230
|
+
* Defines how the image fits in the icon area.
|
|
231
|
+
*
|
|
232
|
+
* @since 1.130
|
|
233
|
+
*/
|
|
234
|
+
iconFitType?:
|
|
235
|
+
| sap.m.AvatarImageFitType
|
|
236
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
237
|
+
| `{${string}}`;
|
|
238
|
+
|
|
229
239
|
/**
|
|
230
240
|
* Fires when the user presses the control.
|
|
231
241
|
*/
|
|
@@ -341,6 +351,16 @@ declare namespace sap {
|
|
|
341
351
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
342
352
|
| `{${string}}`;
|
|
343
353
|
|
|
354
|
+
/**
|
|
355
|
+
* Defines how the image fits in the icon area.
|
|
356
|
+
*
|
|
357
|
+
* @since 1.130
|
|
358
|
+
*/
|
|
359
|
+
iconFitType?:
|
|
360
|
+
| sap.m.AvatarImageFitType
|
|
361
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
362
|
+
| `{${string}}`;
|
|
363
|
+
|
|
344
364
|
/**
|
|
345
365
|
* General unit of measurement for the header. Displayed as side information to the subtitle.
|
|
346
366
|
*/
|
|
@@ -1270,6 +1290,18 @@ declare namespace sap {
|
|
|
1270
1290
|
* @returns Value of property `iconDisplayShape`
|
|
1271
1291
|
*/
|
|
1272
1292
|
getIconDisplayShape(): sap.m.AvatarShape;
|
|
1293
|
+
/**
|
|
1294
|
+
* Gets current value of property {@link #getIconFitType iconFitType}.
|
|
1295
|
+
*
|
|
1296
|
+
* Defines how the image fits in the icon area.
|
|
1297
|
+
*
|
|
1298
|
+
* Default value is `Cover`.
|
|
1299
|
+
*
|
|
1300
|
+
* @since 1.130
|
|
1301
|
+
*
|
|
1302
|
+
* @returns Value of property `iconFitType`
|
|
1303
|
+
*/
|
|
1304
|
+
getIconFitType(): sap.m.AvatarImageFitType;
|
|
1273
1305
|
/**
|
|
1274
1306
|
* Gets current value of property {@link #getIconInitials iconInitials}.
|
|
1275
1307
|
*
|
|
@@ -1429,6 +1461,25 @@ declare namespace sap {
|
|
|
1429
1461
|
*/
|
|
1430
1462
|
sIconDisplayShape?: sap.m.AvatarShape
|
|
1431
1463
|
): this;
|
|
1464
|
+
/**
|
|
1465
|
+
* Sets a new value for property {@link #getIconFitType iconFitType}.
|
|
1466
|
+
*
|
|
1467
|
+
* Defines how the image fits in the icon area.
|
|
1468
|
+
*
|
|
1469
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1470
|
+
*
|
|
1471
|
+
* Default value is `Cover`.
|
|
1472
|
+
*
|
|
1473
|
+
* @since 1.130
|
|
1474
|
+
*
|
|
1475
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1476
|
+
*/
|
|
1477
|
+
setIconFitType(
|
|
1478
|
+
/**
|
|
1479
|
+
* New value for property `iconFitType`
|
|
1480
|
+
*/
|
|
1481
|
+
sIconFitType?: sap.m.AvatarImageFitType
|
|
1482
|
+
): this;
|
|
1432
1483
|
/**
|
|
1433
1484
|
* Sets a new value for property {@link #getIconInitials iconInitials}.
|
|
1434
1485
|
*
|
|
@@ -1881,6 +1932,18 @@ declare namespace sap {
|
|
|
1881
1932
|
* @returns Value of property `iconDisplayShape`
|
|
1882
1933
|
*/
|
|
1883
1934
|
getIconDisplayShape(): sap.m.AvatarShape;
|
|
1935
|
+
/**
|
|
1936
|
+
* Gets current value of property {@link #getIconFitType iconFitType}.
|
|
1937
|
+
*
|
|
1938
|
+
* Defines how the image fits in the icon area.
|
|
1939
|
+
*
|
|
1940
|
+
* Default value is `Cover`.
|
|
1941
|
+
*
|
|
1942
|
+
* @since 1.130
|
|
1943
|
+
*
|
|
1944
|
+
* @returns Value of property `iconFitType`
|
|
1945
|
+
*/
|
|
1946
|
+
getIconFitType(): sap.m.AvatarImageFitType;
|
|
1884
1947
|
/**
|
|
1885
1948
|
* Gets current value of property {@link #getIconInitials iconInitials}.
|
|
1886
1949
|
*
|
|
@@ -2255,6 +2318,25 @@ declare namespace sap {
|
|
|
2255
2318
|
*/
|
|
2256
2319
|
sIconDisplayShape?: sap.m.AvatarShape
|
|
2257
2320
|
): this;
|
|
2321
|
+
/**
|
|
2322
|
+
* Sets a new value for property {@link #getIconFitType iconFitType}.
|
|
2323
|
+
*
|
|
2324
|
+
* Defines how the image fits in the icon area.
|
|
2325
|
+
*
|
|
2326
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2327
|
+
*
|
|
2328
|
+
* Default value is `Cover`.
|
|
2329
|
+
*
|
|
2330
|
+
* @since 1.130
|
|
2331
|
+
*
|
|
2332
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
2333
|
+
*/
|
|
2334
|
+
setIconFitType(
|
|
2335
|
+
/**
|
|
2336
|
+
* New value for property `iconFitType`
|
|
2337
|
+
*/
|
|
2338
|
+
sIconFitType?: sap.m.AvatarImageFitType
|
|
2339
|
+
): this;
|
|
2258
2340
|
/**
|
|
2259
2341
|
* Sets a new value for property {@link #getIconInitials iconInitials}.
|
|
2260
2342
|
*
|