@sapui5/ts-types-esm 1.128.1 → 1.129.1
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.apf.d.ts +1 -1
- 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 +40 -0
- package/types/sap.esh.search.ui.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.core.d.ts +10 -10
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +105 -38
- package/types/sap.fe.navigation.d.ts +9 -2
- 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 +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +19 -4
- package/types/sap.insights.d.ts +7 -1
- package/types/sap.m.d.ts +199 -30
- 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 +362 -20
- package/types/sap.suite.ui.commons.d.ts +112 -2
- package/types/sap.suite.ui.generic.template.d.ts +24 -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 +446 -998
- package/types/sap.ui.core.d.ts +59 -65
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +7 -1
- package/types/sap.ui.fl.d.ts +13 -1
- 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 +37 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +575 -28
- 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 +68 -18
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +102 -3
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +1 -1
- package/types/sap.ui.vtm.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 +182 -169
- 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
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -1754,8 +1754,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1754
1754
|
* Therefore the binding property for filtering must be specified. For example, if the first name and last
|
|
1755
1755
|
* name are displayed in the same column, only one of the two can be defined as `filterProperty`.
|
|
1756
1756
|
*
|
|
1757
|
-
* A column menu entry for filtering can only be generated if the `
|
|
1758
|
-
* entry is a text input field.
|
|
1757
|
+
* A column menu entry for filtering can only be generated if the `headerMenu` association and `filterProperty`
|
|
1758
|
+
* are set. The default menu entry is a text input field.
|
|
1759
1759
|
*
|
|
1760
1760
|
*
|
|
1761
1761
|
* @returns Value of property `filterProperty`
|
|
@@ -1942,7 +1942,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1942
1942
|
/**
|
|
1943
1943
|
* Gets current value of property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
|
|
1944
1944
|
*
|
|
1945
|
-
* Defines if the filter menu entry is displayed
|
|
1945
|
+
* Defines if the filter menu entry is displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
1946
|
+
* is set.
|
|
1946
1947
|
*
|
|
1947
1948
|
* Default value is `true`.
|
|
1948
1949
|
*
|
|
@@ -1954,7 +1955,8 @@ declare module "sap/ui/table/Column" {
|
|
|
1954
1955
|
/**
|
|
1955
1956
|
* Gets current value of property {@link #getShowSortMenuEntry showSortMenuEntry}.
|
|
1956
1957
|
*
|
|
1957
|
-
* Defines if the sort menu entries are displayed
|
|
1958
|
+
* Defines if the sort menu entries are displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
1959
|
+
* is set.
|
|
1958
1960
|
*
|
|
1959
1961
|
* Default value is `true`.
|
|
1960
1962
|
*
|
|
@@ -2000,7 +2002,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2000
2002
|
* the binding property for sorting must be specified. For example, if the first name and last name are
|
|
2001
2003
|
* displayed in the same column, only one of the two can be defined as `sortProperty`.
|
|
2002
2004
|
*
|
|
2003
|
-
* A column menu entry for sorting can only be generated if the `
|
|
2005
|
+
* A column menu entry for sorting can only be generated if the `headerMenu` association and `sortProperty`
|
|
2006
|
+
* are set.
|
|
2004
2007
|
*
|
|
2005
2008
|
*
|
|
2006
2009
|
* @returns Value of property `sortProperty`
|
|
@@ -2200,8 +2203,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2200
2203
|
* Therefore the binding property for filtering must be specified. For example, if the first name and last
|
|
2201
2204
|
* name are displayed in the same column, only one of the two can be defined as `filterProperty`.
|
|
2202
2205
|
*
|
|
2203
|
-
* A column menu entry for filtering can only be generated if the `
|
|
2204
|
-
* entry is a text input field.
|
|
2206
|
+
* A column menu entry for filtering can only be generated if the `headerMenu` association and `filterProperty`
|
|
2207
|
+
* are set. The default menu entry is a text input field.
|
|
2205
2208
|
*
|
|
2206
2209
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2207
2210
|
*
|
|
@@ -2446,7 +2449,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2446
2449
|
/**
|
|
2447
2450
|
* Sets a new value for property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
|
|
2448
2451
|
*
|
|
2449
|
-
* Defines if the filter menu entry is displayed
|
|
2452
|
+
* Defines if the filter menu entry is displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2453
|
+
* is set.
|
|
2450
2454
|
*
|
|
2451
2455
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2452
2456
|
*
|
|
@@ -2465,7 +2469,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2465
2469
|
/**
|
|
2466
2470
|
* Sets a new value for property {@link #getShowSortMenuEntry showSortMenuEntry}.
|
|
2467
2471
|
*
|
|
2468
|
-
* Defines if the sort menu entries are displayed
|
|
2472
|
+
* Defines if the sort menu entries are displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2473
|
+
* is set.
|
|
2469
2474
|
*
|
|
2470
2475
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2471
2476
|
*
|
|
@@ -2532,7 +2537,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2532
2537
|
* the binding property for sorting must be specified. For example, if the first name and last name are
|
|
2533
2538
|
* displayed in the same column, only one of the two can be defined as `sortProperty`.
|
|
2534
2539
|
*
|
|
2535
|
-
* A column menu entry for sorting can only be generated if the `
|
|
2540
|
+
* A column menu entry for sorting can only be generated if the `headerMenu` association and `sortProperty`
|
|
2541
|
+
* are set.
|
|
2536
2542
|
*
|
|
2537
2543
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2538
2544
|
*
|
|
@@ -2699,7 +2705,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2699
2705
|
* the binding property for sorting must be specified. For example, if the first name and last name are
|
|
2700
2706
|
* displayed in the same column, only one of the two can be defined as `sortProperty`.
|
|
2701
2707
|
*
|
|
2702
|
-
* A column menu entry for sorting can only be generated if the `
|
|
2708
|
+
* A column menu entry for sorting can only be generated if the `headerMenu` association and `sortProperty`
|
|
2709
|
+
* are set.
|
|
2703
2710
|
*/
|
|
2704
2711
|
sortProperty?: string | PropertyBindingInfo;
|
|
2705
2712
|
|
|
@@ -2715,8 +2722,8 @@ declare module "sap/ui/table/Column" {
|
|
|
2715
2722
|
* Therefore the binding property for filtering must be specified. For example, if the first name and last
|
|
2716
2723
|
* name are displayed in the same column, only one of the two can be defined as `filterProperty`.
|
|
2717
2724
|
*
|
|
2718
|
-
* A column menu entry for filtering can only be generated if the `
|
|
2719
|
-
* entry is a text input field.
|
|
2725
|
+
* A column menu entry for filtering can only be generated if the `headerMenu` association and `filterProperty`
|
|
2726
|
+
* are set. The default menu entry is a text input field.
|
|
2720
2727
|
*/
|
|
2721
2728
|
filterProperty?: string | PropertyBindingInfo;
|
|
2722
2729
|
|
|
@@ -2790,14 +2797,16 @@ declare module "sap/ui/table/Column" {
|
|
|
2790
2797
|
name?: string | PropertyBindingInfo;
|
|
2791
2798
|
|
|
2792
2799
|
/**
|
|
2793
|
-
* Defines if the filter menu entry is displayed
|
|
2800
|
+
* Defines if the filter menu entry is displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2801
|
+
* is set.
|
|
2794
2802
|
*
|
|
2795
2803
|
* @since 1.13.0
|
|
2796
2804
|
*/
|
|
2797
2805
|
showFilterMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2798
2806
|
|
|
2799
2807
|
/**
|
|
2800
|
-
* Defines if the sort menu entries are displayed
|
|
2808
|
+
* Defines if the sort menu entries are displayed. **Note**: It only takes effect if the `headerMenu` association
|
|
2809
|
+
* is set.
|
|
2801
2810
|
*
|
|
2802
2811
|
* @since 1.13.0
|
|
2803
2812
|
*/
|
|
@@ -5073,6 +5082,18 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5073
5082
|
* @returns Value of property `fixedTopRowCount`
|
|
5074
5083
|
*/
|
|
5075
5084
|
getFixedTopRowCount(): int;
|
|
5085
|
+
/**
|
|
5086
|
+
* Gets current value of property {@link #getMaxRowCount maxRowCount}.
|
|
5087
|
+
*
|
|
5088
|
+
* The maximum number of displayed rows. If not set, the maximum number of rows is determined by the viewport
|
|
5089
|
+
* height of the device.
|
|
5090
|
+
*
|
|
5091
|
+
* Default value is `-1`.
|
|
5092
|
+
*
|
|
5093
|
+
*
|
|
5094
|
+
* @returns Value of property `maxRowCount`
|
|
5095
|
+
*/
|
|
5096
|
+
getMaxRowCount(): int;
|
|
5076
5097
|
/**
|
|
5077
5098
|
* Gets current value of property {@link #getMinRowCount minRowCount}.
|
|
5078
5099
|
*
|
|
@@ -5148,6 +5169,25 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5148
5169
|
*/
|
|
5149
5170
|
iFixedTopRowCount?: int
|
|
5150
5171
|
): this;
|
|
5172
|
+
/**
|
|
5173
|
+
* Sets a new value for property {@link #getMaxRowCount maxRowCount}.
|
|
5174
|
+
*
|
|
5175
|
+
* The maximum number of displayed rows. If not set, the maximum number of rows is determined by the viewport
|
|
5176
|
+
* height of the device.
|
|
5177
|
+
*
|
|
5178
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
5179
|
+
*
|
|
5180
|
+
* Default value is `-1`.
|
|
5181
|
+
*
|
|
5182
|
+
*
|
|
5183
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
5184
|
+
*/
|
|
5185
|
+
setMaxRowCount(
|
|
5186
|
+
/**
|
|
5187
|
+
* New value for property `maxRowCount`
|
|
5188
|
+
*/
|
|
5189
|
+
iMaxRowCount?: int
|
|
5190
|
+
): this;
|
|
5151
5191
|
/**
|
|
5152
5192
|
* Sets a new value for property {@link #getMinRowCount minRowCount}.
|
|
5153
5193
|
*
|
|
@@ -5221,6 +5261,12 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5221
5261
|
*/
|
|
5222
5262
|
minRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
5223
5263
|
|
|
5264
|
+
/**
|
|
5265
|
+
* The maximum number of displayed rows. If not set, the maximum number of rows is determined by the viewport
|
|
5266
|
+
* height of the device.
|
|
5267
|
+
*/
|
|
5268
|
+
maxRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
5269
|
+
|
|
5224
5270
|
/**
|
|
5225
5271
|
* The number of rows in the fixed area at the top. If the number of fixed rows exceeds the number of displayed
|
|
5226
5272
|
* rows, the number of fixed rows is reduced. The table may limit the possible number of fixed rows.
|
|
@@ -7940,7 +7986,9 @@ declare module "sap/ui/table/Table" {
|
|
|
7940
7986
|
* rows minus number of fixed rows), this number is used as the `scrollThreshold`. If the value is 0, no
|
|
7941
7987
|
* threshold is applied during scrolling. The value -1 applies the same value as the `threshold` property.
|
|
7942
7988
|
*
|
|
7943
|
-
*
|
|
7989
|
+
* **Note:** This property only takes effect if it is set to a positive integer value.
|
|
7990
|
+
*
|
|
7991
|
+
* The value of the `scrollThreshold` should be higher than the `threshold` value to avoid unnecessary requests.
|
|
7944
7992
|
*
|
|
7945
7993
|
* For `AnalyticalTable` and `TreeTable`, the `scrollThreshold` property must be higher than the `threshold`
|
|
7946
7994
|
* property to take effect.
|
|
@@ -9361,7 +9409,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9361
9409
|
* rows minus number of fixed rows), this number is used as the `scrollThreshold`. If the value is 0, no
|
|
9362
9410
|
* threshold is applied during scrolling. The value -1 applies the same value as the `threshold` property.
|
|
9363
9411
|
*
|
|
9364
|
-
*
|
|
9412
|
+
* **Note:** This property only takes effect if it is set to a positive integer value.
|
|
9413
|
+
*
|
|
9414
|
+
* The value of the `scrollThreshold` should be higher than the `threshold` value to avoid unnecessary requests.
|
|
9365
9415
|
*
|
|
9366
9416
|
* For `AnalyticalTable` and `TreeTable`, the `scrollThreshold` property must be higher than the `threshold`
|
|
9367
9417
|
* property to take effect.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.129.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -17958,6 +17958,8 @@ declare module "sap/ui/unified/Menu" {
|
|
|
17958
17958
|
|
|
17959
17959
|
import { IMenuItem } from "sap/ui/unified/library";
|
|
17960
17960
|
|
|
17961
|
+
import Event from "sap/ui/base/Event";
|
|
17962
|
+
|
|
17961
17963
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
17962
17964
|
|
|
17963
17965
|
import UI5Element from "sap/ui/core/Element";
|
|
@@ -17969,8 +17971,6 @@ declare module "sap/ui/unified/Menu" {
|
|
|
17969
17971
|
|
|
17970
17972
|
import MenuItemBase from "sap/ui/unified/MenuItemBase";
|
|
17971
17973
|
|
|
17972
|
-
import Event from "sap/ui/base/Event";
|
|
17973
|
-
|
|
17974
17974
|
/**
|
|
17975
17975
|
* A menu is an interactive element which provides a choice of different actions to the user. These actions
|
|
17976
17976
|
* (items) can also be organized in submenus. Like other dialog-like controls, the menu is not rendered
|
|
@@ -18067,6 +18067,55 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18067
18067
|
*/
|
|
18068
18068
|
oItem: IMenuItem
|
|
18069
18069
|
): this;
|
|
18070
|
+
/**
|
|
18071
|
+
* Attaches event handler `fnFunction` to the {@link #event:closed closed} event of this `sap.ui.unified.Menu`.
|
|
18072
|
+
*
|
|
18073
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18074
|
+
* otherwise it will be bound to this `sap.ui.unified.Menu` itself.
|
|
18075
|
+
*
|
|
18076
|
+
* Fired when the menu is closed.
|
|
18077
|
+
*
|
|
18078
|
+
* @since 1.129
|
|
18079
|
+
*
|
|
18080
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18081
|
+
*/
|
|
18082
|
+
attachClosed(
|
|
18083
|
+
/**
|
|
18084
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
18085
|
+
* object when firing the event
|
|
18086
|
+
*/
|
|
18087
|
+
oData: object,
|
|
18088
|
+
/**
|
|
18089
|
+
* The function to be called when the event occurs
|
|
18090
|
+
*/
|
|
18091
|
+
fnFunction: (p1: Event) => void,
|
|
18092
|
+
/**
|
|
18093
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.unified.Menu` itself
|
|
18094
|
+
*/
|
|
18095
|
+
oListener?: object
|
|
18096
|
+
): this;
|
|
18097
|
+
/**
|
|
18098
|
+
* Attaches event handler `fnFunction` to the {@link #event:closed closed} event of this `sap.ui.unified.Menu`.
|
|
18099
|
+
*
|
|
18100
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18101
|
+
* otherwise it will be bound to this `sap.ui.unified.Menu` itself.
|
|
18102
|
+
*
|
|
18103
|
+
* Fired when the menu is closed.
|
|
18104
|
+
*
|
|
18105
|
+
* @since 1.129
|
|
18106
|
+
*
|
|
18107
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18108
|
+
*/
|
|
18109
|
+
attachClosed(
|
|
18110
|
+
/**
|
|
18111
|
+
* The function to be called when the event occurs
|
|
18112
|
+
*/
|
|
18113
|
+
fnFunction: (p1: Event) => void,
|
|
18114
|
+
/**
|
|
18115
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.unified.Menu` itself
|
|
18116
|
+
*/
|
|
18117
|
+
oListener?: object
|
|
18118
|
+
): this;
|
|
18070
18119
|
/**
|
|
18071
18120
|
* Attaches event handler `fnFunction` to the {@link #event:itemSelect itemSelect} event of this `sap.ui.unified.Menu`.
|
|
18072
18121
|
*
|
|
@@ -18129,6 +18178,25 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18129
18178
|
* @returns Reference to `this` in order to allow method chaining
|
|
18130
18179
|
*/
|
|
18131
18180
|
destroyItems(): this;
|
|
18181
|
+
/**
|
|
18182
|
+
* Detaches event handler `fnFunction` from the {@link #event:closed closed} event of this `sap.ui.unified.Menu`.
|
|
18183
|
+
*
|
|
18184
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
18185
|
+
*
|
|
18186
|
+
* @since 1.129
|
|
18187
|
+
*
|
|
18188
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18189
|
+
*/
|
|
18190
|
+
detachClosed(
|
|
18191
|
+
/**
|
|
18192
|
+
* The function to be called, when the event occurs
|
|
18193
|
+
*/
|
|
18194
|
+
fnFunction: (p1: Event) => void,
|
|
18195
|
+
/**
|
|
18196
|
+
* Context object on which the given function had to be called
|
|
18197
|
+
*/
|
|
18198
|
+
oListener?: object
|
|
18199
|
+
): this;
|
|
18132
18200
|
/**
|
|
18133
18201
|
* Detaches event handler `fnFunction` from the {@link #event:itemSelect itemSelect} event of this `sap.ui.unified.Menu`.
|
|
18134
18202
|
*
|
|
@@ -18147,6 +18215,20 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18147
18215
|
*/
|
|
18148
18216
|
oListener?: object
|
|
18149
18217
|
): this;
|
|
18218
|
+
/**
|
|
18219
|
+
* Fires event {@link #event:closed closed} to attached listeners.
|
|
18220
|
+
*
|
|
18221
|
+
* @since 1.129
|
|
18222
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
18223
|
+
*
|
|
18224
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
18225
|
+
*/
|
|
18226
|
+
fireClosed(
|
|
18227
|
+
/**
|
|
18228
|
+
* Parameters to pass along with the event
|
|
18229
|
+
*/
|
|
18230
|
+
mParameters?: object
|
|
18231
|
+
): this;
|
|
18150
18232
|
/**
|
|
18151
18233
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
18152
18234
|
*
|
|
@@ -18507,8 +18589,25 @@ declare module "sap/ui/unified/Menu" {
|
|
|
18507
18589
|
* menu item. This event and the event of the menu items are redundant.
|
|
18508
18590
|
*/
|
|
18509
18591
|
itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
|
|
18592
|
+
|
|
18593
|
+
/**
|
|
18594
|
+
* Fired when the menu is closed.
|
|
18595
|
+
*
|
|
18596
|
+
* @since 1.129
|
|
18597
|
+
*/
|
|
18598
|
+
closed?: (oEvent: Event) => void;
|
|
18510
18599
|
}
|
|
18511
18600
|
|
|
18601
|
+
/**
|
|
18602
|
+
* Parameters of the Menu#closed event.
|
|
18603
|
+
*/
|
|
18604
|
+
export interface Menu$ClosedEventParameters {}
|
|
18605
|
+
|
|
18606
|
+
/**
|
|
18607
|
+
* Event object of the Menu#closed event.
|
|
18608
|
+
*/
|
|
18609
|
+
export type Menu$ClosedEvent = Event<Menu$ClosedEventParameters, Menu>;
|
|
18610
|
+
|
|
18512
18611
|
/**
|
|
18513
18612
|
* Parameters of the Menu#itemSelect event.
|
|
18514
18613
|
*/
|
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ui.vk.d.ts
CHANGED
package/types/sap.ui.vtm.d.ts
CHANGED