@openui5/ts-types 1.136.1 → 1.136.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",
3
- "version": "1.136.1",
3
+ "version": "1.136.3",
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.136.1
1
+ // For Library Version: 1.136.3
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.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -745,7 +745,11 @@ declare namespace sap {
745
745
  /**
746
746
  * The handler function to call when the event occurs
747
747
  */
748
- fnStateEventHandler: (p1: sap.ui.base.Event) => void
748
+ fnStateEventHandler: (p1: sap.ui.base.Event) => void,
749
+ /**
750
+ * The context object to call the event handler with (value of `this` in the event handler function).
751
+ */
752
+ oListener?: object
749
753
  ): this;
750
754
  /**
751
755
  * Unregisters a registered control. By unregistering a control the control is removed from the `Engine`
@@ -768,7 +772,11 @@ declare namespace sap {
768
772
  /**
769
773
  * The handler function to detach from the event
770
774
  */
771
- fnStateEventHandler: (p1: sap.ui.base.Event) => void
775
+ fnStateEventHandler: (p1: sap.ui.base.Event) => void,
776
+ /**
777
+ * The context object to call the event handler with (value of `this` in the event handler function).
778
+ */
779
+ oListener?: object
772
780
  ): this;
773
781
 
774
782
  register(
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -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.1
282
+ // For Library Version: 1.136.3
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -11460,7 +11460,11 @@ declare namespace sap {
11460
11460
  /**
11461
11461
  * Qualified name of the type to retrieve
11462
11462
  */
11463
- sTypeName: string
11463
+ sTypeName: string,
11464
+ /**
11465
+ * Metadata of the property
11466
+ */
11467
+ oProperty?: /* was: sap.ui.base.ManagedObject.MetaOptions.Property */ any
11464
11468
  ): sap.ui.base.DataType | undefined;
11465
11469
  /**
11466
11470
  * Registers an enum under the given name. With version 2.0, registering an enum becomes mandatory when
@@ -18853,7 +18857,8 @@ declare namespace sap {
18853
18857
  */
18854
18858
  groupingBaseSize?: int;
18855
18859
  /**
18856
- * defines whether grouping is enabled (grouping separators are shown)
18860
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
18861
+ * the `groupingSize` format option is set to a non-positive value.
18857
18862
  */
18858
18863
  groupingEnabled?: boolean;
18859
18864
  /**
@@ -18862,7 +18867,8 @@ declare namespace sap {
18862
18867
  */
18863
18868
  groupingSeparator?: string;
18864
18869
  /**
18865
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
18870
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
18871
+ * non-positive value, grouping will be disabled entirely.
18866
18872
  */
18867
18873
  groupingSize?: int;
18868
18874
  /**
@@ -19032,7 +19038,8 @@ declare namespace sap {
19032
19038
  */
19033
19039
  groupingBaseSize?: int;
19034
19040
  /**
19035
- * defines whether grouping is enabled (grouping separators are shown)
19041
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
19042
+ * the `groupingSize` format option is set to a non-positive value.
19036
19043
  */
19037
19044
  groupingEnabled?: boolean;
19038
19045
  /**
@@ -19041,7 +19048,8 @@ declare namespace sap {
19041
19048
  */
19042
19049
  groupingSeparator?: string;
19043
19050
  /**
19044
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
19051
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
19052
+ * non-positive value, grouping will be disabled entirely.
19045
19053
  */
19046
19054
  groupingSize?: int;
19047
19055
  /**
@@ -19195,7 +19203,8 @@ declare namespace sap {
19195
19203
  */
19196
19204
  groupingBaseSize?: int;
19197
19205
  /**
19198
- * defines whether grouping is enabled (grouping separators are shown)
19206
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
19207
+ * the `groupingSize` format option is set to a non-positive value.
19199
19208
  */
19200
19209
  groupingEnabled?: boolean;
19201
19210
  /**
@@ -19204,7 +19213,8 @@ declare namespace sap {
19204
19213
  */
19205
19214
  groupingSeparator?: string;
19206
19215
  /**
19207
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
19216
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
19217
+ * non-positive value, grouping will be disabled entirely.
19208
19218
  */
19209
19219
  groupingSize?: int;
19210
19220
  /**
@@ -19353,7 +19363,8 @@ declare namespace sap {
19353
19363
  */
19354
19364
  groupingBaseSize?: int;
19355
19365
  /**
19356
- * defines whether grouping is enabled (grouping separators are shown)
19366
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
19367
+ * the `groupingSize` format option is set to a non-positive value.
19357
19368
  */
19358
19369
  groupingEnabled?: boolean;
19359
19370
  /**
@@ -19362,7 +19373,8 @@ declare namespace sap {
19362
19373
  */
19363
19374
  groupingSeparator?: string;
19364
19375
  /**
19365
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
19376
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
19377
+ * non-positive value, grouping will be disabled entirely.
19366
19378
  */
19367
19379
  groupingSize?: int;
19368
19380
  /**
@@ -19523,7 +19535,8 @@ declare namespace sap {
19523
19535
  */
19524
19536
  groupingBaseSize?: int;
19525
19537
  /**
19526
- * defines whether grouping is enabled (grouping separators are shown)
19538
+ * defines whether grouping is enabled (grouping separators are shown). **Note:** Grouping is disabled if
19539
+ * the `groupingSize` format option is set to a non-positive value.
19527
19540
  */
19528
19541
  groupingEnabled?: boolean;
19529
19542
  /**
@@ -19532,7 +19545,8 @@ declare namespace sap {
19532
19545
  */
19533
19546
  groupingSeparator?: string;
19534
19547
  /**
19535
- * defines the grouping size in digits; the default is `3`. It must be a positive number.
19548
+ * defines the grouping size in digits; the default is `3`. **Note:** If this format option is set to a
19549
+ * non-positive value, grouping will be disabled entirely.
19536
19550
  */
19537
19551
  groupingSize?: int;
19538
19552
  /**
@@ -54873,6 +54887,43 @@ declare namespace sap {
54873
54887
  */
54874
54888
  mParameters?: object
54875
54889
  );
54890
+
54891
+ /**
54892
+ * Creates a new subclass of class sap.ui.model.json.JSONPropertyBinding with name `sClassName` and enriches
54893
+ * it with the information contained in `oClassInfo`.
54894
+ *
54895
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.model.ClientPropertyBinding.extend}.
54896
+ *
54897
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
54898
+ *
54899
+ * @returns Created class / constructor function
54900
+ */
54901
+ static extend<T extends Record<string, unknown>>(
54902
+ /**
54903
+ * Name of the class being created
54904
+ */
54905
+ sClassName: string,
54906
+ /**
54907
+ * Object literal with information about the class
54908
+ */
54909
+ oClassInfo?: sap.ClassInfo<
54910
+ T,
54911
+ sap.ui.model.json.JSONPropertyBinding
54912
+ >,
54913
+ /**
54914
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
54915
+ * used by this class
54916
+ */
54917
+ FNMetaImpl?: Function
54918
+ ): Function;
54919
+ /**
54920
+ * Returns a metadata object for class sap.ui.model.json.JSONPropertyBinding.
54921
+ *
54922
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
54923
+ *
54924
+ * @returns Metadata object describing this class
54925
+ */
54926
+ static getMetadata(): sap.ui.base.Metadata;
54876
54927
  }
54877
54928
  /**
54878
54929
  * Tree binding implementation for JSON format.
@@ -58642,6 +58693,10 @@ declare namespace sap {
58642
58693
  * A valid cache key
58643
58694
  */
58644
58695
  cacheKey?: string;
58696
+ /**
58697
+ * If set to `true`, the user credentials are included in a cross-origin request
58698
+ */
58699
+ withCredentials?: boolean;
58645
58700
  }
58646
58701
  );
58647
58702
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
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.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.136.3
2
2
 
3
3
  declare namespace sap {
4
4
  /**