@sapui5/types 1.120.30 → 1.120.31
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 +1 -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.insights.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- 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.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- 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 +1 -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 +42 -1
- package/types/sap.ui.core.d.ts +1 -1
- 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 +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +1 -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.vk.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 +3 -2
- 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.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.31
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/comp/library" {
|
|
4
4
|
/**
|
|
@@ -28857,6 +28857,19 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28857
28857
|
* @returns Value of property `enableODataSelect`
|
|
28858
28858
|
*/
|
|
28859
28859
|
getEnableODataSelect(): boolean;
|
|
28860
|
+
/**
|
|
28861
|
+
* Gets current value of property {@link #getEnableValueHelpSelectAll enableValueHelpSelectAll}.
|
|
28862
|
+
*
|
|
28863
|
+
* Enable/Disable "Select All" checkbox in ValueHelpDialog. If set to true, the Select All checkbox is enabled
|
|
28864
|
+
* in the ValueHelpDialog.
|
|
28865
|
+
*
|
|
28866
|
+
* Default value is `undefined`.
|
|
28867
|
+
*
|
|
28868
|
+
* @since 1.120
|
|
28869
|
+
*
|
|
28870
|
+
* @returns Value of property `enableValueHelpSelectAll`
|
|
28871
|
+
*/
|
|
28872
|
+
getEnableValueHelpSelectAll(): boolean;
|
|
28860
28873
|
/**
|
|
28861
28874
|
* Returns a filter that can be applied to restrict the OData query.
|
|
28862
28875
|
*
|
|
@@ -28950,6 +28963,26 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
28950
28963
|
*/
|
|
28951
28964
|
bEnableODataSelect?: boolean
|
|
28952
28965
|
): this;
|
|
28966
|
+
/**
|
|
28967
|
+
* Sets a new value for property {@link #getEnableValueHelpSelectAll enableValueHelpSelectAll}.
|
|
28968
|
+
*
|
|
28969
|
+
* Enable/Disable "Select All" checkbox in ValueHelpDialog. If set to true, the Select All checkbox is enabled
|
|
28970
|
+
* in the ValueHelpDialog.
|
|
28971
|
+
*
|
|
28972
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
28973
|
+
*
|
|
28974
|
+
* Default value is `undefined`.
|
|
28975
|
+
*
|
|
28976
|
+
* @since 1.120
|
|
28977
|
+
*
|
|
28978
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
28979
|
+
*/
|
|
28980
|
+
setEnableValueHelpSelectAll(
|
|
28981
|
+
/**
|
|
28982
|
+
* New value for property `enableValueHelpSelectAll`
|
|
28983
|
+
*/
|
|
28984
|
+
bEnableValueHelpSelectAll?: boolean
|
|
28985
|
+
): this;
|
|
28953
28986
|
/**
|
|
28954
28987
|
* Sets tokens based on given objects with range data. Can only be used without a data binding. Otherwise,
|
|
28955
28988
|
* has no effect.
|
|
@@ -29093,6 +29126,14 @@ declare module "sap/ui/comp/smartmultiinput/SmartMultiInput" {
|
|
|
29093
29126
|
*/
|
|
29094
29127
|
singleTokenMode?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
29095
29128
|
|
|
29129
|
+
/**
|
|
29130
|
+
* Enable/Disable "Select All" checkbox in ValueHelpDialog. If set to true, the Select All checkbox is enabled
|
|
29131
|
+
* in the ValueHelpDialog.
|
|
29132
|
+
*
|
|
29133
|
+
* @since 1.120
|
|
29134
|
+
*/
|
|
29135
|
+
enableValueHelpSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
29136
|
+
|
|
29096
29137
|
/**
|
|
29097
29138
|
* This event is fired before the OData model's `create` method is called. Provides object with parameters
|
|
29098
29139
|
* of the call for editing.
|
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
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.ui.vk.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.30
|
|
2
2
|
|
|
3
3
|
declare module "sap/ushell/library" {
|
|
4
4
|
/**
|
|
@@ -2762,7 +2762,8 @@ declare module "sap/ushell/services/AppLifeCycle" {
|
|
|
2762
2762
|
* - ` appId ` Universal stable logical identifier of the application across the whole content.
|
|
2763
2763
|
* - ` appVersion ` Version of the app
|
|
2764
2764
|
* - ` appSupportInfo ` The name of an organizational component that handles support incidents.
|
|
2765
|
-
* - ` appFrameworkVersion ` Version of the framework
|
|
2765
|
+
* - ` appFrameworkVersion ` Version of the framework
|
|
2766
|
+
* - ` url ` The FLP URL with the current hash included. The `function` returns a `Promise` that
|
|
2766
2767
|
* resolves with an `Object` with properties corresponding to the elements of the `Array` passed as input.
|
|
2767
2768
|
* Each of these properties holds its value or undefined if not configured.
|
|
2768
2769
|
*
|
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
package/types/sap.zen.dsh.d.ts
CHANGED