@sapui5/ts-types 1.120.45 → 1.120.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.fe.core.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +1 -1
- package/types/sap.fe.navigation.d.ts +1 -1
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.gantt.d.ts +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +1 -1
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.sac.df.d.ts +1 -1
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +1 -1
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +15 -1
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.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 +1 -1
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +27 -15
- package/types/sap.zen.crosstab.d.ts +15 -8
- package/types/sap.zen.dsh.d.ts +17 -9
package/package.json
CHANGED
package/types/sap.chart.d.ts
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
package/types/sap.fe.macros.d.ts
CHANGED
package/types/sap.fe.test.d.ts
CHANGED
package/types/sap.fe.tools.d.ts
CHANGED
package/types/sap.gantt.d.ts
CHANGED
package/types/sap.insights.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
package/types/sap.makit.d.ts
CHANGED
package/types/sap.me.d.ts
CHANGED
package/types/sap.ndc.d.ts
CHANGED
package/types/sap.ovp.d.ts
CHANGED
package/types/sap.sac.df.d.ts
CHANGED
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.comp.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.export.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.46
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -2056,6 +2056,20 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2056
2056
|
* Returns the content that is used for the autocomplete feature and for user input, if the entered text
|
|
2057
2057
|
* leads to more than one filter result.
|
|
2058
2058
|
*
|
|
2059
|
+
* By default, this method searches and returns an entry from a set of relevant contexts of the given {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}.
|
|
2060
|
+
*
|
|
2061
|
+
* To determine which columns are relevant for the search, the currently active displayMode {@link sap.ui.mdc.enums.FieldDisplay Display }
|
|
2062
|
+
* of the connected control will be used. While a 'Value' configuration will lead to a 'key'-only search,
|
|
2063
|
+
* 'DescriptionValue' leads to searching 'description' first and 'key' afterwards. Other modes work accordingly.
|
|
2064
|
+
*
|
|
2065
|
+
* For each relevant column all items are searched for an exact match first and again with a startsWith
|
|
2066
|
+
* filter afterwards, if necessary.
|
|
2067
|
+
*
|
|
2068
|
+
* If the caseSensitive property is disabled, the letter case of the user's input and the corresponding
|
|
2069
|
+
* column value are completely ignored. Whichever entry comes first, wins.
|
|
2070
|
+
*
|
|
2071
|
+
* {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}
|
|
2072
|
+
*
|
|
2059
2073
|
* @since 1.120.0
|
|
2060
2074
|
*
|
|
2061
2075
|
* @returns Promise resolving in the `Context` that's relevant'
|
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.ui.vbm.d.ts
CHANGED
package/types/sap.ushell.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED
package/types/sap.viz.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.23
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace zen {
|
|
@@ -10,7 +10,8 @@ declare namespace sap {
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the settings that can be provided to the AbsoluteLayout constructor.
|
|
12
12
|
*
|
|
13
|
-
* @deprecated (since 1.38)
|
|
13
|
+
* @deprecated (since 1.38) - the concept has been discarded. As of version 1.89, this library is deprecated
|
|
14
|
+
* and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
14
15
|
*/
|
|
15
16
|
interface $AbsoluteLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
16
17
|
/**
|
|
@@ -58,7 +59,8 @@ declare namespace sap {
|
|
|
58
59
|
/**
|
|
59
60
|
* Describes the settings that can be provided to the MatrixLayout constructor.
|
|
60
61
|
*
|
|
61
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
62
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
63
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
62
64
|
*/
|
|
63
65
|
interface $MatrixLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
64
66
|
/**
|
|
@@ -118,7 +120,8 @@ declare namespace sap {
|
|
|
118
120
|
/**
|
|
119
121
|
* Describes the settings that can be provided to the MatrixLayoutCell constructor.
|
|
120
122
|
*
|
|
121
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
123
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
124
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
122
125
|
*/
|
|
123
126
|
interface $MatrixLayoutCellSettings
|
|
124
127
|
extends sap.ui.core.$ElementSettings {}
|
|
@@ -151,7 +154,8 @@ declare namespace sap {
|
|
|
151
154
|
/**
|
|
152
155
|
* Describes the settings that can be provided to the PositionContainer constructor.
|
|
153
156
|
*
|
|
154
|
-
* @deprecated (since 1.89)
|
|
157
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
158
|
+
* in S/4HANA.
|
|
155
159
|
*/
|
|
156
160
|
interface $PositionContainerSettings
|
|
157
161
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -214,7 +218,8 @@ declare namespace sap {
|
|
|
214
218
|
/**
|
|
215
219
|
* The Absolute Layout positions its child controls absolutely
|
|
216
220
|
*
|
|
217
|
-
* @deprecated (since 1.38)
|
|
221
|
+
* @deprecated (since 1.38) - the concept has been discarded. As of version 1.89, this library is deprecated
|
|
222
|
+
* and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
218
223
|
*/
|
|
219
224
|
class AbsoluteLayout extends sap.ui.core.Control {
|
|
220
225
|
/**
|
|
@@ -370,7 +375,7 @@ declare namespace sap {
|
|
|
370
375
|
*
|
|
371
376
|
* The overall width of the control. When not set, 100% is automatically set.
|
|
372
377
|
*
|
|
373
|
-
* Default value is `
|
|
378
|
+
* Default value is `"100%"`.
|
|
374
379
|
*
|
|
375
380
|
*
|
|
376
381
|
* @returns Value of property `width`
|
|
@@ -552,7 +557,7 @@ declare namespace sap {
|
|
|
552
557
|
*
|
|
553
558
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
554
559
|
*
|
|
555
|
-
* Default value is `
|
|
560
|
+
* Default value is `"100%"`.
|
|
556
561
|
*
|
|
557
562
|
*
|
|
558
563
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -565,7 +570,8 @@ declare namespace sap {
|
|
|
565
570
|
): this;
|
|
566
571
|
}
|
|
567
572
|
/**
|
|
568
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
573
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
574
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
569
575
|
*/
|
|
570
576
|
class MatrixLayout extends sap.ui.core.Control {
|
|
571
577
|
/**
|
|
@@ -867,7 +873,8 @@ declare namespace sap {
|
|
|
867
873
|
/**
|
|
868
874
|
* Non-control element used as part of a matrix layout's inner structure.
|
|
869
875
|
*
|
|
870
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
876
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
877
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
871
878
|
*/
|
|
872
879
|
class MatrixLayoutCell extends sap.ui.core.Element {
|
|
873
880
|
/**
|
|
@@ -1199,7 +1206,8 @@ declare namespace sap {
|
|
|
1199
1206
|
/**
|
|
1200
1207
|
* Is used to specify the position of a control in the AbsoluteLayout
|
|
1201
1208
|
*
|
|
1202
|
-
* @deprecated (since 1.89)
|
|
1209
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1210
|
+
* in S/4HANA.
|
|
1203
1211
|
*/
|
|
1204
1212
|
class PositionContainer extends sap.ui.core.Element {
|
|
1205
1213
|
/**
|
|
@@ -1472,7 +1480,8 @@ declare namespace sap {
|
|
|
1472
1480
|
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders. Note that some values
|
|
1473
1481
|
* depend on the current locale's writing direction while others do not.
|
|
1474
1482
|
*
|
|
1475
|
-
* @deprecated (since 1.89
|
|
1483
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1484
|
+
* in S/4HANA.
|
|
1476
1485
|
*/
|
|
1477
1486
|
enum HAlign {
|
|
1478
1487
|
/**
|
|
@@ -1501,7 +1510,8 @@ declare namespace sap {
|
|
|
1501
1510
|
* include a padding of 2px at the top and bottom, and differ only in the presence of a 4px padding towards
|
|
1502
1511
|
* the beginning or end of a line, in the current locale's writing direction.
|
|
1503
1512
|
*
|
|
1504
|
-
* @deprecated (since 1.89
|
|
1513
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1514
|
+
* in S/4HANA.
|
|
1505
1515
|
* @experimental
|
|
1506
1516
|
*/
|
|
1507
1517
|
enum Padding {
|
|
@@ -1532,7 +1542,8 @@ declare namespace sap {
|
|
|
1532
1542
|
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of defined width, with or
|
|
1533
1543
|
* without a vertical line in its middle.
|
|
1534
1544
|
*
|
|
1535
|
-
* @deprecated (since 1.89
|
|
1545
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1546
|
+
* in S/4HANA.
|
|
1536
1547
|
*/
|
|
1537
1548
|
enum Separation {
|
|
1538
1549
|
/**
|
|
@@ -1567,7 +1578,8 @@ declare namespace sap {
|
|
|
1567
1578
|
/**
|
|
1568
1579
|
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
1569
1580
|
*
|
|
1570
|
-
* @deprecated (since 1.89
|
|
1581
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1582
|
+
* in S/4HANA.
|
|
1571
1583
|
*/
|
|
1572
1584
|
enum VAlign {
|
|
1573
1585
|
/**
|
|
@@ -1,18 +1,20 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.23
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace zen {
|
|
5
5
|
/**
|
|
6
6
|
* Design Studio Crosstab library. NOT INTENDED FOR STANDALONE USAGE.
|
|
7
7
|
*
|
|
8
|
-
* @deprecated (since 1.89
|
|
8
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
9
|
+
* in S/4HANA.
|
|
9
10
|
* @experimental
|
|
10
11
|
*/
|
|
11
12
|
namespace crosstab {
|
|
12
13
|
/**
|
|
13
14
|
* Describes the settings that can be provided to the Crosstab constructor.
|
|
14
15
|
*
|
|
15
|
-
* @deprecated (since 1.89
|
|
16
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
17
|
+
* in S/4HANA.
|
|
16
18
|
*/
|
|
17
19
|
interface $CrosstabSettings extends sap.ui.core.$ControlSettings {
|
|
18
20
|
/**
|
|
@@ -35,7 +37,8 @@ declare namespace sap {
|
|
|
35
37
|
/**
|
|
36
38
|
* Describes the settings that can be provided to the DataCell constructor.
|
|
37
39
|
*
|
|
38
|
-
* @deprecated (since 1.89
|
|
40
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
41
|
+
* in S/4HANA.
|
|
39
42
|
*/
|
|
40
43
|
interface $DataCellSettings extends sap.ui.core.$ControlSettings {
|
|
41
44
|
/**
|
|
@@ -87,7 +90,8 @@ declare namespace sap {
|
|
|
87
90
|
/**
|
|
88
91
|
* Describes the settings that can be provided to the HeaderCell constructor.
|
|
89
92
|
*
|
|
90
|
-
* @deprecated (since 1.89
|
|
93
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
94
|
+
* in S/4HANA.
|
|
91
95
|
*/
|
|
92
96
|
interface $HeaderCellSettings extends sap.ui.core.$ControlSettings {
|
|
93
97
|
/**
|
|
@@ -259,7 +263,8 @@ declare namespace sap {
|
|
|
259
263
|
/**
|
|
260
264
|
* Add your documentation for the new Crosstab
|
|
261
265
|
*
|
|
262
|
-
* @deprecated (since 1.89
|
|
266
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
267
|
+
* in S/4HANA.
|
|
263
268
|
*/
|
|
264
269
|
class Crosstab extends sap.ui.core.Control {
|
|
265
270
|
/**
|
|
@@ -378,7 +383,8 @@ declare namespace sap {
|
|
|
378
383
|
/**
|
|
379
384
|
* Add your documentation for the new DataCell
|
|
380
385
|
*
|
|
381
|
-
* @deprecated (since 1.89
|
|
386
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
387
|
+
* in S/4HANA.
|
|
382
388
|
*/
|
|
383
389
|
class DataCell extends sap.ui.core.Control {
|
|
384
390
|
/**
|
|
@@ -599,7 +605,8 @@ declare namespace sap {
|
|
|
599
605
|
/**
|
|
600
606
|
* Add your documentation for the new HeaderCell
|
|
601
607
|
*
|
|
602
|
-
* @deprecated (since 1.89
|
|
608
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
609
|
+
* in S/4HANA.
|
|
603
610
|
*/
|
|
604
611
|
class HeaderCell extends sap.ui.core.Control {
|
|
605
612
|
/**
|
package/types/sap.zen.dsh.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.23
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace zen {
|
|
@@ -10,7 +10,8 @@ declare namespace sap {
|
|
|
10
10
|
/**
|
|
11
11
|
* Model implementation for JSON format
|
|
12
12
|
*
|
|
13
|
-
* @deprecated (since 1.89
|
|
13
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
14
|
+
* in S/4HANA.
|
|
14
15
|
*/
|
|
15
16
|
class SDKModel extends sap.ui.model.Model {
|
|
16
17
|
/**
|
|
@@ -59,7 +60,8 @@ declare namespace sap {
|
|
|
59
60
|
/**
|
|
60
61
|
* Describes the settings that can be provided to the AnalyticGrid constructor.
|
|
61
62
|
*
|
|
62
|
-
* @deprecated (since 1.89
|
|
63
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
64
|
+
* in S/4HANA.
|
|
63
65
|
* @experimental (since 1.46) - API is incomplete and may change incompatibly
|
|
64
66
|
*/
|
|
65
67
|
interface $AnalyticGridSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -120,7 +122,8 @@ declare namespace sap {
|
|
|
120
122
|
/**
|
|
121
123
|
* Describes the settings that can be provided to the Dsh constructor.
|
|
122
124
|
*
|
|
123
|
-
* @deprecated (since 1.89
|
|
125
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
126
|
+
* in S/4HANA.
|
|
124
127
|
*/
|
|
125
128
|
interface $DshSettings extends sap.ui.core.$ControlSettings {
|
|
126
129
|
/**
|
|
@@ -202,7 +205,8 @@ declare namespace sap {
|
|
|
202
205
|
/**
|
|
203
206
|
* Describes the settings that can be provided to the ValueHelpDialog constructor.
|
|
204
207
|
*
|
|
205
|
-
* @deprecated (since 1.89
|
|
208
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
209
|
+
* in S/4HANA.
|
|
206
210
|
*/
|
|
207
211
|
interface $ValueHelpDialogSettings extends sap.m.$DialogSettings {
|
|
208
212
|
/**
|
|
@@ -459,7 +463,8 @@ declare namespace sap {
|
|
|
459
463
|
* Control for embedding a Design Studio Analytic Grid in an S/4 HANA Fiori application
|
|
460
464
|
*
|
|
461
465
|
* @since 1.46
|
|
462
|
-
* @deprecated (since 1.89
|
|
466
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
467
|
+
* in S/4HANA.
|
|
463
468
|
* @experimental (since 1.46) - API is incomplete and may change incompatibly
|
|
464
469
|
*/
|
|
465
470
|
class AnalyticGrid extends sap.ui.core.Control {
|
|
@@ -847,7 +852,8 @@ declare namespace sap {
|
|
|
847
852
|
* Control for embedding a Design Studio application full-screen in an S/4 HANA Fiori application
|
|
848
853
|
*
|
|
849
854
|
* @since 1.44
|
|
850
|
-
* @deprecated (since 1.89
|
|
855
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
856
|
+
* in S/4HANA.
|
|
851
857
|
*/
|
|
852
858
|
class Dsh extends sap.ui.core.Control {
|
|
853
859
|
/**
|
|
@@ -1290,7 +1296,8 @@ declare namespace sap {
|
|
|
1290
1296
|
/**
|
|
1291
1297
|
* The ValueHelpDialog control can be used to implement a value help for an input field.
|
|
1292
1298
|
*
|
|
1293
|
-
* @deprecated (since 1.89
|
|
1299
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1300
|
+
* in S/4HANA.
|
|
1294
1301
|
*/
|
|
1295
1302
|
class ValueHelpDialog extends sap.m.Dialog {
|
|
1296
1303
|
/**
|
|
@@ -2181,7 +2188,8 @@ declare namespace sap {
|
|
|
2181
2188
|
/**
|
|
2182
2189
|
* Sort Type
|
|
2183
2190
|
*
|
|
2184
|
-
* @deprecated (since 1.89
|
|
2191
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
2192
|
+
* in S/4HANA.
|
|
2185
2193
|
* @experimental
|
|
2186
2194
|
*/
|
|
2187
2195
|
enum ValueHelpRangeOperation {
|