@openui5/ts-types-esm 1.96.3 → 1.96.6

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.96.3",
3
+ "version": "1.96.6",
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/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * Copyright 2009-2021 SAP SE or an SAP affiliate company.
3
+ * Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
4
  *
5
5
  * Licensed under the Apache License, Version 2.0 (the "License");
6
6
  * you may not use this file except in compliance with the License.
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -24255,12 +24255,12 @@ declare module "sap/m/GenericTag" {
24255
24255
  GenericTagValueState,
24256
24256
  } from "sap/m/library";
24257
24257
 
24258
+ import { ID, ValueState } from "sap/ui/core/library";
24259
+
24258
24260
  import Event from "sap/ui/base/Event";
24259
24261
 
24260
24262
  import ElementMetadata from "sap/ui/core/ElementMetadata";
24261
24263
 
24262
- import { ValueState } from "sap/ui/core/library";
24263
-
24264
24264
  import ObjectNumber from "sap/m/ObjectNumber";
24265
24265
 
24266
24266
  import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
@@ -24336,6 +24336,17 @@ declare module "sap/m/GenericTag" {
24336
24336
  * Returns a metadata object for class sap.m.GenericTag.
24337
24337
  */
24338
24338
  static getMetadata(): ElementMetadata;
24339
+ /**
24340
+ * @SINCE 1.96.4
24341
+ *
24342
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
24343
+ */
24344
+ addAriaLabelledBy(
24345
+ /**
24346
+ * The ariaLabelledBy to add; if empty, nothing is inserted
24347
+ */
24348
+ vAriaLabelledBy: ID | Control
24349
+ ): this;
24339
24350
  /**
24340
24351
  * Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.m.GenericTag`.
24341
24352
  *
@@ -24405,6 +24416,13 @@ declare module "sap/m/GenericTag" {
24405
24416
  */
24406
24417
  mParameters?: object
24407
24418
  ): this;
24419
+ /**
24420
+ * @SINCE 1.96.4
24421
+ *
24422
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
24423
+ * ariaLabelledBy}.
24424
+ */
24425
+ getAriaLabelledBy(): ID[];
24408
24426
  /**
24409
24427
  * Gets current value of property {@link #getDesign design}.
24410
24428
  *
@@ -24451,6 +24469,23 @@ declare module "sap/m/GenericTag" {
24451
24469
  * Default value is `None`.
24452
24470
  */
24453
24471
  getValueState(): GenericTagValueState | keyof typeof GenericTagValueState;
24472
+ /**
24473
+ * @SINCE 1.96.4
24474
+ *
24475
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
24476
+ */
24477
+ removeAllAriaLabelledBy(): ID[];
24478
+ /**
24479
+ * @SINCE 1.96.4
24480
+ *
24481
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
24482
+ */
24483
+ removeAriaLabelledBy(
24484
+ /**
24485
+ * The ariaLabelledBy to be removed or its index or ID
24486
+ */
24487
+ vAriaLabelledBy: int | ID | Control
24488
+ ): ID;
24454
24489
  /**
24455
24490
  * Sets a new value for property {@link #getDesign design}.
24456
24491
  *
@@ -24555,6 +24590,14 @@ declare module "sap/m/GenericTag" {
24555
24590
  */
24556
24591
  value?: ObjectNumber;
24557
24592
 
24593
+ /**
24594
+ * @SINCE 1.96.4
24595
+ *
24596
+ * Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledBy). Note:
24597
+ * This is a downported feature introduced in version 1.97.0.
24598
+ */
24599
+ ariaLabelledBy?: Array<Control | string>;
24600
+
24558
24601
  /**
24559
24602
  * Fired when the user clicks/taps on the control.
24560
24603
  */
