@openui5/ts-types 1.130.0 → 1.130.1
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 +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +42 -38
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
|
@@ -279,7 +279,7 @@ declare namespace sap {
|
|
|
279
279
|
"sap/ui/thirdparty/qunit-2": undefined;
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
|
-
// For Library Version: 1.130.
|
|
282
|
+
// For Library Version: 1.130.1
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -53828,10 +53828,10 @@ declare namespace sap {
|
|
|
53828
53828
|
*/
|
|
53829
53829
|
oContext: sap.ui.model.Context,
|
|
53830
53830
|
/**
|
|
53831
|
-
* Parameters, specifying the aggregation level for which contexts shall be fetched or
|
|
53832
|
-
*
|
|
53831
|
+
* Parameters, specifying the aggregation level for which contexts shall be fetched or the index of the
|
|
53832
|
+
* first child entry to return from the parent contexts
|
|
53833
53833
|
*/
|
|
53834
|
-
mParameters
|
|
53834
|
+
mParameters?:
|
|
53835
53835
|
| {
|
|
53836
53836
|
/**
|
|
53837
53837
|
* Level number for oContext, because it might occur at multiple levels; context with group ID `"/"` has
|
|
@@ -53943,7 +53943,7 @@ declare namespace sap {
|
|
|
53943
53943
|
* value can be set to define the parameter `startIndex` as described in this parameter list. In this case,
|
|
53944
53944
|
* the function parameters `iLength`, `iNumberOfExpandedLevels` and `iThreshold` become mandatory.
|
|
53945
53945
|
*/
|
|
53946
|
-
mParameters
|
|
53946
|
+
mParameters?:
|
|
53947
53947
|
| {
|
|
53948
53948
|
/**
|
|
53949
53949
|
* Number of entries to return at and after the given start index; defaults to the model's size limit, see
|
|
@@ -75506,11 +75506,11 @@ declare namespace sap {
|
|
|
75506
75506
|
*/
|
|
75507
75507
|
getCount(): number | undefined;
|
|
75508
75508
|
/**
|
|
75509
|
-
* Return node contexts for the tree
|
|
75509
|
+
* Return node contexts for the tree.
|
|
75510
75510
|
*
|
|
75511
75511
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
75512
75512
|
*
|
|
75513
|
-
* @returns the
|
|
75513
|
+
* @returns the context's array
|
|
75514
75514
|
*/
|
|
75515
75515
|
getNodeContexts(
|
|
75516
75516
|
/**
|
|
@@ -75518,42 +75518,44 @@ declare namespace sap {
|
|
|
75518
75518
|
*/
|
|
75519
75519
|
oContext: sap.ui.model.Context,
|
|
75520
75520
|
/**
|
|
75521
|
-
* the
|
|
75521
|
+
* the index from which to start the retrieval of contexts
|
|
75522
75522
|
*/
|
|
75523
|
-
iStartIndex
|
|
75523
|
+
iStartIndex?: int,
|
|
75524
75524
|
/**
|
|
75525
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
75525
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
75526
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
75526
75527
|
*/
|
|
75527
|
-
iLength
|
|
75528
|
+
iLength?: int
|
|
75528
75529
|
): sap.ui.model.Context[];
|
|
75529
75530
|
/**
|
|
75530
|
-
* Return root contexts for the tree
|
|
75531
|
+
* Return root contexts for the tree.
|
|
75531
75532
|
*
|
|
75532
75533
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
75533
75534
|
*
|
|
75534
|
-
* @returns the
|
|
75535
|
+
* @returns the context's array
|
|
75535
75536
|
*/
|
|
75536
75537
|
getRootContexts(
|
|
75537
75538
|
/**
|
|
75538
|
-
* the
|
|
75539
|
+
* the index from which to start the retrieval of contexts
|
|
75539
75540
|
*/
|
|
75540
|
-
iStartIndex
|
|
75541
|
+
iStartIndex?: int,
|
|
75541
75542
|
/**
|
|
75542
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
75543
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
75544
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
75543
75545
|
*/
|
|
75544
|
-
iLength
|
|
75545
|
-
):
|
|
75546
|
+
iLength?: int
|
|
75547
|
+
): sap.ui.model.Context[];
|
|
75546
75548
|
/**
|
|
75547
75549
|
* Returns if the node has child nodes.
|
|
75548
75550
|
*
|
|
75549
75551
|
*
|
|
75550
|
-
* @returns true if node has children
|
|
75552
|
+
* @returns `true` if the node has children
|
|
75551
75553
|
*/
|
|
75552
75554
|
hasChildren(
|
|
75553
75555
|
/**
|
|
75554
75556
|
* the context element of the node
|
|
75555
75557
|
*/
|
|
75556
|
-
oContext:
|
|
75558
|
+
oContext: sap.ui.model.Context
|
|
75557
75559
|
): boolean;
|
|
75558
75560
|
/**
|
|
75559
75561
|
* Sorts the contexts of this ClientTreeBinding. The tree will be sorted level by level. So the nodes are
|
|
@@ -79014,7 +79016,7 @@ declare namespace sap {
|
|
|
79014
79016
|
/**
|
|
79015
79017
|
* Context object for this binding (optional)
|
|
79016
79018
|
*/
|
|
79017
|
-
oContext?:
|
|
79019
|
+
oContext?: sap.ui.model.Context,
|
|
79018
79020
|
/**
|
|
79019
79021
|
* The filters to be used initially with type {@link sap.ui.model.FilterType.Application}; call {@link #filter }
|
|
79020
79022
|
* to replace them
|
|
@@ -79023,7 +79025,7 @@ declare namespace sap {
|
|
|
79023
79025
|
/**
|
|
79024
79026
|
* Additional model specific parameters (optional)
|
|
79025
79027
|
*/
|
|
79026
|
-
mParameters?:
|
|
79028
|
+
mParameters?: object,
|
|
79027
79029
|
/**
|
|
79028
79030
|
* The sorters used initially; call {@link #sort} to replace them
|
|
79029
79031
|
*/
|
|
@@ -79115,7 +79117,7 @@ declare namespace sap {
|
|
|
79115
79117
|
sFilterType?: sap.ui.model.FilterType
|
|
79116
79118
|
): void;
|
|
79117
79119
|
/**
|
|
79118
|
-
* Returns the number of child nodes of a specific context
|
|
79120
|
+
* Returns the number of child nodes of a specific context.
|
|
79119
79121
|
*
|
|
79120
79122
|
*
|
|
79121
79123
|
* @returns the number of children
|
|
@@ -79124,7 +79126,7 @@ declare namespace sap {
|
|
|
79124
79126
|
/**
|
|
79125
79127
|
* the context element of the node
|
|
79126
79128
|
*/
|
|
79127
|
-
oContext:
|
|
79129
|
+
oContext: sap.ui.model.Context
|
|
79128
79130
|
): int;
|
|
79129
79131
|
/**
|
|
79130
79132
|
* Returns the count of entries in the tree, or `undefined` if it is unknown. If the tree is filtered, the
|
|
@@ -79140,7 +79142,7 @@ declare namespace sap {
|
|
|
79140
79142
|
*/
|
|
79141
79143
|
getCount(): number | undefined;
|
|
79142
79144
|
/**
|
|
79143
|
-
* Returns the current value of the bound target
|
|
79145
|
+
* Returns the current value of the bound target.
|
|
79144
79146
|
*
|
|
79145
79147
|
*
|
|
79146
79148
|
* @returns the array of child contexts for the given node
|
|
@@ -79151,41 +79153,43 @@ declare namespace sap {
|
|
|
79151
79153
|
*/
|
|
79152
79154
|
oContext: sap.ui.model.Context,
|
|
79153
79155
|
/**
|
|
79154
|
-
* the
|
|
79156
|
+
* the index from which to start the retrieval of contexts
|
|
79155
79157
|
*/
|
|
79156
|
-
iStartIndex
|
|
79158
|
+
iStartIndex?: int,
|
|
79157
79159
|
/**
|
|
79158
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
79160
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
79161
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
79159
79162
|
*/
|
|
79160
|
-
iLength
|
|
79163
|
+
iLength?: int
|
|
79161
79164
|
): sap.ui.model.Context[];
|
|
79162
79165
|
/**
|
|
79163
|
-
* Returns the current value of the bound target
|
|
79166
|
+
* Returns the current value of the bound target.
|
|
79164
79167
|
*
|
|
79165
79168
|
*
|
|
79166
79169
|
* @returns the array of child contexts for the root node
|
|
79167
79170
|
*/
|
|
79168
79171
|
getRootContexts(
|
|
79169
79172
|
/**
|
|
79170
|
-
* the
|
|
79173
|
+
* the index from which to start the retrieval of contexts
|
|
79171
79174
|
*/
|
|
79172
|
-
iStartIndex
|
|
79175
|
+
iStartIndex?: int,
|
|
79173
79176
|
/**
|
|
79174
|
-
* determines how many contexts to retrieve beginning from the start index.
|
|
79177
|
+
* determines how many contexts to retrieve, beginning from the start index. Defaults to the model's size
|
|
79178
|
+
* limit; see {@link sap.ui.model.Model#setSizeLimit}.
|
|
79175
79179
|
*/
|
|
79176
|
-
iLength
|
|
79177
|
-
):
|
|
79180
|
+
iLength?: int
|
|
79181
|
+
): sap.ui.model.Context[];
|
|
79178
79182
|
/**
|
|
79179
|
-
* Returns if the node has child nodes
|
|
79183
|
+
* Returns `true` if the node has child nodes.
|
|
79180
79184
|
*
|
|
79181
79185
|
*
|
|
79182
|
-
* @returns true if node has children
|
|
79186
|
+
* @returns `true` if the node has children
|
|
79183
79187
|
*/
|
|
79184
79188
|
hasChildren(
|
|
79185
79189
|
/**
|
|
79186
79190
|
* the context element of the node
|
|
79187
79191
|
*/
|
|
79188
|
-
oContext:
|
|
79192
|
+
oContext: sap.ui.model.Context
|
|
79189
79193
|
): boolean;
|
|
79190
79194
|
/**
|
|
79191
79195
|
* Sorts the tree according to the sorter definitions.
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED