@openui5/ts-types 1.132.1 → 1.133.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 +127 -127
- package/types/sap.m.d.ts +1611 -729
- package/types/sap.tnt.d.ts +221 -8
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +267 -266
- package/types/sap.ui.core.d.ts +621 -588
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +317 -230
- package/types/sap.ui.layout.d.ts +69 -69
- package/types/sap.ui.mdc.d.ts +142 -115
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +14 -14
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +209 -185
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +89 -89
- package/types/sap.ui.ux3.d.ts +102 -102
- package/types/sap.ui.webc.common.d.ts +11 -11
- package/types/sap.ui.webc.fiori.d.ts +145 -145
- package/types/sap.ui.webc.main.d.ts +400 -400
- package/types/sap.uxap.d.ts +14 -14
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -6,11 +6,11 @@ declare namespace sap {
|
|
|
6
6
|
* Common basic controls, mainly intended for desktop scenarios
|
|
7
7
|
*
|
|
8
8
|
* @since 0.8
|
|
9
|
-
* @deprecated
|
|
9
|
+
* @deprecated As of version 1.38.
|
|
10
10
|
*/
|
|
11
11
|
namespace commons {
|
|
12
12
|
/**
|
|
13
|
-
* @deprecated
|
|
13
|
+
* @deprecated As of version 1.38.
|
|
14
14
|
*/
|
|
15
15
|
namespace enums {
|
|
16
16
|
/**
|
|
@@ -19,7 +19,7 @@ declare namespace sap {
|
|
|
19
19
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
20
20
|
* 'enums.AreaDesign'.
|
|
21
21
|
*
|
|
22
|
-
* @deprecated
|
|
22
|
+
* @deprecated As of version 1.38.
|
|
23
23
|
*/
|
|
24
24
|
enum AreaDesign {
|
|
25
25
|
/**
|
|
@@ -41,7 +41,7 @@ declare namespace sap {
|
|
|
41
41
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
42
42
|
* 'enums.BorderDesign'.
|
|
43
43
|
*
|
|
44
|
-
* @deprecated
|
|
44
|
+
* @deprecated As of version 1.38.
|
|
45
45
|
*/
|
|
46
46
|
enum BorderDesign {
|
|
47
47
|
/**
|
|
@@ -59,7 +59,7 @@ declare namespace sap {
|
|
|
59
59
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
60
60
|
* 'enums.Orientation'.
|
|
61
61
|
*
|
|
62
|
-
* @deprecated
|
|
62
|
+
* @deprecated As of version 1.38.
|
|
63
63
|
*/
|
|
64
64
|
enum Orientation {
|
|
65
65
|
/**
|
|
@@ -73,20 +73,20 @@ declare namespace sap {
|
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
/**
|
|
76
|
-
* @deprecated
|
|
76
|
+
* @deprecated As of version 1.38.
|
|
77
77
|
*/
|
|
78
78
|
namespace form {
|
|
79
79
|
/**
|
|
80
80
|
* Describes the settings that can be provided to the Form constructor.
|
|
81
81
|
*
|
|
82
|
-
* @deprecated
|
|
82
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
83
83
|
*/
|
|
84
84
|
interface $FormSettings extends sap.ui.layout.form.$FormSettings {}
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
87
|
* Describes the settings that can be provided to the FormContainer constructor.
|
|
88
88
|
*
|
|
89
|
-
* @deprecated
|
|
89
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
90
90
|
*/
|
|
91
91
|
interface $FormContainerSettings
|
|
92
92
|
extends sap.ui.layout.form.$FormContainerSettings {}
|
|
@@ -94,7 +94,7 @@ declare namespace sap {
|
|
|
94
94
|
/**
|
|
95
95
|
* Describes the settings that can be provided to the FormElement constructor.
|
|
96
96
|
*
|
|
97
|
-
* @deprecated
|
|
97
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
98
98
|
*/
|
|
99
99
|
interface $FormElementSettings
|
|
100
100
|
extends sap.ui.layout.form.$FormElementSettings {}
|
|
@@ -102,7 +102,7 @@ declare namespace sap {
|
|
|
102
102
|
/**
|
|
103
103
|
* Describes the settings that can be provided to the FormLayout constructor.
|
|
104
104
|
*
|
|
105
|
-
* @deprecated
|
|
105
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
106
106
|
*/
|
|
107
107
|
interface $FormLayoutSettings
|
|
108
108
|
extends sap.ui.layout.form.$FormLayoutSettings {}
|
|
@@ -110,7 +110,7 @@ declare namespace sap {
|
|
|
110
110
|
/**
|
|
111
111
|
* Describes the settings that can be provided to the GridContainerData constructor.
|
|
112
112
|
*
|
|
113
|
-
* @deprecated
|
|
113
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
114
114
|
*/
|
|
115
115
|
interface $GridContainerDataSettings
|
|
116
116
|
extends sap.ui.layout.form.$GridContainerDataSettings {}
|
|
@@ -118,7 +118,7 @@ declare namespace sap {
|
|
|
118
118
|
/**
|
|
119
119
|
* Describes the settings that can be provided to the GridElementData constructor.
|
|
120
120
|
*
|
|
121
|
-
* @deprecated
|
|
121
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
122
122
|
*/
|
|
123
123
|
interface $GridElementDataSettings
|
|
124
124
|
extends sap.ui.layout.form.$GridElementDataSettings {}
|
|
@@ -126,7 +126,7 @@ declare namespace sap {
|
|
|
126
126
|
/**
|
|
127
127
|
* Describes the settings that can be provided to the GridLayout constructor.
|
|
128
128
|
*
|
|
129
|
-
* @deprecated
|
|
129
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
130
130
|
*/
|
|
131
131
|
interface $GridLayoutSettings
|
|
132
132
|
extends sap.ui.layout.form.$GridLayoutSettings {}
|
|
@@ -134,7 +134,7 @@ declare namespace sap {
|
|
|
134
134
|
/**
|
|
135
135
|
* Describes the settings that can be provided to the ResponsiveLayout constructor.
|
|
136
136
|
*
|
|
137
|
-
* @deprecated
|
|
137
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
138
138
|
*/
|
|
139
139
|
interface $ResponsiveLayoutSettings
|
|
140
140
|
extends sap.ui.layout.form.$ResponsiveLayoutSettings {}
|
|
@@ -142,7 +142,7 @@ declare namespace sap {
|
|
|
142
142
|
/**
|
|
143
143
|
* Describes the settings that can be provided to the SimpleForm constructor.
|
|
144
144
|
*
|
|
145
|
-
* @deprecated
|
|
145
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
146
146
|
*/
|
|
147
147
|
interface $SimpleFormSettings
|
|
148
148
|
extends sap.ui.layout.form.$SimpleFormSettings {
|
|
@@ -170,7 +170,7 @@ declare namespace sap {
|
|
|
170
170
|
* for it's conent to allow a simple switching of Layouts.
|
|
171
171
|
*
|
|
172
172
|
* @since 1.9.1
|
|
173
|
-
* @deprecated
|
|
173
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
174
174
|
*/
|
|
175
175
|
class Form extends sap.ui.layout.form.Form {
|
|
176
176
|
/**
|
|
@@ -271,7 +271,7 @@ declare namespace sap {
|
|
|
271
271
|
* Used to group form elements.
|
|
272
272
|
*
|
|
273
273
|
* @since 1.9.1
|
|
274
|
-
* @deprecated
|
|
274
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
275
275
|
*/
|
|
276
276
|
class FormContainer extends sap.ui.layout.form.FormContainer {
|
|
277
277
|
/**
|
|
@@ -372,7 +372,7 @@ declare namespace sap {
|
|
|
372
372
|
* A form element is a combination of one label and different controls associated to this label.
|
|
373
373
|
*
|
|
374
374
|
* @since 1.9.1
|
|
375
|
-
* @deprecated
|
|
375
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
376
376
|
*/
|
|
377
377
|
class FormElement extends sap.ui.layout.form.FormElement {
|
|
378
378
|
/**
|
|
@@ -473,7 +473,7 @@ declare namespace sap {
|
|
|
473
473
|
* Base layout for Forms. Other Layouts must inherit from this one.
|
|
474
474
|
*
|
|
475
475
|
* @since 1.9.1
|
|
476
|
-
* @deprecated
|
|
476
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
477
477
|
*/
|
|
478
478
|
class FormLayout extends sap.ui.layout.form.FormLayout {
|
|
479
479
|
/**
|
|
@@ -550,7 +550,7 @@ declare namespace sap {
|
|
|
550
550
|
* ignored since the witdh and heights are defined by the grid cells.
|
|
551
551
|
*
|
|
552
552
|
* @since 1.9.1
|
|
553
|
-
* @deprecated
|
|
553
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
554
554
|
*/
|
|
555
555
|
class GridContainerData extends sap.ui.layout.form.GridContainerData {
|
|
556
556
|
/**
|
|
@@ -630,7 +630,7 @@ declare namespace sap {
|
|
|
630
630
|
* the width is defined by grid cells.
|
|
631
631
|
*
|
|
632
632
|
* @since 1.9.1
|
|
633
|
-
* @deprecated
|
|
633
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
634
634
|
*/
|
|
635
635
|
class GridElementData extends sap.ui.layout.form.GridElementData {
|
|
636
636
|
/**
|
|
@@ -708,7 +708,7 @@ declare namespace sap {
|
|
|
708
708
|
* To adjust the content inside the GridLayout GridContainerData and GridElementData could be used.
|
|
709
709
|
*
|
|
710
710
|
* @since 1.9.1
|
|
711
|
-
* @deprecated
|
|
711
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
712
712
|
*/
|
|
713
713
|
class GridLayout extends sap.ui.layout.form.GridLayout {
|
|
714
714
|
/**
|
|
@@ -784,7 +784,7 @@ declare namespace sap {
|
|
|
784
784
|
* Renders a form with responsive layout. Internally the ResponsiveFlowLayout is used.
|
|
785
785
|
*
|
|
786
786
|
* @since 1.10.0
|
|
787
|
-
* @deprecated
|
|
787
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
788
788
|
*/
|
|
789
789
|
class ResponsiveLayout extends sap.ui.layout.form.ResponsiveLayout {
|
|
790
790
|
/**
|
|
@@ -863,7 +863,7 @@ declare namespace sap {
|
|
|
863
863
|
* Input/Display controls.
|
|
864
864
|
*
|
|
865
865
|
* @since 1.12
|
|
866
|
-
* @deprecated
|
|
866
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
867
867
|
*/
|
|
868
868
|
class SimpleForm extends sap.ui.layout.form.SimpleForm {
|
|
869
869
|
/**
|
|
@@ -982,18 +982,18 @@ declare namespace sap {
|
|
|
982
982
|
*
|
|
983
983
|
* This is an alias for {@link sap.ui.layout.form.SimpleFormLayout} and only kept for compatibility reasons.
|
|
984
984
|
*
|
|
985
|
-
* @deprecated
|
|
985
|
+
* @deprecated As of version 1.16.0. Use {@link sap.ui.layout.form.SimpleFormLayout} instead.
|
|
986
986
|
*/
|
|
987
987
|
type SimpleFormLayout = sap.ui.layout.form.SimpleFormLayout;
|
|
988
988
|
}
|
|
989
989
|
/**
|
|
990
|
-
* @deprecated
|
|
990
|
+
* @deprecated As of version 1.38.
|
|
991
991
|
*/
|
|
992
992
|
namespace layout {
|
|
993
993
|
/**
|
|
994
994
|
* Describes the settings that can be provided to the AbsoluteLayout constructor.
|
|
995
995
|
*
|
|
996
|
-
* @deprecated
|
|
996
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
997
997
|
*/
|
|
998
998
|
interface $AbsoluteLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
999
999
|
/**
|
|
@@ -1041,13 +1041,13 @@ declare namespace sap {
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* Describes the settings that can be provided to the BorderLayout constructor.
|
|
1043
1043
|
*
|
|
1044
|
-
* @deprecated
|
|
1044
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Page}
|
|
1045
1045
|
*/
|
|
1046
1046
|
interface $BorderLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
1047
1047
|
/**
|
|
1048
1048
|
* The RTL setting swaps the areas Begin and End.
|
|
1049
1049
|
*
|
|
1050
|
-
* @deprecated
|
|
1050
|
+
* @deprecated As of version 1.5.2. replaced by the global configuration for the page
|
|
1051
1051
|
*/
|
|
1052
1052
|
rtl?:
|
|
1053
1053
|
| boolean
|
|
@@ -1099,14 +1099,14 @@ declare namespace sap {
|
|
|
1099
1099
|
/**
|
|
1100
1100
|
* Describes the settings that can be provided to the BorderLayoutArea constructor.
|
|
1101
1101
|
*
|
|
1102
|
-
* @deprecated
|
|
1102
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Page` control.
|
|
1103
1103
|
*/
|
|
1104
1104
|
interface $BorderLayoutAreaSettings
|
|
1105
1105
|
extends sap.ui.core.$ElementSettings {
|
|
1106
1106
|
/**
|
|
1107
1107
|
* Defines which area the element represents: top, begin, center, end, bottom
|
|
1108
1108
|
*
|
|
1109
|
-
* @deprecated
|
|
1109
|
+
* @deprecated As of version 1.3.3. Redundant to the aggregation by the parent border layout.
|
|
1110
1110
|
*/
|
|
1111
1111
|
areaId?:
|
|
1112
1112
|
| sap.ui.commons.layout.BorderLayoutAreaTypes
|
|
@@ -1157,7 +1157,7 @@ declare namespace sap {
|
|
|
1157
1157
|
/**
|
|
1158
1158
|
* Describes the settings that can be provided to the HorizontalLayout constructor.
|
|
1159
1159
|
*
|
|
1160
|
-
* @deprecated
|
|
1160
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.HorizontalLayout` control.
|
|
1161
1161
|
*/
|
|
1162
1162
|
interface $HorizontalLayoutSettings
|
|
1163
1163
|
extends sap.ui.layout.$HorizontalLayoutSettings {}
|
|
@@ -1165,7 +1165,7 @@ declare namespace sap {
|
|
|
1165
1165
|
/**
|
|
1166
1166
|
* Describes the settings that can be provided to the MatrixLayout constructor.
|
|
1167
1167
|
*
|
|
1168
|
-
* @deprecated
|
|
1168
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Grid` control.
|
|
1169
1169
|
*/
|
|
1170
1170
|
interface $MatrixLayoutSettings extends sap.ui.core.$ControlSettings {
|
|
1171
1171
|
/**
|
|
@@ -1225,7 +1225,7 @@ declare namespace sap {
|
|
|
1225
1225
|
/**
|
|
1226
1226
|
* Describes the settings that can be provided to the MatrixLayoutCell constructor.
|
|
1227
1227
|
*
|
|
1228
|
-
* @deprecated
|
|
1228
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Grid` control.
|
|
1229
1229
|
*/
|
|
1230
1230
|
interface $MatrixLayoutCellSettings
|
|
1231
1231
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -1305,7 +1305,7 @@ declare namespace sap {
|
|
|
1305
1305
|
/**
|
|
1306
1306
|
* Describes the settings that can be provided to the MatrixLayoutRow constructor.
|
|
1307
1307
|
*
|
|
1308
|
-
* @deprecated
|
|
1308
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Grid` control.
|
|
1309
1309
|
*/
|
|
1310
1310
|
interface $MatrixLayoutRowSettings
|
|
1311
1311
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -1330,7 +1330,7 @@ declare namespace sap {
|
|
|
1330
1330
|
/**
|
|
1331
1331
|
* Describes the settings that can be provided to the PositionContainer constructor.
|
|
1332
1332
|
*
|
|
1333
|
-
* @deprecated
|
|
1333
|
+
* @deprecated As of version 1.38.
|
|
1334
1334
|
*/
|
|
1335
1335
|
interface $PositionContainerSettings
|
|
1336
1336
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -1393,7 +1393,7 @@ declare namespace sap {
|
|
|
1393
1393
|
/**
|
|
1394
1394
|
* Describes the settings that can be provided to the ResponsiveFlowLayout constructor.
|
|
1395
1395
|
*
|
|
1396
|
-
* @deprecated
|
|
1396
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
1397
1397
|
*/
|
|
1398
1398
|
interface $ResponsiveFlowLayoutSettings
|
|
1399
1399
|
extends sap.ui.layout.$ResponsiveFlowLayoutSettings {}
|
|
@@ -1401,7 +1401,7 @@ declare namespace sap {
|
|
|
1401
1401
|
/**
|
|
1402
1402
|
* Describes the settings that can be provided to the ResponsiveFlowLayoutData constructor.
|
|
1403
1403
|
*
|
|
1404
|
-
* @deprecated
|
|
1404
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
1405
1405
|
*/
|
|
1406
1406
|
interface $ResponsiveFlowLayoutDataSettings
|
|
1407
1407
|
extends sap.ui.layout.$ResponsiveFlowLayoutDataSettings {}
|
|
@@ -1409,7 +1409,7 @@ declare namespace sap {
|
|
|
1409
1409
|
/**
|
|
1410
1410
|
* Describes the settings that can be provided to the VerticalLayout constructor.
|
|
1411
1411
|
*
|
|
1412
|
-
* @deprecated
|
|
1412
|
+
* @deprecated As of version 1.16.0. Moved to sap.ui.layout library. Please use this one.
|
|
1413
1413
|
*/
|
|
1414
1414
|
interface $VerticalLayoutSettings
|
|
1415
1415
|
extends sap.ui.layout.$VerticalLayoutSettings {}
|
|
@@ -1417,7 +1417,7 @@ declare namespace sap {
|
|
|
1417
1417
|
/**
|
|
1418
1418
|
* The Absolute Layout positions its child controls absolutely
|
|
1419
1419
|
*
|
|
1420
|
-
* @deprecated
|
|
1420
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
1421
1421
|
*/
|
|
1422
1422
|
class AbsoluteLayout extends sap.ui.core.Control {
|
|
1423
1423
|
/**
|
|
@@ -1751,7 +1751,7 @@ declare namespace sap {
|
|
|
1751
1751
|
* Footer; Begin: Left/right-hand side panel; Center: Content area in the middle; End: Right/left-hand side
|
|
1752
1752
|
* panel.
|
|
1753
1753
|
*
|
|
1754
|
-
* @deprecated
|
|
1754
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Page}
|
|
1755
1755
|
*/
|
|
1756
1756
|
class BorderLayout extends sap.ui.core.Control {
|
|
1757
1757
|
/**
|
|
@@ -1987,7 +1987,7 @@ declare namespace sap {
|
|
|
1987
1987
|
*
|
|
1988
1988
|
* Default value is `false`.
|
|
1989
1989
|
*
|
|
1990
|
-
* @deprecated
|
|
1990
|
+
* @deprecated As of version 1.5.2. replaced by the global configuration for the page
|
|
1991
1991
|
*
|
|
1992
1992
|
* @returns Value of property `rtl`
|
|
1993
1993
|
*/
|
|
@@ -2162,7 +2162,7 @@ declare namespace sap {
|
|
|
2162
2162
|
*
|
|
2163
2163
|
* Default value is `false`.
|
|
2164
2164
|
*
|
|
2165
|
-
* @deprecated
|
|
2165
|
+
* @deprecated As of version 1.5.2. replaced by the global configuration for the page
|
|
2166
2166
|
*
|
|
2167
2167
|
* @returns Reference to `this` in order to allow method chaining
|
|
2168
2168
|
*/
|
|
@@ -2206,7 +2206,7 @@ declare namespace sap {
|
|
|
2206
2206
|
/**
|
|
2207
2207
|
* The BorderLayoutArea represents one area of a BorderLayout
|
|
2208
2208
|
*
|
|
2209
|
-
* @deprecated
|
|
2209
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Page` control.
|
|
2210
2210
|
*/
|
|
2211
2211
|
class BorderLayoutArea extends sap.ui.core.Element {
|
|
2212
2212
|
/**
|
|
@@ -2300,7 +2300,7 @@ declare namespace sap {
|
|
|
2300
2300
|
*
|
|
2301
2301
|
* Default value is `top`.
|
|
2302
2302
|
*
|
|
2303
|
-
* @deprecated
|
|
2303
|
+
* @deprecated As of version 1.3.3. Redundant to the aggregation by the parent border layout.
|
|
2304
2304
|
*
|
|
2305
2305
|
* @returns Value of property `areaId`
|
|
2306
2306
|
*/
|
|
@@ -2427,7 +2427,7 @@ declare namespace sap {
|
|
|
2427
2427
|
*
|
|
2428
2428
|
* Default value is `top`.
|
|
2429
2429
|
*
|
|
2430
|
-
* @deprecated
|
|
2430
|
+
* @deprecated As of version 1.3.3. Redundant to the aggregation by the parent border layout.
|
|
2431
2431
|
*
|
|
2432
2432
|
* @returns Reference to `this` in order to allow method chaining
|
|
2433
2433
|
*/
|
|
@@ -2531,7 +2531,7 @@ declare namespace sap {
|
|
|
2531
2531
|
/**
|
|
2532
2532
|
* A layout that provides support for horizontal alignment of controls
|
|
2533
2533
|
*
|
|
2534
|
-
* @deprecated
|
|
2534
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.HorizontalLayout` control.
|
|
2535
2535
|
*/
|
|
2536
2536
|
class HorizontalLayout extends sap.ui.layout.HorizontalLayout {
|
|
2537
2537
|
/**
|
|
@@ -2619,7 +2619,7 @@ declare namespace sap {
|
|
|
2619
2619
|
* You should **avoid nesting** matrix layouts. You should only use a matrix layout if you need to align
|
|
2620
2620
|
* controls horizontally across rows.
|
|
2621
2621
|
*
|
|
2622
|
-
* @deprecated
|
|
2622
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Grid` control.
|
|
2623
2623
|
*/
|
|
2624
2624
|
class MatrixLayout extends sap.ui.core.Control {
|
|
2625
2625
|
/**
|
|
@@ -2913,7 +2913,7 @@ declare namespace sap {
|
|
|
2913
2913
|
/**
|
|
2914
2914
|
* Non-control element used as part of a matrix layout's inner structure.
|
|
2915
2915
|
*
|
|
2916
|
-
* @deprecated
|
|
2916
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Grid` control.
|
|
2917
2917
|
*/
|
|
2918
2918
|
class MatrixLayoutCell extends sap.ui.core.Element {
|
|
2919
2919
|
/**
|
|
@@ -3336,7 +3336,7 @@ declare namespace sap {
|
|
|
3336
3336
|
/**
|
|
3337
3337
|
* Non-control element used as part of a matrix layout's inner structure.
|
|
3338
3338
|
*
|
|
3339
|
-
* @deprecated
|
|
3339
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Grid` control.
|
|
3340
3340
|
*/
|
|
3341
3341
|
class MatrixLayoutRow extends sap.ui.core.Element {
|
|
3342
3342
|
/**
|
|
@@ -3570,7 +3570,7 @@ declare namespace sap {
|
|
|
3570
3570
|
/**
|
|
3571
3571
|
* Is used to specify the position of a control in the AbsoluteLayout
|
|
3572
3572
|
*
|
|
3573
|
-
* @deprecated
|
|
3573
|
+
* @deprecated As of version 1.38.
|
|
3574
3574
|
*/
|
|
3575
3575
|
class PositionContainer extends sap.ui.core.Element {
|
|
3576
3576
|
/**
|
|
@@ -3842,7 +3842,7 @@ declare namespace sap {
|
|
|
3842
3842
|
* If the window resizes the controls are moved between the lines and resized again.
|
|
3843
3843
|
*
|
|
3844
3844
|
* @since 1.9.1
|
|
3845
|
-
* @deprecated
|
|
3845
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
3846
3846
|
*/
|
|
3847
3847
|
class ResponsiveFlowLayout extends sap.ui.layout.ResponsiveFlowLayout {
|
|
3848
3848
|
/**
|
|
@@ -3921,7 +3921,7 @@ declare namespace sap {
|
|
|
3921
3921
|
* This is a LayoutData Element that can be added to a control if this control is used within a ResponsiveFlowLayout
|
|
3922
3922
|
*
|
|
3923
3923
|
* @since 1.9.1
|
|
3924
|
-
* @deprecated
|
|
3924
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.layout library. Please use this one.
|
|
3925
3925
|
*/
|
|
3926
3926
|
class ResponsiveFlowLayoutData extends sap.ui.layout
|
|
3927
3927
|
.ResponsiveFlowLayoutData {
|
|
@@ -4025,7 +4025,7 @@ declare namespace sap {
|
|
|
4025
4025
|
/**
|
|
4026
4026
|
* In this layout the elements are ordered one below the other
|
|
4027
4027
|
*
|
|
4028
|
-
* @deprecated
|
|
4028
|
+
* @deprecated As of version 1.16.0. Moved to sap.ui.layout library. Please use this one.
|
|
4029
4029
|
*/
|
|
4030
4030
|
class VerticalLayout extends sap.ui.layout.VerticalLayout {
|
|
4031
4031
|
/**
|
|
@@ -4103,7 +4103,7 @@ declare namespace sap {
|
|
|
4103
4103
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4104
4104
|
* 'layout.BackgroundDesign'.
|
|
4105
4105
|
*
|
|
4106
|
-
* @deprecated
|
|
4106
|
+
* @deprecated As of version 1.38.
|
|
4107
4107
|
*/
|
|
4108
4108
|
enum BackgroundDesign {
|
|
4109
4109
|
/**
|
|
@@ -4141,8 +4141,8 @@ declare namespace sap {
|
|
|
4141
4141
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4142
4142
|
* 'layout.BorderLayoutAreaTypes'.
|
|
4143
4143
|
*
|
|
4144
|
-
* @deprecated
|
|
4145
|
-
* with its aggregations.
|
|
4144
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.layout.BorderLayout). Use sap.m.Page
|
|
4145
|
+
* instead with its aggregations.
|
|
4146
4146
|
*/
|
|
4147
4147
|
enum BorderLayoutAreaTypes {
|
|
4148
4148
|
/**
|
|
@@ -4173,7 +4173,7 @@ declare namespace sap {
|
|
|
4173
4173
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4174
4174
|
* 'layout.HAlign'.
|
|
4175
4175
|
*
|
|
4176
|
-
* @deprecated
|
|
4176
|
+
* @deprecated As of version 1.38.
|
|
4177
4177
|
*/
|
|
4178
4178
|
enum HAlign {
|
|
4179
4179
|
/**
|
|
@@ -4205,7 +4205,7 @@ declare namespace sap {
|
|
|
4205
4205
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4206
4206
|
* 'layout.Padding'.
|
|
4207
4207
|
*
|
|
4208
|
-
* @deprecated
|
|
4208
|
+
* @deprecated As of version 1.38.
|
|
4209
4209
|
*/
|
|
4210
4210
|
enum Padding {
|
|
4211
4211
|
/**
|
|
@@ -4238,7 +4238,7 @@ declare namespace sap {
|
|
|
4238
4238
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4239
4239
|
* 'layout.Separation'.
|
|
4240
4240
|
*
|
|
4241
|
-
* @deprecated
|
|
4241
|
+
* @deprecated As of version 1.38.
|
|
4242
4242
|
*/
|
|
4243
4243
|
enum Separation {
|
|
4244
4244
|
/**
|
|
@@ -4276,7 +4276,7 @@ declare namespace sap {
|
|
|
4276
4276
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4277
4277
|
* 'layout.VAlign'.
|
|
4278
4278
|
*
|
|
4279
|
-
* @deprecated
|
|
4279
|
+
* @deprecated As of version 1.38.
|
|
4280
4280
|
*/
|
|
4281
4281
|
enum VAlign {
|
|
4282
4282
|
/**
|
|
@@ -4304,7 +4304,7 @@ declare namespace sap {
|
|
|
4304
4304
|
* This enum is part of the 'sap/ui/commons/MessageBox' module export and must be accessed by the property
|
|
4305
4305
|
* 'Action'.
|
|
4306
4306
|
*
|
|
4307
|
-
* @deprecated
|
|
4307
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.MessageBox.Action`.
|
|
4308
4308
|
*/
|
|
4309
4309
|
enum Action {
|
|
4310
4310
|
/**
|
|
@@ -4346,13 +4346,13 @@ declare namespace sap {
|
|
|
4346
4346
|
* This enum is part of the 'sap/ui/commons/MessageBox' module export and must be accessed by the property
|
|
4347
4347
|
* 'Icon'.
|
|
4348
4348
|
*
|
|
4349
|
-
* @deprecated
|
|
4349
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.MessageBox.Icon`.
|
|
4350
4350
|
*/
|
|
4351
4351
|
enum Icon {
|
|
4352
4352
|
/**
|
|
4353
4353
|
* Shows the critical error icon in the message box.
|
|
4354
4354
|
*
|
|
4355
|
-
* @deprecated
|
|
4355
|
+
* @deprecated As of version 1.9.1. The error icon is used instead
|
|
4356
4356
|
*/
|
|
4357
4357
|
CRITICAL = "CRITICAL",
|
|
4358
4358
|
/**
|
|
@@ -4384,7 +4384,7 @@ declare namespace sap {
|
|
|
4384
4384
|
/**
|
|
4385
4385
|
* Marker interface for common controls which are suitable for use within a FormattedTextView.
|
|
4386
4386
|
*
|
|
4387
|
-
* @deprecated
|
|
4387
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
4388
4388
|
*/
|
|
4389
4389
|
interface FormattedTextViewControl {
|
|
4390
4390
|
__implements__sap_ui_commons_FormattedTextViewControl: boolean;
|
|
@@ -4397,7 +4397,7 @@ declare namespace sap {
|
|
|
4397
4397
|
* Toolbar items must have a fixed height compatible with the toolbar being a single horizontal row. They
|
|
4398
4398
|
* can refer to the toolbar's marker class "sapUiTb" to adjust their own theming when used inside a toolbar.
|
|
4399
4399
|
*
|
|
4400
|
-
* @deprecated
|
|
4400
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.Toolbar). Use sap.m.Toolbar instead.
|
|
4401
4401
|
*/
|
|
4402
4402
|
interface ToolbarItem {
|
|
4403
4403
|
__implements__sap_ui_commons_ToolbarItem: boolean;
|
|
@@ -4406,7 +4406,7 @@ declare namespace sap {
|
|
|
4406
4406
|
/**
|
|
4407
4407
|
* Describes the settings that can be provided to the Accordion constructor.
|
|
4408
4408
|
*
|
|
4409
|
-
* @deprecated
|
|
4409
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Panel}.
|
|
4410
4410
|
*/
|
|
4411
4411
|
interface $AccordionSettings extends sap.ui.core.$ControlSettings {
|
|
4412
4412
|
/**
|
|
@@ -4452,7 +4452,7 @@ declare namespace sap {
|
|
|
4452
4452
|
/**
|
|
4453
4453
|
* Describes the settings that can be provided to the AccordionSection constructor.
|
|
4454
4454
|
*
|
|
4455
|
-
* @deprecated
|
|
4455
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
4456
4456
|
*/
|
|
4457
4457
|
interface $AccordionSectionSettings extends sap.ui.core.$ElementSettings {
|
|
4458
4458
|
/**
|
|
@@ -4474,7 +4474,7 @@ declare namespace sap {
|
|
|
4474
4474
|
/**
|
|
4475
4475
|
* It is recommended to adjust the settings for the width when the section is set to 'collapsed'.
|
|
4476
4476
|
*
|
|
4477
|
-
* @deprecated
|
|
4477
|
+
* @deprecated As of version 1.34. Use Accordion's "openedSectionsId" property
|
|
4478
4478
|
*/
|
|
4479
4479
|
collapsed?:
|
|
4480
4480
|
| boolean
|
|
@@ -4507,7 +4507,7 @@ declare namespace sap {
|
|
|
4507
4507
|
/**
|
|
4508
4508
|
* Describes the settings that can be provided to the ApplicationHeader constructor.
|
|
4509
4509
|
*
|
|
4510
|
-
* @deprecated
|
|
4510
|
+
* @deprecated As of version 1.38. Instead, use the `sap.tnt.ToolHeader` control.
|
|
4511
4511
|
*/
|
|
4512
4512
|
interface $ApplicationHeaderSettings
|
|
4513
4513
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -4554,7 +4554,7 @@ declare namespace sap {
|
|
|
4554
4554
|
/**
|
|
4555
4555
|
* Describes the settings that can be provided to the Area constructor.
|
|
4556
4556
|
*
|
|
4557
|
-
* @deprecated
|
|
4557
|
+
* @deprecated As of version 1.38.
|
|
4558
4558
|
*/
|
|
4559
4559
|
interface $AreaSettings extends sap.ui.core.$ElementSettings {
|
|
4560
4560
|
/**
|
|
@@ -4584,7 +4584,7 @@ declare namespace sap {
|
|
|
4584
4584
|
/**
|
|
4585
4585
|
* Describes the settings that can be provided to the AutoComplete constructor.
|
|
4586
4586
|
*
|
|
4587
|
-
* @deprecated
|
|
4587
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Input}.
|
|
4588
4588
|
*/
|
|
4589
4589
|
interface $AutoCompleteSettings extends sap.ui.commons.$ComboBoxSettings {
|
|
4590
4590
|
/**
|
|
@@ -4605,7 +4605,7 @@ declare namespace sap {
|
|
|
4605
4605
|
/**
|
|
4606
4606
|
* Describes the settings that can be provided to the Button constructor.
|
|
4607
4607
|
*
|
|
4608
|
-
* @deprecated
|
|
4608
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Button}
|
|
4609
4609
|
*/
|
|
4610
4610
|
interface $ButtonSettings extends sap.ui.core.$ControlSettings {
|
|
4611
4611
|
/**
|
|
@@ -4725,8 +4725,8 @@ declare namespace sap {
|
|
|
4725
4725
|
/**
|
|
4726
4726
|
* Describes the settings that can be provided to the Callout constructor.
|
|
4727
4727
|
*
|
|
4728
|
-
* @deprecated
|
|
4729
|
-
* open it next to your control.
|
|
4728
|
+
* @deprecated As of version 1.38. If you want to achieve a similar behavior, use a `sap.m.Popover` control
|
|
4729
|
+
* and open it next to your control.
|
|
4730
4730
|
*/
|
|
4731
4731
|
interface $CalloutSettings extends sap.ui.commons.$CalloutBaseSettings {
|
|
4732
4732
|
/**
|
|
@@ -4742,7 +4742,7 @@ declare namespace sap {
|
|
|
4742
4742
|
/**
|
|
4743
4743
|
* Describes the settings that can be provided to the CalloutBase constructor.
|
|
4744
4744
|
*
|
|
4745
|
-
* @deprecated
|
|
4745
|
+
* @deprecated As of version 1.38. If you want to achieve a similar behavior, use the `sap.m.Popover` control
|
|
4746
4746
|
* and open it next to your control.
|
|
4747
4747
|
*/
|
|
4748
4748
|
interface $CalloutBaseSettings extends sap.ui.core.$TooltipBaseSettings {
|
|
@@ -4773,7 +4773,7 @@ declare namespace sap {
|
|
|
4773
4773
|
/**
|
|
4774
4774
|
* Describes the settings that can be provided to the Carousel constructor.
|
|
4775
4775
|
*
|
|
4776
|
-
* @deprecated
|
|
4776
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Carousel` control.
|
|
4777
4777
|
*/
|
|
4778
4778
|
interface $CarouselSettings extends sap.ui.core.$ControlSettings {
|
|
4779
4779
|
/**
|
|
@@ -4863,7 +4863,7 @@ declare namespace sap {
|
|
|
4863
4863
|
/**
|
|
4864
4864
|
* Describes the settings that can be provided to the CheckBox constructor.
|
|
4865
4865
|
*
|
|
4866
|
-
* @deprecated
|
|
4866
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.CheckBox` control.
|
|
4867
4867
|
*/
|
|
4868
4868
|
interface $CheckBoxSettings extends sap.ui.core.$ControlSettings {
|
|
4869
4869
|
/**
|
|
@@ -4946,7 +4946,7 @@ declare namespace sap {
|
|
|
4946
4946
|
/**
|
|
4947
4947
|
* Describes the settings that can be provided to the ColorPicker constructor.
|
|
4948
4948
|
*
|
|
4949
|
-
* @deprecated
|
|
4949
|
+
* @deprecated As of version 1.38. replaced by {@link sap.ui.unified.ColorPicker}
|
|
4950
4950
|
*/
|
|
4951
4951
|
interface $ColorPickerSettings
|
|
4952
4952
|
extends sap.ui.unified.$ColorPickerSettings {}
|
|
@@ -4954,7 +4954,7 @@ declare namespace sap {
|
|
|
4954
4954
|
/**
|
|
4955
4955
|
* Describes the settings that can be provided to the ComboBox constructor.
|
|
4956
4956
|
*
|
|
4957
|
-
* @deprecated
|
|
4957
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.ComboBox}
|
|
4958
4958
|
*/
|
|
4959
4959
|
interface $ComboBoxSettings extends sap.ui.commons.$TextFieldSettings {
|
|
4960
4960
|
/**
|
|
@@ -5017,7 +5017,7 @@ declare namespace sap {
|
|
|
5017
5017
|
/**
|
|
5018
5018
|
* Describes the settings that can be provided to the DatePicker constructor.
|
|
5019
5019
|
*
|
|
5020
|
-
* @deprecated
|
|
5020
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.DatePicker}
|
|
5021
5021
|
*/
|
|
5022
5022
|
interface $DatePickerSettings extends sap.ui.commons.$TextFieldSettings {
|
|
5023
5023
|
/**
|
|
@@ -5037,7 +5037,7 @@ declare namespace sap {
|
|
|
5037
5037
|
/**
|
|
5038
5038
|
* Describes the settings that can be provided to the Dialog constructor.
|
|
5039
5039
|
*
|
|
5040
|
-
* @deprecated
|
|
5040
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Dialog` control.
|
|
5041
5041
|
*/
|
|
5042
5042
|
interface $DialogSettings extends sap.ui.core.$ControlSettings {
|
|
5043
5043
|
/**
|
|
@@ -5232,7 +5232,7 @@ declare namespace sap {
|
|
|
5232
5232
|
/**
|
|
5233
5233
|
* Describes the settings that can be provided to the DropdownBox constructor.
|
|
5234
5234
|
*
|
|
5235
|
-
* @deprecated
|
|
5235
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.ComboBox}
|
|
5236
5236
|
*/
|
|
5237
5237
|
interface $DropdownBoxSettings extends sap.ui.commons.$ComboBoxSettings {
|
|
5238
5238
|
/**
|
|
@@ -5284,7 +5284,7 @@ declare namespace sap {
|
|
|
5284
5284
|
/**
|
|
5285
5285
|
* Describes the settings that can be provided to the FileUploader constructor.
|
|
5286
5286
|
*
|
|
5287
|
-
* @deprecated
|
|
5287
|
+
* @deprecated As of version 1.21.0. Please use the control sap.ui.unified.FileUploader of the library sap.ui.unified
|
|
5288
5288
|
* instead.
|
|
5289
5289
|
*/
|
|
5290
5290
|
interface $FileUploaderSettings
|
|
@@ -5293,8 +5293,8 @@ declare namespace sap {
|
|
|
5293
5293
|
/**
|
|
5294
5294
|
* Describes the settings that can be provided to the FileUploaderParameter constructor.
|
|
5295
5295
|
*
|
|
5296
|
-
* @deprecated
|
|
5297
|
-
* sap.ui.unified instead.
|
|
5296
|
+
* @deprecated As of version 1.21.0. Please use the element sap.ui.unified.FileUploaderParameter of the
|
|
5297
|
+
* library sap.ui.unified instead.
|
|
5298
5298
|
*/
|
|
5299
5299
|
interface $FileUploaderParameterSettings
|
|
5300
5300
|
extends sap.ui.unified.$FileUploaderParameterSettings {}
|
|
@@ -5302,7 +5302,7 @@ declare namespace sap {
|
|
|
5302
5302
|
/**
|
|
5303
5303
|
* Describes the settings that can be provided to the FormattedTextView constructor.
|
|
5304
5304
|
*
|
|
5305
|
-
* @deprecated
|
|
5305
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.core.HTML` control.
|
|
5306
5306
|
*/
|
|
5307
5307
|
interface $FormattedTextViewSettings
|
|
5308
5308
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -5332,8 +5332,8 @@ declare namespace sap {
|
|
|
5332
5332
|
/**
|
|
5333
5333
|
* Describes the settings that can be provided to the HorizontalDivider constructor.
|
|
5334
5334
|
*
|
|
5335
|
-
* @deprecated
|
|
5336
|
-
* among others.
|
|
5335
|
+
* @deprecated As of version 1.38. Use the layout controls instead, e.g {@link sap.ui.layout.Splitter} or
|
|
5336
|
+
* {@link sap.ui.layout.BlockLayout} among others.
|
|
5337
5337
|
*/
|
|
5338
5338
|
interface $HorizontalDividerSettings
|
|
5339
5339
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -5365,7 +5365,7 @@ declare namespace sap {
|
|
|
5365
5365
|
/**
|
|
5366
5366
|
* Describes the settings that can be provided to the Image constructor.
|
|
5367
5367
|
*
|
|
5368
|
-
* @deprecated
|
|
5368
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Image}
|
|
5369
5369
|
*/
|
|
5370
5370
|
interface $ImageSettings extends sap.ui.core.$ControlSettings {
|
|
5371
5371
|
/**
|
|
@@ -5425,7 +5425,7 @@ declare namespace sap {
|
|
|
5425
5425
|
/**
|
|
5426
5426
|
* Describes the settings that can be provided to the ImageMap constructor.
|
|
5427
5427
|
*
|
|
5428
|
-
* @deprecated
|
|
5428
|
+
* @deprecated As of version 1.38. There's not replacement because of the archaic design pattern.
|
|
5429
5429
|
*/
|
|
5430
5430
|
interface $ImageMapSettings extends sap.ui.core.$ControlSettings {
|
|
5431
5431
|
/**
|
|
@@ -5451,7 +5451,7 @@ declare namespace sap {
|
|
|
5451
5451
|
/**
|
|
5452
5452
|
* Describes the settings that can be provided to the InPlaceEdit constructor.
|
|
5453
5453
|
*
|
|
5454
|
-
* @deprecated
|
|
5454
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Input}
|
|
5455
5455
|
*/
|
|
5456
5456
|
interface $InPlaceEditSettings extends sap.ui.core.$ControlSettings {
|
|
5457
5457
|
/**
|
|
@@ -5506,7 +5506,7 @@ declare namespace sap {
|
|
|
5506
5506
|
/**
|
|
5507
5507
|
* Describes the settings that can be provided to the Label constructor.
|
|
5508
5508
|
*
|
|
5509
|
-
* @deprecated
|
|
5509
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Label` control.
|
|
5510
5510
|
*/
|
|
5511
5511
|
interface $LabelSettings extends sap.ui.core.$ControlSettings {
|
|
5512
5512
|
/**
|
|
@@ -5598,7 +5598,7 @@ declare namespace sap {
|
|
|
5598
5598
|
/**
|
|
5599
5599
|
* Describes the settings that can be provided to the Link constructor.
|
|
5600
5600
|
*
|
|
5601
|
-
* @deprecated
|
|
5601
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Link` control.
|
|
5602
5602
|
*/
|
|
5603
5603
|
interface $LinkSettings extends sap.ui.core.$ControlSettings {
|
|
5604
5604
|
/**
|
|
@@ -5663,7 +5663,7 @@ declare namespace sap {
|
|
|
5663
5663
|
/**
|
|
5664
5664
|
* Describes the settings that can be provided to the ListBox constructor.
|
|
5665
5665
|
*
|
|
5666
|
-
* @deprecated
|
|
5666
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.List` control.
|
|
5667
5667
|
*/
|
|
5668
5668
|
interface $ListBoxSettings extends sap.ui.core.$ControlSettings {
|
|
5669
5669
|
/**
|
|
@@ -5814,14 +5814,14 @@ declare namespace sap {
|
|
|
5814
5814
|
/**
|
|
5815
5815
|
* Describes the settings that can be provided to the Menu constructor.
|
|
5816
5816
|
*
|
|
5817
|
-
* @deprecated
|
|
5817
|
+
* @deprecated As of version 1.21.0. replaced by {@link sap.ui.unified.Menu}
|
|
5818
5818
|
*/
|
|
5819
5819
|
interface $MenuSettings extends sap.ui.unified.$MenuSettings {}
|
|
5820
5820
|
|
|
5821
5821
|
/**
|
|
5822
5822
|
* Describes the settings that can be provided to the MenuBar constructor.
|
|
5823
5823
|
*
|
|
5824
|
-
* @deprecated
|
|
5824
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.OverflowToolbar` control.
|
|
5825
5825
|
*/
|
|
5826
5826
|
interface $MenuBarSettings extends sap.ui.core.$ControlSettings {
|
|
5827
5827
|
/**
|
|
@@ -5861,7 +5861,7 @@ declare namespace sap {
|
|
|
5861
5861
|
/**
|
|
5862
5862
|
* Describes the settings that can be provided to the MenuButton constructor.
|
|
5863
5863
|
*
|
|
5864
|
-
* @deprecated
|
|
5864
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.MenuButton` control.
|
|
5865
5865
|
*/
|
|
5866
5866
|
interface $MenuButtonSettings extends sap.ui.commons.$ButtonSettings {
|
|
5867
5867
|
/**
|
|
@@ -5890,14 +5890,14 @@ declare namespace sap {
|
|
|
5890
5890
|
/**
|
|
5891
5891
|
* Describes the settings that can be provided to the MenuItem constructor.
|
|
5892
5892
|
*
|
|
5893
|
-
* @deprecated
|
|
5893
|
+
* @deprecated As of version 1.21.0. replaced by {@link sap.ui.unified.MenuItem}
|
|
5894
5894
|
*/
|
|
5895
5895
|
interface $MenuItemSettings extends sap.ui.unified.$MenuItemSettings {}
|
|
5896
5896
|
|
|
5897
5897
|
/**
|
|
5898
5898
|
* Describes the settings that can be provided to the MenuItemBase constructor.
|
|
5899
5899
|
*
|
|
5900
|
-
* @deprecated
|
|
5900
|
+
* @deprecated As of version 1.21.0. replaced by {@link sap.ui.unified.MenuItemBase}
|
|
5901
5901
|
*/
|
|
5902
5902
|
interface $MenuItemBaseSettings
|
|
5903
5903
|
extends sap.ui.unified.$MenuItemBaseSettings {}
|
|
@@ -5905,7 +5905,7 @@ declare namespace sap {
|
|
|
5905
5905
|
/**
|
|
5906
5906
|
* Describes the settings that can be provided to the MenuTextFieldItem constructor.
|
|
5907
5907
|
*
|
|
5908
|
-
* @deprecated
|
|
5908
|
+
* @deprecated As of version 1.21.0. Please use the control `sap.ui.unified.MenuTextFieldItem` of the library
|
|
5909
5909
|
* `sap.ui.unified` instead.
|
|
5910
5910
|
*/
|
|
5911
5911
|
interface $MenuTextFieldItemSettings
|
|
@@ -5914,7 +5914,7 @@ declare namespace sap {
|
|
|
5914
5914
|
/**
|
|
5915
5915
|
* Describes the settings that can be provided to the Message constructor.
|
|
5916
5916
|
*
|
|
5917
|
-
* @deprecated
|
|
5917
|
+
* @deprecated As of version 1.4.0. A new messaging concept will be created in future. Therefore this control
|
|
5918
5918
|
* might be removed in one of the next versions.
|
|
5919
5919
|
*/
|
|
5920
5920
|
interface $MessageSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -5947,7 +5947,7 @@ declare namespace sap {
|
|
|
5947
5947
|
/**
|
|
5948
5948
|
* Describes the settings that can be provided to the MessageBar constructor.
|
|
5949
5949
|
*
|
|
5950
|
-
* @deprecated
|
|
5950
|
+
* @deprecated As of version 1.4.0. Instead, use the `sap.m.MessagePopover` control.
|
|
5951
5951
|
*/
|
|
5952
5952
|
interface $MessageBarSettings extends sap.ui.core.$ControlSettings {
|
|
5953
5953
|
/**
|
|
@@ -5995,7 +5995,7 @@ declare namespace sap {
|
|
|
5995
5995
|
/**
|
|
5996
5996
|
* Describes the settings that can be provided to the MessageList constructor.
|
|
5997
5997
|
*
|
|
5998
|
-
* @deprecated
|
|
5998
|
+
* @deprecated As of version 1.4.0. A new messaging concept will be created in future. Therefore this control
|
|
5999
5999
|
* might be removed in one of the next versions.
|
|
6000
6000
|
*/
|
|
6001
6001
|
interface $MessageListSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6021,7 +6021,7 @@ declare namespace sap {
|
|
|
6021
6021
|
/**
|
|
6022
6022
|
* Describes the settings that can be provided to the MessageToast constructor.
|
|
6023
6023
|
*
|
|
6024
|
-
* @deprecated
|
|
6024
|
+
* @deprecated As of version 1.4.0. Instead, use the `sap.m.MessageToast` control.
|
|
6025
6025
|
*/
|
|
6026
6026
|
interface $MessageToastSettings extends sap.ui.core.$ControlSettings {
|
|
6027
6027
|
/**
|
|
@@ -6038,7 +6038,7 @@ declare namespace sap {
|
|
|
6038
6038
|
/**
|
|
6039
6039
|
* Describes the settings that can be provided to the Paginator constructor.
|
|
6040
6040
|
*
|
|
6041
|
-
* @deprecated
|
|
6041
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
6042
6042
|
*/
|
|
6043
6043
|
interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
|
|
6044
6044
|
/**
|
|
@@ -6066,7 +6066,7 @@ declare namespace sap {
|
|
|
6066
6066
|
/**
|
|
6067
6067
|
* Describes the settings that can be provided to the Panel constructor.
|
|
6068
6068
|
*
|
|
6069
|
-
* @deprecated
|
|
6069
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Panel` control.
|
|
6070
6070
|
*/
|
|
6071
6071
|
interface $PanelSettings extends sap.ui.core.$ControlSettings {
|
|
6072
6072
|
/**
|
|
@@ -6187,7 +6187,7 @@ declare namespace sap {
|
|
|
6187
6187
|
/**
|
|
6188
6188
|
* Describes the settings that can be provided to the PasswordField constructor.
|
|
6189
6189
|
*
|
|
6190
|
-
* @deprecated
|
|
6190
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Input` control.
|
|
6191
6191
|
*/
|
|
6192
6192
|
interface $PasswordFieldSettings
|
|
6193
6193
|
extends sap.ui.commons.$TextFieldSettings {}
|
|
@@ -6195,7 +6195,7 @@ declare namespace sap {
|
|
|
6195
6195
|
/**
|
|
6196
6196
|
* Describes the settings that can be provided to the ProgressIndicator constructor.
|
|
6197
6197
|
*
|
|
6198
|
-
* @deprecated
|
|
6198
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.ProgressIndicator` control.
|
|
6199
6199
|
*/
|
|
6200
6200
|
interface $ProgressIndicatorSettings
|
|
6201
6201
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -6251,7 +6251,7 @@ declare namespace sap {
|
|
|
6251
6251
|
/**
|
|
6252
6252
|
* Describes the settings that can be provided to the RadioButton constructor.
|
|
6253
6253
|
*
|
|
6254
|
-
* @deprecated
|
|
6254
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.RadioButton` control.
|
|
6255
6255
|
*/
|
|
6256
6256
|
interface $RadioButtonSettings extends sap.ui.core.$ControlSettings {
|
|
6257
6257
|
/**
|
|
@@ -6340,7 +6340,7 @@ declare namespace sap {
|
|
|
6340
6340
|
/**
|
|
6341
6341
|
* Describes the settings that can be provided to the RadioButtonGroup constructor.
|
|
6342
6342
|
*
|
|
6343
|
-
* @deprecated
|
|
6343
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.RadioButtonGroup` control.
|
|
6344
6344
|
*/
|
|
6345
6345
|
interface $RadioButtonGroupSettings extends sap.ui.core.$ControlSettings {
|
|
6346
6346
|
/**
|
|
@@ -6428,7 +6428,7 @@ declare namespace sap {
|
|
|
6428
6428
|
/**
|
|
6429
6429
|
* Describes the settings that can be provided to the RangeSlider constructor.
|
|
6430
6430
|
*
|
|
6431
|
-
* @deprecated
|
|
6431
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.RangeSlider}
|
|
6432
6432
|
*/
|
|
6433
6433
|
interface $RangeSliderSettings extends sap.ui.commons.$SliderSettings {
|
|
6434
6434
|
/**
|
|
@@ -6446,7 +6446,7 @@ declare namespace sap {
|
|
|
6446
6446
|
/**
|
|
6447
6447
|
* Describes the settings that can be provided to the RatingIndicator constructor.
|
|
6448
6448
|
*
|
|
6449
|
-
* @deprecated
|
|
6449
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.RatingIndicator` control.
|
|
6450
6450
|
*/
|
|
6451
6451
|
interface $RatingIndicatorSettings extends sap.ui.core.$ControlSettings {
|
|
6452
6452
|
/**
|
|
@@ -6539,7 +6539,7 @@ declare namespace sap {
|
|
|
6539
6539
|
/**
|
|
6540
6540
|
* Describes the settings that can be provided to the ResponsiveContainer constructor.
|
|
6541
6541
|
*
|
|
6542
|
-
* @deprecated
|
|
6542
|
+
* @deprecated As of version 1.38. Use a container by choice from the {@link sap.m} library, instead.
|
|
6543
6543
|
*/
|
|
6544
6544
|
interface $ResponsiveContainerSettings
|
|
6545
6545
|
extends sap.ui.core.$ControlSettings {
|
|
@@ -6582,8 +6582,8 @@ declare namespace sap {
|
|
|
6582
6582
|
/**
|
|
6583
6583
|
* Describes the settings that can be provided to the ResponsiveContainerRange constructor.
|
|
6584
6584
|
*
|
|
6585
|
-
* @deprecated
|
|
6586
|
-
* choice from the sap.m library instead.
|
|
6585
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.ResponsiveContainer). Use a container
|
|
6586
|
+
* of your choice from the sap.m library instead.
|
|
6587
6587
|
*/
|
|
6588
6588
|
interface $ResponsiveContainerRangeSettings
|
|
6589
6589
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -6617,8 +6617,8 @@ declare namespace sap {
|
|
|
6617
6617
|
/**
|
|
6618
6618
|
* Describes the settings that can be provided to the RichTooltip constructor.
|
|
6619
6619
|
*
|
|
6620
|
-
* @deprecated
|
|
6621
|
-
* open it next to your control.
|
|
6620
|
+
* @deprecated As of version 1.38. Tf you want to achieve a similar behavior, use a `sap.m.Popover` control
|
|
6621
|
+
* and open it next to your control.
|
|
6622
6622
|
*/
|
|
6623
6623
|
interface $RichTooltipSettings extends sap.ui.core.$TooltipBaseSettings {
|
|
6624
6624
|
/**
|
|
@@ -6652,7 +6652,7 @@ declare namespace sap {
|
|
|
6652
6652
|
/**
|
|
6653
6653
|
* Describes the settings that can be provided to the RoadMap constructor.
|
|
6654
6654
|
*
|
|
6655
|
-
* @deprecated
|
|
6655
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Wizard` control.
|
|
6656
6656
|
*/
|
|
6657
6657
|
interface $RoadMapSettings extends sap.ui.core.$ControlSettings {
|
|
6658
6658
|
/**
|
|
@@ -6706,7 +6706,7 @@ declare namespace sap {
|
|
|
6706
6706
|
/**
|
|
6707
6707
|
* Describes the settings that can be provided to the RoadMapStep constructor.
|
|
6708
6708
|
*
|
|
6709
|
-
* @deprecated
|
|
6709
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Wizard` control.
|
|
6710
6710
|
*/
|
|
6711
6711
|
interface $RoadMapStepSettings extends sap.ui.core.$ElementSettings {
|
|
6712
6712
|
/**
|
|
@@ -6725,7 +6725,7 @@ declare namespace sap {
|
|
|
6725
6725
|
/**
|
|
6726
6726
|
* This property is only relevant when using sub steps.
|
|
6727
6727
|
*
|
|
6728
|
-
* @deprecated
|
|
6728
|
+
* @deprecated As of version 1.10.5. Note that sub steps will not be supported in future. This feature might
|
|
6729
6729
|
* be removed in one of the next releases.
|
|
6730
6730
|
*/
|
|
6731
6731
|
expanded?:
|
|
@@ -6745,7 +6745,7 @@ declare namespace sap {
|
|
|
6745
6745
|
* Sub steps for the current step. Will be displayed only in the case that the step is expanded. Otherwise,
|
|
6746
6746
|
* special arrows show the availability of sub steps. One level of sub steps supported.
|
|
6747
6747
|
*
|
|
6748
|
-
* @deprecated
|
|
6748
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
6749
6749
|
* in one of the next releases.
|
|
6750
6750
|
*/
|
|
6751
6751
|
subSteps?:
|
|
@@ -6758,7 +6758,7 @@ declare namespace sap {
|
|
|
6758
6758
|
/**
|
|
6759
6759
|
* Describes the settings that can be provided to the RowRepeater constructor.
|
|
6760
6760
|
*
|
|
6761
|
-
* @deprecated
|
|
6761
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.table.Table` control.
|
|
6762
6762
|
*/
|
|
6763
6763
|
interface $RowRepeaterSettings extends sap.ui.core.$ControlSettings {
|
|
6764
6764
|
/**
|
|
@@ -6872,7 +6872,7 @@ declare namespace sap {
|
|
|
6872
6872
|
/**
|
|
6873
6873
|
* Describes the settings that can be provided to the RowRepeaterFilter constructor.
|
|
6874
6874
|
*
|
|
6875
|
-
* @deprecated
|
|
6875
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.table.Table` control.
|
|
6876
6876
|
*/
|
|
6877
6877
|
interface $RowRepeaterFilterSettings
|
|
6878
6878
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -6898,7 +6898,7 @@ declare namespace sap {
|
|
|
6898
6898
|
/**
|
|
6899
6899
|
* Describes the settings that can be provided to the RowRepeaterSorter constructor.
|
|
6900
6900
|
*
|
|
6901
|
-
* @deprecated
|
|
6901
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.table.Table` control.
|
|
6902
6902
|
*/
|
|
6903
6903
|
interface $RowRepeaterSorterSettings
|
|
6904
6904
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -6924,7 +6924,7 @@ declare namespace sap {
|
|
|
6924
6924
|
/**
|
|
6925
6925
|
* Describes the settings that can be provided to the SearchField constructor.
|
|
6926
6926
|
*
|
|
6927
|
-
* @deprecated
|
|
6927
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.SearchField` control.
|
|
6928
6928
|
*/
|
|
6929
6929
|
interface $SearchFieldSettings extends sap.ui.core.$ControlSettings {
|
|
6930
6930
|
/**
|
|
@@ -7105,7 +7105,7 @@ declare namespace sap {
|
|
|
7105
7105
|
/**
|
|
7106
7106
|
* Describes the settings that can be provided to the SearchProvider constructor.
|
|
7107
7107
|
*
|
|
7108
|
-
* @deprecated
|
|
7108
|
+
* @deprecated As of version 1.6.0. Replaced by sap.ui.core.search.OpenSearchProvider
|
|
7109
7109
|
*/
|
|
7110
7110
|
interface $SearchProviderSettings
|
|
7111
7111
|
extends sap.ui.core.search.$OpenSearchProviderSettings {}
|
|
@@ -7113,7 +7113,7 @@ declare namespace sap {
|
|
|
7113
7113
|
/**
|
|
7114
7114
|
* Describes the settings that can be provided to the SegmentedButton constructor.
|
|
7115
7115
|
*
|
|
7116
|
-
* @deprecated
|
|
7116
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.SegmentedButton}
|
|
7117
7117
|
*/
|
|
7118
7118
|
interface $SegmentedButtonSettings extends sap.ui.core.$ControlSettings {
|
|
7119
7119
|
/**
|
|
@@ -7147,7 +7147,7 @@ declare namespace sap {
|
|
|
7147
7147
|
/**
|
|
7148
7148
|
* Describes the settings that can be provided to the Slider constructor.
|
|
7149
7149
|
*
|
|
7150
|
-
* @deprecated
|
|
7150
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Slider}
|
|
7151
7151
|
*/
|
|
7152
7152
|
interface $SliderSettings extends sap.ui.core.$ControlSettings {
|
|
7153
7153
|
/**
|
|
@@ -7285,7 +7285,7 @@ declare namespace sap {
|
|
|
7285
7285
|
/**
|
|
7286
7286
|
* Describes the settings that can be provided to the Splitter constructor.
|
|
7287
7287
|
*
|
|
7288
|
-
* @deprecated
|
|
7288
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Splitter` control.
|
|
7289
7289
|
*/
|
|
7290
7290
|
interface $SplitterSettings extends sap.ui.core.$ControlSettings {
|
|
7291
7291
|
/**
|
|
@@ -7378,7 +7378,7 @@ declare namespace sap {
|
|
|
7378
7378
|
/**
|
|
7379
7379
|
* Describes the settings that can be provided to the Tab constructor.
|
|
7380
7380
|
*
|
|
7381
|
-
* @deprecated
|
|
7381
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.TabContainer` control.
|
|
7382
7382
|
*/
|
|
7383
7383
|
interface $TabSettings extends sap.ui.commons.$PanelSettings {
|
|
7384
7384
|
/**
|
|
@@ -7408,8 +7408,8 @@ declare namespace sap {
|
|
|
7408
7408
|
/**
|
|
7409
7409
|
* Defines whether the tab is the active one.
|
|
7410
7410
|
*
|
|
7411
|
-
* @deprecated
|
|
7412
|
-
* is used.
|
|
7411
|
+
* @deprecated As of version 0.17.0. This property is not used. To identify the selected tab in a TabStrip
|
|
7412
|
+
* selectedIndex is used.
|
|
7413
7413
|
*/
|
|
7414
7414
|
selected?:
|
|
7415
7415
|
| boolean
|
|
@@ -7420,7 +7420,7 @@ declare namespace sap {
|
|
|
7420
7420
|
/**
|
|
7421
7421
|
* Describes the settings that can be provided to the TabStrip constructor.
|
|
7422
7422
|
*
|
|
7423
|
-
* @deprecated
|
|
7423
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.TabContainer` control.
|
|
7424
7424
|
*/
|
|
7425
7425
|
interface $TabStripSettings extends sap.ui.core.$ControlSettings {
|
|
7426
7426
|
/**
|
|
@@ -7478,7 +7478,7 @@ declare namespace sap {
|
|
|
7478
7478
|
/**
|
|
7479
7479
|
* Describes the settings that can be provided to the TextArea constructor.
|
|
7480
7480
|
*
|
|
7481
|
-
* @deprecated
|
|
7481
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.TextArea` control.
|
|
7482
7482
|
*/
|
|
7483
7483
|
interface $TextAreaSettings extends sap.ui.commons.$TextFieldSettings {
|
|
7484
7484
|
/**
|
|
@@ -7530,7 +7530,7 @@ declare namespace sap {
|
|
|
7530
7530
|
/**
|
|
7531
7531
|
* ID of label control
|
|
7532
7532
|
*
|
|
7533
|
-
* @deprecated
|
|
7533
|
+
* @deprecated As of version 1.5.2. Please use association AriaLabelledBy instead.
|
|
7534
7534
|
*/
|
|
7535
7535
|
labeledBy?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7536
7536
|
}
|
|
@@ -7538,7 +7538,7 @@ declare namespace sap {
|
|
|
7538
7538
|
/**
|
|
7539
7539
|
* Describes the settings that can be provided to the TextField constructor.
|
|
7540
7540
|
*
|
|
7541
|
-
* @deprecated
|
|
7541
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Input}
|
|
7542
7542
|
*/
|
|
7543
7543
|
interface $TextFieldSettings extends sap.ui.core.$ControlSettings {
|
|
7544
7544
|
/**
|
|
@@ -7681,7 +7681,7 @@ declare namespace sap {
|
|
|
7681
7681
|
/**
|
|
7682
7682
|
* Describes the settings that can be provided to the TextView constructor.
|
|
7683
7683
|
*
|
|
7684
|
-
* @deprecated
|
|
7684
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Text}.
|
|
7685
7685
|
*/
|
|
7686
7686
|
interface $TextViewSettings extends sap.ui.core.$ControlSettings {
|
|
7687
7687
|
/**
|
|
@@ -7774,14 +7774,14 @@ declare namespace sap {
|
|
|
7774
7774
|
/**
|
|
7775
7775
|
* Describes the settings that can be provided to the Title constructor.
|
|
7776
7776
|
*
|
|
7777
|
-
* @deprecated
|
|
7777
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.core library. Please use this one.
|
|
7778
7778
|
*/
|
|
7779
7779
|
interface $TitleSettings extends sap.ui.core.$TitleSettings {}
|
|
7780
7780
|
|
|
7781
7781
|
/**
|
|
7782
7782
|
* Describes the settings that can be provided to the ToggleButton constructor.
|
|
7783
7783
|
*
|
|
7784
|
-
* @deprecated
|
|
7784
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.ToggleButton}
|
|
7785
7785
|
*/
|
|
7786
7786
|
interface $ToggleButtonSettings extends sap.ui.commons.$ButtonSettings {
|
|
7787
7787
|
/**
|
|
@@ -7796,7 +7796,7 @@ declare namespace sap {
|
|
|
7796
7796
|
/**
|
|
7797
7797
|
* Describes the settings that can be provided to the Toolbar constructor.
|
|
7798
7798
|
*
|
|
7799
|
-
* @deprecated
|
|
7799
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Toolbar}
|
|
7800
7800
|
*/
|
|
7801
7801
|
interface $ToolbarSettings extends sap.ui.core.$ControlSettings {
|
|
7802
7802
|
/**
|
|
@@ -7847,7 +7847,7 @@ declare namespace sap {
|
|
|
7847
7847
|
/**
|
|
7848
7848
|
* Describes the settings that can be provided to the ToolbarSeparator constructor.
|
|
7849
7849
|
*
|
|
7850
|
-
* @deprecated
|
|
7850
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Toolbar` control.
|
|
7851
7851
|
*/
|
|
7852
7852
|
interface $ToolbarSeparatorSettings extends sap.ui.core.$ElementSettings {
|
|
7853
7853
|
/**
|
|
@@ -7870,7 +7870,7 @@ declare namespace sap {
|
|
|
7870
7870
|
/**
|
|
7871
7871
|
* Describes the settings that can be provided to the Tree constructor.
|
|
7872
7872
|
*
|
|
7873
|
-
* @deprecated
|
|
7873
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Tree}
|
|
7874
7874
|
*/
|
|
7875
7875
|
interface $TreeSettings extends sap.ui.core.$ControlSettings {
|
|
7876
7876
|
/**
|
|
@@ -7958,7 +7958,7 @@ declare namespace sap {
|
|
|
7958
7958
|
/**
|
|
7959
7959
|
* Describes the settings that can be provided to the TreeNode constructor.
|
|
7960
7960
|
*
|
|
7961
|
-
* @deprecated
|
|
7961
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Tree}
|
|
7962
7962
|
*/
|
|
7963
7963
|
interface $TreeNodeSettings extends sap.ui.core.$ElementSettings {
|
|
7964
7964
|
/**
|
|
@@ -8039,7 +8039,7 @@ declare namespace sap {
|
|
|
8039
8039
|
/**
|
|
8040
8040
|
* Describes the settings that can be provided to the TriStateCheckBox constructor.
|
|
8041
8041
|
*
|
|
8042
|
-
* @deprecated
|
|
8042
|
+
* @deprecated As of version 1.38. Use {@link sap.m.CheckBox} instead.
|
|
8043
8043
|
*/
|
|
8044
8044
|
interface $TriStateCheckBoxSettings extends sap.ui.core.$ControlSettings {
|
|
8045
8045
|
/**
|
|
@@ -8106,7 +8106,7 @@ declare namespace sap {
|
|
|
8106
8106
|
/**
|
|
8107
8107
|
* Describes the settings that can be provided to the ValueHelpField constructor.
|
|
8108
8108
|
*
|
|
8109
|
-
* @deprecated
|
|
8109
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Input` control.
|
|
8110
8110
|
*/
|
|
8111
8111
|
interface $ValueHelpFieldSettings
|
|
8112
8112
|
extends sap.ui.commons.$TextFieldSettings {
|
|
@@ -8706,7 +8706,7 @@ declare namespace sap {
|
|
|
8706
8706
|
*
|
|
8707
8707
|
*
|
|
8708
8708
|
* @since 0.8.8
|
|
8709
|
-
* @deprecated
|
|
8709
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.MessageBox` control.
|
|
8710
8710
|
*/
|
|
8711
8711
|
interface MessageBox {
|
|
8712
8712
|
/**
|
|
@@ -8837,7 +8837,7 @@ declare namespace sap {
|
|
|
8837
8837
|
/**
|
|
8838
8838
|
* Contains N sections, acting as containers for any library control
|
|
8839
8839
|
*
|
|
8840
|
-
* @deprecated
|
|
8840
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Panel}.
|
|
8841
8841
|
*/
|
|
8842
8842
|
class Accordion extends sap.ui.core.Control {
|
|
8843
8843
|
/**
|
|
@@ -9288,7 +9288,7 @@ declare namespace sap {
|
|
|
9288
9288
|
/**
|
|
9289
9289
|
* Represents a panel which is a container for other controls. The container does not have any layout function.
|
|
9290
9290
|
*
|
|
9291
|
-
* @deprecated
|
|
9291
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
9292
9292
|
*/
|
|
9293
9293
|
class AccordionSection extends sap.ui.core.Element {
|
|
9294
9294
|
/**
|
|
@@ -9457,7 +9457,7 @@ declare namespace sap {
|
|
|
9457
9457
|
*
|
|
9458
9458
|
* Default value is `false`.
|
|
9459
9459
|
*
|
|
9460
|
-
* @deprecated
|
|
9460
|
+
* @deprecated As of version 1.34. Use Accordion's "openedSectionsId" property
|
|
9461
9461
|
*
|
|
9462
9462
|
* @returns Value of property `collapsed`
|
|
9463
9463
|
*/
|
|
@@ -9613,7 +9613,7 @@ declare namespace sap {
|
|
|
9613
9613
|
* The application header control stands on the top of any application page. It consists of 4 areas: Logo
|
|
9614
9614
|
* area, Function area provided by application, Search area, Logout area.
|
|
9615
9615
|
*
|
|
9616
|
-
* @deprecated
|
|
9616
|
+
* @deprecated As of version 1.38. Instead, use the `sap.tnt.ToolHeader` control.
|
|
9617
9617
|
*/
|
|
9618
9618
|
class ApplicationHeader extends sap.ui.core.Control {
|
|
9619
9619
|
/**
|
|
@@ -9894,7 +9894,7 @@ declare namespace sap {
|
|
|
9894
9894
|
* Used for defining areas in an image map. At runtime, the user can trigger an action, or start a URL,
|
|
9895
9895
|
* from the single image areas.
|
|
9896
9896
|
*
|
|
9897
|
-
* @deprecated
|
|
9897
|
+
* @deprecated As of version 1.38.
|
|
9898
9898
|
*/
|
|
9899
9899
|
class Area extends sap.ui.core.Element {
|
|
9900
9900
|
/**
|
|
@@ -10064,7 +10064,7 @@ declare namespace sap {
|
|
|
10064
10064
|
* Textfield with list based text completion.
|
|
10065
10065
|
*
|
|
10066
10066
|
* @since 1.10.0
|
|
10067
|
-
* @deprecated
|
|
10067
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Input}.
|
|
10068
10068
|
*/
|
|
10069
10069
|
class AutoComplete
|
|
10070
10070
|
extends sap.ui.commons.ComboBox
|
|
@@ -10224,15 +10224,15 @@ declare namespace sap {
|
|
|
10224
10224
|
*/
|
|
10225
10225
|
getEnableScrolling(): boolean;
|
|
10226
10226
|
/**
|
|
10227
|
-
* @deprecated
|
|
10227
|
+
* @deprecated As of version 1.10.0. NOT SUPPORTED
|
|
10228
10228
|
*/
|
|
10229
10229
|
getListBox(): string;
|
|
10230
10230
|
/**
|
|
10231
|
-
* @deprecated
|
|
10231
|
+
* @deprecated As of version 1.10.0. NOT SUPPORTED
|
|
10232
10232
|
*/
|
|
10233
10233
|
getSelectedItemId(): string;
|
|
10234
10234
|
/**
|
|
10235
|
-
* @deprecated
|
|
10235
|
+
* @deprecated As of version 1.10.0. NOT SUPPORTED
|
|
10236
10236
|
*/
|
|
10237
10237
|
getSelectedKey(): string;
|
|
10238
10238
|
/**
|
|
@@ -10268,15 +10268,15 @@ declare namespace sap {
|
|
|
10268
10268
|
fFilter?: Function
|
|
10269
10269
|
): void;
|
|
10270
10270
|
/**
|
|
10271
|
-
* @deprecated
|
|
10271
|
+
* @deprecated As of version 1.10.0. NOT SUPPORTED
|
|
10272
10272
|
*/
|
|
10273
10273
|
setListBox(oListBox: string | sap.ui.commons.ListBox): this;
|
|
10274
10274
|
/**
|
|
10275
|
-
* @deprecated
|
|
10275
|
+
* @deprecated As of version 1.10.0. NOT SUPPORTED
|
|
10276
10276
|
*/
|
|
10277
10277
|
setSelectedItemId(sSelectedItemId: string): this;
|
|
10278
10278
|
/**
|
|
10279
|
-
* @deprecated
|
|
10279
|
+
* @deprecated As of version 1.10.0. NOT SUPPORTED
|
|
10280
10280
|
*/
|
|
10281
10281
|
setSelectedKey(sSelectedKey: string): this;
|
|
10282
10282
|
}
|
|
@@ -10284,7 +10284,7 @@ declare namespace sap {
|
|
|
10284
10284
|
* Enables users to trigger actions such as save or print. For the button UI, you can define some text or
|
|
10285
10285
|
* an icon, or both.
|
|
10286
10286
|
*
|
|
10287
|
-
* @deprecated
|
|
10287
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Button}
|
|
10288
10288
|
*/
|
|
10289
10289
|
class Button
|
|
10290
10290
|
extends sap.ui.core.Control
|
|
@@ -10876,8 +10876,8 @@ declare namespace sap {
|
|
|
10876
10876
|
* Callout is a small popup with some useful information and links that is shown when a mouse is hovered
|
|
10877
10877
|
* over a specific view element.
|
|
10878
10878
|
*
|
|
10879
|
-
* @deprecated
|
|
10880
|
-
* open it next to your control.
|
|
10879
|
+
* @deprecated As of version 1.38. If you want to achieve a similar behavior, use a `sap.m.Popover` control
|
|
10880
|
+
* and open it next to your control.
|
|
10881
10881
|
*/
|
|
10882
10882
|
class Callout extends sap.ui.commons.CalloutBase {
|
|
10883
10883
|
/**
|
|
@@ -11023,7 +11023,7 @@ declare namespace sap {
|
|
|
11023
11023
|
/**
|
|
11024
11024
|
* CalloutBase is a building block for Callout. Do not use it directly. Use the Callout control instead
|
|
11025
11025
|
*
|
|
11026
|
-
* @deprecated
|
|
11026
|
+
* @deprecated As of version 1.38. If you want to achieve a similar behavior, use the `sap.m.Popover` control
|
|
11027
11027
|
* and open it next to your control.
|
|
11028
11028
|
*/
|
|
11029
11029
|
class CalloutBase extends sap.ui.core.TooltipBase {
|
|
@@ -11443,7 +11443,7 @@ declare namespace sap {
|
|
|
11443
11443
|
* you. Navigation is done through buttons or keys.
|
|
11444
11444
|
*
|
|
11445
11445
|
* @since 1.8.0
|
|
11446
|
-
* @deprecated
|
|
11446
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Carousel` control.
|
|
11447
11447
|
*/
|
|
11448
11448
|
class Carousel extends sap.ui.core.Control {
|
|
11449
11449
|
/**
|
|
@@ -11898,7 +11898,7 @@ declare namespace sap {
|
|
|
11898
11898
|
* Provides a box which can be flagged, the box has a label. A check box can either stand alone, or in a
|
|
11899
11899
|
* group with other check boxes. As an option, the boxes can initially be set to status 'Not Editable'.
|
|
11900
11900
|
*
|
|
11901
|
-
* @deprecated
|
|
11901
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.CheckBox` control.
|
|
11902
11902
|
*/
|
|
11903
11903
|
class CheckBox
|
|
11904
11904
|
extends sap.ui.core.Control
|
|
@@ -12381,7 +12381,7 @@ declare namespace sap {
|
|
|
12381
12381
|
* This control gives the user the opportunity to choose a color. The color can be defined using HEX-, RGB-
|
|
12382
12382
|
* or HSV-values or a CSS colorname.
|
|
12383
12383
|
*
|
|
12384
|
-
* @deprecated
|
|
12384
|
+
* @deprecated As of version 1.38. replaced by {@link sap.ui.unified.ColorPicker}
|
|
12385
12385
|
*/
|
|
12386
12386
|
class ColorPicker extends sap.ui.unified.ColorPicker {
|
|
12387
12387
|
/**
|
|
@@ -12458,7 +12458,7 @@ declare namespace sap {
|
|
|
12458
12458
|
* of a list of pre-defined items. The choosable items can be provided in the form of a complete `ListBox`,
|
|
12459
12459
|
* single `ListItems`.
|
|
12460
12460
|
*
|
|
12461
|
-
* @deprecated
|
|
12461
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.ComboBox}
|
|
12462
12462
|
*/
|
|
12463
12463
|
class ComboBox
|
|
12464
12464
|
extends sap.ui.commons.TextField
|
|
@@ -12887,7 +12887,7 @@ declare namespace sap {
|
|
|
12887
12887
|
* DatePicker should load the unified library. Otherwise it will be loaded the first time a DatePicker is
|
|
12888
12888
|
* opened.
|
|
12889
12889
|
*
|
|
12890
|
-
* @deprecated
|
|
12890
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.DatePicker}
|
|
12891
12891
|
*/
|
|
12892
12892
|
class DatePicker extends sap.ui.commons.TextField {
|
|
12893
12893
|
/**
|
|
@@ -13046,7 +13046,7 @@ declare namespace sap {
|
|
|
13046
13046
|
* such as popups with fixed sizes, popups with unlimited width, scrolling bars for large windows, and control
|
|
13047
13047
|
* nesting (for example, a drop-down list can be included in the window).
|
|
13048
13048
|
*
|
|
13049
|
-
* @deprecated
|
|
13049
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Dialog` control.
|
|
13050
13050
|
*/
|
|
13051
13051
|
class Dialog
|
|
13052
13052
|
extends sap.ui.core.Control
|
|
@@ -13310,7 +13310,7 @@ declare namespace sap {
|
|
|
13310
13310
|
* on its `openState`. Descendant controls that honor the enabled state of their ancestors will appear disabled
|
|
13311
13311
|
* after the dialog is closed.
|
|
13312
13312
|
*
|
|
13313
|
-
* @experimental
|
|
13313
|
+
* @experimental Whether a dialog is regarded as "enabled" during the state transitions (OPENING, CLOSING)
|
|
13314
13314
|
* is not fully decided. Currently, it is enabled during the OPENING phase and disabled during the CLOSING
|
|
13315
13315
|
* phase. The only potential change would be to treat the OPENING phase as disabled as well. Applications
|
|
13316
13316
|
* should be prepared to receive events from "enabled" controls after they called open() on the dialog until
|
|
@@ -13926,7 +13926,7 @@ declare namespace sap {
|
|
|
13926
13926
|
* The control provides a field that allows end users to an entry out of a list of pre-defined items. The
|
|
13927
13927
|
* choosable items can be provided in the form of a complete `ListBox`, single `ListItems`.
|
|
13928
13928
|
*
|
|
13929
|
-
* @deprecated
|
|
13929
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.ComboBox}
|
|
13930
13930
|
*/
|
|
13931
13931
|
class DropdownBox extends sap.ui.commons.ComboBox {
|
|
13932
13932
|
/**
|
|
@@ -14378,7 +14378,7 @@ declare namespace sap {
|
|
|
14378
14378
|
* with explicit calls, adjustable control sizes, text display after uploads, or tooltips containing complete
|
|
14379
14379
|
* file paths.
|
|
14380
14380
|
*
|
|
14381
|
-
* @deprecated
|
|
14381
|
+
* @deprecated As of version 1.21.0. Please use the control sap.ui.unified.FileUploader of the library sap.ui.unified
|
|
14382
14382
|
* instead.
|
|
14383
14383
|
*/
|
|
14384
14384
|
class FileUploader extends sap.ui.unified.FileUploader {
|
|
@@ -14454,8 +14454,8 @@ declare namespace sap {
|
|
|
14454
14454
|
/**
|
|
14455
14455
|
* Represents a parameter for the FileUploader which is rendered as a hidden inputfield.
|
|
14456
14456
|
*
|
|
14457
|
-
* @deprecated
|
|
14458
|
-
* sap.ui.unified instead.
|
|
14457
|
+
* @deprecated As of version 1.21.0. Please use the element sap.ui.unified.FileUploaderParameter of the
|
|
14458
|
+
* library sap.ui.unified instead.
|
|
14459
14459
|
*/
|
|
14460
14460
|
class FileUploaderParameter extends sap.ui.unified.FileUploaderParameter {
|
|
14461
14461
|
/**
|
|
@@ -14531,7 +14531,7 @@ declare namespace sap {
|
|
|
14531
14531
|
* The FormattedTextView control allows the usage of a limited set of HTML tags for display.
|
|
14532
14532
|
*
|
|
14533
14533
|
* @since 1.9.0
|
|
14534
|
-
* @deprecated
|
|
14534
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.core.HTML` control.
|
|
14535
14535
|
*/
|
|
14536
14536
|
class FormattedTextView extends sap.ui.core.Control {
|
|
14537
14537
|
/**
|
|
@@ -14743,8 +14743,8 @@ declare namespace sap {
|
|
|
14743
14743
|
/**
|
|
14744
14744
|
* Divides the screen in visual areas.
|
|
14745
14745
|
*
|
|
14746
|
-
* @deprecated
|
|
14747
|
-
* among others.
|
|
14746
|
+
* @deprecated As of version 1.38. Use the layout controls instead, e.g {@link sap.ui.layout.Splitter} or
|
|
14747
|
+
* {@link sap.ui.layout.BlockLayout} among others.
|
|
14748
14748
|
*/
|
|
14749
14749
|
class HorizontalDivider extends sap.ui.core.Control {
|
|
14750
14750
|
/**
|
|
@@ -14901,7 +14901,7 @@ declare namespace sap {
|
|
|
14901
14901
|
* A wrapper around the IMG tag. The image can be loaded from a remote or local server. There are various
|
|
14902
14902
|
* size setting options available, and the images can be combined with actions.
|
|
14903
14903
|
*
|
|
14904
|
-
* @deprecated
|
|
14904
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Image}
|
|
14905
14905
|
*/
|
|
14906
14906
|
class Image
|
|
14907
14907
|
extends sap.ui.core.Control
|
|
@@ -15223,7 +15223,7 @@ declare namespace sap {
|
|
|
15223
15223
|
/**
|
|
15224
15224
|
* Combination of image areas where at runtime these areas are starting points for hyperlinks or actions
|
|
15225
15225
|
*
|
|
15226
|
-
* @deprecated
|
|
15226
|
+
* @deprecated As of version 1.38. There's not replacement because of the archaic design pattern.
|
|
15227
15227
|
*/
|
|
15228
15228
|
class ImageMap extends sap.ui.core.Control {
|
|
15229
15229
|
/**
|
|
@@ -15487,7 +15487,7 @@ declare namespace sap {
|
|
|
15487
15487
|
* The InPlaceEdit is a functionality to have text in display mode that can be changed in place.
|
|
15488
15488
|
*
|
|
15489
15489
|
* @since 1.8.0
|
|
15490
|
-
* @deprecated
|
|
15490
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Input}
|
|
15491
15491
|
*/
|
|
15492
15492
|
class InPlaceEdit extends sap.ui.core.Control {
|
|
15493
15493
|
/**
|
|
@@ -15888,7 +15888,7 @@ declare namespace sap {
|
|
|
15888
15888
|
* The control is used for labeling other controls. The API provides formatting options, for example, for
|
|
15889
15889
|
* bold display or alignment. A label can have an icon.
|
|
15890
15890
|
*
|
|
15891
|
-
* @deprecated
|
|
15891
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Label` control.
|
|
15892
15892
|
*/
|
|
15893
15893
|
class Label
|
|
15894
15894
|
extends sap.ui.core.Control
|
|
@@ -16257,7 +16257,7 @@ declare namespace sap {
|
|
|
16257
16257
|
* are supported. Another usage scenario is triggering an action, for example to open a popup window. In
|
|
16258
16258
|
* both cases, the link is a hypertext link.
|
|
16259
16259
|
*
|
|
16260
|
-
* @deprecated
|
|
16260
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Link` control.
|
|
16261
16261
|
*/
|
|
16262
16262
|
class Link
|
|
16263
16263
|
extends sap.ui.core.Control
|
|
@@ -16669,7 +16669,7 @@ declare namespace sap {
|
|
|
16669
16669
|
* such as defining the list box height, fixing the number of visible items, choosing one item to be the
|
|
16670
16670
|
* item that is marked by default when the list box is shown, or a scroll bar for large list boxes are available.
|
|
16671
16671
|
*
|
|
16672
|
-
* @deprecated
|
|
16672
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.List` control.
|
|
16673
16673
|
*/
|
|
16674
16674
|
class ListBox extends sap.ui.core.Control {
|
|
16675
16675
|
/**
|
|
@@ -17488,7 +17488,7 @@ declare namespace sap {
|
|
|
17488
17488
|
* within the control hierarchy. Instead it can be opened at a specified position via a function call.
|
|
17489
17489
|
*
|
|
17490
17490
|
* @since 1.0.0
|
|
17491
|
-
* @deprecated
|
|
17491
|
+
* @deprecated As of version 1.21.0. replaced by {@link sap.ui.unified.Menu}
|
|
17492
17492
|
*/
|
|
17493
17493
|
class Menu extends sap.ui.unified.Menu {
|
|
17494
17494
|
/**
|
|
@@ -17568,7 +17568,7 @@ declare namespace sap {
|
|
|
17568
17568
|
* enough to display all items, defining images for single or all items in a menu, automated layouting of
|
|
17569
17569
|
* items with or w/o image, and active/non-active items.
|
|
17570
17570
|
*
|
|
17571
|
-
* @deprecated
|
|
17571
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.OverflowToolbar` control.
|
|
17572
17572
|
*/
|
|
17573
17573
|
class MenuBar extends sap.ui.core.Control {
|
|
17574
17574
|
/**
|
|
@@ -17802,7 +17802,7 @@ declare namespace sap {
|
|
|
17802
17802
|
* Common button control that opens a menu when clicked by the user. The control provides an API for configuring
|
|
17803
17803
|
* the docking position of the menu.
|
|
17804
17804
|
*
|
|
17805
|
-
* @deprecated
|
|
17805
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.MenuButton` control.
|
|
17806
17806
|
*/
|
|
17807
17807
|
class MenuButton extends sap.ui.commons.Button {
|
|
17808
17808
|
/**
|
|
@@ -18116,7 +18116,7 @@ declare namespace sap {
|
|
|
18116
18116
|
* user in the menu or it can provide a submenu to organize the actions hierarchically.
|
|
18117
18117
|
*
|
|
18118
18118
|
* @since 1.0.0
|
|
18119
|
-
* @deprecated
|
|
18119
|
+
* @deprecated As of version 1.21.0. replaced by {@link sap.ui.unified.MenuItem}
|
|
18120
18120
|
*/
|
|
18121
18121
|
class MenuItem extends sap.ui.unified.MenuItem {
|
|
18122
18122
|
/**
|
|
@@ -18192,7 +18192,7 @@ declare namespace sap {
|
|
|
18192
18192
|
* Abstract base class for menu item which provides common properties and events for all concrete item implementations.
|
|
18193
18193
|
*
|
|
18194
18194
|
* @since 1.0.0
|
|
18195
|
-
* @deprecated
|
|
18195
|
+
* @deprecated As of version 1.21.0. replaced by {@link sap.ui.unified.MenuItemBase}
|
|
18196
18196
|
*/
|
|
18197
18197
|
abstract class MenuItemBase extends sap.ui.unified.MenuItemBase {
|
|
18198
18198
|
/**
|
|
@@ -18223,7 +18223,7 @@ declare namespace sap {
|
|
|
18223
18223
|
* implementations. The aggregation `submenu` (inherited from parent class) is not supported for this type
|
|
18224
18224
|
* of menu item.
|
|
18225
18225
|
*
|
|
18226
|
-
* @deprecated
|
|
18226
|
+
* @deprecated As of version 1.21.0. Please use the control `sap.ui.unified.MenuTextFieldItem` of the library
|
|
18227
18227
|
* `sap.ui.unified` instead.
|
|
18228
18228
|
*/
|
|
18229
18229
|
class MenuTextFieldItem extends sap.ui.unified.MenuTextFieldItem {
|
|
@@ -18299,7 +18299,7 @@ declare namespace sap {
|
|
|
18299
18299
|
/**
|
|
18300
18300
|
* Creates the "Message"s to be supplied to the "MessageBar" Control.
|
|
18301
18301
|
*
|
|
18302
|
-
* @deprecated
|
|
18302
|
+
* @deprecated As of version 1.4.0. A new messaging concept will be created in future. Therefore this control
|
|
18303
18303
|
* might be removed in one of the next versions.
|
|
18304
18304
|
*/
|
|
18305
18305
|
class Message extends sap.ui.core.Control {
|
|
@@ -18483,7 +18483,7 @@ declare namespace sap {
|
|
|
18483
18483
|
/**
|
|
18484
18484
|
* Creates an instance of a MessageBar Control, for displaying messages.
|
|
18485
18485
|
*
|
|
18486
|
-
* @deprecated
|
|
18486
|
+
* @deprecated As of version 1.4.0. Instead, use the `sap.m.MessagePopover` control.
|
|
18487
18487
|
*/
|
|
18488
18488
|
class MessageBar extends sap.ui.core.Control {
|
|
18489
18489
|
/**
|
|
@@ -18731,7 +18731,7 @@ declare namespace sap {
|
|
|
18731
18731
|
/**
|
|
18732
18732
|
* Instantiated by the "MessageBar" Control if the user requests to generate the corresponding "MessageList".
|
|
18733
18733
|
*
|
|
18734
|
-
* @deprecated
|
|
18734
|
+
* @deprecated As of version 1.4.0. A new messaging concept will be created in future. Therefore this control
|
|
18735
18735
|
* might be removed in one of the next versions.
|
|
18736
18736
|
*/
|
|
18737
18737
|
class MessageList extends sap.ui.core.Control {
|
|
@@ -18892,7 +18892,7 @@ declare namespace sap {
|
|
|
18892
18892
|
/**
|
|
18893
18893
|
* Responsible for displaying the new incoming messages, one at the time, on top of the MessageBar.
|
|
18894
18894
|
*
|
|
18895
|
-
* @deprecated
|
|
18895
|
+
* @deprecated As of version 1.4.0. Instead, use the `sap.m.MessageToast` control.
|
|
18896
18896
|
*/
|
|
18897
18897
|
class MessageToast extends sap.ui.core.Control {
|
|
18898
18898
|
/**
|
|
@@ -19084,7 +19084,7 @@ declare namespace sap {
|
|
|
19084
19084
|
/**
|
|
19085
19085
|
* Provides navigation between pages within a list of numbered pages.
|
|
19086
19086
|
*
|
|
19087
|
-
* @deprecated
|
|
19087
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
19088
19088
|
*/
|
|
19089
19089
|
class Paginator extends sap.ui.core.Control {
|
|
19090
19090
|
/**
|
|
@@ -19286,7 +19286,7 @@ declare namespace sap {
|
|
|
19286
19286
|
* Represents a container with scroll functionality, that can be used for text and controls. The Panel does
|
|
19287
19287
|
* not layout the embedded controls.
|
|
19288
19288
|
*
|
|
19289
|
-
* @deprecated
|
|
19289
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Panel` control.
|
|
19290
19290
|
*/
|
|
19291
19291
|
class Panel extends sap.ui.core.Control {
|
|
19292
19292
|
/**
|
|
@@ -19823,7 +19823,7 @@ declare namespace sap {
|
|
|
19823
19823
|
/**
|
|
19824
19824
|
* A text field with masked characters which borrows its properties and methods from TextField.
|
|
19825
19825
|
*
|
|
19826
|
-
* @deprecated
|
|
19826
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Input` control.
|
|
19827
19827
|
*/
|
|
19828
19828
|
class PasswordField extends sap.ui.commons.TextField {
|
|
19829
19829
|
/**
|
|
@@ -19900,7 +19900,7 @@ declare namespace sap {
|
|
|
19900
19900
|
* values. The filling can be displayed in color only, or additionally with the percentage rate. The indicator
|
|
19901
19901
|
* status can be interactive.
|
|
19902
19902
|
*
|
|
19903
|
-
* @deprecated
|
|
19903
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.ProgressIndicator` control.
|
|
19904
19904
|
*/
|
|
19905
19905
|
class ProgressIndicator extends sap.ui.core.Control {
|
|
19906
19906
|
/**
|
|
@@ -20158,7 +20158,7 @@ declare namespace sap {
|
|
|
20158
20158
|
* sap.ui.commons.RadioButtonGroup), thus providing a limited choice for the user. An event is triggered
|
|
20159
20159
|
* when the user makes a change of the selection.
|
|
20160
20160
|
*
|
|
20161
|
-
* @deprecated
|
|
20161
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.RadioButton` control.
|
|
20162
20162
|
*/
|
|
20163
20163
|
class RadioButton
|
|
20164
20164
|
extends sap.ui.core.Control
|
|
@@ -20639,7 +20639,7 @@ declare namespace sap {
|
|
|
20639
20639
|
* For the representation of the single group entries, the RadioButton items are created automatically.
|
|
20640
20640
|
* For the RadioButton choice, mouse and keyboard navigation usage is supported.
|
|
20641
20641
|
*
|
|
20642
|
-
* @deprecated
|
|
20642
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.RadioButtonGroup` control.
|
|
20643
20643
|
*/
|
|
20644
20644
|
class RadioButtonGroup
|
|
20645
20645
|
extends sap.ui.core.Control
|
|
@@ -21171,7 +21171,7 @@ declare namespace sap {
|
|
|
21171
21171
|
* units of measurement. Users can move the pointers along the line to change a range with graphical support.
|
|
21172
21172
|
*
|
|
21173
21173
|
* @since 1.8.0
|
|
21174
|
-
* @deprecated
|
|
21174
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.RangeSlider}
|
|
21175
21175
|
*/
|
|
21176
21176
|
class RangeSlider extends sap.ui.commons.Slider {
|
|
21177
21177
|
/**
|
|
@@ -21277,7 +21277,7 @@ declare namespace sap {
|
|
|
21277
21277
|
* can be specified, as well as the URIs to the image icons which shall be used as rating symbols. When
|
|
21278
21278
|
* the user performs a rating, an event is fired.
|
|
21279
21279
|
*
|
|
21280
|
-
* @deprecated
|
|
21280
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.RatingIndicator` control.
|
|
21281
21281
|
*/
|
|
21282
21282
|
class RatingIndicator extends sap.ui.core.Control {
|
|
21283
21283
|
/**
|
|
@@ -21757,7 +21757,7 @@ declare namespace sap {
|
|
|
21757
21757
|
* an event, whenever a new range is reached. In addition the content of the new range is automatically
|
|
21758
21758
|
* shown, if it is set.
|
|
21759
21759
|
*
|
|
21760
|
-
* @deprecated
|
|
21760
|
+
* @deprecated As of version 1.38. Use a container by choice from the {@link sap.m} library, instead.
|
|
21761
21761
|
*/
|
|
21762
21762
|
class ResponsiveContainer extends sap.ui.core.Control {
|
|
21763
21763
|
/**
|
|
@@ -22059,8 +22059,8 @@ declare namespace sap {
|
|
|
22059
22059
|
/**
|
|
22060
22060
|
* Defines a range for the ResponsiveContainer
|
|
22061
22061
|
*
|
|
22062
|
-
* @deprecated
|
|
22063
|
-
* choice from the sap.m library instead.
|
|
22062
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.ResponsiveContainer). Use a container
|
|
22063
|
+
* of your choice from the sap.m library instead.
|
|
22064
22064
|
*/
|
|
22065
22065
|
class ResponsiveContainerRange extends sap.ui.core.Element {
|
|
22066
22066
|
/**
|
|
@@ -22236,8 +22236,8 @@ declare namespace sap {
|
|
|
22236
22236
|
/**
|
|
22237
22237
|
* Is used to provide tool tips that can have long text, image and title. This tool tip extends the TooltipBase.
|
|
22238
22238
|
*
|
|
22239
|
-
* @deprecated
|
|
22240
|
-
* open it next to your control.
|
|
22239
|
+
* @deprecated As of version 1.38. Tf you want to achieve a similar behavior, use a `sap.m.Popover` control
|
|
22240
|
+
* and open it next to your control.
|
|
22241
22241
|
*/
|
|
22242
22242
|
class RichTooltip extends sap.ui.core.TooltipBase {
|
|
22243
22243
|
/**
|
|
@@ -22411,7 +22411,7 @@ declare namespace sap {
|
|
|
22411
22411
|
/**
|
|
22412
22412
|
* RoadMap is used to display step-by-step work flows of a clearly defined work process.
|
|
22413
22413
|
*
|
|
22414
|
-
* @deprecated
|
|
22414
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Wizard` control.
|
|
22415
22415
|
*/
|
|
22416
22416
|
class RoadMap extends sap.ui.core.Control {
|
|
22417
22417
|
/**
|
|
@@ -22817,7 +22817,7 @@ declare namespace sap {
|
|
|
22817
22817
|
/**
|
|
22818
22818
|
* Step used within a RoadMap Control.
|
|
22819
22819
|
*
|
|
22820
|
-
* @deprecated
|
|
22820
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Wizard` control.
|
|
22821
22821
|
*/
|
|
22822
22822
|
class RoadMapStep extends sap.ui.core.Element {
|
|
22823
22823
|
/**
|
|
@@ -22885,7 +22885,7 @@ declare namespace sap {
|
|
|
22885
22885
|
/**
|
|
22886
22886
|
* Adds some subStep to the aggregation {@link #getSubSteps subSteps}.
|
|
22887
22887
|
*
|
|
22888
|
-
* @deprecated
|
|
22888
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
22889
22889
|
* in one of the next releases.
|
|
22890
22890
|
*
|
|
22891
22891
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -22899,7 +22899,7 @@ declare namespace sap {
|
|
|
22899
22899
|
/**
|
|
22900
22900
|
* Destroys all the subSteps in the aggregation {@link #getSubSteps subSteps}.
|
|
22901
22901
|
*
|
|
22902
|
-
* @deprecated
|
|
22902
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
22903
22903
|
* in one of the next releases.
|
|
22904
22904
|
*
|
|
22905
22905
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -22923,7 +22923,7 @@ declare namespace sap {
|
|
|
22923
22923
|
*
|
|
22924
22924
|
* Default value is `false`.
|
|
22925
22925
|
*
|
|
22926
|
-
* @deprecated
|
|
22926
|
+
* @deprecated As of version 1.10.5. Note that sub steps will not be supported in future. This feature might
|
|
22927
22927
|
* be removed in one of the next releases.
|
|
22928
22928
|
*
|
|
22929
22929
|
* @returns Value of property `expanded`
|
|
@@ -22944,7 +22944,7 @@ declare namespace sap {
|
|
|
22944
22944
|
* Sub steps for the current step. Will be displayed only in the case that the step is expanded. Otherwise,
|
|
22945
22945
|
* special arrows show the availability of sub steps. One level of sub steps supported.
|
|
22946
22946
|
*
|
|
22947
|
-
* @deprecated
|
|
22947
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
22948
22948
|
* in one of the next releases.
|
|
22949
22949
|
*/
|
|
22950
22950
|
getSubSteps(): sap.ui.commons.RoadMapStep[];
|
|
@@ -22963,7 +22963,7 @@ declare namespace sap {
|
|
|
22963
22963
|
* Checks for the provided `sap.ui.commons.RoadMapStep` in the aggregation {@link #getSubSteps subSteps}.
|
|
22964
22964
|
* and returns its index if found or -1 otherwise.
|
|
22965
22965
|
*
|
|
22966
|
-
* @deprecated
|
|
22966
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
22967
22967
|
* in one of the next releases.
|
|
22968
22968
|
*
|
|
22969
22969
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
@@ -22977,7 +22977,7 @@ declare namespace sap {
|
|
|
22977
22977
|
/**
|
|
22978
22978
|
* Inserts a subStep into the aggregation {@link #getSubSteps subSteps}.
|
|
22979
22979
|
*
|
|
22980
|
-
* @deprecated
|
|
22980
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
22981
22981
|
* in one of the next releases.
|
|
22982
22982
|
*
|
|
22983
22983
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -22999,7 +22999,7 @@ declare namespace sap {
|
|
|
22999
22999
|
*
|
|
23000
23000
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
23001
23001
|
*
|
|
23002
|
-
* @deprecated
|
|
23002
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
23003
23003
|
* in one of the next releases.
|
|
23004
23004
|
*
|
|
23005
23005
|
* @returns An array of the removed elements (might be empty)
|
|
@@ -23008,7 +23008,7 @@ declare namespace sap {
|
|
|
23008
23008
|
/**
|
|
23009
23009
|
* Removes a subStep from the aggregation {@link #getSubSteps subSteps}.
|
|
23010
23010
|
*
|
|
23011
|
-
* @deprecated
|
|
23011
|
+
* @deprecated As of version 1.10.5. Sub steps will not be supported in future. This feature might be removed
|
|
23012
23012
|
* in one of the next releases.
|
|
23013
23013
|
*
|
|
23014
23014
|
* @returns The removed subStep or `null`
|
|
@@ -23046,7 +23046,7 @@ declare namespace sap {
|
|
|
23046
23046
|
*
|
|
23047
23047
|
* Default value is `false`.
|
|
23048
23048
|
*
|
|
23049
|
-
* @deprecated
|
|
23049
|
+
* @deprecated As of version 1.10.5. Note that sub steps will not be supported in future. This feature might
|
|
23050
23050
|
* be removed in one of the next releases.
|
|
23051
23051
|
*
|
|
23052
23052
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -23096,7 +23096,7 @@ declare namespace sap {
|
|
|
23096
23096
|
* This control displays items in a stacked list format, allowing the user to page in order to see more
|
|
23097
23097
|
* items or to use the offered filtering and sorting capabilities in order to manipulate the displayed data.
|
|
23098
23098
|
*
|
|
23099
|
-
* @deprecated
|
|
23099
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.table.Table` control.
|
|
23100
23100
|
*/
|
|
23101
23101
|
class RowRepeater extends sap.ui.core.Control {
|
|
23102
23102
|
/**
|
|
@@ -24001,7 +24001,7 @@ declare namespace sap {
|
|
|
24001
24001
|
* This element is used by the RowRepeater and allows to define a filter in this context along with the
|
|
24002
24002
|
* related data such as a text and an icon.
|
|
24003
24003
|
*
|
|
24004
|
-
* @deprecated
|
|
24004
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.table.Table` control.
|
|
24005
24005
|
*/
|
|
24006
24006
|
class RowRepeaterFilter extends sap.ui.core.Element {
|
|
24007
24007
|
/**
|
|
@@ -24146,7 +24146,7 @@ declare namespace sap {
|
|
|
24146
24146
|
* This element is used by the RowRepeater and allows to define a sorter in this context along with the
|
|
24147
24147
|
* related data such as a text and an icon.
|
|
24148
24148
|
*
|
|
24149
|
-
* @deprecated
|
|
24149
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.table.Table` control.
|
|
24150
24150
|
*/
|
|
24151
24151
|
class RowRepeaterSorter extends sap.ui.core.Element {
|
|
24152
24152
|
/**
|
|
@@ -24290,7 +24290,7 @@ declare namespace sap {
|
|
|
24290
24290
|
/**
|
|
24291
24291
|
* Allows the user to type search queries and to trigger the search. Optionally, suggestions can be added.
|
|
24292
24292
|
*
|
|
24293
|
-
* @deprecated
|
|
24293
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.SearchField` control.
|
|
24294
24294
|
*/
|
|
24295
24295
|
class SearchField
|
|
24296
24296
|
extends sap.ui.core.Control
|
|
@@ -25166,7 +25166,7 @@ declare namespace sap {
|
|
|
25166
25166
|
/**
|
|
25167
25167
|
* A SearchProvider which can be attached to a Search Field.
|
|
25168
25168
|
*
|
|
25169
|
-
* @deprecated
|
|
25169
|
+
* @deprecated As of version 1.6.0. Replaced by sap.ui.core.search.OpenSearchProvider
|
|
25170
25170
|
*/
|
|
25171
25171
|
class SearchProvider extends sap.ui.core.search.OpenSearchProvider {
|
|
25172
25172
|
/**
|
|
@@ -25242,7 +25242,7 @@ declare namespace sap {
|
|
|
25242
25242
|
* The SegmentedButton provides a group of multiple buttons. Only one button can be active. The behaviour
|
|
25243
25243
|
* is more ore less like a radio button group.
|
|
25244
25244
|
*
|
|
25245
|
-
* @deprecated
|
|
25245
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.SegmentedButton}
|
|
25246
25246
|
*/
|
|
25247
25247
|
class SegmentedButton
|
|
25248
25248
|
extends sap.ui.core.Control
|
|
@@ -25525,7 +25525,7 @@ declare namespace sap {
|
|
|
25525
25525
|
* The interactive control is displayed either as a horizontal or a vertical line with a pointer and units
|
|
25526
25526
|
* of measurement. Users can move the pointer along the line to change values with graphical support.
|
|
25527
25527
|
*
|
|
25528
|
-
* @deprecated
|
|
25528
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Slider}
|
|
25529
25529
|
*/
|
|
25530
25530
|
class Slider
|
|
25531
25531
|
extends sap.ui.core.Control
|
|
@@ -26188,7 +26188,7 @@ declare namespace sap {
|
|
|
26188
26188
|
* height or set an absolute height for the splitter using the height property. Otherwise the height of
|
|
26189
26189
|
* the splitter is calculated by the height of its contents.
|
|
26190
26190
|
*
|
|
26191
|
-
* @deprecated
|
|
26191
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.layout.Splitter` control.
|
|
26192
26192
|
*/
|
|
26193
26193
|
class Splitter extends sap.ui.core.Control {
|
|
26194
26194
|
/**
|
|
@@ -26649,7 +26649,7 @@ declare namespace sap {
|
|
|
26649
26649
|
/**
|
|
26650
26650
|
* Represents a single tab in a TabStrip control.
|
|
26651
26651
|
*
|
|
26652
|
-
* @deprecated
|
|
26652
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.TabContainer` control.
|
|
26653
26653
|
*/
|
|
26654
26654
|
class Tab extends sap.ui.commons.Panel {
|
|
26655
26655
|
/**
|
|
@@ -26743,8 +26743,8 @@ declare namespace sap {
|
|
|
26743
26743
|
*
|
|
26744
26744
|
* Default value is `false`.
|
|
26745
26745
|
*
|
|
26746
|
-
* @deprecated
|
|
26747
|
-
* is used.
|
|
26746
|
+
* @deprecated As of version 0.17.0. This property is not used. To identify the selected tab in a TabStrip
|
|
26747
|
+
* selectedIndex is used.
|
|
26748
26748
|
*
|
|
26749
26749
|
* @returns Value of property `selected`
|
|
26750
26750
|
*/
|
|
@@ -26805,8 +26805,8 @@ declare namespace sap {
|
|
|
26805
26805
|
*
|
|
26806
26806
|
* Default value is `false`.
|
|
26807
26807
|
*
|
|
26808
|
-
* @deprecated
|
|
26809
|
-
* is used.
|
|
26808
|
+
* @deprecated As of version 0.17.0. This property is not used. To identify the selected tab in a TabStrip
|
|
26809
|
+
* selectedIndex is used.
|
|
26810
26810
|
*
|
|
26811
26811
|
* @returns Reference to `this` in order to allow method chaining
|
|
26812
26812
|
*/
|
|
@@ -26839,7 +26839,7 @@ declare namespace sap {
|
|
|
26839
26839
|
* TabStrip represents a container for tab controls, which contain the content and generally other controls.
|
|
26840
26840
|
* The user switches between the tabs to display the content.
|
|
26841
26841
|
*
|
|
26842
|
-
* @deprecated
|
|
26842
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.TabContainer` control.
|
|
26843
26843
|
*/
|
|
26844
26844
|
class TabStrip extends sap.ui.core.Control {
|
|
26845
26845
|
/**
|
|
@@ -27276,7 +27276,7 @@ declare namespace sap {
|
|
|
27276
27276
|
/**
|
|
27277
27277
|
* Control to enter or display multible row text.
|
|
27278
27278
|
*
|
|
27279
|
-
* @deprecated
|
|
27279
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.TextArea` control.
|
|
27280
27280
|
*/
|
|
27281
27281
|
class TextArea extends sap.ui.commons.TextField {
|
|
27282
27282
|
/**
|
|
@@ -27383,7 +27383,7 @@ declare namespace sap {
|
|
|
27383
27383
|
*
|
|
27384
27384
|
* ID of label control
|
|
27385
27385
|
*
|
|
27386
|
-
* @deprecated
|
|
27386
|
+
* @deprecated As of version 1.5.2. Please use association AriaLabelledBy instead.
|
|
27387
27387
|
*
|
|
27388
27388
|
* @returns Value of property `labeledBy`
|
|
27389
27389
|
*/
|
|
@@ -27474,7 +27474,7 @@ declare namespace sap {
|
|
|
27474
27474
|
*
|
|
27475
27475
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27476
27476
|
*
|
|
27477
|
-
* @deprecated
|
|
27477
|
+
* @deprecated As of version 1.5.2. Please use association AriaLabelledBy instead.
|
|
27478
27478
|
*
|
|
27479
27479
|
* @returns Reference to `this` in order to allow method chaining
|
|
27480
27480
|
*/
|
|
@@ -27532,7 +27532,7 @@ declare namespace sap {
|
|
|
27532
27532
|
/**
|
|
27533
27533
|
* Renders an input field for text input.
|
|
27534
27534
|
*
|
|
27535
|
-
* @deprecated
|
|
27535
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Input}
|
|
27536
27536
|
*/
|
|
27537
27537
|
class TextField
|
|
27538
27538
|
extends sap.ui.core.Control
|
|
@@ -28394,7 +28394,7 @@ declare namespace sap {
|
|
|
28394
28394
|
/**
|
|
28395
28395
|
* Is used to display some continous text. The control can inherit the text direction from its parent control.
|
|
28396
28396
|
*
|
|
28397
|
-
* @deprecated
|
|
28397
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Text}.
|
|
28398
28398
|
*/
|
|
28399
28399
|
class TextView
|
|
28400
28400
|
extends sap.ui.core.Control
|
|
@@ -28855,7 +28855,7 @@ declare namespace sap {
|
|
|
28855
28855
|
/**
|
|
28856
28856
|
* Represents a title element that can be used for aggregation with other controls
|
|
28857
28857
|
*
|
|
28858
|
-
* @deprecated
|
|
28858
|
+
* @deprecated As of version 1.16.0. moved to sap.ui.core library. Please use this one.
|
|
28859
28859
|
*/
|
|
28860
28860
|
class Title extends sap.ui.core.Title {
|
|
28861
28861
|
/**
|
|
@@ -28958,7 +28958,7 @@ declare namespace sap {
|
|
|
28958
28958
|
/**
|
|
28959
28959
|
* The ToggleButton Control is a Button that can be toggled between pressed and normal state
|
|
28960
28960
|
*
|
|
28961
|
-
* @deprecated
|
|
28961
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.ToggleButton}
|
|
28962
28962
|
*/
|
|
28963
28963
|
class ToggleButton extends sap.ui.commons.Button {
|
|
28964
28964
|
/**
|
|
@@ -29067,7 +29067,7 @@ declare namespace sap {
|
|
|
29067
29067
|
* Note that all controls with the sap.ui.commons.ToolbarItem interface can be used as item: Button, ComboBox,
|
|
29068
29068
|
* TextField.
|
|
29069
29069
|
*
|
|
29070
|
-
* @deprecated
|
|
29070
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Toolbar}
|
|
29071
29071
|
*/
|
|
29072
29072
|
class Toolbar extends sap.ui.core.Control implements sap.ui.core.Toolbar {
|
|
29073
29073
|
__implements__sap_ui_core_Toolbar: boolean;
|
|
@@ -29383,7 +29383,7 @@ declare namespace sap {
|
|
|
29383
29383
|
* A small vertical line that is generally added to the tool bar between the items to visually separate
|
|
29384
29384
|
* them.
|
|
29385
29385
|
*
|
|
29386
|
-
* @deprecated
|
|
29386
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Toolbar` control.
|
|
29387
29387
|
*/
|
|
29388
29388
|
class ToolbarSeparator
|
|
29389
29389
|
extends sap.ui.core.Element
|
|
@@ -29510,7 +29510,7 @@ declare namespace sap {
|
|
|
29510
29510
|
/**
|
|
29511
29511
|
* Simple tree to display item in a hierarchical way
|
|
29512
29512
|
*
|
|
29513
|
-
* @deprecated
|
|
29513
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Tree}
|
|
29514
29514
|
*/
|
|
29515
29515
|
class Tree extends sap.ui.core.Control {
|
|
29516
29516
|
/**
|
|
@@ -30087,7 +30087,7 @@ declare namespace sap {
|
|
|
30087
30087
|
/**
|
|
30088
30088
|
* Tree node element
|
|
30089
30089
|
*
|
|
30090
|
-
* @deprecated
|
|
30090
|
+
* @deprecated As of version 1.38. replaced by {@link sap.m.Tree}
|
|
30091
30091
|
*/
|
|
30092
30092
|
class TreeNode extends sap.ui.core.Element {
|
|
30093
30093
|
/**
|
|
@@ -30654,7 +30654,7 @@ declare namespace sap {
|
|
|
30654
30654
|
* possible which is e.g. required in checkbox trees.
|
|
30655
30655
|
*
|
|
30656
30656
|
* @since 1.7.2
|
|
30657
|
-
* @deprecated
|
|
30657
|
+
* @deprecated As of version 1.38. Use {@link sap.m.CheckBox} instead.
|
|
30658
30658
|
*/
|
|
30659
30659
|
class TriStateCheckBox extends sap.ui.core.Control {
|
|
30660
30660
|
/**
|
|
@@ -31009,7 +31009,7 @@ declare namespace sap {
|
|
|
31009
31009
|
/**
|
|
31010
31010
|
* A TextField with an attached icon which triggeres an event.
|
|
31011
31011
|
*
|
|
31012
|
-
* @deprecated
|
|
31012
|
+
* @deprecated As of version 1.38. Instead, use the `sap.m.Input` control.
|
|
31013
31013
|
*/
|
|
31014
31014
|
class ValueHelpField extends sap.ui.commons.TextField {
|
|
31015
31015
|
/**
|
|
@@ -31254,7 +31254,7 @@ declare namespace sap {
|
|
|
31254
31254
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31255
31255
|
* 'ButtonStyle'.
|
|
31256
31256
|
*
|
|
31257
|
-
* @deprecated
|
|
31257
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.Button). Use sap.m.Button with its sap.m.ButtonType
|
|
31258
31258
|
* instead.
|
|
31259
31259
|
*/
|
|
31260
31260
|
enum ButtonStyle {
|
|
@@ -31281,7 +31281,7 @@ declare namespace sap {
|
|
|
31281
31281
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31282
31282
|
* 'HorizontalDividerHeight'.
|
|
31283
31283
|
*
|
|
31284
|
-
* @deprecated
|
|
31284
|
+
* @deprecated As of version 1.38. without replacement.
|
|
31285
31285
|
*/
|
|
31286
31286
|
enum HorizontalDividerHeight {
|
|
31287
31287
|
/**
|
|
@@ -31307,7 +31307,7 @@ declare namespace sap {
|
|
|
31307
31307
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31308
31308
|
* 'HorizontalDividerType'.
|
|
31309
31309
|
*
|
|
31310
|
-
* @deprecated
|
|
31310
|
+
* @deprecated As of version 1.38. without a replacement.
|
|
31311
31311
|
*/
|
|
31312
31312
|
enum HorizontalDividerType {
|
|
31313
31313
|
/**
|
|
@@ -31325,7 +31325,7 @@ declare namespace sap {
|
|
|
31325
31325
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31326
31326
|
* 'LabelDesign'.
|
|
31327
31327
|
*
|
|
31328
|
-
* @deprecated
|
|
31328
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
31329
31329
|
*/
|
|
31330
31330
|
enum LabelDesign {
|
|
31331
31331
|
/**
|
|
@@ -31343,7 +31343,7 @@ declare namespace sap {
|
|
|
31343
31343
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31344
31344
|
* 'MenuBarDesign'.
|
|
31345
31345
|
*
|
|
31346
|
-
* @deprecated
|
|
31346
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.Toolbar). Use sap.m.Toolbar and its sap.m.ToolbarDesign
|
|
31347
31347
|
* instead.
|
|
31348
31348
|
*/
|
|
31349
31349
|
enum MenuBarDesign {
|
|
@@ -31362,7 +31362,7 @@ declare namespace sap {
|
|
|
31362
31362
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31363
31363
|
* 'MessageType'.
|
|
31364
31364
|
*
|
|
31365
|
-
* @deprecated
|
|
31365
|
+
* @deprecated As of version 1.38. Instead, use the `sap.ui.core.MessageType`.
|
|
31366
31366
|
*/
|
|
31367
31367
|
enum MessageType {
|
|
31368
31368
|
/**
|
|
@@ -31384,7 +31384,7 @@ declare namespace sap {
|
|
|
31384
31384
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31385
31385
|
* 'PaginatorEvent'.
|
|
31386
31386
|
*
|
|
31387
|
-
* @deprecated
|
|
31387
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
31388
31388
|
*/
|
|
31389
31389
|
enum PaginatorEvent {
|
|
31390
31390
|
/**
|
|
@@ -31414,7 +31414,7 @@ declare namespace sap {
|
|
|
31414
31414
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31415
31415
|
* 'RatingIndicatorVisualMode'.
|
|
31416
31416
|
*
|
|
31417
|
-
* @deprecated
|
|
31417
|
+
* @deprecated As of version 1.38. Instead, use `sap.m.RatingIndicator` control.
|
|
31418
31418
|
*/
|
|
31419
31419
|
enum RatingIndicatorVisualMode {
|
|
31420
31420
|
/**
|
|
@@ -31436,7 +31436,7 @@ declare namespace sap {
|
|
|
31436
31436
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31437
31437
|
* 'RowRepeaterDesign'.
|
|
31438
31438
|
*
|
|
31439
|
-
* @deprecated
|
|
31439
|
+
* @deprecated As of version 1.38.
|
|
31440
31440
|
*/
|
|
31441
31441
|
enum RowRepeaterDesign {
|
|
31442
31442
|
/**
|
|
@@ -31458,7 +31458,7 @@ declare namespace sap {
|
|
|
31458
31458
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31459
31459
|
* 'TextViewColor'.
|
|
31460
31460
|
*
|
|
31461
|
-
* @deprecated
|
|
31461
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
31462
31462
|
*/
|
|
31463
31463
|
enum TextViewColor {
|
|
31464
31464
|
/**
|
|
@@ -31484,7 +31484,7 @@ declare namespace sap {
|
|
|
31484
31484
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31485
31485
|
* 'TextViewDesign'.
|
|
31486
31486
|
*
|
|
31487
|
-
* @deprecated
|
|
31487
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
31488
31488
|
*/
|
|
31489
31489
|
enum TextViewDesign {
|
|
31490
31490
|
/**
|
|
@@ -31542,7 +31542,7 @@ declare namespace sap {
|
|
|
31542
31542
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31543
31543
|
* 'ToolbarDesign'.
|
|
31544
31544
|
*
|
|
31545
|
-
* @deprecated
|
|
31545
|
+
* @deprecated As of version 1.38.
|
|
31546
31546
|
*/
|
|
31547
31547
|
enum ToolbarDesign {
|
|
31548
31548
|
/**
|
|
@@ -31566,8 +31566,8 @@ declare namespace sap {
|
|
|
31566
31566
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31567
31567
|
* 'ToolbarSeparatorDesign'.
|
|
31568
31568
|
*
|
|
31569
|
-
* @deprecated
|
|
31570
|
-
* instead.
|
|
31569
|
+
* @deprecated As of version 1.38. (altogether wuith sap.ui.commons.Toolbar). Use sap.m.Toolbar and its
|
|
31570
|
+
* sap.m.ToolbarSeparator instead.
|
|
31571
31571
|
*/
|
|
31572
31572
|
enum ToolbarSeparatorDesign {
|
|
31573
31573
|
/**
|
|
@@ -31585,7 +31585,8 @@ declare namespace sap {
|
|
|
31585
31585
|
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
31586
31586
|
* 'TreeSelectionMode'.
|
|
31587
31587
|
*
|
|
31588
|
-
* @deprecated
|
|
31588
|
+
* @deprecated As of version 1.38. (altogether with sap.ui.commons.Tree). Use sap.m.Tree with its items
|
|
31589
|
+
* instead.
|
|
31589
31590
|
*/
|
|
31590
31591
|
enum TreeSelectionMode {
|
|
31591
31592
|
/**
|
|
@@ -31612,7 +31613,7 @@ declare namespace sap {
|
|
|
31612
31613
|
* 'TriStateCheckBoxState'.
|
|
31613
31614
|
*
|
|
31614
31615
|
* @since 1.7.2
|
|
31615
|
-
* @deprecated
|
|
31616
|
+
* @deprecated As of version 1.38. Use {@link sap.m.CheckBox} and its properties instead.
|
|
31616
31617
|
*/
|
|
31617
31618
|
enum TriStateCheckBoxState {
|
|
31618
31619
|
/**
|
|
@@ -31632,7 +31633,7 @@ declare namespace sap {
|
|
|
31632
31633
|
* The object contains the available parameters for BorderLayout's Area.
|
|
31633
31634
|
*
|
|
31634
31635
|
* @since 1.110
|
|
31635
|
-
* @deprecated
|
|
31636
|
+
* @deprecated As of version 1.110. as it is an integral part of the already deprecated {@link sap.ui.commons.BorderLayout}.
|
|
31636
31637
|
*/
|
|
31637
31638
|
type BorderLayoutAreaData = {
|
|
31638
31639
|
/**
|
|
@@ -31663,7 +31664,7 @@ declare namespace sap {
|
|
|
31663
31664
|
* This enum is an alias for {@link sap.ui.unified.ColorPickerMode} and was only kept for compatibility
|
|
31664
31665
|
* reasons. Please switch to the {@link sap.ui.unified.ColorPicker} API.
|
|
31665
31666
|
*
|
|
31666
|
-
* @deprecated
|
|
31667
|
+
* @deprecated As of version 1.48.0. Use {@link sap.ui.unified.ColorPickerMode} instead.
|
|
31667
31668
|
*/
|
|
31668
31669
|
type ColorPickerMode = sap.ui.unified.ColorPickerMode;
|
|
31669
31670
|
|
|
@@ -31671,7 +31672,7 @@ declare namespace sap {
|
|
|
31671
31672
|
* The object representing the serialized focus information.
|
|
31672
31673
|
*
|
|
31673
31674
|
* @since 1.110
|
|
31674
|
-
* @deprecated
|
|
31675
|
+
* @deprecated As of version 1.110. as it is an integral part of the already deprecated {@link sap.ui.commons.TextField}.
|
|
31675
31676
|
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
31676
31677
|
*/
|
|
31677
31678
|
type FocusInfo = {
|
|
@@ -31692,7 +31693,7 @@ declare namespace sap {
|
|
|
31692
31693
|
/**
|
|
31693
31694
|
* A string type that represents subset of CSS size values. For the Splitter only px and % are allowed.
|
|
31694
31695
|
*
|
|
31695
|
-
* @deprecated
|
|
31696
|
+
* @deprecated As of version 1.38. Instead, use `sap.ui.layout.Splitter` control.
|
|
31696
31697
|
*/
|
|
31697
31698
|
type SplitterSize = string;
|
|
31698
31699
|
|
|
@@ -31702,7 +31703,7 @@ declare namespace sap {
|
|
|
31702
31703
|
* This is an alias for {@link sap.ui.core.TitleLevel} and only kept for compatibility reasons.
|
|
31703
31704
|
*
|
|
31704
31705
|
* @since 1.9.1
|
|
31705
|
-
* @deprecated
|
|
31706
|
+
* @deprecated As of version 1.16.0. Use {@link sap.ui.core.TitleLevel} instead.
|
|
31706
31707
|
*/
|
|
31707
31708
|
type TitleLevel = sap.ui.core.TitleLevel;
|
|
31708
31709
|
|