@sapui5/ts-types-esm 1.102.2 → 1.102.3
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.chart.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +149 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1164 -1116
- package/types/sap.fe.macros.d.ts +317 -303
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +167 -168
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.m.d.ts +85 -8
- 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.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 +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.3
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
export interface IToolHeader {
|
|
@@ -8211,6 +8211,17 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8211
8211
|
* @returns Metadata object describing this class
|
|
8212
8212
|
*/
|
|
8213
8213
|
static getMetadata(): ElementMetadata;
|
|
8214
|
+
/**
|
|
8215
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
8216
|
+
*
|
|
8217
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8218
|
+
* control.
|
|
8219
|
+
*
|
|
8220
|
+
* If not set, a predefined text is used.
|
|
8221
|
+
*
|
|
8222
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
8223
|
+
*/
|
|
8224
|
+
getFirstColumnBackArrowLabel(): string;
|
|
8214
8225
|
/**
|
|
8215
8226
|
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
8216
8227
|
*
|
|
@@ -8222,6 +8233,17 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8222
8233
|
* @returns Value of property `firstColumnLabel`
|
|
8223
8234
|
*/
|
|
8224
8235
|
getFirstColumnLabel(): string;
|
|
8236
|
+
/**
|
|
8237
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
8238
|
+
*
|
|
8239
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8240
|
+
* control.
|
|
8241
|
+
*
|
|
8242
|
+
* If not set, a predefined text is used.
|
|
8243
|
+
*
|
|
8244
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
8245
|
+
*/
|
|
8246
|
+
getLastColumnForwardArrowLabel(): string;
|
|
8225
8247
|
/**
|
|
8226
8248
|
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
8227
8249
|
*
|
|
@@ -8233,6 +8255,28 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8233
8255
|
* @returns Value of property `lastColumnLabel`
|
|
8234
8256
|
*/
|
|
8235
8257
|
getLastColumnLabel(): string;
|
|
8258
|
+
/**
|
|
8259
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
8260
|
+
*
|
|
8261
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8262
|
+
* control.
|
|
8263
|
+
*
|
|
8264
|
+
* If not set, a predefined text is used.
|
|
8265
|
+
*
|
|
8266
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
8267
|
+
*/
|
|
8268
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
8269
|
+
/**
|
|
8270
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
8271
|
+
*
|
|
8272
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8273
|
+
* control.
|
|
8274
|
+
*
|
|
8275
|
+
* If not set, a predefined text is used.
|
|
8276
|
+
*
|
|
8277
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
8278
|
+
*/
|
|
8279
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
8236
8280
|
/**
|
|
8237
8281
|
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
8238
8282
|
*
|
|
@@ -8244,6 +8288,24 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8244
8288
|
* @returns Value of property `middleColumnLabel`
|
|
8245
8289
|
*/
|
|
8246
8290
|
getMiddleColumnLabel(): string;
|
|
8291
|
+
/**
|
|
8292
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
8293
|
+
*
|
|
8294
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8295
|
+
* control.
|
|
8296
|
+
*
|
|
8297
|
+
* If not set, a predefined text is used.
|
|
8298
|
+
*
|
|
8299
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8300
|
+
*
|
|
8301
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8302
|
+
*/
|
|
8303
|
+
setFirstColumnBackArrowLabel(
|
|
8304
|
+
/**
|
|
8305
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
8306
|
+
*/
|
|
8307
|
+
sFirstColumnBackArrowLabel?: string
|
|
8308
|
+
): this;
|
|
8247
8309
|
/**
|
|
8248
8310
|
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
8249
8311
|
*
|
|
@@ -8262,6 +8324,24 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8262
8324
|
*/
|
|
8263
8325
|
sFirstColumnLabel?: string
|
|
8264
8326
|
): this;
|
|
8327
|
+
/**
|
|
8328
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
8329
|
+
*
|
|
8330
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8331
|
+
* control.
|
|
8332
|
+
*
|
|
8333
|
+
* If not set, a predefined text is used.
|
|
8334
|
+
*
|
|
8335
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8336
|
+
*
|
|
8337
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8338
|
+
*/
|
|
8339
|
+
setLastColumnForwardArrowLabel(
|
|
8340
|
+
/**
|
|
8341
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
8342
|
+
*/
|
|
8343
|
+
sLastColumnForwardArrowLabel?: string
|
|
8344
|
+
): this;
|
|
8265
8345
|
/**
|
|
8266
8346
|
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
8267
8347
|
*
|
|
@@ -8280,6 +8360,42 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8280
8360
|
*/
|
|
8281
8361
|
sLastColumnLabel?: string
|
|
8282
8362
|
): this;
|
|
8363
|
+
/**
|
|
8364
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
8365
|
+
*
|
|
8366
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8367
|
+
* control.
|
|
8368
|
+
*
|
|
8369
|
+
* If not set, a predefined text is used.
|
|
8370
|
+
*
|
|
8371
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8372
|
+
*
|
|
8373
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8374
|
+
*/
|
|
8375
|
+
setMiddleColumnBackArrowLabel(
|
|
8376
|
+
/**
|
|
8377
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
8378
|
+
*/
|
|
8379
|
+
sMiddleColumnBackArrowLabel?: string
|
|
8380
|
+
): this;
|
|
8381
|
+
/**
|
|
8382
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
8383
|
+
*
|
|
8384
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8385
|
+
* control.
|
|
8386
|
+
*
|
|
8387
|
+
* If not set, a predefined text is used.
|
|
8388
|
+
*
|
|
8389
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8390
|
+
*
|
|
8391
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8392
|
+
*/
|
|
8393
|
+
setMiddleColumnForwardArrowLabel(
|
|
8394
|
+
/**
|
|
8395
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
8396
|
+
*/
|
|
8397
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
8398
|
+
): this;
|
|
8283
8399
|
/**
|
|
8284
8400
|
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
8285
8401
|
*
|
|
@@ -8325,6 +8441,38 @@ declare module "sap/f/FlexibleColumnLayoutAccessibleLandmarkInfo" {
|
|
|
8325
8441
|
* If not set, a predefined text is used.
|
|
8326
8442
|
*/
|
|
8327
8443
|
lastColumnLabel?: string | PropertyBindingInfo;
|
|
8444
|
+
|
|
8445
|
+
/**
|
|
8446
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8447
|
+
* control.
|
|
8448
|
+
*
|
|
8449
|
+
* If not set, a predefined text is used.
|
|
8450
|
+
*/
|
|
8451
|
+
firstColumnBackArrowLabel?: string | PropertyBindingInfo;
|
|
8452
|
+
|
|
8453
|
+
/**
|
|
8454
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8455
|
+
* control.
|
|
8456
|
+
*
|
|
8457
|
+
* If not set, a predefined text is used.
|
|
8458
|
+
*/
|
|
8459
|
+
middleColumnForwardArrowLabel?: string | PropertyBindingInfo;
|
|
8460
|
+
|
|
8461
|
+
/**
|
|
8462
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8463
|
+
* control.
|
|
8464
|
+
*
|
|
8465
|
+
* If not set, a predefined text is used.
|
|
8466
|
+
*/
|
|
8467
|
+
middleColumnBackArrowLabel?: string | PropertyBindingInfo;
|
|
8468
|
+
|
|
8469
|
+
/**
|
|
8470
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
8471
|
+
* control.
|
|
8472
|
+
*
|
|
8473
|
+
* If not set, a predefined text is used.
|
|
8474
|
+
*/
|
|
8475
|
+
lastColumnForwardArrowLabel?: string | PropertyBindingInfo;
|
|
8328
8476
|
}
|
|
8329
8477
|
}
|
|
8330
8478
|
|
package/types/sap.fe.common.d.ts
CHANGED