@openui5/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 +1251 -564
- 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 +72 -69
- 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 +599 -297
- 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 module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -925,16 +925,19 @@ declare module "sap/tnt/NavigationList" {
|
|
|
925
925
|
/**
|
|
926
926
|
* Fires event {@link #event:itemPress itemPress} to attached listeners.
|
|
927
927
|
*
|
|
928
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
929
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
930
|
+
*
|
|
928
931
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
929
932
|
*
|
|
930
|
-
* @returns
|
|
933
|
+
* @returns Whether or not to prevent the default action
|
|
931
934
|
*/
|
|
932
935
|
fireItemPress(
|
|
933
936
|
/**
|
|
934
937
|
* Parameters to pass along with the event
|
|
935
938
|
*/
|
|
936
939
|
mParameters?: NavigationList$ItemPressEventParameters
|
|
937
|
-
):
|
|
940
|
+
): boolean;
|
|
938
941
|
/**
|
|
939
942
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
940
943
|
*
|
|
@@ -1214,6 +1217,28 @@ declare module "sap/tnt/NavigationList" {
|
|
|
1214
1217
|
* The pressed item.
|
|
1215
1218
|
*/
|
|
1216
1219
|
item?: Item;
|
|
1220
|
+
|
|
1221
|
+
/**
|
|
1222
|
+
* Indicates whether the CTRL key was pressed when the link was selected.
|
|
1223
|
+
*/
|
|
1224
|
+
ctrlKey?: boolean;
|
|
1225
|
+
|
|
1226
|
+
/**
|
|
1227
|
+
* Indicates whether the Shift key was pressed when the link was selected.
|
|
1228
|
+
*/
|
|
1229
|
+
shiftKey?: boolean;
|
|
1230
|
+
|
|
1231
|
+
/**
|
|
1232
|
+
* Indicates whether the Alt key was pressed when the link was selected.
|
|
1233
|
+
*/
|
|
1234
|
+
altKey?: boolean;
|
|
1235
|
+
|
|
1236
|
+
/**
|
|
1237
|
+
* Indicates whether the "meta" key was pressed when the link was selected.
|
|
1238
|
+
*
|
|
1239
|
+
* On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
|
|
1240
|
+
*/
|
|
1241
|
+
metaKey?: boolean;
|
|
1217
1242
|
}
|
|
1218
1243
|
|
|
1219
1244
|
/**
|
|
@@ -1679,7 +1704,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1679
1704
|
* a single side navigation.
|
|
1680
1705
|
*
|
|
1681
1706
|
* **Guidelines:**
|
|
1682
|
-
* -
|
|
1707
|
+
* - Items that have a set href and target set to `_blank` should not be selectable.
|
|
1683
1708
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1684
1709
|
*
|
|
1685
1710
|
* Default value is `true`.
|
|
@@ -1697,8 +1722,12 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1697
1722
|
* Specifies the browsing context where the linked content will open.
|
|
1698
1723
|
*
|
|
1699
1724
|
* Options are the standard values for window.open() supported by browsers: `_self`, `_top`, `_blank`, `_parent`,
|
|
1700
|
-
* `_search`. Alternatively, a frame name can be entered.
|
|
1701
|
-
*
|
|
1725
|
+
* `_search`. Alternatively, a frame name can be entered.
|
|
1726
|
+
*
|
|
1727
|
+
* **Guidelines:**
|
|
1728
|
+
* - Use only when `href` property is set.
|
|
1729
|
+
* - Items that have a set href and target set to `_blank` should not have children Items that have
|
|
1730
|
+
* a set href, should not use target for internal navigation/li>
|
|
1702
1731
|
*
|
|
1703
1732
|
*
|
|
1704
1733
|
* @returns Value of property `target`
|
|
@@ -1855,7 +1884,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1855
1884
|
* a single side navigation.
|
|
1856
1885
|
*
|
|
1857
1886
|
* **Guidelines:**
|
|
1858
|
-
* -
|
|
1887
|
+
* - Items that have a set href and target set to `_blank` should not be selectable.
|
|
1859
1888
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1860
1889
|
*
|
|
1861
1890
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
@@ -1880,8 +1909,12 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1880
1909
|
* Specifies the browsing context where the linked content will open.
|
|
1881
1910
|
*
|
|
1882
1911
|
* Options are the standard values for window.open() supported by browsers: `_self`, `_top`, `_blank`, `_parent`,
|
|
1883
|
-
* `_search`. Alternatively, a frame name can be entered.
|
|
1884
|
-
*
|
|
1912
|
+
* `_search`. Alternatively, a frame name can be entered.
|
|
1913
|
+
*
|
|
1914
|
+
* **Guidelines:**
|
|
1915
|
+
* - Use only when `href` property is set.
|
|
1916
|
+
* - Items that have a set href and target set to `_blank` should not have children Items that have
|
|
1917
|
+
* a set href, should not use target for internal navigation/li>
|
|
1885
1918
|
*
|
|
1886
1919
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1887
1920
|
*
|
|
@@ -1941,7 +1974,7 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1941
1974
|
* a single side navigation.
|
|
1942
1975
|
*
|
|
1943
1976
|
* **Guidelines:**
|
|
1944
|
-
* -
|
|
1977
|
+
* - Items that have a set href and target set to `_blank` should not be selectable.
|
|
1945
1978
|
* - Items that trigger actions (with design "Action") should not be selectable.
|
|
1946
1979
|
*
|
|
1947
1980
|
* @since 1.116
|
|
@@ -1960,8 +1993,12 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1960
1993
|
* Specifies the browsing context where the linked content will open.
|
|
1961
1994
|
*
|
|
1962
1995
|
* Options are the standard values for window.open() supported by browsers: `_self`, `_top`, `_blank`, `_parent`,
|
|
1963
|
-
* `_search`. Alternatively, a frame name can be entered.
|
|
1964
|
-
*
|
|
1996
|
+
* `_search`. Alternatively, a frame name can be entered.
|
|
1997
|
+
*
|
|
1998
|
+
* **Guidelines:**
|
|
1999
|
+
* - Use only when `href` property is set.
|
|
2000
|
+
* - Items that have a set href and target set to `_blank` should not have children Items that have
|
|
2001
|
+
* a set href, should not use target for internal navigation/li>
|
|
1965
2002
|
*/
|
|
1966
2003
|
target?: string | PropertyBindingInfo;
|
|
1967
2004
|
|
|
@@ -2170,17 +2207,20 @@ declare module "sap/tnt/NavigationListItemBase" {
|
|
|
2170
2207
|
/**
|
|
2171
2208
|
* Fires event {@link #event:press press} to attached listeners.
|
|
2172
2209
|
*
|
|
2210
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
2211
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
2212
|
+
*
|
|
2173
2213
|
* @since 1.133
|
|
2174
2214
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2175
2215
|
*
|
|
2176
|
-
* @returns
|
|
2216
|
+
* @returns Whether or not to prevent the default action
|
|
2177
2217
|
*/
|
|
2178
2218
|
firePress(
|
|
2179
2219
|
/**
|
|
2180
2220
|
* Parameters to pass along with the event
|
|
2181
2221
|
*/
|
|
2182
2222
|
mParameters?: NavigationListItemBase$PressEventParameters
|
|
2183
|
-
):
|
|
2223
|
+
): boolean;
|
|
2184
2224
|
/**
|
|
2185
2225
|
* Gets current value of property {@link #getExpanded expanded}.
|
|
2186
2226
|
*
|
|
@@ -2320,6 +2360,28 @@ declare module "sap/tnt/NavigationListItemBase" {
|
|
|
2320
2360
|
* The pressed item.
|
|
2321
2361
|
*/
|
|
2322
2362
|
item?: Item;
|
|
2363
|
+
|
|
2364
|
+
/**
|
|
2365
|
+
* Indicates whether the CTRL key was pressed when the link was selected.
|
|
2366
|
+
*/
|
|
2367
|
+
ctrlKey?: boolean;
|
|
2368
|
+
|
|
2369
|
+
/**
|
|
2370
|
+
* Indicates whether the Shift key was pressed when the link was selected.
|
|
2371
|
+
*/
|
|
2372
|
+
shiftKey?: boolean;
|
|
2373
|
+
|
|
2374
|
+
/**
|
|
2375
|
+
* Indicates whether the Alt key was pressed when the link was selected.
|
|
2376
|
+
*/
|
|
2377
|
+
altKey?: boolean;
|
|
2378
|
+
|
|
2379
|
+
/**
|
|
2380
|
+
* Indicates whether the "meta" key was pressed when the link was selected.
|
|
2381
|
+
*
|
|
2382
|
+
* On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
|
|
2383
|
+
*/
|
|
2384
|
+
metaKey?: boolean;
|
|
2323
2385
|
}
|
|
2324
2386
|
|
|
2325
2387
|
/**
|
|
@@ -2598,16 +2660,19 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2598
2660
|
/**
|
|
2599
2661
|
* Fires event {@link #event:itemPress itemPress} to attached listeners.
|
|
2600
2662
|
*
|
|
2663
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
2664
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
2665
|
+
*
|
|
2601
2666
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2602
2667
|
*
|
|
2603
|
-
* @returns
|
|
2668
|
+
* @returns Whether or not to prevent the default action
|
|
2604
2669
|
*/
|
|
2605
2670
|
fireItemPress(
|
|
2606
2671
|
/**
|
|
2607
2672
|
* Parameters to pass along with the event
|
|
2608
2673
|
*/
|
|
2609
2674
|
mParameters?: SideNavigation$ItemPressEventParameters
|
|
2610
|
-
):
|
|
2675
|
+
): boolean;
|
|
2611
2676
|
/**
|
|
2612
2677
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
2613
2678
|
*
|
|
@@ -2936,6 +3001,28 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2936
3001
|
* The pressed item.
|
|
2937
3002
|
*/
|
|
2938
3003
|
item?: Item;
|
|
3004
|
+
|
|
3005
|
+
/**
|
|
3006
|
+
* Indicates whether the CTRL key was pressed when the link was selected.
|
|
3007
|
+
*/
|
|
3008
|
+
ctrlKey?: boolean;
|
|
3009
|
+
|
|
3010
|
+
/**
|
|
3011
|
+
* Indicates whether the Shift key was pressed when the link was selected.
|
|
3012
|
+
*/
|
|
3013
|
+
shiftKey?: boolean;
|
|
3014
|
+
|
|
3015
|
+
/**
|
|
3016
|
+
* Indicates whether the Alt key was pressed when the link was selected.
|
|
3017
|
+
*/
|
|
3018
|
+
altKey?: boolean;
|
|
3019
|
+
|
|
3020
|
+
/**
|
|
3021
|
+
* Indicates whether the "meta" key was pressed when the link was selected.
|
|
3022
|
+
*
|
|
3023
|
+
* On Macintosh keyboards, this is the command key (⌘). On Windows keyboards, this is the windows key (⊞).
|
|
3024
|
+
*/
|
|
3025
|
+
metaKey?: boolean;
|
|
2939
3026
|
}
|
|
2940
3027
|
|
|
2941
3028
|
/**
|
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
|
/**
|
|
@@ -29717,8 +29717,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29717
29717
|
*/
|
|
29718
29718
|
groupingBaseSize?: int;
|
|
29719
29719
|
/**
|
|
29720
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
29721
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
29720
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
29722
29721
|
*/
|
|
29723
29722
|
groupingEnabled?: boolean;
|
|
29724
29723
|
/**
|
|
@@ -29727,8 +29726,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29727
29726
|
*/
|
|
29728
29727
|
groupingSeparator?: string;
|
|
29729
29728
|
/**
|
|
29730
|
-
* defines the grouping size in digits; the default is `3`.
|
|
29731
|
-
* non-positive value, grouping will be disabled entirely.
|
|
29729
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
29732
29730
|
*/
|
|
29733
29731
|
groupingSize?: int;
|
|
29734
29732
|
/**
|
|
@@ -29898,8 +29896,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29898
29896
|
*/
|
|
29899
29897
|
groupingBaseSize?: int;
|
|
29900
29898
|
/**
|
|
29901
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
29902
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
29899
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
29903
29900
|
*/
|
|
29904
29901
|
groupingEnabled?: boolean;
|
|
29905
29902
|
/**
|
|
@@ -29908,8 +29905,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
29908
29905
|
*/
|
|
29909
29906
|
groupingSeparator?: string;
|
|
29910
29907
|
/**
|
|
29911
|
-
* defines the grouping size in digits; the default is `3`.
|
|
29912
|
-
* non-positive value, grouping will be disabled entirely.
|
|
29908
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
29913
29909
|
*/
|
|
29914
29910
|
groupingSize?: int;
|
|
29915
29911
|
/**
|
|
@@ -30063,8 +30059,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30063
30059
|
*/
|
|
30064
30060
|
groupingBaseSize?: int;
|
|
30065
30061
|
/**
|
|
30066
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30067
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
30062
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
30068
30063
|
*/
|
|
30069
30064
|
groupingEnabled?: boolean;
|
|
30070
30065
|
/**
|
|
@@ -30073,8 +30068,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30073
30068
|
*/
|
|
30074
30069
|
groupingSeparator?: string;
|
|
30075
30070
|
/**
|
|
30076
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30077
|
-
* non-positive value, grouping will be disabled entirely.
|
|
30071
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
30078
30072
|
*/
|
|
30079
30073
|
groupingSize?: int;
|
|
30080
30074
|
/**
|
|
@@ -30223,8 +30217,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30223
30217
|
*/
|
|
30224
30218
|
groupingBaseSize?: int;
|
|
30225
30219
|
/**
|
|
30226
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30227
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
30220
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
30228
30221
|
*/
|
|
30229
30222
|
groupingEnabled?: boolean;
|
|
30230
30223
|
/**
|
|
@@ -30233,8 +30226,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30233
30226
|
*/
|
|
30234
30227
|
groupingSeparator?: string;
|
|
30235
30228
|
/**
|
|
30236
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30237
|
-
* non-positive value, grouping will be disabled entirely.
|
|
30229
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
30238
30230
|
*/
|
|
30239
30231
|
groupingSize?: int;
|
|
30240
30232
|
/**
|
|
@@ -30395,8 +30387,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30395
30387
|
*/
|
|
30396
30388
|
groupingBaseSize?: int;
|
|
30397
30389
|
/**
|
|
30398
|
-
* defines whether grouping is enabled (grouping separators are shown)
|
|
30399
|
-
* the `groupingSize` format option is set to a non-positive value.
|
|
30390
|
+
* defines whether grouping is enabled (grouping separators are shown)
|
|
30400
30391
|
*/
|
|
30401
30392
|
groupingEnabled?: boolean;
|
|
30402
30393
|
/**
|
|
@@ -30405,8 +30396,7 @@ declare module "sap/ui/core/format/NumberFormat" {
|
|
|
30405
30396
|
*/
|
|
30406
30397
|
groupingSeparator?: string;
|
|
30407
30398
|
/**
|
|
30408
|
-
* defines the grouping size in digits; the default is `3`.
|
|
30409
|
-
* non-positive value, grouping will be disabled entirely.
|
|
30399
|
+
* defines the grouping size in digits; the default is `3`. It must be a positive number.
|
|
30410
30400
|
*/
|
|
30411
30401
|
groupingSize?: int;
|
|
30412
30402
|
/**
|
|
@@ -42680,7 +42670,10 @@ declare module "sap/ui/core/routing/Target" {
|
|
|
42680
42670
|
oListener?: object
|
|
42681
42671
|
): this;
|
|
42682
42672
|
/**
|
|
42683
|
-
* Creates a view and puts it in an aggregation of a control that has been defined in the {@link
|
|
42673
|
+
* Creates a view and puts it in an aggregation of a control that has been defined in the {@link #constructor}.
|
|
42674
|
+
*
|
|
42675
|
+
* This method can be used to display a target without changing the browser hash. If the browser hash should
|
|
42676
|
+
* be changed, the {@link sap.ui.core.routing.Router#navTo} method should be used instead
|
|
42684
42677
|
*
|
|
42685
42678
|
*
|
|
42686
42679
|
* @returns resolves with {name: *, view: *, control: *} if the target can be successfully displayed otherwise
|
|
@@ -44600,6 +44593,27 @@ declare module "sap/ui/core/routing/RouterHashChanger" {
|
|
|
44600
44593
|
* @returns Metadata object describing this class
|
|
44601
44594
|
*/
|
|
44602
44595
|
static getMetadata(): Metadata;
|
|
44596
|
+
/**
|
|
44597
|
+
* Returns a managed instance of {@link sap.ui.core.routing.RouterHashChanger} associated with the current
|
|
44598
|
+
* instance.
|
|
44599
|
+
*
|
|
44600
|
+
* This sub-instance handles a specific part of the URL hash. When the sub-instance modifies the hash, it
|
|
44601
|
+
* notifies the parent instance, which then updates the browser’s hash accordingly. Likewise, when the relevant
|
|
44602
|
+
* part of the hash changes externally, the parent instance notifies the sub-instance.
|
|
44603
|
+
*
|
|
44604
|
+
* The provided `sKey` is used as an identifier for caching the sub-instance. If this method is called again
|
|
44605
|
+
* with the same key, the previously created instance is returned.
|
|
44606
|
+
*
|
|
44607
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
44608
|
+
*
|
|
44609
|
+
* @returns The corresponding sub RouterHashChanger instance.
|
|
44610
|
+
*/
|
|
44611
|
+
createSubHashChanger(
|
|
44612
|
+
/**
|
|
44613
|
+
* A unique key used as the prefix for the sub RouterHashChanger.
|
|
44614
|
+
*/
|
|
44615
|
+
sKey: string
|
|
44616
|
+
): RouterHashChanger;
|
|
44603
44617
|
/**
|
|
44604
44618
|
* Save the given hash and potentially fires a "hashChanged" event; may be extended to modify the hash before
|
|
44605
44619
|
* firing the event.
|
|
@@ -44716,10 +44730,6 @@ declare module "sap/ui/core/routing/Targets" {
|
|
|
44716
44730
|
default as Target,
|
|
44717
44731
|
} from "sap/ui/core/routing/Target";
|
|
44718
44732
|
|
|
44719
|
-
import View from "sap/ui/core/mvc/View";
|
|
44720
|
-
|
|
44721
|
-
import Control from "sap/ui/core/Control";
|
|
44722
|
-
|
|
44723
44733
|
import Metadata from "sap/ui/base/Metadata";
|
|
44724
44734
|
|
|
44725
44735
|
import Event from "sap/ui/base/Event";
|
|
@@ -45040,37 +45050,29 @@ declare module "sap/ui/core/routing/Targets" {
|
|
|
45040
45050
|
* Creates a view and puts it in an aggregation of the specified control.
|
|
45041
45051
|
*
|
|
45042
45052
|
*
|
|
45043
|
-
* @returns
|
|
45053
|
+
* @returns resolving with {{name: *, view: *, control: *}|undefined} for every vTargets, object for single,
|
|
45054
|
+
* array for multiple
|
|
45044
45055
|
*/
|
|
45045
45056
|
display(
|
|
45046
45057
|
/**
|
|
45047
|
-
*
|
|
45048
|
-
* of
|
|
45058
|
+
* the key of the target as specified in the {@link #constructor}. To display multiple targets you may also
|
|
45059
|
+
* pass an array of keys. If the target(s) represents a sap.ui.core.UIComponent, a prefix for its Router
|
|
45060
|
+
* is needed. You can set this parameter with an object which has the 'name' property set with the key of
|
|
45061
|
+
* the target and the 'prefix' property set with the prefix for the UIComponent's router. To display multiple
|
|
45062
|
+
* component targets, you man also pass an array of objects.
|
|
45049
45063
|
*/
|
|
45050
|
-
vTargets: string | string[] |
|
|
45064
|
+
vTargets: string | string[] | object | object[],
|
|
45051
45065
|
/**
|
|
45052
45066
|
* an object that will be passed to the display event in the data property. If the target has parents, the
|
|
45053
45067
|
* data will also be passed to them.
|
|
45054
45068
|
*/
|
|
45055
|
-
|
|
45069
|
+
vData?: object,
|
|
45056
45070
|
/**
|
|
45057
45071
|
* the name of the target from which the title option is taken for firing the {@link sap.ui.core.routing.Targets#event:titleChanged titleChanged }
|
|
45058
45072
|
* event
|
|
45059
45073
|
*/
|
|
45060
45074
|
sTitleTarget?: string
|
|
45061
|
-
):
|
|
45062
|
-
| this
|
|
45063
|
-
| Promise<
|
|
45064
|
-
Array<{
|
|
45065
|
-
name: string;
|
|
45066
|
-
|
|
45067
|
-
view: View;
|
|
45068
|
-
|
|
45069
|
-
control: Control;
|
|
45070
|
-
|
|
45071
|
-
targetInfo: TargetInfo;
|
|
45072
|
-
}>
|
|
45073
|
-
>;
|
|
45075
|
+
): Promise<any>;
|
|
45074
45076
|
/**
|
|
45075
45077
|
* Fires event {@link #event:created created} to attached listeners.
|
|
45076
45078
|
*
|
|
@@ -51751,8 +51753,7 @@ declare module "sap/ui/core/webc/WebComponent" {
|
|
|
51751
51753
|
* properties, the aggregations and the events. It also ensures to render the control and put the aggregated
|
|
51752
51754
|
* controls in the dedicated slots of the Web Component.
|
|
51753
51755
|
*
|
|
51754
|
-
* @since 1.
|
|
51755
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
51756
|
+
* @since 1.138.0
|
|
51756
51757
|
*/
|
|
51757
51758
|
export default class WebComponent extends Control {
|
|
51758
51759
|
/**
|
|
@@ -51899,8 +51900,6 @@ declare module "sap/ui/core/webc/WebComponent" {
|
|
|
51899
51900
|
|
|
51900
51901
|
/**
|
|
51901
51902
|
* Describes the settings that can be provided to the WebComponent constructor.
|
|
51902
|
-
*
|
|
51903
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
51904
51903
|
*/
|
|
51905
51904
|
export interface $WebComponentSettings extends $ControlSettings {}
|
|
51906
51905
|
|
|
@@ -52000,8 +51999,7 @@ declare module "sap/ui/core/webc/WebComponentMetadata" {
|
|
|
52000
51999
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
52001
52000
|
|
|
52002
52001
|
/**
|
|
52003
|
-
* @since 1.
|
|
52004
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
52002
|
+
* @since 1.138.0
|
|
52005
52003
|
*/
|
|
52006
52004
|
export default class WebComponentMetadata extends ElementMetadata {
|
|
52007
52005
|
/**
|
|
@@ -53835,7 +53833,7 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
53835
53833
|
* to OData requests. If a binding count mode is set to `Request` or `Both`, a warning is logged to remind
|
|
53836
53834
|
* the application that the OData requests generated by the AnalyticalBinding include a $inlinecount.
|
|
53837
53835
|
*
|
|
53838
|
-
* @
|
|
53836
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
53839
53837
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
53840
53838
|
*/
|
|
53841
53839
|
export default class AnalyticalBinding extends TreeBinding {
|
|
@@ -54431,6 +54429,10 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
54431
54429
|
}
|
|
54432
54430
|
|
|
54433
54431
|
declare module "sap/ui/model/analytics/AnalyticalTreeBindingAdapter" {
|
|
54432
|
+
/**
|
|
54433
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
54434
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
54435
|
+
*/
|
|
54434
54436
|
export default class AnalyticalTreeBindingAdapter {
|
|
54435
54437
|
/**
|
|
54436
54438
|
* Adapter for TreeBindings to add the ListBinding functionality and use the tree structure in list based
|
|
@@ -54579,7 +54581,7 @@ declare module "sap/ui/model/analytics/odata4analytics" {
|
|
|
54579
54581
|
*
|
|
54580
54582
|
* Lazy initialization of attributes will cause unexpected values when you access object attributes directly.
|
|
54581
54583
|
*
|
|
54582
|
-
* @
|
|
54584
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
54583
54585
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
54584
54586
|
*/
|
|
54585
54587
|
interface odata4analytics {
|
|
@@ -54606,6 +54608,9 @@ declare module "sap/ui/model/analytics/odata4analytics" {
|
|
|
54606
54608
|
): void;
|
|
54607
54609
|
}
|
|
54608
54610
|
const odata4analytics: odata4analytics;
|
|
54611
|
+
/**
|
|
54612
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
54613
|
+
*/
|
|
54609
54614
|
export default odata4analytics;
|
|
54610
54615
|
|
|
54611
54616
|
/**
|
|
@@ -61390,7 +61395,7 @@ declare module "sap/ui/model/odata/ODataTreeBindingAdapter" {
|
|
|
61390
61395
|
* controls. Only usable with the sap.ui.table.TreeTable control. The functions defined here are only available
|
|
61391
61396
|
* when you are using a TreeTable and an ODataModel.
|
|
61392
61397
|
*
|
|
61393
|
-
* @
|
|
61398
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 hierarchy functionality, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1/section_RCH Recursive Hierarchy}
|
|
61394
61399
|
*/
|
|
61395
61400
|
export default function ODataTreeBindingAdapter(): void;
|
|
61396
61401
|
}
|
|
@@ -74285,8 +74290,6 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
74285
74290
|
|
|
74286
74291
|
/**
|
|
74287
74292
|
* Parameters of the ODataListBinding#separateReceived event.
|
|
74288
|
-
*
|
|
74289
|
-
* @experimental As of version 1.131.0.
|
|
74290
74293
|
*/
|
|
74291
74294
|
export interface ODataListBinding$SeparateReceivedEventParameters {
|
|
74292
74295
|
/**
|
|
@@ -74305,15 +74308,13 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
74305
74308
|
length?: number;
|
|
74306
74309
|
|
|
74307
74310
|
/**
|
|
74308
|
-
*
|
|
74311
|
+
* An array of UI5 messages if the request failed; `undefined` otherwise
|
|
74309
74312
|
*/
|
|
74310
|
-
|
|
74313
|
+
messagesOnError?: Message[];
|
|
74311
74314
|
}
|
|
74312
74315
|
|
|
74313
74316
|
/**
|
|
74314
74317
|
* Event object of the ODataListBinding#separateReceived event.
|
|
74315
|
-
*
|
|
74316
|
-
* @experimental As of version 1.131.0.
|
|
74317
74318
|
*/
|
|
74318
74319
|
export type ODataListBinding$SeparateReceivedEvent = Event<
|
|
74319
74320
|
ODataListBinding$SeparateReceivedEventParameters,
|
|
@@ -74914,7 +74915,9 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
74914
74915
|
* is not an OData simple identifier, it can be used as a placeholder for one. In this way, "/EMPLOYEES/"
|
|
74915
74916
|
* addresses the same entity type as "/EMPLOYEES/$Type/". That entity type in turn is a map of all its OData
|
|
74916
74917
|
* children (that is, structural and navigation properties) and determines the set of possible child names
|
|
74917
|
-
* that might be used after the trailing slash.
|
|
74918
|
+
* that might be used after the trailing slash. Since 1.137.0, open (complex or entity) types are supported
|
|
74919
|
+
* as follows: A simple identifier that does not refer to an OData child is valid and treated as a dynamic
|
|
74920
|
+
* property of type "Edm.Untyped".
|
|
74918
74921
|
*
|
|
74919
74922
|
* "$" can be used as the last segment to continue a path and thus force scope lookup, but no OData simple
|
|
74920
74923
|
* identifier preparations. In this way, it serves as a placeholder for a technical property. The path must
|
|
@@ -75581,12 +75584,12 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
75581
75584
|
*/
|
|
75582
75585
|
$$ownRequest?: boolean;
|
|
75583
75586
|
/**
|
|
75584
|
-
* An array of navigation property names which are omitted from the main list request
|
|
75585
|
-
*
|
|
75586
|
-
*
|
|
75587
|
-
*
|
|
75588
|
-
*
|
|
75589
|
-
*
|
|
75587
|
+
* An array of navigation property names which are omitted from the main list request (since 1.137.0). Instead,
|
|
75588
|
+
* each of them is loaded in a separate request. This results in the main list becoming available faster,
|
|
75589
|
+
* while the separate properties are merged as soon as the data is received. Note that the separate properties
|
|
75590
|
+
* must be single valued and part of the '$expand' system query option, either automatically via the "autoExpandSelect"
|
|
75591
|
+
* model parameter (see {@link #constructor}) or manually. The `$$separate` parameter must not be combined
|
|
75592
|
+
* with `$$aggregation`.
|
|
75590
75593
|
*/
|
|
75591
75594
|
$$separate?: string[];
|
|
75592
75595
|
/**
|
|
@@ -84536,11 +84539,11 @@ declare module "sap/ui/test/Opa5" {
|
|
|
84536
84539
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
84537
84540
|
* `waitFor` statements.
|
|
84538
84541
|
*/
|
|
84539
|
-
actions?: Record<string,
|
|
84542
|
+
actions?: Record<string, Function> | Function;
|
|
84540
84543
|
/**
|
|
84541
84544
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
84542
84545
|
*/
|
|
84543
|
-
assertions?: Record<string,
|
|
84546
|
+
assertions?: Record<string, Function> | Function;
|
|
84544
84547
|
};
|
|
84545
84548
|
}
|
|
84546
84549
|
|
|
@@ -87837,7 +87840,7 @@ declare namespace sap {
|
|
|
87837
87840
|
/**
|
|
87838
87841
|
* If called on an instance of an (v1/v2) ODataModel it will enrich it with analytics capabilities.
|
|
87839
87842
|
*
|
|
87840
|
-
* @
|
|
87843
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
87841
87844
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
87842
87845
|
*/
|
|
87843
87846
|
function ODataModelAdapter(): void;
|
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 module "sap/ui/fl/library" {}
|
|
4
4
|
|
|
@@ -1647,8 +1647,6 @@ declare namespace sap {
|
|
|
1647
1647
|
|
|
1648
1648
|
"sap/ui/fl/changeHandler/BaseRename": undefined;
|
|
1649
1649
|
|
|
1650
|
-
"sap/ui/fl/ChangePersistenceFactory": undefined;
|
|
1651
|
-
|
|
1652
1650
|
"sap/ui/fl/descriptorRelated/api/DescriptorChange": undefined;
|
|
1653
1651
|
|
|
1654
1652
|
"sap/ui/fl/descriptorRelated/api/DescriptorChangeFactory": undefined;
|
|
@@ -1657,8 +1655,6 @@ declare namespace sap {
|
|
|
1657
1655
|
|
|
1658
1656
|
"sap/ui/fl/descriptorRelated/api/DescriptorVariantFactory": undefined;
|
|
1659
1657
|
|
|
1660
|
-
"sap/ui/fl/FlexControllerFactory": undefined;
|
|
1661
|
-
|
|
1662
1658
|
"sap/ui/fl/initial/_internal/connectors/BackendConnector": undefined;
|
|
1663
1659
|
|
|
1664
1660
|
"sap/ui/fl/initial/_internal/connectors/BtpServiceConnector": undefined;
|
|
@@ -1675,6 +1671,8 @@ declare namespace sap {
|
|
|
1675
1671
|
|
|
1676
1672
|
"sap/ui/fl/initial/_internal/connectors/Utils": undefined;
|
|
1677
1673
|
|
|
1674
|
+
"sap/ui/fl/initial/_internal/Settings": undefined;
|
|
1675
|
+
|
|
1678
1676
|
"sap/ui/fl/initial/_internal/Storage": undefined;
|
|
1679
1677
|
|
|
1680
1678
|
"sap/ui/fl/initial/_internal/StorageUtils": undefined;
|
|
@@ -1687,8 +1685,6 @@ declare namespace sap {
|
|
|
1687
1685
|
|
|
1688
1686
|
"sap/ui/fl/library": undefined;
|
|
1689
1687
|
|
|
1690
|
-
"sap/ui/fl/registry/Settings": undefined;
|
|
1691
|
-
|
|
1692
1688
|
"sap/ui/fl/support/_internal/getAllUIChanges": undefined;
|
|
1693
1689
|
|
|
1694
1690
|
"sap/ui/fl/support/_internal/getChangeDependencies": undefined;
|