@openui5/ts-types-esm 1.136.0 → 1.136.2

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.136.0",
3
+ "version": "1.136.2",
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.136.0
1
+ // For Library Version: 1.136.2
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.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -40173,6 +40173,8 @@ declare module "sap/m/IllustratedMessageType" {
40173
40173
  AddPeopleToCalendar = "sapIllus-AddPeopleToCalendar",
40174
40174
  /**
40175
40175
  * "Balloon Sky" illustration type.
40176
+ *
40177
+ * @deprecated As of version 1.136. replaced by {@link sap.m.IllustratedMessageType.ReceiveAppreciation}
40176
40178
  */
40177
40179
  BalloonSky = "sapIllus-BalloonSky",
40178
40180
  /**
@@ -40181,6 +40183,8 @@ declare module "sap/m/IllustratedMessageType" {
40181
40183
  BeforeSearch = "sapIllus-BeforeSearch",
40182
40184
  /**
40183
40185
  * "Connection" illustration type.
40186
+ *
40187
+ * @deprecated As of version 1.136. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
40184
40188
  */
40185
40189
  Connection = "sapIllus-Connection",
40186
40190
  /**
@@ -40371,6 +40375,8 @@ declare module "sap/m/IllustratedMessageType" {
40371
40375
  SimpleCheckMark = "sapIllus-SimpleCheckMark",
40372
40376
  /**
40373
40377
  * "Simple Connection" illustration type.
40378
+ *
40379
+ * @deprecated As of version 1.136. replaced by {@link sap.m.IllustratedMessageType.UnableToLoad}
40374
40380
  */
40375
40381
  SimpleConnection = "sapIllus-SimpleConnection",
40376
40382
  /**
@@ -75474,7 +75480,11 @@ declare module "sap/m/p13n/Engine" {
75474
75480
  /**
75475
75481
  * The handler function to call when the event occurs
75476
75482
  */
75477
- fnStateEventHandler: (p1: Event) => void
75483
+ fnStateEventHandler: (p1: Event) => void,
75484
+ /**
75485
+ * The context object to call the event handler with (value of `this` in the event handler function).
75486
+ */
75487
+ oListener?: object
75478
75488
  ): this;
75479
75489
  /**
75480
75490
  * Unregisters a registered control. By unregistering a control the control is removed from the `Engine`
@@ -75497,7 +75507,11 @@ declare module "sap/m/p13n/Engine" {
75497
75507
  /**
75498
75508
  * The handler function to detach from the event
75499
75509
  */
75500
- fnStateEventHandler: (p1: Event) => void
75510
+ fnStateEventHandler: (p1: Event) => void,
75511
+ /**
75512
+ * The context object to call the event handler with (value of `this` in the event handler function).
75513
+ */
75514
+ oListener?: object
75501
75515
  ): this;
75502
75516
 
