@sapui5/types 1.120.0 → 1.120.2
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.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +6 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.m.d.ts +27 -9
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +41 -2
- package/types/sap.rules.ui.d.ts +59 -1
- package/types/sap.suite.ui.generic.template.d.ts +20 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +9 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +2 -2
- package/types/sap.ui.core.d.ts +440 -128
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +5 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +19 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +25 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/integration/library" {
|
|
4
4
|
import { URI } from "sap/ui/core/library";
|
|
@@ -3737,6 +3737,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3737
3737
|
oListener?: object
|
|
3738
3738
|
): this;
|
|
3739
3739
|
/**
|
|
3740
|
+
* @deprecated (since 1.120.0)
|
|
3740
3741
|
* @experimental (since 1.97)
|
|
3741
3742
|
*
|
|
3742
3743
|
* This function is called when a CSRF token has expired.
|
|
@@ -3750,6 +3751,7 @@ declare module "sap/ui/integration/Host" {
|
|
|
3750
3751
|
}
|
|
3751
3752
|
): void;
|
|
3752
3753
|
/**
|
|
3754
|
+
* @deprecated (since 1.120.0)
|
|
3753
3755
|
* @experimental (since 1.97)
|
|
3754
3756
|
*
|
|
3755
3757
|
* This function is called when a CSRF token is fetched.
|
|
@@ -3989,7 +3991,9 @@ declare module "sap/ui/integration/Host" {
|
|
|
3989
3991
|
sPath: string
|
|
3990
3992
|
): Promise<null>;
|
|
3991
3993
|
/**
|
|
3994
|
+
* @deprecated (since 1.120.0)
|
|
3992
3995
|
* @experimental (since 1.97)
|
|
3996
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3993
3997
|
*
|
|
3994
3998
|
* Resolves the CSRF token and returns a Promise with its value.
|
|
3995
3999
|
*
|
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -7639,6 +7639,10 @@ declare module "sap/ui/mdc/field/ConditionsType" {
|
|
|
7639
7639
|
* If `noFormatting` is set, this value is used as output to keep the typed value during value help selection
|
|
7640
7640
|
*/
|
|
7641
7641
|
keepValue?: string;
|
|
7642
|
+
/**
|
|
7643
|
+
* If set, the input and output might contain multiple lines
|
|
7644
|
+
*/
|
|
7645
|
+
multipleLines?: boolean;
|
|
7642
7646
|
},
|
|
7643
7647
|
/**
|
|
7644
7648
|
* Value constraints
|
|
@@ -7863,6 +7867,10 @@ declare module "sap/ui/mdc/field/ConditionType" {
|
|
|
7863
7867
|
* If `noFormatting` is set, this value is used as output to keep the typed value during value help selection
|
|
7864
7868
|
*/
|
|
7865
7869
|
keepValue?: string;
|
|
7870
|
+
/**
|
|
7871
|
+
* If set, the input and output might contain multiple lines
|
|
7872
|
+
*/
|
|
7873
|
+
multipleLines?: boolean;
|
|
7866
7874
|
},
|
|
7867
7875
|
/**
|
|
7868
7876
|
* Value constraints
|
|
@@ -8082,6 +8090,10 @@ declare module "sap/ui/mdc/field/DynamicDateRangeConditionsType" {
|
|
|
8082
8090
|
* If `noFormatting` is set, this value is used as output to keep the typed value during value help selection
|
|
8083
8091
|
*/
|
|
8084
8092
|
keepValue?: string;
|
|
8093
|
+
/**
|
|
8094
|
+
* If set, the input and output might contain multiple lines
|
|
8095
|
+
*/
|
|
8096
|
+
multipleLines?: boolean;
|
|
8085
8097
|
},
|
|
8086
8098
|
/**
|
|
8087
8099
|
* Value constraints
|
|
@@ -22507,6 +22519,8 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22507
22519
|
*/
|
|
22508
22520
|
getFilterBar(): FilterBar;
|
|
22509
22521
|
/**
|
|
22522
|
+
* @deprecated (since 1.120.2) - replaced in future version by {@link sap.ui.mdc.ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22523
|
+
*
|
|
22510
22524
|
* Gets current value of property {@link #getFilterFields filterFields}.
|
|
22511
22525
|
*
|
|
22512
22526
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
@@ -22614,6 +22628,8 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22614
22628
|
oFilterBar: FilterBar
|
|
22615
22629
|
): this;
|
|
22616
22630
|
/**
|
|
22631
|
+
* @deprecated (since 1.120.2) - replaced in future version by {@link sap.ui.mdc.ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22632
|
+
*
|
|
22617
22633
|
* Sets a new value for property {@link #getFilterFields filterFields}.
|
|
22618
22634
|
*
|
|
22619
22635
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
@@ -22681,6 +22697,8 @@ declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
|
|
22681
22697
|
|
|
22682
22698
|
export interface $FilterableListContentSettings extends $ListContentSettings {
|
|
22683
22699
|
/**
|
|
22700
|
+
* @deprecated (since 1.120.2) - replaced in future version by {@link sap.ui.mdc.ValueHelpDelegate.isSearchSupported isSearchSupported}
|
|
22701
|
+
*
|
|
22684
22702
|
* The fields based on which the table data is filtered. For filtering, the value of the `filterValue` property
|
|
22685
22703
|
* is used.
|
|
22686
22704
|
*
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.2
|
|
2
2
|
|
|
3
3
|
declare module "sap/ushell/library" {
|
|
4
4
|
/**
|
|
@@ -6,6 +6,8 @@ declare module "sap/ushell/library" {
|
|
|
6
6
|
*/
|
|
7
7
|
export enum ContentNodeType {
|
|
8
8
|
/**
|
|
9
|
+
* @deprecated (since 1.120)
|
|
10
|
+
*
|
|
9
11
|
* A group of the classic homepage
|
|
10
12
|
*/
|
|
11
13
|
HomepageGroup = "HomepageGroup",
|
|
@@ -797,6 +799,7 @@ declare module "sap/ushell/Container" {
|
|
|
797
799
|
): void;
|
|
798
800
|
/**
|
|
799
801
|
* @since 1.34.1
|
|
802
|
+
* @deprecated (since 1.120)
|
|
800
803
|
*
|
|
801
804
|
* Attaches a listener to the rendererCreated event.
|
|
802
805
|
*/
|
|
@@ -811,6 +814,7 @@ declare module "sap/ushell/Container" {
|
|
|
811
814
|
): void;
|
|
812
815
|
/**
|
|
813
816
|
* @since 1.21.2
|
|
817
|
+
* @deprecated (since 1.120)
|
|
814
818
|
*
|
|
815
819
|
* Cancels the logon procedure in the current frame, if any. This MUST be used by the logon frame provider
|
|
816
820
|
* in case the user wants to close the logon frame for good. It will report "Authentication cancelled" and
|
|
@@ -883,6 +887,7 @@ declare module "sap/ushell/Container" {
|
|
|
883
887
|
): void;
|
|
884
888
|
/**
|
|
885
889
|
* @since 1.34.1
|
|
890
|
+
* @deprecated (since 1.120)
|
|
886
891
|
*
|
|
887
892
|
* Detaches a listener from the rendererCreated event.
|
|
888
893
|
*/
|
|
@@ -894,6 +899,7 @@ declare module "sap/ushell/Container" {
|
|
|
894
899
|
): void;
|
|
895
900
|
/**
|
|
896
901
|
* @since 1.27.0
|
|
902
|
+
* @deprecated (since 1.120)
|
|
897
903
|
*
|
|
898
904
|
* If the dirty state was set to 'false' using 'setDirtyFlag' the registered dirty state provider methods
|
|
899
905
|
* get called to determine the actual dirty state. The determined dirty state is then returned.
|
|
@@ -906,6 +912,7 @@ declare module "sap/ushell/Container" {
|
|
|
906
912
|
getDirtyFlag(): boolean;
|
|
907
913
|
/**
|
|
908
914
|
* @since 1.21.1
|
|
915
|
+
* @deprecated (since 1.120)
|
|
909
916
|
*
|
|
910
917
|
* Returns the global dirty state.
|
|
911
918
|
*
|
|
@@ -1077,6 +1084,7 @@ declare module "sap/ushell/Container" {
|
|
|
1077
1084
|
): Promise<object>;
|
|
1078
1085
|
/**
|
|
1079
1086
|
* @since 1.15.0
|
|
1087
|
+
* @deprecated (since 1.120)
|
|
1080
1088
|
*
|
|
1081
1089
|
* Logs out the current user from all relevant back-end systems, including the logon system itself. This
|
|
1082
1090
|
* member represents the default native implementation of logout. If SessionHandler was created, we register
|
|
@@ -5625,6 +5633,7 @@ declare module "sap/ushell/services/Message" {
|
|
|
5625
5633
|
|
|
5626
5634
|
/**
|
|
5627
5635
|
* @since 1.16.0
|
|
5636
|
+
* @deprecated (since 1.120)
|
|
5628
5637
|
*
|
|
5629
5638
|
* Message service.
|
|
5630
5639
|
*
|
|
@@ -6209,6 +6218,7 @@ declare module "sap/ushell/services/Navigation" {
|
|
|
6209
6218
|
declare module "sap/ushell/services/NavTargetResolution" {
|
|
6210
6219
|
/**
|
|
6211
6220
|
* @since 1.15.0
|
|
6221
|
+
* @deprecated (since 1.120)
|
|
6212
6222
|
*
|
|
6213
6223
|
* The Unified Shell's internal navigation target resolution service.
|
|
6214
6224
|
*
|
|
@@ -7436,6 +7446,7 @@ declare module "sap/ushell/services/PersonalizationV2/VariantSetAdapter" {
|
|
|
7436
7446
|
declare module "sap/ushell/services/ShellNavigation" {
|
|
7437
7447
|
/**
|
|
7438
7448
|
* @since 1.15.0
|
|
7449
|
+
* @deprecated (since 1.120)
|
|
7439
7450
|
*
|
|
7440
7451
|
* The Unified Shell's internal navigation service (platform independent).
|
|
7441
7452
|
*
|
|
@@ -8139,6 +8150,8 @@ declare module "sap/ushell/ui/appfinder/AppBox" {
|
|
|
8139
8150
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
8140
8151
|
|
|
8141
8152
|
/**
|
|
8153
|
+
* @deprecated (since 1.120)
|
|
8154
|
+
*
|
|
8142
8155
|
* Add your documentation for the new ui/appfinder/AppBox
|
|
8143
8156
|
*/
|
|
8144
8157
|
export default class AppBox extends Control {
|
|
@@ -9349,6 +9362,9 @@ declare module "sap/ushell/ui/launchpad/DashboardGroupsContainer" {
|
|
|
9349
9362
|
AggregationBindingInfo,
|
|
9350
9363
|
} from "sap/ui/base/ManagedObject";
|
|
9351
9364
|
|
|
9365
|
+
/**
|
|
9366
|
+
* @deprecated (since 1.120)
|
|
9367
|
+
*/
|
|
9352
9368
|
export default class DashboardGroupsContainer extends Control {
|
|
9353
9369
|
/**
|
|
9354
9370
|
* Constructor for "sap.ushell.ui.launchpad.DashboardGroupsContainer".
|
|
@@ -9632,6 +9648,9 @@ declare module "sap/ushell/ui/launchpad/LinkTileWrapper" {
|
|
|
9632
9648
|
AggregationBindingInfo,
|
|
9633
9649
|
} from "sap/ui/base/ManagedObject";
|
|
9634
9650
|
|
|
9651
|
+
/**
|
|
9652
|
+
* @deprecated (since 1.120)
|
|
9653
|
+
*/
|
|
9635
9654
|
export default class LinkTileWrapper extends Control {
|
|
9636
9655
|
/**
|
|
9637
9656
|
* Constructor for a new ui/launchpad/LinkTileWrapper. A link tile to be displayed in the tile container.
|
|
@@ -10413,6 +10432,9 @@ declare module "sap/ushell/ui/launchpad/TileState" {
|
|
|
10413
10432
|
|
|
10414
10433
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
10415
10434
|
|
|
10435
|
+
/**
|
|
10436
|
+
* @deprecated (since 1.120)
|
|
10437
|
+
*/
|
|
10416
10438
|
export default class TileState extends Control {
|
|
10417
10439
|
/**
|
|
10418
10440
|
* Constructor for a new ui/launchpad/TileState. The tile state control that displays loading indicator,
|
|
@@ -11032,6 +11054,7 @@ declare module "sap/ushell/ui/tile/StaticTile" {
|
|
|
11032
11054
|
|
|
11033
11055
|
/**
|
|
11034
11056
|
* @since 1.15.0
|
|
11057
|
+
* @deprecated (since 1.120)
|
|
11035
11058
|
*
|
|
11036
11059
|
* An applauncher tile for simple, static apps, displaying title, subtitle, an icon and additional information
|
|
11037
11060
|
*/
|
|
@@ -11140,6 +11163,7 @@ declare namespace sap {
|
|
|
11140
11163
|
namespace ushell {
|
|
11141
11164
|
/**
|
|
11142
11165
|
* @since 1.15.0
|
|
11166
|
+
* @deprecated (since 1.120)
|
|
11143
11167
|
*
|
|
11144
11168
|
* Initializes the Unified Shell Container.
|
|
11145
11169
|
*
|
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED