@openui5/ts-types-esm 1.103.1 → 1.106.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types-esm",
3
- "version": "1.103.1",
3
+ "version": "1.106.0",
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.103.1
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -5590,7 +5590,7 @@ declare module "sap/f/DynamicPageTitle" {
5590
5590
  * The ariaDescribedBy to be removed or its index or ID
5591
5591
  */
5592
5592
  vAriaDescribedBy: int | ID | Control
5593
- ): ID;
5593
+ ): ID | null;
5594
5594
  /**
5595
5595
  * @SINCE 1.50
5596
5596
  *
@@ -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
 
@@ -8817,14 +8965,14 @@ declare module "sap/f/GridContainer" {
8817
8965
 
8818
8966
  import { dnd, NavigationDirection } from "sap/f/library";
8819
8967
 
8968
+ import { ID, CSSSize } from "sap/ui/core/library";
8969
+
8820
8970
  import Event from "sap/ui/base/Event";
8821
8971
 
8822
8972
  import GridContainerSettings from "sap/f/GridContainerSettings";
8823
8973
 
8824
8974
  import ElementMetadata from "sap/ui/core/ElementMetadata";
8825
8975
 
8826
- import { CSSSize } from "sap/ui/core/library";
8827
-
8828
8976
  import Item from "sap/ui/core/Item";
8829
8977
 
8830
8978
  import {
@@ -8984,6 +9132,28 @@ declare module "sap/f/GridContainer" {
8984
9132
  * @returns Metadata object describing this class
8985
9133
  */
8986
9134
  static getMetadata(): ElementMetadata;
9135
+ /**
9136
+ * Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
9137
+ *
9138
+ * @returns Reference to `this` in order to allow method chaining
9139
+ */
9140
+ addAriaDescribedBy(
9141
+ /**
9142
+ * The ariaDescribedBy to add; if empty, nothing is inserted
9143
+ */
9144
+ vAriaDescribedBy: ID | Control
9145
+ ): this;
9146
+ /**
9147
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
9148
+ *
9149
+ * @returns Reference to `this` in order to allow method chaining
9150
+ */
9151
+ addAriaLabelledBy(
9152
+ /**
9153
+ * The ariaLabelledBy to add; if empty, nothing is inserted
9154
+ */
9155
+ vAriaLabelledBy: ID | Control
9156
+ ): this;
8987
9157
  /**
8988
9158
  * Adds some item to the aggregation {@link #getItems items}.
8989
9159
  *
@@ -9349,6 +9519,16 @@ declare module "sap/f/GridContainer" {
9349
9519
  * @returns Value of property `allowDenseFill`
9350
9520
  */
9351
9521
  getAllowDenseFill(): boolean;
9522
+ /**
9523
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
9524
+ * ariaDescribedBy}.
9525
+ */
9526
+ getAriaDescribedBy(): ID[];
9527
+ /**
9528
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
9529
+ * ariaLabelledBy}.
9530
+ */
9531
+ getAriaLabelledBy(): ID[];
9352
9532
  /**
9353
9533
  * Gets current value of property {@link #getContainerQuery containerQuery}.
9354
9534
  *
@@ -9491,6 +9671,18 @@ declare module "sap/f/GridContainer" {
9491
9671
  */
9492
9672
  iIndex: int
9493
9673
  ): this;
9674
+ /**
9675
+ * Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
9676
+ *
9677
+ * @returns An array of the removed elements (might be empty)
9678
+ */
9679
+ removeAllAriaDescribedBy(): ID[];
9680
+ /**
9681
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
9682
+ *
9683
+ * @returns An array of the removed elements (might be empty)
9684
+ */
9685
+ removeAllAriaLabelledBy(): ID[];
9494
9686
  /**
9495
9687
  * Removes all the controls from the aggregation {@link #getItems items}.
9496
9688
  *
@@ -9499,17 +9691,39 @@ declare module "sap/f/GridContainer" {
9499
9691
  * @returns An array of the removed elements (might be empty)
9500
9692
  */
9501
9693
  removeAllItems(): Control[];
9694
+ /**
9695
+ * Removes an ariaDescribedBy from the association named {@link #getAriaDescribedBy ariaDescribedBy}.
9696
+ *
9697
+ * @returns The removed ariaDescribedBy or `null`
9698
+ */
9699
+ removeAriaDescribedBy(
9700
+ /**
9701
+ * The ariaDescribedBy to be removed or its index or ID
9702
+ */
9703
+ vAriaDescribedBy: int | ID | Control
9704
+ ): ID | null;
9705
+ /**
9706
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
9707
+ *
9708
+ * @returns The removed ariaLabelledBy or `null`
9709
+ */
9710
+ removeAriaLabelledBy(
9711
+ /**
9712
+ * The ariaLabelledBy to be removed or its index or ID
9713
+ */
9714
+ vAriaLabelledBy: int | ID | Control
9715
+ ): ID | null;
9502
9716
  /**
9503
9717
  * Removes an item from the aggregation named `items`.
9504
9718
  *
9505
- * @returns The removed item or null.
9719
+ * @returns The removed item or `null`.
9506
9720
  */
9507
9721
  removeItem(
9508
9722
  /**
9509
9723
  * The item to remove or its index or ID.
9510
9724
  */
9511
9725
  vItem: int | string | Item
9512
- ): Control;
9726
+ ): Control | null;
9513
9727
  /**
9514
9728
  * @EXPERIMENTAL (since 1.66)
9515
9729
  *
@@ -9792,6 +10006,16 @@ declare module "sap/f/GridContainer" {
9792
10006
  */
9793
10007
  layoutXL?: GridContainerSettings;
9794
10008
 
10009
+ /**
10010
+ * Association to controls / IDs which describe this control (see WAI-ARIA attribute aria-describedby).
10011
+ */
10012
+ ariaDescribedBy?: Array<Control | string>;
10013
+
10014
+ /**
10015
+ * Association to controls / IDs which label this control (see WAI-ARIA attribute aria-labelledby).
10016
+ */
10017
+ ariaLabelledBy?: Array<Control | string>;
10018
+
9795
10019
  /**
9796
10020
  * Fired when the currently active GridSettings change.
9797
10021
  */