@openui5/ts-types-esm 1.103.0 → 1.105.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 +149 -1
- package/types/sap.m.d.ts +2119 -120
- 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 +326 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +136 -679
- package/types/sap.ui.integration.d.ts +104 -71
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -1
- package/types/sap.ui.rta.d.ts +3 -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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +128 -4
- 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 +213 -17
- package/types/sap.ui.webc.main.d.ts +523 -63
- 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.105.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -8345,6 +8345,17 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8345
8345
|
* @returns Metadata object describing this class
|
|
8346
8346
|
*/
|
|
8347
8347
|
static getMetadata(): ElementMetadata;
|
|
8348
|
+
/**
|
|
8349
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
8350
|
+
*
|
|
8351
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8352
|
+
* control.
|
|
8353
|
+
*
|
|
8354
|
+
* If not set, a predefined text is used.
|
|
8355
|
+
*
|
|
8356
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
8357
|
+
*/
|
|
8358
|
+
getFirstColumnBackArrowLabel(): string;
|
|
8348
8359
|
/**
|
|
8349
8360
|
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
8350
8361
|
*
|
|
@@ -8356,6 +8367,17 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8356
8367
|
* @returns Value of property `firstColumnLabel`
|
|
8357
8368
|
*/
|
|
8358
8369
|
getFirstColumnLabel(): string;
|
|
8370
|
+
/**
|
|
8371
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
8372
|
+
*
|
|
8373
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8374
|
+
* control.
|
|
8375
|
+
*
|
|
8376
|
+
* If not set, a predefined text is used.
|
|
8377
|
+
*
|
|
8378
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
8379
|
+
*/
|
|
8380
|
+
getLastColumnForwardArrowLabel(): string;
|
|
8359
8381
|
/**
|
|
8360
8382
|
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
8361
8383
|
*
|
|
@@ -8367,6 +8389,28 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8367
8389
|
* @returns Value of property `lastColumnLabel`
|
|
8368
8390
|
*/
|
|
8369
8391
|
getLastColumnLabel(): string;
|
|
8392
|
+
/**
|
|
8393
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
8394
|
+
*
|
|
8395
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8396
|
+
* control.
|
|
8397
|
+
*
|
|
8398
|
+
* If not set, a predefined text is used.
|
|
8399
|
+
*
|
|
8400
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
8401
|
+
*/
|
|
8402
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
8403
|
+
/**
|
|
8404
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
8405
|
+
*
|
|
8406
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8407
|
+
* control.
|
|
8408
|
+
*
|
|
8409
|
+
* If not set, a predefined text is used.
|
|
8410
|
+
*
|
|
8411
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
8412
|
+
*/
|
|
8413
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
8370
8414
|
/**
|
|
8371
8415
|
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
8372
8416
|
*
|
|
@@ -8378,6 +8422,24 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8378
8422
|
* @returns Value of property `middleColumnLabel`
|
|
8379
8423
|
*/
|
|
8380
8424
|
getMiddleColumnLabel(): string;
|
|
8425
|
+
/**
|
|
8426
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
8427
|
+
*
|
|
8428
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8429
|
+
* control.
|
|
8430
|
+
*
|
|
8431
|
+
* If not set, a predefined text is used.
|
|
8432
|
+
*
|
|
8433
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8434
|
+
*
|
|
8435
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8436
|
+
*/
|
|
8437
|
+
setFirstColumnBackArrowLabel(
|
|
8438
|
+
/**
|
|
8439
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
8440
|
+
*/
|
|
8441
|
+
sFirstColumnBackArrowLabel?: string
|
|
8442
|
+
): this;
|
|
8381
8443
|
/**
|
|
8382
8444
|
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
8383
8445
|
*
|
|
@@ -8396,6 +8458,24 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8396
8458
|
*/
|
|
8397
8459
|
sFirstColumnLabel?: string
|
|
8398
8460
|
): this;
|
|
8461
|
+
/**
|
|
8462
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
8463
|
+
*
|
|
8464
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8465
|
+
* control.
|
|
8466
|
+
*
|
|
8467
|
+
* If not set, a predefined text is used.
|
|
8468
|
+
*
|
|
8469
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8470
|
+
*
|
|
8471
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8472
|
+
*/
|
|
8473
|
+
setLastColumnForwardArrowLabel(
|
|
8474
|
+
/**
|
|
8475
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
8476
|
+
*/
|
|
8477
|
+
sLastColumnForwardArrowLabel?: string
|
|
8478
|
+
): this;
|
|
8399
8479
|
/**
|
|
8400
8480
|
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
8401
8481
|
*
|
|
@@ -8414,6 +8494,42 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8414
8494
|
*/
|
|
8415
8495
|
sLastColumnLabel?: string
|
|
8416
8496
|
): this;
|
|
8497
|
+
/**
|
|
8498
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
8499
|
+
*
|
|
8500
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8501
|
+
* control.
|
|
8502
|
+
*
|
|
8503
|
+
* If not set, a predefined text is used.
|
|
8504
|
+
*
|
|
8505
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8506
|
+
*
|
|
8507
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8508
|
+
*/
|
|
8509
|
+
setMiddleColumnBackArrowLabel(
|
|
8510
|
+
/**
|
|
8511
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
8512
|
+
*/
|
|
8513
|
+
sMiddleColumnBackArrowLabel?: string
|
|
8514
|
+
): this;
|
|
8515
|
+
/**
|
|
8516
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
8517
|
+
*
|
|
8518
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8519
|
+
* control.
|
|
8520
|
+
*
|
|
8521
|
+
* If not set, a predefined text is used.
|
|
8522
|
+
*
|
|
8523
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8524
|
+
*
|
|
8525
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8526
|
+
*/
|
|
8527
|
+
setMiddleColumnForwardArrowLabel(
|
|
8528
|
+
/**
|
|
8529
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
8530
|
+
*/
|
|
8531
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
8532
|
+
): this;
|
|
8417
8533
|
/**
|
|
8418
8534
|
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
8419
8535
|
*
|
|
@@ -8459,6 +8575,38 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8459
8575
|
* If not set, a predefined text is used.
|
|
8460
8576
|
*/
|
|
8461
8577
|
lastColumnLabel?: string | PropertyBindingInfo;
|
|
8578
|
+
|
|
8579
|
+
/**
|
|
8580
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8581
|
+
* control.
|
|
8582
|
+
*
|
|
8583
|
+
* If not set, a predefined text is used.
|
|
8584
|
+
*/
|
|
8585
|
+
firstColumnBackArrowLabel?: string | PropertyBindingInfo;
|
|
8586
|
+
|
|
8587
|
+
/**
|
|
8588
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8589
|
+
* control.
|
|
8590
|
+
*
|
|
8591
|
+
* If not set, a predefined text is used.
|
|
8592
|
+
*/
|
|
8593
|
+
middleColumnForwardArrowLabel?: string | PropertyBindingInfo;
|
|
8594
|
+
|
|
8595
|
+
/**
|
|
8596
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8597
|
+
* control.
|
|
8598
|
+
*
|
|
8599
|
+
* If not set, a predefined text is used.
|
|
8600
|
+
*/
|
|
8601
|
+
middleColumnBackArrowLabel?: string | PropertyBindingInfo;
|
|
8602
|
+
|
|
8603
|
+
/**
|
|
8604
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8605
|
+
* control.
|
|
8606
|
+
*
|
|
8607
|
+
* If not set, a predefined text is used.
|
|
8608
|
+
*/
|
|
8609
|
+
lastColumnForwardArrowLabel?: string | PropertyBindingInfo;
|
|
8462
8610
|
}
|
|
8463
8611
|
}
|
|
8464
8612
|
|