@openui5/ts-types 1.136.2 → 1.138.0
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 +1206 -541
- package/types/sap.tnt.d.ts +103 -16
- 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 +69 -70
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -7
- package/types/sap.ui.integration.d.ts +44 -24
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +597 -293
- 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 +9 -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/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -201,7 +201,7 @@ declare namespace sap {
|
|
|
201
201
|
* a single side navigation.
|
|
202
202
|
*
|
|
203
203
|
* **Guidelines:**
|
|
204
|
-
* -
|
|
204
|
+
* - Items that have a set href and target set to `_blank` should not be selectable.
|
|
205
205
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
206
206
|
*
|
|
207
207
|
* @since 1.116
|
|
@@ -226,8 +226,12 @@ declare namespace sap {
|
|
|
226
226
|
* Specifies the browsing context where the linked content will open.
|
|
227
227
|
*
|
|
228
228
|
* Options are the standard values for window.open() supported by browsers: `_self`, `_top`, `_blank`, `_parent`,
|
|
229
|
-
* `_search`. Alternatively, a frame name can be entered.
|
|
230
|
-
*
|
|
229
|
+
* `_search`. Alternatively, a frame name can be entered.
|
|
230
|
+
*
|
|
231
|
+
* **Guidelines:**
|
|
232
|
+
* - Use only when `href` property is set.
|
|
233
|
+
* - Items that have a set href and target set to `_blank` should not have children Items that have
|
|
234
|
+
* a set href, should not use target for internal navigation/li>
|
|
231
235
|
*/
|
|
232
236
|
target?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
233
237
|
|
|
@@ -464,6 +468,28 @@ declare namespace sap {
|
|
|
464
468
|
* The pressed item.
|
|
465
469
|
*/
|
|
466
470
|
item?: sap.ui.core.Item;
|
|
471
|
+
|
|
472
|
+
/**
|
|
473
|
+
* Indicates whether the CTRL key was pressed when the link was selected.
|
|
474
|
+
*/
|
|
475
|
+
ctrlKey?: boolean;
|
|
476
|
+
|
|
477
|
+
/**
|
|
478
|
+
* Indicates whether the Shift key was pressed when the link was selected.
|
|
479
|
+
*/
|
|
480
|
+
shiftKey?: boolean;
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* Indicates whether the Alt key was pressed when the link was selected.
|
|
484
|
+
*/
|
|
485
|
+
altKey?: boolean;
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* Indicates whether the "meta" key was pressed when the link was selected.
|
|
489
|
+
*
|
|
490
|
+
* On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
|
|
491
|
+
*/
|
|
492
|
+
metaKey?: boolean;
|
|
467
493
|
}
|
|
468
494
|
|
|
469
495
|
/**
|
|
@@ -494,6 +520,28 @@ declare namespace sap {
|
|
|
494
520
|
* The pressed item.
|
|
495
521
|
*/
|
|
496
522
|
item?: sap.ui.core.Item;
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* Indicates whether the CTRL key was pressed when the link was selected.
|
|
526
|
+
*/
|
|
527
|
+
ctrlKey?: boolean;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* Indicates whether the Shift key was pressed when the link was selected.
|
|
531
|
+
*/
|
|
532
|
+
shiftKey?: boolean;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* Indicates whether the Alt key was pressed when the link was selected.
|
|
536
|
+
*/
|
|
537
|
+
altKey?: boolean;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* Indicates whether the "meta" key was pressed when the link was selected.
|
|
541
|
+
*
|
|
542
|
+
* On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
|
|
543
|
+
*/
|
|
544
|
+
metaKey?: boolean;
|
|
497
545
|
}
|
|
498
546
|
|
|
499
547
|
/**
|
|
@@ -504,6 +552,28 @@ declare namespace sap {
|
|
|
504
552
|
* The pressed item.
|
|
505
553
|
*/
|
|
506
554
|
item?: sap.ui.core.Item;
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* Indicates whether the CTRL key was pressed when the link was selected.
|
|
558
|
+
*/
|
|
559
|
+
ctrlKey?: boolean;
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* Indicates whether the Shift key was pressed when the link was selected.
|
|
563
|
+
*/
|
|
564
|
+
shiftKey?: boolean;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* Indicates whether the Alt key was pressed when the link was selected.
|
|
568
|
+
*/
|
|
569
|
+
altKey?: boolean;
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* Indicates whether the "meta" key was pressed when the link was selected.
|
|
573
|
+
*
|
|
574
|
+
* On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
|
|
575
|
+
*/
|
|
576
|
+
metaKey?: boolean;
|
|
507
577
|
}
|
|
508
578
|
|
|
509
579
|
/**
|
|
@@ -1094,16 +1164,19 @@ declare namespace sap {
|
|
|
1094
1164
|
/**
|
|
1095
1165
|
* Fires event {@link #event:itemPress itemPress} to attached listeners.
|
|
1096
1166
|
*
|
|
1167
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
1168
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
1169
|
+
*
|
|
1097
1170
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1098
1171
|
*
|
|
1099
|
-
* @returns
|
|
1172
|
+
* @returns Whether or not to prevent the default action
|
|
1100
1173
|
*/
|
|
1101
1174
|
fireItemPress(
|
|
1102
1175
|
/**
|
|
1103
1176
|
* Parameters to pass along with the event
|
|
1104
1177
|
*/
|
|
1105
1178
|
mParameters?: sap.tnt.NavigationList$ItemPressEventParameters
|
|
1106
|
-
):
|
|
1179
|
+
): boolean;
|
|
1107
1180
|
/**
|
|
1108
1181
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
1109
1182
|
*
|
|
@@ -1702,7 +1775,7 @@ declare namespace sap {
|
|
|
1702
1775
|
* a single side navigation.
|
|
1703
1776
|
*
|
|
1704
1777
|
* **Guidelines:**
|
|
1705
|
-
* -
|
|
1778
|
+
* - Items that have a set href and target set to `_blank` should not be selectable.
|
|
1706
1779
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1707
1780
|
*
|
|
1708
1781
|
* Default value is `true`.
|
|
@@ -1720,8 +1793,12 @@ declare namespace sap {
|
|
|
1720
1793
|
* Specifies the browsing context where the linked content will open.
|
|
1721
1794
|
*
|
|
1722
1795
|
* Options are the standard values for window.open() supported by browsers: `_self`, `_top`, `_blank`, `_parent`,
|
|
1723
|
-
* `_search`. Alternatively, a frame name can be entered.
|
|
1724
|
-
*
|
|
1796
|
+
* `_search`. Alternatively, a frame name can be entered.
|
|
1797
|
+
*
|
|
1798
|
+
* **Guidelines:**
|
|
1799
|
+
* - Use only when `href` property is set.
|
|
1800
|
+
* - Items that have a set href and target set to `_blank` should not have children Items that have
|
|
1801
|
+
* a set href, should not use target for internal navigation/li>
|
|
1725
1802
|
*
|
|
1726
1803
|
*
|
|
1727
1804
|
* @returns Value of property `target`
|
|
@@ -1878,7 +1955,7 @@ declare namespace sap {
|
|
|
1878
1955
|
* a single side navigation.
|
|
1879
1956
|
*
|
|
1880
1957
|
* **Guidelines:**
|
|
1881
|
-
* -
|
|
1958
|
+
* - Items that have a set href and target set to `_blank` should not be selectable.
|
|
1882
1959
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1883
1960
|
*
|
|
1884
1961
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -1903,8 +1980,12 @@ declare namespace sap {
|
|
|
1903
1980
|
* Specifies the browsing context where the linked content will open.
|
|
1904
1981
|
*
|
|
1905
1982
|
* Options are the standard values for window.open() supported by browsers: `_self`, `_top`, `_blank`, `_parent`,
|
|
1906
|
-
* `_search`. Alternatively, a frame name can be entered.
|
|
1907
|
-
*
|
|
1983
|
+
* `_search`. Alternatively, a frame name can be entered.
|
|
1984
|
+
*
|
|
1985
|
+
* **Guidelines:**
|
|
1986
|
+
* - Use only when `href` property is set.
|
|
1987
|
+
* - Items that have a set href and target set to `_blank` should not have children Items that have
|
|
1988
|
+
* a set href, should not use target for internal navigation/li>
|
|
1908
1989
|
*
|
|
1909
1990
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1910
1991
|
*
|
|
@@ -2077,17 +2158,20 @@ declare namespace sap {
|
|
|
2077
2158
|
/**
|
|
2078
2159
|
* Fires event {@link #event:press press} to attached listeners.
|
|
2079
2160
|
*
|
|
2161
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
2162
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
2163
|
+
*
|
|
2080
2164
|
* @since 1.133
|
|
2081
2165
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2082
2166
|
*
|
|
2083
|
-
* @returns
|
|
2167
|
+
* @returns Whether or not to prevent the default action
|
|
2084
2168
|
*/
|
|
2085
2169
|
firePress(
|
|
2086
2170
|
/**
|
|
2087
2171
|
* Parameters to pass along with the event
|
|
2088
2172
|
*/
|
|
2089
2173
|
mParameters?: sap.tnt.NavigationListItemBase$PressEventParameters
|
|
2090
|
-
):
|
|
2174
|
+
): boolean;
|
|
2091
2175
|
/**
|
|
2092
2176
|
* Gets current value of property {@link #getExpanded expanded}.
|
|
2093
2177
|
*
|
|
@@ -2433,16 +2517,19 @@ declare namespace sap {
|
|
|
2433
2517
|
/**
|
|
2434
2518
|
* Fires event {@link #event:itemPress itemPress} to attached listeners.
|
|
2435
2519
|
*
|
|
2520
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
2521
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
2522
|
+
*
|
|
2436
2523
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2437
2524
|
*
|
|
2438
|
-
* @returns
|
|
2525
|
+
* @returns Whether or not to prevent the default action
|
|
2439
2526
|
*/
|
|
2440
2527
|
fireItemPress(
|
|
2441
2528
|
/**
|
|
2442
2529
|
* Parameters to pass along with the event
|
|
2443
2530
|
*/
|
|
2444
2531
|
mParameters?: sap.tnt.SideNavigation$ItemPressEventParameters
|
|
2445
|
-
):
|
|
2532
|
+
): boolean;
|
|
2446
2533
|
/**
|
|
2447
2534
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
2448
2535
|
*
|
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.
|
|
282
|
+
// For Library Version: 1.138.0
|
|
283
283
|
|
|
284
284
|
declare module "sap/base/assert" {
|
|
285
285
|
/**
|
|
@@ -18853,8 +18853,7 @@ declare namespace sap {
|
|
|
18853
18853
|
*/
|
|
18854
18854
|
groupingBaseSize?: int;
|
|
18855
18855
|
/**
|
|
18856
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
18857
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
18856
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
18858
18857
|
*/
|
|
18859
18858
|
groupingEnabled?: boolean;
|
|
18860
18859
|
/**
|
|
@@ -18863,8 +18862,7 @@ declare namespace sap {
|
|
|
18863
18862
|
*/
|
|
18864
18863
|
groupingSeparator?: string;
|
|
18865
18864
|
/**
|
|
18866
|
-
* defines the grouping size in digits; the default is `3`.
|
|
18867
|
-
* non-positive value, grouping will be disabled entirely.
|
|
18865
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
18868
18866
|
*/
|
|
18869
18867
|
groupingSize?: int;
|
|
18870
18868
|
/**
|
|
@@ -19034,8 +19032,7 @@ declare namespace sap {
|
|
|
19034
19032
|
*/
|
|
19035
19033
|
groupingBaseSize?: int;
|
|
19036
19034
|
/**
|
|
19037
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19038
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
19035
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
19039
19036
|
*/
|
|
19040
19037
|
groupingEnabled?: boolean;
|
|
19041
19038
|
/**
|
|
@@ -19044,8 +19041,7 @@ declare namespace sap {
|
|
|
19044
19041
|
*/
|
|
19045
19042
|
groupingSeparator?: string;
|
|
19046
19043
|
/**
|
|
19047
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19048
|
-
* non-positive value, grouping will be disabled entirely.
|
|
19044
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
19049
19045
|
*/
|
|
19050
19046
|
groupingSize?: int;
|
|
19051
19047
|
/**
|
|
@@ -19199,8 +19195,7 @@ declare namespace sap {
|
|
|
19199
19195
|
*/
|
|
19200
19196
|
groupingBaseSize?: int;
|
|
19201
19197
|
/**
|
|
19202
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19203
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
19198
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
19204
19199
|
*/
|
|
19205
19200
|
groupingEnabled?: boolean;
|
|
19206
19201
|
/**
|
|
@@ -19209,8 +19204,7 @@ declare namespace sap {
|
|
|
19209
19204
|
*/
|
|
19210
19205
|
groupingSeparator?: string;
|
|
19211
19206
|
/**
|
|
19212
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19213
|
-
* non-positive value, grouping will be disabled entirely.
|
|
19207
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
19214
19208
|
*/
|
|
19215
19209
|
groupingSize?: int;
|
|
19216
19210
|
/**
|
|
@@ -19359,8 +19353,7 @@ declare namespace sap {
|
|
|
19359
19353
|
*/
|
|
19360
19354
|
groupingBaseSize?: int;
|
|
19361
19355
|
/**
|
|
19362
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19363
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
19356
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
19364
19357
|
*/
|
|
19365
19358
|
groupingEnabled?: boolean;
|
|
19366
19359
|
/**
|
|
@@ -19369,8 +19362,7 @@ declare namespace sap {
|
|
|
19369
19362
|
*/
|
|
19370
19363
|
groupingSeparator?: string;
|
|
19371
19364
|
/**
|
|
19372
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19373
|
-
* non-positive value, grouping will be disabled entirely.
|
|
19365
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
19374
19366
|
*/
|
|
19375
19367
|
groupingSize?: int;
|
|
19376
19368
|
/**
|
|
@@ -19531,8 +19523,7 @@ declare namespace sap {
|
|
|
19531
19523
|
*/
|
|
19532
19524
|
groupingBaseSize?: int;
|
|
19533
19525
|
/**
|
|
19534
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
19535
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
19526
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
19536
19527
|
*/
|
|
19537
19528
|
groupingEnabled?: boolean;
|
|
19538
19529
|
/**
|
|
@@ -19541,8 +19532,7 @@ declare namespace sap {
|
|
|
19541
19532
|
*/
|
|
19542
19533
|
groupingSeparator?: string;
|
|
19543
19534
|
/**
|
|
19544
|
-
* defines the grouping size in digits; the default is `3`.
|
|
19545
|
-
* non-positive value, grouping will be disabled entirely.
|
|
19535
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
19546
19536
|
*/
|
|
19547
19537
|
groupingSize?: int;
|
|
19548
19538
|
/**
|
|
@@ -26462,6 +26452,27 @@ declare namespace sap {
|
|
|
26462
26452
|
* @returns Metadata object describing this class
|
|
26463
26453
|
*/
|
|
26464
26454
|
static getMetadata(): sap.ui.base.Metadata;
|
|
26455
|
+
/**
|
|
26456
|
+
* Returns a managed instance of {@link sap.ui.core.routing.RouterHashChanger} associated with the current
|
|
26457
|
+
* instance.
|
|
26458
|
+
*
|
|
26459
|
+
* This sub-instance handles a specific part of the URL hash. When the sub-instance modifies the hash, it
|
|
26460
|
+
* notifies the parent instance, which then updates the browser’s hash accordingly. Likewise, when the relevant
|
|
26461
|
+
* part of the hash changes externally, the parent instance notifies the sub-instance.
|
|
26462
|
+
*
|
|
26463
|
+
* The provided `sKey` is used as an identifier for caching the sub-instance. If this method is called again
|
|
26464
|
+
* with the same key, the previously created instance is returned.
|
|
26465
|
+
*
|
|
26466
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
26467
|
+
*
|
|
26468
|
+
* @returns The corresponding sub RouterHashChanger instance.
|
|
26469
|
+
*/
|
|
26470
|
+
createSubHashChanger(
|
|
26471
|
+
/**
|
|
26472
|
+
* A unique key used as the prefix for the sub RouterHashChanger.
|
|
26473
|
+
*/
|
|
26474
|
+
sKey: string
|
|
26475
|
+
): sap.ui.core.routing.RouterHashChanger;
|
|
26465
26476
|
/**
|
|
26466
26477
|
* Save the given hash and potentially fires a "hashChanged" event; may be extended to modify the hash before
|
|
26467
26478
|
* firing the event.
|
|
@@ -26725,7 +26736,10 @@ declare namespace sap {
|
|
|
26725
26736
|
oListener?: object
|
|
26726
26737
|
): this;
|
|
26727
26738
|
/**
|
|
26728
|
-
* Creates a view and puts it in an aggregation of a control that has been defined in the {@link
|
|
26739
|
+
* Creates a view and puts it in an aggregation of a control that has been defined in the {@link #constructor}.
|
|
26740
|
+
*
|
|
26741
|
+
* This method can be used to display a target without changing the browser hash. If the browser hash should
|
|
26742
|
+
* be changed, the {@link sap.ui.core.routing.Router#navTo} method should be used instead
|
|
26729
26743
|
*
|
|
26730
26744
|
*
|
|
26731
26745
|
* @returns resolves with {name: *, view: *, control: *} if the target can be successfully displayed otherwise
|
|
@@ -27040,41 +27054,29 @@ declare namespace sap {
|
|
|
27040
27054
|
* Creates a view and puts it in an aggregation of the specified control.
|
|
27041
27055
|
*
|
|
27042
27056
|
*
|
|
27043
|
-
* @returns
|
|
27057
|
+
* @returns resolving with {{name: *, view: *, control: *}|undefined} for every vTargets, object for single,
|
|
27058
|
+
* array for multiple
|
|
27044
27059
|
*/
|
|
27045
27060
|
display(
|
|
27046
27061
|
/**
|
|
27047
|
-
*
|
|
27048
|
-
* of
|
|
27062
|
+
* the key of the target as specified in the {@link #constructor}. To display multiple targets you may also
|
|
27063
|
+
* pass an array of keys. If the target(s) represents a sap.ui.core.UIComponent, a prefix for its Router
|
|
27064
|
+
* is needed. You can set this parameter with an object which has the 'name' property set with the key of
|
|
27065
|
+
* the target and the 'prefix' property set with the prefix for the UIComponent's router. To display multiple
|
|
27066
|
+
* component targets, you man also pass an array of objects.
|
|
27049
27067
|
*/
|
|
27050
|
-
vTargets:
|
|
27051
|
-
| string
|
|
27052
|
-
| string[]
|
|
27053
|
-
| sap.ui.core.routing.TargetInfo
|
|
27054
|
-
| sap.ui.core.routing.TargetInfo[],
|
|
27068
|
+
vTargets: string | string[] | object | object[],
|
|
27055
27069
|
/**
|
|
27056
27070
|
* an object that will be passed to the display event in the data property. If the target has parents, the
|
|
27057
27071
|
* data will also be passed to them.
|
|
27058
27072
|
*/
|
|
27059
|
-
|
|
27073
|
+
vData?: object,
|
|
27060
27074
|
/**
|
|
27061
27075
|
* the name of the target from which the title option is taken for firing the {@link sap.ui.core.routing.Targets#event:titleChanged titleChanged }
|
|
27062
27076
|
* event
|
|
27063
27077
|
*/
|
|
27064
27078
|
sTitleTarget?: string
|
|
27065
|
-
):
|
|
27066
|
-
| this
|
|
27067
|
-
| Promise<
|
|
27068
|
-
Array<{
|
|
27069
|
-
name: string;
|
|
27070
|
-
|
|
27071
|
-
view: sap.ui.core.mvc.View;
|
|
27072
|
-
|
|
27073
|
-
control: sap.ui.core.Control;
|
|
27074
|
-
|
|
27075
|
-
targetInfo: sap.ui.core.routing.TargetInfo;
|
|
27076
|
-
}>
|
|
27077
|
-
>;
|
|
27079
|
+
): Promise<any>;
|
|
27078
27080
|
/**
|
|
27079
27081
|
* Fires event {@link #event:created created} to attached listeners.
|
|
27080
27082
|
*
|
|
@@ -32066,8 +32068,6 @@ declare namespace sap {
|
|
|
32066
32068
|
}
|
|
32067
32069
|
/**
|
|
32068
32070
|
* Describes the settings that can be provided to the WebComponent constructor.
|
|
32069
|
-
*
|
|
32070
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
32071
32071
|
*/
|
|
32072
32072
|
interface $WebComponentSettings extends sap.ui.core.$ControlSettings {}
|
|
32073
32073
|
|
|
@@ -32077,8 +32077,7 @@ declare namespace sap {
|
|
|
32077
32077
|
* properties, the aggregations and the events. It also ensures to render the control and put the aggregated
|
|
32078
32078
|
* controls in the dedicated slots of the Web Component.
|
|
32079
32079
|
*
|
|
32080
|
-
* @since 1.
|
|
32081
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
32080
|
+
* @since 1.138.0
|
|
32082
32081
|
*/
|
|
32083
32082
|
class WebComponent extends sap.ui.core.Control {
|
|
32084
32083
|
/**
|
|
@@ -32179,8 +32178,7 @@ declare namespace sap {
|
|
|
32179
32178
|
static getMetadata(): sap.ui.core.webc.WebComponentMetadata;
|
|
32180
32179
|
}
|
|
32181
32180
|
/**
|
|
32182
|
-
* @since 1.
|
|
32183
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
32181
|
+
* @since 1.138.0
|
|
32184
32182
|
*/
|
|
32185
32183
|
class WebComponentMetadata extends sap.ui.core.ElementMetadata {
|
|
32186
32184
|
/**
|
|
@@ -51926,7 +51924,7 @@ declare namespace sap {
|
|
|
51926
51924
|
/**
|
|
51927
51925
|
* If called on an instance of an (v1/v2) ODataModel it will enrich it with analytics capabilities.
|
|
51928
51926
|
*
|
|
51929
|
-
* @
|
|
51927
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
51930
51928
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
51931
51929
|
*/
|
|
51932
51930
|
function ODataModelAdapter(): void;
|
|
@@ -53849,7 +53847,7 @@ declare namespace sap {
|
|
|
53849
53847
|
*
|
|
53850
53848
|
* Lazy initialization of attributes will cause unexpected values when you access object attributes directly.
|
|
53851
53849
|
*
|
|
53852
|
-
* @
|
|
53850
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
53853
53851
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
53854
53852
|
*/
|
|
53855
53853
|
interface odata4analytics {
|
|
@@ -53880,7 +53878,7 @@ declare namespace sap {
|
|
|
53880
53878
|
* to OData requests. If a binding count mode is set to `Request` or `Both`, a warning is logged to remind
|
|
53881
53879
|
* the application that the OData requests generated by the AnalyticalBinding include a $inlinecount.
|
|
53882
53880
|
*
|
|
53883
|
-
* @
|
|
53881
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
53884
53882
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
53885
53883
|
*/
|
|
53886
53884
|
class AnalyticalBinding extends sap.ui.model.TreeBinding {
|
|
@@ -54476,7 +54474,10 @@ declare namespace sap {
|
|
|
54476
54474
|
bForceChange: boolean
|
|
54477
54475
|
): void;
|
|
54478
54476
|
}
|
|
54479
|
-
|
|
54477
|
+
/**
|
|
54478
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
54479
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
54480
|
+
*/
|
|
54480
54481
|
class AnalyticalTreeBindingAdapter {
|
|
54481
54482
|
/**
|
|
54482
54483
|
* Adapter for TreeBindings to add the ListBinding functionality and use the tree structure in list based
|
|
@@ -55042,7 +55043,7 @@ declare namespace sap {
|
|
|
55042
55043
|
* controls. Only usable with the sap.ui.table.TreeTable control. The functions defined here are only available
|
|
55043
55044
|
* when you are using a TreeTable and an ODataModel.
|
|
55044
55045
|
*
|
|
55045
|
-
* @
|
|
55046
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 hierarchy functionality, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1/section_RCH Recursive Hierarchy}
|
|
55046
55047
|
*/
|
|
55047
55048
|
function ODataTreeBindingAdapter(): void;
|
|
55048
55049
|
/**
|
|
@@ -62809,8 +62810,6 @@ declare namespace sap {
|
|
|
62809
62810
|
|
|
62810
62811
|
/**
|
|
62811
62812
|
* Parameters of the ODataListBinding#separateReceived event.
|
|
62812
|
-
*
|
|
62813
|
-
* @experimental As of version 1.131.0.
|
|
62814
62813
|
*/
|
|
62815
62814
|
interface ODataListBinding$SeparateReceivedEventParameters {
|
|
62816
62815
|
/**
|
|
@@ -62829,9 +62828,9 @@ declare namespace sap {
|
|
|
62829
62828
|
length?: number;
|
|
62830
62829
|
|
|
62831
62830
|
/**
|
|
62832
|
-
*
|
|
62831
|
+
* An array of UI5 messages if the request failed; `undefined` otherwise
|
|
62833
62832
|
*/
|
|
62834
|
-
|
|
62833
|
+
messagesOnError?: sap.ui.core.message.Message[];
|
|
62835
62834
|
}
|
|
62836
62835
|
|
|
62837
62836
|
/**
|
|
@@ -66774,7 +66773,9 @@ declare namespace sap {
|
|
|
66774
66773
|
* is not an OData simple identifier, it can be used as a placeholder for one. In this way, "/EMPLOYEES/"
|
|
66775
66774
|
* addresses the same entity type as "/EMPLOYEES/$Type/". That entity type in turn is a map of all its OData
|
|
66776
66775
|
* children (that is, structural and navigation properties) and determines the set of possible child names
|
|
66777
|
-
* that might be used after the trailing slash.
|
|
66776
|
+
* that might be used after the trailing slash. Since 1.137.0, open (complex or entity) types are supported
|
|
66777
|
+
* as follows: A simple identifier that does not refer to an OData child is valid and treated as a dynamic
|
|
66778
|
+
* property of type "Edm.Untyped".
|
|
66778
66779
|
*
|
|
66779
66780
|
* "$" can be used as the last segment to continue a path and thus force scope lookup, but no OData simple
|
|
66780
66781
|
* identifier preparations. In this way, it serves as a placeholder for a technical property. The path must
|
|
@@ -67401,12 +67402,12 @@ declare namespace sap {
|
|
|
67401
67402
|
*/
|
|
67402
67403
|
$$ownRequest?: boolean;
|
|
67403
67404
|
/**
|
|
67404
|
-
* An array of navigation property names which are omitted from the main list request
|
|
67405
|
-
*
|
|
67406
|
-
*
|
|
67407
|
-
*
|
|
67408
|
-
*
|
|
67409
|
-
*
|
|
67405
|
+
* An array of navigation property names which are omitted from the main list request (since 1.137.0). Instead,
|
|
67406
|
+
* each of them is loaded in a separate request. This results in the main list becoming available faster,
|
|
67407
|
+
* while the separate properties are merged as soon as the data is received. Note that the separate properties
|
|
67408
|
+
* must be single valued and part of the '$expand' system query option, either automatically via the "autoExpandSelect"
|
|
67409
|
+
* model parameter (see {@link #constructor}) or manually. The `$$separate` parameter must not be combined
|
|
67410
|
+
* with `$$aggregation`.
|
|
67410
67411
|
*/
|
|
67411
67412
|
$$separate?: string[];
|
|
67412
67413
|
/**
|
|
@@ -68569,8 +68570,6 @@ declare namespace sap {
|
|
|
68569
68570
|
|
|
68570
68571
|
/**
|
|
68571
68572
|
* Event object of the ODataListBinding#separateReceived event.
|
|
68572
|
-
*
|
|
68573
|
-
* @experimental As of version 1.131.0.
|
|
68574
68573
|
*/
|
|
68575
68574
|
type ODataListBinding$SeparateReceivedEvent = sap.ui.base.Event<
|
|
68576
68575
|
ODataListBinding$SeparateReceivedEventParameters,
|
|
@@ -85905,11 +85904,11 @@ declare namespace sap {
|
|
|
85905
85904
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
85906
85905
|
* `waitFor` statements.
|
|
85907
85906
|
*/
|
|
85908
|
-
actions?: Record<string,
|
|
85907
|
+
actions?: Record<string, Function> | Function;
|
|
85909
85908
|
/**
|
|
85910
85909
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
85911
85910
|
*/
|
|
85912
|
-
assertions?: Record<string,
|
|
85911
|
+
assertions?: Record<string, Function> | Function;
|
|
85913
85912
|
};
|
|
85914
85913
|
}
|
|
85915
85914
|
/**
|
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -1456,8 +1456,6 @@ declare namespace sap {
|
|
|
1456
1456
|
|
|
1457
1457
|
"sap/ui/fl/changeHandler/BaseRename": undefined;
|
|
1458
1458
|
|
|
1459
|
-
"sap/ui/fl/ChangePersistenceFactory": undefined;
|
|
1460
|
-
|
|
1461
1459
|
"sap/ui/fl/descriptorRelated/api/DescriptorChange": undefined;
|
|
1462
1460
|
|
|
1463
1461
|
"sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
|
|
@@ -1466,8 +1464,6 @@ declare namespace sap {
|
|
|
1466
1464
|
|
|
1467
1465
|
"sap/ui/fl/descriptorRelated/api/DescriptorVariantFactory": undefined;
|
|
1468
1466
|
|
|
1469
|
-
"sap/ui/fl/FlexControllerFactory": undefined;
|
|
1470
|
-
|
|
1471
1467
|
"sap/ui/fl/initial/_internal/connectors/BackendConnector": undefined;
|
|
1472
1468
|
|
|
1473
1469
|
"sap/ui/fl/initial/_internal/connectors/BtpServiceConnector": undefined;
|
|
@@ -1484,6 +1480,8 @@ declare namespace sap {
|
|
|
1484
1480
|
|
|
1485
1481
|
"sap/ui/fl/initial/_internal/connectors/Utils": undefined;
|
|
1486
1482
|
|
|
1483
|
+
"sap/ui/fl/initial/_internal/Settings": undefined;
|
|
1484
|
+
|
|
1487
1485
|
"sap/ui/fl/initial/_internal/Storage": undefined;
|
|
1488
1486
|
|
|
1489
1487
|
"sap/ui/fl/initial/_internal/StorageUtils": undefined;
|
|
@@ -1496,8 +1494,6 @@ declare namespace sap {
|
|
|
1496
1494
|
|
|
1497
1495
|
"sap/ui/fl/library": undefined;
|
|
1498
1496
|
|
|
1499
|
-
"sap/ui/fl/registry/Settings": undefined;
|
|
1500
|
-
|
|
1501
1497
|
"sap/ui/fl/support/_internal/getAllUIChanges": undefined;
|
|
1502
1498
|
|
|
1503
1499
|
"sap/ui/fl/support/_internal/getChangeDependencies": undefined;
|