@sapui5/ts-types-esm 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/index.d.ts +2 -1
- package/types/sap.apf.d.ts +30 -3
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.cux.home.d.ts +315 -65
- package/types/sap.esh.search.ui.d.ts +71 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.ariba.d.ts +3 -0
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +50 -8
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +192 -66
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +4 -3
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +1261 -566
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +34 -1
- package/types/sap.suite.ui.commons.d.ts +4 -2
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- 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.comp.d.ts +67 -9
- package/types/sap.ui.core.d.ts +62 -49
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +221 -167
- package/types/sap.ui.fl.d.ts +3 -7
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +44 -24
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/{mdc-1.136.0-esm-d.ts → sap.ui.mdc.d.ts} +599 -297
- package/types/sap.ui.richtexteditor.d.ts +21 -17
- 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.vbm.d.ts +75 -30
- package/types/sap.ui.vk.d.ts +364 -102
- package/types/sap.ui.vtm.d.ts +3 -2
- 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 +58 -31
- 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.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.138.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
4
4
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
@@ -714,6 +714,16 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
714
714
|
* @returns Value of property `initAsync`
|
|
715
715
|
*/
|
|
716
716
|
getInitAsync(): Function;
|
|
717
|
+
/**
|
|
718
|
+
* Get the status of initialization. In unsuccessful case, the corresponding error instance is returned
|
|
719
|
+
* either.
|
|
720
|
+
*
|
|
721
|
+
* @since 1.132.0
|
|
722
|
+
*
|
|
723
|
+
* @returns Promise<{success: boolean;error?: Error;}> If success is true, the initialization was successful.
|
|
724
|
+
* If success is false, the error property contains the error instance for further handling.
|
|
725
|
+
*/
|
|
726
|
+
getInitializationStatus(): object;
|
|
717
727
|
/**
|
|
718
728
|
* Gets current value of property {@link #getIsFilterBarVisible isFilterBarVisible}.
|
|
719
729
|
*
|
|
@@ -916,6 +926,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
916
926
|
* A callback which is called whenever the selection of result view items changes.
|
|
917
927
|
*
|
|
918
928
|
* @since 1.113.0
|
|
929
|
+
* @deprecated As of version 1.137.0. this setting is ignored, subscribe to event 'selectionChange'.
|
|
919
930
|
*
|
|
920
931
|
* @returns Value of property `selectionChange`
|
|
921
932
|
*/
|
|
@@ -954,6 +965,56 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
954
965
|
* @returns Value of property `updateUrl`
|
|
955
966
|
*/
|
|
956
967
|
getUpdateUrl(): boolean;
|
|
968
|
+
/**
|
|
969
|
+
* Invalidate the search cache. To trigger a search in addition, use function 'retriggerSearch' instead.
|
|
970
|
+
*
|
|
971
|
+
* @since 1.124.0
|
|
972
|
+
*/
|
|
973
|
+
invalidateSearchResultCache(): Promise<void>;
|
|
974
|
+
/**
|
|
975
|
+
* Resets the active data source which is selected in the data source drop down list to its default (see
|
|
976
|
+
* 'defaultDataSource'/'exclusiveDataSource').
|
|
977
|
+
*
|
|
978
|
+
* @since 1.124.0
|
|
979
|
+
*/
|
|
980
|
+
resetDataSource(
|
|
981
|
+
/**
|
|
982
|
+
* If true, fires a search query right away. Set to 'false' for batch updates.
|
|
983
|
+
*/
|
|
984
|
+
fireQuery?: boolean
|
|
985
|
+
): this;
|
|
986
|
+
/**
|
|
987
|
+
* Resets the UI / search results (reset search query and fire a new search).
|
|
988
|
+
*
|
|
989
|
+
* @since 1.125.0
|
|
990
|
+
*/
|
|
991
|
+
resetSearch(): Promise<void>;
|
|
992
|
+
/**
|
|
993
|
+
* Fire a new search (includes invalidation of search cache). To invalidate the search cache w/o triggering
|
|
994
|
+
* a new search, use function 'invalidateSearchResultCache' instead.
|
|
995
|
+
*
|
|
996
|
+
* @since 1.124.0
|
|
997
|
+
*/
|
|
998
|
+
retriggerSearch(): Promise<void>;
|
|
999
|
+
/**
|
|
1000
|
+
* Invalidate the search cache and optionally fire a new search. Also see functions 'retriggerSearch' and
|
|
1001
|
+
* 'invalidateSearchResultCache'.
|
|
1002
|
+
*
|
|
1003
|
+
* @since 1.124.0
|
|
1004
|
+
*
|
|
1005
|
+
* @returns Returns 'true' if the search query was fired, otherwise 'void'.
|
|
1006
|
+
*/
|
|
1007
|
+
search(
|
|
1008
|
+
/**
|
|
1009
|
+
* Indicates wether the search query should be resetted. Set to 'true' to reset the query.
|
|
1010
|
+
*/
|
|
1011
|
+
invalidateQuery?: boolean,
|
|
1012
|
+
/**
|
|
1013
|
+
* Indicates wether the search query should be sent to the search service or not. Set to 'false', to prevent
|
|
1014
|
+
* auto-update of search results.
|
|
1015
|
+
*/
|
|
1016
|
+
fireQuery?: boolean
|
|
1017
|
+
): Promise<true | void>;
|
|
957
1018
|
/**
|
|
958
1019
|
* Sets a new value for property {@link #getApplicationComponent applicationComponent}.
|
|
959
1020
|
*
|
|
@@ -1704,6 +1765,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1704
1765
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1705
1766
|
*
|
|
1706
1767
|
* @since 1.113.0
|
|
1768
|
+
* @deprecated As of version 1.137.0. this setting is ignored, subscribe to event 'selectionChange'.
|
|
1707
1769
|
*
|
|
1708
1770
|
* @returns Reference to `this` in order to allow method chaining
|
|
1709
1771
|
*/
|
|
@@ -1768,6 +1830,13 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
1768
1830
|
*/
|
|
1769
1831
|
bUpdateUrl?: boolean
|
|
1770
1832
|
): this;
|
|
1833
|
+
/**
|
|
1834
|
+
* Update hierarchy facet Updates the one and only (static) hierarchy facet (tree control on facet panel).
|
|
1835
|
+
* If no hierarchy facet exists, nothing will happen.
|
|
1836
|
+
*
|
|
1837
|
+
* @since 1.126.0
|
|
1838
|
+
*/
|
|
1839
|
+
updateStaticHierarchyFacet(): Promise<void>;
|
|
1771
1840
|
}
|
|
1772
1841
|
/**
|
|
1773
1842
|
* Describes the settings that can be provided to the SearchCompositeControl constructor.
|
|
@@ -2076,6 +2145,7 @@ declare module "sap/esh/search/ui/SearchCompositeControl" {
|
|
|
2076
2145
|
* A callback which is called whenever the selection of result view items changes.
|
|
2077
2146
|
*
|
|
2078
2147
|
* @since 1.113.0
|
|
2148
|
+
* @deprecated As of version 1.137.0. this setting is ignored, subscribe to event 'selectionChange'.
|
|
2079
2149
|
*/
|
|
2080
2150
|
selectionChange?: Function | PropertyBindingInfo | `{${string}}`;
|
|
2081
2151
|
|
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.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/fe/core/AppComponent" {
|
|
4
4
|
import {
|
|
@@ -316,6 +316,25 @@ declare module "sap/fe/core/ExtensionAPI" {
|
|
|
316
316
|
}
|
|
317
317
|
|
|
318
318
|
declare module "sap/fe/core/library" {
|
|
319
|
+
/**
|
|
320
|
+
* Possible navigation modes for a pagination.
|
|
321
|
+
*
|
|
322
|
+
* @since 1.138.0
|
|
323
|
+
*/
|
|
324
|
+
export enum ContextNavigationType {
|
|
325
|
+
/**
|
|
326
|
+
* Indicates that the navigation is to an external application.
|
|
327
|
+
*/
|
|
328
|
+
External = "undefined",
|
|
329
|
+
/**
|
|
330
|
+
* Indicates that the navigation is to a subobject page within the same application.
|
|
331
|
+
*/
|
|
332
|
+
Internal = "undefined",
|
|
333
|
+
/**
|
|
334
|
+
* Indicates that there is no navigation.
|
|
335
|
+
*/
|
|
336
|
+
None = "undefined",
|
|
337
|
+
}
|
|
319
338
|
/**
|
|
320
339
|
* Possible initial load (first app startup) modes for a ListReport.
|
|
321
340
|
*
|
|
@@ -650,7 +669,8 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
650
669
|
*
|
|
651
670
|
* @since 1.116.0
|
|
652
671
|
*
|
|
653
|
-
* @returns A promise to be returned by the overridden method.
|
|
672
|
+
* @returns A promise to be returned by the overridden method. If rejected, any further processing by the
|
|
673
|
+
* framework is stopped.
|
|
654
674
|
*/
|
|
655
675
|
onAfterCreate(
|
|
656
676
|
/**
|
|
@@ -672,7 +692,8 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
672
692
|
*
|
|
673
693
|
* @since 1.116.0
|
|
674
694
|
*
|
|
675
|
-
* @returns A promise to be returned by the overridden method.
|
|
695
|
+
* @returns A promise to be returned by the overridden method. If rejected, any further processing by the
|
|
696
|
+
* framework is stopped.
|
|
676
697
|
*/
|
|
677
698
|
onAfterDelete(
|
|
678
699
|
/**
|
|
@@ -694,7 +715,8 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
694
715
|
*
|
|
695
716
|
* @since 1.116.0
|
|
696
717
|
*
|
|
697
|
-
* @returns A promise to be returned by the overridden method.
|
|
718
|
+
* @returns A promise to be returned by the overridden method. If rejected, any further processing by the
|
|
719
|
+
* framework is stopped.
|
|
698
720
|
*/
|
|
699
721
|
onAfterDiscard(
|
|
700
722
|
/**
|
|
@@ -716,7 +738,8 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
716
738
|
*
|
|
717
739
|
* @since 1.116.0
|
|
718
740
|
*
|
|
719
|
-
* @returns A promise to be returned by the overridden method.
|
|
741
|
+
* @returns A promise to be returned by the overridden method. If rejected, any further processing by the
|
|
742
|
+
* framework is stopped.
|
|
720
743
|
*/
|
|
721
744
|
onAfterEdit(
|
|
722
745
|
/**
|
|
@@ -738,7 +761,8 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
|
|
|
738
761
|
*
|
|
739
762
|
* @since 1.116.0
|
|
740
763
|
*
|
|
741
|
-
* @returns A promise to be returned by the overridden method.
|
|
764
|
+
* @returns A promise to be returned by the overridden method. If rejected, any further processing by the
|
|
765
|
+
* framework is stopped.
|
|
742
766
|
*/
|
|
743
767
|
onAfterSave(
|
|
744
768
|
/**
|
|
@@ -1066,16 +1090,34 @@ declare module "sap/fe/core/controllerextensions/MessageHandler" {
|
|
|
1066
1090
|
declare module "sap/fe/core/controllerextensions/Paginator" {
|
|
1067
1091
|
import ControllerExtension from "sap/ui/core/mvc/ControllerExtension";
|
|
1068
1092
|
|
|
1069
|
-
import ODataListBinding from "sap/ui/model/odata/v4/ODataListBinding";
|
|
1070
|
-
|
|
1071
1093
|
import Context from "sap/ui/model/odata/v4/Context";
|
|
1072
1094
|
|
|
1095
|
+
import { ContextNavigationType } from "sap/fe/core/library";
|
|
1096
|
+
|
|
1097
|
+
import ODataListBinding from "sap/ui/model/odata/v4/ODataListBinding";
|
|
1098
|
+
|
|
1073
1099
|
/**
|
|
1074
1100
|
* Controller extension providing hooks for the navigation using paginators
|
|
1075
1101
|
*
|
|
1076
1102
|
* @since 1.94.0
|
|
1077
1103
|
*/
|
|
1078
1104
|
export default class Paginator extends ControllerExtension {
|
|
1105
|
+
/**
|
|
1106
|
+
* This function is used to determine the type of navigation.
|
|
1107
|
+
* If the context is not navigable, it must return 'ContextNavigationType.None'.
|
|
1108
|
+
* If the context is navigable within the same application to a sub object page, it must return 'ContextNavigationType.Internal'.
|
|
1109
|
+
* If the context is navigable to an external application, it must return 'ContextNavigationType.External'.
|
|
1110
|
+
*
|
|
1111
|
+
* @since 1.138.0
|
|
1112
|
+
*
|
|
1113
|
+
* @returns A Promise which should resolve to ContextNavigationType enum.
|
|
1114
|
+
*/
|
|
1115
|
+
determineContextNavigationType(
|
|
1116
|
+
/**
|
|
1117
|
+
* Object containing the context to be navigated.
|
|
1118
|
+
*/
|
|
1119
|
+
context: Context
|
|
1120
|
+
): Promise<ContextNavigationType>;
|
|
1079
1121
|
/**
|
|
1080
1122
|
* Initiates the paginator control.
|
|
1081
1123
|
*
|
package/types/sap.fe.ina.d.ts
CHANGED