75503
75517
  register(
@@ -131188,7 +131202,8 @@ declare module "sap/m/SlideTile" {
131188
131202
  /**
131189
131203
  * Gets current value of property {@link #getWidth width}.
131190
131204
  *
131191
- * Width of the control.
131205
+ * Width of the control. If the tiles within the SlideTile are in ArticleMode and have a frameType of Stretch,
131206
+ * and if the SlideTile's width exceeds 799px, the image in the tile appears on the right side
131192
131207
  *
131193
131208
  * @since 1.72
131194
131209
  *
@@ -131343,7 +131358,8 @@ declare module "sap/m/SlideTile" {
131343
131358
  /**
131344
131359
  * Sets a new value for property {@link #getWidth width}.
131345
131360
  *
131346
- * Width of the control.
131361
+ * Width of the control. If the tiles within the SlideTile are in ArticleMode and have a frameType of Stretch,
131362
+ * and if the SlideTile's width exceeds 799px, the image in the tile appears on the right side
131347
131363
  *
131348
131364
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
131349
131365
  *
@@ -131401,7 +131417,8 @@ declare module "sap/m/SlideTile" {
131401
131417
  | `{${string}}`;
131402
131418
 
131403
131419
  /**
131404
- * Width of the control.
131420
+ * Width of the control. If the tiles within the SlideTile are in ArticleMode and have a frameType of Stretch,
131421
+ * and if the SlideTile's width exceeds 799px, the image in the tile appears on the right side
131405
131422
  *
131406
131423
  * @since 1.72
131407
131424
  */
@@ -148121,7 +148138,7 @@ declare module "sap/m/TileContent" {
148121
148138
  * Gets current value of property {@link #getPriority priority}.
148122
148139
  *
148123
148140
  * Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
148124
- * NewsContent.
148141
+ * FrameType Stretch.
148125
148142
  *
148126
148143
  * Default value is `None`.
148127
148144
  *
@@ -148134,7 +148151,7 @@ declare module "sap/m/TileContent" {
148134
148151
  * Gets current value of property {@link #getPriorityText priorityText}.
148135
148152
  *
148136
148153
  * Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
148137
- * Article Mode containing NewsContent.
148154
+ * Article Mode containing FrameType Stretch.
148138
148155
  *
148139
148156
  * @since 1.103
148140
148157
  *
@@ -148423,7 +148440,7 @@ declare module "sap/m/TileContent" {
148423
148440
 
148424
148441
  /**
148425
148442
  * Adds a priority badge before the content. Works only in Generic Tiles in ActionMode or Article Mode containing
148426
- * NewsContent.
148443
+ * FrameType Stretch.
148427
148444
  *
148428
148445
  * @since 1.96
148429
148446
  */
@@ -148434,7 +148451,7 @@ declare module "sap/m/TileContent" {
148434
148451
 
148435
148452
  /**
148436
148453
  * Sets the Text inside the Priority badge in Generic Tile. Works only in Generic Tiles in ActionMode or
148437
- * Article Mode containing NewsContent.
148454
+ * Article Mode containing FrameType Stretch.
148438
148455
  *
148439
148456
  * @since 1.103
148440
148457
  */
@@ -172326,6 +172343,8 @@ declare namespace sap {
172326
172343
 
172327
172344
  "sap/m/p13n/SortPanel": undefined;
172328
172345
 
172346
+ "sap/m/p13n/util/diff": undefined;
172347
+
172329
172348
  "sap/m/P13nColumnsItem": undefined;
172330
172349
 
172331
172350
  "sap/m/P13nColumnsPanel": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.136.0
282
+ // For Library Version: 1.136.2
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -29717,7 +29717,8 @@ declare module "sap/ui/core/format/NumberFormat" {
29717
29717
  */
29718
29718
  groupingBaseSize?: int;
29719
29719
  /**
29720
- * defines whether grouping is enabled (grouping separators are shown)
29720
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
29721
+ * the `groupingSize` format option is set to a non-positive value.
29721
29722
  */
29722
29723
  groupingEnabled?: boolean;
29723
29724
  /**
@@ -29726,7 +29727,8 @@ declare module "sap/ui/core/format/NumberFormat" {
29726
29727
  */
29727
29728
  groupingSeparator?: string;
29728
29729
  /**
29729
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
29730
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
29731
+ * non-positive value, grouping will be disabled entirely.
29730
29732
  */
29731
29733
  groupingSize?: int;
29732
29734
  /**
@@ -29896,7 +29898,8 @@ declare module "sap/ui/core/format/NumberFormat" {
29896
29898
  */
29897
29899
  groupingBaseSize?: int;
29898
29900
  /**
29899
- * defines whether grouping is enabled (grouping separators are shown)
29901
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
29902
+ * the `groupingSize` format option is set to a non-positive value.
29900
29903
  */
29901
29904
  groupingEnabled?: boolean;
29902
29905
  /**
@@ -29905,7 +29908,8 @@ declare module "sap/ui/core/format/NumberFormat" {
29905
29908
  */
29906
29909
  groupingSeparator?: string;
29907
29910
  /**
29908
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
29911
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
29912
+ * non-positive value, grouping will be disabled entirely.
29909
29913
  */
29910
29914
  groupingSize?: int;
29911
29915
  /**
@@ -30059,7 +30063,8 @@ declare module "sap/ui/core/format/NumberFormat" {
30059
30063
  */
30060
30064
  groupingBaseSize?: int;
30061
30065
  /**
30062
- * defines whether grouping is enabled (grouping separators are shown)
30066
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
30067
+ * the `groupingSize` format option is set to a non-positive value.
30063
30068
  */
30064
30069
  groupingEnabled?: boolean;
30065
30070
  /**
@@ -30068,7 +30073,8 @@ declare module "sap/ui/core/format/NumberFormat" {
30068
30073
  */
30069
30074
  groupingSeparator?: string;
30070
30075
  /**
30071
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
30076
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
30077
+ * non-positive value, grouping will be disabled entirely.
30072
30078
  */
30073
30079
  groupingSize?: int;
30074
30080
  /**
@@ -30217,7 +30223,8 @@ declare module "sap/ui/core/format/NumberFormat" {
30217
30223
  */
30218
30224
  groupingBaseSize?: int;
30219
30225
  /**
30220
- * defines whether grouping is enabled (grouping separators are shown)
30226
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
30227
+ * the `groupingSize` format option is set to a non-positive value.
30221
30228
  */
30222
30229
  groupingEnabled?: boolean;
30223
30230
  /**
@@ -30226,7 +30233,8 @@ declare module "sap/ui/core/format/NumberFormat" {
30226
30233
  */
30227
30234
  groupingSeparator?: string;
30228
30235
  /**
30229
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
30236
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
30237
+ * non-positive value, grouping will be disabled entirely.
30230
30238
  */
30231
30239
  groupingSize?: int;
30232
30240
  /**
@@ -30387,7 +30395,8 @@ declare module "sap/ui/core/format/NumberFormat" {
30387
30395
  */
30388
30396
  groupingBaseSize?: int;
30389
30397
  /**
30390
- * defines whether grouping is enabled (grouping separators are shown)
30398
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
30399
+ * the `groupingSize` format option is set to a non-positive value.
30391
30400
  */
30392
30401
  groupingEnabled?: boolean;
30393
30402
  /**
@@ -30396,7 +30405,8 @@ declare module "sap/ui/core/format/NumberFormat" {
30396
30405
  */
30397
30406
  groupingSeparator?: string;
30398
30407
  /**
30399
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
30408
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
30409
+ * non-positive value, grouping will be disabled entirely.
30400
30410
  */
30401
30411
  groupingSize?: int;
30402
30412
  /**
@@ -68325,7 +68335,7 @@ declare module "sap/ui/model/odata/type/Stream" {
68325
68335
  */
68326
68336
  constructor(
68327
68337
  /**
68328
- * Must be `undefined`
68338
+ * Must be `undefined` or `null`
68329
68339
  */
68330
68340
  oFormatOptions?: object,
68331
68341
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
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.136.0
1
+ // For Library Version: 1.136.2
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.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
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.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
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.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.136.2
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**