@sapui5/types 1.120.30 → 1.120.32

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.
Files changed (55) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.chart.d.ts +1 -1
  4. package/types/sap.f.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +4 -12
  6. package/types/sap.fe.macros.d.ts +1 -1
  7. package/types/sap.fe.navigation.d.ts +1 -1
  8. package/types/sap.fe.placeholder.d.ts +1 -1
  9. package/types/sap.fe.templates.d.ts +1 -1
  10. package/types/sap.fe.test.d.ts +1 -1
  11. package/types/sap.fe.tools.d.ts +1 -1
  12. package/types/sap.gantt.d.ts +1 -1
  13. package/types/sap.insights.d.ts +1 -1
  14. package/types/sap.m.d.ts +3 -1
  15. package/types/sap.makit.d.ts +1 -1
  16. package/types/sap.me.d.ts +1 -1
  17. package/types/sap.ndc.d.ts +1 -1
  18. package/types/sap.ovp.d.ts +1 -1
  19. package/types/sap.sac.df.d.ts +1 -1
  20. package/types/sap.suite.ui.commons.d.ts +1 -1
  21. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  22. package/types/sap.suite.ui.microchart.d.ts +1 -1
  23. package/types/sap.tnt.d.ts +1 -1
  24. package/types/sap.ui.codeeditor.d.ts +1 -1
  25. package/types/sap.ui.commons.d.ts +1 -1
  26. package/types/sap.ui.comp.d.ts +42 -1
  27. package/types/sap.ui.core.d.ts +2 -2
  28. package/types/sap.ui.dt.d.ts +1 -1
  29. package/types/sap.ui.export.d.ts +1 -1
  30. package/types/sap.ui.fl.d.ts +1 -1
  31. package/types/sap.ui.generic.app.d.ts +1 -1
  32. package/types/sap.ui.generic.template.d.ts +1 -1
  33. package/types/sap.ui.integration.d.ts +1 -1
  34. package/types/sap.ui.layout.d.ts +1 -1
  35. package/types/sap.ui.mdc.d.ts +1 -1
  36. package/types/sap.ui.richtexteditor.d.ts +1 -1
  37. package/types/sap.ui.rta.d.ts +1 -1
  38. package/types/sap.ui.suite.d.ts +1 -1
  39. package/types/sap.ui.support.d.ts +1 -1
  40. package/types/sap.ui.table.d.ts +1 -1
  41. package/types/sap.ui.testrecorder.d.ts +1 -1
  42. package/types/sap.ui.unified.d.ts +1 -1
  43. package/types/sap.ui.ux3.d.ts +1 -1
  44. package/types/sap.ui.vk.d.ts +2 -7
  45. package/types/sap.ui.webc.common.d.ts +1 -1
  46. package/types/sap.ui.webc.fiori.d.ts +1 -1
  47. package/types/sap.ui.webc.main.d.ts +1 -1
  48. package/types/sap.uiext.inbox.d.ts +1 -1
  49. package/types/sap.ushell.d.ts +3 -2
  50. package/types/sap.ushell_abap.d.ts +1 -1
  51. package/types/sap.uxap.d.ts +1 -1
  52. package/types/sap.viz.d.ts +1 -1
  53. package/types/sap.zen.commons.d.ts +1 -1
  54. package/types/sap.zen.crosstab.d.ts +1 -1
  55. package/types/sap.zen.dsh.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/types",
3
- "version": "1.120.30",
3
+ "version": "1.120.32",
4
4
  "description": "SAPUI5 TypeScript Definitions",
5
5
  "homepage": "https://sap.github.io/ui5-typescript/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.3
1
+ // For Library Version: 1.120.4
2
2
 
