@openui5/ts-types 1.120.31 → 1.120.33

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",
3
- "version": "1.120.31",
3
+ "version": "1.120.33",
4
4
  "description": "OpenUI5 TypeScript Definitions",
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.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -721,7 +721,11 @@ declare namespace sap {
721
721
  /**
722
722
  * The handler function to call when the event occurs
723
723
  */
724
- fnStateEventHandler: (p1: sap.ui.base.Event) => void
724
+ fnStateEventHandler: (p1: sap.ui.base.Event) => void,
725
+ /**
726
+ * The context object to call the event handler with (value of `this` in the event handler function).
727
+ */
728
+ oListener?: object
725
729
  ): this;
726
730
  /**
727
731
  * Unregisters a registered control. By unregistering a control the control is removed from the `Engine`
@@ -744,7 +748,11 @@ declare namespace sap {
744
748
  /**
745
749
  * The handler function to detach from the event
746
750
  */
747
- fnStateEventHandler: (p1: sap.ui.base.Event) => void
751
+ fnStateEventHandler: (p1: sap.ui.base.Event) => void,
752
+ /**
753
+ * The context object to call the event handler with (value of `this` in the event handler function).
754
+ */
755
+ oListener?: object
748
756
  ): this;
749
757
 
750
758
  register(
@@ -162290,6 +162298,8 @@ declare namespace sap {
162290
162298
 
162291
162299
  "sap/m/p13n/SortPanel": undefined;
162292
162300
 
162301
+ "sap/m/p13n/util/diff": undefined;
162302
+
162293
162303
  "sap/m/P13nColumnsItem": undefined;
162294
162304
 
162295
162305
  "sap/m/P13nColumnsPanel": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.31
283
+ // For Library Version: 1.120.33
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -10524,7 +10524,11 @@ declare namespace sap {
10524
10524
  /**
10525
10525
  * Qualified name of the type to retrieve
10526
10526
  */
10527
- sTypeName: string
10527
+ sTypeName: string,
10528
+ /**
10529
+ * Metadata of the property
10530
+ */
10531
+ oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
10528
10532
  ): sap.ui.base.DataType | undefined;
10529
10533
  /**
10530
10534
  * Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
@@ -17768,7 +17772,8 @@ declare namespace sap {
17768
17772
  */
17769
17773
  groupingBaseSize?: int;
17770
17774
  /**
17771
- * defines whether grouping is enabled (grouping separators are shown)
17775
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
17776
+ * the `groupingSize` format option is set to a non-positive value.
17772
17777
  */
17773
17778
  groupingEnabled?: boolean;
17774
17779
  /**
@@ -17777,7 +17782,8 @@ declare namespace sap {
17777
17782
  */
17778
17783
  groupingSeparator?: string;
17779
17784
  /**
17780
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
17785
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
17786
+ * non-positive value, grouping will be disabled entirely.
17781
17787
  */
17782
17788
  groupingSize?: int;
17783
17789
  /**
@@ -17939,7 +17945,8 @@ declare namespace sap {
17939
17945
  */
17940
17946
  groupingBaseSize?: int;
17941
17947
  /**
17942
- * defines whether grouping is enabled (grouping separators are shown)
17948
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
17949
+ * the `groupingSize` format option is set to a non-positive value.
17943
17950
  */
17944
17951
  groupingEnabled?: boolean;
17945
17952
  /**
@@ -17948,7 +17955,8 @@ declare namespace sap {
17948
17955
  */
17949
17956
  groupingSeparator?: string;
17950
17957
  /**
17951
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
17958
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
17959
+ * non-positive value, grouping will be disabled entirely.
17952
17960
  */
17953
17961
  groupingSize?: int;
17954
17962
  /**
@@ -18096,7 +18104,8 @@ declare namespace sap {
18096
18104
  */
18097
18105
  groupingBaseSize?: int;
18098
18106
  /**
18099
- * defines whether grouping is enabled (grouping separators are shown)
18107
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
18108
+ * the `groupingSize` format option is set to a non-positive value.
18100
18109
  */
18101
18110
  groupingEnabled?: boolean;
18102
18111
  /**
@@ -18105,7 +18114,8 @@ declare namespace sap {
18105
18114
  */
18106
18115
  groupingSeparator?: string;
18107
18116
  /**
18108
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
18117
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
18118
+ * non-positive value, grouping will be disabled entirely.
18109
18119
  */
18110
18120
  groupingSize?: int;
18111
18121
  /**
@@ -18247,7 +18257,8 @@ declare namespace sap {
18247
18257
  */
18248
18258
  groupingBaseSize?: int;
18249
18259
  /**
18250
- * defines whether grouping is enabled (grouping separators are shown)
18260
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
18261
+ * the `groupingSize` format option is set to a non-positive value.
18251
18262
  */
18252
18263
  groupingEnabled?: boolean;
18253
18264
  /**
@@ -18256,7 +18267,8 @@ declare namespace sap {
18256
18267
  */
18257
18268
  groupingSeparator?: string;
18258
18269
  /**
18259
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
18270
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
18271
+ * non-positive value, grouping will be disabled entirely.
18260
18272
  */
18261
18273
  groupingSize?: int;
18262
18274
  /**
@@ -18405,7 +18417,8 @@ declare namespace sap {
18405
18417
  */
18406
18418
  groupingBaseSize?: int;
18407
18419
  /**
18408
- * defines whether grouping is enabled (grouping separators are shown)
18420
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
18421
+ * the `groupingSize` format option is set to a non-positive value.
18409
18422
  */
18410
18423
  groupingEnabled?: boolean;
18411
18424
  /**
@@ -18414,7 +18427,8 @@ declare namespace sap {
18414
18427
  */
18415
18428
  groupingSeparator?: string;
18416
18429
  /**
18417
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
18430
+ * defines the grouping size in digits; the default is `3`. It must be a positive number. **Note:** If this
18431
+ * format option is set to a non-positive value, grouping will be disabled entirely.
18418
18432
  */
18419
18433
  groupingSize?: int;
18420
18434
  /**
@@ -62913,7 +62927,7 @@ declare namespace sap {
62913
62927
  sGroupId?: string,
62914
62928
  /**
62915
62929
  * Whether the entity's ETag should be actively ignored (If-Match:*); supported for bound actions only,
62916
- * since 1.90.0. Ignored if there is no ETag (since 1.93.0).
62930
+ * since 1.90.0. Ignored if there is no ETag (since 1.93.0) unless no data has been read so far (since 1.132.0).
62917
62931
  */
62918
62932
  bIgnoreETag?: boolean,
62919
62933
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
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.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.31
1
+ // For Library Version: 1.120.33
2
2
 
3
3
  declare namespace sap {
4
4
  /**