@openui5/ts-types 1.144.0 → 1.146.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/sap.f.d.ts +71 -528
- package/types/sap.m.d.ts +356 -29
- package/types/sap.tnt.d.ts +27 -26
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1173 -456
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -1
- package/types/sap.ui.integration.d.ts +65 -265
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +357 -50
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +77 -3
- 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.uxap.d.ts +18 -8
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.146.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/m/p13n/Engine" {
|
|
4
4
|
/**
|
|
@@ -253,6 +253,20 @@ declare namespace sap {
|
|
|
253
253
|
* @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
|
|
254
254
|
*/
|
|
255
255
|
getVerticalScrolling?(): boolean;
|
|
256
|
+
/**
|
|
257
|
+
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
|
|
258
|
+
* the popup is closed
|
|
259
|
+
*
|
|
260
|
+
* @since 1.145
|
|
261
|
+
*
|
|
262
|
+
* @returns A Promise that is fullfilled if the panel is ready to be closed
|
|
263
|
+
*/
|
|
264
|
+
onBeforeClose?(
|
|
265
|
+
/**
|
|
266
|
+
* reason for closing the container
|
|
267
|
+
*/
|
|
268
|
+
sReason: string
|
|
269
|
+
): Promise<any>;
|
|
256
270
|
/**
|
|
257
271
|
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
|
|
258
272
|
* reset on the panel
|
|
@@ -27996,8 +28010,10 @@ declare namespace sap {
|
|
|
27996
28010
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
27997
28011
|
* positive number.
|
|
27998
28012
|
*
|
|
27999
|
-
* **Note:** When this property is set to something different
|
|
28013
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
28000
28014
|
* of `Carousel` is ignored.
|
|
28015
|
+
*
|
|
28016
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
28001
28017
|
*/
|
|
28002
28018
|
visiblePagesCount?:
|
|
28003
28019
|
| int
|
|
@@ -28017,6 +28033,35 @@ declare namespace sap {
|
|
|
28017
28033
|
| sap.m.CarouselScrollMode
|
|
28018
28034
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28019
28035
|
| `{${string}}`;
|
|
28036
|
+
|
|
28037
|
+
/**
|
|
28038
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
28039
|
+
* based on the available width and the specified page width.
|
|
28040
|
+
*
|
|
28041
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
28042
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
28043
|
+
*
|
|
28044
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
28045
|
+
* of the carousel.
|
|
28046
|
+
*/
|
|
28047
|
+
responsive?:
|
|
28048
|
+
| boolean
|
|
28049
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28050
|
+
| `{${string}}`;
|
|
28051
|
+
|
|
28052
|
+
/**
|
|
28053
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
28054
|
+
*
|
|
28055
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
28056
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
28057
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
28058
|
+
*
|
|
28059
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
28060
|
+
*/
|
|
28061
|
+
minPageWidth?:
|
|
28062
|
+
| int
|
|
28063
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28064
|
+
| `{${string}}`;
|
|
28020
28065
|
}
|
|
28021
28066
|
|
|
28022
28067
|
/**
|
|
@@ -28220,7 +28265,6 @@ declare namespace sap {
|
|
|
28220
28265
|
* The last selected color in the ColorPalette.
|
|
28221
28266
|
*
|
|
28222
28267
|
* @since 1.122
|
|
28223
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
28224
28268
|
*/
|
|
28225
28269
|
selectedColor?:
|
|
28226
28270
|
| sap.ui.core.CSSColor
|
|
@@ -28267,7 +28311,6 @@ declare namespace sap {
|
|
|
28267
28311
|
* The last selected color in the ColorPalette.
|
|
28268
28312
|
*
|
|
28269
28313
|
* @since 1.122
|
|
28270
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
28271
28314
|
*/
|
|
28272
28315
|
selectedColor?:
|
|
28273
28316
|
| sap.ui.core.CSSColor
|
|
@@ -30846,6 +30889,7 @@ declare namespace sap {
|
|
|
30846
30889
|
* - `strong`
|
|
30847
30890
|
* - `span`
|
|
30848
30891
|
* - `u`
|
|
30892
|
+
* - `s`
|
|
30849
30893
|
* - `dl`
|
|
30850
30894
|
* - `dt`
|
|
30851
30895
|
* - `dd`
|
|
@@ -31824,8 +31868,7 @@ declare namespace sap {
|
|
|
31824
31868
|
/**
|
|
31825
31869
|
* Specifies the interaction mode.
|
|
31826
31870
|
*
|
|
31827
|
-
* @experimental As of version 1.121.
|
|
31828
|
-
* may be done before its official public release. Use at your own discretion.
|
|
31871
|
+
* @experimental As of version 1.121.
|
|
31829
31872
|
*/
|
|
31830
31873
|
interactionMode?:
|
|
31831
31874
|
| sap.m.IconTabFilterInteractionMode
|
|
@@ -34208,6 +34251,13 @@ declare namespace sap {
|
|
|
34208
34251
|
*/
|
|
34209
34252
|
closed?: (oEvent: sap.ui.base.Event) => void;
|
|
34210
34253
|
|
|
34254
|
+
/**
|
|
34255
|
+
* Fired when the menu is opened.
|
|
34256
|
+
*
|
|
34257
|
+
* @since 1.146
|
|
34258
|
+
*/
|
|
34259
|
+
open?: (oEvent: sap.ui.base.Event) => void;
|
|
34260
|
+
|
|
34211
34261
|
/**
|
|
34212
34262
|
* Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
|
|
34213
34263
|
* closing.
|
|
@@ -37946,7 +37996,7 @@ declare namespace sap {
|
|
|
37946
37996
|
/**
|
|
37947
37997
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
37948
37998
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
37949
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
37999
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
37950
38000
|
*/
|
|
37951
38001
|
customHeader?: sap.m.IBar;
|
|
37952
38002
|
|
|
@@ -42845,7 +42895,8 @@ declare namespace sap {
|
|
|
42845
42895
|
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
42846
42896
|
|
|
42847
42897
|
/**
|
|
42848
|
-
* Defines the list item icon.
|
|
42898
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
42899
|
+
* options, use the `avatar` aggregation.
|
|
42849
42900
|
*/
|
|
42850
42901
|
icon?:
|
|
42851
42902
|
| sap.ui.core.URI
|
|
@@ -43546,8 +43597,7 @@ declare namespace sap {
|
|
|
43546
43597
|
| `{${string}}`;
|
|
43547
43598
|
|
|
43548
43599
|
/**
|
|
43549
|
-
* Enables alternating table row colors.
|
|
43550
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
43600
|
+
* Enables alternating table row colors.
|
|
43551
43601
|
*
|
|
43552
43602
|
* @since 1.52
|
|
43553
43603
|
*/
|
|
@@ -45919,6 +45969,11 @@ declare namespace sap {
|
|
|
45919
45969
|
*/
|
|
45920
45970
|
manageCancel?: (oEvent: sap.ui.base.Event) => void;
|
|
45921
45971
|
|
|
45972
|
+
/**
|
|
45973
|
+
* This event is fired when users opens the Manage Views dialog.
|
|
45974
|
+
*/
|
|
45975
|
+
manageOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
45976
|
+
|
|
45922
45977
|
/**
|
|
45923
45978
|
* This event is fired when users apply changes variant information in the Manage Views dialog. Some
|
|
45924
45979
|
* of the parameters may be ommitted, depending on user selection.
|
|
@@ -47587,6 +47642,11 @@ declare namespace sap {
|
|
|
47587
47642
|
item?: sap.m.IMenuItem;
|
|
47588
47643
|
}
|
|
47589
47644
|
|
|
47645
|
+
/**
|
|
47646
|
+
* Parameters of the Menu#open event.
|
|
47647
|
+
*/
|
|
47648
|
+
interface Menu$OpenEventParameters {}
|
|
47649
|
+
|
|
47590
47650
|
/**
|
|
47591
47651
|
* Parameters of the MenuButton#beforeMenuOpen event.
|
|
47592
47652
|
*/
|
|
@@ -50388,6 +50448,11 @@ declare namespace sap {
|
|
|
50388
50448
|
*/
|
|
50389
50449
|
interface VariantManagement$ManageCancelEventParameters {}
|
|
50390
50450
|
|
|
50451
|
+
/**
|
|
50452
|
+
* Parameters of the VariantManagement#manageOpen event.
|
|
50453
|
+
*/
|
|
50454
|
+
interface VariantManagement$ManageOpenEventParameters {}
|
|
50455
|
+
|
|
50391
50456
|
/**
|
|
50392
50457
|
* Parameters of the VariantManagement#save event.
|
|
50393
50458
|
*/
|
|
@@ -58767,6 +58832,8 @@ declare namespace sap {
|
|
|
58767
58832
|
* the navigation arrows.
|
|
58768
58833
|
* - On desktop, navigation is done with the navigation arrows.
|
|
58769
58834
|
* - The paging indicator (when activated) is visible on each form factor.
|
|
58835
|
+
* - When using {@link sap.m.CarouselLayout CarouselLayout} with the `responsive` property set to `true`,
|
|
58836
|
+
* the number of visible pages adjusts automatically based on the available width and the specified `minPageWidth`.
|
|
58770
58837
|
*/
|
|
58771
58838
|
class Carousel extends sap.ui.core.Control {
|
|
58772
58839
|
/**
|
|
@@ -59737,6 +59804,41 @@ declare namespace sap {
|
|
|
59737
59804
|
* @returns Metadata object describing this class
|
|
59738
59805
|
*/
|
|
59739
59806
|
static getMetadata(): sap.ui.base.ManagedObjectMetadata;
|
|
59807
|
+
/**
|
|
59808
|
+
* Gets current value of property {@link #getMinPageWidth minPageWidth}.
|
|
59809
|
+
*
|
|
59810
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
59811
|
+
*
|
|
59812
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
59813
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
59814
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
59815
|
+
*
|
|
59816
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
59817
|
+
*
|
|
59818
|
+
* Default value is `148`.
|
|
59819
|
+
*
|
|
59820
|
+
*
|
|
59821
|
+
* @returns Value of property `minPageWidth`
|
|
59822
|
+
*/
|
|
59823
|
+
getMinPageWidth(): int;
|
|
59824
|
+
/**
|
|
59825
|
+
* Gets current value of property {@link #getResponsive responsive}.
|
|
59826
|
+
*
|
|
59827
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
59828
|
+
* based on the available width and the specified page width.
|
|
59829
|
+
*
|
|
59830
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
59831
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
59832
|
+
*
|
|
59833
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
59834
|
+
* of the carousel.
|
|
59835
|
+
*
|
|
59836
|
+
* Default value is `false`.
|
|
59837
|
+
*
|
|
59838
|
+
*
|
|
59839
|
+
* @returns Value of property `responsive`
|
|
59840
|
+
*/
|
|
59841
|
+
getResponsive(): boolean;
|
|
59740
59842
|
/**
|
|
59741
59843
|
* Gets current value of property {@link #getScrollMode scrollMode}.
|
|
59742
59844
|
*
|
|
@@ -59759,15 +59861,66 @@ declare namespace sap {
|
|
|
59759
59861
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
59760
59862
|
* positive number.
|
|
59761
59863
|
*
|
|
59762
|
-
* **Note:** When this property is set to something different
|
|
59864
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
59763
59865
|
* of `Carousel` is ignored.
|
|
59764
59866
|
*
|
|
59867
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
59868
|
+
*
|
|
59765
59869
|
* Default value is `1`.
|
|
59766
59870
|
*
|
|
59767
59871
|
*
|
|
59768
59872
|
* @returns Value of property `visiblePagesCount`
|
|
59769
59873
|
*/
|
|
59770
59874
|
getVisiblePagesCount(): int;
|
|
59875
|
+
/**
|
|
59876
|
+
* Sets a new value for property {@link #getMinPageWidth minPageWidth}.
|
|
59877
|
+
*
|
|
59878
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
59879
|
+
*
|
|
59880
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
59881
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
59882
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
59883
|
+
*
|
|
59884
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
59885
|
+
*
|
|
59886
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59887
|
+
*
|
|
59888
|
+
* Default value is `148`.
|
|
59889
|
+
*
|
|
59890
|
+
*
|
|
59891
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59892
|
+
*/
|
|
59893
|
+
setMinPageWidth(
|
|
59894
|
+
/**
|
|
59895
|
+
* New value for property `minPageWidth`
|
|
59896
|
+
*/
|
|
59897
|
+
iMinPageWidth?: int
|
|
59898
|
+
): this;
|
|
59899
|
+
/**
|
|
59900
|
+
* Sets a new value for property {@link #getResponsive responsive}.
|
|
59901
|
+
*
|
|
59902
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
59903
|
+
* based on the available width and the specified page width.
|
|
59904
|
+
*
|
|
59905
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
59906
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
59907
|
+
*
|
|
59908
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
59909
|
+
* of the carousel.
|
|
59910
|
+
*
|
|
59911
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59912
|
+
*
|
|
59913
|
+
* Default value is `false`.
|
|
59914
|
+
*
|
|
59915
|
+
*
|
|
59916
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
59917
|
+
*/
|
|
59918
|
+
setResponsive(
|
|
59919
|
+
/**
|
|
59920
|
+
* New value for property `responsive`
|
|
59921
|
+
*/
|
|
59922
|
+
bResponsive?: boolean
|
|
59923
|
+
): this;
|
|
59771
59924
|
/**
|
|
59772
59925
|
* Sets a new value for property {@link #getScrollMode scrollMode}.
|
|
59773
59926
|
*
|
|
@@ -59797,9 +59950,11 @@ declare namespace sap {
|
|
|
59797
59950
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
59798
59951
|
* positive number.
|
|
59799
59952
|
*
|
|
59800
|
-
* **Note:** When this property is set to something different
|
|
59953
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
59801
59954
|
* of `Carousel` is ignored.
|
|
59802
59955
|
*
|
|
59956
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
59957
|
+
*
|
|
59803
59958
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59804
59959
|
*
|
|
59805
59960
|
* Default value is `1`.
|
|
@@ -60904,7 +61059,6 @@ declare namespace sap {
|
|
|
60904
61059
|
* The last selected color in the ColorPalette.
|
|
60905
61060
|
*
|
|
60906
61061
|
* @since 1.122
|
|
60907
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
60908
61062
|
*
|
|
60909
61063
|
* @returns Value of property `selectedColor`
|
|
60910
61064
|
*/
|
|
@@ -60948,7 +61102,6 @@ declare namespace sap {
|
|
|
60948
61102
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
60949
61103
|
*
|
|
60950
61104
|
* @since 1.122
|
|
60951
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
60952
61105
|
*
|
|
60953
61106
|
* @returns Reference to `this` in order to allow method chaining
|
|
60954
61107
|
*/
|
|
@@ -61234,7 +61387,6 @@ declare namespace sap {
|
|
|
61234
61387
|
* The last selected color in the ColorPalette.
|
|
61235
61388
|
*
|
|
61236
61389
|
* @since 1.122
|
|
61237
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
61238
61390
|
*
|
|
61239
61391
|
* @returns Value of property `selectedColor`
|
|
61240
61392
|
*/
|
|
@@ -61365,7 +61517,6 @@ declare namespace sap {
|
|
|
61365
61517
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
61366
61518
|
*
|
|
61367
61519
|
* @since 1.122
|
|
61368
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
61369
61520
|
*
|
|
61370
61521
|
* @returns Reference to `this` in order to allow method chaining
|
|
61371
61522
|
*/
|
|
@@ -75541,6 +75692,7 @@ declare namespace sap {
|
|
|
75541
75692
|
* - `strong`
|
|
75542
75693
|
* - `span`
|
|
75543
75694
|
* - `u`
|
|
75695
|
+
* - `s`
|
|
75544
75696
|
* - `dl`
|
|
75545
75697
|
* - `dt`
|
|
75546
75698
|
* - `dd`
|
|
@@ -79781,8 +79933,7 @@ declare namespace sap {
|
|
|
79781
79933
|
*
|
|
79782
79934
|
* Default value is `Auto`.
|
|
79783
79935
|
*
|
|
79784
|
-
* @experimental As of version 1.121.
|
|
79785
|
-
* may be done before its official public release. Use at your own discretion.
|
|
79936
|
+
* @experimental As of version 1.121.
|
|
79786
79937
|
*
|
|
79787
79938
|
* @returns Value of property `interactionMode`
|
|
79788
79939
|
*/
|
|
@@ -80085,8 +80236,7 @@ declare namespace sap {
|
|
|
80085
80236
|
*
|
|
80086
80237
|
* Default value is `Auto`.
|
|
80087
80238
|
*
|
|
80088
|
-
* @experimental As of version 1.121.
|
|
80089
|
-
* may be done before its official public release. Use at your own discretion.
|
|
80239
|
+
* @experimental As of version 1.121.
|
|
80090
80240
|
*
|
|
80091
80241
|
* @returns Reference to `this` in order to allow method chaining
|
|
80092
80242
|
*/
|
|
@@ -92801,6 +92951,55 @@ declare namespace sap {
|
|
|
92801
92951
|
*/
|
|
92802
92952
|
oListener?: object
|
|
92803
92953
|
): this;
|
|
92954
|
+
/**
|
|
92955
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
|
|
92956
|
+
*
|
|
92957
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
92958
|
+
* otherwise it will be bound to this `sap.m.Menu` itself.
|
|
92959
|
+
*
|
|
92960
|
+
* Fired when the menu is opened.
|
|
92961
|
+
*
|
|
92962
|
+
* @since 1.146
|
|
92963
|
+
*
|
|
92964
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
92965
|
+
*/
|
|
92966
|
+
attachOpen(
|
|
92967
|
+
/**
|
|
92968
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
92969
|
+
* object when firing the event
|
|
92970
|
+
*/
|
|
92971
|
+
oData: object,
|
|
92972
|
+
/**
|
|
92973
|
+
* The function to be called when the event occurs
|
|
92974
|
+
*/
|
|
92975
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
92976
|
+
/**
|
|
92977
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
|
|
92978
|
+
*/
|
|
92979
|
+
oListener?: object
|
|
92980
|
+
): this;
|
|
92981
|
+
/**
|
|
92982
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
|
|
92983
|
+
*
|
|
92984
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
92985
|
+
* otherwise it will be bound to this `sap.m.Menu` itself.
|
|
92986
|
+
*
|
|
92987
|
+
* Fired when the menu is opened.
|
|
92988
|
+
*
|
|
92989
|
+
* @since 1.146
|
|
92990
|
+
*
|
|
92991
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
92992
|
+
*/
|
|
92993
|
+
attachOpen(
|
|
92994
|
+
/**
|
|
92995
|
+
* The function to be called when the event occurs
|
|
92996
|
+
*/
|
|
92997
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
92998
|
+
/**
|
|
92999
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
|
|
93000
|
+
*/
|
|
93001
|
+
oListener?: object
|
|
93002
|
+
): this;
|
|
92804
93003
|
/**
|
|
92805
93004
|
* Binds aggregation {@link #getItems items} to model data.
|
|
92806
93005
|
*
|
|
@@ -92890,6 +93089,25 @@ declare namespace sap {
|
|
|
92890
93089
|
*/
|
|
92891
93090
|
oListener?: object
|
|
92892
93091
|
): this;
|
|
93092
|
+
/**
|
|
93093
|
+
* Detaches event handler `fnFunction` from the {@link #event:open open} event of this `sap.m.Menu`.
|
|
93094
|
+
*
|
|
93095
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
93096
|
+
*
|
|
93097
|
+
* @since 1.146
|
|
93098
|
+
*
|
|
93099
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
93100
|
+
*/
|
|
93101
|
+
detachOpen(
|
|
93102
|
+
/**
|
|
93103
|
+
* The function to be called, when the event occurs
|
|
93104
|
+
*/
|
|
93105
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
93106
|
+
/**
|
|
93107
|
+
* Context object on which the given function had to be called
|
|
93108
|
+
*/
|
|
93109
|
+
oListener?: object
|
|
93110
|
+
): this;
|
|
92893
93111
|
/**
|
|
92894
93112
|
* Fires event {@link #event:beforeClose beforeClose} to attached listeners.
|
|
92895
93113
|
*
|
|
@@ -92933,6 +93151,20 @@ declare namespace sap {
|
|
|
92933
93151
|
*/
|
|
92934
93152
|
mParameters?: sap.m.Menu$ItemSelectedEventParameters
|
|
92935
93153
|
): this;
|
|
93154
|
+
/**
|
|
93155
|
+
* Fires event {@link #event:open open} to attached listeners.
|
|
93156
|
+
*
|
|
93157
|
+
* @since 1.146
|
|
93158
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
93159
|
+
*
|
|
93160
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
93161
|
+
*/
|
|
93162
|
+
fireOpen(
|
|
93163
|
+
/**
|
|
93164
|
+
* Parameters to pass along with the event
|
|
93165
|
+
*/
|
|
93166
|
+
mParameters?: object
|
|
93167
|
+
): this;
|
|
92936
93168
|
/**
|
|
92937
93169
|
* Gets content of aggregation {@link #getItems items}.
|
|
92938
93170
|
*
|
|
@@ -114571,7 +114803,7 @@ declare namespace sap {
|
|
|
114571
114803
|
*
|
|
114572
114804
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
114573
114805
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
114574
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
114806
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
114575
114807
|
*/
|
|
114576
114808
|
getCustomHeader(): sap.m.IBar;
|
|
114577
114809
|
/**
|
|
@@ -142971,7 +143203,8 @@ declare namespace sap {
|
|
|
142971
143203
|
/**
|
|
142972
143204
|
* Gets current value of property {@link #getIcon icon}.
|
|
142973
143205
|
*
|
|
142974
|
-
* Defines the list item icon.
|
|
143206
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
143207
|
+
* options, use the `avatar` aggregation.
|
|
142975
143208
|
*
|
|
142976
143209
|
*
|
|
142977
143210
|
* @returns Value of property `icon`
|
|
@@ -143182,7 +143415,8 @@ declare namespace sap {
|
|
|
143182
143415
|
/**
|
|
143183
143416
|
* Sets a new value for property {@link #getIcon icon}.
|
|
143184
143417
|
*
|
|
143185
|
-
* Defines the list item icon.
|
|
143418
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
143419
|
+
* options, use the `avatar` aggregation.
|
|
143186
143420
|
*
|
|
143187
143421
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
143188
143422
|
*
|
|
@@ -146524,8 +146758,7 @@ declare namespace sap {
|
|
|
146524
146758
|
/**
|
|
146525
146759
|
* Gets current value of property {@link #getAlternateRowColors alternateRowColors}.
|
|
146526
146760
|
*
|
|
146527
|
-
* Enables alternating table row colors.
|
|
146528
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
146761
|
+
* Enables alternating table row colors.
|
|
146529
146762
|
*
|
|
146530
146763
|
* Default value is `false`.
|
|
146531
146764
|
*
|
|
@@ -146748,8 +146981,7 @@ declare namespace sap {
|
|
|
146748
146981
|
/**
|
|
146749
146982
|
* Sets a new value for property {@link #getAlternateRowColors alternateRowColors}.
|
|
146750
146983
|
*
|
|
146751
|
-
* Enables alternating table row colors.
|
|
146752
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
146984
|
+
* Enables alternating table row colors.
|
|
146753
146985
|
*
|
|
146754
146986
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
146755
146987
|
*
|
|
@@ -160540,6 +160772,53 @@ declare namespace sap {
|
|
|
160540
160772
|
*/
|
|
160541
160773
|
oListener?: object
|
|
160542
160774
|
): this;
|
|
160775
|
+
/**
|
|
160776
|
+
* Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
160777
|
+
*
|
|
160778
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
160779
|
+
* otherwise it will be bound to this `sap.m.VariantManagement` itself.
|
|
160780
|
+
*
|
|
160781
|
+
* This event is fired when users opens the Manage Views dialog.
|
|
160782
|
+
*
|
|
160783
|
+
*
|
|
160784
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
160785
|
+
*/
|
|
160786
|
+
attachManageOpen(
|
|
160787
|
+
/**
|
|
160788
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
160789
|
+
* object when firing the event
|
|
160790
|
+
*/
|
|
160791
|
+
oData: object,
|
|
160792
|
+
/**
|
|
160793
|
+
* The function to be called when the event occurs
|
|
160794
|
+
*/
|
|
160795
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
160796
|
+
/**
|
|
160797
|
+
* Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
|
|
160798
|
+
*/
|
|
160799
|
+
oListener?: object
|
|
160800
|
+
): this;
|
|
160801
|
+
/**
|
|
160802
|
+
* Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
160803
|
+
*
|
|
160804
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
160805
|
+
* otherwise it will be bound to this `sap.m.VariantManagement` itself.
|
|
160806
|
+
*
|
|
160807
|
+
* This event is fired when users opens the Manage Views dialog.
|
|
160808
|
+
*
|
|
160809
|
+
*
|
|
160810
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
160811
|
+
*/
|
|
160812
|
+
attachManageOpen(
|
|
160813
|
+
/**
|
|
160814
|
+
* The function to be called when the event occurs
|
|
160815
|
+
*/
|
|
160816
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
160817
|
+
/**
|
|
160818
|
+
* Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
|
|
160819
|
+
*/
|
|
160820
|
+
oListener?: object
|
|
160821
|
+
): this;
|
|
160543
160822
|
/**
|
|
160544
160823
|
* Attaches event handler `fnFunction` to the {@link #event:save save} event of this `sap.m.VariantManagement`.
|
|
160545
160824
|
*
|
|
@@ -160695,6 +160974,24 @@ declare namespace sap {
|
|
|
160695
160974
|
*/
|
|
160696
160975
|
oListener?: object
|
|
160697
160976
|
): this;
|
|
160977
|
+
/**
|
|
160978
|
+
* Detaches event handler `fnFunction` from the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
160979
|
+
*
|
|
160980
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
160981
|
+
*
|
|
160982
|
+
*
|
|
160983
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
160984
|
+
*/
|
|
160985
|
+
detachManageOpen(
|
|
160986
|
+
/**
|
|
160987
|
+
* The function to be called, when the event occurs
|
|
160988
|
+
*/
|
|
160989
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
160990
|
+
/**
|
|
160991
|
+
* Context object on which the given function had to be called
|
|
160992
|
+
*/
|
|
160993
|
+
oListener?: object
|
|
160994
|
+
): this;
|
|
160698
160995
|
/**
|
|
160699
160996
|
* Detaches event handler `fnFunction` from the {@link #event:save save} event of this `sap.m.VariantManagement`.
|
|
160700
160997
|
*
|
|
@@ -160770,6 +161067,19 @@ declare namespace sap {
|
|
|
160770
161067
|
*/
|
|
160771
161068
|
mParameters?: object
|
|
160772
161069
|
): this;
|
|
161070
|
+
/**
|
|
161071
|
+
* Fires event {@link #event:manageOpen manageOpen} to attached listeners.
|
|
161072
|
+
*
|
|
161073
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
161074
|
+
*
|
|
161075
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
161076
|
+
*/
|
|
161077
|
+
fireManageOpen(
|
|
161078
|
+
/**
|
|
161079
|
+
* Parameters to pass along with the event
|
|
161080
|
+
*/
|
|
161081
|
+
mParameters?: object
|
|
161082
|
+
): this;
|
|
160773
161083
|
/**
|
|
160774
161084
|
* Fires event {@link #event:save save} to attached listeners.
|
|
160775
161085
|
*
|
|
@@ -167415,8 +167725,6 @@ declare namespace sap {
|
|
|
167415
167725
|
* feature works under the Browser's Cross-Origin Resource Sharing (CORS) policy. This means that a web
|
|
167416
167726
|
* application using those APIs can only request resources from the same origin the application was loaded
|
|
167417
167727
|
* from unless the response from other origins includes the right CORS headers.
|
|
167418
|
-
*
|
|
167419
|
-
* @experimental As of version 1.106.
|
|
167420
167728
|
*/
|
|
167421
167729
|
InlineSvg = "InlineSvg",
|
|
167422
167730
|
}
|
|
@@ -169390,6 +169698,12 @@ declare namespace sap {
|
|
|
169390
169698
|
* @since 1.54
|
|
169391
169699
|
*/
|
|
169392
169700
|
enum TimePickerMaskMode {
|
|
169701
|
+
/**
|
|
169702
|
+
* The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
|
|
169703
|
+
* fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
|
|
169704
|
+
* may lead to unpredictable behavior.
|
|
169705
|
+
*/
|
|
169706
|
+
Enforce = "Enforce",
|
|
169393
169707
|
/**
|
|
169394
169708
|
* The mask is disabled for the `sap.m.TimePicker`.
|
|
169395
169709
|
*/
|
|
@@ -170591,6 +170905,11 @@ declare namespace sap {
|
|
|
170591
170905
|
Menu
|
|
170592
170906
|
>;
|
|
170593
170907
|
|
|
170908
|
+
/**
|
|
170909
|
+
* Event object of the Menu#open event.
|
|
170910
|
+
*/
|
|
170911
|
+
type Menu$OpenEvent = sap.ui.base.Event<Menu$OpenEventParameters, Menu>;
|
|
170912
|
+
|
|
170594
170913
|
/**
|
|
170595
170914
|
* Event object of the MenuButton#beforeMenuOpen event.
|
|
170596
170915
|
*/
|
|
@@ -172202,6 +172521,14 @@ declare namespace sap {
|
|
|
172202
172521
|
VariantManagement
|
|
172203
172522
|
>;
|
|
172204
172523
|
|
|
172524
|
+
/**
|
|
172525
|
+
* Event object of the VariantManagement#manageOpen event.
|
|
172526
|
+
*/
|
|
172527
|
+
type VariantManagement$ManageOpenEvent = sap.ui.base.Event<
|
|
172528
|
+
VariantManagement$ManageOpenEventParameters,
|
|
172529
|
+
VariantManagement
|
|
172530
|
+
>;
|
|
172531
|
+
|
|
172205
172532
|
/**
|
|
172206
172533
|
* Event object of the VariantManagement#save event.
|
|
172207
172534
|
*/
|