3
3
  declare module "sap/apf/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/chart/library" {
4
4
  import Dimension from "sap/chart/data/Dimension";
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  export interface IToolHeader {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare module "sap/fe/core/AppComponent" {
4
4
  import {
@@ -536,18 +536,10 @@ declare module "sap/fe/core/controllerextensions/EditFlow" {
536
536
  */
537
537
  model?: ODataModel;
538
538
  /**
539
- * A map of action parameter names and provided values
539
+ * An optional array of objects representing the action parameters, where each object has a name of string
540
+ * type and a value that can be of any data type.
540
541
  */
541
- parameterValues?: {
542
- /**
543
- * Name of the parameter
544
- */
545
- name: string;
546
- /**
547
- * Value of the parameter
548
- */
549
- value: any;
550
- };
542
+ parameterValues?: object[];
551
543
  /**
552
544
  * Boolean value indicating whether navigation is required after the action has been executed. Navigation
553
545
  * takes place to the context returned by the action
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare module "sap/fe/macros/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare module "sap/fe/navigation/library" {
4
4
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare module "sap/fe/templates/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare module "sap/fe/test/library" {}
4
4
 
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.24
1
+ // For Library Version: 1.120.26
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.15
1
+ // For Library Version: 1.120.16
2
2
 
3
3
  declare module "sap/gantt/library" {
4
4
  import ChartScheme from "sap/gantt/config/ChartScheme";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.16
1
+ // For Library Version: 1.120.18
2
2
 
3
3
  declare module "sap/insights/library" {}
4
4
 
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/f/library" {
4
4
  export interface IShellBar {
@@ -164120,6 +164120,8 @@ declare namespace sap {
164120
164120
 
164121
164121
  "sap/m/p13n/SortPanel": undefined;
164122
164122
 
164123
+ "sap/m/p13n/util/diff": undefined;
164124
+
164123
164125
  "sap/m/P13nColumnsItem": undefined;
164124
164126
 
164125
164127
  "sap/m/P13nColumnsPanel": undefined;
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/makit/library" {
4
4
  /**
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/me/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ndc/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.23
1
+ // For Library Version: 1.120.25
2
2
 
3
3
  declare module "sap/ovp/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.13
1
+ // For Library Version: 1.120.16
2
2
 
3
3
  declare module "sap/sac/df/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.16
1
+ // For Library Version: 1.120.18
2
2
 
3
3
  declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.28
1
+ // For Library Version: 1.120.30
2
2
 
3
3
  declare module "sap/suite/ui/generic/template/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/suite/ui/microchart/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/tnt/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/codeeditor/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/commons/library" {
4
4
  import { ColorPickerMode as ColorPickerMode1 } from "sap/ui/unified/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
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.
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.30
283
+ // For Library Version: 1.120.32
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -70823,7 +70823,7 @@ declare module "sap/ui/model/odata/v4/ODataContextBinding" {
70823
70823
  sGroupId?: string,
70824
70824
  /**
70825
70825
  * Whether the entity's ETag should be actively ignored (If-Match:*); supported for bound actions only,
70826
- * since 1.90.0. Ignored if there is no ETag (since 1.93.0).
70826
+ * since 1.90.0. Ignored if there is no ETag (since 1.93.0) unless no data has been read so far (since 1.132.0).
70827
70827
  */
70828
70828
  bIgnoreETag?: boolean,
70829
70829
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/export/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/fl/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.7
1
+ // For Library Version: 1.120.8
2
2
 
3
3
  declare module "sap/ui/generic/app/library" {
4
4
  export namespace navigation {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.7
1
+ // For Library Version: 1.120.8
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/integration/library" {
4
4
  import { URI } from "sap/ui/core/library";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/layout/library" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/richtexteditor/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  import Control from "sap/ui/core/Control";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/suite/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/support/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/testrecorder/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/unified/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/ux3/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.6
1
+ // For Library Version: 1.120.8
2
2
 
3
3
  declare module "sap/ui/vk/library" {
4
4
  /**
@@ -38457,12 +38457,7 @@ declare module "sap/ui/vk/Viewer" {
38457
38457
  *
38458
38458
  * @returns `this` to allow method chaining.
38459
38459
  */
38460
- activateFullScreenMode(
38461
- /**
38462
- * Parameter which specifies whether to activate or deactivate full screen mode.
38463
- */
38464
- value: boolean
38465
- ): this;
38460
+ activateFullScreenMode(): this;
38466
38461
  /**
38467
38462
  * Activates the redline design control.
38468
38463
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/webc/common/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/webc/fiori/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/ui/webc/main/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/uiext/inbox/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.29
1
+ // For Library Version: 1.120.31
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 The `function` returns a `Promise` that
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
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.29
1
+ // For Library Version: 1.120.31
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/uxap/library" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.30
1
+ // For Library Version: 1.120.32
2
2
 
3
3
  declare module "sap/viz/library" {
4
4
  export namespace ui5 {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.13
1
+ // For Library Version: 1.120.16
2
2
 
3
3
  declare module "sap/zen/commons/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.13
1
+ // For Library Version: 1.120.16
2
2
 
3
3
  declare module "sap/zen/crosstab/library" {}
4
4
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.13
1
+ // For Library Version: 1.120.16
2
2
 
3
3
  declare module "sap/zen/dsh/library" {}
4
4