@@ -50395,6 +50438,9 @@ declare module "sap/m/ObjectHeader" {
50395
50438
  *
50396
50439
  * Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
50397
50440
  * icon is not available, or cannot be displayed.
50441
+ *
50442
+ * **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
50443
+ * decoration only.
50398
50444
  */
50399
50445
  getIconAlt(): string;
50400
50446
  /**
@@ -50985,18 +51031,13 @@ declare module "sap/m/ObjectHeader" {
50985
51031
  bIconActive?: boolean
50986
51032
  ): this;
50987
51033
  /**
50988
- * Sets a new value for property {@link #getIconAlt iconAlt}.
50989
- *
50990
- * Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
50991
- * icon is not available, or cannot be displayed.
50992
- *
50993
- * When called with a value of `null` or `undefined`, the default value of the property will be restored.
51034
+ * Sets the alternative text of the `ObjectHeader` icon.
50994
51035
  */
50995
51036
  setIconAlt(
50996
51037
  /**
50997
- * New value for property `iconAlt`
51038
+ * the alternative icon text
50998
51039
  */
50999
- sIconAlt?: string
51040
+ sIconAlt: boolean
51000
51041
  ): this;
51001
51042
  /**
51002
51043
  * Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
@@ -51408,6 +51449,9 @@ declare module "sap/m/ObjectHeader" {
51408
51449
  /**
51409
51450
  * Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
51410
51451
  * icon is not available, or cannot be displayed.
51452
+ *
51453
+ * **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
51454
+ * decoration only.
51411
51455
  */
51412
51456
  iconAlt?: string | PropertyBindingInfo;
51413
51457
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
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.96.3
267
+ // For Library Version: 1.96.6
268
268
 
269
269
  declare module "sap/base/assert" {
270
270
  /**
@@ -18277,8 +18277,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18277
18277
  */
18278
18278
  groupingEnabled?: boolean;
18279
18279
  /**
18280
- * defines the used grouping separator, note that the groupingSeparator must always be different than the
18281
- * used decimalSeparator.
18280
+ * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
18281
+ * from `decimalSeparator`.
18282
18282
  */
18283
18283
  groupingSeparator?: string;
18284
18284
  /**
@@ -18291,8 +18291,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18291
18291
  */
18292
18292
  groupingBaseSize?: int;
18293
18293
  /**
18294
- * defines the used decimal separator, note that the decimalSeparator must always be different than the
18295
- * used groupingSeparator.
18294
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
18295
+ * `groupingSeparator`.
18296
18296
  */
18297
18297
  decimalSeparator?: string;
18298
18298
  /**
@@ -18447,8 +18447,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18447
18447
  */
18448
18448
  groupingEnabled?: boolean;
18449
18449
  /**
18450
- * defines the used grouping separator, note that the groupingSeparator must always be different than the
18451
- * used decimalSeparator.
18450
+ * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
18451
+ * from `decimalSeparator`.
18452
18452
  */
18453
18453
  groupingSeparator?: string;
18454
18454
  /**
@@ -18461,8 +18461,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18461
18461
  */
18462
18462
  groupingBaseSize?: int;
18463
18463
  /**
18464
- * defines the used decimal separator, note that the decimalSeparator must always be different than the
18465
- * used groupingSeparator.
18464
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
18465
+ * `groupingSeparator`.
18466
18466
  */
18467
18467
  decimalSeparator?: string;
18468
18468
  /**
@@ -18583,8 +18583,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18583
18583
  */
18584
18584
  groupingEnabled?: boolean;
18585
18585
  /**
18586
- * defines the used grouping separator, note that the groupingSeparator must always be different than the
18587
- * used decimalSeparator.
18586
+ * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
18587
+ * from `decimalSeparator`.
18588
18588
  */
18589
18589
  groupingSeparator?: string;
18590
18590
  /**
@@ -18597,8 +18597,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18597
18597
  */
18598
18598
  groupingBaseSize?: int;
18599
18599
  /**
18600
- * defines the used decimal separator, note that the decimalSeparator must always be different than the
18601
- * used groupingSeparator.
18600
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
18601
+ * `groupingSeparator`.
18602
18602
  */
18603
18603
  decimalSeparator?: string;
18604
18604
  /**
@@ -18722,8 +18722,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18722
18722
  */
18723
18723
  groupingEnabled?: boolean;
18724
18724
  /**
18725
- * defines the used grouping separator, note that the groupingSeparator must always be different than the
18726
- * used decimalSeparator.
18725
+ * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
18726
+ * from `decimalSeparator`.
18727
18727
  */
18728
18728
  groupingSeparator?: string;
18729
18729
  /**
@@ -18736,8 +18736,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18736
18736
  */
18737
18737
  groupingBaseSize?: int;
18738
18738
  /**
18739
- * defines the used decimal separator, note that the decimalSeparator must always be different than the
18740
- * used groupingSeparator.
18739
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
18740
+ * `groupingSeparator`.
18741
18741
  */
18742
18742
  decimalSeparator?: string;
18743
18743
  /**
@@ -18862,8 +18862,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18862
18862
  */
18863
18863
  groupingEnabled?: boolean;
18864
18864
  /**
18865
- * defines the used grouping separator, note that the groupingSeparator must always be different than the
18866
- * used decimalSeparator.
18865
+ * defines the character used as grouping separator. Note: `groupingSeparator` must always be different
18866
+ * from `decimalSeparator`.
18867
18867
  */
18868
18868
  groupingSeparator?: string;
18869
18869
  /**
@@ -18876,8 +18876,8 @@ declare module "sap/ui/core/format/NumberFormat" {
18876
18876
  */
18877
18877
  groupingBaseSize?: int;
18878
18878
  /**
18879
- * defines the used decimal separator, note that the decimalSeparator must always be different than the
18880
- * used groupingSeparator.
18879
+ * defines the character used as decimal separator. Note: `decimalSeparator` must always be different from
18880
+ * `groupingSeparator`.
18881
18881
  */
18882
18882
  decimalSeparator?: string;
18883
18883
  /**
@@ -53522,6 +53522,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
53522
53522
  isInitial(): boolean;
53523
53523
  /**
53524
53524
  * @SINCE 1.95.0
53525
+ * @deprecated (since 1.96.5)
53525
53526
  * @EXPERIMENTAL
53526
53527
  *
53527
53528
  * Moves the bound entity into the given list binding. This binding loses its data. The method may only
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
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.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,20 +1,4 @@
1
- // For Library Version: 1.96.3
2
-
3
- declare module "sap/ui/mdc/library" {
4
- /**
5
- * Enumeration of the `multiSelectMode>/code> in ListBase`.
6
- */
7
- export enum MultiSelectMode {
8
- /**
9
- * Renders the `clearAll` icon.
10
- */
11
- ClearAll = "ClearAll",
12
- /**
13
- * Renders the `selectAll` checkbox (default behavior).
14
- */
15
- Default = "Default",
16
- }
17
- }
1
+ // For Library Version: 1.96.6
18
2
 
19
3
  declare namespace sap {
20
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import UI5Element from "sap/ui/core/Element";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,8 +1,8 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
5
- * @SINCE 1.96.3
5
+ * @SINCE 1.96.6
6
6
  *
7
7
  * Defines the Audiences.
8
8
  */
@@ -21,7 +21,7 @@ declare module "sap/ui/support/library" {
21
21
  Internal = "Internal",
22
22
  }
23
23
  /**
24
- * @SINCE 1.96.3
24
+ * @SINCE 1.96.6
25
25
  *
26
26
  * Issue Categories.
27
27
  */
@@ -76,7 +76,7 @@ declare module "sap/ui/support/library" {
76
76
  Usage = "Usage",
77
77
  }
78
78
  /**
79
- * @SINCE 1.96.3
79
+ * @SINCE 1.96.6
80
80
  *
81
81
  * Analysis history formats.
82
82
  */
@@ -91,7 +91,7 @@ declare module "sap/ui/support/library" {
91
91
  String = "String",
92
92
  }
93
93
  /**
94
- * @SINCE 1.96.3
94
+ * @SINCE 1.96.6
95
95
  *
96
96
  * Defines severity types.
97
97
  */
@@ -110,7 +110,7 @@ declare module "sap/ui/support/library" {
110
110
  Medium = "Medium",
111
111
  }
112
112
  /**
113
- * @SINCE 1.96.3
113
+ * @SINCE 1.96.6
114
114
  *
115
115
  * Contains the available system presets.
116
116
  */
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
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.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.96.3
1
+ // For Library Version: 1.96.6
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**