@openui5/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 +73 -526
- package/types/sap.m.d.ts +350 -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 +1181 -478
- 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 -266
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +379 -51
- 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 +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +74 -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/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -1658,8 +1658,6 @@ declare module "sap/m/library" {
|
|
|
1658
1658
|
* feature works under the Browser's Cross-Origin Resource Sharing (CORS) policy. This means that a web
|
|
1659
1659
|
* application using those APIs can only request resources from the same origin the application was loaded
|
|
1660
1660
|
* from unless the response from other origins includes the right CORS headers.
|
|
1661
|
-
*
|
|
1662
|
-
* @experimental As of version 1.106.
|
|
1663
1661
|
*/
|
|
1664
1662
|
InlineSvg = "InlineSvg",
|
|
1665
1663
|
}
|
|
@@ -3996,6 +3994,12 @@ declare module "sap/m/library" {
|
|
|
3996
3994
|
* @since 1.54
|
|
3997
3995
|
*/
|
|
3998
3996
|
export enum TimePickerMaskMode {
|
|
3997
|
+
/**
|
|
3998
|
+
* The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
|
|
3999
|
+
* fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
|
|
4000
|
+
* may lead to unpredictable behavior.
|
|
4001
|
+
*/
|
|
4002
|
+
Enforce = "Enforce",
|
|
3999
4003
|
/**
|
|
4000
4004
|
* The mask is disabled for the `sap.m.TimePicker`.
|
|
4001
4005
|
*/
|
|
@@ -4539,6 +4543,20 @@ declare module "sap/m/library" {
|
|
|
4539
4543
|
* @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
|
|
4540
4544
|
*/
|
|
4541
4545
|
getVerticalScrolling?(): boolean;
|
|
4546
|
+
/**
|
|
4547
|
+
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
|
|
4548
|
+
* the popup is closed
|
|
4549
|
+
*
|
|
4550
|
+
* @since 1.145
|
|
4551
|
+
*
|
|
4552
|
+
* @returns A Promise that is fullfilled if the panel is ready to be closed
|
|
4553
|
+
*/
|
|
4554
|
+
onBeforeClose?(
|
|
4555
|
+
/**
|
|
4556
|
+
* reason for closing the container
|
|
4557
|
+
*/
|
|
4558
|
+
sReason: string
|
|
4559
|
+
): Promise<any>;
|
|
4542
4560
|
/**
|
|
4543
4561
|
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
|
|
4544
4562
|
* reset on the panel
|
|
@@ -12134,6 +12152,8 @@ declare module "sap/m/Carousel" {
|
|
|
12134
12152
|
* the navigation arrows.
|
|
12135
12153
|
* - On desktop, navigation is done with the navigation arrows.
|
|
12136
12154
|
* - The paging indicator (when activated) is visible on each form factor.
|
|
12155
|
+
* - When using {@link sap.m.CarouselLayout CarouselLayout} with the `responsive` property set to `true`,
|
|
12156
|
+
* the number of visible pages adjusts automatically based on the available width and the specified `minPageWidth`.
|
|
12137
12157
|
*/
|
|
12138
12158
|
export default class Carousel extends Control {
|
|
12139
12159
|
/**
|
|
@@ -13363,6 +13383,41 @@ declare module "sap/m/CarouselLayout" {
|
|
|
13363
13383
|
* @returns Metadata object describing this class
|
|
13364
13384
|
*/
|
|
13365
13385
|
static getMetadata(): ManagedObjectMetadata;
|
|
13386
|
+
/**
|
|
13387
|
+
* Gets current value of property {@link #getMinPageWidth minPageWidth}.
|
|
13388
|
+
*
|
|
13389
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
13390
|
+
*
|
|
13391
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
13392
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
13393
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
13394
|
+
*
|
|
13395
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
13396
|
+
*
|
|
13397
|
+
* Default value is `148`.
|
|
13398
|
+
*
|
|
13399
|
+
*
|
|
13400
|
+
* @returns Value of property `minPageWidth`
|
|
13401
|
+
*/
|
|
13402
|
+
getMinPageWidth(): int;
|
|
13403
|
+
/**
|
|
13404
|
+
* Gets current value of property {@link #getResponsive responsive}.
|
|
13405
|
+
*
|
|
13406
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
13407
|
+
* based on the available width and the specified page width.
|
|
13408
|
+
*
|
|
13409
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
13410
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
13411
|
+
*
|
|
13412
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
13413
|
+
* of the carousel.
|
|
13414
|
+
*
|
|
13415
|
+
* Default value is `false`.
|
|
13416
|
+
*
|
|
13417
|
+
*
|
|
13418
|
+
* @returns Value of property `responsive`
|
|
13419
|
+
*/
|
|
13420
|
+
getResponsive(): boolean;
|
|
13366
13421
|
/**
|
|
13367
13422
|
* Gets current value of property {@link #getScrollMode scrollMode}.
|
|
13368
13423
|
*
|
|
@@ -13385,15 +13440,66 @@ declare module "sap/m/CarouselLayout" {
|
|
|
13385
13440
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
13386
13441
|
* positive number.
|
|
13387
13442
|
*
|
|
13388
|
-
* **Note:** When this property is set to something different
|
|
13443
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
13389
13444
|
* of `Carousel` is ignored.
|
|
13390
13445
|
*
|
|
13446
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
13447
|
+
*
|
|
13391
13448
|
* Default value is `1`.
|
|
13392
13449
|
*
|
|
13393
13450
|
*
|
|
13394
13451
|
* @returns Value of property `visiblePagesCount`
|
|
13395
13452
|
*/
|
|
13396
13453
|
getVisiblePagesCount(): int;
|
|
13454
|
+
/**
|
|
13455
|
+
* Sets a new value for property {@link #getMinPageWidth minPageWidth}.
|
|
13456
|
+
*
|
|
13457
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
13458
|
+
*
|
|
13459
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
13460
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
13461
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
13462
|
+
*
|
|
13463
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
13464
|
+
*
|
|
13465
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13466
|
+
*
|
|
13467
|
+
* Default value is `148`.
|
|
13468
|
+
*
|
|
13469
|
+
*
|
|
13470
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13471
|
+
*/
|
|
13472
|
+
setMinPageWidth(
|
|
13473
|
+
/**
|
|
13474
|
+
* New value for property `minPageWidth`
|
|
13475
|
+
*/
|
|
13476
|
+
iMinPageWidth?: int
|
|
13477
|
+
): this;
|
|
13478
|
+
/**
|
|
13479
|
+
* Sets a new value for property {@link #getResponsive responsive}.
|
|
13480
|
+
*
|
|
13481
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
13482
|
+
* based on the available width and the specified page width.
|
|
13483
|
+
*
|
|
13484
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
13485
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
13486
|
+
*
|
|
13487
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
13488
|
+
* of the carousel.
|
|
13489
|
+
*
|
|
13490
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13491
|
+
*
|
|
13492
|
+
* Default value is `false`.
|
|
13493
|
+
*
|
|
13494
|
+
*
|
|
13495
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13496
|
+
*/
|
|
13497
|
+
setResponsive(
|
|
13498
|
+
/**
|
|
13499
|
+
* New value for property `responsive`
|
|
13500
|
+
*/
|
|
13501
|
+
bResponsive?: boolean
|
|
13502
|
+
): this;
|
|
13397
13503
|
/**
|
|
13398
13504
|
* Sets a new value for property {@link #getScrollMode scrollMode}.
|
|
13399
13505
|
*
|
|
@@ -13423,9 +13529,11 @@ declare module "sap/m/CarouselLayout" {
|
|
|
13423
13529
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
13424
13530
|
* positive number.
|
|
13425
13531
|
*
|
|
13426
|
-
* **Note:** When this property is set to something different
|
|
13532
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
13427
13533
|
* of `Carousel` is ignored.
|
|
13428
13534
|
*
|
|
13535
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
13536
|
+
*
|
|
13429
13537
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13430
13538
|
*
|
|
13431
13539
|
* Default value is `1`.
|
|
@@ -13448,8 +13556,10 @@ declare module "sap/m/CarouselLayout" {
|
|
|
13448
13556
|
* Defines how many pages are displayed in the visible area of the `Carousel` control. Value should be a
|
|
13449
13557
|
* positive number.
|
|
13450
13558
|
*
|
|
13451
|
-
* **Note:** When this property is set to something different
|
|
13559
|
+
* **Note:** When this property is set to something different from the default value, the `loop` property
|
|
13452
13560
|
* of `Carousel` is ignored.
|
|
13561
|
+
*
|
|
13562
|
+
* **Note:** This property is ignored when the `responsive` property is set to `true`.
|
|
13453
13563
|
*/
|
|
13454
13564
|
visiblePagesCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
13455
13565
|
|
|
@@ -13466,6 +13576,29 @@ declare module "sap/m/CarouselLayout" {
|
|
|
13466
13576
|
| (CarouselScrollMode | keyof typeof CarouselScrollMode)
|
|
13467
13577
|
| PropertyBindingInfo
|
|
13468
13578
|
| `{${string}}`;
|
|
13579
|
+
|
|
13580
|
+
/**
|
|
13581
|
+
* Activates the responsive layout mode, where the number of visible carousel pages automatically adjusts
|
|
13582
|
+
* based on the available width and the specified page width.
|
|
13583
|
+
*
|
|
13584
|
+
* When this option is enabled, the carousel dynamically calculates and displays as many items as can fit
|
|
13585
|
+
* within the viewport while adhering to the `minPageWidth` constraint.
|
|
13586
|
+
*
|
|
13587
|
+
* **Note:** Enabling this option overrides the `visiblePagesCount` property and disables the `loop` functionality
|
|
13588
|
+
* of the carousel.
|
|
13589
|
+
*/
|
|
13590
|
+
responsive?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
13591
|
+
|
|
13592
|
+
/**
|
|
13593
|
+
* Defines the minimum width, in pixels, for each page to be displayed in the `Carousel` control.
|
|
13594
|
+
*
|
|
13595
|
+
* This property is used as a constraint when `responsive` mode is enabled, ensuring that pages are never
|
|
13596
|
+
* rendered smaller than this specified width. The carousel automatically calculates the number of pages
|
|
13597
|
+
* that can fit within the available viewport while respecting the specified minimum width requirement.
|
|
13598
|
+
*
|
|
13599
|
+
* **Note:** This property is only effective when the `responsive` property is set to `true`.
|
|
13600
|
+
*/
|
|
13601
|
+
minPageWidth?: int | PropertyBindingInfo | `{${string}}`;
|
|
13469
13602
|
}
|
|
13470
13603
|
}
|
|
13471
13604
|
|
|
@@ -14767,7 +14900,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14767
14900
|
* The last selected color in the ColorPalette.
|
|
14768
14901
|
*
|
|
14769
14902
|
* @since 1.122
|
|
14770
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14771
14903
|
*
|
|
14772
14904
|
* @returns Value of property `selectedColor`
|
|
14773
14905
|
*/
|
|
@@ -14811,7 +14943,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14811
14943
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14812
14944
|
*
|
|
14813
14945
|
* @since 1.122
|
|
14814
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14815
14946
|
*
|
|
14816
14947
|
* @returns Reference to `this` in order to allow method chaining
|
|
14817
14948
|
*/
|
|
@@ -14835,7 +14966,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14835
14966
|
* The last selected color in the ColorPalette.
|
|
14836
14967
|
*
|
|
14837
14968
|
* @since 1.122
|
|
14838
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14839
14969
|
*/
|
|
14840
14970
|
selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
14841
14971
|
|
|
@@ -15223,7 +15353,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15223
15353
|
* The last selected color in the ColorPalette.
|
|
15224
15354
|
*
|
|
15225
15355
|
* @since 1.122
|
|
15226
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15227
15356
|
*
|
|
15228
15357
|
* @returns Value of property `selectedColor`
|
|
15229
15358
|
*/
|
|
@@ -15356,7 +15485,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15356
15485
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15357
15486
|
*
|
|
15358
15487
|
* @since 1.122
|
|
15359
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15360
15488
|
*
|
|
15361
15489
|
* @returns Reference to `this` in order to allow method chaining
|
|
15362
15490
|
*/
|
|
@@ -15442,7 +15570,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15442
15570
|
* The last selected color in the ColorPalette.
|
|
15443
15571
|
*
|
|
15444
15572
|
* @since 1.122
|
|
15445
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15446
15573
|
*/
|
|
15447
15574
|
selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
15448
15575
|
|
|
@@ -32963,6 +33090,7 @@ declare module "sap/m/FormattedText" {
|
|
|
32963
33090
|
* - `strong`
|
|
32964
33091
|
* - `span`
|
|
32965
33092
|
* - `u`
|
|
33093
|
+
* - `s`
|
|
32966
33094
|
* - `dl`
|
|
32967
33095
|
* - `dt`
|
|
32968
33096
|
* - `dd`
|
|
@@ -33248,6 +33376,7 @@ declare module "sap/m/FormattedText" {
|
|
|
33248
33376
|
* - `strong`
|
|
33249
33377
|
* - `span`
|
|
33250
33378
|
* - `u`
|
|
33379
|
+
* - `s`
|
|
33251
33380
|
* - `dl`
|
|
33252
33381
|
* - `dt`
|
|
33253
33382
|
* - `dd`
|
|
@@ -38281,8 +38410,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
38281
38410
|
*
|
|
38282
38411
|
* Default value is `Auto`.
|
|
38283
38412
|
*
|
|
38284
|
-
* @experimental As of version 1.121.
|
|
38285
|
-
* may be done before its official public release. Use at your own discretion.
|
|
38413
|
+
* @experimental As of version 1.121.
|
|
38286
38414
|
*
|
|
38287
38415
|
* @returns Value of property `interactionMode`
|
|
38288
38416
|
*/
|
|
@@ -38585,8 +38713,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
38585
38713
|
*
|
|
38586
38714
|
* Default value is `Auto`.
|
|
38587
38715
|
*
|
|
38588
|
-
* @experimental As of version 1.121.
|
|
38589
|
-
* may be done before its official public release. Use at your own discretion.
|
|
38716
|
+
* @experimental As of version 1.121.
|
|
38590
38717
|
*
|
|
38591
38718
|
* @returns Reference to `this` in order to allow method chaining
|
|
38592
38719
|
*/
|
|
@@ -38697,8 +38824,7 @@ declare module "sap/m/IconTabFilter" {
|
|
|
38697
38824
|
/**
|
|
38698
38825
|
* Specifies the interaction mode.
|
|
38699
38826
|
*
|
|
38700
|
-
* @experimental As of version 1.121.
|
|
38701
|
-
* may be done before its official public release. Use at your own discretion.
|
|
38827
|
+
* @experimental As of version 1.121.
|
|
38702
38828
|
*/
|
|
38703
38829
|
interactionMode?:
|
|
38704
38830
|
| (
|
|
@@ -55961,6 +56087,55 @@ declare module "sap/m/Menu" {
|
|
|
55961
56087
|
*/
|
|
55962
56088
|
oListener?: object
|
|
55963
56089
|
): this;
|
|
56090
|
+
/**
|
|
56091
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
|
|
56092
|
+
*
|
|
56093
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
56094
|
+
* otherwise it will be bound to this `sap.m.Menu` itself.
|
|
56095
|
+
*
|
|
56096
|
+
* Fired when the menu is opened.
|
|
56097
|
+
*
|
|
56098
|
+
* @since 1.146
|
|
56099
|
+
*
|
|
56100
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
56101
|
+
*/
|
|
56102
|
+
attachOpen(
|
|
56103
|
+
/**
|
|
56104
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
56105
|
+
* object when firing the event
|
|
56106
|
+
*/
|
|
56107
|
+
oData: object,
|
|
56108
|
+
/**
|
|
56109
|
+
* The function to be called when the event occurs
|
|
56110
|
+
*/
|
|
56111
|
+
fnFunction: (p1: Event) => void,
|
|
56112
|
+
/**
|
|
56113
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
|
|
56114
|
+
*/
|
|
56115
|
+
oListener?: object
|
|
56116
|
+
): this;
|
|
56117
|
+
/**
|
|
56118
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.Menu`.
|
|
56119
|
+
*
|
|
56120
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
56121
|
+
* otherwise it will be bound to this `sap.m.Menu` itself.
|
|
56122
|
+
*
|
|
56123
|
+
* Fired when the menu is opened.
|
|
56124
|
+
*
|
|
56125
|
+
* @since 1.146
|
|
56126
|
+
*
|
|
56127
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
56128
|
+
*/
|
|
56129
|
+
attachOpen(
|
|
56130
|
+
/**
|
|
56131
|
+
* The function to be called when the event occurs
|
|
56132
|
+
*/
|
|
56133
|
+
fnFunction: (p1: Event) => void,
|
|
56134
|
+
/**
|
|
56135
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Menu` itself
|
|
56136
|
+
*/
|
|
56137
|
+
oListener?: object
|
|
56138
|
+
): this;
|
|
55964
56139
|
/**
|
|
55965
56140
|
* Binds aggregation {@link #getItems items} to model data.
|
|
55966
56141
|
*
|
|
@@ -56050,6 +56225,25 @@ declare module "sap/m/Menu" {
|
|
|
56050
56225
|
*/
|
|
56051
56226
|
oListener?: object
|
|
56052
56227
|
): this;
|
|
56228
|
+
/**
|
|
56229
|
+
* Detaches event handler `fnFunction` from the {@link #event:open open} event of this `sap.m.Menu`.
|
|
56230
|
+
*
|
|
56231
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
56232
|
+
*
|
|
56233
|
+
* @since 1.146
|
|
56234
|
+
*
|
|
56235
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
56236
|
+
*/
|
|
56237
|
+
detachOpen(
|
|
56238
|
+
/**
|
|
56239
|
+
* The function to be called, when the event occurs
|
|
56240
|
+
*/
|
|
56241
|
+
fnFunction: (p1: Event) => void,
|
|
56242
|
+
/**
|
|
56243
|
+
* Context object on which the given function had to be called
|
|
56244
|
+
*/
|
|
56245
|
+
oListener?: object
|
|
56246
|
+
): this;
|
|
56053
56247
|
/**
|
|
56054
56248
|
* Fires event {@link #event:beforeClose beforeClose} to attached listeners.
|
|
56055
56249
|
*
|
|
@@ -56093,6 +56287,20 @@ declare module "sap/m/Menu" {
|
|
|
56093
56287
|
*/
|
|
56094
56288
|
mParameters?: Menu$ItemSelectedEventParameters
|
|
56095
56289
|
): this;
|
|
56290
|
+
/**
|
|
56291
|
+
* Fires event {@link #event:open open} to attached listeners.
|
|
56292
|
+
*
|
|
56293
|
+
* @since 1.146
|
|
56294
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
56295
|
+
*
|
|
56296
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
56297
|
+
*/
|
|
56298
|
+
fireOpen(
|
|
56299
|
+
/**
|
|
56300
|
+
* Parameters to pass along with the event
|
|
56301
|
+
*/
|
|
56302
|
+
mParameters?: object
|
|
56303
|
+
): this;
|
|
56096
56304
|
/**
|
|
56097
56305
|
* Gets content of aggregation {@link #getItems items}.
|
|
56098
56306
|
*
|
|
@@ -56251,6 +56459,13 @@ declare module "sap/m/Menu" {
|
|
|
56251
56459
|
*/
|
|
56252
56460
|
closed?: (oEvent: Event) => void;
|
|
56253
56461
|
|
|
56462
|
+
/**
|
|
56463
|
+
* Fired when the menu is opened.
|
|
56464
|
+
*
|
|
56465
|
+
* @since 1.146
|
|
56466
|
+
*/
|
|
56467
|
+
open?: (oEvent: Event) => void;
|
|
56468
|
+
|
|
56254
56469
|
/**
|
|
56255
56470
|
* Fired before the menu is closed. This event can be prevented which effectively prevents the menu from
|
|
56256
56471
|
* closing.
|
|
@@ -56305,6 +56520,16 @@ declare module "sap/m/Menu" {
|
|
|
56305
56520
|
Menu$ItemSelectedEventParameters,
|
|
56306
56521
|
Menu
|
|
56307
56522
|
>;
|
|
56523
|
+
|
|
56524
|
+
/**
|
|
56525
|
+
* Parameters of the Menu#open event.
|
|
56526
|
+
*/
|
|
56527
|
+
export interface Menu$OpenEventParameters {}
|
|
56528
|
+
|
|
56529
|
+
/**
|
|
56530
|
+
* Event object of the Menu#open event.
|
|
56531
|
+
*/
|
|
56532
|
+
export type Menu$OpenEvent = Event<Menu$OpenEventParameters, Menu>;
|
|
56308
56533
|
}
|
|
56309
56534
|
|
|
56310
56535
|
declare module "sap/m/MenuButton" {
|
|
@@ -86235,7 +86460,7 @@ declare module "sap/m/Page" {
|
|
|
86235
86460
|
*
|
|
86236
86461
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
86237
86462
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
86238
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
86463
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
86239
86464
|
*/
|
|
86240
86465
|
getCustomHeader(): IBar;
|
|
86241
86466
|
/**
|
|
@@ -87062,7 +87287,7 @@ declare module "sap/m/Page" {
|
|
|
87062
87287
|
/**
|
|
87063
87288
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
87064
87289
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
87065
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
87290
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
87066
87291
|
*/
|
|
87067
87292
|
customHeader?: IBar;
|
|
87068
87293
|
|
|
@@ -135965,7 +136190,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
135965
136190
|
/**
|
|
135966
136191
|
* Gets current value of property {@link #getIcon icon}.
|
|
135967
136192
|
*
|
|
135968
|
-
* Defines the list item icon.
|
|
136193
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136194
|
+
* options, use the `avatar` aggregation.
|
|
135969
136195
|
*
|
|
135970
136196
|
*
|
|
135971
136197
|
* @returns Value of property `icon`
|
|
@@ -136176,7 +136402,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
136176
136402
|
/**
|
|
136177
136403
|
* Sets a new value for property {@link #getIcon icon}.
|
|
136178
136404
|
*
|
|
136179
|
-
* Defines the list item icon.
|
|
136405
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136406
|
+
* options, use the `avatar` aggregation.
|
|
136180
136407
|
*
|
|
136181
136408
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
136182
136409
|
*
|
|
@@ -136411,7 +136638,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
136411
136638
|
description?: string | PropertyBindingInfo;
|
|
136412
136639
|
|
|
136413
136640
|
/**
|
|
136414
|
-
* Defines the list item icon.
|
|
136641
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136642
|
+
* options, use the `avatar` aggregation.
|
|
136415
136643
|
*/
|
|
136416
136644
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
136417
136645
|
|
|
@@ -140325,8 +140553,7 @@ declare module "sap/m/Table" {
|
|
|
140325
140553
|
/**
|
|
140326
140554
|
* Gets current value of property {@link #getAlternateRowColors alternateRowColors}.
|
|
140327
140555
|
*
|
|
140328
|
-
* Enables alternating table row colors.
|
|
140329
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
140556
|
+
* Enables alternating table row colors.
|
|
140330
140557
|
*
|
|
140331
140558
|
* Default value is `false`.
|
|
140332
140559
|
*
|
|
@@ -140549,8 +140776,7 @@ declare module "sap/m/Table" {
|
|
|
140549
140776
|
/**
|
|
140550
140777
|
* Sets a new value for property {@link #getAlternateRowColors alternateRowColors}.
|
|
140551
140778
|
*
|
|
140552
|
-
* Enables alternating table row colors.
|
|
140553
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
140779
|
+
* Enables alternating table row colors.
|
|
140554
140780
|
*
|
|
140555
140781
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
140556
140782
|
*
|
|
@@ -140826,8 +141052,7 @@ declare module "sap/m/Table" {
|
|
|
140826
141052
|
showOverlay?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
140827
141053
|
|
|
140828
141054
|
/**
|
|
140829
|
-
* Enables alternating table row colors.
|
|
140830
|
-
* Deep themes. Alternate row coloring is not available for the High Contrast Black/White themes.
|
|
141055
|
+
* Enables alternating table row colors.
|
|
140831
141056
|
*
|
|
140832
141057
|
* @since 1.52
|
|
140833
141058
|
*/
|
|
@@ -169767,6 +169992,53 @@ declare module "sap/m/VariantManagement" {
|
|
|
169767
169992
|
*/
|
|
169768
169993
|
oListener?: object
|
|
169769
169994
|
): this;
|
|
169995
|
+
/**
|
|
169996
|
+
* Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
169997
|
+
*
|
|
169998
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
169999
|
+
* otherwise it will be bound to this `sap.m.VariantManagement` itself.
|
|
170000
|
+
*
|
|
170001
|
+
* This event is fired when users opens the Manage Views dialog.
|
|
170002
|
+
*
|
|
170003
|
+
*
|
|
170004
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
170005
|
+
*/
|
|
170006
|
+
attachManageOpen(
|
|
170007
|
+
/**
|
|
170008
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
170009
|
+
* object when firing the event
|
|
170010
|
+
*/
|
|
170011
|
+
oData: object,
|
|
170012
|
+
/**
|
|
170013
|
+
* The function to be called when the event occurs
|
|
170014
|
+
*/
|
|
170015
|
+
fnFunction: (p1: Event) => void,
|
|
170016
|
+
/**
|
|
170017
|
+
* Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
|
|
170018
|
+
*/
|
|
170019
|
+
oListener?: object
|
|
170020
|
+
): this;
|
|
170021
|
+
/**
|
|
170022
|
+
* Attaches event handler `fnFunction` to the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
170023
|
+
*
|
|
170024
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
170025
|
+
* otherwise it will be bound to this `sap.m.VariantManagement` itself.
|
|
170026
|
+
*
|
|
170027
|
+
* This event is fired when users opens the Manage Views dialog.
|
|
170028
|
+
*
|
|
170029
|
+
*
|
|
170030
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
170031
|
+
*/
|
|
170032
|
+
attachManageOpen(
|
|
170033
|
+
/**
|
|
170034
|
+
* The function to be called when the event occurs
|
|
170035
|
+
*/
|
|
170036
|
+
fnFunction: (p1: Event) => void,
|
|
170037
|
+
/**
|
|
170038
|
+
* Context object to call the event handler with. Defaults to this `sap.m.VariantManagement` itself
|
|
170039
|
+
*/
|
|
170040
|
+
oListener?: object
|
|
170041
|
+
): this;
|
|
169770
170042
|
/**
|
|
169771
170043
|
* Attaches event handler `fnFunction` to the {@link #event:save save} event of this `sap.m.VariantManagement`.
|
|
169772
170044
|
*
|
|
@@ -169922,6 +170194,24 @@ declare module "sap/m/VariantManagement" {
|
|
|
169922
170194
|
*/
|
|
169923
170195
|
oListener?: object
|
|
169924
170196
|
): this;
|
|
170197
|
+
/**
|
|
170198
|
+
* Detaches event handler `fnFunction` from the {@link #event:manageOpen manageOpen} event of this `sap.m.VariantManagement`.
|
|
170199
|
+
*
|
|
170200
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
170201
|
+
*
|
|
170202
|
+
*
|
|
170203
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
170204
|
+
*/
|
|
170205
|
+
detachManageOpen(
|
|
170206
|
+
/**
|
|
170207
|
+
* The function to be called, when the event occurs
|
|
170208
|
+
*/
|
|
170209
|
+
fnFunction: (p1: Event) => void,
|
|
170210
|
+
/**
|
|
170211
|
+
* Context object on which the given function had to be called
|
|
170212
|
+
*/
|
|
170213
|
+
oListener?: object
|
|
170214
|
+
): this;
|
|
169925
170215
|
/**
|
|
169926
170216
|
* Detaches event handler `fnFunction` from the {@link #event:save save} event of this `sap.m.VariantManagement`.
|
|
169927
170217
|
*
|
|
@@ -169997,6 +170287,19 @@ declare module "sap/m/VariantManagement" {
|
|
|
169997
170287
|
*/
|
|
169998
170288
|
mParameters?: object
|
|
169999
170289
|
): this;
|
|
170290
|
+
/**
|
|
170291
|
+
* Fires event {@link #event:manageOpen manageOpen} to attached listeners.
|
|
170292
|
+
*
|
|
170293
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
170294
|
+
*
|
|
170295
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
170296
|
+
*/
|
|
170297
|
+
fireManageOpen(
|
|
170298
|
+
/**
|
|
170299
|
+
* Parameters to pass along with the event
|
|
170300
|
+
*/
|
|
170301
|
+
mParameters?: object
|
|
170302
|
+
): this;
|
|
170000
170303
|
/**
|
|
170001
170304
|
* Fires event {@link #event:save save} to attached listeners.
|
|
170002
170305
|
*
|
|
@@ -170727,6 +171030,11 @@ declare module "sap/m/VariantManagement" {
|
|
|
170727
171030
|
*/
|
|
170728
171031
|
manageCancel?: (oEvent: Event) => void;
|
|
170729
171032
|
|
|
171033
|
+
/**
|
|
171034
|
+
* This event is fired when users opens the Manage Views dialog.
|
|
171035
|
+
*/
|
|
171036
|
+
manageOpen?: (oEvent: Event) => void;
|
|
171037
|
+
|
|
170730
171038
|
/**
|
|
170731
171039
|
* This event is fired when users apply changes variant information in the Manage Views dialog. Some
|
|
170732
171040
|
* of the parameters may be ommitted, depending on user selection.
|
|
@@ -170810,6 +171118,19 @@ declare module "sap/m/VariantManagement" {
|
|
|
170810
171118
|
VariantManagement
|
|
170811
171119
|
>;
|
|
170812
171120
|
|
|
171121
|
+
/**
|
|
171122
|
+
* Parameters of the VariantManagement#manageOpen event.
|
|
171123
|
+
*/
|
|
171124
|
+
export interface VariantManagement$ManageOpenEventParameters {}
|
|
171125
|
+
|
|
171126
|
+
/**
|
|
171127
|
+
* Event object of the VariantManagement#manageOpen event.
|
|
171128
|
+
*/
|
|
171129
|
+
export type VariantManagement$ManageOpenEvent = Event<
|
|
171130
|
+
VariantManagement$ManageOpenEventParameters,
|
|
171131
|
+
VariantManagement
|
|
171132
|
+
>;
|
|
171133
|
+
|
|
170813
171134
|
/**
|
|
170814
171135
|
* Parameters of the VariantManagement#save event.
|
|
170815
171136
|
*/
|