@sapui5/ts-types 1.102.2 → 1.102.5
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 +157 -1
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.gantt.d.ts +11 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +103 -9
- 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.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 +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 +3 -3
- 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.5
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -7651,6 +7651,46 @@ declare namespace sap {
|
|
|
7651
7651
|
* If not set, a predefined text is used.
|
|
7652
7652
|
*/
|
|
7653
7653
|
lastColumnLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7654
|
+
|
|
7655
|
+
/**
|
|
7656
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7657
|
+
* control.
|
|
7658
|
+
*
|
|
7659
|
+
* If not set, a predefined text is used.
|
|
7660
|
+
*/
|
|
7661
|
+
firstColumnBackArrowLabel?:
|
|
7662
|
+
| string
|
|
7663
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7664
|
+
|
|
7665
|
+
/**
|
|
7666
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7667
|
+
* control.
|
|
7668
|
+
*
|
|
7669
|
+
* If not set, a predefined text is used.
|
|
7670
|
+
*/
|
|
7671
|
+
middleColumnForwardArrowLabel?:
|
|
7672
|
+
| string
|
|
7673
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7674
|
+
|
|
7675
|
+
/**
|
|
7676
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7677
|
+
* control.
|
|
7678
|
+
*
|
|
7679
|
+
* If not set, a predefined text is used.
|
|
7680
|
+
*/
|
|
7681
|
+
middleColumnBackArrowLabel?:
|
|
7682
|
+
| string
|
|
7683
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7684
|
+
|
|
7685
|
+
/**
|
|
7686
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7687
|
+
* control.
|
|
7688
|
+
*
|
|
7689
|
+
* If not set, a predefined text is used.
|
|
7690
|
+
*/
|
|
7691
|
+
lastColumnForwardArrowLabel?:
|
|
7692
|
+
| string
|
|
7693
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7654
7694
|
}
|
|
7655
7695
|
|
|
7656
7696
|
interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -13372,6 +13412,17 @@ declare namespace sap {
|
|
|
13372
13412
|
* @returns Metadata object describing this class
|
|
13373
13413
|
*/
|
|
13374
13414
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13415
|
+
/**
|
|
13416
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13417
|
+
*
|
|
13418
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13419
|
+
* control.
|
|
13420
|
+
*
|
|
13421
|
+
* If not set, a predefined text is used.
|
|
13422
|
+
*
|
|
13423
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
13424
|
+
*/
|
|
13425
|
+
getFirstColumnBackArrowLabel(): string;
|
|
13375
13426
|
/**
|
|
13376
13427
|
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13377
13428
|
*
|
|
@@ -13383,6 +13434,17 @@ declare namespace sap {
|
|
|
13383
13434
|
* @returns Value of property `firstColumnLabel`
|
|
13384
13435
|
*/
|
|
13385
13436
|
getFirstColumnLabel(): string;
|
|
13437
|
+
/**
|
|
13438
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13439
|
+
*
|
|
13440
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13441
|
+
* control.
|
|
13442
|
+
*
|
|
13443
|
+
* If not set, a predefined text is used.
|
|
13444
|
+
*
|
|
13445
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
13446
|
+
*/
|
|
13447
|
+
getLastColumnForwardArrowLabel(): string;
|
|
13386
13448
|
/**
|
|
13387
13449
|
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13388
13450
|
*
|
|
@@ -13394,6 +13456,28 @@ declare namespace sap {
|
|
|
13394
13456
|
* @returns Value of property `lastColumnLabel`
|
|
13395
13457
|
*/
|
|
13396
13458
|
getLastColumnLabel(): string;
|
|
13459
|
+
/**
|
|
13460
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13461
|
+
*
|
|
13462
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13463
|
+
* control.
|
|
13464
|
+
*
|
|
13465
|
+
* If not set, a predefined text is used.
|
|
13466
|
+
*
|
|
13467
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
13468
|
+
*/
|
|
13469
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
13470
|
+
/**
|
|
13471
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13472
|
+
*
|
|
13473
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13474
|
+
* control.
|
|
13475
|
+
*
|
|
13476
|
+
* If not set, a predefined text is used.
|
|
13477
|
+
*
|
|
13478
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
13479
|
+
*/
|
|
13480
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
13397
13481
|
/**
|
|
13398
13482
|
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13399
13483
|
*
|
|
@@ -13405,6 +13489,24 @@ declare namespace sap {
|
|
|
13405
13489
|
* @returns Value of property `middleColumnLabel`
|
|
13406
13490
|
*/
|
|
13407
13491
|
getMiddleColumnLabel(): string;
|
|
13492
|
+
/**
|
|
13493
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13494
|
+
*
|
|
13495
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13496
|
+
* control.
|
|
13497
|
+
*
|
|
13498
|
+
* If not set, a predefined text is used.
|
|
13499
|
+
*
|
|
13500
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13501
|
+
*
|
|
13502
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13503
|
+
*/
|
|
13504
|
+
setFirstColumnBackArrowLabel(
|
|
13505
|
+
/**
|
|
13506
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
13507
|
+
*/
|
|
13508
|
+
sFirstColumnBackArrowLabel?: string
|
|
13509
|
+
): this;
|
|
13408
13510
|
/**
|
|
13409
13511
|
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13410
13512
|
*
|
|
@@ -13423,6 +13525,24 @@ declare namespace sap {
|
|
|
13423
13525
|
*/
|
|
13424
13526
|
sFirstColumnLabel?: string
|
|
13425
13527
|
): this;
|
|
13528
|
+
/**
|
|
13529
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13530
|
+
*
|
|
13531
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13532
|
+
* control.
|
|
13533
|
+
*
|
|
13534
|
+
* If not set, a predefined text is used.
|
|
13535
|
+
*
|
|
13536
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13537
|
+
*
|
|
13538
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13539
|
+
*/
|
|
13540
|
+
setLastColumnForwardArrowLabel(
|
|
13541
|
+
/**
|
|
13542
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
13543
|
+
*/
|
|
13544
|
+
sLastColumnForwardArrowLabel?: string
|
|
13545
|
+
): this;
|
|
13426
13546
|
/**
|
|
13427
13547
|
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13428
13548
|
*
|
|
@@ -13441,6 +13561,42 @@ declare namespace sap {
|
|
|
13441
13561
|
*/
|
|
13442
13562
|
sLastColumnLabel?: string
|
|
13443
13563
|
): this;
|
|
13564
|
+
/**
|
|
13565
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13566
|
+
*
|
|
13567
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13568
|
+
* control.
|
|
13569
|
+
*
|
|
13570
|
+
* If not set, a predefined text is used.
|
|
13571
|
+
*
|
|
13572
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13573
|
+
*
|
|
13574
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13575
|
+
*/
|
|
13576
|
+
setMiddleColumnBackArrowLabel(
|
|
13577
|
+
/**
|
|
13578
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
13579
|
+
*/
|
|
13580
|
+
sMiddleColumnBackArrowLabel?: string
|
|
13581
|
+
): this;
|
|
13582
|
+
/**
|
|
13583
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13584
|
+
*
|
|
13585
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13586
|
+
* control.
|
|
13587
|
+
*
|
|
13588
|
+
* If not set, a predefined text is used.
|
|
13589
|
+
*
|
|
13590
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13591
|
+
*
|
|
13592
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13593
|
+
*/
|
|
13594
|
+
setMiddleColumnForwardArrowLabel(
|
|
13595
|
+
/**
|
|
13596
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
13597
|
+
*/
|
|
13598
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
13599
|
+
): this;
|
|
13444
13600
|
/**
|
|
13445
13601
|
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13446
13602
|
*
|
package/types/sap.fe.common.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.5
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -38173,6 +38173,16 @@ declare namespace sap {
|
|
|
38173
38173
|
*/
|
|
38174
38174
|
sRelationshipShapeSize?: sap.gantt.simple.relationshipShapeSize
|
|
38175
38175
|
): this;
|
|
38176
|
+
/**
|
|
38177
|
+
* Call for 'setRowSettingsTemplate' method of table is made with invalidate Also, create the promise to
|
|
38178
|
+
* wait for inner gantt rendering
|
|
38179
|
+
*/
|
|
38180
|
+
setRowSettingsTempWithInvalid(
|
|
38181
|
+
/**
|
|
38182
|
+
* Table RowSettings template
|
|
38183
|
+
*/
|
|
38184
|
+
oRowSettings: object
|
|
38185
|
+
): void;
|
|
38176
38186
|
/**
|
|
38177
38187
|
* @EXPERIMENTAL (since 1.88)
|
|
38178
38188
|
*
|
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.5
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -19158,8 +19158,9 @@ declare namespace sap {
|
|
|
19158
19158
|
| `{${string}}`;
|
|
19159
19159
|
|
|
19160
19160
|
/**
|
|
19161
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
19162
|
-
*
|
|
19161
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
19162
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
19163
|
+
* and register a `press` event handler.
|
|
19163
19164
|
*/
|
|
19164
19165
|
href?:
|
|
19165
19166
|
| sap.ui.core.URI
|
|
@@ -19251,6 +19252,22 @@ declare namespace sap {
|
|
|
19251
19252
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19252
19253
|
| `{${string}}`;
|
|
19253
19254
|
|
|
19255
|
+
/**
|
|
19256
|
+
* @SINCE 1.102.2
|
|
19257
|
+
*
|
|
19258
|
+
* Describes the accessibility role of the link:
|
|
19259
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
19260
|
+
*
|
|
19261
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
19262
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
19263
|
+
*
|
|
19264
|
+
* **Note:** This is a downported feature introduced in version 1.104
|
|
19265
|
+
*/
|
|
19266
|
+
accessibleRole?:
|
|
19267
|
+
| sap.m.LinkAccessibleRole
|
|
19268
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
19269
|
+
| `{${string}}`;
|
|
19270
|
+
|
|
19254
19271
|
/**
|
|
19255
19272
|
* @SINCE 1.89
|
|
19256
19273
|
*
|
|
@@ -30514,6 +30531,17 @@ declare namespace sap {
|
|
|
30514
30531
|
*/
|
|
30515
30532
|
aOptionKeys: any[]
|
|
30516
30533
|
): object[];
|
|
30534
|
+
/**
|
|
30535
|
+
* Returns a date in machine timezone setting, removing the offset added by the application configuration.
|
|
30536
|
+
*
|
|
30537
|
+
* @returns A local JS date with removed offset
|
|
30538
|
+
*/
|
|
30539
|
+
removeTimezoneOffset(
|
|
30540
|
+
/**
|
|
30541
|
+
* A local JS date with added offset
|
|
30542
|
+
*/
|
|
30543
|
+
oDate: Object
|
|
30544
|
+
): Object;
|
|
30517
30545
|
/**
|
|
30518
30546
|
* Calculates a date range from a provided object in the format of the DynamicDateRange's value.
|
|
30519
30547
|
*
|
|
@@ -55765,9 +55793,15 @@ declare namespace sap {
|
|
|
55765
55793
|
*/
|
|
55766
55794
|
getShowOverflowSelectList(): boolean;
|
|
55767
55795
|
/**
|
|
55768
|
-
*
|
|
55796
|
+
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
55769
55797
|
*
|
|
55770
|
-
*
|
|
55798
|
+
* Gets current value of property {@link #getShowSelection showSelection}.
|
|
55799
|
+
*
|
|
55800
|
+
* Defines whether the current selection should be visualized.
|
|
55801
|
+
*
|
|
55802
|
+
* Default value is `true`.
|
|
55803
|
+
*
|
|
55804
|
+
* @returns Value of property `showSelection`
|
|
55771
55805
|
*/
|
|
55772
55806
|
getShowSelection(): boolean;
|
|
55773
55807
|
/**
|
|
@@ -63355,6 +63389,24 @@ declare namespace sap {
|
|
|
63355
63389
|
* @returns The `sap.m.Link` accessibility information
|
|
63356
63390
|
*/
|
|
63357
63391
|
getAccessibilityInfo(): object;
|
|
63392
|
+
/**
|
|
63393
|
+
* @SINCE 1.102.2
|
|
63394
|
+
*
|
|
63395
|
+
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
63396
|
+
*
|
|
63397
|
+
* Describes the accessibility role of the link:
|
|
63398
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
63399
|
+
*
|
|
63400
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
63401
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
63402
|
+
*
|
|
63403
|
+
* **Note:** This is a downported feature introduced in version 1.104
|
|
63404
|
+
*
|
|
63405
|
+
* Default value is `Default`.
|
|
63406
|
+
*
|
|
63407
|
+
* @returns Value of property `accessibleRole`
|
|
63408
|
+
*/
|
|
63409
|
+
getAccessibleRole(): sap.m.LinkAccessibleRole;
|
|
63358
63410
|
/**
|
|
63359
63411
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
63360
63412
|
* ariaDescribedBy}.
|
|
@@ -63423,8 +63475,9 @@ declare namespace sap {
|
|
|
63423
63475
|
/**
|
|
63424
63476
|
* Gets current value of property {@link #getHref href}.
|
|
63425
63477
|
*
|
|
63426
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
63427
|
-
*
|
|
63478
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
63479
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
63480
|
+
* and register a `press` event handler.
|
|
63428
63481
|
*
|
|
63429
63482
|
* @returns Value of property `href`
|
|
63430
63483
|
*/
|
|
@@ -63573,6 +63626,31 @@ declare namespace sap {
|
|
|
63573
63626
|
*/
|
|
63574
63627
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
63575
63628
|
): sap.ui.core.ID;
|
|
63629
|
+
/**
|
|
63630
|
+
* @SINCE 1.102.2
|
|
63631
|
+
*
|
|
63632
|
+
* Sets a new value for property {@link #getAccessibleRole accessibleRole}.
|
|
63633
|
+
*
|
|
63634
|
+
* Describes the accessibility role of the link:
|
|
63635
|
+
* - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
|
|
63636
|
+
*
|
|
63637
|
+
* - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
|
|
63638
|
+
* scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
|
|
63639
|
+
*
|
|
63640
|
+
* **Note:** This is a downported feature introduced in version 1.104
|
|
63641
|
+
*
|
|
63642
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
63643
|
+
*
|
|
63644
|
+
* Default value is `Default`.
|
|
63645
|
+
*
|
|
63646
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
63647
|
+
*/
|
|
63648
|
+
setAccessibleRole(
|
|
63649
|
+
/**
|
|
63650
|
+
* New value for property `accessibleRole`
|
|
63651
|
+
*/
|
|
63652
|
+
sAccessibleRole?: sap.m.LinkAccessibleRole
|
|
63653
|
+
): this;
|
|
63576
63654
|
/**
|
|
63577
63655
|
* @SINCE 1.86.0
|
|
63578
63656
|
*
|
|
@@ -63659,8 +63737,9 @@ declare namespace sap {
|
|
|
63659
63737
|
/**
|
|
63660
63738
|
* Sets a new value for property {@link #getHref href}.
|
|
63661
63739
|
*
|
|
63662
|
-
* Defines the link target URI. Supports standard hyperlink behavior.
|
|
63663
|
-
*
|
|
63740
|
+
* Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
|
|
63741
|
+
* if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
|
|
63742
|
+
* and register a `press` event handler.
|
|
63664
63743
|
*
|
|
63665
63744
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
63666
63745
|
*
|
|
@@ -134866,6 +134945,21 @@ declare namespace sap {
|
|
|
134866
134945
|
*/
|
|
134867
134946
|
TimeOutError = "TIME_OUT_ERROR",
|
|
134868
134947
|
}
|
|
134948
|
+
/**
|
|
134949
|
+
* @SINCE 1.102.2
|
|
134950
|
+
*
|
|
134951
|
+
* Enumeration for possible Link accessibility roles.
|
|
134952
|
+
*/
|
|
134953
|
+
enum LinkAccessibleRole {
|
|
134954
|
+
/**
|
|
134955
|
+
* Link will receive `role="Button"` attibute.
|
|
134956
|
+
*/
|
|
134957
|
+
Button = "Button",
|
|
134958
|
+
/**
|
|
134959
|
+
* Default mode.
|
|
134960
|
+
*/
|
|
134961
|
+
Default = "Default",
|
|
134962
|
+
}
|
|
134869
134963
|
/**
|
|
134870
134964
|
* @SINCE 1.45.5
|
|
134871
134965
|
*
|
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
|
|
|
264
264
|
): jQuery;
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
-
// For Library Version: 1.102.
|
|
267
|
+
// For Library Version: 1.102.5
|
|
268
268
|
|
|
269
269
|
declare module "sap/base/assert" {
|
|
270
270
|
/**
|
|
@@ -15544,11 +15544,11 @@ declare namespace sap {
|
|
|
15544
15544
|
/**
|
|
15545
15545
|
* Whether the fragment content should be added to the `dependents` aggregation of the view
|
|
15546
15546
|
*/
|
|
15547
|
-
addToDependents?:
|
|
15547
|
+
addToDependents?: boolean;
|
|
15548
15548
|
/**
|
|
15549
15549
|
* Whether the IDs of the fragment content will be prefixed by the view ID
|
|
15550
15550
|
*/
|
|
15551
|
-
autoPrefixId?:
|
|
15551
|
+
autoPrefixId?: boolean;
|
|
15552
15552
|
/**
|
|
15553
15553
|
* the ID of the Fragment
|
|
15554
15554
|
*/
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.102.
|
|
1
|
+
// For Library Version: 1.102.5
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -225,7 +225,7 @@ declare namespace sap {
|
|
|
225
225
|
* - `workbook.context` - Context object that will be applied to the generated file. It may contain the
|
|
226
226
|
* following fields:
|
|
227
227
|
* - `application` (string) - The application that creates the XLSX document (default: "SAP UI5")
|
|
228
|
-
* - `version` (string) - Application version that creates the XLSX document (default: "1.102.
|
|
228
|
+
* - `version` (string) - Application version that creates the XLSX document (default: "1.102.5")
|
|
229
229
|
* - `title` (string) - Title of the XLSX document (NOT the filename)
|
|
230
230
|
* - `modifiedBy` (string) - User context for the XLSX document
|
|
231
231
|
* - `sheetName` (string) - The label of the data sheet
|
|
@@ -311,7 +311,7 @@ declare namespace sap {
|
|
|
311
311
|
* columns: aColumns,
|
|
312
312
|
* context: {
|
|
313
313
|
* application: 'Debug Test Application',
|
|
314
|
-
* version: '1.102.
|
|
314
|
+
* version: '1.102.5',
|
|
315
315
|
* title: 'Some random title',
|
|
316
316
|
* modifiedBy: 'John Doe',
|
|
317
317
|
* metaSheetName: 'Custom metadata',
|
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED