@openui5/ts-types 1.127.3 → 1.127.5

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.127.3",
3
+ "version": "1.127.5",
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.127.3
1
+ // For Library Version: 1.127.5
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.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
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.127.3
282
+ // For Library Version: 1.127.5
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -53803,10 +53803,10 @@ declare namespace sap {
53803
53803
  */
53804
53804
  oContext: sap.ui.model.Context,
53805
53805
  /**
53806
- * Parameters, specifying the aggregation level for which contexts shall be fetched or (legacy signature
53807
- * variant) index of first child entry to return from the parent context (zero-based)
53806
+ * Parameters, specifying the aggregation level for which contexts shall be fetched or the index of the
53807
+ * first child entry to return from the parent contexts
53808
53808
  */
53809
- mParameters:
53809
+ mParameters?:
53810
53810
  | {
53811
53811
  /**
53812
53812
  * Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
@@ -53918,7 +53918,7 @@ declare namespace sap {
53918
53918
  * value can be set to define the parameter `startIndex` as described in this parameter list. In this case,
53919
53919
  * the function parameters `iLength`, `iNumberOfExpandedLevels` and `iThreshold` become mandatory.
53920
53920
  */
53921
- mParameters:
53921
+ mParameters?:
53922
53922
  | {
53923
53923
  /**
53924
53924
  * Number of entries to return at and after the given start index; defaults to the model's size limit, see
@@ -75503,11 +75503,11 @@ declare namespace sap {
75503
75503
  */
75504
75504
  getCount(): number | undefined;
75505
75505
  /**
75506
- * Return node contexts for the tree
75506
+ * Return node contexts for the tree.
75507
75507
  *
75508
75508
  * @ui5-protected Do not call from applications (only from related classes in the framework)
75509
75509
  *
75510
- * @returns the contexts array
75510
+ * @returns the context's array
75511
75511
  */
75512
75512
  getNodeContexts(
75513
75513
  /**
@@ -75515,42 +75515,44 @@ declare namespace sap {
75515
75515
  */
75516
75516
  oContext: sap.ui.model.Context,
75517
75517
  /**
75518
- * the startIndex where to start the retrieval of contexts
75518
+ * the index from which to start the retrieval of contexts
75519
75519
  */
75520
- iStartIndex: int,
75520
+ iStartIndex?: int,
75521
75521
  /**
75522
- * determines how many contexts to retrieve beginning from the start index.
75522
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
75523
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
75523
75524
  */
75524
- iLength: int
75525
+ iLength?: int
75525
75526
  ): sap.ui.model.Context[];
75526
75527
  /**
75527
- * Return root contexts for the tree
75528
+ * Return root contexts for the tree.
75528
75529
  *
75529
75530
  * @ui5-protected Do not call from applications (only from related classes in the framework)
75530
75531
  *
75531
- * @returns the contexts array
75532
+ * @returns the context's array
75532
75533
  */
75533
75534
  getRootContexts(
75534
75535
  /**
75535
- * the startIndex where to start the retrieval of contexts
75536
+ * the index from which to start the retrieval of contexts
75536
75537
  */
75537
- iStartIndex: int,
75538
+ iStartIndex?: int,
75538
75539
  /**
75539
- * determines how many contexts to retrieve beginning from the start index.
75540
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
75541
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
75540
75542
  */
75541
- iLength: int
75542
- ): object[];
75543
+ iLength?: int
75544
+ ): sap.ui.model.Context[];
75543
75545
  /**
75544
75546
  * Returns if the node has child nodes.
75545
75547
  *
75546
75548
  *
75547
- * @returns true if node has children
75549
+ * @returns `true` if the node has children
75548
75550
  */
75549
75551
  hasChildren(
75550
75552
  /**
75551
75553
  * the context element of the node
75552
75554
  */
75553
- oContext: object
75555
+ oContext: sap.ui.model.Context
75554
75556
  ): boolean;
75555
75557
  /**
75556
75558
  * Sorts the contexts of this ClientTreeBinding. The tree will be sorted level by level. So the nodes are
@@ -79010,7 +79012,7 @@ declare namespace sap {
79010
79012
  /**
79011
79013
  * Context object for this binding (optional)
79012
79014
  */
79013
- oContext?: object,
79015
+ oContext?: sap.ui.model.Context,
79014
79016
  /**
79015
79017
  * The filters to be used initially with type {@link sap.ui.model.FilterType.Application}; call {@link #filter }
79016
79018
  * to replace them
@@ -79019,7 +79021,7 @@ declare namespace sap {
79019
79021
  /**
79020
79022
  * Additional model specific parameters (optional)
79021
79023
  */
79022
- mParameters?: string,
79024
+ mParameters?: object,
79023
79025
  /**
79024
79026
  * The sorters used initially; call {@link #sort} to replace them
79025
79027
  */
@@ -79111,7 +79113,7 @@ declare namespace sap {
79111
79113
  sFilterType?: sap.ui.model.FilterType
79112
79114
  ): void;
79113
79115
  /**
79114
- * Returns the number of child nodes of a specific context
79116
+ * Returns the number of child nodes of a specific context.
79115
79117
  *
79116
79118
  *
79117
79119
  * @returns the number of children
@@ -79120,7 +79122,7 @@ declare namespace sap {
79120
79122
  /**
79121
79123
  * the context element of the node
79122
79124
  */
79123
- oContext: Object
79125
+ oContext: sap.ui.model.Context
79124
79126
  ): int;
79125
79127
  /**
79126
79128
  * Returns the count of entries in the tree, or `undefined` if it is unknown. If the tree is filtered, the
@@ -79136,7 +79138,7 @@ declare namespace sap {
79136
79138
  */
79137
79139
  getCount(): number | undefined;
79138
79140
  /**
79139
- * Returns the current value of the bound target
79141
+ * Returns the current value of the bound target.
79140
79142
  *
79141
79143
  *
79142
79144
  * @returns the array of child contexts for the given node
@@ -79147,41 +79149,43 @@ declare namespace sap {
79147
79149
  */
79148
79150
  oContext: sap.ui.model.Context,
79149
79151
  /**
79150
- * the startIndex where to start the retrieval of contexts
79152
+ * the index from which to start the retrieval of contexts
79151
79153
  */
79152
- iStartIndex: int,
79154
+ iStartIndex?: int,
79153
79155
  /**
79154
- * determines how many contexts to retrieve beginning from the start index.
79156
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
79157
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
79155
79158
  */
79156
- iLength: int
79159
+ iLength?: int
79157
79160
  ): sap.ui.model.Context[];
79158
79161
  /**
79159
- * Returns the current value of the bound target
79162
+ * Returns the current value of the bound target.
79160
79163
  *
79161
79164
  *
79162
79165
  * @returns the array of child contexts for the root node
79163
79166
  */
79164
79167
  getRootContexts(
79165
79168
  /**
79166
- * the startIndex where to start the retrieval of contexts
79169
+ * the index from which to start the retrieval of contexts
79167
79170
  */
79168
- iStartIndex: int,
79171
+ iStartIndex?: int,
79169
79172
  /**
79170
- * determines how many contexts to retrieve beginning from the start index.
79173
+ * determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
79174
+ * limit; see {@link sap.ui.model.Model#setSizeLimit}.
79171
79175
  */
79172
- iLength: int
79173
- ): any[];
79176
+ iLength?: int
79177
+ ): sap.ui.model.Context[];
79174
79178
  /**
79175
- * Returns if the node has child nodes
79179
+ * Returns `true` if the node has child nodes.
79176
79180
  *
79177
79181
  *
79178
- * @returns true if node has children
79182
+ * @returns `true` if the node has children
79179
79183
  */
79180
79184
  hasChildren(
79181
79185
  /**
79182
79186
  * the context element of the node
79183
79187
  */
79184
- oContext: Object
79188
+ oContext: sap.ui.model.Context
79185
79189
  ): boolean;
79186
79190
  /**
79187
79191
  * Sorts the tree according to the sorter definitions.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
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.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.127.3
1
+ // For Library Version: 1.127.5
2
2
 
3
3
  declare namespace sap {
4
4
  /**