@openui5/ts-types 1.92.0 → 1.93.3
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/README.md +3 -1
- package/package.json +1 -1
- package/types/sap.f.d.ts +623 -468
- package/types/sap.m.d.ts +5498 -4814
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1387 -1387
- package/types/sap.ui.core.d.ts +3852 -3973
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +593 -586
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +248 -248
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -713
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +454 -450
- package/types/sap.ui.webc.main.d.ts +1317 -1317
- package/types/sap.uxap.d.ts +384 -220
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.3
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -792,6 +792,10 @@ declare namespace sap {
|
|
|
792
792
|
*/
|
|
793
793
|
FNMetaImpl?: Function
|
|
794
794
|
): Function;
|
|
795
|
+
/**
|
|
796
|
+
* Returns a metadata object for class sap.ui.commons.form.SimpleForm.
|
|
797
|
+
*/
|
|
798
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
795
799
|
/**
|
|
796
800
|
* @SINCE 1.14
|
|
797
801
|
*
|
|
@@ -800,10 +804,6 @@ declare namespace sap {
|
|
|
800
804
|
* Default value is `ResponsiveLayout`
|
|
801
805
|
*/
|
|
802
806
|
getLayout(): sap.ui.commons.form.SimpleFormLayout;
|
|
803
|
-
/**
|
|
804
|
-
* Returns a metadata object for class sap.ui.commons.form.SimpleForm.
|
|
805
|
-
*/
|
|
806
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
807
807
|
/**
|
|
808
808
|
* @SINCE 1.14
|
|
809
809
|
*
|
|
@@ -1192,6 +1192,31 @@ declare namespace sap {
|
|
|
1192
1192
|
mSettings?: sap.ui.commons.layout.$AbsoluteLayoutSettings
|
|
1193
1193
|
);
|
|
1194
1194
|
|
|
1195
|
+
/**
|
|
1196
|
+
* Creates a new subclass of class sap.ui.commons.layout.AbsoluteLayout with name `sClassName` and enriches
|
|
1197
|
+
* it with the information contained in `oClassInfo`.
|
|
1198
|
+
*
|
|
1199
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1200
|
+
*/
|
|
1201
|
+
static extend<T extends Record<string, unknown>>(
|
|
1202
|
+
/**
|
|
1203
|
+
* Name of the class being created
|
|
1204
|
+
*/
|
|
1205
|
+
sClassName: string,
|
|
1206
|
+
/**
|
|
1207
|
+
* Object literal with information about the class
|
|
1208
|
+
*/
|
|
1209
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.layout.AbsoluteLayout>,
|
|
1210
|
+
/**
|
|
1211
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1212
|
+
* used by this class
|
|
1213
|
+
*/
|
|
1214
|
+
FNMetaImpl?: Function
|
|
1215
|
+
): Function;
|
|
1216
|
+
/**
|
|
1217
|
+
* Returns a metadata object for class sap.ui.commons.layout.AbsoluteLayout.
|
|
1218
|
+
*/
|
|
1219
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1195
1220
|
/**
|
|
1196
1221
|
* Adds the given control and a corresponding position container into the aggregation named 'positions'.
|
|
1197
1222
|
* Returns 'this' to allow method chaining.
|
|
@@ -1225,27 +1250,6 @@ declare namespace sap {
|
|
|
1225
1250
|
* Destroys all elements from the layout.
|
|
1226
1251
|
*/
|
|
1227
1252
|
destroyPositions(): this;
|
|
1228
|
-
/**
|
|
1229
|
-
* Creates a new subclass of class sap.ui.commons.layout.AbsoluteLayout with name `sClassName` and enriches
|
|
1230
|
-
* it with the information contained in `oClassInfo`.
|
|
1231
|
-
*
|
|
1232
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1233
|
-
*/
|
|
1234
|
-
static extend<T extends Record<string, unknown>>(
|
|
1235
|
-
/**
|
|
1236
|
-
* Name of the class being created
|
|
1237
|
-
*/
|
|
1238
|
-
sClassName: string,
|
|
1239
|
-
/**
|
|
1240
|
-
* Object literal with information about the class
|
|
1241
|
-
*/
|
|
1242
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.layout.AbsoluteLayout>,
|
|
1243
|
-
/**
|
|
1244
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1245
|
-
* used by this class
|
|
1246
|
-
*/
|
|
1247
|
-
FNMetaImpl?: Function
|
|
1248
|
-
): Function;
|
|
1249
1253
|
/**
|
|
1250
1254
|
* Returns an array of the controls contained in the aggregated position containers (might be empty).
|
|
1251
1255
|
*/
|
|
@@ -1266,10 +1270,6 @@ declare namespace sap {
|
|
|
1266
1270
|
* Default value is `Hidden`.
|
|
1267
1271
|
*/
|
|
1268
1272
|
getHorizontalScrolling(): sap.ui.core.Scrolling;
|
|
1269
|
-
/**
|
|
1270
|
-
* Returns a metadata object for class sap.ui.commons.layout.AbsoluteLayout.
|
|
1271
|
-
*/
|
|
1272
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1273
1273
|
/**
|
|
1274
1274
|
* Gets content of aggregation {@link #getPositions positions}.
|
|
1275
1275
|
*
|
|
@@ -1466,6 +1466,31 @@ declare namespace sap {
|
|
|
1466
1466
|
mSettings?: sap.ui.commons.layout.$BorderLayoutSettings
|
|
1467
1467
|
);
|
|
1468
1468
|
|
|
1469
|
+
/**
|
|
1470
|
+
* Creates a new subclass of class sap.ui.commons.layout.BorderLayout with name `sClassName` and enriches
|
|
1471
|
+
* it with the information contained in `oClassInfo`.
|
|
1472
|
+
*
|
|
1473
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1474
|
+
*/
|
|
1475
|
+
static extend<T extends Record<string, unknown>>(
|
|
1476
|
+
/**
|
|
1477
|
+
* Name of the class being created
|
|
1478
|
+
*/
|
|
1479
|
+
sClassName: string,
|
|
1480
|
+
/**
|
|
1481
|
+
* Object literal with information about the class
|
|
1482
|
+
*/
|
|
1483
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.layout.BorderLayout>,
|
|
1484
|
+
/**
|
|
1485
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1486
|
+
* used by this class
|
|
1487
|
+
*/
|
|
1488
|
+
FNMetaImpl?: Function
|
|
1489
|
+
): Function;
|
|
1490
|
+
/**
|
|
1491
|
+
* Returns a metadata object for class sap.ui.commons.layout.BorderLayout.
|
|
1492
|
+
*/
|
|
1493
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1469
1494
|
/**
|
|
1470
1495
|
* Adds controls to the specified area.
|
|
1471
1496
|
*/
|
|
@@ -1518,27 +1543,6 @@ declare namespace sap {
|
|
|
1518
1543
|
* Destroys the top in the aggregation {@link #getTop top}.
|
|
1519
1544
|
*/
|
|
1520
1545
|
destroyTop(): this;
|
|
1521
|
-
/**
|
|
1522
|
-
* Creates a new subclass of class sap.ui.commons.layout.BorderLayout with name `sClassName` and enriches
|
|
1523
|
-
* it with the information contained in `oClassInfo`.
|
|
1524
|
-
*
|
|
1525
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1526
|
-
*/
|
|
1527
|
-
static extend<T extends Record<string, unknown>>(
|
|
1528
|
-
/**
|
|
1529
|
-
* Name of the class being created
|
|
1530
|
-
*/
|
|
1531
|
-
sClassName: string,
|
|
1532
|
-
/**
|
|
1533
|
-
* Object literal with information about the class
|
|
1534
|
-
*/
|
|
1535
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.layout.BorderLayout>,
|
|
1536
|
-
/**
|
|
1537
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1538
|
-
* used by this class
|
|
1539
|
-
*/
|
|
1540
|
-
FNMetaImpl?: Function
|
|
1541
|
-
): Function;
|
|
1542
1546
|
/**
|
|
1543
1547
|
* Returns the area of the given type. If the area does not exist, it will be created when create is set
|
|
1544
1548
|
* to true.
|
|
@@ -1612,10 +1616,6 @@ declare namespace sap {
|
|
|
1612
1616
|
* Default value is `'100%'`.
|
|
1613
1617
|
*/
|
|
1614
1618
|
getHeight(): sap.ui.core.CSSSize;
|
|
1615
|
-
/**
|
|
1616
|
-
* Returns a metadata object for class sap.ui.commons.layout.BorderLayout.
|
|
1617
|
-
*/
|
|
1618
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* @deprecated (since 1.5.2) - replaced by the global configuration for the page
|
|
1621
1621
|
*
|
|
@@ -1833,19 +1833,6 @@ declare namespace sap {
|
|
|
1833
1833
|
mSettings?: sap.ui.commons.layout.$BorderLayoutAreaSettings
|
|
1834
1834
|
);
|
|
1835
1835
|
|
|
1836
|
-
/**
|
|
1837
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
1838
|
-
*/
|
|
1839
|
-
addContent(
|
|
1840
|
-
/**
|
|
1841
|
-
* The content to add; if empty, nothing is inserted
|
|
1842
|
-
*/
|
|
1843
|
-
oContent: sap.ui.core.Control
|
|
1844
|
-
): this;
|
|
1845
|
-
/**
|
|
1846
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
1847
|
-
*/
|
|
1848
|
-
destroyContent(): this;
|
|
1849
1836
|
/**
|
|
1850
1837
|
* Creates a new subclass of class sap.ui.commons.layout.BorderLayoutArea with name `sClassName` and enriches
|
|
1851
1838
|
* it with the information contained in `oClassInfo`.
|
|
@@ -1870,6 +1857,23 @@ declare namespace sap {
|
|
|
1870
1857
|
*/
|
|
1871
1858
|
FNMetaImpl?: Function
|
|
1872
1859
|
): Function;
|
|
1860
|
+
/**
|
|
1861
|
+
* Returns a metadata object for class sap.ui.commons.layout.BorderLayoutArea.
|
|
1862
|
+
*/
|
|
1863
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1864
|
+
/**
|
|
1865
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
1866
|
+
*/
|
|
1867
|
+
addContent(
|
|
1868
|
+
/**
|
|
1869
|
+
* The content to add; if empty, nothing is inserted
|
|
1870
|
+
*/
|
|
1871
|
+
oContent: sap.ui.core.Control
|
|
1872
|
+
): this;
|
|
1873
|
+
/**
|
|
1874
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
1875
|
+
*/
|
|
1876
|
+
destroyContent(): this;
|
|
1873
1877
|
/**
|
|
1874
1878
|
* @deprecated (since 1.3.3) - Redundant to the aggregation by the parent border layout.
|
|
1875
1879
|
*
|
|
@@ -1894,10 +1898,6 @@ declare namespace sap {
|
|
|
1894
1898
|
* Default value is `'left'`.
|
|
1895
1899
|
*/
|
|
1896
1900
|
getContentAlign(): string;
|
|
1897
|
-
/**
|
|
1898
|
-
* Returns a metadata object for class sap.ui.commons.layout.BorderLayoutArea.
|
|
1899
|
-
*/
|
|
1900
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Gets current value of property {@link #getOverflowX overflowX}.
|
|
1903
1903
|
*
|
|
@@ -2182,27 +2182,6 @@ declare namespace sap {
|
|
|
2182
2182
|
mSettings?: sap.ui.commons.layout.$MatrixLayoutSettings
|
|
2183
2183
|
);
|
|
2184
2184
|
|
|
2185
|
-
/**
|
|
2186
|
-
* Adds some row to the aggregation {@link #getRows rows}.
|
|
2187
|
-
*/
|
|
2188
|
-
addRow(
|
|
2189
|
-
/**
|
|
2190
|
-
* The row to add; if empty, nothing is inserted
|
|
2191
|
-
*/
|
|
2192
|
-
oRow: sap.ui.commons.layout.MatrixLayoutRow
|
|
2193
|
-
): this;
|
|
2194
|
-
/**
|
|
2195
|
-
* Creates a new matrix layout row and appends it to this matrix layout.
|
|
2196
|
-
*
|
|
2197
|
-
* Each argument must be either a matrix layout cell, which is added to the row "as is", or an arbitrary
|
|
2198
|
-
* content control, which is wrapped with a new (default) matrix layout cell first and then added to the
|
|
2199
|
-
* row.
|
|
2200
|
-
*/
|
|
2201
|
-
createRow(): this;
|
|
2202
|
-
/**
|
|
2203
|
-
* Destroys all the rows in the aggregation {@link #getRows rows}.
|
|
2204
|
-
*/
|
|
2205
|
-
destroyRows(): this;
|
|
2206
2185
|
/**
|
|
2207
2186
|
* Creates a new subclass of class sap.ui.commons.layout.MatrixLayout with name `sClassName` and enriches
|
|
2208
2187
|
* it with the information contained in `oClassInfo`.
|
|
@@ -2224,6 +2203,31 @@ declare namespace sap {
|
|
|
2224
2203
|
*/
|
|
2225
2204
|
FNMetaImpl?: Function
|
|
2226
2205
|
): Function;
|
|
2206
|
+
/**
|
|
2207
|
+
* Returns a metadata object for class sap.ui.commons.layout.MatrixLayout.
|
|
2208
|
+
*/
|
|
2209
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2210
|
+
/**
|
|
2211
|
+
* Adds some row to the aggregation {@link #getRows rows}.
|
|
2212
|
+
*/
|
|
2213
|
+
addRow(
|
|
2214
|
+
/**
|
|
2215
|
+
* The row to add; if empty, nothing is inserted
|
|
2216
|
+
*/
|
|
2217
|
+
oRow: sap.ui.commons.layout.MatrixLayoutRow
|
|
2218
|
+
): this;
|
|
2219
|
+
/**
|
|
2220
|
+
* Creates a new matrix layout row and appends it to this matrix layout.
|
|
2221
|
+
*
|
|
2222
|
+
* Each argument must be either a matrix layout cell, which is added to the row "as is", or an arbitrary
|
|
2223
|
+
* content control, which is wrapped with a new (default) matrix layout cell first and then added to the
|
|
2224
|
+
* row.
|
|
2225
|
+
*/
|
|
2226
|
+
createRow(): this;
|
|
2227
|
+
/**
|
|
2228
|
+
* Destroys all the rows in the aggregation {@link #getRows rows}.
|
|
2229
|
+
*/
|
|
2230
|
+
destroyRows(): this;
|
|
2227
2231
|
/**
|
|
2228
2232
|
* Gets current value of property {@link #getColumns columns}.
|
|
2229
2233
|
*
|
|
@@ -2247,10 +2251,6 @@ declare namespace sap {
|
|
|
2247
2251
|
* Default value is `true`.
|
|
2248
2252
|
*/
|
|
2249
2253
|
getLayoutFixed(): boolean;
|
|
2250
|
-
/**
|
|
2251
|
-
* Returns a metadata object for class sap.ui.commons.layout.MatrixLayout.
|
|
2252
|
-
*/
|
|
2253
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* Gets content of aggregation {@link #getRows rows}.
|
|
2256
2256
|
*
|
|
@@ -2419,6 +2419,34 @@ declare namespace sap {
|
|
|
2419
2419
|
mSettings?: sap.ui.commons.layout.$MatrixLayoutCellSettings
|
|
2420
2420
|
);
|
|
2421
2421
|
|
|
2422
|
+
/**
|
|
2423
|
+
* Creates a new subclass of class sap.ui.commons.layout.MatrixLayoutCell with name `sClassName` and enriches
|
|
2424
|
+
* it with the information contained in `oClassInfo`.
|
|
2425
|
+
*
|
|
2426
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2427
|
+
*/
|
|
2428
|
+
static extend<T extends Record<string, unknown>>(
|
|
2429
|
+
/**
|
|
2430
|
+
* Name of the class being created
|
|
2431
|
+
*/
|
|
2432
|
+
sClassName: string,
|
|
2433
|
+
/**
|
|
2434
|
+
* Object literal with information about the class
|
|
2435
|
+
*/
|
|
2436
|
+
oClassInfo?: sap.ClassInfo<
|
|
2437
|
+
T,
|
|
2438
|
+
sap.ui.commons.layout.MatrixLayoutCell
|
|
2439
|
+
>,
|
|
2440
|
+
/**
|
|
2441
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2442
|
+
* used by this class
|
|
2443
|
+
*/
|
|
2444
|
+
FNMetaImpl?: Function
|
|
2445
|
+
): Function;
|
|
2446
|
+
/**
|
|
2447
|
+
* Returns a metadata object for class sap.ui.commons.layout.MatrixLayoutCell.
|
|
2448
|
+
*/
|
|
2449
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2422
2450
|
/**
|
|
2423
2451
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
2424
2452
|
*/
|
|
@@ -2470,30 +2498,6 @@ declare namespace sap {
|
|
|
2470
2498
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
2471
2499
|
*/
|
|
2472
2500
|
destroyContent(): this;
|
|
2473
|
-
/**
|
|
2474
|
-
* Creates a new subclass of class sap.ui.commons.layout.MatrixLayoutCell with name `sClassName` and enriches
|
|
2475
|
-
* it with the information contained in `oClassInfo`.
|
|
2476
|
-
*
|
|
2477
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2478
|
-
*/
|
|
2479
|
-
static extend<T extends Record<string, unknown>>(
|
|
2480
|
-
/**
|
|
2481
|
-
* Name of the class being created
|
|
2482
|
-
*/
|
|
2483
|
-
sClassName: string,
|
|
2484
|
-
/**
|
|
2485
|
-
* Object literal with information about the class
|
|
2486
|
-
*/
|
|
2487
|
-
oClassInfo?: sap.ClassInfo<
|
|
2488
|
-
T,
|
|
2489
|
-
sap.ui.commons.layout.MatrixLayoutCell
|
|
2490
|
-
>,
|
|
2491
|
-
/**
|
|
2492
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2493
|
-
* used by this class
|
|
2494
|
-
*/
|
|
2495
|
-
FNMetaImpl?: Function
|
|
2496
|
-
): Function;
|
|
2497
2501
|
/**
|
|
2498
2502
|
* Gets current value of property {@link #getBackgroundDesign backgroundDesign}.
|
|
2499
2503
|
*
|
|
@@ -2527,10 +2531,6 @@ declare namespace sap {
|
|
|
2527
2531
|
* Default value is `'Begin'`.
|
|
2528
2532
|
*/
|
|
2529
2533
|
getHAlign(): sap.ui.commons.layout.HAlign;
|
|
2530
|
-
/**
|
|
2531
|
-
* Returns a metadata object for class sap.ui.commons.layout.MatrixLayoutCell.
|
|
2532
|
-
*/
|
|
2533
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2534
2534
|
/**
|
|
2535
2535
|
* Gets current value of property {@link #getPadding padding}.
|
|
2536
2536
|
*
|
|
@@ -2777,11 +2777,39 @@ declare namespace sap {
|
|
|
2777
2777
|
);
|
|
2778
2778
|
|
|
2779
2779
|
/**
|
|
2780
|
-
*
|
|
2780
|
+
* Creates a new subclass of class sap.ui.commons.layout.MatrixLayoutRow with name `sClassName` and enriches
|
|
2781
|
+
* it with the information contained in `oClassInfo`.
|
|
2782
|
+
*
|
|
2783
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2781
2784
|
*/
|
|
2782
|
-
|
|
2785
|
+
static extend<T extends Record<string, unknown>>(
|
|
2783
2786
|
/**
|
|
2784
|
-
*
|
|
2787
|
+
* Name of the class being created
|
|
2788
|
+
*/
|
|
2789
|
+
sClassName: string,
|
|
2790
|
+
/**
|
|
2791
|
+
* Object literal with information about the class
|
|
2792
|
+
*/
|
|
2793
|
+
oClassInfo?: sap.ClassInfo<
|
|
2794
|
+
T,
|
|
2795
|
+
sap.ui.commons.layout.MatrixLayoutRow
|
|
2796
|
+
>,
|
|
2797
|
+
/**
|
|
2798
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2799
|
+
* used by this class
|
|
2800
|
+
*/
|
|
2801
|
+
FNMetaImpl?: Function
|
|
2802
|
+
): Function;
|
|
2803
|
+
/**
|
|
2804
|
+
* Returns a metadata object for class sap.ui.commons.layout.MatrixLayoutRow.
|
|
2805
|
+
*/
|
|
2806
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2807
|
+
/**
|
|
2808
|
+
* Adds some cell to the aggregation {@link #getCells cells}.
|
|
2809
|
+
*/
|
|
2810
|
+
addCell(
|
|
2811
|
+
/**
|
|
2812
|
+
* The cell to add; if empty, nothing is inserted
|
|
2785
2813
|
*/
|
|
2786
2814
|
oCell: sap.ui.commons.layout.MatrixLayoutCell
|
|
2787
2815
|
): this;
|
|
@@ -2827,30 +2855,6 @@ declare namespace sap {
|
|
|
2827
2855
|
* Destroys all the cells in the aggregation {@link #getCells cells}.
|
|
2828
2856
|
*/
|
|
2829
2857
|
destroyCells(): this;
|
|
2830
|
-
/**
|
|
2831
|
-
* Creates a new subclass of class sap.ui.commons.layout.MatrixLayoutRow with name `sClassName` and enriches
|
|
2832
|
-
* it with the information contained in `oClassInfo`.
|
|
2833
|
-
*
|
|
2834
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2835
|
-
*/
|
|
2836
|
-
static extend<T extends Record<string, unknown>>(
|
|
2837
|
-
/**
|
|
2838
|
-
* Name of the class being created
|
|
2839
|
-
*/
|
|
2840
|
-
sClassName: string,
|
|
2841
|
-
/**
|
|
2842
|
-
* Object literal with information about the class
|
|
2843
|
-
*/
|
|
2844
|
-
oClassInfo?: sap.ClassInfo<
|
|
2845
|
-
T,
|
|
2846
|
-
sap.ui.commons.layout.MatrixLayoutRow
|
|
2847
|
-
>,
|
|
2848
|
-
/**
|
|
2849
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2850
|
-
* used by this class
|
|
2851
|
-
*/
|
|
2852
|
-
FNMetaImpl?: Function
|
|
2853
|
-
): Function;
|
|
2854
2858
|
/**
|
|
2855
2859
|
* Gets content of aggregation {@link #getCells cells}.
|
|
2856
2860
|
*
|
|
@@ -2863,10 +2867,6 @@ declare namespace sap {
|
|
|
2863
2867
|
* Height of the row.
|
|
2864
2868
|
*/
|
|
2865
2869
|
getHeight(): sap.ui.core.CSSSize;
|
|
2866
|
-
/**
|
|
2867
|
-
* Returns a metadata object for class sap.ui.commons.layout.MatrixLayoutRow.
|
|
2868
|
-
*/
|
|
2869
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2870
2870
|
/**
|
|
2871
2871
|
* Returns true if the given style class string is valid and if this Element has this style class set via
|
|
2872
2872
|
* a previous call to addStyleClass().
|
|
@@ -2980,10 +2980,6 @@ declare namespace sap {
|
|
|
2980
2980
|
mSettings?: sap.ui.commons.layout.$PositionContainerSettings
|
|
2981
2981
|
);
|
|
2982
2982
|
|
|
2983
|
-
/**
|
|
2984
|
-
* Destroys the control in the aggregation {@link #getControl control}.
|
|
2985
|
-
*/
|
|
2986
|
-
destroyControl(): this;
|
|
2987
2983
|
/**
|
|
2988
2984
|
* Creates a new subclass of class sap.ui.commons.layout.PositionContainer with name `sClassName` and enriches
|
|
2989
2985
|
* it with the information contained in `oClassInfo`.
|
|
@@ -3008,6 +3004,14 @@ declare namespace sap {
|
|
|
3008
3004
|
*/
|
|
3009
3005
|
FNMetaImpl?: Function
|
|
3010
3006
|
): Function;
|
|
3007
|
+
/**
|
|
3008
|
+
* Returns a metadata object for class sap.ui.commons.layout.PositionContainer.
|
|
3009
|
+
*/
|
|
3010
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3011
|
+
/**
|
|
3012
|
+
* Destroys the control in the aggregation {@link #getControl control}.
|
|
3013
|
+
*/
|
|
3014
|
+
destroyControl(): this;
|
|
3011
3015
|
/**
|
|
3012
3016
|
* Gets current value of property {@link #getBottom bottom}.
|
|
3013
3017
|
*
|
|
@@ -3044,10 +3048,6 @@ declare namespace sap {
|
|
|
3044
3048
|
* Defines the distance to the left of the layout (as specified in HTML)
|
|
3045
3049
|
*/
|
|
3046
3050
|
getLeft(): sap.ui.core.CSSSize;
|
|
3047
|
-
/**
|
|
3048
|
-
* Returns a metadata object for class sap.ui.commons.layout.PositionContainer.
|
|
3049
|
-
*/
|
|
3050
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3051
3051
|
/**
|
|
3052
3052
|
* Gets current value of property {@link #getRight right}.
|
|
3053
3053
|
*
|
|
@@ -3308,6 +3308,10 @@ declare namespace sap {
|
|
|
3308
3308
|
*/
|
|
3309
3309
|
FNMetaImpl?: Function
|
|
3310
3310
|
): Function;
|
|
3311
|
+
/**
|
|
3312
|
+
* Returns a metadata object for class sap.ui.commons.layout.ResponsiveFlowLayoutData.
|
|
3313
|
+
*/
|
|
3314
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3311
3315
|
/**
|
|
3312
3316
|
* @SINCE 1.11.0
|
|
3313
3317
|
*
|
|
@@ -3316,10 +3320,6 @@ declare namespace sap {
|
|
|
3316
3320
|
* Default value is `true`
|
|
3317
3321
|
*/
|
|
3318
3322
|
getMargin(): boolean;
|
|
3319
|
-
/**
|
|
3320
|
-
* Returns a metadata object for class sap.ui.commons.layout.ResponsiveFlowLayoutData.
|
|
3321
|
-
*/
|
|
3322
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
3323
3323
|
/**
|
|
3324
3324
|
* @SINCE 1.11.0
|
|
3325
3325
|
*
|
|
@@ -3710,17 +3710,17 @@ declare namespace sap {
|
|
|
3710
3710
|
/**
|
|
3711
3711
|
* Event is triggered when the user opens a section.
|
|
3712
3712
|
*/
|
|
3713
|
-
sectionOpen?:
|
|
3713
|
+
sectionOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
3714
3714
|
|
|
3715
3715
|
/**
|
|
3716
3716
|
* Event is triggered when the user closes a section.
|
|
3717
3717
|
*/
|
|
3718
|
-
sectionClose?:
|
|
3718
|
+
sectionClose?: (oEvent: sap.ui.base.Event) => void;
|
|
3719
3719
|
|
|
3720
3720
|
/**
|
|
3721
3721
|
* Event is triggered when the user changes the position of a section.
|
|
3722
3722
|
*/
|
|
3723
|
-
sectionsReorder?:
|
|
3723
|
+
sectionsReorder?: (oEvent: sap.ui.base.Event) => void;
|
|
3724
3724
|
}
|
|
3725
3725
|
|
|
3726
3726
|
interface $AccordionSectionSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -3762,7 +3762,7 @@ declare namespace sap {
|
|
|
3762
3762
|
/**
|
|
3763
3763
|
* Event is fired when the user scrolls the panel
|
|
3764
3764
|
*/
|
|
3765
|
-
scroll?:
|
|
3765
|
+
scroll?: (oEvent: sap.ui.base.Event) => void;
|
|
3766
3766
|
}
|
|
3767
3767
|
|
|
3768
3768
|
interface $ApplicationHeaderSettings
|
|
@@ -3799,7 +3799,7 @@ declare namespace sap {
|
|
|
3799
3799
|
/**
|
|
3800
3800
|
* Fires an event to log off the user from the application. No parameters.
|
|
3801
3801
|
*/
|
|
3802
|
-
logoff?:
|
|
3802
|
+
logoff?: (oEvent: sap.ui.base.Event) => void;
|
|
3803
3803
|
}
|
|
3804
3804
|
|
|
3805
3805
|
interface $AreaSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -3836,7 +3836,7 @@ declare namespace sap {
|
|
|
3836
3836
|
/**
|
|
3837
3837
|
* Fired when the user has changed the value and a suggestion list update should occur.
|
|
3838
3838
|
*/
|
|
3839
|
-
suggest?:
|
|
3839
|
+
suggest?: (oEvent: sap.ui.base.Event) => void;
|
|
3840
3840
|
}
|
|
3841
3841
|
|
|
3842
3842
|
interface $ButtonSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -3931,7 +3931,7 @@ declare namespace sap {
|
|
|
3931
3931
|
/**
|
|
3932
3932
|
* Event is fired when the user presses the control.
|
|
3933
3933
|
*/
|
|
3934
|
-
press?:
|
|
3934
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
3935
3935
|
}
|
|
3936
3936
|
|
|
3937
3937
|
interface $CalloutSettings extends sap.ui.commons.$CalloutBaseSettings {
|
|
@@ -3948,25 +3948,25 @@ declare namespace sap {
|
|
|
3948
3948
|
/**
|
|
3949
3949
|
* The event is fired when the popup is opened.
|
|
3950
3950
|
*/
|
|
3951
|
-
open?:
|
|
3951
|
+
open?: (oEvent: sap.ui.base.Event) => void;
|
|
3952
3952
|
|
|
3953
3953
|
/**
|
|
3954
3954
|
* Event is fired when the Callout window is closed.
|
|
3955
3955
|
*/
|
|
3956
|
-
close?:
|
|
3956
|
+
close?: (oEvent: sap.ui.base.Event) => void;
|
|
3957
3957
|
|
|
3958
3958
|
/**
|
|
3959
3959
|
* Event is fired before a Callout is displayed. Call the preventDefault method of the event object to postpone
|
|
3960
3960
|
* opening. Application may use this event to start asynchronous Ajax call to load the Callout content
|
|
3961
3961
|
*/
|
|
3962
|
-
beforeOpen?:
|
|
3962
|
+
beforeOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
3963
3963
|
|
|
3964
3964
|
/**
|
|
3965
3965
|
* @SINCE 1.11.0
|
|
3966
3966
|
*
|
|
3967
3967
|
* Is fired when the Callout has been opened
|
|
3968
3968
|
*/
|
|
3969
|
-
opened?:
|
|
3969
|
+
opened?: (oEvent: sap.ui.base.Event) => void;
|
|
3970
3970
|
}
|
|
3971
3971
|
|
|
3972
3972
|
interface $CarouselSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -4095,7 +4095,7 @@ declare namespace sap {
|
|
|
4095
4095
|
/**
|
|
4096
4096
|
* Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
|
|
4097
4097
|
*/
|
|
4098
|
-
change?:
|
|
4098
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
4099
4099
|
}
|
|
4100
4100
|
|
|
4101
4101
|
interface $ColorPickerSettings
|
|
@@ -4326,7 +4326,7 @@ declare namespace sap {
|
|
|
4326
4326
|
* Event is fired when the dialog has been closed (after closing-animation etc.). Event parameters provide
|
|
4327
4327
|
* information about last position and last size.
|
|
4328
4328
|
*/
|
|
4329
|
-
closed?:
|
|
4329
|
+
closed?: (oEvent: sap.ui.base.Event) => void;
|
|
4330
4330
|
}
|
|
4331
4331
|
|
|
4332
4332
|
interface $DropdownBoxSettings extends sap.ui.commons.$ComboBoxSettings {
|
|
@@ -4368,7 +4368,7 @@ declare namespace sap {
|
|
|
4368
4368
|
* Event fired whenever the configured searchHelpItem is clicked or the searchHelpItem is configured and
|
|
4369
4369
|
* F4 key is pressed.
|
|
4370
4370
|
*/
|
|
4371
|
-
searchHelp?:
|
|
4371
|
+
searchHelp?: (oEvent: sap.ui.base.Event) => void;
|
|
4372
4372
|
}
|
|
4373
4373
|
|
|
4374
4374
|
interface $FileUploaderSettings
|
|
@@ -4468,7 +4468,7 @@ declare namespace sap {
|
|
|
4468
4468
|
/**
|
|
4469
4469
|
* Event is fired when the user clicks on the control.
|
|
4470
4470
|
*/
|
|
4471
|
-
press?:
|
|
4471
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
4472
4472
|
}
|
|
4473
4473
|
|
|
4474
4474
|
interface $ImageMapSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -4488,7 +4488,7 @@ declare namespace sap {
|
|
|
4488
4488
|
/**
|
|
4489
4489
|
* Event for the areas that can be clicked in an ImageMap
|
|
4490
4490
|
*/
|
|
4491
|
-
press?:
|
|
4491
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
4492
4492
|
}
|
|
4493
4493
|
|
|
4494
4494
|
interface $InPlaceEditSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -4524,7 +4524,7 @@ declare namespace sap {
|
|
|
4524
4524
|
* Event is fired when the text in the field has changed AND the focus leaves the InPlaceEdit or the Enter
|
|
4525
4525
|
* key is pressed.
|
|
4526
4526
|
*/
|
|
4527
|
-
change?:
|
|
4527
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
4528
4528
|
|
|
4529
4529
|
/**
|
|
4530
4530
|
* @SINCE 1.16.5
|
|
@@ -4533,7 +4533,7 @@ declare namespace sap {
|
|
|
4533
4533
|
* is not the content of the value property. The value property is only updated by ENTER and by leaving
|
|
4534
4534
|
* the control.
|
|
4535
4535
|
*/
|
|
4536
|
-
liveChange?:
|
|
4536
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
4537
4537
|
}
|
|
4538
4538
|
|
|
4539
4539
|
interface $LabelSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -4659,7 +4659,7 @@ declare namespace sap {
|
|
|
4659
4659
|
/**
|
|
4660
4660
|
* Event is fired when the user clicks the control.
|
|
4661
4661
|
*/
|
|
4662
|
-
press?:
|
|
4662
|
+
press?: (oEvent: sap.ui.base.Event) => void;
|
|
4663
4663
|
}
|
|
4664
4664
|
|
|
4665
4665
|
interface $ListBoxSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -4781,7 +4781,7 @@ declare namespace sap {
|
|
|
4781
4781
|
/**
|
|
4782
4782
|
* Event is fired when selection is changed by user interaction.
|
|
4783
4783
|
*/
|
|
4784
|
-
select?:
|
|
4784
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
4785
4785
|
}
|
|
4786
4786
|
|
|
4787
4787
|
interface $MenuSettings extends sap.ui.unified.$MenuSettings {}
|
|
@@ -4836,7 +4836,7 @@ declare namespace sap {
|
|
|
4836
4836
|
/**
|
|
4837
4837
|
* Event that is fired when a menu item is selected by the user
|
|
4838
4838
|
*/
|
|
4839
|
-
itemSelected?:
|
|
4839
|
+
itemSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
4840
4840
|
}
|
|
4841
4841
|
|
|
4842
4842
|
interface $MenuItemSettings extends sap.ui.unified.$MenuItemSettings {}
|
|
@@ -4933,7 +4933,7 @@ declare namespace sap {
|
|
|
4933
4933
|
/**
|
|
4934
4934
|
* Fired once the `toast()` method is over, so that the MessageBar can "toast" another message if needed.
|
|
4935
4935
|
*/
|
|
4936
|
-
next?:
|
|
4936
|
+
next?: (oEvent: sap.ui.base.Event) => void;
|
|
4937
4937
|
}
|
|
4938
4938
|
|
|
4939
4939
|
interface $PaginatorSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -4950,7 +4950,7 @@ declare namespace sap {
|
|
|
4950
4950
|
/**
|
|
4951
4951
|
* Event is fired when the user navigates to another page by selecting it directly, or by jumping forward/backward.
|
|
4952
4952
|
*/
|
|
4953
|
-
page?:
|
|
4953
|
+
page?: (oEvent: sap.ui.base.Event) => void;
|
|
4954
4954
|
}
|
|
4955
4955
|
|
|
4956
4956
|
interface $PanelSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -5161,7 +5161,7 @@ declare namespace sap {
|
|
|
5161
5161
|
/**
|
|
5162
5162
|
* Triggers when the user makes a change on the RadioButton.
|
|
5163
5163
|
*/
|
|
5164
|
-
select?:
|
|
5164
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
5165
5165
|
}
|
|
5166
5166
|
|
|
5167
5167
|
interface $RadioButtonGroupSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -5229,7 +5229,7 @@ declare namespace sap {
|
|
|
5229
5229
|
/**
|
|
5230
5230
|
* Fires when selection is changed by user interaction.
|
|
5231
5231
|
*/
|
|
5232
|
-
select?:
|
|
5232
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
5233
5233
|
}
|
|
5234
5234
|
|
|
5235
5235
|
interface $RangeSliderSettings extends sap.ui.commons.$SliderSettings {
|
|
@@ -5311,7 +5311,7 @@ declare namespace sap {
|
|
|
5311
5311
|
/**
|
|
5312
5312
|
* The event is fired when the user has done a rating.
|
|
5313
5313
|
*/
|
|
5314
|
-
change?:
|
|
5314
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
5315
5315
|
}
|
|
5316
5316
|
|
|
5317
5317
|
interface $ResponsiveContainerSettings
|
|
@@ -5346,7 +5346,7 @@ declare namespace sap {
|
|
|
5346
5346
|
/**
|
|
5347
5347
|
* The event is fired the width of the container reaches a new range.
|
|
5348
5348
|
*/
|
|
5349
|
-
rangeSwitch?:
|
|
5349
|
+
rangeSwitch?: (oEvent: sap.ui.base.Event) => void;
|
|
5350
5350
|
}
|
|
5351
5351
|
|
|
5352
5352
|
interface $ResponsiveContainerRangeSettings
|
|
@@ -5442,12 +5442,12 @@ declare namespace sap {
|
|
|
5442
5442
|
/**
|
|
5443
5443
|
* Event is fired when the user selects a step.
|
|
5444
5444
|
*/
|
|
5445
|
-
stepSelected?:
|
|
5445
|
+
stepSelected?: (oEvent: sap.ui.base.Event) => void;
|
|
5446
5446
|
|
|
5447
5447
|
/**
|
|
5448
5448
|
* Event is fired when a given step is expanded or collapsed by user.
|
|
5449
5449
|
*/
|
|
5450
|
-
stepExpanded?:
|
|
5450
|
+
stepExpanded?: (oEvent: sap.ui.base.Event) => void;
|
|
5451
5451
|
}
|
|
5452
5452
|
|
|
5453
5453
|
interface $RoadMapStepSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -5561,22 +5561,22 @@ declare namespace sap {
|
|
|
5561
5561
|
/**
|
|
5562
5562
|
* This event is triggered when a filter is set.
|
|
5563
5563
|
*/
|
|
5564
|
-
filter?:
|
|
5564
|
+
filter?: (oEvent: sap.ui.base.Event) => void;
|
|
5565
5565
|
|
|
5566
5566
|
/**
|
|
5567
5567
|
* This event is triggered when a sorting is applied.
|
|
5568
5568
|
*/
|
|
5569
|
-
sort?:
|
|
5569
|
+
sort?: (oEvent: sap.ui.base.Event) => void;
|
|
5570
5570
|
|
|
5571
5571
|
/**
|
|
5572
5572
|
* This event is triggered when paging was executed.
|
|
5573
5573
|
*/
|
|
5574
|
-
page?:
|
|
5574
|
+
page?: (oEvent: sap.ui.base.Event) => void;
|
|
5575
5575
|
|
|
5576
5576
|
/**
|
|
5577
5577
|
* This event is triggered when the number of rows was changed.
|
|
5578
5578
|
*/
|
|
5579
|
-
resize?:
|
|
5579
|
+
resize?: (oEvent: sap.ui.base.Event) => void;
|
|
5580
5580
|
}
|
|
5581
5581
|
|
|
5582
5582
|
interface $RowRepeaterFilterSettings
|
|
@@ -5751,12 +5751,12 @@ declare namespace sap {
|
|
|
5751
5751
|
/**
|
|
5752
5752
|
* Event which is fired when the user triggers a search
|
|
5753
5753
|
*/
|
|
5754
|
-
search?:
|
|
5754
|
+
search?: (oEvent: sap.ui.base.Event) => void;
|
|
5755
5755
|
|
|
5756
5756
|
/**
|
|
5757
5757
|
* Event which is fired when new suggest values are required.
|
|
5758
5758
|
*/
|
|
5759
|
-
suggest?:
|
|
5759
|
+
suggest?: (oEvent: sap.ui.base.Event) => void;
|
|
5760
5760
|
}
|
|
5761
5761
|
|
|
5762
5762
|
interface $SearchProviderSettings
|
|
@@ -5784,7 +5784,7 @@ declare namespace sap {
|
|
|
5784
5784
|
/**
|
|
5785
5785
|
* Event fired when button selected
|
|
5786
5786
|
*/
|
|
5787
|
-
select?:
|
|
5787
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
5788
5788
|
}
|
|
5789
5789
|
|
|
5790
5790
|
interface $SliderSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -5879,13 +5879,13 @@ declare namespace sap {
|
|
|
5879
5879
|
/**
|
|
5880
5880
|
* Value was changed. This event is fired if the value has changed by a user action.
|
|
5881
5881
|
*/
|
|
5882
|
-
change?:
|
|
5882
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
5883
5883
|
|
|
5884
5884
|
/**
|
|
5885
5885
|
* Value was changed. This event is fired during the mouse move. The normal change event is only fired by
|
|
5886
5886
|
* mouseup.
|
|
5887
5887
|
*/
|
|
5888
|
-
liveChange?:
|
|
5888
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
5889
5889
|
}
|
|
5890
5890
|
|
|
5891
5891
|
interface $SplitterSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6033,12 +6033,12 @@ declare namespace sap {
|
|
|
6033
6033
|
/**
|
|
6034
6034
|
* Fires when the user selects a tab.
|
|
6035
6035
|
*/
|
|
6036
|
-
select?:
|
|
6036
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
6037
6037
|
|
|
6038
6038
|
/**
|
|
6039
6039
|
* Fires when the user closes a tab.
|
|
6040
6040
|
*/
|
|
6041
|
-
close?:
|
|
6041
|
+
close?: (oEvent: sap.ui.base.Event) => void;
|
|
6042
6042
|
}
|
|
6043
6043
|
|
|
6044
6044
|
interface $TextAreaSettings extends sap.ui.commons.$TextFieldSettings {
|
|
@@ -6194,14 +6194,14 @@ declare namespace sap {
|
|
|
6194
6194
|
* Event is fired when the text in the field has changed AND the focus leaves the TextField or the Enter
|
|
6195
6195
|
* key is pressed.
|
|
6196
6196
|
*/
|
|
6197
|
-
change?:
|
|
6197
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
6198
6198
|
|
|
6199
6199
|
/**
|
|
6200
6200
|
* This event if fired during typing into the `TextField` and returns the currently entered value. **Note:**
|
|
6201
6201
|
* This is not the content of the value property. The value property is only updated by ENTER and by leaving
|
|
6202
6202
|
* the control.
|
|
6203
6203
|
*/
|
|
6204
|
-
liveChange?:
|
|
6204
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
6205
6205
|
}
|
|
6206
6206
|
|
|
6207
6207
|
interface $TextViewSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6409,12 +6409,12 @@ declare namespace sap {
|
|
|
6409
6409
|
/**
|
|
6410
6410
|
* Event is fired when a tree node is selected.
|
|
6411
6411
|
*/
|
|
6412
|
-
select?:
|
|
6412
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
6413
6413
|
|
|
6414
6414
|
/**
|
|
6415
6415
|
* fired when the selection of the tree has been changed
|
|
6416
6416
|
*/
|
|
6417
|
-
selectionChange?:
|
|
6417
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
6418
6418
|
}
|
|
6419
6419
|
|
|
6420
6420
|
interface $TreeNodeSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -6469,12 +6469,12 @@ declare namespace sap {
|
|
|
6469
6469
|
/**
|
|
6470
6470
|
* Node state has changed.
|
|
6471
6471
|
*/
|
|
6472
|
-
toggleOpenState?:
|
|
6472
|
+
toggleOpenState?: (oEvent: sap.ui.base.Event) => void;
|
|
6473
6473
|
|
|
6474
6474
|
/**
|
|
6475
6475
|
* Node is selected
|
|
6476
6476
|
*/
|
|
6477
|
-
selected?:
|
|
6477
|
+
selected?: (oEvent: sap.ui.base.Event) => void;
|
|
6478
6478
|
}
|
|
6479
6479
|
|
|
6480
6480
|
interface $TriStateCheckBoxSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -6526,7 +6526,7 @@ declare namespace sap {
|
|
|
6526
6526
|
/**
|
|
6527
6527
|
* Event is triggered when the control status is changed by the user by flagging or unflagging the checkbox.
|
|
6528
6528
|
*/
|
|
6529
|
-
change?:
|
|
6529
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
6530
6530
|
}
|
|
6531
6531
|
|
|
6532
6532
|
interface $ValueHelpFieldSettings
|
|
@@ -6558,7 +6558,7 @@ declare namespace sap {
|
|
|
6558
6558
|
/**
|
|
6559
6559
|
* Event which is fired when the ValueHelp is requested.
|
|
6560
6560
|
*/
|
|
6561
|
-
valueHelpRequest?:
|
|
6561
|
+
valueHelpRequest?: (oEvent: sap.ui.base.Event) => void;
|
|
6562
6562
|
}
|
|
6563
6563
|
|
|
6564
6564
|
/**
|
|
@@ -6745,6 +6745,31 @@ declare namespace sap {
|
|
|
6745
6745
|
mSettings?: sap.ui.commons.$AccordionSettings
|
|
6746
6746
|
);
|
|
6747
6747
|
|
|
6748
|
+
/**
|
|
6749
|
+
* Creates a new subclass of class sap.ui.commons.Accordion with name `sClassName` and enriches it with
|
|
6750
|
+
* the information contained in `oClassInfo`.
|
|
6751
|
+
*
|
|
6752
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
6753
|
+
*/
|
|
6754
|
+
static extend<T extends Record<string, unknown>>(
|
|
6755
|
+
/**
|
|
6756
|
+
* Name of the class being created
|
|
6757
|
+
*/
|
|
6758
|
+
sClassName: string,
|
|
6759
|
+
/**
|
|
6760
|
+
* Object literal with information about the class
|
|
6761
|
+
*/
|
|
6762
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Accordion>,
|
|
6763
|
+
/**
|
|
6764
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6765
|
+
* used by this class
|
|
6766
|
+
*/
|
|
6767
|
+
FNMetaImpl?: Function
|
|
6768
|
+
): Function;
|
|
6769
|
+
/**
|
|
6770
|
+
* Returns a metadata object for class sap.ui.commons.Accordion.
|
|
6771
|
+
*/
|
|
6772
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
6748
6773
|
/**
|
|
6749
6774
|
* Adds some section to the aggregation {@link #getSections sections}.
|
|
6750
6775
|
*/
|
|
@@ -6938,27 +6963,6 @@ declare namespace sap {
|
|
|
6938
6963
|
*/
|
|
6939
6964
|
oListener?: object
|
|
6940
6965
|
): this;
|
|
6941
|
-
/**
|
|
6942
|
-
* Creates a new subclass of class sap.ui.commons.Accordion with name `sClassName` and enriches it with
|
|
6943
|
-
* the information contained in `oClassInfo`.
|
|
6944
|
-
*
|
|
6945
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
6946
|
-
*/
|
|
6947
|
-
static extend<T extends Record<string, unknown>>(
|
|
6948
|
-
/**
|
|
6949
|
-
* Name of the class being created
|
|
6950
|
-
*/
|
|
6951
|
-
sClassName: string,
|
|
6952
|
-
/**
|
|
6953
|
-
* Object literal with information about the class
|
|
6954
|
-
*/
|
|
6955
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Accordion>,
|
|
6956
|
-
/**
|
|
6957
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6958
|
-
* used by this class
|
|
6959
|
-
*/
|
|
6960
|
-
FNMetaImpl?: Function
|
|
6961
|
-
): Function;
|
|
6962
6966
|
/**
|
|
6963
6967
|
* Fires event {@link #event:sectionClose sectionClose} to attached listeners.
|
|
6964
6968
|
*/
|
|
@@ -7009,10 +7013,6 @@ declare namespace sap {
|
|
|
7009
7013
|
newIndex?: int;
|
|
7010
7014
|
}
|
|
7011
7015
|
): this;
|
|
7012
|
-
/**
|
|
7013
|
-
* Returns a metadata object for class sap.ui.commons.Accordion.
|
|
7014
|
-
*/
|
|
7015
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7016
7016
|
/**
|
|
7017
7017
|
* Gets current value of property {@link #getOpenedSectionsId openedSectionsId}.
|
|
7018
7018
|
*
|
|
@@ -7144,6 +7144,31 @@ declare namespace sap {
|
|
|
7144
7144
|
mSettings?: sap.ui.commons.$AccordionSectionSettings
|
|
7145
7145
|
);
|
|
7146
7146
|
|
|
7147
|
+
/**
|
|
7148
|
+
* Creates a new subclass of class sap.ui.commons.AccordionSection with name `sClassName` and enriches it
|
|
7149
|
+
* with the information contained in `oClassInfo`.
|
|
7150
|
+
*
|
|
7151
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
7152
|
+
*/
|
|
7153
|
+
static extend<T extends Record<string, unknown>>(
|
|
7154
|
+
/**
|
|
7155
|
+
* Name of the class being created
|
|
7156
|
+
*/
|
|
7157
|
+
sClassName: string,
|
|
7158
|
+
/**
|
|
7159
|
+
* Object literal with information about the class
|
|
7160
|
+
*/
|
|
7161
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.AccordionSection>,
|
|
7162
|
+
/**
|
|
7163
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7164
|
+
* used by this class
|
|
7165
|
+
*/
|
|
7166
|
+
FNMetaImpl?: Function
|
|
7167
|
+
): Function;
|
|
7168
|
+
/**
|
|
7169
|
+
* Returns a metadata object for class sap.ui.commons.AccordionSection.
|
|
7170
|
+
*/
|
|
7171
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7147
7172
|
/**
|
|
7148
7173
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
7149
7174
|
*/
|
|
@@ -7213,27 +7238,6 @@ declare namespace sap {
|
|
|
7213
7238
|
*/
|
|
7214
7239
|
oListener?: object
|
|
7215
7240
|
): this;
|
|
7216
|
-
/**
|
|
7217
|
-
* Creates a new subclass of class sap.ui.commons.AccordionSection with name `sClassName` and enriches it
|
|
7218
|
-
* with the information contained in `oClassInfo`.
|
|
7219
|
-
*
|
|
7220
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
7221
|
-
*/
|
|
7222
|
-
static extend<T extends Record<string, unknown>>(
|
|
7223
|
-
/**
|
|
7224
|
-
* Name of the class being created
|
|
7225
|
-
*/
|
|
7226
|
-
sClassName: string,
|
|
7227
|
-
/**
|
|
7228
|
-
* Object literal with information about the class
|
|
7229
|
-
*/
|
|
7230
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.AccordionSection>,
|
|
7231
|
-
/**
|
|
7232
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7233
|
-
* used by this class
|
|
7234
|
-
*/
|
|
7235
|
-
FNMetaImpl?: Function
|
|
7236
|
-
): Function;
|
|
7237
7241
|
/**
|
|
7238
7242
|
* Fires event {@link #event:scroll scroll} to attached listeners.
|
|
7239
7243
|
*/
|
|
@@ -7285,10 +7289,6 @@ declare namespace sap {
|
|
|
7285
7289
|
* When the section content exceeds maxHeight, a vertical scroll bar appears.
|
|
7286
7290
|
*/
|
|
7287
7291
|
getMaxHeight(): sap.ui.core.CSSSize;
|
|
7288
|
-
/**
|
|
7289
|
-
* Returns a metadata object for class sap.ui.commons.AccordionSection.
|
|
7290
|
-
*/
|
|
7291
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7292
7292
|
/**
|
|
7293
7293
|
* Gets current value of property {@link #getTitle title}.
|
|
7294
7294
|
*
|
|
@@ -7418,6 +7418,31 @@ declare namespace sap {
|
|
|
7418
7418
|
mSettings?: sap.ui.commons.$ApplicationHeaderSettings
|
|
7419
7419
|
);
|
|
7420
7420
|
|
|
7421
|
+
/**
|
|
7422
|
+
* Creates a new subclass of class sap.ui.commons.ApplicationHeader with name `sClassName` and enriches
|
|
7423
|
+
* it with the information contained in `oClassInfo`.
|
|
7424
|
+
*
|
|
7425
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7426
|
+
*/
|
|
7427
|
+
static extend<T extends Record<string, unknown>>(
|
|
7428
|
+
/**
|
|
7429
|
+
* Name of the class being created
|
|
7430
|
+
*/
|
|
7431
|
+
sClassName: string,
|
|
7432
|
+
/**
|
|
7433
|
+
* Object literal with information about the class
|
|
7434
|
+
*/
|
|
7435
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ApplicationHeader>,
|
|
7436
|
+
/**
|
|
7437
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7438
|
+
* used by this class
|
|
7439
|
+
*/
|
|
7440
|
+
FNMetaImpl?: Function
|
|
7441
|
+
): Function;
|
|
7442
|
+
/**
|
|
7443
|
+
* Returns a metadata object for class sap.ui.commons.ApplicationHeader.
|
|
7444
|
+
*/
|
|
7445
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7421
7446
|
/**
|
|
7422
7447
|
* Attaches event handler `fnFunction` to the {@link #event:logoff logoff} event of this `sap.ui.commons.ApplicationHeader`.
|
|
7423
7448
|
*
|
|
@@ -7474,27 +7499,6 @@ declare namespace sap {
|
|
|
7474
7499
|
*/
|
|
7475
7500
|
oListener?: object
|
|
7476
7501
|
): this;
|
|
7477
|
-
/**
|
|
7478
|
-
* Creates a new subclass of class sap.ui.commons.ApplicationHeader with name `sClassName` and enriches
|
|
7479
|
-
* it with the information contained in `oClassInfo`.
|
|
7480
|
-
*
|
|
7481
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7482
|
-
*/
|
|
7483
|
-
static extend<T extends Record<string, unknown>>(
|
|
7484
|
-
/**
|
|
7485
|
-
* Name of the class being created
|
|
7486
|
-
*/
|
|
7487
|
-
sClassName: string,
|
|
7488
|
-
/**
|
|
7489
|
-
* Object literal with information about the class
|
|
7490
|
-
*/
|
|
7491
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ApplicationHeader>,
|
|
7492
|
-
/**
|
|
7493
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7494
|
-
* used by this class
|
|
7495
|
-
*/
|
|
7496
|
-
FNMetaImpl?: Function
|
|
7497
|
-
): Function;
|
|
7498
7502
|
/**
|
|
7499
7503
|
* Fires event {@link #event:logoff logoff} to attached listeners.
|
|
7500
7504
|
*/
|
|
@@ -7532,10 +7536,6 @@ declare namespace sap {
|
|
|
7532
7536
|
* The text that will be displayed beside the logo in the application header. This property is optional.
|
|
7533
7537
|
*/
|
|
7534
7538
|
getLogoText(): string;
|
|
7535
|
-
/**
|
|
7536
|
-
* Returns a metadata object for class sap.ui.commons.ApplicationHeader.
|
|
7537
|
-
*/
|
|
7538
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7539
7539
|
/**
|
|
7540
7540
|
* Gets current value of property {@link #getUserName userName}.
|
|
7541
7541
|
*
|
|
@@ -7671,6 +7671,10 @@ declare namespace sap {
|
|
|
7671
7671
|
*/
|
|
7672
7672
|
FNMetaImpl?: Function
|
|
7673
7673
|
): Function;
|
|
7674
|
+
/**
|
|
7675
|
+
* Returns a metadata object for class sap.ui.commons.Area.
|
|
7676
|
+
*/
|
|
7677
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7674
7678
|
/**
|
|
7675
7679
|
* Gets current value of property {@link #getAlt alt}.
|
|
7676
7680
|
*
|
|
@@ -7689,10 +7693,6 @@ declare namespace sap {
|
|
|
7689
7693
|
* Hyper link that is executed when the area is clicked
|
|
7690
7694
|
*/
|
|
7691
7695
|
getHref(): sap.ui.core.URI;
|
|
7692
|
-
/**
|
|
7693
|
-
* Returns a metadata object for class sap.ui.commons.Area.
|
|
7694
|
-
*/
|
|
7695
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7696
7696
|
/**
|
|
7697
7697
|
* Gets current value of property {@link #getShape shape}.
|
|
7698
7698
|
*
|
|
@@ -7794,28 +7794,30 @@ declare namespace sap {
|
|
|
7794
7794
|
);
|
|
7795
7795
|
|
|
7796
7796
|
/**
|
|
7797
|
-
*
|
|
7798
|
-
*
|
|
7799
|
-
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7800
|
-
* otherwise it will be bound to this `sap.ui.commons.AutoComplete` itself.
|
|
7797
|
+
* Creates a new subclass of class sap.ui.commons.AutoComplete with name `sClassName` and enriches it with
|
|
7798
|
+
* the information contained in `oClassInfo`.
|
|
7801
7799
|
*
|
|
7802
|
-
*
|
|
7800
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.ComboBox.extend}.
|
|
7803
7801
|
*/
|
|
7804
|
-
|
|
7802
|
+
static extend<T extends Record<string, unknown>>(
|
|
7805
7803
|
/**
|
|
7806
|
-
*
|
|
7807
|
-
* object when firing the event
|
|
7804
|
+
* Name of the class being created
|
|
7808
7805
|
*/
|
|
7809
|
-
|
|
7806
|
+
sClassName: string,
|
|
7810
7807
|
/**
|
|
7811
|
-
*
|
|
7808
|
+
* Object literal with information about the class
|
|
7812
7809
|
*/
|
|
7813
|
-
|
|
7810
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.AutoComplete>,
|
|
7814
7811
|
/**
|
|
7815
|
-
*
|
|
7812
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7813
|
+
* used by this class
|
|
7816
7814
|
*/
|
|
7817
|
-
|
|
7818
|
-
):
|
|
7815
|
+
FNMetaImpl?: Function
|
|
7816
|
+
): Function;
|
|
7817
|
+
/**
|
|
7818
|
+
* Returns a metadata object for class sap.ui.commons.AutoComplete.
|
|
7819
|
+
*/
|
|
7820
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7819
7821
|
/**
|
|
7820
7822
|
* Attaches event handler `fnFunction` to the {@link #event:suggest suggest} event of this `sap.ui.commons.AutoComplete`.
|
|
7821
7823
|
*
|
|
@@ -7825,6 +7827,11 @@ declare namespace sap {
|
|
|
7825
7827
|
* Fired when the user has changed the value and a suggestion list update should occur.
|
|
7826
7828
|
*/
|
|
7827
7829
|
attachSuggest(
|
|
7830
|
+
/**
|
|
7831
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
7832
|
+
* object when firing the event
|
|
7833
|
+
*/
|
|
7834
|
+
oData: object,
|
|
7828
7835
|
/**
|
|
7829
7836
|
* The function to be called when the event occurs
|
|
7830
7837
|
*/
|
|
@@ -7835,41 +7842,38 @@ declare namespace sap {
|
|
|
7835
7842
|
oListener?: object
|
|
7836
7843
|
): this;
|
|
7837
7844
|
/**
|
|
7838
|
-
*
|
|
7845
|
+
* Attaches event handler `fnFunction` to the {@link #event:suggest suggest} event of this `sap.ui.commons.AutoComplete`.
|
|
7839
7846
|
*
|
|
7840
|
-
*
|
|
7847
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
7848
|
+
* otherwise it will be bound to this `sap.ui.commons.AutoComplete` itself.
|
|
7849
|
+
*
|
|
7850
|
+
* Fired when the user has changed the value and a suggestion list update should occur.
|
|
7841
7851
|
*/
|
|
7842
|
-
|
|
7852
|
+
attachSuggest(
|
|
7843
7853
|
/**
|
|
7844
|
-
* The function to be called
|
|
7854
|
+
* The function to be called when the event occurs
|
|
7845
7855
|
*/
|
|
7846
7856
|
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
7847
7857
|
/**
|
|
7848
|
-
* Context object
|
|
7858
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.commons.AutoComplete` itself
|
|
7849
7859
|
*/
|
|
7850
7860
|
oListener?: object
|
|
7851
7861
|
): this;
|
|
7852
7862
|
/**
|
|
7853
|
-
*
|
|
7854
|
-
* the information contained in `oClassInfo`.
|
|
7863
|
+
* Detaches event handler `fnFunction` from the {@link #event:suggest suggest} event of this `sap.ui.commons.AutoComplete`.
|
|
7855
7864
|
*
|
|
7856
|
-
*
|
|
7865
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
7857
7866
|
*/
|
|
7858
|
-
|
|
7859
|
-
/**
|
|
7860
|
-
* Name of the class being created
|
|
7861
|
-
*/
|
|
7862
|
-
sClassName: string,
|
|
7867
|
+
detachSuggest(
|
|
7863
7868
|
/**
|
|
7864
|
-
*
|
|
7869
|
+
* The function to be called, when the event occurs
|
|
7865
7870
|
*/
|
|
7866
|
-
|
|
7871
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
7867
7872
|
/**
|
|
7868
|
-
*
|
|
7869
|
-
* used by this class
|
|
7873
|
+
* Context object on which the given function had to be called
|
|
7870
7874
|
*/
|
|
7871
|
-
|
|
7872
|
-
):
|
|
7875
|
+
oListener?: object
|
|
7876
|
+
): this;
|
|
7873
7877
|
/**
|
|
7874
7878
|
* Fires event {@link #event:suggest suggest} to attached listeners.
|
|
7875
7879
|
*/
|
|
@@ -7897,10 +7901,6 @@ declare namespace sap {
|
|
|
7897
7901
|
* @deprecated (since 1.10.0) - NOT SUPPORTED
|
|
7898
7902
|
*/
|
|
7899
7903
|
getListBox(): string;
|
|
7900
|
-
/**
|
|
7901
|
-
* Returns a metadata object for class sap.ui.commons.AutoComplete.
|
|
7902
|
-
*/
|
|
7903
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7904
7904
|
/**
|
|
7905
7905
|
* @deprecated (since 1.10.0) - NOT SUPPORTED
|
|
7906
7906
|
*/
|
|
@@ -7993,6 +7993,31 @@ declare namespace sap {
|
|
|
7993
7993
|
mSettings?: sap.ui.commons.$ButtonSettings
|
|
7994
7994
|
);
|
|
7995
7995
|
|
|
7996
|
+
/**
|
|
7997
|
+
* Creates a new subclass of class sap.ui.commons.Button with name `sClassName` and enriches it with the
|
|
7998
|
+
* information contained in `oClassInfo`.
|
|
7999
|
+
*
|
|
8000
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8001
|
+
*/
|
|
8002
|
+
static extend<T extends Record<string, unknown>>(
|
|
8003
|
+
/**
|
|
8004
|
+
* Name of the class being created
|
|
8005
|
+
*/
|
|
8006
|
+
sClassName: string,
|
|
8007
|
+
/**
|
|
8008
|
+
* Object literal with information about the class
|
|
8009
|
+
*/
|
|
8010
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Button>,
|
|
8011
|
+
/**
|
|
8012
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8013
|
+
* used by this class
|
|
8014
|
+
*/
|
|
8015
|
+
FNMetaImpl?: Function
|
|
8016
|
+
): Function;
|
|
8017
|
+
/**
|
|
8018
|
+
* Returns a metadata object for class sap.ui.commons.Button.
|
|
8019
|
+
*/
|
|
8020
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
7996
8021
|
/**
|
|
7997
8022
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
7998
8023
|
*/
|
|
@@ -8067,27 +8092,6 @@ declare namespace sap {
|
|
|
8067
8092
|
*/
|
|
8068
8093
|
oListener?: object
|
|
8069
8094
|
): this;
|
|
8070
|
-
/**
|
|
8071
|
-
* Creates a new subclass of class sap.ui.commons.Button with name `sClassName` and enriches it with the
|
|
8072
|
-
* information contained in `oClassInfo`.
|
|
8073
|
-
*
|
|
8074
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8075
|
-
*/
|
|
8076
|
-
static extend<T extends Record<string, unknown>>(
|
|
8077
|
-
/**
|
|
8078
|
-
* Name of the class being created
|
|
8079
|
-
*/
|
|
8080
|
-
sClassName: string,
|
|
8081
|
-
/**
|
|
8082
|
-
* Object literal with information about the class
|
|
8083
|
-
*/
|
|
8084
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Button>,
|
|
8085
|
-
/**
|
|
8086
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8087
|
-
* used by this class
|
|
8088
|
-
*/
|
|
8089
|
-
FNMetaImpl?: Function
|
|
8090
|
-
): Function;
|
|
8091
8095
|
/**
|
|
8092
8096
|
* Fires event {@link #event:press press} to attached listeners.
|
|
8093
8097
|
*/
|
|
@@ -8105,7 +8109,7 @@ declare namespace sap {
|
|
|
8105
8109
|
* See:
|
|
8106
8110
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
8107
8111
|
*/
|
|
8108
|
-
getAccessibilityInfo():
|
|
8112
|
+
getAccessibilityInfo(): object;
|
|
8109
8113
|
/**
|
|
8110
8114
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaDescribedBy
|
|
8111
8115
|
* ariaDescribedBy}.
|
|
@@ -8185,10 +8189,6 @@ declare namespace sap {
|
|
|
8185
8189
|
* Default value is `false`.
|
|
8186
8190
|
*/
|
|
8187
8191
|
getLite(): boolean;
|
|
8188
|
-
/**
|
|
8189
|
-
* Returns a metadata object for class sap.ui.commons.Button.
|
|
8190
|
-
*/
|
|
8191
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8192
8192
|
/**
|
|
8193
8193
|
* Gets current value of property {@link #getStyle style}.
|
|
8194
8194
|
*
|
|
@@ -8470,19 +8470,6 @@ declare namespace sap {
|
|
|
8470
8470
|
mSettings?: sap.ui.commons.$CalloutSettings
|
|
8471
8471
|
);
|
|
8472
8472
|
|
|
8473
|
-
/**
|
|
8474
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
8475
|
-
*/
|
|
8476
|
-
addContent(
|
|
8477
|
-
/**
|
|
8478
|
-
* The content to add; if empty, nothing is inserted
|
|
8479
|
-
*/
|
|
8480
|
-
oContent: sap.ui.core.Control
|
|
8481
|
-
): this;
|
|
8482
|
-
/**
|
|
8483
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
8484
|
-
*/
|
|
8485
|
-
destroyContent(): this;
|
|
8486
8473
|
/**
|
|
8487
8474
|
* Creates a new subclass of class sap.ui.commons.Callout with name `sClassName` and enriches it with the
|
|
8488
8475
|
* information contained in `oClassInfo`.
|
|
@@ -8504,16 +8491,29 @@ declare namespace sap {
|
|
|
8504
8491
|
*/
|
|
8505
8492
|
FNMetaImpl?: Function
|
|
8506
8493
|
): Function;
|
|
8494
|
+
/**
|
|
8495
|
+
* Returns a metadata object for class sap.ui.commons.Callout.
|
|
8496
|
+
*/
|
|
8497
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8498
|
+
/**
|
|
8499
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
8500
|
+
*/
|
|
8501
|
+
addContent(
|
|
8502
|
+
/**
|
|
8503
|
+
* The content to add; if empty, nothing is inserted
|
|
8504
|
+
*/
|
|
8505
|
+
oContent: sap.ui.core.Control
|
|
8506
|
+
): this;
|
|
8507
|
+
/**
|
|
8508
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
8509
|
+
*/
|
|
8510
|
+
destroyContent(): this;
|
|
8507
8511
|
/**
|
|
8508
8512
|
* Gets content of aggregation {@link #getContent content}.
|
|
8509
8513
|
*
|
|
8510
8514
|
* Determines the content of the Callout
|
|
8511
8515
|
*/
|
|
8512
8516
|
getContent(): sap.ui.core.Control[];
|
|
8513
|
-
/**
|
|
8514
|
-
* Returns a metadata object for class sap.ui.commons.Callout.
|
|
8515
|
-
*/
|
|
8516
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8517
8517
|
/**
|
|
8518
8518
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
8519
8519
|
* its index if found or -1 otherwise.
|
|
@@ -8592,6 +8592,31 @@ declare namespace sap {
|
|
|
8592
8592
|
mSettings?: sap.ui.commons.$CalloutBaseSettings
|
|
8593
8593
|
);
|
|
8594
8594
|
|
|
8595
|
+
/**
|
|
8596
|
+
* Creates a new subclass of class sap.ui.commons.CalloutBase with name `sClassName` and enriches it with
|
|
8597
|
+
* the information contained in `oClassInfo`.
|
|
8598
|
+
*
|
|
8599
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.TooltipBase.extend}.
|
|
8600
|
+
*/
|
|
8601
|
+
static extend<T extends Record<string, unknown>>(
|
|
8602
|
+
/**
|
|
8603
|
+
* Name of the class being created
|
|
8604
|
+
*/
|
|
8605
|
+
sClassName: string,
|
|
8606
|
+
/**
|
|
8607
|
+
* Object literal with information about the class
|
|
8608
|
+
*/
|
|
8609
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.CalloutBase>,
|
|
8610
|
+
/**
|
|
8611
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8612
|
+
* used by this class
|
|
8613
|
+
*/
|
|
8614
|
+
FNMetaImpl?: Function
|
|
8615
|
+
): Function;
|
|
8616
|
+
/**
|
|
8617
|
+
* Returns a metadata object for class sap.ui.commons.CalloutBase.
|
|
8618
|
+
*/
|
|
8619
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8595
8620
|
/**
|
|
8596
8621
|
* Adjust position of the already opened Callout window. Call this method each time when the size of the
|
|
8597
8622
|
* opened Callout window may be changed due to new or changed contents.
|
|
@@ -8833,27 +8858,6 @@ declare namespace sap {
|
|
|
8833
8858
|
*/
|
|
8834
8859
|
oListener?: object
|
|
8835
8860
|
): this;
|
|
8836
|
-
/**
|
|
8837
|
-
* Creates a new subclass of class sap.ui.commons.CalloutBase with name `sClassName` and enriches it with
|
|
8838
|
-
* the information contained in `oClassInfo`.
|
|
8839
|
-
*
|
|
8840
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.TooltipBase.extend}.
|
|
8841
|
-
*/
|
|
8842
|
-
static extend<T extends Record<string, unknown>>(
|
|
8843
|
-
/**
|
|
8844
|
-
* Name of the class being created
|
|
8845
|
-
*/
|
|
8846
|
-
sClassName: string,
|
|
8847
|
-
/**
|
|
8848
|
-
* Object literal with information about the class
|
|
8849
|
-
*/
|
|
8850
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.CalloutBase>,
|
|
8851
|
-
/**
|
|
8852
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8853
|
-
* used by this class
|
|
8854
|
-
*/
|
|
8855
|
-
FNMetaImpl?: Function
|
|
8856
|
-
): Function;
|
|
8857
8861
|
/**
|
|
8858
8862
|
* Fires event {@link #event:beforeOpen beforeOpen} to attached listeners.
|
|
8859
8863
|
*
|
|
@@ -8905,10 +8909,6 @@ declare namespace sap {
|
|
|
8905
8909
|
*/
|
|
8906
8910
|
mParameters?: object
|
|
8907
8911
|
): this;
|
|
8908
|
-
/**
|
|
8909
|
-
* Returns a metadata object for class sap.ui.commons.CalloutBase.
|
|
8910
|
-
*/
|
|
8911
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8912
8912
|
/**
|
|
8913
8913
|
* Set position of the Callout window relative to the parent control. This function automatically calculates
|
|
8914
8914
|
* and sets the correct offset, use it instead of `setMyPosition/setAtPosition`.
|
|
@@ -8964,6 +8964,31 @@ declare namespace sap {
|
|
|
8964
8964
|
mSettings?: sap.ui.commons.$CarouselSettings
|
|
8965
8965
|
);
|
|
8966
8966
|
|
|
8967
|
+
/**
|
|
8968
|
+
* Creates a new subclass of class sap.ui.commons.Carousel with name `sClassName` and enriches it with the
|
|
8969
|
+
* information contained in `oClassInfo`.
|
|
8970
|
+
*
|
|
8971
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
8972
|
+
*/
|
|
8973
|
+
static extend<T extends Record<string, unknown>>(
|
|
8974
|
+
/**
|
|
8975
|
+
* Name of the class being created
|
|
8976
|
+
*/
|
|
8977
|
+
sClassName: string,
|
|
8978
|
+
/**
|
|
8979
|
+
* Object literal with information about the class
|
|
8980
|
+
*/
|
|
8981
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Carousel>,
|
|
8982
|
+
/**
|
|
8983
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8984
|
+
* used by this class
|
|
8985
|
+
*/
|
|
8986
|
+
FNMetaImpl?: Function
|
|
8987
|
+
): Function;
|
|
8988
|
+
/**
|
|
8989
|
+
* Returns a metadata object for class sap.ui.commons.Carousel.
|
|
8990
|
+
*/
|
|
8991
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
8967
8992
|
/**
|
|
8968
8993
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
8969
8994
|
*/
|
|
@@ -8993,27 +9018,6 @@ declare namespace sap {
|
|
|
8993
9018
|
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
8994
9019
|
*/
|
|
8995
9020
|
destroyContent(): this;
|
|
8996
|
-
/**
|
|
8997
|
-
* Creates a new subclass of class sap.ui.commons.Carousel with name `sClassName` and enriches it with the
|
|
8998
|
-
* information contained in `oClassInfo`.
|
|
8999
|
-
*
|
|
9000
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9001
|
-
*/
|
|
9002
|
-
static extend<T extends Record<string, unknown>>(
|
|
9003
|
-
/**
|
|
9004
|
-
* Name of the class being created
|
|
9005
|
-
*/
|
|
9006
|
-
sClassName: string,
|
|
9007
|
-
/**
|
|
9008
|
-
* Object literal with information about the class
|
|
9009
|
-
*/
|
|
9010
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Carousel>,
|
|
9011
|
-
/**
|
|
9012
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9013
|
-
* used by this class
|
|
9014
|
-
*/
|
|
9015
|
-
FNMetaImpl?: Function
|
|
9016
|
-
): Function;
|
|
9017
9021
|
/**
|
|
9018
9022
|
* Gets current value of property {@link #getAnimationDuration animationDuration}.
|
|
9019
9023
|
*
|
|
@@ -9074,10 +9078,6 @@ declare namespace sap {
|
|
|
9074
9078
|
* Determines the height of the Carousel
|
|
9075
9079
|
*/
|
|
9076
9080
|
getHeight(): sap.ui.core.CSSSize;
|
|
9077
|
-
/**
|
|
9078
|
-
* Returns a metadata object for class sap.ui.commons.Carousel.
|
|
9079
|
-
*/
|
|
9080
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9081
9081
|
/**
|
|
9082
9082
|
* Gets current value of property {@link #getOrientation orientation}.
|
|
9083
9083
|
*
|
|
@@ -9336,6 +9336,31 @@ declare namespace sap {
|
|
|
9336
9336
|
mSettings?: sap.ui.commons.$CheckBoxSettings
|
|
9337
9337
|
);
|
|
9338
9338
|
|
|
9339
|
+
/**
|
|
9340
|
+
* Creates a new subclass of class sap.ui.commons.CheckBox with name `sClassName` and enriches it with the
|
|
9341
|
+
* information contained in `oClassInfo`.
|
|
9342
|
+
*
|
|
9343
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9344
|
+
*/
|
|
9345
|
+
static extend<T extends Record<string, unknown>>(
|
|
9346
|
+
/**
|
|
9347
|
+
* Name of the class being created
|
|
9348
|
+
*/
|
|
9349
|
+
sClassName: string,
|
|
9350
|
+
/**
|
|
9351
|
+
* Object literal with information about the class
|
|
9352
|
+
*/
|
|
9353
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.CheckBox>,
|
|
9354
|
+
/**
|
|
9355
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9356
|
+
* used by this class
|
|
9357
|
+
*/
|
|
9358
|
+
FNMetaImpl?: Function
|
|
9359
|
+
): Function;
|
|
9360
|
+
/**
|
|
9361
|
+
* Returns a metadata object for class sap.ui.commons.CheckBox.
|
|
9362
|
+
*/
|
|
9363
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9339
9364
|
/**
|
|
9340
9365
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
9341
9366
|
*/
|
|
@@ -9422,27 +9447,6 @@ declare namespace sap {
|
|
|
9422
9447
|
*/
|
|
9423
9448
|
oListener?: object
|
|
9424
9449
|
): this;
|
|
9425
|
-
/**
|
|
9426
|
-
* Creates a new subclass of class sap.ui.commons.CheckBox with name `sClassName` and enriches it with the
|
|
9427
|
-
* information contained in `oClassInfo`.
|
|
9428
|
-
*
|
|
9429
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9430
|
-
*/
|
|
9431
|
-
static extend<T extends Record<string, unknown>>(
|
|
9432
|
-
/**
|
|
9433
|
-
* Name of the class being created
|
|
9434
|
-
*/
|
|
9435
|
-
sClassName: string,
|
|
9436
|
-
/**
|
|
9437
|
-
* Object literal with information about the class
|
|
9438
|
-
*/
|
|
9439
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.CheckBox>,
|
|
9440
|
-
/**
|
|
9441
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9442
|
-
* used by this class
|
|
9443
|
-
*/
|
|
9444
|
-
FNMetaImpl?: Function
|
|
9445
|
-
): Function;
|
|
9446
9450
|
/**
|
|
9447
9451
|
* Fires event {@link #event:change change} to attached listeners.
|
|
9448
9452
|
*/
|
|
@@ -9496,10 +9500,6 @@ declare namespace sap {
|
|
|
9496
9500
|
* Default value is `true`.
|
|
9497
9501
|
*/
|
|
9498
9502
|
getEnabled(): boolean;
|
|
9499
|
-
/**
|
|
9500
|
-
* Returns a metadata object for class sap.ui.commons.CheckBox.
|
|
9501
|
-
*/
|
|
9502
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9503
9503
|
/**
|
|
9504
9504
|
* Gets current value of property {@link #getName name}.
|
|
9505
9505
|
*
|
|
@@ -9801,6 +9801,31 @@ declare namespace sap {
|
|
|
9801
9801
|
mSettings?: sap.ui.commons.$ComboBoxSettings
|
|
9802
9802
|
);
|
|
9803
9803
|
|
|
9804
|
+
/**
|
|
9805
|
+
* Creates a new subclass of class sap.ui.commons.ComboBox with name `sClassName` and enriches it with the
|
|
9806
|
+
* information contained in `oClassInfo`.
|
|
9807
|
+
*
|
|
9808
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.TextField.extend}.
|
|
9809
|
+
*/
|
|
9810
|
+
static extend<T extends Record<string, unknown>>(
|
|
9811
|
+
/**
|
|
9812
|
+
* Name of the class being created
|
|
9813
|
+
*/
|
|
9814
|
+
sClassName: string,
|
|
9815
|
+
/**
|
|
9816
|
+
* Object literal with information about the class
|
|
9817
|
+
*/
|
|
9818
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ComboBox>,
|
|
9819
|
+
/**
|
|
9820
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9821
|
+
* used by this class
|
|
9822
|
+
*/
|
|
9823
|
+
FNMetaImpl?: Function
|
|
9824
|
+
): Function;
|
|
9825
|
+
/**
|
|
9826
|
+
* Returns a metadata object for class sap.ui.commons.ComboBox.
|
|
9827
|
+
*/
|
|
9828
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9804
9829
|
/**
|
|
9805
9830
|
* Compares the previous value with the current value and fires the "Change" event if the ComboBox is editable
|
|
9806
9831
|
* and the value has changed or whether the value has been changed e.g. via up/down or auto-complete feature
|
|
@@ -9841,27 +9866,6 @@ declare namespace sap {
|
|
|
9841
9866
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
9842
9867
|
*/
|
|
9843
9868
|
destroyItems(): this;
|
|
9844
|
-
/**
|
|
9845
|
-
* Creates a new subclass of class sap.ui.commons.ComboBox with name `sClassName` and enriches it with the
|
|
9846
|
-
* information contained in `oClassInfo`.
|
|
9847
|
-
*
|
|
9848
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.TextField.extend}.
|
|
9849
|
-
*/
|
|
9850
|
-
static extend<T extends Record<string, unknown>>(
|
|
9851
|
-
/**
|
|
9852
|
-
* Name of the class being created
|
|
9853
|
-
*/
|
|
9854
|
-
sClassName: string,
|
|
9855
|
-
/**
|
|
9856
|
-
* Object literal with information about the class
|
|
9857
|
-
*/
|
|
9858
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ComboBox>,
|
|
9859
|
-
/**
|
|
9860
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9861
|
-
* used by this class
|
|
9862
|
-
*/
|
|
9863
|
-
FNMetaImpl?: Function
|
|
9864
|
-
): Function;
|
|
9865
9869
|
/**
|
|
9866
9870
|
* Fire event change to attached listeners.
|
|
9867
9871
|
*
|
|
@@ -9912,10 +9916,6 @@ declare namespace sap {
|
|
|
9912
9916
|
* Default value is `10`.
|
|
9913
9917
|
*/
|
|
9914
9918
|
getMaxPopupItems(): int;
|
|
9915
|
-
/**
|
|
9916
|
-
* Returns a metadata object for class sap.ui.commons.ComboBox.
|
|
9917
|
-
*/
|
|
9918
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
9919
9919
|
/**
|
|
9920
9920
|
* Gets current value of property {@link #getSelectedItemId selectedItemId}.
|
|
9921
9921
|
*
|
|
@@ -10166,6 +10166,10 @@ declare namespace sap {
|
|
|
10166
10166
|
*/
|
|
10167
10167
|
FNMetaImpl?: Function
|
|
10168
10168
|
): Function;
|
|
10169
|
+
/**
|
|
10170
|
+
* Returns a metadata object for class sap.ui.commons.DatePicker.
|
|
10171
|
+
*/
|
|
10172
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10169
10173
|
/**
|
|
10170
10174
|
* Fire event change to attached listeners.
|
|
10171
10175
|
*
|
|
@@ -10188,7 +10192,7 @@ declare namespace sap {
|
|
|
10188
10192
|
* See:
|
|
10189
10193
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
10190
10194
|
*/
|
|
10191
|
-
getAccessibilityInfo():
|
|
10195
|
+
getAccessibilityInfo(): object;
|
|
10192
10196
|
/**
|
|
10193
10197
|
* Gets current value of property {@link #getLocale locale}.
|
|
10194
10198
|
*
|
|
@@ -10197,10 +10201,6 @@ declare namespace sap {
|
|
|
10197
10201
|
* will be ignored, because the locale information of the model are used.
|
|
10198
10202
|
*/
|
|
10199
10203
|
getLocale(): string;
|
|
10200
|
-
/**
|
|
10201
|
-
* Returns a metadata object for class sap.ui.commons.DatePicker.
|
|
10202
|
-
*/
|
|
10203
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10204
10204
|
/**
|
|
10205
10205
|
* Gets current value of property {@link #getYyyymmdd yyyymmdd}.
|
|
10206
10206
|
*
|
|
@@ -10271,15 +10271,40 @@ declare namespace sap {
|
|
|
10271
10271
|
*/
|
|
10272
10272
|
constructor(
|
|
10273
10273
|
/**
|
|
10274
|
-
* ID for the new control, generated automatically if no ID is given
|
|
10274
|
+
* ID for the new control, generated automatically if no ID is given
|
|
10275
|
+
*/
|
|
10276
|
+
sId?: string,
|
|
10277
|
+
/**
|
|
10278
|
+
* Initial settings for the new control
|
|
10279
|
+
*/
|
|
10280
|
+
mSettings?: sap.ui.commons.$DialogSettings
|
|
10281
|
+
);
|
|
10282
|
+
|
|
10283
|
+
/**
|
|
10284
|
+
* Creates a new subclass of class sap.ui.commons.Dialog with name `sClassName` and enriches it with the
|
|
10285
|
+
* information contained in `oClassInfo`.
|
|
10286
|
+
*
|
|
10287
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10288
|
+
*/
|
|
10289
|
+
static extend<T extends Record<string, unknown>>(
|
|
10290
|
+
/**
|
|
10291
|
+
* Name of the class being created
|
|
10292
|
+
*/
|
|
10293
|
+
sClassName: string,
|
|
10294
|
+
/**
|
|
10295
|
+
* Object literal with information about the class
|
|
10275
10296
|
*/
|
|
10276
|
-
|
|
10297
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Dialog>,
|
|
10277
10298
|
/**
|
|
10278
|
-
*
|
|
10299
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10300
|
+
* used by this class
|
|
10279
10301
|
*/
|
|
10280
|
-
|
|
10281
|
-
);
|
|
10282
|
-
|
|
10302
|
+
FNMetaImpl?: Function
|
|
10303
|
+
): Function;
|
|
10304
|
+
/**
|
|
10305
|
+
* Returns a metadata object for class sap.ui.commons.Dialog.
|
|
10306
|
+
*/
|
|
10307
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10283
10308
|
/**
|
|
10284
10309
|
* Adds some button to the aggregation {@link #getButtons buttons}.
|
|
10285
10310
|
*/
|
|
@@ -10368,27 +10393,6 @@ declare namespace sap {
|
|
|
10368
10393
|
*/
|
|
10369
10394
|
oListener?: object
|
|
10370
10395
|
): this;
|
|
10371
|
-
/**
|
|
10372
|
-
* Creates a new subclass of class sap.ui.commons.Dialog with name `sClassName` and enriches it with the
|
|
10373
|
-
* information contained in `oClassInfo`.
|
|
10374
|
-
*
|
|
10375
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10376
|
-
*/
|
|
10377
|
-
static extend<T extends Record<string, unknown>>(
|
|
10378
|
-
/**
|
|
10379
|
-
* Name of the class being created
|
|
10380
|
-
*/
|
|
10381
|
-
sClassName: string,
|
|
10382
|
-
/**
|
|
10383
|
-
* Object literal with information about the class
|
|
10384
|
-
*/
|
|
10385
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Dialog>,
|
|
10386
|
-
/**
|
|
10387
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10388
|
-
* used by this class
|
|
10389
|
-
*/
|
|
10390
|
-
FNMetaImpl?: Function
|
|
10391
|
-
): Function;
|
|
10392
10396
|
/**
|
|
10393
10397
|
* Fires event {@link #event:closed closed} to attached listeners.
|
|
10394
10398
|
*/
|
|
@@ -10518,10 +10522,6 @@ declare namespace sap {
|
|
|
10518
10522
|
* the window larger.
|
|
10519
10523
|
*/
|
|
10520
10524
|
getMaxWidth(): sap.ui.core.CSSSize;
|
|
10521
|
-
/**
|
|
10522
|
-
* Returns a metadata object for class sap.ui.commons.Dialog.
|
|
10523
|
-
*/
|
|
10524
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
10525
10525
|
/**
|
|
10526
10526
|
* Gets current value of property {@link #getMinHeight minHeight}.
|
|
10527
10527
|
*
|
|
@@ -11002,6 +11002,31 @@ declare namespace sap {
|
|
|
11002
11002
|
mSettings?: sap.ui.commons.$DropdownBoxSettings
|
|
11003
11003
|
);
|
|
11004
11004
|
|
|
11005
|
+
/**
|
|
11006
|
+
* Creates a new subclass of class sap.ui.commons.DropdownBox with name `sClassName` and enriches it with
|
|
11007
|
+
* the information contained in `oClassInfo`.
|
|
11008
|
+
*
|
|
11009
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.ComboBox.extend}.
|
|
11010
|
+
*/
|
|
11011
|
+
static extend<T extends Record<string, unknown>>(
|
|
11012
|
+
/**
|
|
11013
|
+
* Name of the class being created
|
|
11014
|
+
*/
|
|
11015
|
+
sClassName: string,
|
|
11016
|
+
/**
|
|
11017
|
+
* Object literal with information about the class
|
|
11018
|
+
*/
|
|
11019
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.DropdownBox>,
|
|
11020
|
+
/**
|
|
11021
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11022
|
+
* used by this class
|
|
11023
|
+
*/
|
|
11024
|
+
FNMetaImpl?: Function
|
|
11025
|
+
): Function;
|
|
11026
|
+
/**
|
|
11027
|
+
* Returns a metadata object for class sap.ui.commons.DropdownBox.
|
|
11028
|
+
*/
|
|
11029
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11005
11030
|
/**
|
|
11006
11031
|
* Attaches event handler `fnFunction` to the {@link #event:searchHelp searchHelp} event of this `sap.ui.commons.DropdownBox`.
|
|
11007
11032
|
*
|
|
@@ -11065,27 +11090,6 @@ declare namespace sap {
|
|
|
11065
11090
|
*/
|
|
11066
11091
|
oListener?: object
|
|
11067
11092
|
): this;
|
|
11068
|
-
/**
|
|
11069
|
-
* Creates a new subclass of class sap.ui.commons.DropdownBox with name `sClassName` and enriches it with
|
|
11070
|
-
* the information contained in `oClassInfo`.
|
|
11071
|
-
*
|
|
11072
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.ComboBox.extend}.
|
|
11073
|
-
*/
|
|
11074
|
-
static extend<T extends Record<string, unknown>>(
|
|
11075
|
-
/**
|
|
11076
|
-
* Name of the class being created
|
|
11077
|
-
*/
|
|
11078
|
-
sClassName: string,
|
|
11079
|
-
/**
|
|
11080
|
-
* Object literal with information about the class
|
|
11081
|
-
*/
|
|
11082
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.DropdownBox>,
|
|
11083
|
-
/**
|
|
11084
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11085
|
-
* used by this class
|
|
11086
|
-
*/
|
|
11087
|
-
FNMetaImpl?: Function
|
|
11088
|
-
): Function;
|
|
11089
11093
|
/**
|
|
11090
11094
|
* Fires event {@link #event:searchHelp searchHelp} to attached listeners.
|
|
11091
11095
|
*/
|
|
@@ -11111,10 +11115,6 @@ declare namespace sap {
|
|
|
11111
11115
|
* Default value is `0`.
|
|
11112
11116
|
*/
|
|
11113
11117
|
getMaxHistoryItems(): int;
|
|
11114
|
-
/**
|
|
11115
|
-
* Returns a metadata object for class sap.ui.commons.DropdownBox.
|
|
11116
|
-
*/
|
|
11117
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11118
11118
|
/**
|
|
11119
11119
|
* Gets current value of property {@link #getSearchHelpAdditionalText searchHelpAdditionalText}.
|
|
11120
11120
|
*
|
|
@@ -11522,19 +11522,6 @@ declare namespace sap {
|
|
|
11522
11522
|
mSettings?: sap.ui.commons.$FormattedTextViewSettings
|
|
11523
11523
|
);
|
|
11524
11524
|
|
|
11525
|
-
/**
|
|
11526
|
-
* Adds some control to the aggregation {@link #getControls controls}.
|
|
11527
|
-
*/
|
|
11528
|
-
addControl(
|
|
11529
|
-
/**
|
|
11530
|
-
* The control to add; if empty, nothing is inserted
|
|
11531
|
-
*/
|
|
11532
|
-
oControl: sap.ui.core.Control
|
|
11533
|
-
): this;
|
|
11534
|
-
/**
|
|
11535
|
-
* Destroys all the controls in the aggregation {@link #getControls controls}.
|
|
11536
|
-
*/
|
|
11537
|
-
destroyControls(): this;
|
|
11538
11525
|
/**
|
|
11539
11526
|
* Creates a new subclass of class sap.ui.commons.FormattedTextView with name `sClassName` and enriches
|
|
11540
11527
|
* it with the information contained in `oClassInfo`.
|
|
@@ -11556,6 +11543,23 @@ declare namespace sap {
|
|
|
11556
11543
|
*/
|
|
11557
11544
|
FNMetaImpl?: Function
|
|
11558
11545
|
): Function;
|
|
11546
|
+
/**
|
|
11547
|
+
* Returns a metadata object for class sap.ui.commons.FormattedTextView.
|
|
11548
|
+
*/
|
|
11549
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11550
|
+
/**
|
|
11551
|
+
* Adds some control to the aggregation {@link #getControls controls}.
|
|
11552
|
+
*/
|
|
11553
|
+
addControl(
|
|
11554
|
+
/**
|
|
11555
|
+
* The control to add; if empty, nothing is inserted
|
|
11556
|
+
*/
|
|
11557
|
+
oControl: sap.ui.core.Control
|
|
11558
|
+
): this;
|
|
11559
|
+
/**
|
|
11560
|
+
* Destroys all the controls in the aggregation {@link #getControls controls}.
|
|
11561
|
+
*/
|
|
11562
|
+
destroyControls(): this;
|
|
11559
11563
|
/**
|
|
11560
11564
|
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
11561
11565
|
*
|
|
@@ -11578,10 +11582,6 @@ declare namespace sap {
|
|
|
11578
11582
|
* Default value is `empty string`.
|
|
11579
11583
|
*/
|
|
11580
11584
|
getHtmlText(): string;
|
|
11581
|
-
/**
|
|
11582
|
-
* Returns a metadata object for class sap.ui.commons.FormattedTextView.
|
|
11583
|
-
*/
|
|
11584
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11585
11585
|
/**
|
|
11586
11586
|
* Indicates whether the FormattedTextView contains other controls.
|
|
11587
11587
|
*/
|
|
@@ -11722,6 +11722,10 @@ declare namespace sap {
|
|
|
11722
11722
|
*/
|
|
11723
11723
|
FNMetaImpl?: Function
|
|
11724
11724
|
): Function;
|
|
11725
|
+
/**
|
|
11726
|
+
* Returns a metadata object for class sap.ui.commons.HorizontalDivider.
|
|
11727
|
+
*/
|
|
11728
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11725
11729
|
/**
|
|
11726
11730
|
* Gets current value of property {@link #getHeight height}.
|
|
11727
11731
|
*
|
|
@@ -11730,10 +11734,6 @@ declare namespace sap {
|
|
|
11730
11734
|
* Default value is `Medium`.
|
|
11731
11735
|
*/
|
|
11732
11736
|
getHeight(): sap.ui.commons.HorizontalDividerHeight;
|
|
11733
|
-
/**
|
|
11734
|
-
* Returns a metadata object for class sap.ui.commons.HorizontalDivider.
|
|
11735
|
-
*/
|
|
11736
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11737
11737
|
/**
|
|
11738
11738
|
* Gets current value of property {@link #getType type}.
|
|
11739
11739
|
*
|
|
@@ -11842,6 +11842,31 @@ declare namespace sap {
|
|
|
11842
11842
|
mSettings?: sap.ui.commons.$ImageSettings
|
|
11843
11843
|
);
|
|
11844
11844
|
|
|
11845
|
+
/**
|
|
11846
|
+
* Creates a new subclass of class sap.ui.commons.Image with name `sClassName` and enriches it with the
|
|
11847
|
+
* information contained in `oClassInfo`.
|
|
11848
|
+
*
|
|
11849
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11850
|
+
*/
|
|
11851
|
+
static extend<T extends Record<string, unknown>>(
|
|
11852
|
+
/**
|
|
11853
|
+
* Name of the class being created
|
|
11854
|
+
*/
|
|
11855
|
+
sClassName: string,
|
|
11856
|
+
/**
|
|
11857
|
+
* Object literal with information about the class
|
|
11858
|
+
*/
|
|
11859
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Image>,
|
|
11860
|
+
/**
|
|
11861
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11862
|
+
* used by this class
|
|
11863
|
+
*/
|
|
11864
|
+
FNMetaImpl?: Function
|
|
11865
|
+
): Function;
|
|
11866
|
+
/**
|
|
11867
|
+
* Returns a metadata object for class sap.ui.commons.Image.
|
|
11868
|
+
*/
|
|
11869
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11845
11870
|
/**
|
|
11846
11871
|
* Attaches event handler `fnFunction` to the {@link #event:press press} event of this `sap.ui.commons.Image`.
|
|
11847
11872
|
*
|
|
@@ -11898,27 +11923,6 @@ declare namespace sap {
|
|
|
11898
11923
|
*/
|
|
11899
11924
|
oListener?: object
|
|
11900
11925
|
): this;
|
|
11901
|
-
/**
|
|
11902
|
-
* Creates a new subclass of class sap.ui.commons.Image with name `sClassName` and enriches it with the
|
|
11903
|
-
* information contained in `oClassInfo`.
|
|
11904
|
-
*
|
|
11905
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11906
|
-
*/
|
|
11907
|
-
static extend<T extends Record<string, unknown>>(
|
|
11908
|
-
/**
|
|
11909
|
-
* Name of the class being created
|
|
11910
|
-
*/
|
|
11911
|
-
sClassName: string,
|
|
11912
|
-
/**
|
|
11913
|
-
* Object literal with information about the class
|
|
11914
|
-
*/
|
|
11915
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Image>,
|
|
11916
|
-
/**
|
|
11917
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11918
|
-
* used by this class
|
|
11919
|
-
*/
|
|
11920
|
-
FNMetaImpl?: Function
|
|
11921
|
-
): Function;
|
|
11922
11926
|
/**
|
|
11923
11927
|
* Fires event {@link #event:press press} to attached listeners.
|
|
11924
11928
|
*/
|
|
@@ -11953,10 +11957,6 @@ declare namespace sap {
|
|
|
11953
11957
|
* for width or height only, the overall size is maintained then, considering the aspect ratio.
|
|
11954
11958
|
*/
|
|
11955
11959
|
getHeight(): sap.ui.core.CSSSize;
|
|
11956
|
-
/**
|
|
11957
|
-
* Returns a metadata object for class sap.ui.commons.Image.
|
|
11958
|
-
*/
|
|
11959
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
11960
11960
|
/**
|
|
11961
11961
|
* Gets current value of property {@link #getSrc src}.
|
|
11962
11962
|
*
|
|
@@ -12100,6 +12100,31 @@ declare namespace sap {
|
|
|
12100
12100
|
mSettings?: sap.ui.commons.$ImageMapSettings
|
|
12101
12101
|
);
|
|
12102
12102
|
|
|
12103
|
+
/**
|
|
12104
|
+
* Creates a new subclass of class sap.ui.commons.ImageMap with name `sClassName` and enriches it with the
|
|
12105
|
+
* information contained in `oClassInfo`.
|
|
12106
|
+
*
|
|
12107
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12108
|
+
*/
|
|
12109
|
+
static extend<T extends Record<string, unknown>>(
|
|
12110
|
+
/**
|
|
12111
|
+
* Name of the class being created
|
|
12112
|
+
*/
|
|
12113
|
+
sClassName: string,
|
|
12114
|
+
/**
|
|
12115
|
+
* Object literal with information about the class
|
|
12116
|
+
*/
|
|
12117
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ImageMap>,
|
|
12118
|
+
/**
|
|
12119
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12120
|
+
* used by this class
|
|
12121
|
+
*/
|
|
12122
|
+
FNMetaImpl?: Function
|
|
12123
|
+
): Function;
|
|
12124
|
+
/**
|
|
12125
|
+
* Returns a metadata object for class sap.ui.commons.ImageMap.
|
|
12126
|
+
*/
|
|
12127
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12103
12128
|
/**
|
|
12104
12129
|
* Adds some area to the aggregation {@link #getAreas areas}.
|
|
12105
12130
|
*/
|
|
@@ -12180,27 +12205,6 @@ declare namespace sap {
|
|
|
12180
12205
|
*/
|
|
12181
12206
|
oListener?: object
|
|
12182
12207
|
): this;
|
|
12183
|
-
/**
|
|
12184
|
-
* Creates a new subclass of class sap.ui.commons.ImageMap with name `sClassName` and enriches it with the
|
|
12185
|
-
* information contained in `oClassInfo`.
|
|
12186
|
-
*
|
|
12187
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12188
|
-
*/
|
|
12189
|
-
static extend<T extends Record<string, unknown>>(
|
|
12190
|
-
/**
|
|
12191
|
-
* Name of the class being created
|
|
12192
|
-
*/
|
|
12193
|
-
sClassName: string,
|
|
12194
|
-
/**
|
|
12195
|
-
* Object literal with information about the class
|
|
12196
|
-
*/
|
|
12197
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ImageMap>,
|
|
12198
|
-
/**
|
|
12199
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12200
|
-
* used by this class
|
|
12201
|
-
*/
|
|
12202
|
-
FNMetaImpl?: Function
|
|
12203
|
-
): Function;
|
|
12204
12208
|
/**
|
|
12205
12209
|
* Fires event {@link #event:press press} to attached listeners.
|
|
12206
12210
|
*/
|
|
@@ -12221,10 +12225,6 @@ declare namespace sap {
|
|
|
12221
12225
|
* Area representing the reference to the target location
|
|
12222
12226
|
*/
|
|
12223
12227
|
getAreas(): sap.ui.commons.Area[];
|
|
12224
|
-
/**
|
|
12225
|
-
* Returns a metadata object for class sap.ui.commons.ImageMap.
|
|
12226
|
-
*/
|
|
12227
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12228
12228
|
/**
|
|
12229
12229
|
* Gets current value of property {@link #getName name}.
|
|
12230
12230
|
*
|
|
@@ -12320,9 +12320,34 @@ declare namespace sap {
|
|
|
12320
12320
|
/**
|
|
12321
12321
|
* initial settings for the new control
|
|
12322
12322
|
*/
|
|
12323
|
-
mSettings?: sap.ui.commons.$InPlaceEditSettings
|
|
12324
|
-
);
|
|
12325
|
-
|
|
12323
|
+
mSettings?: sap.ui.commons.$InPlaceEditSettings
|
|
12324
|
+
);
|
|
12325
|
+
|
|
12326
|
+
/**
|
|
12327
|
+
* Creates a new subclass of class sap.ui.commons.InPlaceEdit with name `sClassName` and enriches it with
|
|
12328
|
+
* the information contained in `oClassInfo`.
|
|
12329
|
+
*
|
|
12330
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12331
|
+
*/
|
|
12332
|
+
static extend<T extends Record<string, unknown>>(
|
|
12333
|
+
/**
|
|
12334
|
+
* Name of the class being created
|
|
12335
|
+
*/
|
|
12336
|
+
sClassName: string,
|
|
12337
|
+
/**
|
|
12338
|
+
* Object literal with information about the class
|
|
12339
|
+
*/
|
|
12340
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.InPlaceEdit>,
|
|
12341
|
+
/**
|
|
12342
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12343
|
+
* used by this class
|
|
12344
|
+
*/
|
|
12345
|
+
FNMetaImpl?: Function
|
|
12346
|
+
): Function;
|
|
12347
|
+
/**
|
|
12348
|
+
* Returns a metadata object for class sap.ui.commons.InPlaceEdit.
|
|
12349
|
+
*/
|
|
12350
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12326
12351
|
/**
|
|
12327
12352
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.commons.InPlaceEdit`.
|
|
12328
12353
|
*
|
|
@@ -12456,27 +12481,6 @@ declare namespace sap {
|
|
|
12456
12481
|
*/
|
|
12457
12482
|
oListener?: object
|
|
12458
12483
|
): this;
|
|
12459
|
-
/**
|
|
12460
|
-
* Creates a new subclass of class sap.ui.commons.InPlaceEdit with name `sClassName` and enriches it with
|
|
12461
|
-
* the information contained in `oClassInfo`.
|
|
12462
|
-
*
|
|
12463
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12464
|
-
*/
|
|
12465
|
-
static extend<T extends Record<string, unknown>>(
|
|
12466
|
-
/**
|
|
12467
|
-
* Name of the class being created
|
|
12468
|
-
*/
|
|
12469
|
-
sClassName: string,
|
|
12470
|
-
/**
|
|
12471
|
-
* Object literal with information about the class
|
|
12472
|
-
*/
|
|
12473
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.InPlaceEdit>,
|
|
12474
|
-
/**
|
|
12475
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12476
|
-
* used by this class
|
|
12477
|
-
*/
|
|
12478
|
-
FNMetaImpl?: Function
|
|
12479
|
-
): Function;
|
|
12480
12484
|
/**
|
|
12481
12485
|
* Fires event {@link #event:change change} to attached listeners.
|
|
12482
12486
|
*/
|
|
@@ -12511,7 +12515,7 @@ declare namespace sap {
|
|
|
12511
12515
|
* See:
|
|
12512
12516
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
12513
12517
|
*/
|
|
12514
|
-
getAccessibilityInfo():
|
|
12518
|
+
getAccessibilityInfo(): object;
|
|
12515
12519
|
/**
|
|
12516
12520
|
* Gets content of aggregation {@link #getContent content}.
|
|
12517
12521
|
*
|
|
@@ -12529,10 +12533,6 @@ declare namespace sap {
|
|
|
12529
12533
|
* Default value is `Standard`.
|
|
12530
12534
|
*/
|
|
12531
12535
|
getDesign(): sap.ui.commons.TextViewDesign;
|
|
12532
|
-
/**
|
|
12533
|
-
* Returns a metadata object for class sap.ui.commons.InPlaceEdit.
|
|
12534
|
-
*/
|
|
12535
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12536
12536
|
/**
|
|
12537
12537
|
* Returns the tooltip for this InPlaceEdit if any or an undefined value. The tooltip can either be a simple
|
|
12538
12538
|
* string or a subclass of {@link sap.ui.core.TooltipBase}.
|
|
@@ -12699,6 +12699,10 @@ declare namespace sap {
|
|
|
12699
12699
|
*/
|
|
12700
12700
|
FNMetaImpl?: Function
|
|
12701
12701
|
): Function;
|
|
12702
|
+
/**
|
|
12703
|
+
* Returns a metadata object for class sap.ui.commons.Label.
|
|
12704
|
+
*/
|
|
12705
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12702
12706
|
/**
|
|
12703
12707
|
* See:
|
|
12704
12708
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -12722,10 +12726,6 @@ declare namespace sap {
|
|
|
12722
12726
|
* ID of the element which is the current target of the association {@link #getLabelFor labelFor}, or `null`.
|
|
12723
12727
|
*/
|
|
12724
12728
|
getLabelFor(): sap.ui.core.ID;
|
|
12725
|
-
/**
|
|
12726
|
-
* Returns a metadata object for class sap.ui.commons.Label.
|
|
12727
|
-
*/
|
|
12728
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12729
12729
|
/**
|
|
12730
12730
|
* @SINCE 1.11.0
|
|
12731
12731
|
*
|
|
@@ -12987,6 +12987,31 @@ declare namespace sap {
|
|
|
12987
12987
|
mSettings?: sap.ui.commons.$LinkSettings
|
|
12988
12988
|
);
|
|
12989
12989
|
|
|
12990
|
+
/**
|
|
12991
|
+
* Creates a new subclass of class sap.ui.commons.Link with name `sClassName` and enriches it with the information
|
|
12992
|
+
* contained in `oClassInfo`.
|
|
12993
|
+
*
|
|
12994
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12995
|
+
*/
|
|
12996
|
+
static extend<T extends Record<string, unknown>>(
|
|
12997
|
+
/**
|
|
12998
|
+
* Name of the class being created
|
|
12999
|
+
*/
|
|
13000
|
+
sClassName: string,
|
|
13001
|
+
/**
|
|
13002
|
+
* Object literal with information about the class
|
|
13003
|
+
*/
|
|
13004
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Link>,
|
|
13005
|
+
/**
|
|
13006
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13007
|
+
* used by this class
|
|
13008
|
+
*/
|
|
13009
|
+
FNMetaImpl?: Function
|
|
13010
|
+
): Function;
|
|
13011
|
+
/**
|
|
13012
|
+
* Returns a metadata object for class sap.ui.commons.Link.
|
|
13013
|
+
*/
|
|
13014
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
12990
13015
|
/**
|
|
12991
13016
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
12992
13017
|
*/
|
|
@@ -13061,27 +13086,6 @@ declare namespace sap {
|
|
|
13061
13086
|
*/
|
|
13062
13087
|
oListener?: object
|
|
13063
13088
|
): this;
|
|
13064
|
-
/**
|
|
13065
|
-
* Creates a new subclass of class sap.ui.commons.Link with name `sClassName` and enriches it with the information
|
|
13066
|
-
* contained in `oClassInfo`.
|
|
13067
|
-
*
|
|
13068
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
13069
|
-
*/
|
|
13070
|
-
static extend<T extends Record<string, unknown>>(
|
|
13071
|
-
/**
|
|
13072
|
-
* Name of the class being created
|
|
13073
|
-
*/
|
|
13074
|
-
sClassName: string,
|
|
13075
|
-
/**
|
|
13076
|
-
* Object literal with information about the class
|
|
13077
|
-
*/
|
|
13078
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Link>,
|
|
13079
|
-
/**
|
|
13080
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13081
|
-
* used by this class
|
|
13082
|
-
*/
|
|
13083
|
-
FNMetaImpl?: Function
|
|
13084
|
-
): Function;
|
|
13085
13089
|
/**
|
|
13086
13090
|
* Fires event {@link #event:press press} to attached listeners.
|
|
13087
13091
|
*
|
|
@@ -13136,10 +13140,6 @@ declare namespace sap {
|
|
|
13136
13140
|
* not be set, but instead an event handler for the "press" event should be registered.
|
|
13137
13141
|
*/
|
|
13138
13142
|
getHref(): sap.ui.core.URI;
|
|
13139
|
-
/**
|
|
13140
|
-
* Returns a metadata object for class sap.ui.commons.Link.
|
|
13141
|
-
*/
|
|
13142
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13143
13143
|
/**
|
|
13144
13144
|
* Gets current value of property {@link #getTarget target}.
|
|
13145
13145
|
*
|
|
@@ -13317,6 +13317,31 @@ declare namespace sap {
|
|
|
13317
13317
|
mSettings?: sap.ui.commons.$ListBoxSettings
|
|
13318
13318
|
);
|
|
13319
13319
|
|
|
13320
|
+
/**
|
|
13321
|
+
* Creates a new subclass of class sap.ui.commons.ListBox with name `sClassName` and enriches it with the
|
|
13322
|
+
* information contained in `oClassInfo`.
|
|
13323
|
+
*
|
|
13324
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
13325
|
+
*/
|
|
13326
|
+
static extend<T extends Record<string, unknown>>(
|
|
13327
|
+
/**
|
|
13328
|
+
* Name of the class being created
|
|
13329
|
+
*/
|
|
13330
|
+
sClassName: string,
|
|
13331
|
+
/**
|
|
13332
|
+
* Object literal with information about the class
|
|
13333
|
+
*/
|
|
13334
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ListBox>,
|
|
13335
|
+
/**
|
|
13336
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13337
|
+
* used by this class
|
|
13338
|
+
*/
|
|
13339
|
+
FNMetaImpl?: Function
|
|
13340
|
+
): Function;
|
|
13341
|
+
/**
|
|
13342
|
+
* Returns a metadata object for class sap.ui.commons.ListBox.
|
|
13343
|
+
*/
|
|
13344
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13320
13345
|
/**
|
|
13321
13346
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
13322
13347
|
*/
|
|
@@ -13427,27 +13452,6 @@ declare namespace sap {
|
|
|
13427
13452
|
*/
|
|
13428
13453
|
oListener?: object
|
|
13429
13454
|
): this;
|
|
13430
|
-
/**
|
|
13431
|
-
* Creates a new subclass of class sap.ui.commons.ListBox with name `sClassName` and enriches it with the
|
|
13432
|
-
* information contained in `oClassInfo`.
|
|
13433
|
-
*
|
|
13434
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
13435
|
-
*/
|
|
13436
|
-
static extend<T extends Record<string, unknown>>(
|
|
13437
|
-
/**
|
|
13438
|
-
* Name of the class being created
|
|
13439
|
-
*/
|
|
13440
|
-
sClassName: string,
|
|
13441
|
-
/**
|
|
13442
|
-
* Object literal with information about the class
|
|
13443
|
-
*/
|
|
13444
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ListBox>,
|
|
13445
|
-
/**
|
|
13446
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13447
|
-
* used by this class
|
|
13448
|
-
*/
|
|
13449
|
-
FNMetaImpl?: Function
|
|
13450
|
-
): Function;
|
|
13451
13455
|
/**
|
|
13452
13456
|
* Fires event {@link #event:select select} to attached listeners.
|
|
13453
13457
|
*/
|
|
@@ -13553,10 +13557,6 @@ declare namespace sap {
|
|
|
13553
13557
|
* Determines the maximum width of the ListBox. If not set, there is no maximum width.
|
|
13554
13558
|
*/
|
|
13555
13559
|
getMaxWidth(): sap.ui.core.CSSSize;
|
|
13556
|
-
/**
|
|
13557
|
-
* Returns a metadata object for class sap.ui.commons.ListBox.
|
|
13558
|
-
*/
|
|
13559
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13560
13560
|
/**
|
|
13561
13561
|
* Gets current value of property {@link #getMinWidth minWidth}.
|
|
13562
13562
|
*
|
|
@@ -14054,19 +14054,6 @@ declare namespace sap {
|
|
|
14054
14054
|
mSettings?: sap.ui.commons.$MenuBarSettings
|
|
14055
14055
|
);
|
|
14056
14056
|
|
|
14057
|
-
/**
|
|
14058
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
14059
|
-
*/
|
|
14060
|
-
addItem(
|
|
14061
|
-
/**
|
|
14062
|
-
* The item to add; if empty, nothing is inserted
|
|
14063
|
-
*/
|
|
14064
|
-
oItem: sap.ui.unified.MenuItem
|
|
14065
|
-
): this;
|
|
14066
|
-
/**
|
|
14067
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
14068
|
-
*/
|
|
14069
|
-
destroyItems(): this;
|
|
14070
14057
|
/**
|
|
14071
14058
|
* Creates a new subclass of class sap.ui.commons.MenuBar with name `sClassName` and enriches it with the
|
|
14072
14059
|
* information contained in `oClassInfo`.
|
|
@@ -14088,6 +14075,23 @@ declare namespace sap {
|
|
|
14088
14075
|
*/
|
|
14089
14076
|
FNMetaImpl?: Function
|
|
14090
14077
|
): Function;
|
|
14078
|
+
/**
|
|
14079
|
+
* Returns a metadata object for class sap.ui.commons.MenuBar.
|
|
14080
|
+
*/
|
|
14081
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14082
|
+
/**
|
|
14083
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
14084
|
+
*/
|
|
14085
|
+
addItem(
|
|
14086
|
+
/**
|
|
14087
|
+
* The item to add; if empty, nothing is inserted
|
|
14088
|
+
*/
|
|
14089
|
+
oItem: sap.ui.unified.MenuItem
|
|
14090
|
+
): this;
|
|
14091
|
+
/**
|
|
14092
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
14093
|
+
*/
|
|
14094
|
+
destroyItems(): this;
|
|
14091
14095
|
/**
|
|
14092
14096
|
* Gets current value of property {@link #getDesign design}.
|
|
14093
14097
|
*
|
|
@@ -14110,10 +14114,6 @@ declare namespace sap {
|
|
|
14110
14114
|
* Aggregation of menu items.
|
|
14111
14115
|
*/
|
|
14112
14116
|
getItems(): sap.ui.unified.MenuItem[];
|
|
14113
|
-
/**
|
|
14114
|
-
* Returns a metadata object for class sap.ui.commons.MenuBar.
|
|
14115
|
-
*/
|
|
14116
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14117
14117
|
/**
|
|
14118
14118
|
* Gets current value of property {@link #getWidth width}.
|
|
14119
14119
|
*
|
|
@@ -14246,6 +14246,31 @@ declare namespace sap {
|
|
|
14246
14246
|
mSettings?: sap.ui.commons.$MenuButtonSettings
|
|
14247
14247
|
);
|
|
14248
14248
|
|
|
14249
|
+
/**
|
|
14250
|
+
* Creates a new subclass of class sap.ui.commons.MenuButton with name `sClassName` and enriches it with
|
|
14251
|
+
* the information contained in `oClassInfo`.
|
|
14252
|
+
*
|
|
14253
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.Button.extend}.
|
|
14254
|
+
*/
|
|
14255
|
+
static extend<T extends Record<string, unknown>>(
|
|
14256
|
+
/**
|
|
14257
|
+
* Name of the class being created
|
|
14258
|
+
*/
|
|
14259
|
+
sClassName: string,
|
|
14260
|
+
/**
|
|
14261
|
+
* Object literal with information about the class
|
|
14262
|
+
*/
|
|
14263
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.MenuButton>,
|
|
14264
|
+
/**
|
|
14265
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14266
|
+
* used by this class
|
|
14267
|
+
*/
|
|
14268
|
+
FNMetaImpl?: Function
|
|
14269
|
+
): Function;
|
|
14270
|
+
/**
|
|
14271
|
+
* Returns a metadata object for class sap.ui.commons.MenuButton.
|
|
14272
|
+
*/
|
|
14273
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14249
14274
|
/**
|
|
14250
14275
|
* Attaches event handler `fnFunction` to the {@link #event:itemSelected itemSelected} event of this `sap.ui.commons.MenuButton`.
|
|
14251
14276
|
*
|
|
@@ -14368,27 +14393,6 @@ declare namespace sap {
|
|
|
14368
14393
|
*/
|
|
14369
14394
|
oListener?: object
|
|
14370
14395
|
): this;
|
|
14371
|
-
/**
|
|
14372
|
-
* Creates a new subclass of class sap.ui.commons.MenuButton with name `sClassName` and enriches it with
|
|
14373
|
-
* the information contained in `oClassInfo`.
|
|
14374
|
-
*
|
|
14375
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.Button.extend}.
|
|
14376
|
-
*/
|
|
14377
|
-
static extend<T extends Record<string, unknown>>(
|
|
14378
|
-
/**
|
|
14379
|
-
* Name of the class being created
|
|
14380
|
-
*/
|
|
14381
|
-
sClassName: string,
|
|
14382
|
-
/**
|
|
14383
|
-
* Object literal with information about the class
|
|
14384
|
-
*/
|
|
14385
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.MenuButton>,
|
|
14386
|
-
/**
|
|
14387
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14388
|
-
* used by this class
|
|
14389
|
-
*/
|
|
14390
|
-
FNMetaImpl?: Function
|
|
14391
|
-
): Function;
|
|
14392
14396
|
/**
|
|
14393
14397
|
* Fires event {@link #event:itemSelected itemSelected} to attached listeners.
|
|
14394
14398
|
*/
|
|
@@ -14438,10 +14442,6 @@ declare namespace sap {
|
|
|
14438
14442
|
* Menu that shall be opened when the button is clicked
|
|
14439
14443
|
*/
|
|
14440
14444
|
getMenu(): sap.ui.unified.Menu;
|
|
14441
|
-
/**
|
|
14442
|
-
* Returns a metadata object for class sap.ui.commons.MenuButton.
|
|
14443
|
-
*/
|
|
14444
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14445
14445
|
/**
|
|
14446
14446
|
* Sets a new value for property {@link #getDockButton dockButton}.
|
|
14447
14447
|
*
|
|
@@ -14691,20 +14691,6 @@ declare namespace sap {
|
|
|
14691
14691
|
mSettings?: sap.ui.commons.$MessageSettings
|
|
14692
14692
|
);
|
|
14693
14693
|
|
|
14694
|
-
/**
|
|
14695
|
-
* Registers a callback function to be invoked if long text Details are to be made available.
|
|
14696
|
-
*
|
|
14697
|
-
* This callback function will be supplied the corresponding Message "id", and should return the (simple)
|
|
14698
|
-
* HTML string to be displayed within the Message Details Dialog.
|
|
14699
|
-
*
|
|
14700
|
-
* E.g.: myMessage.bindDetails(getDetails); function getDetails(sId) {... return htmlString;}
|
|
14701
|
-
*/
|
|
14702
|
-
bindDetails(
|
|
14703
|
-
/**
|
|
14704
|
-
* the callback function
|
|
14705
|
-
*/
|
|
14706
|
-
fnCallBack: Function
|
|
14707
|
-
): void;
|
|
14708
14694
|
/**
|
|
14709
14695
|
* Creates a new subclass of class sap.ui.commons.Message with name `sClassName` and enriches it with the
|
|
14710
14696
|
* information contained in `oClassInfo`.
|
|
@@ -14721,11 +14707,29 @@ declare namespace sap {
|
|
|
14721
14707
|
*/
|
|
14722
14708
|
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Message>,
|
|
14723
14709
|
/**
|
|
14724
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14725
|
-
* used by this class
|
|
14710
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14711
|
+
* used by this class
|
|
14712
|
+
*/
|
|
14713
|
+
FNMetaImpl?: Function
|
|
14714
|
+
): Function;
|
|
14715
|
+
/**
|
|
14716
|
+
* Returns a metadata object for class sap.ui.commons.Message.
|
|
14717
|
+
*/
|
|
14718
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14719
|
+
/**
|
|
14720
|
+
* Registers a callback function to be invoked if long text Details are to be made available.
|
|
14721
|
+
*
|
|
14722
|
+
* This callback function will be supplied the corresponding Message "id", and should return the (simple)
|
|
14723
|
+
* HTML string to be displayed within the Message Details Dialog.
|
|
14724
|
+
*
|
|
14725
|
+
* E.g.: myMessage.bindDetails(getDetails); function getDetails(sId) {... return htmlString;}
|
|
14726
|
+
*/
|
|
14727
|
+
bindDetails(
|
|
14728
|
+
/**
|
|
14729
|
+
* the callback function
|
|
14726
14730
|
*/
|
|
14727
|
-
|
|
14728
|
-
):
|
|
14731
|
+
fnCallBack: Function
|
|
14732
|
+
): void;
|
|
14729
14733
|
/**
|
|
14730
14734
|
* Gets current value of property {@link #getAssociatedElementId associatedElementId}.
|
|
14731
14735
|
*
|
|
@@ -14738,10 +14742,6 @@ declare namespace sap {
|
|
|
14738
14742
|
* Internal attribute, used to force the display of the "short" or the "long" text only.
|
|
14739
14743
|
*/
|
|
14740
14744
|
getDesign(): string;
|
|
14741
|
-
/**
|
|
14742
|
-
* Returns a metadata object for class sap.ui.commons.Message.
|
|
14743
|
-
*/
|
|
14744
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14745
14745
|
/**
|
|
14746
14746
|
* Gets current value of property {@link #getText text}.
|
|
14747
14747
|
*
|
|
@@ -14844,6 +14844,31 @@ declare namespace sap {
|
|
|
14844
14844
|
mSettings?: sap.ui.commons.$MessageBarSettings
|
|
14845
14845
|
);
|
|
14846
14846
|
|
|
14847
|
+
/**
|
|
14848
|
+
* Creates a new subclass of class sap.ui.commons.MessageBar with name `sClassName` and enriches it with
|
|
14849
|
+
* the information contained in `oClassInfo`.
|
|
14850
|
+
*
|
|
14851
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14852
|
+
*/
|
|
14853
|
+
static extend<T extends Record<string, unknown>>(
|
|
14854
|
+
/**
|
|
14855
|
+
* Name of the class being created
|
|
14856
|
+
*/
|
|
14857
|
+
sClassName: string,
|
|
14858
|
+
/**
|
|
14859
|
+
* Object literal with information about the class
|
|
14860
|
+
*/
|
|
14861
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.MessageBar>,
|
|
14862
|
+
/**
|
|
14863
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14864
|
+
* used by this class
|
|
14865
|
+
*/
|
|
14866
|
+
FNMetaImpl?: Function
|
|
14867
|
+
): Function;
|
|
14868
|
+
/**
|
|
14869
|
+
* Returns a metadata object for class sap.ui.commons.MessageBar.
|
|
14870
|
+
*/
|
|
14871
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14847
14872
|
/**
|
|
14848
14873
|
* Adds/updates a supplied list of messages. The MessageBar will appear if at least one message exists.
|
|
14849
14874
|
*/
|
|
@@ -14866,27 +14891,6 @@ declare namespace sap {
|
|
|
14866
14891
|
*/
|
|
14867
14892
|
aIds: string[]
|
|
14868
14893
|
): void;
|
|
14869
|
-
/**
|
|
14870
|
-
* Creates a new subclass of class sap.ui.commons.MessageBar with name `sClassName` and enriches it with
|
|
14871
|
-
* the information contained in `oClassInfo`.
|
|
14872
|
-
*
|
|
14873
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14874
|
-
*/
|
|
14875
|
-
static extend<T extends Record<string, unknown>>(
|
|
14876
|
-
/**
|
|
14877
|
-
* Name of the class being created
|
|
14878
|
-
*/
|
|
14879
|
-
sClassName: string,
|
|
14880
|
-
/**
|
|
14881
|
-
* Object literal with information about the class
|
|
14882
|
-
*/
|
|
14883
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.MessageBar>,
|
|
14884
|
-
/**
|
|
14885
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14886
|
-
* used by this class
|
|
14887
|
-
*/
|
|
14888
|
-
FNMetaImpl?: Function
|
|
14889
|
-
): Function;
|
|
14890
14894
|
/**
|
|
14891
14895
|
* Gets current value of property {@link #getAnchorID anchorID}.
|
|
14892
14896
|
*
|
|
@@ -14924,10 +14928,6 @@ declare namespace sap {
|
|
|
14924
14928
|
* Default value is `3`.
|
|
14925
14929
|
*/
|
|
14926
14930
|
getMaxToasted(): int;
|
|
14927
|
-
/**
|
|
14928
|
-
* Returns a metadata object for class sap.ui.commons.MessageBar.
|
|
14929
|
-
*/
|
|
14930
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
14931
14931
|
/**
|
|
14932
14932
|
* Gets current value of property {@link #getVisible visible}.
|
|
14933
14933
|
*
|
|
@@ -15075,6 +15075,10 @@ declare namespace sap {
|
|
|
15075
15075
|
*/
|
|
15076
15076
|
FNMetaImpl?: Function
|
|
15077
15077
|
): Function;
|
|
15078
|
+
/**
|
|
15079
|
+
* Returns a metadata object for class sap.ui.commons.MessageList.
|
|
15080
|
+
*/
|
|
15081
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15078
15082
|
/**
|
|
15079
15083
|
* Gets current value of property {@link #getAnchorId anchorId}.
|
|
15080
15084
|
*
|
|
@@ -15089,10 +15093,6 @@ declare namespace sap {
|
|
|
15089
15093
|
* Default value is `'7'`.
|
|
15090
15094
|
*/
|
|
15091
15095
|
getMaxListed(): string;
|
|
15092
|
-
/**
|
|
15093
|
-
* Returns a metadata object for class sap.ui.commons.MessageList.
|
|
15094
|
-
*/
|
|
15095
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15096
15096
|
/**
|
|
15097
15097
|
* Gets current value of property {@link #getVisible visible}.
|
|
15098
15098
|
*
|
|
@@ -15190,6 +15190,31 @@ declare namespace sap {
|
|
|
15190
15190
|
mSettings?: sap.ui.commons.$MessageToastSettings
|
|
15191
15191
|
);
|
|
15192
15192
|
|
|
15193
|
+
/**
|
|
15194
|
+
* Creates a new subclass of class sap.ui.commons.MessageToast with name `sClassName` and enriches it with
|
|
15195
|
+
* the information contained in `oClassInfo`.
|
|
15196
|
+
*
|
|
15197
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15198
|
+
*/
|
|
15199
|
+
static extend<T extends Record<string, unknown>>(
|
|
15200
|
+
/**
|
|
15201
|
+
* Name of the class being created
|
|
15202
|
+
*/
|
|
15203
|
+
sClassName: string,
|
|
15204
|
+
/**
|
|
15205
|
+
* Object literal with information about the class
|
|
15206
|
+
*/
|
|
15207
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.MessageToast>,
|
|
15208
|
+
/**
|
|
15209
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15210
|
+
* used by this class
|
|
15211
|
+
*/
|
|
15212
|
+
FNMetaImpl?: Function
|
|
15213
|
+
): Function;
|
|
15214
|
+
/**
|
|
15215
|
+
* Returns a metadata object for class sap.ui.commons.MessageToast.
|
|
15216
|
+
*/
|
|
15217
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15193
15218
|
/**
|
|
15194
15219
|
* Attaches event handler `fnFunction` to the {@link #event:next next} event of this `sap.ui.commons.MessageToast`.
|
|
15195
15220
|
*
|
|
@@ -15246,27 +15271,6 @@ declare namespace sap {
|
|
|
15246
15271
|
*/
|
|
15247
15272
|
oListener?: object
|
|
15248
15273
|
): this;
|
|
15249
|
-
/**
|
|
15250
|
-
* Creates a new subclass of class sap.ui.commons.MessageToast with name `sClassName` and enriches it with
|
|
15251
|
-
* the information contained in `oClassInfo`.
|
|
15252
|
-
*
|
|
15253
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15254
|
-
*/
|
|
15255
|
-
static extend<T extends Record<string, unknown>>(
|
|
15256
|
-
/**
|
|
15257
|
-
* Name of the class being created
|
|
15258
|
-
*/
|
|
15259
|
-
sClassName: string,
|
|
15260
|
-
/**
|
|
15261
|
-
* Object literal with information about the class
|
|
15262
|
-
*/
|
|
15263
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.MessageToast>,
|
|
15264
|
-
/**
|
|
15265
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15266
|
-
* used by this class
|
|
15267
|
-
*/
|
|
15268
|
-
FNMetaImpl?: Function
|
|
15269
|
-
): Function;
|
|
15270
15274
|
/**
|
|
15271
15275
|
* Fires event {@link #event:next next} to attached listeners.
|
|
15272
15276
|
*/
|
|
@@ -15282,10 +15286,6 @@ declare namespace sap {
|
|
|
15282
15286
|
* ID of the anchor on top of which the MessageToast is to render.
|
|
15283
15287
|
*/
|
|
15284
15288
|
getAnchorId(): string;
|
|
15285
|
-
/**
|
|
15286
|
-
* Returns a metadata object for class sap.ui.commons.MessageToast.
|
|
15287
|
-
*/
|
|
15288
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15289
15289
|
/**
|
|
15290
15290
|
* Returns the idle state of the control. Returns true if no message is being toasted.
|
|
15291
15291
|
*/
|
|
@@ -15357,6 +15357,31 @@ declare namespace sap {
|
|
|
15357
15357
|
mSettings?: sap.ui.commons.$PaginatorSettings
|
|
15358
15358
|
);
|
|
15359
15359
|
|
|
15360
|
+
/**
|
|
15361
|
+
* Creates a new subclass of class sap.ui.commons.Paginator with name `sClassName` and enriches it with
|
|
15362
|
+
* the information contained in `oClassInfo`.
|
|
15363
|
+
*
|
|
15364
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15365
|
+
*/
|
|
15366
|
+
static extend<T extends Record<string, unknown>>(
|
|
15367
|
+
/**
|
|
15368
|
+
* Name of the class being created
|
|
15369
|
+
*/
|
|
15370
|
+
sClassName: string,
|
|
15371
|
+
/**
|
|
15372
|
+
* Object literal with information about the class
|
|
15373
|
+
*/
|
|
15374
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Paginator>,
|
|
15375
|
+
/**
|
|
15376
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15377
|
+
* used by this class
|
|
15378
|
+
*/
|
|
15379
|
+
FNMetaImpl?: Function
|
|
15380
|
+
): Function;
|
|
15381
|
+
/**
|
|
15382
|
+
* Returns a metadata object for class sap.ui.commons.Paginator.
|
|
15383
|
+
*/
|
|
15384
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15360
15385
|
/**
|
|
15361
15386
|
* Attaches event handler `fnFunction` to the {@link #event:page page} event of this `sap.ui.commons.Paginator`.
|
|
15362
15387
|
*
|
|
@@ -15413,27 +15438,6 @@ declare namespace sap {
|
|
|
15413
15438
|
*/
|
|
15414
15439
|
oListener?: object
|
|
15415
15440
|
): this;
|
|
15416
|
-
/**
|
|
15417
|
-
* Creates a new subclass of class sap.ui.commons.Paginator with name `sClassName` and enriches it with
|
|
15418
|
-
* the information contained in `oClassInfo`.
|
|
15419
|
-
*
|
|
15420
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15421
|
-
*/
|
|
15422
|
-
static extend<T extends Record<string, unknown>>(
|
|
15423
|
-
/**
|
|
15424
|
-
* Name of the class being created
|
|
15425
|
-
*/
|
|
15426
|
-
sClassName: string,
|
|
15427
|
-
/**
|
|
15428
|
-
* Object literal with information about the class
|
|
15429
|
-
*/
|
|
15430
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Paginator>,
|
|
15431
|
-
/**
|
|
15432
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15433
|
-
* used by this class
|
|
15434
|
-
*/
|
|
15435
|
-
FNMetaImpl?: Function
|
|
15436
|
-
): Function;
|
|
15437
15441
|
/**
|
|
15438
15442
|
* Fires event {@link #event:page page} to attached listeners.
|
|
15439
15443
|
*/
|
|
@@ -15468,10 +15472,6 @@ declare namespace sap {
|
|
|
15468
15472
|
* Default value is `1`.
|
|
15469
15473
|
*/
|
|
15470
15474
|
getCurrentPage(): int;
|
|
15471
|
-
/**
|
|
15472
|
-
* Returns a metadata object for class sap.ui.commons.Paginator.
|
|
15473
|
-
*/
|
|
15474
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15475
15475
|
/**
|
|
15476
15476
|
* Gets current value of property {@link #getNumberOfPages numberOfPages}.
|
|
15477
15477
|
*
|
|
@@ -15545,6 +15545,31 @@ declare namespace sap {
|
|
|
15545
15545
|
mSettings?: sap.ui.commons.$PanelSettings
|
|
15546
15546
|
);
|
|
15547
15547
|
|
|
15548
|
+
/**
|
|
15549
|
+
* Creates a new subclass of class sap.ui.commons.Panel with name `sClassName` and enriches it with the
|
|
15550
|
+
* information contained in `oClassInfo`.
|
|
15551
|
+
*
|
|
15552
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15553
|
+
*/
|
|
15554
|
+
static extend<T extends Record<string, unknown>>(
|
|
15555
|
+
/**
|
|
15556
|
+
* Name of the class being created
|
|
15557
|
+
*/
|
|
15558
|
+
sClassName: string,
|
|
15559
|
+
/**
|
|
15560
|
+
* Object literal with information about the class
|
|
15561
|
+
*/
|
|
15562
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Panel>,
|
|
15563
|
+
/**
|
|
15564
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15565
|
+
* used by this class
|
|
15566
|
+
*/
|
|
15567
|
+
FNMetaImpl?: Function
|
|
15568
|
+
): Function;
|
|
15569
|
+
/**
|
|
15570
|
+
* Returns a metadata object for class sap.ui.commons.Panel.
|
|
15571
|
+
*/
|
|
15572
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15548
15573
|
/**
|
|
15549
15574
|
* Adds some button to the aggregation {@link #getButtons buttons}.
|
|
15550
15575
|
*/
|
|
@@ -15575,27 +15600,6 @@ declare namespace sap {
|
|
|
15575
15600
|
* Destroys the title in the aggregation {@link #getTitle title}.
|
|
15576
15601
|
*/
|
|
15577
15602
|
destroyTitle(): this;
|
|
15578
|
-
/**
|
|
15579
|
-
* Creates a new subclass of class sap.ui.commons.Panel with name `sClassName` and enriches it with the
|
|
15580
|
-
* information contained in `oClassInfo`.
|
|
15581
|
-
*
|
|
15582
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
15583
|
-
*/
|
|
15584
|
-
static extend<T extends Record<string, unknown>>(
|
|
15585
|
-
/**
|
|
15586
|
-
* Name of the class being created
|
|
15587
|
-
*/
|
|
15588
|
-
sClassName: string,
|
|
15589
|
-
/**
|
|
15590
|
-
* Object literal with information about the class
|
|
15591
|
-
*/
|
|
15592
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Panel>,
|
|
15593
|
-
/**
|
|
15594
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15595
|
-
* used by this class
|
|
15596
|
-
*/
|
|
15597
|
-
FNMetaImpl?: Function
|
|
15598
|
-
): Function;
|
|
15599
15603
|
/**
|
|
15600
15604
|
* Gets current value of property {@link #getApplyContentPadding applyContentPadding}.
|
|
15601
15605
|
*
|
|
@@ -15662,10 +15666,6 @@ declare namespace sap {
|
|
|
15662
15666
|
* adjusted to the content. Dimension allows to explicitly specify the height.
|
|
15663
15667
|
*/
|
|
15664
15668
|
getHeight(): sap.ui.core.CSSSize;
|
|
15665
|
-
/**
|
|
15666
|
-
* Returns a metadata object for class sap.ui.commons.Panel.
|
|
15667
|
-
*/
|
|
15668
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
15669
15669
|
/**
|
|
15670
15670
|
* Returns the scroll position of the panel in pixels from the left. Returns 0 if not rendered yet. Also
|
|
15671
15671
|
* internally updates the control property.
|
|
@@ -16053,6 +16053,10 @@ declare namespace sap {
|
|
|
16053
16053
|
*/
|
|
16054
16054
|
FNMetaImpl?: Function
|
|
16055
16055
|
): Function;
|
|
16056
|
+
/**
|
|
16057
|
+
* Returns a metadata object for class sap.ui.commons.ProgressIndicator.
|
|
16058
|
+
*/
|
|
16059
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16056
16060
|
/**
|
|
16057
16061
|
* See:
|
|
16058
16062
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -16085,10 +16089,6 @@ declare namespace sap {
|
|
|
16085
16089
|
* Default value is `true`.
|
|
16086
16090
|
*/
|
|
16087
16091
|
getEnabled(): boolean;
|
|
16088
|
-
/**
|
|
16089
|
-
* Returns a metadata object for class sap.ui.commons.ProgressIndicator.
|
|
16090
|
-
*/
|
|
16091
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16092
16092
|
/**
|
|
16093
16093
|
* Gets current value of property {@link #getPercentValue percentValue}.
|
|
16094
16094
|
*
|
|
@@ -16247,6 +16247,31 @@ declare namespace sap {
|
|
|
16247
16247
|
mSettings?: sap.ui.commons.$RadioButtonSettings
|
|
16248
16248
|
);
|
|
16249
16249
|
|
|
16250
|
+
/**
|
|
16251
|
+
* Creates a new subclass of class sap.ui.commons.RadioButton with name `sClassName` and enriches it with
|
|
16252
|
+
* the information contained in `oClassInfo`.
|
|
16253
|
+
*
|
|
16254
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16255
|
+
*/
|
|
16256
|
+
static extend<T extends Record<string, unknown>>(
|
|
16257
|
+
/**
|
|
16258
|
+
* Name of the class being created
|
|
16259
|
+
*/
|
|
16260
|
+
sClassName: string,
|
|
16261
|
+
/**
|
|
16262
|
+
* Object literal with information about the class
|
|
16263
|
+
*/
|
|
16264
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RadioButton>,
|
|
16265
|
+
/**
|
|
16266
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16267
|
+
* used by this class
|
|
16268
|
+
*/
|
|
16269
|
+
FNMetaImpl?: Function
|
|
16270
|
+
): Function;
|
|
16271
|
+
/**
|
|
16272
|
+
* Returns a metadata object for class sap.ui.commons.RadioButton.
|
|
16273
|
+
*/
|
|
16274
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16250
16275
|
/**
|
|
16251
16276
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
16252
16277
|
*/
|
|
@@ -16321,27 +16346,6 @@ declare namespace sap {
|
|
|
16321
16346
|
*/
|
|
16322
16347
|
oListener?: object
|
|
16323
16348
|
): this;
|
|
16324
|
-
/**
|
|
16325
|
-
* Creates a new subclass of class sap.ui.commons.RadioButton with name `sClassName` and enriches it with
|
|
16326
|
-
* the information contained in `oClassInfo`.
|
|
16327
|
-
*
|
|
16328
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16329
|
-
*/
|
|
16330
|
-
static extend<T extends Record<string, unknown>>(
|
|
16331
|
-
/**
|
|
16332
|
-
* Name of the class being created
|
|
16333
|
-
*/
|
|
16334
|
-
sClassName: string,
|
|
16335
|
-
/**
|
|
16336
|
-
* Object literal with information about the class
|
|
16337
|
-
*/
|
|
16338
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RadioButton>,
|
|
16339
|
-
/**
|
|
16340
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16341
|
-
* used by this class
|
|
16342
|
-
*/
|
|
16343
|
-
FNMetaImpl?: Function
|
|
16344
|
-
): Function;
|
|
16345
16349
|
/**
|
|
16346
16350
|
* Fires event {@link #event:select select} to attached listeners.
|
|
16347
16351
|
*/
|
|
@@ -16393,10 +16397,6 @@ declare namespace sap {
|
|
|
16393
16397
|
* Can be used for subsequent actions.
|
|
16394
16398
|
*/
|
|
16395
16399
|
getKey(): string;
|
|
16396
|
-
/**
|
|
16397
|
-
* Returns a metadata object for class sap.ui.commons.RadioButton.
|
|
16398
|
-
*/
|
|
16399
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16400
16400
|
/**
|
|
16401
16401
|
* Gets current value of property {@link #getSelected selected}.
|
|
16402
16402
|
*
|
|
@@ -16638,6 +16638,31 @@ declare namespace sap {
|
|
|
16638
16638
|
mSettings?: sap.ui.commons.$RadioButtonGroupSettings
|
|
16639
16639
|
);
|
|
16640
16640
|
|
|
16641
|
+
/**
|
|
16642
|
+
* Creates a new subclass of class sap.ui.commons.RadioButtonGroup with name `sClassName` and enriches it
|
|
16643
|
+
* with the information contained in `oClassInfo`.
|
|
16644
|
+
*
|
|
16645
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16646
|
+
*/
|
|
16647
|
+
static extend<T extends Record<string, unknown>>(
|
|
16648
|
+
/**
|
|
16649
|
+
* Name of the class being created
|
|
16650
|
+
*/
|
|
16651
|
+
sClassName: string,
|
|
16652
|
+
/**
|
|
16653
|
+
* Object literal with information about the class
|
|
16654
|
+
*/
|
|
16655
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RadioButtonGroup>,
|
|
16656
|
+
/**
|
|
16657
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16658
|
+
* used by this class
|
|
16659
|
+
*/
|
|
16660
|
+
FNMetaImpl?: Function
|
|
16661
|
+
): Function;
|
|
16662
|
+
/**
|
|
16663
|
+
* Returns a metadata object for class sap.ui.commons.RadioButtonGroup.
|
|
16664
|
+
*/
|
|
16665
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16641
16666
|
/**
|
|
16642
16667
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
16643
16668
|
*/
|
|
@@ -16742,27 +16767,6 @@ declare namespace sap {
|
|
|
16742
16767
|
*/
|
|
16743
16768
|
oListener?: object
|
|
16744
16769
|
): this;
|
|
16745
|
-
/**
|
|
16746
|
-
* Creates a new subclass of class sap.ui.commons.RadioButtonGroup with name `sClassName` and enriches it
|
|
16747
|
-
* with the information contained in `oClassInfo`.
|
|
16748
|
-
*
|
|
16749
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16750
|
-
*/
|
|
16751
|
-
static extend<T extends Record<string, unknown>>(
|
|
16752
|
-
/**
|
|
16753
|
-
* Name of the class being created
|
|
16754
|
-
*/
|
|
16755
|
-
sClassName: string,
|
|
16756
|
-
/**
|
|
16757
|
-
* Object literal with information about the class
|
|
16758
|
-
*/
|
|
16759
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RadioButtonGroup>,
|
|
16760
|
-
/**
|
|
16761
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16762
|
-
* used by this class
|
|
16763
|
-
*/
|
|
16764
|
-
FNMetaImpl?: Function
|
|
16765
|
-
): Function;
|
|
16766
16770
|
/**
|
|
16767
16771
|
* Fires event {@link #event:select select} to attached listeners.
|
|
16768
16772
|
*/
|
|
@@ -16823,10 +16827,6 @@ declare namespace sap {
|
|
|
16823
16827
|
* The RadioButtons of this RadioButtonGroup.
|
|
16824
16828
|
*/
|
|
16825
16829
|
getItems(): sap.ui.core.Item[];
|
|
16826
|
-
/**
|
|
16827
|
-
* Returns a metadata object for class sap.ui.commons.RadioButtonGroup.
|
|
16828
|
-
*/
|
|
16829
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
16830
16830
|
/**
|
|
16831
16831
|
* Gets current value of property {@link #getSelectedIndex selectedIndex}.
|
|
16832
16832
|
*
|
|
@@ -17166,6 +17166,31 @@ declare namespace sap {
|
|
|
17166
17166
|
mSettings?: sap.ui.commons.$RatingIndicatorSettings
|
|
17167
17167
|
);
|
|
17168
17168
|
|
|
17169
|
+
/**
|
|
17170
|
+
* Creates a new subclass of class sap.ui.commons.RatingIndicator with name `sClassName` and enriches it
|
|
17171
|
+
* with the information contained in `oClassInfo`.
|
|
17172
|
+
*
|
|
17173
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17174
|
+
*/
|
|
17175
|
+
static extend<T extends Record<string, unknown>>(
|
|
17176
|
+
/**
|
|
17177
|
+
* Name of the class being created
|
|
17178
|
+
*/
|
|
17179
|
+
sClassName: string,
|
|
17180
|
+
/**
|
|
17181
|
+
* Object literal with information about the class
|
|
17182
|
+
*/
|
|
17183
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RatingIndicator>,
|
|
17184
|
+
/**
|
|
17185
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17186
|
+
* used by this class
|
|
17187
|
+
*/
|
|
17188
|
+
FNMetaImpl?: Function
|
|
17189
|
+
): Function;
|
|
17190
|
+
/**
|
|
17191
|
+
* Returns a metadata object for class sap.ui.commons.RatingIndicator.
|
|
17192
|
+
*/
|
|
17193
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17169
17194
|
/**
|
|
17170
17195
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
17171
17196
|
*/
|
|
@@ -17252,27 +17277,6 @@ declare namespace sap {
|
|
|
17252
17277
|
*/
|
|
17253
17278
|
oListener?: object
|
|
17254
17279
|
): this;
|
|
17255
|
-
/**
|
|
17256
|
-
* Creates a new subclass of class sap.ui.commons.RatingIndicator with name `sClassName` and enriches it
|
|
17257
|
-
* with the information contained in `oClassInfo`.
|
|
17258
|
-
*
|
|
17259
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17260
|
-
*/
|
|
17261
|
-
static extend<T extends Record<string, unknown>>(
|
|
17262
|
-
/**
|
|
17263
|
-
* Name of the class being created
|
|
17264
|
-
*/
|
|
17265
|
-
sClassName: string,
|
|
17266
|
-
/**
|
|
17267
|
-
* Object literal with information about the class
|
|
17268
|
-
*/
|
|
17269
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RatingIndicator>,
|
|
17270
|
-
/**
|
|
17271
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17272
|
-
* used by this class
|
|
17273
|
-
*/
|
|
17274
|
-
FNMetaImpl?: Function
|
|
17275
|
-
): Function;
|
|
17276
17280
|
/**
|
|
17277
17281
|
* Fires event {@link #event:change change} to attached listeners.
|
|
17278
17282
|
*/
|
|
@@ -17350,10 +17354,6 @@ declare namespace sap {
|
|
|
17350
17354
|
* Default value is `5`.
|
|
17351
17355
|
*/
|
|
17352
17356
|
getMaxValue(): int;
|
|
17353
|
-
/**
|
|
17354
|
-
* Returns a metadata object for class sap.ui.commons.RatingIndicator.
|
|
17355
|
-
*/
|
|
17356
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17357
17357
|
/**
|
|
17358
17358
|
* Gets current value of property {@link #getValue value}.
|
|
17359
17359
|
*
|
|
@@ -17558,6 +17558,31 @@ declare namespace sap {
|
|
|
17558
17558
|
mSettings?: sap.ui.commons.$ResponsiveContainerSettings
|
|
17559
17559
|
);
|
|
17560
17560
|
|
|
17561
|
+
/**
|
|
17562
|
+
* Creates a new subclass of class sap.ui.commons.ResponsiveContainer with name `sClassName` and enriches
|
|
17563
|
+
* it with the information contained in `oClassInfo`.
|
|
17564
|
+
*
|
|
17565
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17566
|
+
*/
|
|
17567
|
+
static extend<T extends Record<string, unknown>>(
|
|
17568
|
+
/**
|
|
17569
|
+
* Name of the class being created
|
|
17570
|
+
*/
|
|
17571
|
+
sClassName: string,
|
|
17572
|
+
/**
|
|
17573
|
+
* Object literal with information about the class
|
|
17574
|
+
*/
|
|
17575
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ResponsiveContainer>,
|
|
17576
|
+
/**
|
|
17577
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17578
|
+
* used by this class
|
|
17579
|
+
*/
|
|
17580
|
+
FNMetaImpl?: Function
|
|
17581
|
+
): Function;
|
|
17582
|
+
/**
|
|
17583
|
+
* Returns a metadata object for class sap.ui.commons.ResponsiveContainer.
|
|
17584
|
+
*/
|
|
17585
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17561
17586
|
/**
|
|
17562
17587
|
* Adds some range to the aggregation {@link #getRanges ranges}.
|
|
17563
17588
|
*/
|
|
@@ -17629,27 +17654,6 @@ declare namespace sap {
|
|
|
17629
17654
|
*/
|
|
17630
17655
|
oListener?: object
|
|
17631
17656
|
): this;
|
|
17632
|
-
/**
|
|
17633
|
-
* Creates a new subclass of class sap.ui.commons.ResponsiveContainer with name `sClassName` and enriches
|
|
17634
|
-
* it with the information contained in `oClassInfo`.
|
|
17635
|
-
*
|
|
17636
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17637
|
-
*/
|
|
17638
|
-
static extend<T extends Record<string, unknown>>(
|
|
17639
|
-
/**
|
|
17640
|
-
* Name of the class being created
|
|
17641
|
-
*/
|
|
17642
|
-
sClassName: string,
|
|
17643
|
-
/**
|
|
17644
|
-
* Object literal with information about the class
|
|
17645
|
-
*/
|
|
17646
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ResponsiveContainer>,
|
|
17647
|
-
/**
|
|
17648
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17649
|
-
* used by this class
|
|
17650
|
-
*/
|
|
17651
|
-
FNMetaImpl?: Function
|
|
17652
|
-
): Function;
|
|
17653
17657
|
/**
|
|
17654
17658
|
* Fires event {@link #event:rangeSwitch rangeSwitch} to attached listeners.
|
|
17655
17659
|
*/
|
|
@@ -17677,10 +17681,6 @@ declare namespace sap {
|
|
|
17677
17681
|
* Default value is `'100%'`.
|
|
17678
17682
|
*/
|
|
17679
17683
|
getHeight(): sap.ui.core.CSSSize;
|
|
17680
|
-
/**
|
|
17681
|
-
* Returns a metadata object for class sap.ui.commons.ResponsiveContainer.
|
|
17682
|
-
*/
|
|
17683
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17684
17684
|
/**
|
|
17685
17685
|
* Gets content of aggregation {@link #getRanges ranges}.
|
|
17686
17686
|
*
|
|
@@ -17837,6 +17837,10 @@ declare namespace sap {
|
|
|
17837
17837
|
*/
|
|
17838
17838
|
FNMetaImpl?: Function
|
|
17839
17839
|
): Function;
|
|
17840
|
+
/**
|
|
17841
|
+
* Returns a metadata object for class sap.ui.commons.ResponsiveContainerRange.
|
|
17842
|
+
*/
|
|
17843
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17840
17844
|
/**
|
|
17841
17845
|
* ID of the element which is the current target of the association {@link #getContent content}, or `null`.
|
|
17842
17846
|
*/
|
|
@@ -17857,10 +17861,6 @@ declare namespace sap {
|
|
|
17857
17861
|
* Default value is `empty string`.
|
|
17858
17862
|
*/
|
|
17859
17863
|
getKey(): string;
|
|
17860
|
-
/**
|
|
17861
|
-
* Returns a metadata object for class sap.ui.commons.ResponsiveContainerRange.
|
|
17862
|
-
*/
|
|
17863
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17864
17864
|
/**
|
|
17865
17865
|
* Gets current value of property {@link #getWidth width}.
|
|
17866
17866
|
*
|
|
@@ -17984,6 +17984,10 @@ declare namespace sap {
|
|
|
17984
17984
|
*/
|
|
17985
17985
|
FNMetaImpl?: Function
|
|
17986
17986
|
): Function;
|
|
17987
|
+
/**
|
|
17988
|
+
* Returns a metadata object for class sap.ui.commons.RichTooltip.
|
|
17989
|
+
*/
|
|
17990
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
17987
17991
|
/**
|
|
17988
17992
|
* @SINCE 1.11.1
|
|
17989
17993
|
*
|
|
@@ -17998,10 +18002,6 @@ declare namespace sap {
|
|
|
17998
18002
|
* If RichTooltip contains an image, this property is used to define the source path.
|
|
17999
18003
|
*/
|
|
18000
18004
|
getImageSrc(): sap.ui.core.URI;
|
|
18001
|
-
/**
|
|
18002
|
-
* Returns a metadata object for class sap.ui.commons.RichTooltip.
|
|
18003
|
-
*/
|
|
18004
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18005
18005
|
/**
|
|
18006
18006
|
* Gets current value of property {@link #getTitle title}.
|
|
18007
18007
|
*
|
|
@@ -18107,6 +18107,31 @@ declare namespace sap {
|
|
|
18107
18107
|
mSettings?: sap.ui.commons.$RoadMapSettings
|
|
18108
18108
|
);
|
|
18109
18109
|
|
|
18110
|
+
/**
|
|
18111
|
+
* Creates a new subclass of class sap.ui.commons.RoadMap with name `sClassName` and enriches it with the
|
|
18112
|
+
* information contained in `oClassInfo`.
|
|
18113
|
+
*
|
|
18114
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18115
|
+
*/
|
|
18116
|
+
static extend<T extends Record<string, unknown>>(
|
|
18117
|
+
/**
|
|
18118
|
+
* Name of the class being created
|
|
18119
|
+
*/
|
|
18120
|
+
sClassName: string,
|
|
18121
|
+
/**
|
|
18122
|
+
* Object literal with information about the class
|
|
18123
|
+
*/
|
|
18124
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RoadMap>,
|
|
18125
|
+
/**
|
|
18126
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18127
|
+
* used by this class
|
|
18128
|
+
*/
|
|
18129
|
+
FNMetaImpl?: Function
|
|
18130
|
+
): Function;
|
|
18131
|
+
/**
|
|
18132
|
+
* Returns a metadata object for class sap.ui.commons.RoadMap.
|
|
18133
|
+
*/
|
|
18134
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18110
18135
|
/**
|
|
18111
18136
|
* Adds some step to the aggregation {@link #getSteps steps}.
|
|
18112
18137
|
*/
|
|
@@ -18232,27 +18257,6 @@ declare namespace sap {
|
|
|
18232
18257
|
*/
|
|
18233
18258
|
oListener?: object
|
|
18234
18259
|
): this;
|
|
18235
|
-
/**
|
|
18236
|
-
* Creates a new subclass of class sap.ui.commons.RoadMap with name `sClassName` and enriches it with the
|
|
18237
|
-
* information contained in `oClassInfo`.
|
|
18238
|
-
*
|
|
18239
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18240
|
-
*/
|
|
18241
|
-
static extend<T extends Record<string, unknown>>(
|
|
18242
|
-
/**
|
|
18243
|
-
* Name of the class being created
|
|
18244
|
-
*/
|
|
18245
|
-
sClassName: string,
|
|
18246
|
-
/**
|
|
18247
|
-
* Object literal with information about the class
|
|
18248
|
-
*/
|
|
18249
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RoadMap>,
|
|
18250
|
-
/**
|
|
18251
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18252
|
-
* used by this class
|
|
18253
|
-
*/
|
|
18254
|
-
FNMetaImpl?: Function
|
|
18255
|
-
): Function;
|
|
18256
18260
|
/**
|
|
18257
18261
|
* Fires event {@link #event:stepExpanded stepExpanded} to attached listeners.
|
|
18258
18262
|
*/
|
|
@@ -18287,10 +18291,6 @@ declare namespace sap {
|
|
|
18287
18291
|
* ID of the first step to be displayed
|
|
18288
18292
|
*/
|
|
18289
18293
|
getFirstVisibleStep(): string;
|
|
18290
|
-
/**
|
|
18291
|
-
* Returns a metadata object for class sap.ui.commons.RoadMap.
|
|
18292
|
-
*/
|
|
18293
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18294
18294
|
/**
|
|
18295
18295
|
* Gets current value of property {@link #getNumberOfVisibleSteps numberOfVisibleSteps}.
|
|
18296
18296
|
*
|
|
@@ -18442,32 +18442,13 @@ declare namespace sap {
|
|
|
18442
18442
|
/**
|
|
18443
18443
|
* id for the new control, generated automatically if no id is given
|
|
18444
18444
|
*/
|
|
18445
|
-
sId?: string,
|
|
18446
|
-
/**
|
|
18447
|
-
* initial settings for the new control
|
|
18448
|
-
*/
|
|
18449
|
-
mSettings?: sap.ui.commons.$RoadMapStepSettings
|
|
18450
|
-
);
|
|
18451
|
-
|
|
18452
|
-
/**
|
|
18453
|
-
* @deprecated (since 1.10.5) - Sub steps will not be supported in future. This feature might be removed
|
|
18454
|
-
* in one of the next releases.
|
|
18455
|
-
*
|
|
18456
|
-
* Adds some subStep to the aggregation {@link #getSubSteps subSteps}.
|
|
18457
|
-
*/
|
|
18458
|
-
addSubStep(
|
|
18445
|
+
sId?: string,
|
|
18459
18446
|
/**
|
|
18460
|
-
*
|
|
18447
|
+
* initial settings for the new control
|
|
18461
18448
|
*/
|
|
18462
|
-
|
|
18463
|
-
)
|
|
18464
|
-
|
|
18465
|
-
* @deprecated (since 1.10.5) - Sub steps will not be supported in future. This feature might be removed
|
|
18466
|
-
* in one of the next releases.
|
|
18467
|
-
*
|
|
18468
|
-
* Destroys all the subSteps in the aggregation {@link #getSubSteps subSteps}.
|
|
18469
|
-
*/
|
|
18470
|
-
destroySubSteps(): this;
|
|
18449
|
+
mSettings?: sap.ui.commons.$RoadMapStepSettings
|
|
18450
|
+
);
|
|
18451
|
+
|
|
18471
18452
|
/**
|
|
18472
18453
|
* Creates a new subclass of class sap.ui.commons.RoadMapStep with name `sClassName` and enriches it with
|
|
18473
18454
|
* the information contained in `oClassInfo`.
|
|
@@ -18489,6 +18470,29 @@ declare namespace sap {
|
|
|
18489
18470
|
*/
|
|
18490
18471
|
FNMetaImpl?: Function
|
|
18491
18472
|
): Function;
|
|
18473
|
+
/**
|
|
18474
|
+
* Returns a metadata object for class sap.ui.commons.RoadMapStep.
|
|
18475
|
+
*/
|
|
18476
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18477
|
+
/**
|
|
18478
|
+
* @deprecated (since 1.10.5) - Sub steps will not be supported in future. This feature might be removed
|
|
18479
|
+
* in one of the next releases.
|
|
18480
|
+
*
|
|
18481
|
+
* Adds some subStep to the aggregation {@link #getSubSteps subSteps}.
|
|
18482
|
+
*/
|
|
18483
|
+
addSubStep(
|
|
18484
|
+
/**
|
|
18485
|
+
* The subStep to add; if empty, nothing is inserted
|
|
18486
|
+
*/
|
|
18487
|
+
oSubStep: sap.ui.commons.RoadMapStep
|
|
18488
|
+
): this;
|
|
18489
|
+
/**
|
|
18490
|
+
* @deprecated (since 1.10.5) - Sub steps will not be supported in future. This feature might be removed
|
|
18491
|
+
* in one of the next releases.
|
|
18492
|
+
*
|
|
18493
|
+
* Destroys all the subSteps in the aggregation {@link #getSubSteps subSteps}.
|
|
18494
|
+
*/
|
|
18495
|
+
destroySubSteps(): this;
|
|
18492
18496
|
/**
|
|
18493
18497
|
* Gets current value of property {@link #getEnabled enabled}.
|
|
18494
18498
|
*
|
|
@@ -18514,10 +18518,6 @@ declare namespace sap {
|
|
|
18514
18518
|
* Label of the step
|
|
18515
18519
|
*/
|
|
18516
18520
|
getLabel(): string;
|
|
18517
|
-
/**
|
|
18518
|
-
* Returns a metadata object for class sap.ui.commons.RoadMapStep.
|
|
18519
|
-
*/
|
|
18520
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18521
18521
|
/**
|
|
18522
18522
|
* @deprecated (since 1.10.5) - Sub steps will not be supported in future. This feature might be removed
|
|
18523
18523
|
* in one of the next releases.
|
|
@@ -18688,6 +18688,31 @@ declare namespace sap {
|
|
|
18688
18688
|
mSettings?: sap.ui.commons.$RowRepeaterSettings
|
|
18689
18689
|
);
|
|
18690
18690
|
|
|
18691
|
+
/**
|
|
18692
|
+
* Creates a new subclass of class sap.ui.commons.RowRepeater with name `sClassName` and enriches it with
|
|
18693
|
+
* the information contained in `oClassInfo`.
|
|
18694
|
+
*
|
|
18695
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18696
|
+
*/
|
|
18697
|
+
static extend<T extends Record<string, unknown>>(
|
|
18698
|
+
/**
|
|
18699
|
+
* Name of the class being created
|
|
18700
|
+
*/
|
|
18701
|
+
sClassName: string,
|
|
18702
|
+
/**
|
|
18703
|
+
* Object literal with information about the class
|
|
18704
|
+
*/
|
|
18705
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RowRepeater>,
|
|
18706
|
+
/**
|
|
18707
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18708
|
+
* used by this class
|
|
18709
|
+
*/
|
|
18710
|
+
FNMetaImpl?: Function
|
|
18711
|
+
): Function;
|
|
18712
|
+
/**
|
|
18713
|
+
* Returns a metadata object for class sap.ui.commons.RowRepeater.
|
|
18714
|
+
*/
|
|
18715
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
18691
18716
|
/**
|
|
18692
18717
|
* Adds some filter to the aggregation {@link #getFilters filters}.
|
|
18693
18718
|
*/
|
|
@@ -18980,27 +19005,6 @@ declare namespace sap {
|
|
|
18980
19005
|
*/
|
|
18981
19006
|
oListener?: object
|
|
18982
19007
|
): this;
|
|
18983
|
-
/**
|
|
18984
|
-
* Creates a new subclass of class sap.ui.commons.RowRepeater with name `sClassName` and enriches it with
|
|
18985
|
-
* the information contained in `oClassInfo`.
|
|
18986
|
-
*
|
|
18987
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
18988
|
-
*/
|
|
18989
|
-
static extend<T extends Record<string, unknown>>(
|
|
18990
|
-
/**
|
|
18991
|
-
* Name of the class being created
|
|
18992
|
-
*/
|
|
18993
|
-
sClassName: string,
|
|
18994
|
-
/**
|
|
18995
|
-
* Object literal with information about the class
|
|
18996
|
-
*/
|
|
18997
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.RowRepeater>,
|
|
18998
|
-
/**
|
|
18999
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19000
|
-
* used by this class
|
|
19001
|
-
*/
|
|
19002
|
-
FNMetaImpl?: Function
|
|
19003
|
-
): Function;
|
|
19004
19008
|
/**
|
|
19005
19009
|
* Fires event {@link #event:filter filter} to attached listeners.
|
|
19006
19010
|
*/
|
|
@@ -19100,10 +19104,6 @@ declare namespace sap {
|
|
|
19100
19104
|
* Default value is `empty string`.
|
|
19101
19105
|
*/
|
|
19102
19106
|
getFixedRowHeight(): sap.ui.core.CSSSize;
|
|
19103
|
-
/**
|
|
19104
|
-
* Returns a metadata object for class sap.ui.commons.RowRepeater.
|
|
19105
|
-
*/
|
|
19106
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19107
19107
|
/**
|
|
19108
19108
|
* Gets content of aggregation {@link #getNoData noData}.
|
|
19109
19109
|
*
|
|
@@ -19473,6 +19473,10 @@ declare namespace sap {
|
|
|
19473
19473
|
*/
|
|
19474
19474
|
FNMetaImpl?: Function
|
|
19475
19475
|
): Function;
|
|
19476
|
+
/**
|
|
19477
|
+
* Returns a metadata object for class sap.ui.commons.RowRepeaterFilter.
|
|
19478
|
+
*/
|
|
19479
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19476
19480
|
/**
|
|
19477
19481
|
* Gets current value of property {@link #getFilters filters}.
|
|
19478
19482
|
*
|
|
@@ -19485,10 +19489,6 @@ declare namespace sap {
|
|
|
19485
19489
|
* The filter icon if needed for display.
|
|
19486
19490
|
*/
|
|
19487
19491
|
getIcon(): string;
|
|
19488
|
-
/**
|
|
19489
|
-
* Returns a metadata object for class sap.ui.commons.RowRepeaterFilter.
|
|
19490
|
-
*/
|
|
19491
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19492
19492
|
/**
|
|
19493
19493
|
* Gets current value of property {@link #getText text}.
|
|
19494
19494
|
*
|
|
@@ -19594,16 +19594,16 @@ declare namespace sap {
|
|
|
19594
19594
|
*/
|
|
19595
19595
|
FNMetaImpl?: Function
|
|
19596
19596
|
): Function;
|
|
19597
|
+
/**
|
|
19598
|
+
* Returns a metadata object for class sap.ui.commons.RowRepeaterSorter.
|
|
19599
|
+
*/
|
|
19600
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19597
19601
|
/**
|
|
19598
19602
|
* Gets current value of property {@link #getIcon icon}.
|
|
19599
19603
|
*
|
|
19600
19604
|
* The sorter icon if needed for display.
|
|
19601
19605
|
*/
|
|
19602
19606
|
getIcon(): string;
|
|
19603
|
-
/**
|
|
19604
|
-
* Returns a metadata object for class sap.ui.commons.RowRepeaterSorter.
|
|
19605
|
-
*/
|
|
19606
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19607
19607
|
/**
|
|
19608
19608
|
* Gets current value of property {@link #getSorter sorter}.
|
|
19609
19609
|
*
|
|
@@ -19696,6 +19696,31 @@ declare namespace sap {
|
|
|
19696
19696
|
mSettings?: sap.ui.commons.$SearchFieldSettings
|
|
19697
19697
|
);
|
|
19698
19698
|
|
|
19699
|
+
/**
|
|
19700
|
+
* Creates a new subclass of class sap.ui.commons.SearchField with name `sClassName` and enriches it with
|
|
19701
|
+
* the information contained in `oClassInfo`.
|
|
19702
|
+
*
|
|
19703
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
19704
|
+
*/
|
|
19705
|
+
static extend<T extends Record<string, unknown>>(
|
|
19706
|
+
/**
|
|
19707
|
+
* Name of the class being created
|
|
19708
|
+
*/
|
|
19709
|
+
sClassName: string,
|
|
19710
|
+
/**
|
|
19711
|
+
* Object literal with information about the class
|
|
19712
|
+
*/
|
|
19713
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.SearchField>,
|
|
19714
|
+
/**
|
|
19715
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19716
|
+
* used by this class
|
|
19717
|
+
*/
|
|
19718
|
+
FNMetaImpl?: Function
|
|
19719
|
+
): Function;
|
|
19720
|
+
/**
|
|
19721
|
+
* Returns a metadata object for class sap.ui.commons.SearchField.
|
|
19722
|
+
*/
|
|
19723
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19699
19724
|
/**
|
|
19700
19725
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
19701
19726
|
*/
|
|
@@ -19834,27 +19859,6 @@ declare namespace sap {
|
|
|
19834
19859
|
*/
|
|
19835
19860
|
oListener?: object
|
|
19836
19861
|
): this;
|
|
19837
|
-
/**
|
|
19838
|
-
* Creates a new subclass of class sap.ui.commons.SearchField with name `sClassName` and enriches it with
|
|
19839
|
-
* the information contained in `oClassInfo`.
|
|
19840
|
-
*
|
|
19841
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
19842
|
-
*/
|
|
19843
|
-
static extend<T extends Record<string, unknown>>(
|
|
19844
|
-
/**
|
|
19845
|
-
* Name of the class being created
|
|
19846
|
-
*/
|
|
19847
|
-
sClassName: string,
|
|
19848
|
-
/**
|
|
19849
|
-
* Object literal with information about the class
|
|
19850
|
-
*/
|
|
19851
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.SearchField>,
|
|
19852
|
-
/**
|
|
19853
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19854
|
-
* used by this class
|
|
19855
|
-
*/
|
|
19856
|
-
FNMetaImpl?: Function
|
|
19857
|
-
): Function;
|
|
19858
19862
|
/**
|
|
19859
19863
|
* Fires event {@link #event:search search} to attached listeners.
|
|
19860
19864
|
*/
|
|
@@ -19970,10 +19974,6 @@ declare namespace sap {
|
|
|
19970
19974
|
* Default value is `10`.
|
|
19971
19975
|
*/
|
|
19972
19976
|
getMaxSuggestionItems(): int;
|
|
19973
|
-
/**
|
|
19974
|
-
* Returns a metadata object for class sap.ui.commons.SearchField.
|
|
19975
|
-
*/
|
|
19976
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
19977
19977
|
/**
|
|
19978
19978
|
* @SINCE 1.32
|
|
19979
19979
|
*
|
|
@@ -20496,6 +20496,31 @@ declare namespace sap {
|
|
|
20496
20496
|
mSettings?: sap.ui.commons.$SegmentedButtonSettings
|
|
20497
20497
|
);
|
|
20498
20498
|
|
|
20499
|
+
/**
|
|
20500
|
+
* Creates a new subclass of class sap.ui.commons.SegmentedButton with name `sClassName` and enriches it
|
|
20501
|
+
* with the information contained in `oClassInfo`.
|
|
20502
|
+
*
|
|
20503
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
20504
|
+
*/
|
|
20505
|
+
static extend<T extends Record<string, unknown>>(
|
|
20506
|
+
/**
|
|
20507
|
+
* Name of the class being created
|
|
20508
|
+
*/
|
|
20509
|
+
sClassName: string,
|
|
20510
|
+
/**
|
|
20511
|
+
* Object literal with information about the class
|
|
20512
|
+
*/
|
|
20513
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.SegmentedButton>,
|
|
20514
|
+
/**
|
|
20515
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20516
|
+
* used by this class
|
|
20517
|
+
*/
|
|
20518
|
+
FNMetaImpl?: Function
|
|
20519
|
+
): Function;
|
|
20520
|
+
/**
|
|
20521
|
+
* Returns a metadata object for class sap.ui.commons.SegmentedButton.
|
|
20522
|
+
*/
|
|
20523
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
20499
20524
|
/**
|
|
20500
20525
|
* Rerendering of the Buttons
|
|
20501
20526
|
*/
|
|
@@ -20569,27 +20594,6 @@ declare namespace sap {
|
|
|
20569
20594
|
*/
|
|
20570
20595
|
oListener?: object
|
|
20571
20596
|
): this;
|
|
20572
|
-
/**
|
|
20573
|
-
* Creates a new subclass of class sap.ui.commons.SegmentedButton with name `sClassName` and enriches it
|
|
20574
|
-
* with the information contained in `oClassInfo`.
|
|
20575
|
-
*
|
|
20576
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
20577
|
-
*/
|
|
20578
|
-
static extend<T extends Record<string, unknown>>(
|
|
20579
|
-
/**
|
|
20580
|
-
* Name of the class being created
|
|
20581
|
-
*/
|
|
20582
|
-
sClassName: string,
|
|
20583
|
-
/**
|
|
20584
|
-
* Object literal with information about the class
|
|
20585
|
-
*/
|
|
20586
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.SegmentedButton>,
|
|
20587
|
-
/**
|
|
20588
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20589
|
-
* used by this class
|
|
20590
|
-
*/
|
|
20591
|
-
FNMetaImpl?: Function
|
|
20592
|
-
): Function;
|
|
20593
20597
|
/**
|
|
20594
20598
|
* Fires event {@link #event:select select} to attached listeners.
|
|
20595
20599
|
*/
|
|
@@ -20618,10 +20622,6 @@ declare namespace sap {
|
|
|
20618
20622
|
* Default value is `true`.
|
|
20619
20623
|
*/
|
|
20620
20624
|
getEnabled(): boolean;
|
|
20621
|
-
/**
|
|
20622
|
-
* Returns a metadata object for class sap.ui.commons.SegmentedButton.
|
|
20623
|
-
*/
|
|
20624
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
20625
20625
|
/**
|
|
20626
20626
|
* ID of the element which is the current target of the association {@link #getSelectedButton selectedButton},
|
|
20627
20627
|
* or `null`.
|
|
@@ -20734,6 +20734,31 @@ declare namespace sap {
|
|
|
20734
20734
|
mSettings?: sap.ui.commons.$SliderSettings
|
|
20735
20735
|
);
|
|
20736
20736
|
|
|
20737
|
+
/**
|
|
20738
|
+
* Creates a new subclass of class sap.ui.commons.Slider with name `sClassName` and enriches it with the
|
|
20739
|
+
* information contained in `oClassInfo`.
|
|
20740
|
+
*
|
|
20741
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
20742
|
+
*/
|
|
20743
|
+
static extend<T extends Record<string, unknown>>(
|
|
20744
|
+
/**
|
|
20745
|
+
* Name of the class being created
|
|
20746
|
+
*/
|
|
20747
|
+
sClassName: string,
|
|
20748
|
+
/**
|
|
20749
|
+
* Object literal with information about the class
|
|
20750
|
+
*/
|
|
20751
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Slider>,
|
|
20752
|
+
/**
|
|
20753
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20754
|
+
* used by this class
|
|
20755
|
+
*/
|
|
20756
|
+
FNMetaImpl?: Function
|
|
20757
|
+
): Function;
|
|
20758
|
+
/**
|
|
20759
|
+
* Returns a metadata object for class sap.ui.commons.Slider.
|
|
20760
|
+
*/
|
|
20761
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
20737
20762
|
/**
|
|
20738
20763
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
20739
20764
|
*/
|
|
@@ -20864,29 +20889,8 @@ declare namespace sap {
|
|
|
20864
20889
|
/**
|
|
20865
20890
|
* Context object on which the given function had to be called
|
|
20866
20891
|
*/
|
|
20867
|
-
oListener?: object
|
|
20868
|
-
): this;
|
|
20869
|
-
/**
|
|
20870
|
-
* Creates a new subclass of class sap.ui.commons.Slider with name `sClassName` and enriches it with the
|
|
20871
|
-
* information contained in `oClassInfo`.
|
|
20872
|
-
*
|
|
20873
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
20874
|
-
*/
|
|
20875
|
-
static extend<T extends Record<string, unknown>>(
|
|
20876
|
-
/**
|
|
20877
|
-
* Name of the class being created
|
|
20878
|
-
*/
|
|
20879
|
-
sClassName: string,
|
|
20880
|
-
/**
|
|
20881
|
-
* Object literal with information about the class
|
|
20882
|
-
*/
|
|
20883
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Slider>,
|
|
20884
|
-
/**
|
|
20885
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20886
|
-
* used by this class
|
|
20887
|
-
*/
|
|
20888
|
-
FNMetaImpl?: Function
|
|
20889
|
-
): Function;
|
|
20892
|
+
oListener?: object
|
|
20893
|
+
): this;
|
|
20890
20894
|
/**
|
|
20891
20895
|
* Fires event {@link #event:change change} to attached listeners.
|
|
20892
20896
|
*/
|
|
@@ -20969,10 +20973,6 @@ declare namespace sap {
|
|
|
20969
20973
|
* Default value is `100`.
|
|
20970
20974
|
*/
|
|
20971
20975
|
getMax(): float;
|
|
20972
|
-
/**
|
|
20973
|
-
* Returns a metadata object for class sap.ui.commons.Slider.
|
|
20974
|
-
*/
|
|
20975
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
20976
20976
|
/**
|
|
20977
20977
|
* Gets current value of property {@link #getMin min}.
|
|
20978
20978
|
*
|
|
@@ -21287,6 +21287,31 @@ declare namespace sap {
|
|
|
21287
21287
|
mSettings?: sap.ui.commons.$SplitterSettings
|
|
21288
21288
|
);
|
|
21289
21289
|
|
|
21290
|
+
/**
|
|
21291
|
+
* Creates a new subclass of class sap.ui.commons.Splitter with name `sClassName` and enriches it with the
|
|
21292
|
+
* information contained in `oClassInfo`.
|
|
21293
|
+
*
|
|
21294
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
21295
|
+
*/
|
|
21296
|
+
static extend<T extends Record<string, unknown>>(
|
|
21297
|
+
/**
|
|
21298
|
+
* Name of the class being created
|
|
21299
|
+
*/
|
|
21300
|
+
sClassName: string,
|
|
21301
|
+
/**
|
|
21302
|
+
* Object literal with information about the class
|
|
21303
|
+
*/
|
|
21304
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Splitter>,
|
|
21305
|
+
/**
|
|
21306
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21307
|
+
* used by this class
|
|
21308
|
+
*/
|
|
21309
|
+
FNMetaImpl?: Function
|
|
21310
|
+
): Function;
|
|
21311
|
+
/**
|
|
21312
|
+
* Returns a metadata object for class sap.ui.commons.Splitter.
|
|
21313
|
+
*/
|
|
21314
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
21290
21315
|
/**
|
|
21291
21316
|
* Adds some firstPaneContent to the aggregation {@link #getFirstPaneContent firstPaneContent}.
|
|
21292
21317
|
*/
|
|
@@ -21313,27 +21338,6 @@ declare namespace sap {
|
|
|
21313
21338
|
* Destroys all the secondPaneContent in the aggregation {@link #getSecondPaneContent secondPaneContent}.
|
|
21314
21339
|
*/
|
|
21315
21340
|
destroySecondPaneContent(): this;
|
|
21316
|
-
/**
|
|
21317
|
-
* Creates a new subclass of class sap.ui.commons.Splitter with name `sClassName` and enriches it with the
|
|
21318
|
-
* information contained in `oClassInfo`.
|
|
21319
|
-
*
|
|
21320
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
21321
|
-
*/
|
|
21322
|
-
static extend<T extends Record<string, unknown>>(
|
|
21323
|
-
/**
|
|
21324
|
-
* Name of the class being created
|
|
21325
|
-
*/
|
|
21326
|
-
sClassName: string,
|
|
21327
|
-
/**
|
|
21328
|
-
* Object literal with information about the class
|
|
21329
|
-
*/
|
|
21330
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Splitter>,
|
|
21331
|
-
/**
|
|
21332
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21333
|
-
* used by this class
|
|
21334
|
-
*/
|
|
21335
|
-
FNMetaImpl?: Function
|
|
21336
|
-
): Function;
|
|
21337
21341
|
/**
|
|
21338
21342
|
* Gets content of aggregation {@link #getFirstPaneContent firstPaneContent}.
|
|
21339
21343
|
*
|
|
@@ -21349,10 +21353,6 @@ declare namespace sap {
|
|
|
21349
21353
|
* Default value is `'100%'`.
|
|
21350
21354
|
*/
|
|
21351
21355
|
getHeight(): sap.ui.commons.SplitterSize;
|
|
21352
|
-
/**
|
|
21353
|
-
* Returns a metadata object for class sap.ui.commons.Splitter.
|
|
21354
|
-
*/
|
|
21355
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
21356
21356
|
/**
|
|
21357
21357
|
* Gets current value of property {@link #getMinSizeFirstPane minSizeFirstPane}.
|
|
21358
21358
|
*
|
|
@@ -21679,6 +21679,10 @@ declare namespace sap {
|
|
|
21679
21679
|
*/
|
|
21680
21680
|
FNMetaImpl?: Function
|
|
21681
21681
|
): Function;
|
|
21682
|
+
/**
|
|
21683
|
+
* Returns a metadata object for class sap.ui.commons.Tab.
|
|
21684
|
+
*/
|
|
21685
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
21682
21686
|
/**
|
|
21683
21687
|
* Gets current value of property {@link #getClosable closable}.
|
|
21684
21688
|
*
|
|
@@ -21695,10 +21699,6 @@ declare namespace sap {
|
|
|
21695
21699
|
* Default value is `None`.
|
|
21696
21700
|
*/
|
|
21697
21701
|
getHorizontalScrolling(): sap.ui.core.Scrolling;
|
|
21698
|
-
/**
|
|
21699
|
-
* Returns a metadata object for class sap.ui.commons.Tab.
|
|
21700
|
-
*/
|
|
21701
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
21702
21702
|
/**
|
|
21703
21703
|
* @deprecated (since 0.17.0) - This property is not used. To identify the selected tab in a TabStrip selectedIndex
|
|
21704
21704
|
* is used.
|
|
@@ -21820,6 +21820,31 @@ declare namespace sap {
|
|
|
21820
21820
|
mSettings?: sap.ui.commons.$TabStripSettings
|
|
21821
21821
|
);
|
|
21822
21822
|
|
|
21823
|
+
/**
|
|
21824
|
+
* Creates a new subclass of class sap.ui.commons.TabStrip with name `sClassName` and enriches it with the
|
|
21825
|
+
* information contained in `oClassInfo`.
|
|
21826
|
+
*
|
|
21827
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
21828
|
+
*/
|
|
21829
|
+
static extend<T extends Record<string, unknown>>(
|
|
21830
|
+
/**
|
|
21831
|
+
* Name of the class being created
|
|
21832
|
+
*/
|
|
21833
|
+
sClassName: string,
|
|
21834
|
+
/**
|
|
21835
|
+
* Object literal with information about the class
|
|
21836
|
+
*/
|
|
21837
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TabStrip>,
|
|
21838
|
+
/**
|
|
21839
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21840
|
+
* used by this class
|
|
21841
|
+
*/
|
|
21842
|
+
FNMetaImpl?: Function
|
|
21843
|
+
): Function;
|
|
21844
|
+
/**
|
|
21845
|
+
* Returns a metadata object for class sap.ui.commons.TabStrip.
|
|
21846
|
+
*/
|
|
21847
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
21823
21848
|
/**
|
|
21824
21849
|
* Adds some tab to the aggregation {@link #getTabs tabs}.
|
|
21825
21850
|
*/
|
|
@@ -21971,27 +21996,6 @@ declare namespace sap {
|
|
|
21971
21996
|
*/
|
|
21972
21997
|
oListener?: object
|
|
21973
21998
|
): this;
|
|
21974
|
-
/**
|
|
21975
|
-
* Creates a new subclass of class sap.ui.commons.TabStrip with name `sClassName` and enriches it with the
|
|
21976
|
-
* information contained in `oClassInfo`.
|
|
21977
|
-
*
|
|
21978
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
21979
|
-
*/
|
|
21980
|
-
static extend<T extends Record<string, unknown>>(
|
|
21981
|
-
/**
|
|
21982
|
-
* Name of the class being created
|
|
21983
|
-
*/
|
|
21984
|
-
sClassName: string,
|
|
21985
|
-
/**
|
|
21986
|
-
* Object literal with information about the class
|
|
21987
|
-
*/
|
|
21988
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TabStrip>,
|
|
21989
|
-
/**
|
|
21990
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21991
|
-
* used by this class
|
|
21992
|
-
*/
|
|
21993
|
-
FNMetaImpl?: Function
|
|
21994
|
-
): Function;
|
|
21995
21999
|
/**
|
|
21996
22000
|
* Fires event {@link #event:close close} to attached listeners.
|
|
21997
22001
|
*/
|
|
@@ -22034,10 +22038,6 @@ declare namespace sap {
|
|
|
22034
22038
|
* Specifies the height of the tab bar and content area.
|
|
22035
22039
|
*/
|
|
22036
22040
|
getHeight(): sap.ui.core.CSSSize;
|
|
22037
|
-
/**
|
|
22038
|
-
* Returns a metadata object for class sap.ui.commons.TabStrip.
|
|
22039
|
-
*/
|
|
22040
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
22041
22041
|
/**
|
|
22042
22042
|
* Gets current value of property {@link #getSelectedIndex selectedIndex}.
|
|
22043
22043
|
*
|
|
@@ -22211,6 +22211,10 @@ declare namespace sap {
|
|
|
22211
22211
|
*/
|
|
22212
22212
|
FNMetaImpl?: Function
|
|
22213
22213
|
): Function;
|
|
22214
|
+
/**
|
|
22215
|
+
* Returns a metadata object for class sap.ui.commons.TextArea.
|
|
22216
|
+
*/
|
|
22217
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
22214
22218
|
/**
|
|
22215
22219
|
* Gets current value of property {@link #getCols cols}.
|
|
22216
22220
|
*
|
|
@@ -22244,10 +22248,6 @@ declare namespace sap {
|
|
|
22244
22248
|
* ID of label control
|
|
22245
22249
|
*/
|
|
22246
22250
|
getLabeledBy(): string;
|
|
22247
|
-
/**
|
|
22248
|
-
* Returns a metadata object for class sap.ui.commons.TextArea.
|
|
22249
|
-
*/
|
|
22250
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
22251
22251
|
/**
|
|
22252
22252
|
* Gets current value of property {@link #getRows rows}.
|
|
22253
22253
|
*
|
|
@@ -22401,6 +22401,31 @@ declare namespace sap {
|
|
|
22401
22401
|
mSettings?: sap.ui.commons.$TextFieldSettings
|
|
22402
22402
|
);
|
|
22403
22403
|
|
|
22404
|
+
/**
|
|
22405
|
+
* Creates a new subclass of class sap.ui.commons.TextField with name `sClassName` and enriches it with
|
|
22406
|
+
* the information contained in `oClassInfo`.
|
|
22407
|
+
*
|
|
22408
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
22409
|
+
*/
|
|
22410
|
+
static extend<T extends Record<string, unknown>>(
|
|
22411
|
+
/**
|
|
22412
|
+
* Name of the class being created
|
|
22413
|
+
*/
|
|
22414
|
+
sClassName: string,
|
|
22415
|
+
/**
|
|
22416
|
+
* Object literal with information about the class
|
|
22417
|
+
*/
|
|
22418
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TextField>,
|
|
22419
|
+
/**
|
|
22420
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22421
|
+
* used by this class
|
|
22422
|
+
*/
|
|
22423
|
+
FNMetaImpl?: Function
|
|
22424
|
+
): Function;
|
|
22425
|
+
/**
|
|
22426
|
+
* Returns a metadata object for class sap.ui.commons.TextField.
|
|
22427
|
+
*/
|
|
22428
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
22404
22429
|
/**
|
|
22405
22430
|
* Compares the previous value with the current value and fires the change event if the TextField is editable
|
|
22406
22431
|
* and the value has changed.
|
|
@@ -22559,27 +22584,6 @@ declare namespace sap {
|
|
|
22559
22584
|
*/
|
|
22560
22585
|
oListener?: object
|
|
22561
22586
|
): this;
|
|
22562
|
-
/**
|
|
22563
|
-
* Creates a new subclass of class sap.ui.commons.TextField with name `sClassName` and enriches it with
|
|
22564
|
-
* the information contained in `oClassInfo`.
|
|
22565
|
-
*
|
|
22566
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
22567
|
-
*/
|
|
22568
|
-
static extend<T extends Record<string, unknown>>(
|
|
22569
|
-
/**
|
|
22570
|
-
* Name of the class being created
|
|
22571
|
-
*/
|
|
22572
|
-
sClassName: string,
|
|
22573
|
-
/**
|
|
22574
|
-
* Object literal with information about the class
|
|
22575
|
-
*/
|
|
22576
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TextField>,
|
|
22577
|
-
/**
|
|
22578
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22579
|
-
* used by this class
|
|
22580
|
-
*/
|
|
22581
|
-
FNMetaImpl?: Function
|
|
22582
|
-
): Function;
|
|
22583
22587
|
/**
|
|
22584
22588
|
* Fires event {@link #event:change change} to attached listeners.
|
|
22585
22589
|
*/
|
|
@@ -22612,7 +22616,7 @@ declare namespace sap {
|
|
|
22612
22616
|
* See:
|
|
22613
22617
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
22614
22618
|
*/
|
|
22615
|
-
getAccessibilityInfo():
|
|
22619
|
+
getAccessibilityInfo(): object;
|
|
22616
22620
|
/**
|
|
22617
22621
|
* Gets current value of property {@link #getAccessibleRole accessibleRole}.
|
|
22618
22622
|
*
|
|
@@ -22692,10 +22696,6 @@ declare namespace sap {
|
|
|
22692
22696
|
* Default value is `0`.
|
|
22693
22697
|
*/
|
|
22694
22698
|
getMaxLength(): int;
|
|
22695
|
-
/**
|
|
22696
|
-
* Returns a metadata object for class sap.ui.commons.TextField.
|
|
22697
|
-
*/
|
|
22698
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
22699
22699
|
/**
|
|
22700
22700
|
* Gets current value of property {@link #getName name}.
|
|
22701
22701
|
*
|
|
@@ -23103,6 +23103,31 @@ declare namespace sap {
|
|
|
23103
23103
|
mSettings?: sap.ui.commons.$TextViewSettings
|
|
23104
23104
|
);
|
|
23105
23105
|
|
|
23106
|
+
/**
|
|
23107
|
+
* Creates a new subclass of class sap.ui.commons.TextView with name `sClassName` and enriches it with the
|
|
23108
|
+
* information contained in `oClassInfo`.
|
|
23109
|
+
*
|
|
23110
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23111
|
+
*/
|
|
23112
|
+
static extend<T extends Record<string, unknown>>(
|
|
23113
|
+
/**
|
|
23114
|
+
* Name of the class being created
|
|
23115
|
+
*/
|
|
23116
|
+
sClassName: string,
|
|
23117
|
+
/**
|
|
23118
|
+
* Object literal with information about the class
|
|
23119
|
+
*/
|
|
23120
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TextView>,
|
|
23121
|
+
/**
|
|
23122
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23123
|
+
* used by this class
|
|
23124
|
+
*/
|
|
23125
|
+
FNMetaImpl?: Function
|
|
23126
|
+
): Function;
|
|
23127
|
+
/**
|
|
23128
|
+
* Returns a metadata object for class sap.ui.commons.TextView.
|
|
23129
|
+
*/
|
|
23130
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23106
23131
|
/**
|
|
23107
23132
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
23108
23133
|
*/
|
|
@@ -23133,27 +23158,6 @@ declare namespace sap {
|
|
|
23133
23158
|
*/
|
|
23134
23159
|
oBindingInfo: sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
23135
23160
|
): this;
|
|
23136
|
-
/**
|
|
23137
|
-
* Creates a new subclass of class sap.ui.commons.TextView with name `sClassName` and enriches it with the
|
|
23138
|
-
* information contained in `oClassInfo`.
|
|
23139
|
-
*
|
|
23140
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23141
|
-
*/
|
|
23142
|
-
static extend<T extends Record<string, unknown>>(
|
|
23143
|
-
/**
|
|
23144
|
-
* Name of the class being created
|
|
23145
|
-
*/
|
|
23146
|
-
sClassName: string,
|
|
23147
|
-
/**
|
|
23148
|
-
* Object literal with information about the class
|
|
23149
|
-
*/
|
|
23150
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TextView>,
|
|
23151
|
-
/**
|
|
23152
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23153
|
-
* used by this class
|
|
23154
|
-
*/
|
|
23155
|
-
FNMetaImpl?: Function
|
|
23156
|
-
): Function;
|
|
23157
23161
|
/**
|
|
23158
23162
|
* See:
|
|
23159
23163
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -23200,10 +23204,6 @@ declare namespace sap {
|
|
|
23200
23204
|
* Default value is `empty string`.
|
|
23201
23205
|
*/
|
|
23202
23206
|
getHelpId(): string;
|
|
23203
|
-
/**
|
|
23204
|
-
* Returns a metadata object for class sap.ui.commons.TextView.
|
|
23205
|
-
*/
|
|
23206
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23207
23207
|
/**
|
|
23208
23208
|
* Gets current value of property {@link #getSemanticColor semanticColor}.
|
|
23209
23209
|
*
|
|
@@ -23494,6 +23494,10 @@ declare namespace sap {
|
|
|
23494
23494
|
*/
|
|
23495
23495
|
FNMetaImpl?: Function
|
|
23496
23496
|
): Function;
|
|
23497
|
+
/**
|
|
23498
|
+
* Returns a metadata object for class sap.ui.commons.Title.
|
|
23499
|
+
*/
|
|
23500
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23497
23501
|
/**
|
|
23498
23502
|
* @SINCE 1.9.1
|
|
23499
23503
|
*
|
|
@@ -23505,10 +23509,6 @@ declare namespace sap {
|
|
|
23505
23509
|
* Default value is `Auto`
|
|
23506
23510
|
*/
|
|
23507
23511
|
getLevel(): sap.ui.core.TitleLevel;
|
|
23508
|
-
/**
|
|
23509
|
-
* Returns a metadata object for class sap.ui.commons.Title.
|
|
23510
|
-
*/
|
|
23511
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23512
23512
|
/**
|
|
23513
23513
|
* @SINCE 1.9.1
|
|
23514
23514
|
*
|
|
@@ -23581,15 +23581,15 @@ declare namespace sap {
|
|
|
23581
23581
|
*/
|
|
23582
23582
|
FNMetaImpl?: Function
|
|
23583
23583
|
): Function;
|
|
23584
|
-
/**
|
|
23585
|
-
* See:
|
|
23586
|
-
* sap.ui.core.Control#getAccessibilityInfo
|
|
23587
|
-
*/
|
|
23588
|
-
getAccessibilityInfo(): Object;
|
|
23589
23584
|
/**
|
|
23590
23585
|
* Returns a metadata object for class sap.ui.commons.ToggleButton.
|
|
23591
23586
|
*/
|
|
23592
23587
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23588
|
+
/**
|
|
23589
|
+
* See:
|
|
23590
|
+
* sap.ui.core.Control#getAccessibilityInfo
|
|
23591
|
+
*/
|
|
23592
|
+
getAccessibilityInfo(): object;
|
|
23593
23593
|
/**
|
|
23594
23594
|
* Gets current value of property {@link #getPressed pressed}.
|
|
23595
23595
|
*
|
|
@@ -23643,17 +23643,42 @@ declare namespace sap {
|
|
|
23643
23643
|
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
23644
23644
|
* of the syntax of the settings object.
|
|
23645
23645
|
*/
|
|
23646
|
-
constructor(
|
|
23646
|
+
constructor(
|
|
23647
|
+
/**
|
|
23648
|
+
* id for the new control, generated automatically if no id is given
|
|
23649
|
+
*/
|
|
23650
|
+
sId?: string,
|
|
23651
|
+
/**
|
|
23652
|
+
* initial settings for the new control
|
|
23653
|
+
*/
|
|
23654
|
+
mSettings?: sap.ui.commons.$ToolbarSettings
|
|
23655
|
+
);
|
|
23656
|
+
|
|
23657
|
+
/**
|
|
23658
|
+
* Creates a new subclass of class sap.ui.commons.Toolbar with name `sClassName` and enriches it with the
|
|
23659
|
+
* information contained in `oClassInfo`.
|
|
23660
|
+
*
|
|
23661
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23662
|
+
*/
|
|
23663
|
+
static extend<T extends Record<string, unknown>>(
|
|
23647
23664
|
/**
|
|
23648
|
-
*
|
|
23665
|
+
* Name of the class being created
|
|
23649
23666
|
*/
|
|
23650
|
-
|
|
23667
|
+
sClassName: string,
|
|
23651
23668
|
/**
|
|
23652
|
-
*
|
|
23669
|
+
* Object literal with information about the class
|
|
23653
23670
|
*/
|
|
23654
|
-
|
|
23655
|
-
|
|
23656
|
-
|
|
23671
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Toolbar>,
|
|
23672
|
+
/**
|
|
23673
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23674
|
+
* used by this class
|
|
23675
|
+
*/
|
|
23676
|
+
FNMetaImpl?: Function
|
|
23677
|
+
): Function;
|
|
23678
|
+
/**
|
|
23679
|
+
* Returns a metadata object for class sap.ui.commons.Toolbar.
|
|
23680
|
+
*/
|
|
23681
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23657
23682
|
/**
|
|
23658
23683
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
23659
23684
|
*/
|
|
@@ -23680,27 +23705,6 @@ declare namespace sap {
|
|
|
23680
23705
|
* Destroys all the rightItems in the aggregation {@link #getRightItems rightItems}.
|
|
23681
23706
|
*/
|
|
23682
23707
|
destroyRightItems(): this;
|
|
23683
|
-
/**
|
|
23684
|
-
* Creates a new subclass of class sap.ui.commons.Toolbar with name `sClassName` and enriches it with the
|
|
23685
|
-
* information contained in `oClassInfo`.
|
|
23686
|
-
*
|
|
23687
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
23688
|
-
*/
|
|
23689
|
-
static extend<T extends Record<string, unknown>>(
|
|
23690
|
-
/**
|
|
23691
|
-
* Name of the class being created
|
|
23692
|
-
*/
|
|
23693
|
-
sClassName: string,
|
|
23694
|
-
/**
|
|
23695
|
-
* Object literal with information about the class
|
|
23696
|
-
*/
|
|
23697
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Toolbar>,
|
|
23698
|
-
/**
|
|
23699
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23700
|
-
* used by this class
|
|
23701
|
-
*/
|
|
23702
|
-
FNMetaImpl?: Function
|
|
23703
|
-
): Function;
|
|
23704
23708
|
/**
|
|
23705
23709
|
* Gets current value of property {@link #getDesign design}.
|
|
23706
23710
|
*
|
|
@@ -23715,10 +23719,6 @@ declare namespace sap {
|
|
|
23715
23719
|
* Aggregating the tool bar items.
|
|
23716
23720
|
*/
|
|
23717
23721
|
getItems(): sap.ui.commons.ToolbarItem[];
|
|
23718
|
-
/**
|
|
23719
|
-
* Returns a metadata object for class sap.ui.commons.Toolbar.
|
|
23720
|
-
*/
|
|
23721
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23722
23722
|
/**
|
|
23723
23723
|
* Gets content of aggregation {@link #getRightItems rightItems}.
|
|
23724
23724
|
*
|
|
@@ -23933,6 +23933,10 @@ declare namespace sap {
|
|
|
23933
23933
|
*/
|
|
23934
23934
|
FNMetaImpl?: Function
|
|
23935
23935
|
): Function;
|
|
23936
|
+
/**
|
|
23937
|
+
* Returns a metadata object for class sap.ui.commons.ToolbarSeparator.
|
|
23938
|
+
*/
|
|
23939
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23936
23940
|
/**
|
|
23937
23941
|
* Gets current value of property {@link #getDesign design}.
|
|
23938
23942
|
*
|
|
@@ -23947,10 +23951,6 @@ declare namespace sap {
|
|
|
23947
23951
|
* Default value is `true`.
|
|
23948
23952
|
*/
|
|
23949
23953
|
getDisplayVisualSeparator(): boolean;
|
|
23950
|
-
/**
|
|
23951
|
-
* Returns a metadata object for class sap.ui.commons.ToolbarSeparator.
|
|
23952
|
-
*/
|
|
23953
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
23954
23954
|
/**
|
|
23955
23955
|
* Sets a new value for property {@link #getDesign design}.
|
|
23956
23956
|
*
|
|
@@ -24017,6 +24017,31 @@ declare namespace sap {
|
|
|
24017
24017
|
mSettings?: sap.ui.commons.$TreeSettings
|
|
24018
24018
|
);
|
|
24019
24019
|
|
|
24020
|
+
/**
|
|
24021
|
+
* Creates a new subclass of class sap.ui.commons.Tree with name `sClassName` and enriches it with the information
|
|
24022
|
+
* contained in `oClassInfo`.
|
|
24023
|
+
*
|
|
24024
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
24025
|
+
*/
|
|
24026
|
+
static extend<T extends Record<string, unknown>>(
|
|
24027
|
+
/**
|
|
24028
|
+
* Name of the class being created
|
|
24029
|
+
*/
|
|
24030
|
+
sClassName: string,
|
|
24031
|
+
/**
|
|
24032
|
+
* Object literal with information about the class
|
|
24033
|
+
*/
|
|
24034
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Tree>,
|
|
24035
|
+
/**
|
|
24036
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24037
|
+
* used by this class
|
|
24038
|
+
*/
|
|
24039
|
+
FNMetaImpl?: Function
|
|
24040
|
+
): Function;
|
|
24041
|
+
/**
|
|
24042
|
+
* Returns a metadata object for class sap.ui.commons.Tree.
|
|
24043
|
+
*/
|
|
24044
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
24020
24045
|
/**
|
|
24021
24046
|
* Adds some node to the aggregation {@link #getNodes nodes}.
|
|
24022
24047
|
*/
|
|
@@ -24165,27 +24190,6 @@ declare namespace sap {
|
|
|
24165
24190
|
* Expands all nodes in the tree.
|
|
24166
24191
|
*/
|
|
24167
24192
|
expandAll(): void;
|
|
24168
|
-
/**
|
|
24169
|
-
* Creates a new subclass of class sap.ui.commons.Tree with name `sClassName` and enriches it with the information
|
|
24170
|
-
* contained in `oClassInfo`.
|
|
24171
|
-
*
|
|
24172
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
24173
|
-
*/
|
|
24174
|
-
static extend<T extends Record<string, unknown>>(
|
|
24175
|
-
/**
|
|
24176
|
-
* Name of the class being created
|
|
24177
|
-
*/
|
|
24178
|
-
sClassName: string,
|
|
24179
|
-
/**
|
|
24180
|
-
* Object literal with information about the class
|
|
24181
|
-
*/
|
|
24182
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.Tree>,
|
|
24183
|
-
/**
|
|
24184
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24185
|
-
* used by this class
|
|
24186
|
-
*/
|
|
24187
|
-
FNMetaImpl?: Function
|
|
24188
|
-
): Function;
|
|
24189
24193
|
/**
|
|
24190
24194
|
* Fires event {@link #event:select select} to attached listeners.
|
|
24191
24195
|
*
|
|
@@ -24233,10 +24237,6 @@ declare namespace sap {
|
|
|
24233
24237
|
* Default value is `'auto'`.
|
|
24234
24238
|
*/
|
|
24235
24239
|
getHeight(): sap.ui.core.CSSSize;
|
|
24236
|
-
/**
|
|
24237
|
-
* Returns a metadata object for class sap.ui.commons.Tree.
|
|
24238
|
-
*/
|
|
24239
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
24240
24240
|
/**
|
|
24241
24241
|
* Gets current value of property {@link #getMinWidth minWidth}.
|
|
24242
24242
|
*
|
|
@@ -24506,6 +24506,31 @@ declare namespace sap {
|
|
|
24506
24506
|
mSettings?: sap.ui.commons.$TreeNodeSettings
|
|
24507
24507
|
);
|
|
24508
24508
|
|
|
24509
|
+
/**
|
|
24510
|
+
* Creates a new subclass of class sap.ui.commons.TreeNode with name `sClassName` and enriches it with the
|
|
24511
|
+
* information contained in `oClassInfo`.
|
|
24512
|
+
*
|
|
24513
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
24514
|
+
*/
|
|
24515
|
+
static extend<T extends Record<string, unknown>>(
|
|
24516
|
+
/**
|
|
24517
|
+
* Name of the class being created
|
|
24518
|
+
*/
|
|
24519
|
+
sClassName: string,
|
|
24520
|
+
/**
|
|
24521
|
+
* Object literal with information about the class
|
|
24522
|
+
*/
|
|
24523
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TreeNode>,
|
|
24524
|
+
/**
|
|
24525
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24526
|
+
* used by this class
|
|
24527
|
+
*/
|
|
24528
|
+
FNMetaImpl?: Function
|
|
24529
|
+
): Function;
|
|
24530
|
+
/**
|
|
24531
|
+
* Returns a metadata object for class sap.ui.commons.TreeNode.
|
|
24532
|
+
*/
|
|
24533
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
24509
24534
|
/**
|
|
24510
24535
|
* Adds some ariaDescribedBy into the association {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
24511
24536
|
*/
|
|
@@ -24678,27 +24703,6 @@ declare namespace sap {
|
|
|
24678
24703
|
*/
|
|
24679
24704
|
bDisableExpandFinishedHandler: boolean
|
|
24680
24705
|
): void;
|
|
24681
|
-
/**
|
|
24682
|
-
* Creates a new subclass of class sap.ui.commons.TreeNode with name `sClassName` and enriches it with the
|
|
24683
|
-
* information contained in `oClassInfo`.
|
|
24684
|
-
*
|
|
24685
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
24686
|
-
*/
|
|
24687
|
-
static extend<T extends Record<string, unknown>>(
|
|
24688
|
-
/**
|
|
24689
|
-
* Name of the class being created
|
|
24690
|
-
*/
|
|
24691
|
-
sClassName: string,
|
|
24692
|
-
/**
|
|
24693
|
-
* Object literal with information about the class
|
|
24694
|
-
*/
|
|
24695
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TreeNode>,
|
|
24696
|
-
/**
|
|
24697
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24698
|
-
* used by this class
|
|
24699
|
-
*/
|
|
24700
|
-
FNMetaImpl?: Function
|
|
24701
|
-
): Function;
|
|
24702
24706
|
/**
|
|
24703
24707
|
* Fires event {@link #event:selected selected} to attached listeners.
|
|
24704
24708
|
*/
|
|
@@ -24762,10 +24766,6 @@ declare namespace sap {
|
|
|
24762
24766
|
* Default value is `false`.
|
|
24763
24767
|
*/
|
|
24764
24768
|
getIsSelected(): boolean;
|
|
24765
|
-
/**
|
|
24766
|
-
* Returns a metadata object for class sap.ui.commons.TreeNode.
|
|
24767
|
-
*/
|
|
24768
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
24769
24769
|
/**
|
|
24770
24770
|
* Gets content of aggregation {@link #getNodes nodes}.
|
|
24771
24771
|
*
|
|
@@ -24976,6 +24976,31 @@ declare namespace sap {
|
|
|
24976
24976
|
mSettings?: sap.ui.commons.$TriStateCheckBoxSettings
|
|
24977
24977
|
);
|
|
24978
24978
|
|
|
24979
|
+
/**
|
|
24980
|
+
* Creates a new subclass of class sap.ui.commons.TriStateCheckBox with name `sClassName` and enriches it
|
|
24981
|
+
* with the information contained in `oClassInfo`.
|
|
24982
|
+
*
|
|
24983
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
24984
|
+
*/
|
|
24985
|
+
static extend<T extends Record<string, unknown>>(
|
|
24986
|
+
/**
|
|
24987
|
+
* Name of the class being created
|
|
24988
|
+
*/
|
|
24989
|
+
sClassName: string,
|
|
24990
|
+
/**
|
|
24991
|
+
* Object literal with information about the class
|
|
24992
|
+
*/
|
|
24993
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TriStateCheckBox>,
|
|
24994
|
+
/**
|
|
24995
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24996
|
+
* used by this class
|
|
24997
|
+
*/
|
|
24998
|
+
FNMetaImpl?: Function
|
|
24999
|
+
): Function;
|
|
25000
|
+
/**
|
|
25001
|
+
* Returns a metadata object for class sap.ui.commons.TriStateCheckBox.
|
|
25002
|
+
*/
|
|
25003
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
24979
25004
|
/**
|
|
24980
25005
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.commons.TriStateCheckBox`.
|
|
24981
25006
|
*
|
|
@@ -25032,27 +25057,6 @@ declare namespace sap {
|
|
|
25032
25057
|
*/
|
|
25033
25058
|
oListener?: object
|
|
25034
25059
|
): this;
|
|
25035
|
-
/**
|
|
25036
|
-
* Creates a new subclass of class sap.ui.commons.TriStateCheckBox with name `sClassName` and enriches it
|
|
25037
|
-
* with the information contained in `oClassInfo`.
|
|
25038
|
-
*
|
|
25039
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
25040
|
-
*/
|
|
25041
|
-
static extend<T extends Record<string, unknown>>(
|
|
25042
|
-
/**
|
|
25043
|
-
* Name of the class being created
|
|
25044
|
-
*/
|
|
25045
|
-
sClassName: string,
|
|
25046
|
-
/**
|
|
25047
|
-
* Object literal with information about the class
|
|
25048
|
-
*/
|
|
25049
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.TriStateCheckBox>,
|
|
25050
|
-
/**
|
|
25051
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25052
|
-
* used by this class
|
|
25053
|
-
*/
|
|
25054
|
-
FNMetaImpl?: Function
|
|
25055
|
-
): Function;
|
|
25056
25060
|
/**
|
|
25057
25061
|
* Fires event {@link #event:change change} to attached listeners.
|
|
25058
25062
|
*/
|
|
@@ -25083,10 +25087,6 @@ declare namespace sap {
|
|
|
25083
25087
|
* Default value is `true`.
|
|
25084
25088
|
*/
|
|
25085
25089
|
getEnabled(): boolean;
|
|
25086
|
-
/**
|
|
25087
|
-
* Returns a metadata object for class sap.ui.commons.TriStateCheckBox.
|
|
25088
|
-
*/
|
|
25089
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
25090
25090
|
/**
|
|
25091
25091
|
* Gets current value of property {@link #getSelectionState selectionState}.
|
|
25092
25092
|
*
|
|
@@ -25275,6 +25275,31 @@ declare namespace sap {
|
|
|
25275
25275
|
mSettings?: sap.ui.commons.$ValueHelpFieldSettings
|
|
25276
25276
|
);
|
|
25277
25277
|
|
|
25278
|
+
/**
|
|
25279
|
+
* Creates a new subclass of class sap.ui.commons.ValueHelpField with name `sClassName` and enriches it
|
|
25280
|
+
* with the information contained in `oClassInfo`.
|
|
25281
|
+
*
|
|
25282
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.TextField.extend}.
|
|
25283
|
+
*/
|
|
25284
|
+
static extend<T extends Record<string, unknown>>(
|
|
25285
|
+
/**
|
|
25286
|
+
* Name of the class being created
|
|
25287
|
+
*/
|
|
25288
|
+
sClassName: string,
|
|
25289
|
+
/**
|
|
25290
|
+
* Object literal with information about the class
|
|
25291
|
+
*/
|
|
25292
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ValueHelpField>,
|
|
25293
|
+
/**
|
|
25294
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25295
|
+
* used by this class
|
|
25296
|
+
*/
|
|
25297
|
+
FNMetaImpl?: Function
|
|
25298
|
+
): Function;
|
|
25299
|
+
/**
|
|
25300
|
+
* Returns a metadata object for class sap.ui.commons.ValueHelpField.
|
|
25301
|
+
*/
|
|
25302
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
25278
25303
|
/**
|
|
25279
25304
|
* Attaches event handler `fnFunction` to the {@link #event:valueHelpRequest valueHelpRequest} event of
|
|
25280
25305
|
* this `sap.ui.commons.ValueHelpField`.
|
|
@@ -25334,27 +25359,6 @@ declare namespace sap {
|
|
|
25334
25359
|
*/
|
|
25335
25360
|
oListener?: object
|
|
25336
25361
|
): this;
|
|
25337
|
-
/**
|
|
25338
|
-
* Creates a new subclass of class sap.ui.commons.ValueHelpField with name `sClassName` and enriches it
|
|
25339
|
-
* with the information contained in `oClassInfo`.
|
|
25340
|
-
*
|
|
25341
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.commons.TextField.extend}.
|
|
25342
|
-
*/
|
|
25343
|
-
static extend<T extends Record<string, unknown>>(
|
|
25344
|
-
/**
|
|
25345
|
-
* Name of the class being created
|
|
25346
|
-
*/
|
|
25347
|
-
sClassName: string,
|
|
25348
|
-
/**
|
|
25349
|
-
* Object literal with information about the class
|
|
25350
|
-
*/
|
|
25351
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.commons.ValueHelpField>,
|
|
25352
|
-
/**
|
|
25353
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25354
|
-
* used by this class
|
|
25355
|
-
*/
|
|
25356
|
-
FNMetaImpl?: Function
|
|
25357
|
-
): Function;
|
|
25358
25362
|
/**
|
|
25359
25363
|
* Fires event {@link #event:valueHelpRequest valueHelpRequest} to attached listeners.
|
|
25360
25364
|
*/
|
|
@@ -25385,10 +25389,6 @@ declare namespace sap {
|
|
|
25385
25389
|
* be shown. This can be a URI to an image or an icon font URI.
|
|
25386
25390
|
*/
|
|
25387
25391
|
getIconURL(): sap.ui.core.URI;
|
|
25388
|
-
/**
|
|
25389
|
-
* Returns a metadata object for class sap.ui.commons.ValueHelpField.
|
|
25390
|
-
*/
|
|
25391
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
25392
25392
|
/**
|
|
25393
25393
|
* Handle F4 event
|
|
25394
25394
|
*/
|