@sapui5/ts-types-esm 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 +13 -7
- 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";
|
|
@@ -2232,6 +2232,20 @@ declare module "sap/ui/mdc/ValueHelpDelegate" {
|
|
|
2232
2232
|
* Returns the content that is used for the autocomplete feature and for user input, if the entered text
|
|
2233
2233
|
* leads to more than one filter result.
|
|
2234
2234
|
*
|
|
2235
|
+
* 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}.
|
|
2236
|
+
*
|
|
2237
|
+
* To determine which columns are relevant for the search, the currently active displayMode {@link sap.ui.mdc.enums.FieldDisplay Display }
|
|
2238
|
+
* of the connected control will be used. While a 'Value' configuration will lead to a 'key'-only search,
|
|
2239
|
+
* 'DescriptionValue' leads to searching 'description' first and 'key' afterwards. Other modes work accordingly.
|
|
2240
|
+
*
|
|
2241
|
+
* For each relevant column all items are searched for an exact match first and again with a startsWith
|
|
2242
|
+
* filter afterwards, if necessary.
|
|
2243
|
+
*
|
|
2244
|
+
* If the caseSensitive property is disabled, the letter case of the user's input and the corresponding
|
|
2245
|
+
* column value are completely ignored. Whichever entry comes first, wins.
|
|
2246
|
+
*
|
|
2247
|
+
* {@link sap.ui.mdc.valuehelp.base.ListContent ListContent}
|
|
2248
|
+
*
|
|
2235
2249
|
* @since 1.120.0
|
|
2236
2250
|
*
|
|
2237
2251
|
* @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 module "sap/zen/commons/library" {}
|
|
4
4
|
|
|
@@ -7,7 +7,8 @@ declare module "sap/zen/commons/HAlign" {
|
|
|
7
7
|
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders. Note that some values
|
|
8
8
|
* depend on the current locale's writing direction while others do not.
|
|
9
9
|
*
|
|
10
|
-
* @deprecated (since 1.89
|
|
10
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
11
|
+
* in S/4HANA.
|
|
11
12
|
*/
|
|
12
13
|
enum HAlign {
|
|
13
14
|
/**
|
|
@@ -51,7 +52,8 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
51
52
|
/**
|
|
52
53
|
* The Absolute Layout positions its child controls absolutely
|
|
53
54
|
*
|
|
54
|
-
* @deprecated (since 1.38)
|
|
55
|
+
* @deprecated (since 1.38) - the concept has been discarded. As of version 1.89, this library is deprecated
|
|
56
|
+
* and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
55
57
|
*/
|
|
56
58
|
export default class AbsoluteLayout extends Control {
|
|
57
59
|
/**
|
|
@@ -204,7 +206,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
204
206
|
*
|
|
205
207
|
* The overall width of the control. When not set, 100% is automatically set.
|
|
206
208
|
*
|
|
207
|
-
* Default value is `
|
|
209
|
+
* Default value is `"100%"`.
|
|
208
210
|
*
|
|
209
211
|
*
|
|
210
212
|
* @returns Value of property `width`
|
|
@@ -386,7 +388,7 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
386
388
|
*
|
|
387
389
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
388
390
|
*
|
|
389
|
-
* Default value is `
|
|
391
|
+
* Default value is `"100%"`.
|
|
390
392
|
*
|
|
391
393
|
*
|
|
392
394
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -401,7 +403,8 @@ declare module "sap/zen/commons/layout/AbsoluteLayout" {
|
|
|
401
403
|
/**
|
|
402
404
|
* Describes the settings that can be provided to the AbsoluteLayout constructor.
|
|
403
405
|
*
|
|
404
|
-
* @deprecated (since 1.38)
|
|
406
|
+
* @deprecated (since 1.38) - the concept has been discarded. As of version 1.89, this library is deprecated
|
|
407
|
+
* and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
405
408
|
*/
|
|
406
409
|
export interface $AbsoluteLayoutSettings extends $ControlSettings {
|
|
407
410
|
/**
|
|
@@ -458,7 +461,8 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
458
461
|
} from "sap/ui/base/ManagedObject";
|
|
459
462
|
|
|
460
463
|
/**
|
|
461
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
464
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
465
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
462
466
|
*/
|
|
463
467
|
export default class MatrixLayout extends Control {
|
|
464
468
|
/**
|
|
@@ -757,7 +761,8 @@ declare module "sap/zen/commons/layout/MatrixLayout" {
|
|
|
757
761
|
/**
|
|
758
762
|
* Describes the settings that can be provided to the MatrixLayout constructor.
|
|
759
763
|
*
|
|
760
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
764
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
765
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
761
766
|
*/
|
|
762
767
|
export interface $MatrixLayoutSettings extends $ControlSettings {
|
|
763
768
|
/**
|
|
@@ -806,7 +811,8 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
|
|
|
806
811
|
/**
|
|
807
812
|
* Non-control element used as part of a matrix layout's inner structure.
|
|
808
813
|
*
|
|
809
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
814
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
815
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
810
816
|
*/
|
|
811
817
|
export default class MatrixLayoutCell extends UI5Element {
|
|
812
818
|
/**
|
|
@@ -904,7 +910,8 @@ declare module "sap/zen/commons/layout/MatrixLayoutCell" {
|
|
|
904
910
|
/**
|
|
905
911
|
* Describes the settings that can be provided to the MatrixLayoutCell constructor.
|
|
906
912
|
*
|
|
907
|
-
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control.
|
|
913
|
+
* @deprecated (since 1.38) - Instead, use the `sap.ui.layout.Grid` control. As of version 1.89, this library
|
|
914
|
+
* is deprecated and has been replaced by Web Dynpro-based apps in S/4HANA.
|
|
908
915
|
*/
|
|
909
916
|
export interface $MatrixLayoutCellSettings extends $ElementSettings {}
|
|
910
917
|
}
|
|
@@ -1190,7 +1197,8 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1190
1197
|
/**
|
|
1191
1198
|
* Is used to specify the position of a control in the AbsoluteLayout
|
|
1192
1199
|
*
|
|
1193
|
-
* @deprecated (since 1.89)
|
|
1200
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1201
|
+
* in S/4HANA.
|
|
1194
1202
|
*/
|
|
1195
1203
|
export default class PositionContainer extends UI5Element {
|
|
1196
1204
|
/**
|
|
@@ -1457,7 +1465,8 @@ declare module "sap/zen/commons/layout/PositionContainer" {
|
|
|
1457
1465
|
/**
|
|
1458
1466
|
* Describes the settings that can be provided to the PositionContainer constructor.
|
|
1459
1467
|
*
|
|
1460
|
-
* @deprecated (since 1.89)
|
|
1468
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1469
|
+
* in S/4HANA.
|
|
1461
1470
|
*/
|
|
1462
1471
|
export interface $PositionContainerSettings extends $ElementSettings {
|
|
1463
1472
|
/**
|
|
@@ -1505,7 +1514,8 @@ declare module "sap/zen/commons/Padding" {
|
|
|
1505
1514
|
* include a padding of 2px at the top and bottom, and differ only in the presence of a 4px padding towards
|
|
1506
1515
|
* the beginning or end of a line, in the current locale's writing direction.
|
|
1507
1516
|
*
|
|
1508
|
-
* @deprecated (since 1.89
|
|
1517
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1518
|
+
* in S/4HANA.
|
|
1509
1519
|
* @experimental
|
|
1510
1520
|
*/
|
|
1511
1521
|
enum Padding {
|
|
@@ -1540,7 +1550,8 @@ declare module "sap/zen/commons/Separation" {
|
|
|
1540
1550
|
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of defined width, with or
|
|
1541
1551
|
* without a vertical line in its middle.
|
|
1542
1552
|
*
|
|
1543
|
-
* @deprecated (since 1.89
|
|
1553
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1554
|
+
* in S/4HANA.
|
|
1544
1555
|
*/
|
|
1545
1556
|
enum Separation {
|
|
1546
1557
|
/**
|
|
@@ -1579,7 +1590,8 @@ declare module "sap/zen/commons/VAlign" {
|
|
|
1579
1590
|
/**
|
|
1580
1591
|
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
1581
1592
|
*
|
|
1582
|
-
* @deprecated (since 1.89
|
|
1593
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1594
|
+
* in S/4HANA.
|
|
1583
1595
|
*/
|
|
1584
1596
|
enum VAlign {
|
|
1585
1597
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.23
|
|
2
2
|
|
|
3
3
|
declare module "sap/zen/crosstab/library" {}
|
|
4
4
|
|
|
@@ -14,7 +14,8 @@ declare module "sap/zen/crosstab/Crosstab" {
|
|
|
14
14
|
/**
|
|
15
15
|
* Add your documentation for the new Crosstab
|
|
16
16
|
*
|
|
17
|
-
* @deprecated (since 1.89
|
|
17
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
18
|
+
* in S/4HANA.
|
|
18
19
|
*/
|
|
19
20
|
export default class Crosstab extends Control {
|
|
20
21
|
/**
|
|
@@ -133,7 +134,8 @@ declare module "sap/zen/crosstab/Crosstab" {
|
|
|
133
134
|
/**
|
|
134
135
|
* Describes the settings that can be provided to the Crosstab constructor.
|
|
135
136
|
*
|
|
136
|
-
* @deprecated (since 1.89
|
|
137
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
138
|
+
* in S/4HANA.
|
|
137
139
|
*/
|
|
138
140
|
export interface $CrosstabSettings extends $ControlSettings {
|
|
139
141
|
/**
|
|
@@ -158,7 +160,8 @@ declare module "sap/zen/crosstab/DataCell" {
|
|
|
158
160
|
/**
|
|
159
161
|
* Add your documentation for the new DataCell
|
|
160
162
|
*
|
|
161
|
-
* @deprecated (since 1.89
|
|
163
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
164
|
+
* in S/4HANA.
|
|
162
165
|
*/
|
|
163
166
|
export default class DataCell extends Control {
|
|
164
167
|
/**
|
|
@@ -379,7 +382,8 @@ declare module "sap/zen/crosstab/DataCell" {
|
|
|
379
382
|
/**
|
|
380
383
|
* Describes the settings that can be provided to the DataCell constructor.
|
|
381
384
|
*
|
|
382
|
-
* @deprecated (since 1.89
|
|
385
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
386
|
+
* in S/4HANA.
|
|
383
387
|
*/
|
|
384
388
|
export interface $DataCellSettings extends $ControlSettings {
|
|
385
389
|
/**
|
|
@@ -424,7 +428,8 @@ declare module "sap/zen/crosstab/HeaderCell" {
|
|
|
424
428
|
/**
|
|
425
429
|
* Add your documentation for the new HeaderCell
|
|
426
430
|
*
|
|
427
|
-
* @deprecated (since 1.89
|
|
431
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
432
|
+
* in S/4HANA.
|
|
428
433
|
*/
|
|
429
434
|
export default class HeaderCell extends Control {
|
|
430
435
|
/**
|
|
@@ -1099,7 +1104,8 @@ declare module "sap/zen/crosstab/HeaderCell" {
|
|
|
1099
1104
|
/**
|
|
1100
1105
|
* Describes the settings that can be provided to the HeaderCell constructor.
|
|
1101
1106
|
*
|
|
1102
|
-
* @deprecated (since 1.89
|
|
1107
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1108
|
+
* in S/4HANA.
|
|
1103
1109
|
*/
|
|
1104
1110
|
export interface $HeaderCellSettings extends $ControlSettings {
|
|
1105
1111
|
/**
|
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 module "sap/zen/dsh/library" {}
|
|
4
4
|
|
|
@@ -17,7 +17,8 @@ declare module "sap/zen/dsh/AnalyticGrid" {
|
|
|
17
17
|
* Control for embedding a Design Studio Analytic Grid in an S/4 HANA Fiori application
|
|
18
18
|
*
|
|
19
19
|
* @since 1.46
|
|
20
|
-
* @deprecated (since 1.89
|
|
20
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
21
|
+
* in S/4HANA.
|
|
21
22
|
* @experimental (since 1.46) - API is incomplete and may change incompatibly
|
|
22
23
|
*/
|
|
23
24
|
export default class AnalyticGrid extends Control {
|
|
@@ -404,7 +405,8 @@ declare module "sap/zen/dsh/AnalyticGrid" {
|
|
|
404
405
|
/**
|
|
405
406
|
* Describes the settings that can be provided to the AnalyticGrid constructor.
|
|
406
407
|
*
|
|
407
|
-
* @deprecated (since 1.89
|
|
408
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
409
|
+
* in S/4HANA.
|
|
408
410
|
* @experimental (since 1.46) - API is incomplete and may change incompatibly
|
|
409
411
|
*/
|
|
410
412
|
export interface $AnalyticGridSettings extends $ControlSettings {
|
|
@@ -503,7 +505,8 @@ declare module "sap/zen/dsh/Dsh" {
|
|
|
503
505
|
* Control for embedding a Design Studio application full-screen in an S/4 HANA Fiori application
|
|
504
506
|
*
|
|
505
507
|
* @since 1.44
|
|
506
|
-
* @deprecated (since 1.89
|
|
508
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
509
|
+
* in S/4HANA.
|
|
507
510
|
*/
|
|
508
511
|
export default class Dsh extends Control {
|
|
509
512
|
/**
|
|
@@ -946,7 +949,8 @@ declare module "sap/zen/dsh/Dsh" {
|
|
|
946
949
|
/**
|
|
947
950
|
* Describes the settings that can be provided to the Dsh constructor.
|
|
948
951
|
*
|
|
949
|
-
* @deprecated (since 1.89
|
|
952
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
953
|
+
* in S/4HANA.
|
|
950
954
|
*/
|
|
951
955
|
export interface $DshSettings extends $ControlSettings {
|
|
952
956
|
/**
|
|
@@ -1029,7 +1033,8 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
1029
1033
|
/**
|
|
1030
1034
|
* The ValueHelpDialog control can be used to implement a value help for an input field.
|
|
1031
1035
|
*
|
|
1032
|
-
* @deprecated (since 1.89
|
|
1036
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1037
|
+
* in S/4HANA.
|
|
1033
1038
|
*/
|
|
1034
1039
|
export default class ValueHelpDialog extends Dialog {
|
|
1035
1040
|
/**
|
|
@@ -1924,7 +1929,8 @@ declare module "sap/zen/dsh/widgets/ValueHelpDialog" {
|
|
|
1924
1929
|
/**
|
|
1925
1930
|
* Describes the settings that can be provided to the ValueHelpDialog constructor.
|
|
1926
1931
|
*
|
|
1927
|
-
* @deprecated (since 1.89
|
|
1932
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
1933
|
+
* in S/4HANA.
|
|
1928
1934
|
*/
|
|
1929
1935
|
export interface $ValueHelpDialogSettings extends $DialogSettings {
|
|
1930
1936
|
/**
|
|
@@ -2175,7 +2181,8 @@ declare module "sap/zen/dsh/ValueHelpRangeOperation" {
|
|
|
2175
2181
|
/**
|
|
2176
2182
|
* Sort Type
|
|
2177
2183
|
*
|
|
2178
|
-
* @deprecated (since 1.89
|
|
2184
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
2185
|
+
* in S/4HANA.
|
|
2179
2186
|
* @experimental
|
|
2180
2187
|
*/
|
|
2181
2188
|
enum ValueHelpRangeOperation {
|
|
@@ -2227,7 +2234,8 @@ declare module "sap/zen/dsh/widgets/SDKModel" {
|
|
|
2227
2234
|
/**
|
|
2228
2235
|
* Model implementation for JSON format
|
|
2229
2236
|
*
|
|
2230
|
-
* @deprecated (since 1.89
|
|
2237
|
+
* @deprecated (since 1.89) - this library is deprecated and has been replaced by Web Dynpro-based apps
|
|
2238
|
+
* in S/4HANA.
|
|
2231
2239
|
*/
|
|
2232
2240
|
export default class SDKModel extends Model {
|
|
2233
2241
|
/**
|