@openui5/types 1.136.1 → 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 +1261 -566
- 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 +62 -49
- 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
|
/**
|
|
@@ -42670,7 +42670,10 @@ declare module "sap/ui/core/routing/Target" {
|
|
|
42670
42670
|
oListener?: object
|
|
42671
42671
|
): this;
|
|
42672
42672
|
/**
|
|
42673
|
-
* 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
|
|
42674
42677
|
*
|
|
42675
42678
|
*
|
|
42676
42679
|
* @returns resolves with {name: *, view: *, control: *} if the target can be successfully displayed otherwise
|
|
@@ -44590,6 +44593,27 @@ declare module "sap/ui/core/routing/RouterHashChanger" {
|
|
|
44590
44593
|
* @returns Metadata object describing this class
|
|
44591
44594
|
*/
|
|
44592
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;
|
|
44593
44617
|
/**
|
|
44594
44618
|
* Save the given hash and potentially fires a "hashChanged" event; may be extended to modify the hash before
|
|
44595
44619
|
* firing the event.
|
|
@@ -44706,10 +44730,6 @@ declare module "sap/ui/core/routing/Targets" {
|
|
|
44706
44730
|
default as Target,
|
|
44707
44731
|
} from "sap/ui/core/routing/Target";
|
|
44708
44732
|
|
|
44709
|
-
import View from "sap/ui/core/mvc/View";
|
|
44710
|
-
|
|
44711
|
-
import Control from "sap/ui/core/Control";
|
|
44712
|
-
|
|
44713
44733
|
import Metadata from "sap/ui/base/Metadata";
|
|
44714
44734
|
|
|
44715
44735
|
import Event from "sap/ui/base/Event";
|
|
@@ -45030,37 +45050,29 @@ declare module "sap/ui/core/routing/Targets" {
|
|
|
45030
45050
|
* Creates a view and puts it in an aggregation of the specified control.
|
|
45031
45051
|
*
|
|
45032
45052
|
*
|
|
45033
|
-
* @returns
|
|
45053
|
+
* @returns resolving with {{name: *, view: *, control: *}|undefined} for every vTargets, object for single,
|
|
45054
|
+
* array for multiple
|
|
45034
45055
|
*/
|
|
45035
45056
|
display(
|
|
45036
45057
|
/**
|
|
45037
|
-
*
|
|
45038
|
-
* 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.
|
|
45039
45063
|
*/
|
|
45040
|
-
vTargets: string | string[] |
|
|
45064
|
+
vTargets: string | string[] | object | object[],
|
|
45041
45065
|
/**
|
|
45042
45066
|
* an object that will be passed to the display event in the data property. If the target has parents, the
|
|
45043
45067
|
* data will also be passed to them.
|
|
45044
45068
|
*/
|
|
45045
|
-
|
|
45069
|
+
vData?: object,
|
|
45046
45070
|
/**
|
|
45047
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 }
|
|
45048
45072
|
* event
|
|
45049
45073
|
*/
|
|
45050
45074
|
sTitleTarget?: string
|
|
45051
|
-
):
|
|
45052
|
-
| this
|
|
45053
|
-
| Promise<
|
|
45054
|
-
Array<{
|
|
45055
|
-
name: string;
|
|
45056
|
-
|
|
45057
|
-
view: View;
|
|
45058
|
-
|
|
45059
|
-
control: Control;
|
|
45060
|
-
|
|
45061
|
-
targetInfo: TargetInfo;
|
|
45062
|
-
}>
|
|
45063
|
-
>;
|
|
45075
|
+
): Promise<any>;
|
|
45064
45076
|
/**
|
|
45065
45077
|
* Fires event {@link #event:created created} to attached listeners.
|
|
45066
45078
|
*
|
|
@@ -51741,8 +51753,7 @@ declare module "sap/ui/core/webc/WebComponent" {
|
|
|
51741
51753
|
* properties, the aggregations and the events. It also ensures to render the control and put the aggregated
|
|
51742
51754
|
* controls in the dedicated slots of the Web Component.
|
|
51743
51755
|
*
|
|
51744
|
-
* @since 1.
|
|
51745
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
51756
|
+
* @since 1.138.0
|
|
51746
51757
|
*/
|
|
51747
51758
|
export default class WebComponent extends Control {
|
|
51748
51759
|
/**
|
|
@@ -51889,8 +51900,6 @@ declare module "sap/ui/core/webc/WebComponent" {
|
|
|
51889
51900
|
|
|
51890
51901
|
/**
|
|
51891
51902
|
* Describes the settings that can be provided to the WebComponent constructor.
|
|
51892
|
-
*
|
|
51893
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
51894
51903
|
*/
|
|
51895
51904
|
export interface $WebComponentSettings extends $ControlSettings {}
|
|
51896
51905
|
|
|
@@ -51990,8 +51999,7 @@ declare module "sap/ui/core/webc/WebComponentMetadata" {
|
|
|
51990
51999
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
51991
52000
|
|
|
51992
52001
|
/**
|
|
51993
|
-
* @since 1.
|
|
51994
|
-
* @experimental As of version 1.118.0. The API might change. It is not intended for productive usage yet!
|
|
52002
|
+
* @since 1.138.0
|
|
51995
52003
|
*/
|
|
51996
52004
|
export default class WebComponentMetadata extends ElementMetadata {
|
|
51997
52005
|
/**
|
|
@@ -53825,7 +53833,7 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
53825
53833
|
* to OData requests. If a binding count mode is set to `Request` or `Both`, a warning is logged to remind
|
|
53826
53834
|
* the application that the OData requests generated by the AnalyticalBinding include a $inlinecount.
|
|
53827
53835
|
*
|
|
53828
|
-
* @
|
|
53836
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
53829
53837
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
53830
53838
|
*/
|
|
53831
53839
|
export default class AnalyticalBinding extends TreeBinding {
|
|
@@ -54421,6 +54429,10 @@ declare module "sap/ui/model/analytics/AnalyticalBinding" {
|
|
|
54421
54429
|
}
|
|
54422
54430
|
|
|
54423
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
|
+
*/
|
|
54424
54436
|
export default class AnalyticalTreeBindingAdapter {
|
|
54425
54437
|
/**
|
|
54426
54438
|
* Adapter for TreeBindings to add the ListBinding functionality and use the tree structure in list based
|
|
@@ -54569,7 +54581,7 @@ declare module "sap/ui/model/analytics/odata4analytics" {
|
|
|
54569
54581
|
*
|
|
54570
54582
|
* Lazy initialization of attributes will cause unexpected values when you access object attributes directly.
|
|
54571
54583
|
*
|
|
54572
|
-
* @
|
|
54584
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
54573
54585
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
54574
54586
|
*/
|
|
54575
54587
|
interface odata4analytics {
|
|
@@ -54596,6 +54608,9 @@ declare module "sap/ui/model/analytics/odata4analytics" {
|
|
|
54596
54608
|
): void;
|
|
54597
54609
|
}
|
|
54598
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
|
+
*/
|
|
54599
54614
|
export default odata4analytics;
|
|
54600
54615
|
|
|
54601
54616
|
/**
|
|
@@ -61380,7 +61395,7 @@ declare module "sap/ui/model/odata/ODataTreeBindingAdapter" {
|
|
|
61380
61395
|
* controls. Only usable with the sap.ui.table.TreeTable control. The functions defined here are only available
|
|
61381
61396
|
* when you are using a TreeTable and an ODataModel.
|
|
61382
61397
|
*
|
|
61383
|
-
* @
|
|
61398
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 hierarchy functionality, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1/section_RCH Recursive Hierarchy}
|
|
61384
61399
|
*/
|
|
61385
61400
|
export default function ODataTreeBindingAdapter(): void;
|
|
61386
61401
|
}
|
|
@@ -74275,8 +74290,6 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
74275
74290
|
|
|
74276
74291
|
/**
|
|
74277
74292
|
* Parameters of the ODataListBinding#separateReceived event.
|
|
74278
|
-
*
|
|
74279
|
-
* @experimental As of version 1.131.0.
|
|
74280
74293
|
*/
|
|
74281
74294
|
export interface ODataListBinding$SeparateReceivedEventParameters {
|
|
74282
74295
|
/**
|
|
@@ -74295,15 +74308,13 @@ declare module "sap/ui/model/odata/v4/ODataListBinding" {
|
|
|
74295
74308
|
length?: number;
|
|
74296
74309
|
|
|
74297
74310
|
/**
|
|
74298
|
-
*
|
|
74311
|
+
* An array of UI5 messages if the request failed; `undefined` otherwise
|
|
74299
74312
|
*/
|
|
74300
|
-
|
|
74313
|
+
messagesOnError?: Message[];
|
|
74301
74314
|
}
|
|
74302
74315
|
|
|
74303
74316
|
/**
|
|
74304
74317
|
* Event object of the ODataListBinding#separateReceived event.
|
|
74305
|
-
*
|
|
74306
|
-
* @experimental As of version 1.131.0.
|
|
74307
74318
|
*/
|
|
74308
74319
|
export type ODataListBinding$SeparateReceivedEvent = Event<
|
|
74309
74320
|
ODataListBinding$SeparateReceivedEventParameters,
|
|
@@ -74904,7 +74915,9 @@ declare module "sap/ui/model/odata/v4/ODataMetaModel" {
|
|
|
74904
74915
|
* is not an OData simple identifier, it can be used as a placeholder for one. In this way, "/EMPLOYEES/"
|
|
74905
74916
|
* addresses the same entity type as "/EMPLOYEES/$Type/". That entity type in turn is a map of all its OData
|
|
74906
74917
|
* children (that is, structural and navigation properties) and determines the set of possible child names
|
|
74907
|
-
* 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".
|
|
74908
74921
|
*
|
|
74909
74922
|
* "$" can be used as the last segment to continue a path and thus force scope lookup, but no OData simple
|
|
74910
74923
|
* identifier preparations. In this way, it serves as a placeholder for a technical property. The path must
|
|
@@ -75571,12 +75584,12 @@ declare module "sap/ui/model/odata/v4/ODataModel" {
|
|
|
75571
75584
|
*/
|
|
75572
75585
|
$$ownRequest?: boolean;
|
|
75573
75586
|
/**
|
|
75574
|
-
* An array of navigation property names which are omitted from the main list request
|
|
75575
|
-
*
|
|
75576
|
-
*
|
|
75577
|
-
*
|
|
75578
|
-
*
|
|
75579
|
-
*
|
|
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`.
|
|
75580
75593
|
*/
|
|
75581
75594
|
$$separate?: string[];
|
|
75582
75595
|
/**
|
|
@@ -84526,11 +84539,11 @@ declare module "sap/ui/test/Opa5" {
|
|
|
84526
84539
|
* whether a function is used as arrangement or action. Each function typically contains one or multiple
|
|
84527
84540
|
* `waitFor` statements.
|
|
84528
84541
|
*/
|
|
84529
|
-
actions?: Record<string,
|
|
84542
|
+
actions?: Record<string, Function> | Function;
|
|
84530
84543
|
/**
|
|
84531
84544
|
* A map or a class of functions that can be used as assertions in Opa tests.
|
|
84532
84545
|
*/
|
|
84533
|
-
assertions?: Record<string,
|
|
84546
|
+
assertions?: Record<string, Function> | Function;
|
|
84534
84547
|
};
|
|
84535
84548
|
}
|
|
84536
84549
|
|
|
@@ -87827,7 +87840,7 @@ declare namespace sap {
|
|
|
87827
87840
|
/**
|
|
87828
87841
|
* If called on an instance of an (v1/v2) ODataModel it will enrich it with analytics capabilities.
|
|
87829
87842
|
*
|
|
87830
|
-
* @
|
|
87843
|
+
* @deprecated As of version 1.138.0. will be replaced by OData V4 data aggregation, see {@link topic:7d914317c0b64c23824bf932cc8a4ae1 Extension for Data Aggregation}
|
|
87831
87844
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
87832
87845
|
*/
|
|
87833
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;
|