@openui5/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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.102.2",
3
+ "version": "1.102.3",
4
4
  "description": "OpenUI5 TypeScript Definitions - ES Modules",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
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.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -1265,6 +1265,21 @@ declare module "sap/m/library" {
1265
1265
  */
1266
1266
  TimeOutError = "TIME_OUT_ERROR",
1267
1267
  }
1268
+ /**
1269
+ * @SINCE 1.102.2
1270
+ *
1271
+ * Enumeration for possible Link accessibility roles.
1272
+ */
1273
+ export enum LinkAccessibleRole {
1274
+ /**
1275
+ * Link will receive `role="Button"` attibute.
1276
+ */
1277
+ Button = "Button",
1278
+ /**
1279
+ * Default mode.
1280
+ */
1281
+ Default = "Default",
1282
+ }
1268
1283
  /**
1269
1284
  * @SINCE 1.45.5
1270
1285
  *
@@ -41219,7 +41234,7 @@ declare module "sap/m/Link" {
41219
41234
 
41220
41235
  import Event from "sap/ui/base/Event";
41221
41236
 
41222
- import { EmptyIndicatorMode } from "sap/m/library";
41237
+ import { LinkAccessibleRole, EmptyIndicatorMode } from "sap/m/library";
41223
41238
 
41224
41239
  import ElementMetadata from "sap/ui/core/ElementMetadata";
41225
41240
 
@@ -41436,6 +41451,24 @@ declare module "sap/m/Link" {
41436
41451
  * @returns The `sap.m.Link` accessibility information
41437
41452
  */
41438
41453
  getAccessibilityInfo(): object;
41454
+ /**
41455
+ * @SINCE 1.102.2
41456
+ *
41457
+ * Gets current value of property {@link #getAccessibleRole accessibleRole}.
41458
+ *
41459
+ * Describes the accessibility role of the link:
41460
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
41461
+ *
41462
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
41463
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
41464
+ *
41465
+ * **Note:** This is a downported feature introduced in version 1.104
41466
+ *
41467
+ * Default value is `Default`.
41468
+ *
41469
+ * @returns Value of property `accessibleRole`
41470
+ */
41471
+ getAccessibleRole(): LinkAccessibleRole | keyof typeof LinkAccessibleRole;
41439
41472
  /**
41440
41473
  * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
41441
41474
  * ariaDescribedBy}.
@@ -41506,8 +41539,9 @@ declare module "sap/m/Link" {
41506
41539
  /**
41507
41540
  * Gets current value of property {@link #getHref href}.
41508
41541
  *
41509
- * Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
41510
- * this should not be set, but instead an event handler for the `press` event should be registered.
41542
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
41543
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
41544
+ * and register a `press` event handler.
41511
41545
  *
41512
41546
  * @returns Value of property `href`
41513
41547
  */
@@ -41656,6 +41690,31 @@ declare module "sap/m/Link" {
41656
41690
  */
41657
41691
  vAriaLabelledBy: int | ID | Control
41658
41692
  ): ID;
41693
+ /**
41694
+ * @SINCE 1.102.2
41695
+ *
41696
+ * Sets a new value for property {@link #getAccessibleRole accessibleRole}.
41697
+ *
41698
+ * Describes the accessibility role of the link:
41699
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
41700
+ *
41701
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
41702
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
41703
+ *
41704
+ * **Note:** This is a downported feature introduced in version 1.104
41705
+ *
41706
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
41707
+ *
41708
+ * Default value is `Default`.
41709
+ *
41710
+ * @returns Reference to `this` in order to allow method chaining
41711
+ */
41712
+ setAccessibleRole(
41713
+ /**
41714
+ * New value for property `accessibleRole`
41715
+ */
41716
+ sAccessibleRole?: LinkAccessibleRole | keyof typeof LinkAccessibleRole
41717
+ ): this;
41659
41718
  /**
41660
41719
  * @SINCE 1.86.0
41661
41720
  *
@@ -41742,8 +41801,9 @@ declare module "sap/m/Link" {
41742
41801
  /**
41743
41802
  * Sets a new value for property {@link #getHref href}.
41744
41803
  *
41745
- * Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
41746
- * this should not be set, but instead an event handler for the `press` event should be registered.
41804
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
41805
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
41806
+ * and register a `press` event handler.
41747
41807
  *
41748
41808
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
41749
41809
  *
@@ -41967,8 +42027,9 @@ declare module "sap/m/Link" {
41967
42027
  width?: CSSSize | PropertyBindingInfo | `{${string}}`;
41968
42028
 
41969
42029
  /**
41970
- * Defines the link target URI. Supports standard hyperlink behavior. If a JavaScript action should be triggered,
41971
- * this should not be set, but instead an event handler for the `press` event should be registered.
42030
+ * Defines the link target URI. Supports standard hyperlink behavior. **Note:** Don't set `href` property
42031
+ * if an action should be triggered by the link. Instead set `accessibleRole` property to `LinkAccessibleRole.Button`
42032
+ * and register a `press` event handler.
41972
42033
  */
41973
42034
  href?: URI | PropertyBindingInfo | `{${string}}`;
41974
42035
 
@@ -42045,6 +42106,22 @@ declare module "sap/m/Link" {
42045
42106
  | PropertyBindingInfo
42046
42107
  | `{${string}}`;
42047
42108
 
42109
+ /**
42110
+ * @SINCE 1.102.2
42111
+ *
42112
+ * Describes the accessibility role of the link:
42113
+ * - `LinkAccessibleRole.Default` - a navagation is expected to the location given in `href` property
42114
+ *
42115
+ * - `LinkAccessibleRole.Button` - there will be `role` attribute with value "Button" rendered. In this
42116
+ * scenario the `href` property value shouldn't be set as navigation isn't expected to occur.
42117
+ *
42118
+ * **Note:** This is a downported feature introduced in version 1.104
42119
+ */
42120
+ accessibleRole?:
42121
+ | (LinkAccessibleRole | keyof typeof LinkAccessibleRole)
42122
+ | PropertyBindingInfo
42123
+ | `{${string}}`;
42124
+
42048
42125
  /**
42049
42126
  * @SINCE 1.89
42050
42127
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -264,7 +264,7 @@ interface JQuery<TElement = HTMLElement> extends Iterable<TElement> {
264
264
  ): jQuery;
265
265
  }
266
266
 
267
- // For Library Version: 1.102.2
267
+ // For Library Version: 1.102.3
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/mdc/filterbar/vh/FilterContainer" {
4
4
  import Metadata from "sap/ui/base/Metadata";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.102.2
1
+ // For Library Version: 1.102.3
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**