@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 {
|
|
@@ -329,12 +329,12 @@ declare namespace sap {
|
|
|
329
329
|
/**
|
|
330
330
|
* Fired when the component is activated either with a click/tap or by using the Enter or Space key.
|
|
331
331
|
*/
|
|
332
|
-
click?:
|
|
332
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
333
333
|
|
|
334
334
|
/**
|
|
335
335
|
* Fired when the count of visible `sap.ui.webc.main.Avatar` elements in the component has changed
|
|
336
336
|
*/
|
|
337
|
-
overflow?:
|
|
337
|
+
overflow?: (oEvent: sap.ui.base.Event) => void;
|
|
338
338
|
}
|
|
339
339
|
|
|
340
340
|
interface $BadgeSettings
|
|
@@ -478,7 +478,7 @@ declare namespace sap {
|
|
|
478
478
|
*
|
|
479
479
|
* **Note:** The event will not be fired if the `disabled` property is set to `true`.
|
|
480
480
|
*/
|
|
481
|
-
click?:
|
|
481
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
482
482
|
}
|
|
483
483
|
|
|
484
484
|
interface $CalendarSettings
|
|
@@ -546,7 +546,7 @@ declare namespace sap {
|
|
|
546
546
|
* will not create instances of `sap.ui.webc.main.CalendarDate` for the newly selected dates. In that case
|
|
547
547
|
* you should do this manually.
|
|
548
548
|
*/
|
|
549
|
-
selectedDatesChange?:
|
|
549
|
+
selectedDatesChange?: (oEvent: sap.ui.base.Event) => void;
|
|
550
550
|
}
|
|
551
551
|
|
|
552
552
|
interface $CalendarDateSettings
|
|
@@ -633,7 +633,7 @@ declare namespace sap {
|
|
|
633
633
|
*
|
|
634
634
|
* **Note:** The event would be fired only if the `headerInteractive` property is set to true.
|
|
635
635
|
*/
|
|
636
|
-
headerClick?:
|
|
636
|
+
headerClick?: (oEvent: sap.ui.base.Event) => void;
|
|
637
637
|
}
|
|
638
638
|
|
|
639
639
|
interface $CarouselSettings
|
|
@@ -715,14 +715,14 @@ declare namespace sap {
|
|
|
715
715
|
* Fired for the last items of the component if it is scrolled and the direction of scrolling is to the
|
|
716
716
|
* end. The number of items for which the event is fired is controlled by the `infiniteScrollOffset` property.
|
|
717
717
|
*/
|
|
718
|
-
loadMore?:
|
|
718
|
+
loadMore?: (oEvent: sap.ui.base.Event) => void;
|
|
719
719
|
|
|
720
720
|
/**
|
|
721
721
|
* Fired whenever the `selectedIndex` changes due to user interaction, when the user clicks on the navigation
|
|
722
722
|
* arrows or while resizing, based on the `items-per-page-l`, `items-per-page-m` and `items-per-page-s`
|
|
723
723
|
* properties.
|
|
724
724
|
*/
|
|
725
|
-
navigate?:
|
|
725
|
+
navigate?: (oEvent: sap.ui.base.Event) => void;
|
|
726
726
|
}
|
|
727
727
|
|
|
728
728
|
interface $CheckBoxSettings
|
|
@@ -806,7 +806,7 @@ declare namespace sap {
|
|
|
806
806
|
/**
|
|
807
807
|
* Fired when the component checked state changes.
|
|
808
808
|
*/
|
|
809
|
-
change?:
|
|
809
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
810
810
|
}
|
|
811
811
|
|
|
812
812
|
interface $ColorPaletteSettings
|
|
@@ -844,7 +844,7 @@ declare namespace sap {
|
|
|
844
844
|
/**
|
|
845
845
|
* Fired when the user selects a color.
|
|
846
846
|
*/
|
|
847
|
-
change?:
|
|
847
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
848
848
|
}
|
|
849
849
|
|
|
850
850
|
interface $ColorPaletteItemSettings
|
|
@@ -871,7 +871,7 @@ declare namespace sap {
|
|
|
871
871
|
/**
|
|
872
872
|
* Fired when the the selected color is changed
|
|
873
873
|
*/
|
|
874
|
-
change?:
|
|
874
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
interface $ComboBoxSettings
|
|
@@ -975,19 +975,19 @@ declare namespace sap {
|
|
|
975
975
|
/**
|
|
976
976
|
* Fired when the input operation has finished by pressing Enter, focusout or an item is selected.
|
|
977
977
|
*/
|
|
978
|
-
change?:
|
|
978
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
979
979
|
|
|
980
980
|
/**
|
|
981
981
|
* Fired when typing in input.
|
|
982
982
|
*
|
|
983
983
|
* **Note:** filterValue property is updated, input is changed.
|
|
984
984
|
*/
|
|
985
|
-
input?:
|
|
985
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
986
986
|
|
|
987
987
|
/**
|
|
988
988
|
* Fired when selection is changed by user interaction
|
|
989
989
|
*/
|
|
990
|
-
selectionChange?:
|
|
990
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
991
991
|
}
|
|
992
992
|
|
|
993
993
|
interface $ComboBoxItemSettings
|
|
@@ -1042,7 +1042,7 @@ declare namespace sap {
|
|
|
1042
1042
|
/**
|
|
1043
1043
|
* Fired when the user clicks on the detail button when type is `Detail`.
|
|
1044
1044
|
*/
|
|
1045
|
-
detailClick?:
|
|
1045
|
+
detailClick?: (oEvent: sap.ui.base.Event) => void;
|
|
1046
1046
|
}
|
|
1047
1047
|
|
|
1048
1048
|
interface $DatePickerSettings
|
|
@@ -1159,12 +1159,12 @@ declare namespace sap {
|
|
|
1159
1159
|
/**
|
|
1160
1160
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
1161
1161
|
*/
|
|
1162
|
-
change?:
|
|
1162
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
1163
1163
|
|
|
1164
1164
|
/**
|
|
1165
1165
|
* Fired when the value of the component is changed at each key stroke.
|
|
1166
1166
|
*/
|
|
1167
|
-
input?:
|
|
1167
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
1168
1168
|
}
|
|
1169
1169
|
|
|
1170
1170
|
interface $DateRangePickerSettings
|
|
@@ -1287,12 +1287,12 @@ declare namespace sap {
|
|
|
1287
1287
|
/**
|
|
1288
1288
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
1289
1289
|
*/
|
|
1290
|
-
change?:
|
|
1290
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
1291
1291
|
|
|
1292
1292
|
/**
|
|
1293
1293
|
* Fired when the value of the component is changed at each key stroke.
|
|
1294
1294
|
*/
|
|
1295
|
-
input?:
|
|
1295
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
1296
1296
|
}
|
|
1297
1297
|
|
|
1298
1298
|
interface $DateTimePickerSettings
|
|
@@ -1409,12 +1409,12 @@ declare namespace sap {
|
|
|
1409
1409
|
/**
|
|
1410
1410
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
1411
1411
|
*/
|
|
1412
|
-
change?:
|
|
1412
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
1413
1413
|
|
|
1414
1414
|
/**
|
|
1415
1415
|
* Fired when the value of the component is changed at each key stroke.
|
|
1416
1416
|
*/
|
|
1417
|
-
input?:
|
|
1417
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
1418
1418
|
}
|
|
1419
1419
|
|
|
1420
1420
|
interface $DialogSettings
|
|
@@ -1518,24 +1518,24 @@ declare namespace sap {
|
|
|
1518
1518
|
/**
|
|
1519
1519
|
* Fired after the component is closed. **This event does not bubble.**
|
|
1520
1520
|
*/
|
|
1521
|
-
afterClose?:
|
|
1521
|
+
afterClose?: (oEvent: sap.ui.base.Event) => void;
|
|
1522
1522
|
|
|
1523
1523
|
/**
|
|
1524
1524
|
* Fired after the component is opened. **This event does not bubble.**
|
|
1525
1525
|
*/
|
|
1526
|
-
afterOpen?:
|
|
1526
|
+
afterOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
1527
1527
|
|
|
1528
1528
|
/**
|
|
1529
1529
|
* Fired before the component is closed. This event can be cancelled, which will prevent the popup from
|
|
1530
1530
|
* closing. **This event does not bubble.**
|
|
1531
1531
|
*/
|
|
1532
|
-
beforeClose?:
|
|
1532
|
+
beforeClose?: (oEvent: sap.ui.base.Event) => void;
|
|
1533
1533
|
|
|
1534
1534
|
/**
|
|
1535
1535
|
* Fired before the component is opened. This event can be cancelled, which will prevent the popup from
|
|
1536
1536
|
* opening. **This event does not bubble.**
|
|
1537
1537
|
*/
|
|
1538
|
-
beforeOpen?:
|
|
1538
|
+
beforeOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
1539
1539
|
}
|
|
1540
1540
|
|
|
1541
1541
|
interface $DurationPickerSettings
|
|
@@ -1644,12 +1644,12 @@ declare namespace sap {
|
|
|
1644
1644
|
* Fired when the input operation has finished by clicking the "OK" button or when the text in the input
|
|
1645
1645
|
* field has changed and the focus leaves the input field.
|
|
1646
1646
|
*/
|
|
1647
|
-
change?:
|
|
1647
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
1648
1648
|
|
|
1649
1649
|
/**
|
|
1650
1650
|
* Fired when the value of the `sap.ui.webc.main.TimePicker` is changed at each key stroke.
|
|
1651
1651
|
*/
|
|
1652
|
-
input?:
|
|
1652
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
1653
1653
|
}
|
|
1654
1654
|
|
|
1655
1655
|
interface $FileUploaderSettings
|
|
@@ -1746,7 +1746,7 @@ declare namespace sap {
|
|
|
1746
1746
|
* of the HTML input element of type file, the event is also fired in Chrome browser when the Cancel button
|
|
1747
1747
|
* of the uploads window is pressed.
|
|
1748
1748
|
*/
|
|
1749
|
-
change?:
|
|
1749
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
1750
1750
|
}
|
|
1751
1751
|
|
|
1752
1752
|
interface $GroupHeaderListItemSettings
|
|
@@ -1844,7 +1844,7 @@ declare namespace sap {
|
|
|
1844
1844
|
/**
|
|
1845
1845
|
* Fired when the user clicks the control
|
|
1846
1846
|
*/
|
|
1847
|
-
click?:
|
|
1847
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
1848
1848
|
}
|
|
1849
1849
|
|
|
1850
1850
|
interface $InputSettings
|
|
@@ -1957,29 +1957,29 @@ declare namespace sap {
|
|
|
1957
1957
|
/**
|
|
1958
1958
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
1959
1959
|
*/
|
|
1960
|
-
change?:
|
|
1960
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
1961
1961
|
|
|
1962
1962
|
/**
|
|
1963
1963
|
* Fired when the value of the component changes at each keystroke, and when a suggestion item has been
|
|
1964
1964
|
* selected.
|
|
1965
1965
|
*/
|
|
1966
|
-
input?:
|
|
1966
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
1967
1967
|
|
|
1968
1968
|
/**
|
|
1969
1969
|
* Fired when the user navigates to a suggestion item via the ARROW keys, as a preview, before the final
|
|
1970
1970
|
* selection.
|
|
1971
1971
|
*/
|
|
1972
|
-
suggestionItemPreview?:
|
|
1972
|
+
suggestionItemPreview?: (oEvent: sap.ui.base.Event) => void;
|
|
1973
1973
|
|
|
1974
1974
|
/**
|
|
1975
1975
|
* Fired when a suggestion item, that is displayed in the suggestion popup, is selected.
|
|
1976
1976
|
*/
|
|
1977
|
-
suggestionItemSelect?:
|
|
1977
|
+
suggestionItemSelect?: (oEvent: sap.ui.base.Event) => void;
|
|
1978
1978
|
|
|
1979
1979
|
/**
|
|
1980
1980
|
* Fired when the user scrolls the suggestion popover.
|
|
1981
1981
|
*/
|
|
1982
|
-
suggestionScroll?:
|
|
1982
|
+
suggestionScroll?: (oEvent: sap.ui.base.Event) => void;
|
|
1983
1983
|
}
|
|
1984
1984
|
|
|
1985
1985
|
interface $LabelSettings
|
|
@@ -2087,7 +2087,7 @@ declare namespace sap {
|
|
|
2087
2087
|
/**
|
|
2088
2088
|
* Fired when the component is triggered either with a mouse/tap or by using the Enter key.
|
|
2089
2089
|
*/
|
|
2090
|
-
click?:
|
|
2090
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
2091
2091
|
}
|
|
2092
2092
|
|
|
2093
2093
|
interface $ListSettings
|
|
@@ -2202,7 +2202,7 @@ declare namespace sap {
|
|
|
2202
2202
|
/**
|
|
2203
2203
|
* Fired when an item is activated, unless the item's `type` property is set to `Inactive`.
|
|
2204
2204
|
*/
|
|
2205
|
-
itemClick?:
|
|
2205
|
+
itemClick?: (oEvent: sap.ui.base.Event) => void;
|
|
2206
2206
|
|
|
2207
2207
|
/**
|
|
2208
2208
|
* Fired when the `Close` button of any item is clicked
|
|
@@ -2210,34 +2210,34 @@ declare namespace sap {
|
|
|
2210
2210
|
* **Note:** This event is applicable to `sap.ui.webc.fiori.NotificationListItem` items only, not to be
|
|
2211
2211
|
* confused with `item-delete`.
|
|
2212
2212
|
*/
|
|
2213
|
-
itemClose?:
|
|
2213
|
+
itemClose?: (oEvent: sap.ui.base.Event) => void;
|
|
2214
2214
|
|
|
2215
2215
|
/**
|
|
2216
2216
|
* Fired when the Delete button of any item is pressed.
|
|
2217
2217
|
*
|
|
2218
2218
|
* **Note:** A Delete button is displayed on each item, when the component `mode` property is set to `Delete`.
|
|
2219
2219
|
*/
|
|
2220
|
-
itemDelete?:
|
|
2220
|
+
itemDelete?: (oEvent: sap.ui.base.Event) => void;
|
|
2221
2221
|
|
|
2222
2222
|
/**
|
|
2223
2223
|
* Fired when the `Toggle` button of any item is clicked.
|
|
2224
2224
|
*
|
|
2225
2225
|
* **Note:** This event is applicable to `sap.ui.webc.fiori.NotificationListGroupItem` items only.
|
|
2226
2226
|
*/
|
|
2227
|
-
itemToggle?:
|
|
2227
|
+
itemToggle?: (oEvent: sap.ui.base.Event) => void;
|
|
2228
2228
|
|
|
2229
2229
|
/**
|
|
2230
2230
|
* Fired when the user scrolls to the bottom of the list.
|
|
2231
2231
|
*
|
|
2232
2232
|
* **Note:** The event is fired when the `growing='Scroll'` property is enabled.
|
|
2233
2233
|
*/
|
|
2234
|
-
loadMore?:
|
|
2234
|
+
loadMore?: (oEvent: sap.ui.base.Event) => void;
|
|
2235
2235
|
|
|
2236
2236
|
/**
|
|
2237
2237
|
* Fired when selection is changed by user interaction in `SingleSelect`, `SingleSelectBegin`, `SingleSelectEnd`
|
|
2238
2238
|
* and `MultiSelect` modes.
|
|
2239
2239
|
*/
|
|
2240
|
-
selectionChange?:
|
|
2240
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
2241
2241
|
}
|
|
2242
2242
|
|
|
2243
2243
|
interface $MessageStripSettings
|
|
@@ -2298,7 +2298,7 @@ declare namespace sap {
|
|
|
2298
2298
|
/**
|
|
2299
2299
|
* Fired when the close button is pressed either with a click/tap or by using the Enter or Space key.
|
|
2300
2300
|
*/
|
|
2301
|
-
close?:
|
|
2301
|
+
close?: (oEvent: sap.ui.base.Event) => void;
|
|
2302
2302
|
}
|
|
2303
2303
|
|
|
2304
2304
|
interface $MultiComboBoxSettings
|
|
@@ -2388,22 +2388,22 @@ declare namespace sap {
|
|
|
2388
2388
|
/**
|
|
2389
2389
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
2390
2390
|
*/
|
|
2391
|
-
change?:
|
|
2391
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
2392
2392
|
|
|
2393
2393
|
/**
|
|
2394
2394
|
* Fired when the value of the component changes at each keystroke.
|
|
2395
2395
|
*/
|
|
2396
|
-
input?:
|
|
2396
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
2397
2397
|
|
|
2398
2398
|
/**
|
|
2399
2399
|
* Fired when the dropdown is opened or closed.
|
|
2400
2400
|
*/
|
|
2401
|
-
openChange?:
|
|
2401
|
+
openChange?: (oEvent: sap.ui.base.Event) => void;
|
|
2402
2402
|
|
|
2403
2403
|
/**
|
|
2404
2404
|
* Fired when selection is changed by user interaction in `SingleSelect` and `MultiSelect` modes.
|
|
2405
2405
|
*/
|
|
2406
|
-
selectionChange?:
|
|
2406
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
2407
2407
|
}
|
|
2408
2408
|
|
|
2409
2409
|
interface $MultiComboBoxItemSettings
|
|
@@ -2552,40 +2552,40 @@ declare namespace sap {
|
|
|
2552
2552
|
/**
|
|
2553
2553
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
2554
2554
|
*/
|
|
2555
|
-
change?:
|
|
2555
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
2556
2556
|
|
|
2557
2557
|
/**
|
|
2558
2558
|
* Fired when the value of the component changes at each keystroke, and when a suggestion item has been
|
|
2559
2559
|
* selected.
|
|
2560
2560
|
*/
|
|
2561
|
-
input?:
|
|
2561
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
2562
2562
|
|
|
2563
2563
|
/**
|
|
2564
2564
|
* Fired when the user navigates to a suggestion item via the ARROW keys, as a preview, before the final
|
|
2565
2565
|
* selection.
|
|
2566
2566
|
*/
|
|
2567
|
-
suggestionItemPreview?:
|
|
2567
|
+
suggestionItemPreview?: (oEvent: sap.ui.base.Event) => void;
|
|
2568
2568
|
|
|
2569
2569
|
/**
|
|
2570
2570
|
* Fired when a suggestion item, that is displayed in the suggestion popup, is selected.
|
|
2571
2571
|
*/
|
|
2572
|
-
suggestionItemSelect?:
|
|
2572
|
+
suggestionItemSelect?: (oEvent: sap.ui.base.Event) => void;
|
|
2573
2573
|
|
|
2574
2574
|
/**
|
|
2575
2575
|
* Fired when the user scrolls the suggestion popover.
|
|
2576
2576
|
*/
|
|
2577
|
-
suggestionScroll?:
|
|
2577
|
+
suggestionScroll?: (oEvent: sap.ui.base.Event) => void;
|
|
2578
2578
|
|
|
2579
2579
|
/**
|
|
2580
2580
|
* Fired when a token is about to be deleted.
|
|
2581
2581
|
*/
|
|
2582
|
-
tokenDelete?:
|
|
2582
|
+
tokenDelete?: (oEvent: sap.ui.base.Event) => void;
|
|
2583
2583
|
|
|
2584
2584
|
/**
|
|
2585
2585
|
* Fired when the value help icon is pressed and F4 or ALT/OPTION + ARROW_UP/ARROW_DOWN keyboard keys are
|
|
2586
2586
|
* used.
|
|
2587
2587
|
*/
|
|
2588
|
-
valueHelpTrigger?:
|
|
2588
|
+
valueHelpTrigger?: (oEvent: sap.ui.base.Event) => void;
|
|
2589
2589
|
}
|
|
2590
2590
|
|
|
2591
2591
|
interface $OptionSettings
|
|
@@ -2701,7 +2701,7 @@ declare namespace sap {
|
|
|
2701
2701
|
/**
|
|
2702
2702
|
* Fired when the component is expanded/collapsed by user interaction.
|
|
2703
2703
|
*/
|
|
2704
|
-
toggle?:
|
|
2704
|
+
toggle?: (oEvent: sap.ui.base.Event) => void;
|
|
2705
2705
|
}
|
|
2706
2706
|
|
|
2707
2707
|
interface $PopoverSettings
|
|
@@ -2830,24 +2830,24 @@ declare namespace sap {
|
|
|
2830
2830
|
/**
|
|
2831
2831
|
* Fired after the component is closed. **This event does not bubble.**
|
|
2832
2832
|
*/
|
|
2833
|
-
afterClose?:
|
|
2833
|
+
afterClose?: (oEvent: sap.ui.base.Event) => void;
|
|
2834
2834
|
|
|
2835
2835
|
/**
|
|
2836
2836
|
* Fired after the component is opened. **This event does not bubble.**
|
|
2837
2837
|
*/
|
|
2838
|
-
afterOpen?:
|
|
2838
|
+
afterOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
2839
2839
|
|
|
2840
2840
|
/**
|
|
2841
2841
|
* Fired before the component is closed. This event can be cancelled, which will prevent the popup from
|
|
2842
2842
|
* closing. **This event does not bubble.**
|
|
2843
2843
|
*/
|
|
2844
|
-
beforeClose?:
|
|
2844
|
+
beforeClose?: (oEvent: sap.ui.base.Event) => void;
|
|
2845
2845
|
|
|
2846
2846
|
/**
|
|
2847
2847
|
* Fired before the component is opened. This event can be cancelled, which will prevent the popup from
|
|
2848
2848
|
* opening. **This event does not bubble.**
|
|
2849
2849
|
*/
|
|
2850
|
-
beforeOpen?:
|
|
2850
|
+
beforeOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
2851
2851
|
}
|
|
2852
2852
|
|
|
2853
2853
|
interface $ProgressIndicatorSettings
|
|
@@ -2957,7 +2957,7 @@ declare namespace sap {
|
|
|
2957
2957
|
/**
|
|
2958
2958
|
* Fired when the component selected state changes.
|
|
2959
2959
|
*/
|
|
2960
|
-
select?:
|
|
2960
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
2961
2961
|
}
|
|
2962
2962
|
|
|
2963
2963
|
interface $RangeSliderSettings
|
|
@@ -3029,12 +3029,12 @@ declare namespace sap {
|
|
|
3029
3029
|
/**
|
|
3030
3030
|
* Fired when the value changes and the user has finished interacting with the slider.
|
|
3031
3031
|
*/
|
|
3032
|
-
change?:
|
|
3032
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
3033
3033
|
|
|
3034
3034
|
/**
|
|
3035
3035
|
* Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging.
|
|
3036
3036
|
*/
|
|
3037
|
-
input?:
|
|
3037
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
3038
3038
|
}
|
|
3039
3039
|
|
|
3040
3040
|
interface $RatingIndicatorSettings
|
|
@@ -3073,7 +3073,7 @@ declare namespace sap {
|
|
|
3073
3073
|
/**
|
|
3074
3074
|
* The event is fired when the value changes.
|
|
3075
3075
|
*/
|
|
3076
|
-
change?:
|
|
3076
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
3077
3077
|
}
|
|
3078
3078
|
|
|
3079
3079
|
interface $ResponsivePopoverSettings
|
|
@@ -3188,24 +3188,24 @@ declare namespace sap {
|
|
|
3188
3188
|
/**
|
|
3189
3189
|
* Fired after the component is closed. **This event does not bubble.**
|
|
3190
3190
|
*/
|
|
3191
|
-
afterClose?:
|
|
3191
|
+
afterClose?: (oEvent: sap.ui.base.Event) => void;
|
|
3192
3192
|
|
|
3193
3193
|
/**
|
|
3194
3194
|
* Fired after the component is opened. **This event does not bubble.**
|
|
3195
3195
|
*/
|
|
3196
|
-
afterOpen?:
|
|
3196
|
+
afterOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
3197
3197
|
|
|
3198
3198
|
/**
|
|
3199
3199
|
* Fired before the component is closed. This event can be cancelled, which will prevent the popup from
|
|
3200
3200
|
* closing. **This event does not bubble.**
|
|
3201
3201
|
*/
|
|
3202
|
-
beforeClose?:
|
|
3202
|
+
beforeClose?: (oEvent: sap.ui.base.Event) => void;
|
|
3203
3203
|
|
|
3204
3204
|
/**
|
|
3205
3205
|
* Fired before the component is opened. This event can be cancelled, which will prevent the popup from
|
|
3206
3206
|
* opening. **This event does not bubble.**
|
|
3207
3207
|
*/
|
|
3208
|
-
beforeOpen?:
|
|
3208
|
+
beforeOpen?: (oEvent: sap.ui.base.Event) => void;
|
|
3209
3209
|
}
|
|
3210
3210
|
|
|
3211
3211
|
interface $SegmentedButtonSettings
|
|
@@ -3225,7 +3225,7 @@ declare namespace sap {
|
|
|
3225
3225
|
/**
|
|
3226
3226
|
* Fired when the selected button changes.
|
|
3227
3227
|
*/
|
|
3228
|
-
selectionChange?:
|
|
3228
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
3229
3229
|
}
|
|
3230
3230
|
|
|
3231
3231
|
interface $SelectSettings
|
|
@@ -3299,7 +3299,7 @@ declare namespace sap {
|
|
|
3299
3299
|
/**
|
|
3300
3300
|
* Fired when the selected option changes.
|
|
3301
3301
|
*/
|
|
3302
|
-
change?:
|
|
3302
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
3303
3303
|
}
|
|
3304
3304
|
|
|
3305
3305
|
interface $SliderSettings
|
|
@@ -3359,12 +3359,12 @@ declare namespace sap {
|
|
|
3359
3359
|
/**
|
|
3360
3360
|
* Fired when the value changes and the user has finished interacting with the slider.
|
|
3361
3361
|
*/
|
|
3362
|
-
change?:
|
|
3362
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
3363
3363
|
|
|
3364
3364
|
/**
|
|
3365
3365
|
* Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging.
|
|
3366
3366
|
*/
|
|
3367
|
-
input?:
|
|
3367
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
3368
3368
|
}
|
|
3369
3369
|
|
|
3370
3370
|
interface $StandardListItemSettings
|
|
@@ -3443,7 +3443,7 @@ declare namespace sap {
|
|
|
3443
3443
|
/**
|
|
3444
3444
|
* Fired when the user clicks on the detail button when type is `Detail`.
|
|
3445
3445
|
*/
|
|
3446
|
-
detailClick?:
|
|
3446
|
+
detailClick?: (oEvent: sap.ui.base.Event) => void;
|
|
3447
3447
|
}
|
|
3448
3448
|
|
|
3449
3449
|
interface $StepInputSettings
|
|
@@ -3537,7 +3537,7 @@ declare namespace sap {
|
|
|
3537
3537
|
/**
|
|
3538
3538
|
* Fired when the input operation has finished by pressing Enter or on focusout.
|
|
3539
3539
|
*/
|
|
3540
|
-
change?:
|
|
3540
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
3541
3541
|
}
|
|
3542
3542
|
|
|
3543
3543
|
interface $SuggestionItemSettings
|
|
@@ -3655,7 +3655,7 @@ declare namespace sap {
|
|
|
3655
3655
|
/**
|
|
3656
3656
|
* Fired when the component checked state changes.
|
|
3657
3657
|
*/
|
|
3658
|
-
change?:
|
|
3658
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
3659
3659
|
}
|
|
3660
3660
|
|
|
3661
3661
|
interface $TabSettings
|
|
@@ -3790,7 +3790,7 @@ declare namespace sap {
|
|
|
3790
3790
|
/**
|
|
3791
3791
|
* Fired when a tab is selected.
|
|
3792
3792
|
*/
|
|
3793
|
-
tabSelect?:
|
|
3793
|
+
tabSelect?: (oEvent: sap.ui.base.Event) => void;
|
|
3794
3794
|
}
|
|
3795
3795
|
|
|
3796
3796
|
interface $TableSettings
|
|
@@ -3930,22 +3930,22 @@ declare namespace sap {
|
|
|
3930
3930
|
*
|
|
3931
3931
|
* **Note:** The event will be fired if `growing` is set to `Button` or `Scroll`.
|
|
3932
3932
|
*/
|
|
3933
|
-
loadMore?:
|
|
3933
|
+
loadMore?: (oEvent: sap.ui.base.Event) => void;
|
|
3934
3934
|
|
|
3935
3935
|
/**
|
|
3936
3936
|
* Fired when `sap.ui.webc.main.TableColumn` is shown as a pop-in instead of hiding it.
|
|
3937
3937
|
*/
|
|
3938
|
-
popinChange?:
|
|
3938
|
+
popinChange?: (oEvent: sap.ui.base.Event) => void;
|
|
3939
3939
|
|
|
3940
3940
|
/**
|
|
3941
3941
|
* Fired when a row in `Active` mode is clicked or `Enter` key is pressed.
|
|
3942
3942
|
*/
|
|
3943
|
-
rowClick?:
|
|
3943
|
+
rowClick?: (oEvent: sap.ui.base.Event) => void;
|
|
3944
3944
|
|
|
3945
3945
|
/**
|
|
3946
3946
|
* Fired when selection is changed by user interaction in `SingleSelect` and `MultiSelect` modes.
|
|
3947
3947
|
*/
|
|
3948
|
-
selectionChange?:
|
|
3948
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
3949
3949
|
}
|
|
3950
3950
|
|
|
3951
3951
|
interface $TableCellSettings
|
|
@@ -4152,12 +4152,12 @@ declare namespace sap {
|
|
|
4152
4152
|
/**
|
|
4153
4153
|
* Fired when the text has changed and the focus leaves the component.
|
|
4154
4154
|
*/
|
|
4155
|
-
change?:
|
|
4155
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
4156
4156
|
|
|
4157
4157
|
/**
|
|
4158
4158
|
* Fired when the value of the component changes at each keystroke or when something is pasted.
|
|
4159
4159
|
*/
|
|
4160
|
-
input?:
|
|
4160
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
4161
4161
|
}
|
|
4162
4162
|
|
|
4163
4163
|
interface $TimePickerSettings
|
|
@@ -4233,12 +4233,12 @@ declare namespace sap {
|
|
|
4233
4233
|
* Fired when the input operation has finished by clicking the "OK" button or when the text in the input
|
|
4234
4234
|
* field has changed and the focus leaves the input field.
|
|
4235
4235
|
*/
|
|
4236
|
-
change?:
|
|
4236
|
+
change?: (oEvent: sap.ui.base.Event) => void;
|
|
4237
4237
|
|
|
4238
4238
|
/**
|
|
4239
4239
|
* Fired when the value of the `sap.ui.webc.main.TimePicker` is changed at each key stroke.
|
|
4240
4240
|
*/
|
|
4241
|
-
input?:
|
|
4241
|
+
input?: (oEvent: sap.ui.base.Event) => void;
|
|
4242
4242
|
}
|
|
4243
4243
|
|
|
4244
4244
|
interface $TitleSettings
|
|
@@ -4387,7 +4387,7 @@ declare namespace sap {
|
|
|
4387
4387
|
*
|
|
4388
4388
|
* **Note:** The event will not be fired if the `disabled` property is set to `true`.
|
|
4389
4389
|
*/
|
|
4390
|
-
click?:
|
|
4390
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
4391
4391
|
}
|
|
4392
4392
|
|
|
4393
4393
|
interface $TokenSettings
|
|
@@ -4419,7 +4419,7 @@ declare namespace sap {
|
|
|
4419
4419
|
/**
|
|
4420
4420
|
* Fired when the the component is selected by user interaction with mouse or by clicking space.
|
|
4421
4421
|
*/
|
|
4422
|
-
select?:
|
|
4422
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
4423
4423
|
}
|
|
4424
4424
|
|
|
4425
4425
|
interface $TreeSettings
|
|
@@ -4498,14 +4498,14 @@ declare namespace sap {
|
|
|
4498
4498
|
/**
|
|
4499
4499
|
* Fired when a tree item is activated.
|
|
4500
4500
|
*/
|
|
4501
|
-
itemClick?:
|
|
4501
|
+
itemClick?: (oEvent: sap.ui.base.Event) => void;
|
|
4502
4502
|
|
|
4503
4503
|
/**
|
|
4504
4504
|
* Fired when the Delete button of any tree item is pressed.
|
|
4505
4505
|
*
|
|
4506
4506
|
* **Note:** A Delete button is displayed on each item, when the component `mode` property is set to `Delete`.
|
|
4507
4507
|
*/
|
|
4508
|
-
itemDelete?:
|
|
4508
|
+
itemDelete?: (oEvent: sap.ui.base.Event) => void;
|
|
4509
4509
|
|
|
4510
4510
|
/**
|
|
4511
4511
|
* Fired when a tree item is expanded or collapsed. Note: You can call `preventDefault()` on the
|
|
@@ -4513,13 +4513,13 @@ declare namespace sap {
|
|
|
4513
4513
|
* load tree items upon the user expanding a node. Even if you prevented the event's default behavior, you
|
|
4514
4514
|
* can always manually call `toggle()` on a tree item.
|
|
4515
4515
|
*/
|
|
4516
|
-
itemToggle?:
|
|
4516
|
+
itemToggle?: (oEvent: sap.ui.base.Event) => void;
|
|
4517
4517
|
|
|
4518
4518
|
/**
|
|
4519
4519
|
* Fired when selection is changed by user interaction in `SingleSelect`, `SingleSelectBegin`, `SingleSelectEnd`
|
|
4520
4520
|
* and `MultiSelect` modes.
|
|
4521
4521
|
*/
|
|
4522
|
-
selectionChange?:
|
|
4522
|
+
selectionChange?: (oEvent: sap.ui.base.Event) => void;
|
|
4523
4523
|
}
|
|
4524
4524
|
|
|
4525
4525
|
interface $TreeItemSettings
|
|
@@ -4656,6 +4656,10 @@ declare namespace sap {
|
|
|
4656
4656
|
*/
|
|
4657
4657
|
FNMetaImpl?: Function
|
|
4658
4658
|
): Function;
|
|
4659
|
+
/**
|
|
4660
|
+
* Returns a metadata object for class sap.ui.webc.main.Avatar.
|
|
4661
|
+
*/
|
|
4662
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
4659
4663
|
/**
|
|
4660
4664
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
4661
4665
|
*
|
|
@@ -4741,10 +4745,6 @@ declare namespace sap {
|
|
|
4741
4745
|
* Default value is `false`.
|
|
4742
4746
|
*/
|
|
4743
4747
|
getInteractive(): boolean;
|
|
4744
|
-
/**
|
|
4745
|
-
* Returns a metadata object for class sap.ui.webc.main.Avatar.
|
|
4746
|
-
*/
|
|
4747
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
4748
4748
|
/**
|
|
4749
4749
|
* Gets current value of property {@link #getShape shape}.
|
|
4750
4750
|
*
|
|
@@ -5033,6 +5033,31 @@ declare namespace sap {
|
|
|
5033
5033
|
mSettings?: sap.ui.webc.main.$AvatarGroupSettings
|
|
5034
5034
|
);
|
|
5035
5035
|
|
|
5036
|
+
/**
|
|
5037
|
+
* Creates a new subclass of class sap.ui.webc.main.AvatarGroup with name `sClassName` and enriches it with
|
|
5038
|
+
* the information contained in `oClassInfo`.
|
|
5039
|
+
*
|
|
5040
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
5041
|
+
*/
|
|
5042
|
+
static extend<T extends Record<string, unknown>>(
|
|
5043
|
+
/**
|
|
5044
|
+
* Name of the class being created
|
|
5045
|
+
*/
|
|
5046
|
+
sClassName: string,
|
|
5047
|
+
/**
|
|
5048
|
+
* Object literal with information about the class
|
|
5049
|
+
*/
|
|
5050
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.AvatarGroup>,
|
|
5051
|
+
/**
|
|
5052
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5053
|
+
* used by this class
|
|
5054
|
+
*/
|
|
5055
|
+
FNMetaImpl?: Function
|
|
5056
|
+
): Function;
|
|
5057
|
+
/**
|
|
5058
|
+
* Returns a metadata object for class sap.ui.webc.main.AvatarGroup.
|
|
5059
|
+
*/
|
|
5060
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5036
5061
|
/**
|
|
5037
5062
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
5038
5063
|
*/
|
|
@@ -5162,27 +5187,6 @@ declare namespace sap {
|
|
|
5162
5187
|
*/
|
|
5163
5188
|
oListener?: object
|
|
5164
5189
|
): this;
|
|
5165
|
-
/**
|
|
5166
|
-
* Creates a new subclass of class sap.ui.webc.main.AvatarGroup with name `sClassName` and enriches it with
|
|
5167
|
-
* the information contained in `oClassInfo`.
|
|
5168
|
-
*
|
|
5169
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
5170
|
-
*/
|
|
5171
|
-
static extend<T extends Record<string, unknown>>(
|
|
5172
|
-
/**
|
|
5173
|
-
* Name of the class being created
|
|
5174
|
-
*/
|
|
5175
|
-
sClassName: string,
|
|
5176
|
-
/**
|
|
5177
|
-
* Object literal with information about the class
|
|
5178
|
-
*/
|
|
5179
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.AvatarGroup>,
|
|
5180
|
-
/**
|
|
5181
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5182
|
-
* used by this class
|
|
5183
|
-
*/
|
|
5184
|
-
FNMetaImpl?: Function
|
|
5185
|
-
): Function;
|
|
5186
5190
|
/**
|
|
5187
5191
|
* Fires event {@link #event:click click} to attached listeners.
|
|
5188
5192
|
*/
|
|
@@ -5244,10 +5248,6 @@ declare namespace sap {
|
|
|
5244
5248
|
* shape.
|
|
5245
5249
|
*/
|
|
5246
5250
|
getItems(): sap.ui.webc.main.IAvatar[];
|
|
5247
|
-
/**
|
|
5248
|
-
* Returns a metadata object for class sap.ui.webc.main.AvatarGroup.
|
|
5249
|
-
*/
|
|
5250
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5251
5251
|
/**
|
|
5252
5252
|
* Gets content of aggregation {@link #getOverflowButton overflowButton}.
|
|
5253
5253
|
*
|
|
@@ -5409,10 +5409,6 @@ declare namespace sap {
|
|
|
5409
5409
|
mSettings?: sap.ui.webc.main.$BadgeSettings
|
|
5410
5410
|
);
|
|
5411
5411
|
|
|
5412
|
-
/**
|
|
5413
|
-
* Destroys the icon in the aggregation {@link #getIcon icon}.
|
|
5414
|
-
*/
|
|
5415
|
-
destroyIcon(): this;
|
|
5416
5412
|
/**
|
|
5417
5413
|
* Creates a new subclass of class sap.ui.webc.main.Badge with name `sClassName` and enriches it with the
|
|
5418
5414
|
* information contained in `oClassInfo`.
|
|
@@ -5434,6 +5430,14 @@ declare namespace sap {
|
|
|
5434
5430
|
*/
|
|
5435
5431
|
FNMetaImpl?: Function
|
|
5436
5432
|
): Function;
|
|
5433
|
+
/**
|
|
5434
|
+
* Returns a metadata object for class sap.ui.webc.main.Badge.
|
|
5435
|
+
*/
|
|
5436
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5437
|
+
/**
|
|
5438
|
+
* Destroys the icon in the aggregation {@link #getIcon icon}.
|
|
5439
|
+
*/
|
|
5440
|
+
destroyIcon(): this;
|
|
5437
5441
|
/**
|
|
5438
5442
|
* Gets current value of property {@link #getColorScheme colorScheme}.
|
|
5439
5443
|
*
|
|
@@ -5452,10 +5456,6 @@ declare namespace sap {
|
|
|
5452
5456
|
* Defines the icon to be displayed in the component.
|
|
5453
5457
|
*/
|
|
5454
5458
|
getIcon(): sap.ui.webc.main.IIcon;
|
|
5455
|
-
/**
|
|
5456
|
-
* Returns a metadata object for class sap.ui.webc.main.Badge.
|
|
5457
|
-
*/
|
|
5458
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5459
5459
|
/**
|
|
5460
5460
|
* Gets current value of property {@link #getText text}.
|
|
5461
5461
|
*
|
|
@@ -5568,19 +5568,6 @@ declare namespace sap {
|
|
|
5568
5568
|
mSettings?: sap.ui.webc.main.$BusyIndicatorSettings
|
|
5569
5569
|
);
|
|
5570
5570
|
|
|
5571
|
-
/**
|
|
5572
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
5573
|
-
*/
|
|
5574
|
-
addContent(
|
|
5575
|
-
/**
|
|
5576
|
-
* The content to add; if empty, nothing is inserted
|
|
5577
|
-
*/
|
|
5578
|
-
oContent: sap.ui.core.Control
|
|
5579
|
-
): this;
|
|
5580
|
-
/**
|
|
5581
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
5582
|
-
*/
|
|
5583
|
-
destroyContent(): this;
|
|
5584
5571
|
/**
|
|
5585
5572
|
* Creates a new subclass of class sap.ui.webc.main.BusyIndicator with name `sClassName` and enriches it
|
|
5586
5573
|
* with the information contained in `oClassInfo`.
|
|
@@ -5602,6 +5589,23 @@ declare namespace sap {
|
|
|
5602
5589
|
*/
|
|
5603
5590
|
FNMetaImpl?: Function
|
|
5604
5591
|
): Function;
|
|
5592
|
+
/**
|
|
5593
|
+
* Returns a metadata object for class sap.ui.webc.main.BusyIndicator.
|
|
5594
|
+
*/
|
|
5595
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5596
|
+
/**
|
|
5597
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
5598
|
+
*/
|
|
5599
|
+
addContent(
|
|
5600
|
+
/**
|
|
5601
|
+
* The content to add; if empty, nothing is inserted
|
|
5602
|
+
*/
|
|
5603
|
+
oContent: sap.ui.core.Control
|
|
5604
|
+
): this;
|
|
5605
|
+
/**
|
|
5606
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
5607
|
+
*/
|
|
5608
|
+
destroyContent(): this;
|
|
5605
5609
|
/**
|
|
5606
5610
|
* Gets current value of property {@link #getActive active}.
|
|
5607
5611
|
*
|
|
@@ -5622,10 +5626,6 @@ declare namespace sap {
|
|
|
5622
5626
|
* Defines whether the control will be rendered as a block or inline HTML element
|
|
5623
5627
|
*/
|
|
5624
5628
|
getDisplay(): sap.ui.core.CSSSize;
|
|
5625
|
-
/**
|
|
5626
|
-
* Returns a metadata object for class sap.ui.webc.main.BusyIndicator.
|
|
5627
|
-
*/
|
|
5628
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5629
5629
|
/**
|
|
5630
5630
|
* Gets current value of property {@link #getSize size}.
|
|
5631
5631
|
*
|
|
@@ -5843,6 +5843,31 @@ declare namespace sap {
|
|
|
5843
5843
|
mSettings?: sap.ui.webc.main.$ButtonSettings
|
|
5844
5844
|
);
|
|
5845
5845
|
|
|
5846
|
+
/**
|
|
5847
|
+
* Creates a new subclass of class sap.ui.webc.main.Button with name `sClassName` and enriches it with the
|
|
5848
|
+
* information contained in `oClassInfo`.
|
|
5849
|
+
*
|
|
5850
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
5851
|
+
*/
|
|
5852
|
+
static extend<T extends Record<string, unknown>>(
|
|
5853
|
+
/**
|
|
5854
|
+
* Name of the class being created
|
|
5855
|
+
*/
|
|
5856
|
+
sClassName: string,
|
|
5857
|
+
/**
|
|
5858
|
+
* Object literal with information about the class
|
|
5859
|
+
*/
|
|
5860
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Button>,
|
|
5861
|
+
/**
|
|
5862
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5863
|
+
* used by this class
|
|
5864
|
+
*/
|
|
5865
|
+
FNMetaImpl?: Function
|
|
5866
|
+
): Function;
|
|
5867
|
+
/**
|
|
5868
|
+
* Returns a metadata object for class sap.ui.webc.main.Button.
|
|
5869
|
+
*/
|
|
5870
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5846
5871
|
/**
|
|
5847
5872
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.main.Button`.
|
|
5848
5873
|
*
|
|
@@ -5903,27 +5928,6 @@ declare namespace sap {
|
|
|
5903
5928
|
*/
|
|
5904
5929
|
oListener?: object
|
|
5905
5930
|
): this;
|
|
5906
|
-
/**
|
|
5907
|
-
* Creates a new subclass of class sap.ui.webc.main.Button with name `sClassName` and enriches it with the
|
|
5908
|
-
* information contained in `oClassInfo`.
|
|
5909
|
-
*
|
|
5910
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
5911
|
-
*/
|
|
5912
|
-
static extend<T extends Record<string, unknown>>(
|
|
5913
|
-
/**
|
|
5914
|
-
* Name of the class being created
|
|
5915
|
-
*/
|
|
5916
|
-
sClassName: string,
|
|
5917
|
-
/**
|
|
5918
|
-
* Object literal with information about the class
|
|
5919
|
-
*/
|
|
5920
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Button>,
|
|
5921
|
-
/**
|
|
5922
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5923
|
-
* used by this class
|
|
5924
|
-
*/
|
|
5925
|
-
FNMetaImpl?: Function
|
|
5926
|
-
): Function;
|
|
5927
5931
|
/**
|
|
5928
5932
|
* Fires event {@link #event:click click} to attached listeners.
|
|
5929
5933
|
*/
|
|
@@ -5982,10 +5986,6 @@ declare namespace sap {
|
|
|
5982
5986
|
* Default value is `false`.
|
|
5983
5987
|
*/
|
|
5984
5988
|
getIconEnd(): boolean;
|
|
5985
|
-
/**
|
|
5986
|
-
* Returns a metadata object for class sap.ui.webc.main.Button.
|
|
5987
|
-
*/
|
|
5988
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5989
5989
|
/**
|
|
5990
5990
|
* Gets current value of property {@link #getSubmits submits}.
|
|
5991
5991
|
*
|
|
@@ -6264,6 +6264,31 @@ declare namespace sap {
|
|
|
6264
6264
|
mSettings?: sap.ui.webc.main.$CalendarSettings
|
|
6265
6265
|
);
|
|
6266
6266
|
|
|
6267
|
+
/**
|
|
6268
|
+
* Creates a new subclass of class sap.ui.webc.main.Calendar with name `sClassName` and enriches it with
|
|
6269
|
+
* the information contained in `oClassInfo`.
|
|
6270
|
+
*
|
|
6271
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
6272
|
+
*/
|
|
6273
|
+
static extend<T extends Record<string, unknown>>(
|
|
6274
|
+
/**
|
|
6275
|
+
* Name of the class being created
|
|
6276
|
+
*/
|
|
6277
|
+
sClassName: string,
|
|
6278
|
+
/**
|
|
6279
|
+
* Object literal with information about the class
|
|
6280
|
+
*/
|
|
6281
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Calendar>,
|
|
6282
|
+
/**
|
|
6283
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6284
|
+
* used by this class
|
|
6285
|
+
*/
|
|
6286
|
+
FNMetaImpl?: Function
|
|
6287
|
+
): Function;
|
|
6288
|
+
/**
|
|
6289
|
+
* Returns a metadata object for class sap.ui.webc.main.Calendar.
|
|
6290
|
+
*/
|
|
6291
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
6267
6292
|
/**
|
|
6268
6293
|
* Adds some date to the aggregation {@link #getDates dates}.
|
|
6269
6294
|
*/
|
|
@@ -6340,27 +6365,6 @@ declare namespace sap {
|
|
|
6340
6365
|
*/
|
|
6341
6366
|
oListener?: object
|
|
6342
6367
|
): this;
|
|
6343
|
-
/**
|
|
6344
|
-
* Creates a new subclass of class sap.ui.webc.main.Calendar with name `sClassName` and enriches it with
|
|
6345
|
-
* the information contained in `oClassInfo`.
|
|
6346
|
-
*
|
|
6347
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
6348
|
-
*/
|
|
6349
|
-
static extend<T extends Record<string, unknown>>(
|
|
6350
|
-
/**
|
|
6351
|
-
* Name of the class being created
|
|
6352
|
-
*/
|
|
6353
|
-
sClassName: string,
|
|
6354
|
-
/**
|
|
6355
|
-
* Object literal with information about the class
|
|
6356
|
-
*/
|
|
6357
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Calendar>,
|
|
6358
|
-
/**
|
|
6359
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6360
|
-
* used by this class
|
|
6361
|
-
*/
|
|
6362
|
-
FNMetaImpl?: Function
|
|
6363
|
-
): Function;
|
|
6364
6368
|
/**
|
|
6365
6369
|
* Fires event {@link #event:selectedDatesChange selectedDatesChange} to attached listeners.
|
|
6366
6370
|
*
|
|
@@ -6418,10 +6422,6 @@ declare namespace sap {
|
|
|
6418
6422
|
* Default value is `empty string`.
|
|
6419
6423
|
*/
|
|
6420
6424
|
getMaxDate(): string;
|
|
6421
|
-
/**
|
|
6422
|
-
* Returns a metadata object for class sap.ui.webc.main.Calendar.
|
|
6423
|
-
*/
|
|
6424
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
6425
6425
|
/**
|
|
6426
6426
|
* Gets current value of property {@link #getMinDate minDate}.
|
|
6427
6427
|
*
|
|
@@ -6735,6 +6735,31 @@ declare namespace sap {
|
|
|
6735
6735
|
mSettings?: sap.ui.webc.main.$CardSettings
|
|
6736
6736
|
);
|
|
6737
6737
|
|
|
6738
|
+
/**
|
|
6739
|
+
* Creates a new subclass of class sap.ui.webc.main.Card with name `sClassName` and enriches it with the
|
|
6740
|
+
* information contained in `oClassInfo`.
|
|
6741
|
+
*
|
|
6742
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
6743
|
+
*/
|
|
6744
|
+
static extend<T extends Record<string, unknown>>(
|
|
6745
|
+
/**
|
|
6746
|
+
* Name of the class being created
|
|
6747
|
+
*/
|
|
6748
|
+
sClassName: string,
|
|
6749
|
+
/**
|
|
6750
|
+
* Object literal with information about the class
|
|
6751
|
+
*/
|
|
6752
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Card>,
|
|
6753
|
+
/**
|
|
6754
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6755
|
+
* used by this class
|
|
6756
|
+
*/
|
|
6757
|
+
FNMetaImpl?: Function
|
|
6758
|
+
): Function;
|
|
6759
|
+
/**
|
|
6760
|
+
* Returns a metadata object for class sap.ui.webc.main.Card.
|
|
6761
|
+
*/
|
|
6762
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
6738
6763
|
/**
|
|
6739
6764
|
* Adds some action to the aggregation {@link #getAction action}.
|
|
6740
6765
|
*/
|
|
@@ -6834,27 +6859,6 @@ declare namespace sap {
|
|
|
6834
6859
|
*/
|
|
6835
6860
|
oListener?: object
|
|
6836
6861
|
): this;
|
|
6837
|
-
/**
|
|
6838
|
-
* Creates a new subclass of class sap.ui.webc.main.Card with name `sClassName` and enriches it with the
|
|
6839
|
-
* information contained in `oClassInfo`.
|
|
6840
|
-
*
|
|
6841
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
6842
|
-
*/
|
|
6843
|
-
static extend<T extends Record<string, unknown>>(
|
|
6844
|
-
/**
|
|
6845
|
-
* Name of the class being created
|
|
6846
|
-
*/
|
|
6847
|
-
sClassName: string,
|
|
6848
|
-
/**
|
|
6849
|
-
* Object literal with information about the class
|
|
6850
|
-
*/
|
|
6851
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Card>,
|
|
6852
|
-
/**
|
|
6853
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
6854
|
-
* used by this class
|
|
6855
|
-
*/
|
|
6856
|
-
FNMetaImpl?: Function
|
|
6857
|
-
): Function;
|
|
6858
6862
|
/**
|
|
6859
6863
|
* Fires event {@link #event:headerClick headerClick} to attached listeners.
|
|
6860
6864
|
*/
|
|
@@ -6901,10 +6905,6 @@ declare namespace sap {
|
|
|
6901
6905
|
* Defines the height of the control
|
|
6902
6906
|
*/
|
|
6903
6907
|
getHeight(): sap.ui.core.CSSSize;
|
|
6904
|
-
/**
|
|
6905
|
-
* Returns a metadata object for class sap.ui.webc.main.Card.
|
|
6906
|
-
*/
|
|
6907
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
6908
6908
|
/**
|
|
6909
6909
|
* Gets current value of property {@link #getStatus status}.
|
|
6910
6910
|
*
|
|
@@ -7213,6 +7213,31 @@ declare namespace sap {
|
|
|
7213
7213
|
mSettings?: sap.ui.webc.main.$CarouselSettings
|
|
7214
7214
|
);
|
|
7215
7215
|
|
|
7216
|
+
/**
|
|
7217
|
+
* Creates a new subclass of class sap.ui.webc.main.Carousel with name `sClassName` and enriches it with
|
|
7218
|
+
* the information contained in `oClassInfo`.
|
|
7219
|
+
*
|
|
7220
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.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.webc.main.Carousel>,
|
|
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
|
+
/**
|
|
7238
|
+
* Returns a metadata object for class sap.ui.webc.main.Carousel.
|
|
7239
|
+
*/
|
|
7240
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
7216
7241
|
/**
|
|
7217
7242
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
7218
7243
|
*/
|
|
@@ -7344,27 +7369,6 @@ declare namespace sap {
|
|
|
7344
7369
|
*/
|
|
7345
7370
|
oListener?: object
|
|
7346
7371
|
): this;
|
|
7347
|
-
/**
|
|
7348
|
-
* Creates a new subclass of class sap.ui.webc.main.Carousel with name `sClassName` and enriches it with
|
|
7349
|
-
* the information contained in `oClassInfo`.
|
|
7350
|
-
*
|
|
7351
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
7352
|
-
*/
|
|
7353
|
-
static extend<T extends Record<string, unknown>>(
|
|
7354
|
-
/**
|
|
7355
|
-
* Name of the class being created
|
|
7356
|
-
*/
|
|
7357
|
-
sClassName: string,
|
|
7358
|
-
/**
|
|
7359
|
-
* Object literal with information about the class
|
|
7360
|
-
*/
|
|
7361
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Carousel>,
|
|
7362
|
-
/**
|
|
7363
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7364
|
-
* used by this class
|
|
7365
|
-
*/
|
|
7366
|
-
FNMetaImpl?: Function
|
|
7367
|
-
): Function;
|
|
7368
7372
|
/**
|
|
7369
7373
|
* Fires event {@link #event:loadMore loadMore} to attached listeners.
|
|
7370
7374
|
*/
|
|
@@ -7385,7 +7389,7 @@ declare namespace sap {
|
|
|
7385
7389
|
/**
|
|
7386
7390
|
* the current `selectedIndex`.
|
|
7387
7391
|
*/
|
|
7388
|
-
selectedIndex?:
|
|
7392
|
+
selectedIndex?: int;
|
|
7389
7393
|
}
|
|
7390
7394
|
): this;
|
|
7391
7395
|
/**
|
|
@@ -7470,10 +7474,6 @@ declare namespace sap {
|
|
|
7470
7474
|
* Default value is `1`.
|
|
7471
7475
|
*/
|
|
7472
7476
|
getItemsPerPageS(): int;
|
|
7473
|
-
/**
|
|
7474
|
-
* Returns a metadata object for class sap.ui.webc.main.Carousel.
|
|
7475
|
-
*/
|
|
7476
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
7477
7477
|
/**
|
|
7478
7478
|
* Gets current value of property {@link #getSelectedIndex selectedIndex}.
|
|
7479
7479
|
*
|
|
@@ -7734,6 +7734,31 @@ declare namespace sap {
|
|
|
7734
7734
|
mSettings?: sap.ui.webc.main.$CheckBoxSettings
|
|
7735
7735
|
);
|
|
7736
7736
|
|
|
7737
|
+
/**
|
|
7738
|
+
* Creates a new subclass of class sap.ui.webc.main.CheckBox with name `sClassName` and enriches it with
|
|
7739
|
+
* the information contained in `oClassInfo`.
|
|
7740
|
+
*
|
|
7741
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
7742
|
+
*/
|
|
7743
|
+
static extend<T extends Record<string, unknown>>(
|
|
7744
|
+
/**
|
|
7745
|
+
* Name of the class being created
|
|
7746
|
+
*/
|
|
7747
|
+
sClassName: string,
|
|
7748
|
+
/**
|
|
7749
|
+
* Object literal with information about the class
|
|
7750
|
+
*/
|
|
7751
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.CheckBox>,
|
|
7752
|
+
/**
|
|
7753
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7754
|
+
* used by this class
|
|
7755
|
+
*/
|
|
7756
|
+
FNMetaImpl?: Function
|
|
7757
|
+
): Function;
|
|
7758
|
+
/**
|
|
7759
|
+
* Returns a metadata object for class sap.ui.webc.main.CheckBox.
|
|
7760
|
+
*/
|
|
7761
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
7737
7762
|
/**
|
|
7738
7763
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.CheckBox`.
|
|
7739
7764
|
*
|
|
@@ -7790,27 +7815,6 @@ declare namespace sap {
|
|
|
7790
7815
|
*/
|
|
7791
7816
|
oListener?: object
|
|
7792
7817
|
): this;
|
|
7793
|
-
/**
|
|
7794
|
-
* Creates a new subclass of class sap.ui.webc.main.CheckBox with name `sClassName` and enriches it with
|
|
7795
|
-
* the information contained in `oClassInfo`.
|
|
7796
|
-
*
|
|
7797
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
7798
|
-
*/
|
|
7799
|
-
static extend<T extends Record<string, unknown>>(
|
|
7800
|
-
/**
|
|
7801
|
-
* Name of the class being created
|
|
7802
|
-
*/
|
|
7803
|
-
sClassName: string,
|
|
7804
|
-
/**
|
|
7805
|
-
* Object literal with information about the class
|
|
7806
|
-
*/
|
|
7807
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.CheckBox>,
|
|
7808
|
-
/**
|
|
7809
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7810
|
-
* used by this class
|
|
7811
|
-
*/
|
|
7812
|
-
FNMetaImpl?: Function
|
|
7813
|
-
): Function;
|
|
7814
7818
|
/**
|
|
7815
7819
|
* Fires event {@link #event:change change} to attached listeners.
|
|
7816
7820
|
*/
|
|
@@ -7856,10 +7860,6 @@ declare namespace sap {
|
|
|
7856
7860
|
* Default value is `false`.
|
|
7857
7861
|
*/
|
|
7858
7862
|
getIndeterminate(): boolean;
|
|
7859
|
-
/**
|
|
7860
|
-
* Returns a metadata object for class sap.ui.webc.main.CheckBox.
|
|
7861
|
-
*/
|
|
7862
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
7863
7863
|
/**
|
|
7864
7864
|
* Gets current value of property {@link #getName name}.
|
|
7865
7865
|
*
|
|
@@ -8116,6 +8116,31 @@ declare namespace sap {
|
|
|
8116
8116
|
mSettings?: sap.ui.webc.main.$ColorPaletteSettings
|
|
8117
8117
|
);
|
|
8118
8118
|
|
|
8119
|
+
/**
|
|
8120
|
+
* Creates a new subclass of class sap.ui.webc.main.ColorPalette with name `sClassName` and enriches it
|
|
8121
|
+
* with the information contained in `oClassInfo`.
|
|
8122
|
+
*
|
|
8123
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
8124
|
+
*/
|
|
8125
|
+
static extend<T extends Record<string, unknown>>(
|
|
8126
|
+
/**
|
|
8127
|
+
* Name of the class being created
|
|
8128
|
+
*/
|
|
8129
|
+
sClassName: string,
|
|
8130
|
+
/**
|
|
8131
|
+
* Object literal with information about the class
|
|
8132
|
+
*/
|
|
8133
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ColorPalette>,
|
|
8134
|
+
/**
|
|
8135
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8136
|
+
* used by this class
|
|
8137
|
+
*/
|
|
8138
|
+
FNMetaImpl?: Function
|
|
8139
|
+
): Function;
|
|
8140
|
+
/**
|
|
8141
|
+
* Returns a metadata object for class sap.ui.webc.main.ColorPalette.
|
|
8142
|
+
*/
|
|
8143
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
8119
8144
|
/**
|
|
8120
8145
|
* Adds some color to the aggregation {@link #getColors colors}.
|
|
8121
8146
|
*/
|
|
@@ -8185,27 +8210,6 @@ declare namespace sap {
|
|
|
8185
8210
|
*/
|
|
8186
8211
|
oListener?: object
|
|
8187
8212
|
): this;
|
|
8188
|
-
/**
|
|
8189
|
-
* Creates a new subclass of class sap.ui.webc.main.ColorPalette with name `sClassName` and enriches it
|
|
8190
|
-
* with the information contained in `oClassInfo`.
|
|
8191
|
-
*
|
|
8192
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
8193
|
-
*/
|
|
8194
|
-
static extend<T extends Record<string, unknown>>(
|
|
8195
|
-
/**
|
|
8196
|
-
* Name of the class being created
|
|
8197
|
-
*/
|
|
8198
|
-
sClassName: string,
|
|
8199
|
-
/**
|
|
8200
|
-
* Object literal with information about the class
|
|
8201
|
-
*/
|
|
8202
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ColorPalette>,
|
|
8203
|
-
/**
|
|
8204
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8205
|
-
* used by this class
|
|
8206
|
-
*/
|
|
8207
|
-
FNMetaImpl?: Function
|
|
8208
|
-
): Function;
|
|
8209
8213
|
/**
|
|
8210
8214
|
* Fires event {@link #event:change change} to attached listeners.
|
|
8211
8215
|
*/
|
|
@@ -8217,7 +8221,7 @@ declare namespace sap {
|
|
|
8217
8221
|
/**
|
|
8218
8222
|
* the selected color
|
|
8219
8223
|
*/
|
|
8220
|
-
color?:
|
|
8224
|
+
color?: string;
|
|
8221
8225
|
}
|
|
8222
8226
|
): this;
|
|
8223
8227
|
/**
|
|
@@ -8226,10 +8230,6 @@ declare namespace sap {
|
|
|
8226
8230
|
* Defines the `sap.ui.webc.main.ColorPaletteItem` items.
|
|
8227
8231
|
*/
|
|
8228
8232
|
getColors(): sap.ui.webc.main.IColorPaletteItem[];
|
|
8229
|
-
/**
|
|
8230
|
-
* Returns a metadata object for class sap.ui.webc.main.ColorPalette.
|
|
8231
|
-
*/
|
|
8232
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
8233
8233
|
/**
|
|
8234
8234
|
* Gets current value of property {@link #getShowMoreColors showMoreColors}.
|
|
8235
8235
|
*
|
|
@@ -8469,6 +8469,31 @@ declare namespace sap {
|
|
|
8469
8469
|
mSettings?: sap.ui.webc.main.$ColorPickerSettings
|
|
8470
8470
|
);
|
|
8471
8471
|
|
|
8472
|
+
/**
|
|
8473
|
+
* Creates a new subclass of class sap.ui.webc.main.ColorPicker with name `sClassName` and enriches it with
|
|
8474
|
+
* the information contained in `oClassInfo`.
|
|
8475
|
+
*
|
|
8476
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
8477
|
+
*/
|
|
8478
|
+
static extend<T extends Record<string, unknown>>(
|
|
8479
|
+
/**
|
|
8480
|
+
* Name of the class being created
|
|
8481
|
+
*/
|
|
8482
|
+
sClassName: string,
|
|
8483
|
+
/**
|
|
8484
|
+
* Object literal with information about the class
|
|
8485
|
+
*/
|
|
8486
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ColorPicker>,
|
|
8487
|
+
/**
|
|
8488
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8489
|
+
* used by this class
|
|
8490
|
+
*/
|
|
8491
|
+
FNMetaImpl?: Function
|
|
8492
|
+
): Function;
|
|
8493
|
+
/**
|
|
8494
|
+
* Returns a metadata object for class sap.ui.webc.main.ColorPicker.
|
|
8495
|
+
*/
|
|
8496
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
8472
8497
|
/**
|
|
8473
8498
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.ColorPicker`.
|
|
8474
8499
|
*
|
|
@@ -8525,27 +8550,6 @@ declare namespace sap {
|
|
|
8525
8550
|
*/
|
|
8526
8551
|
oListener?: object
|
|
8527
8552
|
): this;
|
|
8528
|
-
/**
|
|
8529
|
-
* Creates a new subclass of class sap.ui.webc.main.ColorPicker with name `sClassName` and enriches it with
|
|
8530
|
-
* the information contained in `oClassInfo`.
|
|
8531
|
-
*
|
|
8532
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
8533
|
-
*/
|
|
8534
|
-
static extend<T extends Record<string, unknown>>(
|
|
8535
|
-
/**
|
|
8536
|
-
* Name of the class being created
|
|
8537
|
-
*/
|
|
8538
|
-
sClassName: string,
|
|
8539
|
-
/**
|
|
8540
|
-
* Object literal with information about the class
|
|
8541
|
-
*/
|
|
8542
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ColorPicker>,
|
|
8543
|
-
/**
|
|
8544
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8545
|
-
* used by this class
|
|
8546
|
-
*/
|
|
8547
|
-
FNMetaImpl?: Function
|
|
8548
|
-
): Function;
|
|
8549
8553
|
/**
|
|
8550
8554
|
* Fires event {@link #event:change change} to attached listeners.
|
|
8551
8555
|
*/
|
|
@@ -8563,10 +8567,6 @@ declare namespace sap {
|
|
|
8563
8567
|
* **Note**: use HEX, RGB, RGBA, HSV formats or a CSS color name when modifying this property.
|
|
8564
8568
|
*/
|
|
8565
8569
|
getColor(): string;
|
|
8566
|
-
/**
|
|
8567
|
-
* Returns a metadata object for class sap.ui.webc.main.ColorPicker.
|
|
8568
|
-
*/
|
|
8569
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
8570
8570
|
/**
|
|
8571
8571
|
* Sets a new value for property {@link #getColor color}.
|
|
8572
8572
|
*
|
|
@@ -8635,6 +8635,31 @@ declare namespace sap {
|
|
|
8635
8635
|
mSettings?: sap.ui.webc.main.$ComboBoxSettings
|
|
8636
8636
|
);
|
|
8637
8637
|
|
|
8638
|
+
/**
|
|
8639
|
+
* Creates a new subclass of class sap.ui.webc.main.ComboBox with name `sClassName` and enriches it with
|
|
8640
|
+
* the information contained in `oClassInfo`.
|
|
8641
|
+
*
|
|
8642
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
8643
|
+
*/
|
|
8644
|
+
static extend<T extends Record<string, unknown>>(
|
|
8645
|
+
/**
|
|
8646
|
+
* Name of the class being created
|
|
8647
|
+
*/
|
|
8648
|
+
sClassName: string,
|
|
8649
|
+
/**
|
|
8650
|
+
* Object literal with information about the class
|
|
8651
|
+
*/
|
|
8652
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ComboBox>,
|
|
8653
|
+
/**
|
|
8654
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8655
|
+
* used by this class
|
|
8656
|
+
*/
|
|
8657
|
+
FNMetaImpl?: Function
|
|
8658
|
+
): Function;
|
|
8659
|
+
/**
|
|
8660
|
+
* Returns a metadata object for class sap.ui.webc.main.ComboBox.
|
|
8661
|
+
*/
|
|
8662
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
8638
8663
|
/**
|
|
8639
8664
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
8640
8665
|
*/
|
|
@@ -8827,27 +8852,6 @@ declare namespace sap {
|
|
|
8827
8852
|
*/
|
|
8828
8853
|
oListener?: object
|
|
8829
8854
|
): this;
|
|
8830
|
-
/**
|
|
8831
|
-
* Creates a new subclass of class sap.ui.webc.main.ComboBox with name `sClassName` and enriches it with
|
|
8832
|
-
* the information contained in `oClassInfo`.
|
|
8833
|
-
*
|
|
8834
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
8835
|
-
*/
|
|
8836
|
-
static extend<T extends Record<string, unknown>>(
|
|
8837
|
-
/**
|
|
8838
|
-
* Name of the class being created
|
|
8839
|
-
*/
|
|
8840
|
-
sClassName: string,
|
|
8841
|
-
/**
|
|
8842
|
-
* Object literal with information about the class
|
|
8843
|
-
*/
|
|
8844
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ComboBox>,
|
|
8845
|
-
/**
|
|
8846
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
8847
|
-
* used by this class
|
|
8848
|
-
*/
|
|
8849
|
-
FNMetaImpl?: Function
|
|
8850
|
-
): Function;
|
|
8851
8855
|
/**
|
|
8852
8856
|
* Fires event {@link #event:change change} to attached listeners.
|
|
8853
8857
|
*/
|
|
@@ -8933,10 +8937,6 @@ declare namespace sap {
|
|
|
8933
8937
|
* Default value is `false`.
|
|
8934
8938
|
*/
|
|
8935
8939
|
getLoading(): boolean;
|
|
8936
|
-
/**
|
|
8937
|
-
* Returns a metadata object for class sap.ui.webc.main.ComboBox.
|
|
8938
|
-
*/
|
|
8939
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
8940
8940
|
/**
|
|
8941
8941
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
8942
8942
|
*
|
|
@@ -9301,6 +9301,10 @@ declare namespace sap {
|
|
|
9301
9301
|
*/
|
|
9302
9302
|
FNMetaImpl?: Function
|
|
9303
9303
|
): Function;
|
|
9304
|
+
/**
|
|
9305
|
+
* Returns a metadata object for class sap.ui.webc.main.ComboBoxItem.
|
|
9306
|
+
*/
|
|
9307
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9304
9308
|
/**
|
|
9305
9309
|
* Gets current value of property {@link #getAdditionalText additionalText}.
|
|
9306
9310
|
*
|
|
@@ -9309,10 +9313,6 @@ declare namespace sap {
|
|
|
9309
9313
|
* Default value is `empty string`.
|
|
9310
9314
|
*/
|
|
9311
9315
|
getAdditionalText(): string;
|
|
9312
|
-
/**
|
|
9313
|
-
* Returns a metadata object for class sap.ui.webc.main.ComboBoxItem.
|
|
9314
|
-
*/
|
|
9315
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9316
9316
|
/**
|
|
9317
9317
|
* Gets current value of property {@link #getText text}.
|
|
9318
9318
|
*
|
|
@@ -9396,6 +9396,31 @@ declare namespace sap {
|
|
|
9396
9396
|
mSettings?: sap.ui.webc.main.$CustomListItemSettings
|
|
9397
9397
|
);
|
|
9398
9398
|
|
|
9399
|
+
/**
|
|
9400
|
+
* Creates a new subclass of class sap.ui.webc.main.CustomListItem with name `sClassName` and enriches it
|
|
9401
|
+
* with the information contained in `oClassInfo`.
|
|
9402
|
+
*
|
|
9403
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
9404
|
+
*/
|
|
9405
|
+
static extend<T extends Record<string, unknown>>(
|
|
9406
|
+
/**
|
|
9407
|
+
* Name of the class being created
|
|
9408
|
+
*/
|
|
9409
|
+
sClassName: string,
|
|
9410
|
+
/**
|
|
9411
|
+
* Object literal with information about the class
|
|
9412
|
+
*/
|
|
9413
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.CustomListItem>,
|
|
9414
|
+
/**
|
|
9415
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9416
|
+
* used by this class
|
|
9417
|
+
*/
|
|
9418
|
+
FNMetaImpl?: Function
|
|
9419
|
+
): Function;
|
|
9420
|
+
/**
|
|
9421
|
+
* Returns a metadata object for class sap.ui.webc.main.CustomListItem.
|
|
9422
|
+
*/
|
|
9423
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9399
9424
|
/**
|
|
9400
9425
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
9401
9426
|
*/
|
|
@@ -9465,27 +9490,6 @@ declare namespace sap {
|
|
|
9465
9490
|
*/
|
|
9466
9491
|
oListener?: object
|
|
9467
9492
|
): this;
|
|
9468
|
-
/**
|
|
9469
|
-
* Creates a new subclass of class sap.ui.webc.main.CustomListItem with name `sClassName` and enriches it
|
|
9470
|
-
* with the information contained in `oClassInfo`.
|
|
9471
|
-
*
|
|
9472
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
9473
|
-
*/
|
|
9474
|
-
static extend<T extends Record<string, unknown>>(
|
|
9475
|
-
/**
|
|
9476
|
-
* Name of the class being created
|
|
9477
|
-
*/
|
|
9478
|
-
sClassName: string,
|
|
9479
|
-
/**
|
|
9480
|
-
* Object literal with information about the class
|
|
9481
|
-
*/
|
|
9482
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.CustomListItem>,
|
|
9483
|
-
/**
|
|
9484
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9485
|
-
* used by this class
|
|
9486
|
-
*/
|
|
9487
|
-
FNMetaImpl?: Function
|
|
9488
|
-
): Function;
|
|
9489
9493
|
/**
|
|
9490
9494
|
* Fires event {@link #event:detailClick detailClick} to attached listeners.
|
|
9491
9495
|
*/
|
|
@@ -9510,10 +9514,6 @@ declare namespace sap {
|
|
|
9510
9514
|
* Defines the content of the component.
|
|
9511
9515
|
*/
|
|
9512
9516
|
getContent(): sap.ui.core.Control[];
|
|
9513
|
-
/**
|
|
9514
|
-
* Returns a metadata object for class sap.ui.webc.main.CustomListItem.
|
|
9515
|
-
*/
|
|
9516
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9517
9517
|
/**
|
|
9518
9518
|
* Gets current value of property {@link #getSelected selected}.
|
|
9519
9519
|
*
|
|
@@ -9721,6 +9721,31 @@ declare namespace sap {
|
|
|
9721
9721
|
mSettings?: sap.ui.webc.main.$DatePickerSettings
|
|
9722
9722
|
);
|
|
9723
9723
|
|
|
9724
|
+
/**
|
|
9725
|
+
* Creates a new subclass of class sap.ui.webc.main.DatePicker with name `sClassName` and enriches it with
|
|
9726
|
+
* the information contained in `oClassInfo`.
|
|
9727
|
+
*
|
|
9728
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
9729
|
+
*/
|
|
9730
|
+
static extend<T extends Record<string, unknown>>(
|
|
9731
|
+
/**
|
|
9732
|
+
* Name of the class being created
|
|
9733
|
+
*/
|
|
9734
|
+
sClassName: string,
|
|
9735
|
+
/**
|
|
9736
|
+
* Object literal with information about the class
|
|
9737
|
+
*/
|
|
9738
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DatePicker>,
|
|
9739
|
+
/**
|
|
9740
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9741
|
+
* used by this class
|
|
9742
|
+
*/
|
|
9743
|
+
FNMetaImpl?: Function
|
|
9744
|
+
): Function;
|
|
9745
|
+
/**
|
|
9746
|
+
* Returns a metadata object for class sap.ui.webc.main.DatePicker.
|
|
9747
|
+
*/
|
|
9748
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9724
9749
|
/**
|
|
9725
9750
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.DatePicker`.
|
|
9726
9751
|
*
|
|
@@ -9837,27 +9862,6 @@ declare namespace sap {
|
|
|
9837
9862
|
*/
|
|
9838
9863
|
oListener?: object
|
|
9839
9864
|
): this;
|
|
9840
|
-
/**
|
|
9841
|
-
* Creates a new subclass of class sap.ui.webc.main.DatePicker with name `sClassName` and enriches it with
|
|
9842
|
-
* the information contained in `oClassInfo`.
|
|
9843
|
-
*
|
|
9844
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
9845
|
-
*/
|
|
9846
|
-
static extend<T extends Record<string, unknown>>(
|
|
9847
|
-
/**
|
|
9848
|
-
* Name of the class being created
|
|
9849
|
-
*/
|
|
9850
|
-
sClassName: string,
|
|
9851
|
-
/**
|
|
9852
|
-
* Object literal with information about the class
|
|
9853
|
-
*/
|
|
9854
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DatePicker>,
|
|
9855
|
-
/**
|
|
9856
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9857
|
-
* used by this class
|
|
9858
|
-
*/
|
|
9859
|
-
FNMetaImpl?: Function
|
|
9860
|
-
): Function;
|
|
9861
9865
|
/**
|
|
9862
9866
|
* Fires event {@link #event:change change} to attached listeners.
|
|
9863
9867
|
*/
|
|
@@ -9927,10 +9931,6 @@ declare namespace sap {
|
|
|
9927
9931
|
* Default value is `empty string`.
|
|
9928
9932
|
*/
|
|
9929
9933
|
getMaxDate(): string;
|
|
9930
|
-
/**
|
|
9931
|
-
* Returns a metadata object for class sap.ui.webc.main.DatePicker.
|
|
9932
|
-
*/
|
|
9933
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9934
9934
|
/**
|
|
9935
9935
|
* Gets current value of property {@link #getMinDate minDate}.
|
|
9936
9936
|
*
|
|
@@ -10344,6 +10344,31 @@ declare namespace sap {
|
|
|
10344
10344
|
mSettings?: sap.ui.webc.main.$DateRangePickerSettings
|
|
10345
10345
|
);
|
|
10346
10346
|
|
|
10347
|
+
/**
|
|
10348
|
+
* Creates a new subclass of class sap.ui.webc.main.DateRangePicker with name `sClassName` and enriches
|
|
10349
|
+
* it with the information contained in `oClassInfo`.
|
|
10350
|
+
*
|
|
10351
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
10352
|
+
*/
|
|
10353
|
+
static extend<T extends Record<string, unknown>>(
|
|
10354
|
+
/**
|
|
10355
|
+
* Name of the class being created
|
|
10356
|
+
*/
|
|
10357
|
+
sClassName: string,
|
|
10358
|
+
/**
|
|
10359
|
+
* Object literal with information about the class
|
|
10360
|
+
*/
|
|
10361
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DateRangePicker>,
|
|
10362
|
+
/**
|
|
10363
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10364
|
+
* used by this class
|
|
10365
|
+
*/
|
|
10366
|
+
FNMetaImpl?: Function
|
|
10367
|
+
): Function;
|
|
10368
|
+
/**
|
|
10369
|
+
* Returns a metadata object for class sap.ui.webc.main.DateRangePicker.
|
|
10370
|
+
*/
|
|
10371
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
10347
10372
|
/**
|
|
10348
10373
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.DateRangePicker`.
|
|
10349
10374
|
*
|
|
@@ -10460,27 +10485,6 @@ declare namespace sap {
|
|
|
10460
10485
|
*/
|
|
10461
10486
|
oListener?: object
|
|
10462
10487
|
): this;
|
|
10463
|
-
/**
|
|
10464
|
-
* Creates a new subclass of class sap.ui.webc.main.DateRangePicker with name `sClassName` and enriches
|
|
10465
|
-
* it with the information contained in `oClassInfo`.
|
|
10466
|
-
*
|
|
10467
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
10468
|
-
*/
|
|
10469
|
-
static extend<T extends Record<string, unknown>>(
|
|
10470
|
-
/**
|
|
10471
|
-
* Name of the class being created
|
|
10472
|
-
*/
|
|
10473
|
-
sClassName: string,
|
|
10474
|
-
/**
|
|
10475
|
-
* Object literal with information about the class
|
|
10476
|
-
*/
|
|
10477
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DateRangePicker>,
|
|
10478
|
-
/**
|
|
10479
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10480
|
-
* used by this class
|
|
10481
|
-
*/
|
|
10482
|
-
FNMetaImpl?: Function
|
|
10483
|
-
): Function;
|
|
10484
10488
|
/**
|
|
10485
10489
|
* Fires event {@link #event:change change} to attached listeners.
|
|
10486
10490
|
*/
|
|
@@ -10565,10 +10569,6 @@ declare namespace sap {
|
|
|
10565
10569
|
* Default value is `empty string`.
|
|
10566
10570
|
*/
|
|
10567
10571
|
getMaxDate(): string;
|
|
10568
|
-
/**
|
|
10569
|
-
* Returns a metadata object for class sap.ui.webc.main.DateRangePicker.
|
|
10570
|
-
*/
|
|
10571
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
10572
10572
|
/**
|
|
10573
10573
|
* Gets current value of property {@link #getMinDate minDate}.
|
|
10574
10574
|
*
|
|
@@ -11033,6 +11033,31 @@ declare namespace sap {
|
|
|
11033
11033
|
mSettings?: sap.ui.webc.main.$DateTimePickerSettings
|
|
11034
11034
|
);
|
|
11035
11035
|
|
|
11036
|
+
/**
|
|
11037
|
+
* Creates a new subclass of class sap.ui.webc.main.DateTimePicker with name `sClassName` and enriches it
|
|
11038
|
+
* with the information contained in `oClassInfo`.
|
|
11039
|
+
*
|
|
11040
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
11041
|
+
*/
|
|
11042
|
+
static extend<T extends Record<string, unknown>>(
|
|
11043
|
+
/**
|
|
11044
|
+
* Name of the class being created
|
|
11045
|
+
*/
|
|
11046
|
+
sClassName: string,
|
|
11047
|
+
/**
|
|
11048
|
+
* Object literal with information about the class
|
|
11049
|
+
*/
|
|
11050
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DateTimePicker>,
|
|
11051
|
+
/**
|
|
11052
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11053
|
+
* used by this class
|
|
11054
|
+
*/
|
|
11055
|
+
FNMetaImpl?: Function
|
|
11056
|
+
): Function;
|
|
11057
|
+
/**
|
|
11058
|
+
* Returns a metadata object for class sap.ui.webc.main.DateTimePicker.
|
|
11059
|
+
*/
|
|
11060
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
11036
11061
|
/**
|
|
11037
11062
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.DateTimePicker`.
|
|
11038
11063
|
*
|
|
@@ -11149,27 +11174,6 @@ declare namespace sap {
|
|
|
11149
11174
|
*/
|
|
11150
11175
|
oListener?: object
|
|
11151
11176
|
): this;
|
|
11152
|
-
/**
|
|
11153
|
-
* Creates a new subclass of class sap.ui.webc.main.DateTimePicker with name `sClassName` and enriches it
|
|
11154
|
-
* with the information contained in `oClassInfo`.
|
|
11155
|
-
*
|
|
11156
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
11157
|
-
*/
|
|
11158
|
-
static extend<T extends Record<string, unknown>>(
|
|
11159
|
-
/**
|
|
11160
|
-
* Name of the class being created
|
|
11161
|
-
*/
|
|
11162
|
-
sClassName: string,
|
|
11163
|
-
/**
|
|
11164
|
-
* Object literal with information about the class
|
|
11165
|
-
*/
|
|
11166
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DateTimePicker>,
|
|
11167
|
-
/**
|
|
11168
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11169
|
-
* used by this class
|
|
11170
|
-
*/
|
|
11171
|
-
FNMetaImpl?: Function
|
|
11172
|
-
): Function;
|
|
11173
11177
|
/**
|
|
11174
11178
|
* Fires event {@link #event:change change} to attached listeners.
|
|
11175
11179
|
*/
|
|
@@ -11239,10 +11243,6 @@ declare namespace sap {
|
|
|
11239
11243
|
* Default value is `empty string`.
|
|
11240
11244
|
*/
|
|
11241
11245
|
getMaxDate(): string;
|
|
11242
|
-
/**
|
|
11243
|
-
* Returns a metadata object for class sap.ui.webc.main.DateTimePicker.
|
|
11244
|
-
*/
|
|
11245
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
11246
11246
|
/**
|
|
11247
11247
|
* Gets current value of property {@link #getMinDate minDate}.
|
|
11248
11248
|
*
|
|
@@ -11658,6 +11658,31 @@ declare namespace sap {
|
|
|
11658
11658
|
mSettings?: sap.ui.webc.main.$DialogSettings
|
|
11659
11659
|
);
|
|
11660
11660
|
|
|
11661
|
+
/**
|
|
11662
|
+
* Creates a new subclass of class sap.ui.webc.main.Dialog with name `sClassName` and enriches it with the
|
|
11663
|
+
* information contained in `oClassInfo`.
|
|
11664
|
+
*
|
|
11665
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
11666
|
+
*/
|
|
11667
|
+
static extend<T extends Record<string, unknown>>(
|
|
11668
|
+
/**
|
|
11669
|
+
* Name of the class being created
|
|
11670
|
+
*/
|
|
11671
|
+
sClassName: string,
|
|
11672
|
+
/**
|
|
11673
|
+
* Object literal with information about the class
|
|
11674
|
+
*/
|
|
11675
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Dialog>,
|
|
11676
|
+
/**
|
|
11677
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11678
|
+
* used by this class
|
|
11679
|
+
*/
|
|
11680
|
+
FNMetaImpl?: Function
|
|
11681
|
+
): Function;
|
|
11682
|
+
/**
|
|
11683
|
+
* Returns a metadata object for class sap.ui.webc.main.Dialog.
|
|
11684
|
+
*/
|
|
11685
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
11661
11686
|
/**
|
|
11662
11687
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
11663
11688
|
*/
|
|
@@ -11933,27 +11958,6 @@ declare namespace sap {
|
|
|
11933
11958
|
*/
|
|
11934
11959
|
oListener?: object
|
|
11935
11960
|
): this;
|
|
11936
|
-
/**
|
|
11937
|
-
* Creates a new subclass of class sap.ui.webc.main.Dialog with name `sClassName` and enriches it with the
|
|
11938
|
-
* information contained in `oClassInfo`.
|
|
11939
|
-
*
|
|
11940
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
11941
|
-
*/
|
|
11942
|
-
static extend<T extends Record<string, unknown>>(
|
|
11943
|
-
/**
|
|
11944
|
-
* Name of the class being created
|
|
11945
|
-
*/
|
|
11946
|
-
sClassName: string,
|
|
11947
|
-
/**
|
|
11948
|
-
* Object literal with information about the class
|
|
11949
|
-
*/
|
|
11950
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Dialog>,
|
|
11951
|
-
/**
|
|
11952
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11953
|
-
* used by this class
|
|
11954
|
-
*/
|
|
11955
|
-
FNMetaImpl?: Function
|
|
11956
|
-
): Function;
|
|
11957
11961
|
/**
|
|
11958
11962
|
* Fires event {@link #event:afterClose afterClose} to attached listeners.
|
|
11959
11963
|
*/
|
|
@@ -12069,10 +12073,6 @@ declare namespace sap {
|
|
|
12069
12073
|
* Default value is `empty string`.
|
|
12070
12074
|
*/
|
|
12071
12075
|
getInitialFocus(): string;
|
|
12072
|
-
/**
|
|
12073
|
-
* Returns a metadata object for class sap.ui.webc.main.Dialog.
|
|
12074
|
-
*/
|
|
12075
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
12076
12076
|
/**
|
|
12077
12077
|
* Gets current value of property {@link #getPreventFocusRestore preventFocusRestore}.
|
|
12078
12078
|
*
|
|
@@ -12466,8 +12466,33 @@ declare namespace sap {
|
|
|
12466
12466
|
);
|
|
12467
12467
|
|
|
12468
12468
|
/**
|
|
12469
|
-
*
|
|
12470
|
-
*
|
|
12469
|
+
* Creates a new subclass of class sap.ui.webc.main.DurationPicker with name `sClassName` and enriches it
|
|
12470
|
+
* with the information contained in `oClassInfo`.
|
|
12471
|
+
*
|
|
12472
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
12473
|
+
*/
|
|
12474
|
+
static extend<T extends Record<string, unknown>>(
|
|
12475
|
+
/**
|
|
12476
|
+
* Name of the class being created
|
|
12477
|
+
*/
|
|
12478
|
+
sClassName: string,
|
|
12479
|
+
/**
|
|
12480
|
+
* Object literal with information about the class
|
|
12481
|
+
*/
|
|
12482
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DurationPicker>,
|
|
12483
|
+
/**
|
|
12484
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12485
|
+
* used by this class
|
|
12486
|
+
*/
|
|
12487
|
+
FNMetaImpl?: Function
|
|
12488
|
+
): Function;
|
|
12489
|
+
/**
|
|
12490
|
+
* Returns a metadata object for class sap.ui.webc.main.DurationPicker.
|
|
12491
|
+
*/
|
|
12492
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
12493
|
+
/**
|
|
12494
|
+
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.DurationPicker`.
|
|
12495
|
+
*
|
|
12471
12496
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
12472
12497
|
* otherwise it will be bound to this `sap.ui.webc.main.DurationPicker` itself.
|
|
12473
12498
|
*
|
|
@@ -12583,27 +12608,6 @@ declare namespace sap {
|
|
|
12583
12608
|
*/
|
|
12584
12609
|
oListener?: object
|
|
12585
12610
|
): this;
|
|
12586
|
-
/**
|
|
12587
|
-
* Creates a new subclass of class sap.ui.webc.main.DurationPicker with name `sClassName` and enriches it
|
|
12588
|
-
* with the information contained in `oClassInfo`.
|
|
12589
|
-
*
|
|
12590
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
12591
|
-
*/
|
|
12592
|
-
static extend<T extends Record<string, unknown>>(
|
|
12593
|
-
/**
|
|
12594
|
-
* Name of the class being created
|
|
12595
|
-
*/
|
|
12596
|
-
sClassName: string,
|
|
12597
|
-
/**
|
|
12598
|
-
* Object literal with information about the class
|
|
12599
|
-
*/
|
|
12600
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.DurationPicker>,
|
|
12601
|
-
/**
|
|
12602
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12603
|
-
* used by this class
|
|
12604
|
-
*/
|
|
12605
|
-
FNMetaImpl?: Function
|
|
12606
|
-
): Function;
|
|
12607
12611
|
/**
|
|
12608
12612
|
* Fires event {@link #event:change change} to attached listeners.
|
|
12609
12613
|
*/
|
|
@@ -12685,10 +12689,6 @@ declare namespace sap {
|
|
|
12685
12689
|
* Default value is `"23:59:59"`.
|
|
12686
12690
|
*/
|
|
12687
12691
|
getMaxValue(): string;
|
|
12688
|
-
/**
|
|
12689
|
-
* Returns a metadata object for class sap.ui.webc.main.DurationPicker.
|
|
12690
|
-
*/
|
|
12691
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
12692
12692
|
/**
|
|
12693
12693
|
* Gets current value of property {@link #getMinutesStep minutesStep}.
|
|
12694
12694
|
*
|
|
@@ -13067,6 +13067,31 @@ declare namespace sap {
|
|
|
13067
13067
|
mSettings?: sap.ui.webc.main.$FileUploaderSettings
|
|
13068
13068
|
);
|
|
13069
13069
|
|
|
13070
|
+
/**
|
|
13071
|
+
* Creates a new subclass of class sap.ui.webc.main.FileUploader with name `sClassName` and enriches it
|
|
13072
|
+
* with the information contained in `oClassInfo`.
|
|
13073
|
+
*
|
|
13074
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
13075
|
+
*/
|
|
13076
|
+
static extend<T extends Record<string, unknown>>(
|
|
13077
|
+
/**
|
|
13078
|
+
* Name of the class being created
|
|
13079
|
+
*/
|
|
13080
|
+
sClassName: string,
|
|
13081
|
+
/**
|
|
13082
|
+
* Object literal with information about the class
|
|
13083
|
+
*/
|
|
13084
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.FileUploader>,
|
|
13085
|
+
/**
|
|
13086
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13087
|
+
* used by this class
|
|
13088
|
+
*/
|
|
13089
|
+
FNMetaImpl?: Function
|
|
13090
|
+
): Function;
|
|
13091
|
+
/**
|
|
13092
|
+
* Returns a metadata object for class sap.ui.webc.main.FileUploader.
|
|
13093
|
+
*/
|
|
13094
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
13070
13095
|
/**
|
|
13071
13096
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
13072
13097
|
*/
|
|
@@ -13140,27 +13165,6 @@ declare namespace sap {
|
|
|
13140
13165
|
*/
|
|
13141
13166
|
oListener?: object
|
|
13142
13167
|
): this;
|
|
13143
|
-
/**
|
|
13144
|
-
* Creates a new subclass of class sap.ui.webc.main.FileUploader with name `sClassName` and enriches it
|
|
13145
|
-
* with the information contained in `oClassInfo`.
|
|
13146
|
-
*
|
|
13147
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
13148
|
-
*/
|
|
13149
|
-
static extend<T extends Record<string, unknown>>(
|
|
13150
|
-
/**
|
|
13151
|
-
* Name of the class being created
|
|
13152
|
-
*/
|
|
13153
|
-
sClassName: string,
|
|
13154
|
-
/**
|
|
13155
|
-
* Object literal with information about the class
|
|
13156
|
-
*/
|
|
13157
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.FileUploader>,
|
|
13158
|
-
/**
|
|
13159
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13160
|
-
* used by this class
|
|
13161
|
-
*/
|
|
13162
|
-
FNMetaImpl?: Function
|
|
13163
|
-
): Function;
|
|
13164
13168
|
/**
|
|
13165
13169
|
* Fires event {@link #event:change change} to attached listeners.
|
|
13166
13170
|
*/
|
|
@@ -13216,10 +13220,6 @@ declare namespace sap {
|
|
|
13216
13220
|
* Default value is `false`.
|
|
13217
13221
|
*/
|
|
13218
13222
|
getHideInput(): boolean;
|
|
13219
|
-
/**
|
|
13220
|
-
* Returns a metadata object for class sap.ui.webc.main.FileUploader.
|
|
13221
|
-
*/
|
|
13222
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
13223
13223
|
/**
|
|
13224
13224
|
* Gets current value of property {@link #getMultiple multiple}.
|
|
13225
13225
|
*
|
|
@@ -13564,6 +13564,10 @@ declare namespace sap {
|
|
|
13564
13564
|
*/
|
|
13565
13565
|
FNMetaImpl?: Function
|
|
13566
13566
|
): Function;
|
|
13567
|
+
/**
|
|
13568
|
+
* Returns a metadata object for class sap.ui.webc.main.GroupHeaderListItem.
|
|
13569
|
+
*/
|
|
13570
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
13567
13571
|
/**
|
|
13568
13572
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
13569
13573
|
*
|
|
@@ -13573,10 +13577,6 @@ declare namespace sap {
|
|
|
13573
13577
|
* Default value is `empty string`.
|
|
13574
13578
|
*/
|
|
13575
13579
|
getAccessibleName(): string;
|
|
13576
|
-
/**
|
|
13577
|
-
* Returns a metadata object for class sap.ui.webc.main.GroupHeaderListItem.
|
|
13578
|
-
*/
|
|
13579
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
13580
13580
|
/**
|
|
13581
13581
|
* Gets current value of property {@link #getSelected selected}.
|
|
13582
13582
|
*
|
|
@@ -13698,6 +13698,31 @@ declare namespace sap {
|
|
|
13698
13698
|
mSettings?: sap.ui.webc.main.$IconSettings
|
|
13699
13699
|
);
|
|
13700
13700
|
|
|
13701
|
+
/**
|
|
13702
|
+
* Creates a new subclass of class sap.ui.webc.main.Icon with name `sClassName` and enriches it with the
|
|
13703
|
+
* information contained in `oClassInfo`.
|
|
13704
|
+
*
|
|
13705
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
13706
|
+
*/
|
|
13707
|
+
static extend<T extends Record<string, unknown>>(
|
|
13708
|
+
/**
|
|
13709
|
+
* Name of the class being created
|
|
13710
|
+
*/
|
|
13711
|
+
sClassName: string,
|
|
13712
|
+
/**
|
|
13713
|
+
* Object literal with information about the class
|
|
13714
|
+
*/
|
|
13715
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Icon>,
|
|
13716
|
+
/**
|
|
13717
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13718
|
+
* used by this class
|
|
13719
|
+
*/
|
|
13720
|
+
FNMetaImpl?: Function
|
|
13721
|
+
): Function;
|
|
13722
|
+
/**
|
|
13723
|
+
* Returns a metadata object for class sap.ui.webc.main.Icon.
|
|
13724
|
+
*/
|
|
13725
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
13701
13726
|
/**
|
|
13702
13727
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.main.Icon`.
|
|
13703
13728
|
*
|
|
@@ -13754,27 +13779,6 @@ declare namespace sap {
|
|
|
13754
13779
|
*/
|
|
13755
13780
|
oListener?: object
|
|
13756
13781
|
): this;
|
|
13757
|
-
/**
|
|
13758
|
-
* Creates a new subclass of class sap.ui.webc.main.Icon with name `sClassName` and enriches it with the
|
|
13759
|
-
* information contained in `oClassInfo`.
|
|
13760
|
-
*
|
|
13761
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
13762
|
-
*/
|
|
13763
|
-
static extend<T extends Record<string, unknown>>(
|
|
13764
|
-
/**
|
|
13765
|
-
* Name of the class being created
|
|
13766
|
-
*/
|
|
13767
|
-
sClassName: string,
|
|
13768
|
-
/**
|
|
13769
|
-
* Object literal with information about the class
|
|
13770
|
-
*/
|
|
13771
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Icon>,
|
|
13772
|
-
/**
|
|
13773
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
13774
|
-
* used by this class
|
|
13775
|
-
*/
|
|
13776
|
-
FNMetaImpl?: Function
|
|
13777
|
-
): Function;
|
|
13778
13782
|
/**
|
|
13779
13783
|
* Fires event {@link #event:click click} to attached listeners.
|
|
13780
13784
|
*/
|
|
@@ -13821,10 +13825,6 @@ declare namespace sap {
|
|
|
13821
13825
|
* Default value is `false`.
|
|
13822
13826
|
*/
|
|
13823
13827
|
getInteractive(): boolean;
|
|
13824
|
-
/**
|
|
13825
|
-
* Returns a metadata object for class sap.ui.webc.main.Icon.
|
|
13826
|
-
*/
|
|
13827
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
13828
13828
|
/**
|
|
13829
13829
|
* Gets current value of property {@link #getName name}.
|
|
13830
13830
|
*
|
|
@@ -14050,6 +14050,31 @@ declare namespace sap {
|
|
|
14050
14050
|
mSettings?: sap.ui.webc.main.$InputSettings
|
|
14051
14051
|
);
|
|
14052
14052
|
|
|
14053
|
+
/**
|
|
14054
|
+
* Creates a new subclass of class sap.ui.webc.main.Input with name `sClassName` and enriches it with the
|
|
14055
|
+
* information contained in `oClassInfo`.
|
|
14056
|
+
*
|
|
14057
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
14058
|
+
*/
|
|
14059
|
+
static extend<T extends Record<string, unknown>>(
|
|
14060
|
+
/**
|
|
14061
|
+
* Name of the class being created
|
|
14062
|
+
*/
|
|
14063
|
+
sClassName: string,
|
|
14064
|
+
/**
|
|
14065
|
+
* Object literal with information about the class
|
|
14066
|
+
*/
|
|
14067
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Input>,
|
|
14068
|
+
/**
|
|
14069
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14070
|
+
* used by this class
|
|
14071
|
+
*/
|
|
14072
|
+
FNMetaImpl?: Function
|
|
14073
|
+
): Function;
|
|
14074
|
+
/**
|
|
14075
|
+
* Returns a metadata object for class sap.ui.webc.main.Input.
|
|
14076
|
+
*/
|
|
14077
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
14053
14078
|
/**
|
|
14054
14079
|
* Adds some suggestionItem to the aggregation {@link #getSuggestionItems suggestionItems}.
|
|
14055
14080
|
*/
|
|
@@ -14360,27 +14385,6 @@ declare namespace sap {
|
|
|
14360
14385
|
*/
|
|
14361
14386
|
oListener?: object
|
|
14362
14387
|
): this;
|
|
14363
|
-
/**
|
|
14364
|
-
* Creates a new subclass of class sap.ui.webc.main.Input with name `sClassName` and enriches it with the
|
|
14365
|
-
* information contained in `oClassInfo`.
|
|
14366
|
-
*
|
|
14367
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
14368
|
-
*/
|
|
14369
|
-
static extend<T extends Record<string, unknown>>(
|
|
14370
|
-
/**
|
|
14371
|
-
* Name of the class being created
|
|
14372
|
-
*/
|
|
14373
|
-
sClassName: string,
|
|
14374
|
-
/**
|
|
14375
|
-
* Object literal with information about the class
|
|
14376
|
-
*/
|
|
14377
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Input>,
|
|
14378
|
-
/**
|
|
14379
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14380
|
-
* used by this class
|
|
14381
|
-
*/
|
|
14382
|
-
FNMetaImpl?: Function
|
|
14383
|
-
): Function;
|
|
14384
14388
|
/**
|
|
14385
14389
|
* Fires event {@link #event:change change} to attached listeners.
|
|
14386
14390
|
*/
|
|
@@ -14442,7 +14446,7 @@ declare namespace sap {
|
|
|
14442
14446
|
/**
|
|
14443
14447
|
* The current scroll position
|
|
14444
14448
|
*/
|
|
14445
|
-
scrollTop?:
|
|
14449
|
+
scrollTop?: int;
|
|
14446
14450
|
/**
|
|
14447
14451
|
* The scroll container
|
|
14448
14452
|
*/
|
|
@@ -14471,10 +14475,6 @@ declare namespace sap {
|
|
|
14471
14475
|
* Sets the maximum number of characters available in the input field.
|
|
14472
14476
|
*/
|
|
14473
14477
|
getMaxlength(): int;
|
|
14474
|
-
/**
|
|
14475
|
-
* Returns a metadata object for class sap.ui.webc.main.Input.
|
|
14476
|
-
*/
|
|
14477
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
14478
14478
|
/**
|
|
14479
14479
|
* Gets current value of property {@link #getName name}.
|
|
14480
14480
|
*
|
|
@@ -14900,6 +14900,10 @@ declare namespace sap {
|
|
|
14900
14900
|
*/
|
|
14901
14901
|
FNMetaImpl?: Function
|
|
14902
14902
|
): Function;
|
|
14903
|
+
/**
|
|
14904
|
+
* Returns a metadata object for class sap.ui.webc.main.Label.
|
|
14905
|
+
*/
|
|
14906
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
14903
14907
|
/**
|
|
14904
14908
|
* Gets current value of property {@link #getFor for}.
|
|
14905
14909
|
*
|
|
@@ -14910,10 +14914,6 @@ declare namespace sap {
|
|
|
14910
14914
|
* Default value is `empty string`.
|
|
14911
14915
|
*/
|
|
14912
14916
|
getFor(): string;
|
|
14913
|
-
/**
|
|
14914
|
-
* Returns a metadata object for class sap.ui.webc.main.Label.
|
|
14915
|
-
*/
|
|
14916
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
14917
14917
|
/**
|
|
14918
14918
|
* Gets current value of property {@link #getRequired required}.
|
|
14919
14919
|
*
|
|
@@ -15114,6 +15114,31 @@ declare namespace sap {
|
|
|
15114
15114
|
mSettings?: sap.ui.webc.main.$LinkSettings
|
|
15115
15115
|
);
|
|
15116
15116
|
|
|
15117
|
+
/**
|
|
15118
|
+
* Creates a new subclass of class sap.ui.webc.main.Link with name `sClassName` and enriches it with the
|
|
15119
|
+
* information contained in `oClassInfo`.
|
|
15120
|
+
*
|
|
15121
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
15122
|
+
*/
|
|
15123
|
+
static extend<T extends Record<string, unknown>>(
|
|
15124
|
+
/**
|
|
15125
|
+
* Name of the class being created
|
|
15126
|
+
*/
|
|
15127
|
+
sClassName: string,
|
|
15128
|
+
/**
|
|
15129
|
+
* Object literal with information about the class
|
|
15130
|
+
*/
|
|
15131
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Link>,
|
|
15132
|
+
/**
|
|
15133
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15134
|
+
* used by this class
|
|
15135
|
+
*/
|
|
15136
|
+
FNMetaImpl?: Function
|
|
15137
|
+
): Function;
|
|
15138
|
+
/**
|
|
15139
|
+
* Returns a metadata object for class sap.ui.webc.main.Link.
|
|
15140
|
+
*/
|
|
15141
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
15117
15142
|
/**
|
|
15118
15143
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.main.Link`.
|
|
15119
15144
|
*
|
|
@@ -15171,32 +15196,11 @@ declare namespace sap {
|
|
|
15171
15196
|
oListener?: object
|
|
15172
15197
|
): this;
|
|
15173
15198
|
/**
|
|
15174
|
-
*
|
|
15175
|
-
* information contained in `oClassInfo`.
|
|
15176
|
-
*
|
|
15177
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
15199
|
+
* Fires event {@link #event:click click} to attached listeners.
|
|
15178
15200
|
*/
|
|
15179
|
-
|
|
15180
|
-
/**
|
|
15181
|
-
* Name of the class being created
|
|
15182
|
-
*/
|
|
15183
|
-
sClassName: string,
|
|
15201
|
+
fireClick(
|
|
15184
15202
|
/**
|
|
15185
|
-
*
|
|
15186
|
-
*/
|
|
15187
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Link>,
|
|
15188
|
-
/**
|
|
15189
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15190
|
-
* used by this class
|
|
15191
|
-
*/
|
|
15192
|
-
FNMetaImpl?: Function
|
|
15193
|
-
): Function;
|
|
15194
|
-
/**
|
|
15195
|
-
* Fires event {@link #event:click click} to attached listeners.
|
|
15196
|
-
*/
|
|
15197
|
-
fireClick(
|
|
15198
|
-
/**
|
|
15199
|
-
* Parameters to pass along with the event
|
|
15203
|
+
* Parameters to pass along with the event
|
|
15200
15204
|
*/
|
|
15201
15205
|
mParameters?: object
|
|
15202
15206
|
): this;
|
|
@@ -15230,10 +15234,6 @@ declare namespace sap {
|
|
|
15230
15234
|
* Default value is `empty string`.
|
|
15231
15235
|
*/
|
|
15232
15236
|
getHref(): string;
|
|
15233
|
-
/**
|
|
15234
|
-
* Returns a metadata object for class sap.ui.webc.main.Link.
|
|
15235
|
-
*/
|
|
15236
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
15237
15237
|
/**
|
|
15238
15238
|
* Gets current value of property {@link #getTarget target}.
|
|
15239
15239
|
*
|
|
@@ -15451,6 +15451,31 @@ declare namespace sap {
|
|
|
15451
15451
|
mSettings?: sap.ui.webc.main.$ListSettings
|
|
15452
15452
|
);
|
|
15453
15453
|
|
|
15454
|
+
/**
|
|
15455
|
+
* Creates a new subclass of class sap.ui.webc.main.List with name `sClassName` and enriches it with the
|
|
15456
|
+
* information contained in `oClassInfo`.
|
|
15457
|
+
*
|
|
15458
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
15459
|
+
*/
|
|
15460
|
+
static extend<T extends Record<string, unknown>>(
|
|
15461
|
+
/**
|
|
15462
|
+
* Name of the class being created
|
|
15463
|
+
*/
|
|
15464
|
+
sClassName: string,
|
|
15465
|
+
/**
|
|
15466
|
+
* Object literal with information about the class
|
|
15467
|
+
*/
|
|
15468
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.List>,
|
|
15469
|
+
/**
|
|
15470
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15471
|
+
* used by this class
|
|
15472
|
+
*/
|
|
15473
|
+
FNMetaImpl?: Function
|
|
15474
|
+
): Function;
|
|
15475
|
+
/**
|
|
15476
|
+
* Returns a metadata object for class sap.ui.webc.main.List.
|
|
15477
|
+
*/
|
|
15478
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
15454
15479
|
/**
|
|
15455
15480
|
* Adds some header to the aggregation {@link #getHeader header}.
|
|
15456
15481
|
*/
|
|
@@ -15836,27 +15861,6 @@ declare namespace sap {
|
|
|
15836
15861
|
*/
|
|
15837
15862
|
oListener?: object
|
|
15838
15863
|
): this;
|
|
15839
|
-
/**
|
|
15840
|
-
* Creates a new subclass of class sap.ui.webc.main.List with name `sClassName` and enriches it with the
|
|
15841
|
-
* information contained in `oClassInfo`.
|
|
15842
|
-
*
|
|
15843
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
15844
|
-
*/
|
|
15845
|
-
static extend<T extends Record<string, unknown>>(
|
|
15846
|
-
/**
|
|
15847
|
-
* Name of the class being created
|
|
15848
|
-
*/
|
|
15849
|
-
sClassName: string,
|
|
15850
|
-
/**
|
|
15851
|
-
* Object literal with information about the class
|
|
15852
|
-
*/
|
|
15853
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.List>,
|
|
15854
|
-
/**
|
|
15855
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15856
|
-
* used by this class
|
|
15857
|
-
*/
|
|
15858
|
-
FNMetaImpl?: Function
|
|
15859
|
-
): Function;
|
|
15860
15864
|
/**
|
|
15861
15865
|
* Fires event {@link #event:itemClick itemClick} to attached listeners.
|
|
15862
15866
|
*/
|
|
@@ -16020,10 +16024,6 @@ declare namespace sap {
|
|
|
16020
16024
|
* for the intended design.
|
|
16021
16025
|
*/
|
|
16022
16026
|
getItems(): sap.ui.webc.main.IListItem[];
|
|
16023
|
-
/**
|
|
16024
|
-
* Returns a metadata object for class sap.ui.webc.main.List.
|
|
16025
|
-
*/
|
|
16026
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
16027
16027
|
/**
|
|
16028
16028
|
* Gets current value of property {@link #getMode mode}.
|
|
16029
16029
|
*
|
|
@@ -16363,6 +16363,31 @@ declare namespace sap {
|
|
|
16363
16363
|
mSettings?: sap.ui.webc.main.$MessageStripSettings
|
|
16364
16364
|
);
|
|
16365
16365
|
|
|
16366
|
+
/**
|
|
16367
|
+
* Creates a new subclass of class sap.ui.webc.main.MessageStrip with name `sClassName` and enriches it
|
|
16368
|
+
* with the information contained in `oClassInfo`.
|
|
16369
|
+
*
|
|
16370
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
16371
|
+
*/
|
|
16372
|
+
static extend<T extends Record<string, unknown>>(
|
|
16373
|
+
/**
|
|
16374
|
+
* Name of the class being created
|
|
16375
|
+
*/
|
|
16376
|
+
sClassName: string,
|
|
16377
|
+
/**
|
|
16378
|
+
* Object literal with information about the class
|
|
16379
|
+
*/
|
|
16380
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.MessageStrip>,
|
|
16381
|
+
/**
|
|
16382
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16383
|
+
* used by this class
|
|
16384
|
+
*/
|
|
16385
|
+
FNMetaImpl?: Function
|
|
16386
|
+
): Function;
|
|
16387
|
+
/**
|
|
16388
|
+
* Returns a metadata object for class sap.ui.webc.main.MessageStrip.
|
|
16389
|
+
*/
|
|
16390
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
16366
16391
|
/**
|
|
16367
16392
|
* Attaches event handler `fnFunction` to the {@link #event:close close} event of this `sap.ui.webc.main.MessageStrip`.
|
|
16368
16393
|
*
|
|
@@ -16423,27 +16448,6 @@ declare namespace sap {
|
|
|
16423
16448
|
*/
|
|
16424
16449
|
oListener?: object
|
|
16425
16450
|
): this;
|
|
16426
|
-
/**
|
|
16427
|
-
* Creates a new subclass of class sap.ui.webc.main.MessageStrip with name `sClassName` and enriches it
|
|
16428
|
-
* with the information contained in `oClassInfo`.
|
|
16429
|
-
*
|
|
16430
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
16431
|
-
*/
|
|
16432
|
-
static extend<T extends Record<string, unknown>>(
|
|
16433
|
-
/**
|
|
16434
|
-
* Name of the class being created
|
|
16435
|
-
*/
|
|
16436
|
-
sClassName: string,
|
|
16437
|
-
/**
|
|
16438
|
-
* Object literal with information about the class
|
|
16439
|
-
*/
|
|
16440
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.MessageStrip>,
|
|
16441
|
-
/**
|
|
16442
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16443
|
-
* used by this class
|
|
16444
|
-
*/
|
|
16445
|
-
FNMetaImpl?: Function
|
|
16446
|
-
): Function;
|
|
16447
16451
|
/**
|
|
16448
16452
|
* Fires event {@link #event:close close} to attached listeners.
|
|
16449
16453
|
*/
|
|
@@ -16499,10 +16503,6 @@ declare namespace sap {
|
|
|
16499
16503
|
* See all the available icons in the Icon Explorer.
|
|
16500
16504
|
*/
|
|
16501
16505
|
getIcon(): sap.ui.webc.main.IIcon;
|
|
16502
|
-
/**
|
|
16503
|
-
* Returns a metadata object for class sap.ui.webc.main.MessageStrip.
|
|
16504
|
-
*/
|
|
16505
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
16506
16506
|
/**
|
|
16507
16507
|
* Gets current value of property {@link #getText text}.
|
|
16508
16508
|
*
|
|
@@ -16693,6 +16693,31 @@ declare namespace sap {
|
|
|
16693
16693
|
mSettings?: sap.ui.webc.main.$MultiComboBoxSettings
|
|
16694
16694
|
);
|
|
16695
16695
|
|
|
16696
|
+
/**
|
|
16697
|
+
* Creates a new subclass of class sap.ui.webc.main.MultiComboBox with name `sClassName` and enriches it
|
|
16698
|
+
* with the information contained in `oClassInfo`.
|
|
16699
|
+
*
|
|
16700
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
16701
|
+
*/
|
|
16702
|
+
static extend<T extends Record<string, unknown>>(
|
|
16703
|
+
/**
|
|
16704
|
+
* Name of the class being created
|
|
16705
|
+
*/
|
|
16706
|
+
sClassName: string,
|
|
16707
|
+
/**
|
|
16708
|
+
* Object literal with information about the class
|
|
16709
|
+
*/
|
|
16710
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.MultiComboBox>,
|
|
16711
|
+
/**
|
|
16712
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16713
|
+
* used by this class
|
|
16714
|
+
*/
|
|
16715
|
+
FNMetaImpl?: Function
|
|
16716
|
+
): Function;
|
|
16717
|
+
/**
|
|
16718
|
+
* Returns a metadata object for class sap.ui.webc.main.MultiComboBox.
|
|
16719
|
+
*/
|
|
16720
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
16696
16721
|
/**
|
|
16697
16722
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
16698
16723
|
*/
|
|
@@ -16937,27 +16962,6 @@ declare namespace sap {
|
|
|
16937
16962
|
*/
|
|
16938
16963
|
oListener?: object
|
|
16939
16964
|
): this;
|
|
16940
|
-
/**
|
|
16941
|
-
* Creates a new subclass of class sap.ui.webc.main.MultiComboBox with name `sClassName` and enriches it
|
|
16942
|
-
* with the information contained in `oClassInfo`.
|
|
16943
|
-
*
|
|
16944
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
16945
|
-
*/
|
|
16946
|
-
static extend<T extends Record<string, unknown>>(
|
|
16947
|
-
/**
|
|
16948
|
-
* Name of the class being created
|
|
16949
|
-
*/
|
|
16950
|
-
sClassName: string,
|
|
16951
|
-
/**
|
|
16952
|
-
* Object literal with information about the class
|
|
16953
|
-
*/
|
|
16954
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.MultiComboBox>,
|
|
16955
|
-
/**
|
|
16956
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16957
|
-
* used by this class
|
|
16958
|
-
*/
|
|
16959
|
-
FNMetaImpl?: Function
|
|
16960
|
-
): Function;
|
|
16961
16965
|
/**
|
|
16962
16966
|
* Fires event {@link #event:change change} to attached listeners.
|
|
16963
16967
|
*/
|
|
@@ -17038,10 +17042,6 @@ declare namespace sap {
|
|
|
17038
17042
|
* Defines the component items.
|
|
17039
17043
|
*/
|
|
17040
17044
|
getItems(): sap.ui.webc.main.IMultiComboBoxItem[];
|
|
17041
|
-
/**
|
|
17042
|
-
* Returns a metadata object for class sap.ui.webc.main.MultiComboBox.
|
|
17043
|
-
*/
|
|
17044
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
17045
17045
|
/**
|
|
17046
17046
|
* Returns the indicates whether the dropdown is open. True if the dropdown is open, false otherwise.
|
|
17047
17047
|
*/
|
|
@@ -17374,6 +17374,10 @@ declare namespace sap {
|
|
|
17374
17374
|
*/
|
|
17375
17375
|
FNMetaImpl?: Function
|
|
17376
17376
|
): Function;
|
|
17377
|
+
/**
|
|
17378
|
+
* Returns a metadata object for class sap.ui.webc.main.MultiComboBoxItem.
|
|
17379
|
+
*/
|
|
17380
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
17377
17381
|
/**
|
|
17378
17382
|
* Gets current value of property {@link #getAdditionalText additionalText}.
|
|
17379
17383
|
*
|
|
@@ -17382,10 +17386,6 @@ declare namespace sap {
|
|
|
17382
17386
|
* Default value is `empty string`.
|
|
17383
17387
|
*/
|
|
17384
17388
|
getAdditionalText(): string;
|
|
17385
|
-
/**
|
|
17386
|
-
* Returns a metadata object for class sap.ui.webc.main.MultiComboBoxItem.
|
|
17387
|
-
*/
|
|
17388
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
17389
17389
|
/**
|
|
17390
17390
|
* Gets current value of property {@link #getSelected selected}.
|
|
17391
17391
|
*
|
|
@@ -17492,6 +17492,31 @@ declare namespace sap {
|
|
|
17492
17492
|
mSettings?: sap.ui.webc.main.$MultiInputSettings
|
|
17493
17493
|
);
|
|
17494
17494
|
|
|
17495
|
+
/**
|
|
17496
|
+
* Creates a new subclass of class sap.ui.webc.main.MultiInput with name `sClassName` and enriches it with
|
|
17497
|
+
* the information contained in `oClassInfo`.
|
|
17498
|
+
*
|
|
17499
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
17500
|
+
*/
|
|
17501
|
+
static extend<T extends Record<string, unknown>>(
|
|
17502
|
+
/**
|
|
17503
|
+
* Name of the class being created
|
|
17504
|
+
*/
|
|
17505
|
+
sClassName: string,
|
|
17506
|
+
/**
|
|
17507
|
+
* Object literal with information about the class
|
|
17508
|
+
*/
|
|
17509
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.MultiInput>,
|
|
17510
|
+
/**
|
|
17511
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17512
|
+
* used by this class
|
|
17513
|
+
*/
|
|
17514
|
+
FNMetaImpl?: Function
|
|
17515
|
+
): Function;
|
|
17516
|
+
/**
|
|
17517
|
+
* Returns a metadata object for class sap.ui.webc.main.MultiInput.
|
|
17518
|
+
*/
|
|
17519
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
17495
17520
|
/**
|
|
17496
17521
|
* Adds some suggestionItem to the aggregation {@link #getSuggestionItems suggestionItems}.
|
|
17497
17522
|
*/
|
|
@@ -17932,27 +17957,6 @@ declare namespace sap {
|
|
|
17932
17957
|
*/
|
|
17933
17958
|
oListener?: object
|
|
17934
17959
|
): this;
|
|
17935
|
-
/**
|
|
17936
|
-
* Creates a new subclass of class sap.ui.webc.main.MultiInput with name `sClassName` and enriches it with
|
|
17937
|
-
* the information contained in `oClassInfo`.
|
|
17938
|
-
*
|
|
17939
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
17940
|
-
*/
|
|
17941
|
-
static extend<T extends Record<string, unknown>>(
|
|
17942
|
-
/**
|
|
17943
|
-
* Name of the class being created
|
|
17944
|
-
*/
|
|
17945
|
-
sClassName: string,
|
|
17946
|
-
/**
|
|
17947
|
-
* Object literal with information about the class
|
|
17948
|
-
*/
|
|
17949
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.MultiInput>,
|
|
17950
|
-
/**
|
|
17951
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17952
|
-
* used by this class
|
|
17953
|
-
*/
|
|
17954
|
-
FNMetaImpl?: Function
|
|
17955
|
-
): Function;
|
|
17956
17960
|
/**
|
|
17957
17961
|
* Fires event {@link #event:change change} to attached listeners.
|
|
17958
17962
|
*/
|
|
@@ -18014,7 +18018,7 @@ declare namespace sap {
|
|
|
18014
18018
|
/**
|
|
18015
18019
|
* The current scroll position
|
|
18016
18020
|
*/
|
|
18017
|
-
scrollTop?:
|
|
18021
|
+
scrollTop?: int;
|
|
18018
18022
|
/**
|
|
18019
18023
|
* The scroll container
|
|
18020
18024
|
*/
|
|
@@ -18066,10 +18070,6 @@ declare namespace sap {
|
|
|
18066
18070
|
* Sets the maximum number of characters available in the input field.
|
|
18067
18071
|
*/
|
|
18068
18072
|
getMaxlength(): int;
|
|
18069
|
-
/**
|
|
18070
|
-
* Returns a metadata object for class sap.ui.webc.main.MultiInput.
|
|
18071
|
-
*/
|
|
18072
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
18073
18073
|
/**
|
|
18074
18074
|
* Gets current value of property {@link #getName name}.
|
|
18075
18075
|
*
|
|
@@ -18563,6 +18563,10 @@ declare namespace sap {
|
|
|
18563
18563
|
*/
|
|
18564
18564
|
FNMetaImpl?: Function
|
|
18565
18565
|
): Function;
|
|
18566
|
+
/**
|
|
18567
|
+
* Returns a metadata object for class sap.ui.webc.main.Option.
|
|
18568
|
+
*/
|
|
18569
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
18566
18570
|
/**
|
|
18567
18571
|
* Gets current value of property {@link #getDisabled disabled}.
|
|
18568
18572
|
*
|
|
@@ -18582,10 +18586,6 @@ declare namespace sap {
|
|
|
18582
18586
|
* Icon Explorer.
|
|
18583
18587
|
*/
|
|
18584
18588
|
getIcon(): string;
|
|
18585
|
-
/**
|
|
18586
|
-
* Returns a metadata object for class sap.ui.webc.main.Option.
|
|
18587
|
-
*/
|
|
18588
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
18589
18589
|
/**
|
|
18590
18590
|
* Gets current value of property {@link #getSelected selected}.
|
|
18591
18591
|
*
|
|
@@ -18760,25 +18760,50 @@ declare namespace sap {
|
|
|
18760
18760
|
);
|
|
18761
18761
|
|
|
18762
18762
|
/**
|
|
18763
|
-
*
|
|
18763
|
+
* Creates a new subclass of class sap.ui.webc.main.Panel with name `sClassName` and enriches it with the
|
|
18764
|
+
* information contained in `oClassInfo`.
|
|
18765
|
+
*
|
|
18766
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
18764
18767
|
*/
|
|
18765
|
-
|
|
18768
|
+
static extend<T extends Record<string, unknown>>(
|
|
18766
18769
|
/**
|
|
18767
|
-
*
|
|
18770
|
+
* Name of the class being created
|
|
18768
18771
|
*/
|
|
18769
|
-
|
|
18770
|
-
): this;
|
|
18771
|
-
/**
|
|
18772
|
-
* Adds some header to the aggregation {@link #getHeader header}.
|
|
18773
|
-
*/
|
|
18774
|
-
addHeader(
|
|
18772
|
+
sClassName: string,
|
|
18775
18773
|
/**
|
|
18776
|
-
*
|
|
18774
|
+
* Object literal with information about the class
|
|
18777
18775
|
*/
|
|
18778
|
-
|
|
18779
|
-
|
|
18780
|
-
|
|
18781
|
-
|
|
18776
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Panel>,
|
|
18777
|
+
/**
|
|
18778
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18779
|
+
* used by this class
|
|
18780
|
+
*/
|
|
18781
|
+
FNMetaImpl?: Function
|
|
18782
|
+
): Function;
|
|
18783
|
+
/**
|
|
18784
|
+
* Returns a metadata object for class sap.ui.webc.main.Panel.
|
|
18785
|
+
*/
|
|
18786
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
18787
|
+
/**
|
|
18788
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
18789
|
+
*/
|
|
18790
|
+
addContent(
|
|
18791
|
+
/**
|
|
18792
|
+
* The content to add; if empty, nothing is inserted
|
|
18793
|
+
*/
|
|
18794
|
+
oContent: sap.ui.core.Control
|
|
18795
|
+
): this;
|
|
18796
|
+
/**
|
|
18797
|
+
* Adds some header to the aggregation {@link #getHeader header}.
|
|
18798
|
+
*/
|
|
18799
|
+
addHeader(
|
|
18800
|
+
/**
|
|
18801
|
+
* The header to add; if empty, nothing is inserted
|
|
18802
|
+
*/
|
|
18803
|
+
oHeader: sap.ui.core.Control
|
|
18804
|
+
): this;
|
|
18805
|
+
/**
|
|
18806
|
+
* Attaches event handler `fnFunction` to the {@link #event:toggle toggle} event of this `sap.ui.webc.main.Panel`.
|
|
18782
18807
|
*
|
|
18783
18808
|
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
18784
18809
|
* otherwise it will be bound to this `sap.ui.webc.main.Panel` itself.
|
|
@@ -18841,27 +18866,6 @@ declare namespace sap {
|
|
|
18841
18866
|
*/
|
|
18842
18867
|
oListener?: object
|
|
18843
18868
|
): this;
|
|
18844
|
-
/**
|
|
18845
|
-
* Creates a new subclass of class sap.ui.webc.main.Panel with name `sClassName` and enriches it with the
|
|
18846
|
-
* information contained in `oClassInfo`.
|
|
18847
|
-
*
|
|
18848
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
18849
|
-
*/
|
|
18850
|
-
static extend<T extends Record<string, unknown>>(
|
|
18851
|
-
/**
|
|
18852
|
-
* Name of the class being created
|
|
18853
|
-
*/
|
|
18854
|
-
sClassName: string,
|
|
18855
|
-
/**
|
|
18856
|
-
* Object literal with information about the class
|
|
18857
|
-
*/
|
|
18858
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Panel>,
|
|
18859
|
-
/**
|
|
18860
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
18861
|
-
* used by this class
|
|
18862
|
-
*/
|
|
18863
|
-
FNMetaImpl?: Function
|
|
18864
|
-
): Function;
|
|
18865
18869
|
/**
|
|
18866
18870
|
* Fires event {@link #event:toggle toggle} to attached listeners.
|
|
18867
18871
|
*/
|
|
@@ -18945,10 +18949,6 @@ declare namespace sap {
|
|
|
18945
18949
|
* Defines the height of the control
|
|
18946
18950
|
*/
|
|
18947
18951
|
getHeight(): sap.ui.core.CSSSize;
|
|
18948
|
-
/**
|
|
18949
|
-
* Returns a metadata object for class sap.ui.webc.main.Panel.
|
|
18950
|
-
*/
|
|
18951
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
18952
18952
|
/**
|
|
18953
18953
|
* Gets current value of property {@link #getWidth width}.
|
|
18954
18954
|
*
|
|
@@ -19210,6 +19210,31 @@ declare namespace sap {
|
|
|
19210
19210
|
mSettings?: sap.ui.webc.main.$PopoverSettings
|
|
19211
19211
|
);
|
|
19212
19212
|
|
|
19213
|
+
/**
|
|
19214
|
+
* Creates a new subclass of class sap.ui.webc.main.Popover with name `sClassName` and enriches it with
|
|
19215
|
+
* the information contained in `oClassInfo`.
|
|
19216
|
+
*
|
|
19217
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
19218
|
+
*/
|
|
19219
|
+
static extend<T extends Record<string, unknown>>(
|
|
19220
|
+
/**
|
|
19221
|
+
* Name of the class being created
|
|
19222
|
+
*/
|
|
19223
|
+
sClassName: string,
|
|
19224
|
+
/**
|
|
19225
|
+
* Object literal with information about the class
|
|
19226
|
+
*/
|
|
19227
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Popover>,
|
|
19228
|
+
/**
|
|
19229
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19230
|
+
* used by this class
|
|
19231
|
+
*/
|
|
19232
|
+
FNMetaImpl?: Function
|
|
19233
|
+
): Function;
|
|
19234
|
+
/**
|
|
19235
|
+
* Returns a metadata object for class sap.ui.webc.main.Popover.
|
|
19236
|
+
*/
|
|
19237
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
19213
19238
|
/**
|
|
19214
19239
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
19215
19240
|
*/
|
|
@@ -19485,27 +19510,6 @@ declare namespace sap {
|
|
|
19485
19510
|
*/
|
|
19486
19511
|
oListener?: object
|
|
19487
19512
|
): this;
|
|
19488
|
-
/**
|
|
19489
|
-
* Creates a new subclass of class sap.ui.webc.main.Popover with name `sClassName` and enriches it with
|
|
19490
|
-
* the information contained in `oClassInfo`.
|
|
19491
|
-
*
|
|
19492
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
19493
|
-
*/
|
|
19494
|
-
static extend<T extends Record<string, unknown>>(
|
|
19495
|
-
/**
|
|
19496
|
-
* Name of the class being created
|
|
19497
|
-
*/
|
|
19498
|
-
sClassName: string,
|
|
19499
|
-
/**
|
|
19500
|
-
* Object literal with information about the class
|
|
19501
|
-
*/
|
|
19502
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Popover>,
|
|
19503
|
-
/**
|
|
19504
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
19505
|
-
* used by this class
|
|
19506
|
-
*/
|
|
19507
|
-
FNMetaImpl?: Function
|
|
19508
|
-
): Function;
|
|
19509
19513
|
/**
|
|
19510
19514
|
* Fires event {@link #event:afterClose afterClose} to attached listeners.
|
|
19511
19515
|
*/
|
|
@@ -19633,10 +19637,6 @@ declare namespace sap {
|
|
|
19633
19637
|
* Default value is `empty string`.
|
|
19634
19638
|
*/
|
|
19635
19639
|
getInitialFocus(): string;
|
|
19636
|
-
/**
|
|
19637
|
-
* Returns a metadata object for class sap.ui.webc.main.Popover.
|
|
19638
|
-
*/
|
|
19639
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
19640
19640
|
/**
|
|
19641
19641
|
* Gets current value of property {@link #getModal modal}.
|
|
19642
19642
|
*
|
|
@@ -20086,6 +20086,10 @@ declare namespace sap {
|
|
|
20086
20086
|
*/
|
|
20087
20087
|
FNMetaImpl?: Function
|
|
20088
20088
|
): Function;
|
|
20089
|
+
/**
|
|
20090
|
+
* Returns a metadata object for class sap.ui.webc.main.ProgressIndicator.
|
|
20091
|
+
*/
|
|
20092
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20089
20093
|
/**
|
|
20090
20094
|
* Gets current value of property {@link #getDisabled disabled}.
|
|
20091
20095
|
*
|
|
@@ -20102,10 +20106,6 @@ declare namespace sap {
|
|
|
20102
20106
|
* Default value is `false`.
|
|
20103
20107
|
*/
|
|
20104
20108
|
getHideValue(): boolean;
|
|
20105
|
-
/**
|
|
20106
|
-
* Returns a metadata object for class sap.ui.webc.main.ProgressIndicator.
|
|
20107
|
-
*/
|
|
20108
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20109
20109
|
/**
|
|
20110
20110
|
* Gets current value of property {@link #getValue value}.
|
|
20111
20111
|
*
|
|
@@ -20257,6 +20257,31 @@ declare namespace sap {
|
|
|
20257
20257
|
mSettings?: sap.ui.webc.main.$RadioButtonSettings
|
|
20258
20258
|
);
|
|
20259
20259
|
|
|
20260
|
+
/**
|
|
20261
|
+
* Creates a new subclass of class sap.ui.webc.main.RadioButton with name `sClassName` and enriches it with
|
|
20262
|
+
* the information contained in `oClassInfo`.
|
|
20263
|
+
*
|
|
20264
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
20265
|
+
*/
|
|
20266
|
+
static extend<T extends Record<string, unknown>>(
|
|
20267
|
+
/**
|
|
20268
|
+
* Name of the class being created
|
|
20269
|
+
*/
|
|
20270
|
+
sClassName: string,
|
|
20271
|
+
/**
|
|
20272
|
+
* Object literal with information about the class
|
|
20273
|
+
*/
|
|
20274
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.RadioButton>,
|
|
20275
|
+
/**
|
|
20276
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20277
|
+
* used by this class
|
|
20278
|
+
*/
|
|
20279
|
+
FNMetaImpl?: Function
|
|
20280
|
+
): Function;
|
|
20281
|
+
/**
|
|
20282
|
+
* Returns a metadata object for class sap.ui.webc.main.RadioButton.
|
|
20283
|
+
*/
|
|
20284
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20260
20285
|
/**
|
|
20261
20286
|
* Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.webc.main.RadioButton`.
|
|
20262
20287
|
*
|
|
@@ -20313,27 +20338,6 @@ declare namespace sap {
|
|
|
20313
20338
|
*/
|
|
20314
20339
|
oListener?: object
|
|
20315
20340
|
): this;
|
|
20316
|
-
/**
|
|
20317
|
-
* Creates a new subclass of class sap.ui.webc.main.RadioButton with name `sClassName` and enriches it with
|
|
20318
|
-
* the information contained in `oClassInfo`.
|
|
20319
|
-
*
|
|
20320
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
20321
|
-
*/
|
|
20322
|
-
static extend<T extends Record<string, unknown>>(
|
|
20323
|
-
/**
|
|
20324
|
-
* Name of the class being created
|
|
20325
|
-
*/
|
|
20326
|
-
sClassName: string,
|
|
20327
|
-
/**
|
|
20328
|
-
* Object literal with information about the class
|
|
20329
|
-
*/
|
|
20330
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.RadioButton>,
|
|
20331
|
-
/**
|
|
20332
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20333
|
-
* used by this class
|
|
20334
|
-
*/
|
|
20335
|
-
FNMetaImpl?: Function
|
|
20336
|
-
): Function;
|
|
20337
20341
|
/**
|
|
20338
20342
|
* Fires event {@link #event:select select} to attached listeners.
|
|
20339
20343
|
*/
|
|
@@ -20353,10 +20357,6 @@ declare namespace sap {
|
|
|
20353
20357
|
* Default value is `false`.
|
|
20354
20358
|
*/
|
|
20355
20359
|
getDisabled(): boolean;
|
|
20356
|
-
/**
|
|
20357
|
-
* Returns a metadata object for class sap.ui.webc.main.RadioButton.
|
|
20358
|
-
*/
|
|
20359
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20360
20360
|
/**
|
|
20361
20361
|
* Gets current value of property {@link #getName name}.
|
|
20362
20362
|
*
|
|
@@ -20657,6 +20657,31 @@ declare namespace sap {
|
|
|
20657
20657
|
mSettings?: sap.ui.webc.main.$RangeSliderSettings
|
|
20658
20658
|
);
|
|
20659
20659
|
|
|
20660
|
+
/**
|
|
20661
|
+
* Creates a new subclass of class sap.ui.webc.main.RangeSlider with name `sClassName` and enriches it with
|
|
20662
|
+
* the information contained in `oClassInfo`.
|
|
20663
|
+
*
|
|
20664
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
20665
|
+
*/
|
|
20666
|
+
static extend<T extends Record<string, unknown>>(
|
|
20667
|
+
/**
|
|
20668
|
+
* Name of the class being created
|
|
20669
|
+
*/
|
|
20670
|
+
sClassName: string,
|
|
20671
|
+
/**
|
|
20672
|
+
* Object literal with information about the class
|
|
20673
|
+
*/
|
|
20674
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.RangeSlider>,
|
|
20675
|
+
/**
|
|
20676
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20677
|
+
* used by this class
|
|
20678
|
+
*/
|
|
20679
|
+
FNMetaImpl?: Function
|
|
20680
|
+
): Function;
|
|
20681
|
+
/**
|
|
20682
|
+
* Returns a metadata object for class sap.ui.webc.main.RangeSlider.
|
|
20683
|
+
*/
|
|
20684
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20660
20685
|
/**
|
|
20661
20686
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.RangeSlider`.
|
|
20662
20687
|
*
|
|
@@ -20769,27 +20794,6 @@ declare namespace sap {
|
|
|
20769
20794
|
*/
|
|
20770
20795
|
oListener?: object
|
|
20771
20796
|
): this;
|
|
20772
|
-
/**
|
|
20773
|
-
* Creates a new subclass of class sap.ui.webc.main.RangeSlider with name `sClassName` and enriches it with
|
|
20774
|
-
* the information contained in `oClassInfo`.
|
|
20775
|
-
*
|
|
20776
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
20777
|
-
*/
|
|
20778
|
-
static extend<T extends Record<string, unknown>>(
|
|
20779
|
-
/**
|
|
20780
|
-
* Name of the class being created
|
|
20781
|
-
*/
|
|
20782
|
-
sClassName: string,
|
|
20783
|
-
/**
|
|
20784
|
-
* Object literal with information about the class
|
|
20785
|
-
*/
|
|
20786
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.RangeSlider>,
|
|
20787
|
-
/**
|
|
20788
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
20789
|
-
* used by this class
|
|
20790
|
-
*/
|
|
20791
|
-
FNMetaImpl?: Function
|
|
20792
|
-
): Function;
|
|
20793
20797
|
/**
|
|
20794
20798
|
* Fires event {@link #event:change change} to attached listeners.
|
|
20795
20799
|
*/
|
|
@@ -20846,10 +20850,6 @@ declare namespace sap {
|
|
|
20846
20850
|
* Default value is `100`.
|
|
20847
20851
|
*/
|
|
20848
20852
|
getMax(): float;
|
|
20849
|
-
/**
|
|
20850
|
-
* Returns a metadata object for class sap.ui.webc.main.RangeSlider.
|
|
20851
|
-
*/
|
|
20852
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20853
20853
|
/**
|
|
20854
20854
|
* Gets current value of property {@link #getMin min}.
|
|
20855
20855
|
*
|
|
@@ -21112,6 +21112,31 @@ declare namespace sap {
|
|
|
21112
21112
|
mSettings?: sap.ui.webc.main.$RatingIndicatorSettings
|
|
21113
21113
|
);
|
|
21114
21114
|
|
|
21115
|
+
/**
|
|
21116
|
+
* Creates a new subclass of class sap.ui.webc.main.RatingIndicator with name `sClassName` and enriches
|
|
21117
|
+
* it with the information contained in `oClassInfo`.
|
|
21118
|
+
*
|
|
21119
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
21120
|
+
*/
|
|
21121
|
+
static extend<T extends Record<string, unknown>>(
|
|
21122
|
+
/**
|
|
21123
|
+
* Name of the class being created
|
|
21124
|
+
*/
|
|
21125
|
+
sClassName: string,
|
|
21126
|
+
/**
|
|
21127
|
+
* Object literal with information about the class
|
|
21128
|
+
*/
|
|
21129
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.RatingIndicator>,
|
|
21130
|
+
/**
|
|
21131
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21132
|
+
* used by this class
|
|
21133
|
+
*/
|
|
21134
|
+
FNMetaImpl?: Function
|
|
21135
|
+
): Function;
|
|
21136
|
+
/**
|
|
21137
|
+
* Returns a metadata object for class sap.ui.webc.main.RatingIndicator.
|
|
21138
|
+
*/
|
|
21139
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
21115
21140
|
/**
|
|
21116
21141
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.RatingIndicator`.
|
|
21117
21142
|
*
|
|
@@ -21169,32 +21194,11 @@ declare namespace sap {
|
|
|
21169
21194
|
oListener?: object
|
|
21170
21195
|
): this;
|
|
21171
21196
|
/**
|
|
21172
|
-
*
|
|
21173
|
-
* it with the information contained in `oClassInfo`.
|
|
21174
|
-
*
|
|
21175
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
21197
|
+
* Fires event {@link #event:change change} to attached listeners.
|
|
21176
21198
|
*/
|
|
21177
|
-
|
|
21178
|
-
/**
|
|
21179
|
-
* Name of the class being created
|
|
21180
|
-
*/
|
|
21181
|
-
sClassName: string,
|
|
21199
|
+
fireChange(
|
|
21182
21200
|
/**
|
|
21183
|
-
*
|
|
21184
|
-
*/
|
|
21185
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.RatingIndicator>,
|
|
21186
|
-
/**
|
|
21187
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21188
|
-
* used by this class
|
|
21189
|
-
*/
|
|
21190
|
-
FNMetaImpl?: Function
|
|
21191
|
-
): Function;
|
|
21192
|
-
/**
|
|
21193
|
-
* Fires event {@link #event:change change} to attached listeners.
|
|
21194
|
-
*/
|
|
21195
|
-
fireChange(
|
|
21196
|
-
/**
|
|
21197
|
-
* Parameters to pass along with the event
|
|
21201
|
+
* Parameters to pass along with the event
|
|
21198
21202
|
*/
|
|
21199
21203
|
mParameters?: object
|
|
21200
21204
|
): this;
|
|
@@ -21218,10 +21222,6 @@ declare namespace sap {
|
|
|
21218
21222
|
* Default value is `5`.
|
|
21219
21223
|
*/
|
|
21220
21224
|
getMaxValue(): int;
|
|
21221
|
-
/**
|
|
21222
|
-
* Returns a metadata object for class sap.ui.webc.main.RatingIndicator.
|
|
21223
|
-
*/
|
|
21224
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
21225
21225
|
/**
|
|
21226
21226
|
* Gets current value of property {@link #getReadonly readonly}.
|
|
21227
21227
|
*
|
|
@@ -21358,6 +21358,31 @@ declare namespace sap {
|
|
|
21358
21358
|
mSettings?: sap.ui.webc.main.$ResponsivePopoverSettings
|
|
21359
21359
|
);
|
|
21360
21360
|
|
|
21361
|
+
/**
|
|
21362
|
+
* Creates a new subclass of class sap.ui.webc.main.ResponsivePopover with name `sClassName` and enriches
|
|
21363
|
+
* it with the information contained in `oClassInfo`.
|
|
21364
|
+
*
|
|
21365
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
21366
|
+
*/
|
|
21367
|
+
static extend<T extends Record<string, unknown>>(
|
|
21368
|
+
/**
|
|
21369
|
+
* Name of the class being created
|
|
21370
|
+
*/
|
|
21371
|
+
sClassName: string,
|
|
21372
|
+
/**
|
|
21373
|
+
* Object literal with information about the class
|
|
21374
|
+
*/
|
|
21375
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ResponsivePopover>,
|
|
21376
|
+
/**
|
|
21377
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21378
|
+
* used by this class
|
|
21379
|
+
*/
|
|
21380
|
+
FNMetaImpl?: Function
|
|
21381
|
+
): Function;
|
|
21382
|
+
/**
|
|
21383
|
+
* Returns a metadata object for class sap.ui.webc.main.ResponsivePopover.
|
|
21384
|
+
*/
|
|
21385
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
21361
21386
|
/**
|
|
21362
21387
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
21363
21388
|
*/
|
|
@@ -21641,27 +21666,6 @@ declare namespace sap {
|
|
|
21641
21666
|
*/
|
|
21642
21667
|
oListener?: object
|
|
21643
21668
|
): this;
|
|
21644
|
-
/**
|
|
21645
|
-
* Creates a new subclass of class sap.ui.webc.main.ResponsivePopover with name `sClassName` and enriches
|
|
21646
|
-
* it with the information contained in `oClassInfo`.
|
|
21647
|
-
*
|
|
21648
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
21649
|
-
*/
|
|
21650
|
-
static extend<T extends Record<string, unknown>>(
|
|
21651
|
-
/**
|
|
21652
|
-
* Name of the class being created
|
|
21653
|
-
*/
|
|
21654
|
-
sClassName: string,
|
|
21655
|
-
/**
|
|
21656
|
-
* Object literal with information about the class
|
|
21657
|
-
*/
|
|
21658
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ResponsivePopover>,
|
|
21659
|
-
/**
|
|
21660
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
21661
|
-
* used by this class
|
|
21662
|
-
*/
|
|
21663
|
-
FNMetaImpl?: Function
|
|
21664
|
-
): Function;
|
|
21665
21669
|
/**
|
|
21666
21670
|
* Fires event {@link #event:afterClose afterClose} to attached listeners.
|
|
21667
21671
|
*/
|
|
@@ -21783,10 +21787,6 @@ declare namespace sap {
|
|
|
21783
21787
|
* Default value is `empty string`.
|
|
21784
21788
|
*/
|
|
21785
21789
|
getInitialFocus(): string;
|
|
21786
|
-
/**
|
|
21787
|
-
* Returns a metadata object for class sap.ui.webc.main.ResponsivePopover.
|
|
21788
|
-
*/
|
|
21789
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
21790
21790
|
/**
|
|
21791
21791
|
* Gets current value of property {@link #getModal modal}.
|
|
21792
21792
|
*
|
|
@@ -22194,6 +22194,31 @@ declare namespace sap {
|
|
|
22194
22194
|
mSettings?: sap.ui.webc.main.$SegmentedButtonSettings
|
|
22195
22195
|
);
|
|
22196
22196
|
|
|
22197
|
+
/**
|
|
22198
|
+
* Creates a new subclass of class sap.ui.webc.main.SegmentedButton with name `sClassName` and enriches
|
|
22199
|
+
* it with the information contained in `oClassInfo`.
|
|
22200
|
+
*
|
|
22201
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22202
|
+
*/
|
|
22203
|
+
static extend<T extends Record<string, unknown>>(
|
|
22204
|
+
/**
|
|
22205
|
+
* Name of the class being created
|
|
22206
|
+
*/
|
|
22207
|
+
sClassName: string,
|
|
22208
|
+
/**
|
|
22209
|
+
* Object literal with information about the class
|
|
22210
|
+
*/
|
|
22211
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.SegmentedButton>,
|
|
22212
|
+
/**
|
|
22213
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22214
|
+
* used by this class
|
|
22215
|
+
*/
|
|
22216
|
+
FNMetaImpl?: Function
|
|
22217
|
+
): Function;
|
|
22218
|
+
/**
|
|
22219
|
+
* Returns a metadata object for class sap.ui.webc.main.SegmentedButton.
|
|
22220
|
+
*/
|
|
22221
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
22197
22222
|
/**
|
|
22198
22223
|
* Adds some button to the aggregation {@link #getButtons buttons}.
|
|
22199
22224
|
*/
|
|
@@ -22266,27 +22291,6 @@ declare namespace sap {
|
|
|
22266
22291
|
*/
|
|
22267
22292
|
oListener?: object
|
|
22268
22293
|
): this;
|
|
22269
|
-
/**
|
|
22270
|
-
* Creates a new subclass of class sap.ui.webc.main.SegmentedButton with name `sClassName` and enriches
|
|
22271
|
-
* it with the information contained in `oClassInfo`.
|
|
22272
|
-
*
|
|
22273
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22274
|
-
*/
|
|
22275
|
-
static extend<T extends Record<string, unknown>>(
|
|
22276
|
-
/**
|
|
22277
|
-
* Name of the class being created
|
|
22278
|
-
*/
|
|
22279
|
-
sClassName: string,
|
|
22280
|
-
/**
|
|
22281
|
-
* Object literal with information about the class
|
|
22282
|
-
*/
|
|
22283
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.SegmentedButton>,
|
|
22284
|
-
/**
|
|
22285
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22286
|
-
* used by this class
|
|
22287
|
-
*/
|
|
22288
|
-
FNMetaImpl?: Function
|
|
22289
|
-
): Function;
|
|
22290
22294
|
/**
|
|
22291
22295
|
* Fires event {@link #event:selectionChange selectionChange} to attached listeners.
|
|
22292
22296
|
*/
|
|
@@ -22311,10 +22315,6 @@ declare namespace sap {
|
|
|
22311
22315
|
* **Note:** Use the `sap.ui.webc.main.ToggleButton` for the intended design.
|
|
22312
22316
|
*/
|
|
22313
22317
|
getButtons(): sap.ui.webc.main.IButton[];
|
|
22314
|
-
/**
|
|
22315
|
-
* Returns a metadata object for class sap.ui.webc.main.SegmentedButton.
|
|
22316
|
-
*/
|
|
22317
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
22318
22318
|
/**
|
|
22319
22319
|
* Returns the currently selected button.
|
|
22320
22320
|
*/
|
|
@@ -22418,6 +22418,31 @@ declare namespace sap {
|
|
|
22418
22418
|
mSettings?: sap.ui.webc.main.$SelectSettings
|
|
22419
22419
|
);
|
|
22420
22420
|
|
|
22421
|
+
/**
|
|
22422
|
+
* Creates a new subclass of class sap.ui.webc.main.Select with name `sClassName` and enriches it with the
|
|
22423
|
+
* information contained in `oClassInfo`.
|
|
22424
|
+
*
|
|
22425
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22426
|
+
*/
|
|
22427
|
+
static extend<T extends Record<string, unknown>>(
|
|
22428
|
+
/**
|
|
22429
|
+
* Name of the class being created
|
|
22430
|
+
*/
|
|
22431
|
+
sClassName: string,
|
|
22432
|
+
/**
|
|
22433
|
+
* Object literal with information about the class
|
|
22434
|
+
*/
|
|
22435
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Select>,
|
|
22436
|
+
/**
|
|
22437
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22438
|
+
* used by this class
|
|
22439
|
+
*/
|
|
22440
|
+
FNMetaImpl?: Function
|
|
22441
|
+
): Function;
|
|
22442
|
+
/**
|
|
22443
|
+
* Returns a metadata object for class sap.ui.webc.main.Select.
|
|
22444
|
+
*/
|
|
22445
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
22421
22446
|
/**
|
|
22422
22447
|
* Adds some option to the aggregation {@link #getOptions options}.
|
|
22423
22448
|
*/
|
|
@@ -22487,27 +22512,6 @@ declare namespace sap {
|
|
|
22487
22512
|
*/
|
|
22488
22513
|
oListener?: object
|
|
22489
22514
|
): this;
|
|
22490
|
-
/**
|
|
22491
|
-
* Creates a new subclass of class sap.ui.webc.main.Select with name `sClassName` and enriches it with the
|
|
22492
|
-
* information contained in `oClassInfo`.
|
|
22493
|
-
*
|
|
22494
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22495
|
-
*/
|
|
22496
|
-
static extend<T extends Record<string, unknown>>(
|
|
22497
|
-
/**
|
|
22498
|
-
* Name of the class being created
|
|
22499
|
-
*/
|
|
22500
|
-
sClassName: string,
|
|
22501
|
-
/**
|
|
22502
|
-
* Object literal with information about the class
|
|
22503
|
-
*/
|
|
22504
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Select>,
|
|
22505
|
-
/**
|
|
22506
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22507
|
-
* used by this class
|
|
22508
|
-
*/
|
|
22509
|
-
FNMetaImpl?: Function
|
|
22510
|
-
): Function;
|
|
22511
22515
|
/**
|
|
22512
22516
|
* Fires event {@link #event:change change} to attached listeners.
|
|
22513
22517
|
*/
|
|
@@ -22532,10 +22536,6 @@ declare namespace sap {
|
|
|
22532
22536
|
* Default value is `false`.
|
|
22533
22537
|
*/
|
|
22534
22538
|
getDisabled(): boolean;
|
|
22535
|
-
/**
|
|
22536
|
-
* Returns a metadata object for class sap.ui.webc.main.Select.
|
|
22537
|
-
*/
|
|
22538
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
22539
22539
|
/**
|
|
22540
22540
|
* Gets current value of property {@link #getName name}.
|
|
22541
22541
|
*
|
|
@@ -22828,6 +22828,31 @@ declare namespace sap {
|
|
|
22828
22828
|
mSettings?: sap.ui.webc.main.$SliderSettings
|
|
22829
22829
|
);
|
|
22830
22830
|
|
|
22831
|
+
/**
|
|
22832
|
+
* Creates a new subclass of class sap.ui.webc.main.Slider with name `sClassName` and enriches it with the
|
|
22833
|
+
* information contained in `oClassInfo`.
|
|
22834
|
+
*
|
|
22835
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22836
|
+
*/
|
|
22837
|
+
static extend<T extends Record<string, unknown>>(
|
|
22838
|
+
/**
|
|
22839
|
+
* Name of the class being created
|
|
22840
|
+
*/
|
|
22841
|
+
sClassName: string,
|
|
22842
|
+
/**
|
|
22843
|
+
* Object literal with information about the class
|
|
22844
|
+
*/
|
|
22845
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Slider>,
|
|
22846
|
+
/**
|
|
22847
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22848
|
+
* used by this class
|
|
22849
|
+
*/
|
|
22850
|
+
FNMetaImpl?: Function
|
|
22851
|
+
): Function;
|
|
22852
|
+
/**
|
|
22853
|
+
* Returns a metadata object for class sap.ui.webc.main.Slider.
|
|
22854
|
+
*/
|
|
22855
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
22831
22856
|
/**
|
|
22832
22857
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.Slider`.
|
|
22833
22858
|
*
|
|
@@ -22940,27 +22965,6 @@ declare namespace sap {
|
|
|
22940
22965
|
*/
|
|
22941
22966
|
oListener?: object
|
|
22942
22967
|
): this;
|
|
22943
|
-
/**
|
|
22944
|
-
* Creates a new subclass of class sap.ui.webc.main.Slider with name `sClassName` and enriches it with the
|
|
22945
|
-
* information contained in `oClassInfo`.
|
|
22946
|
-
*
|
|
22947
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
22948
|
-
*/
|
|
22949
|
-
static extend<T extends Record<string, unknown>>(
|
|
22950
|
-
/**
|
|
22951
|
-
* Name of the class being created
|
|
22952
|
-
*/
|
|
22953
|
-
sClassName: string,
|
|
22954
|
-
/**
|
|
22955
|
-
* Object literal with information about the class
|
|
22956
|
-
*/
|
|
22957
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Slider>,
|
|
22958
|
-
/**
|
|
22959
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
22960
|
-
* used by this class
|
|
22961
|
-
*/
|
|
22962
|
-
FNMetaImpl?: Function
|
|
22963
|
-
): Function;
|
|
22964
22968
|
/**
|
|
22965
22969
|
* Fires event {@link #event:change change} to attached listeners.
|
|
22966
22970
|
*/
|
|
@@ -23007,10 +23011,6 @@ declare namespace sap {
|
|
|
23007
23011
|
* Default value is `100`.
|
|
23008
23012
|
*/
|
|
23009
23013
|
getMax(): float;
|
|
23010
|
-
/**
|
|
23011
|
-
* Returns a metadata object for class sap.ui.webc.main.Slider.
|
|
23012
|
-
*/
|
|
23013
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
23014
23014
|
/**
|
|
23015
23015
|
* Gets current value of property {@link #getMin min}.
|
|
23016
23016
|
*
|
|
@@ -23241,6 +23241,31 @@ declare namespace sap {
|
|
|
23241
23241
|
mSettings?: sap.ui.webc.main.$StandardListItemSettings
|
|
23242
23242
|
);
|
|
23243
23243
|
|
|
23244
|
+
/**
|
|
23245
|
+
* Creates a new subclass of class sap.ui.webc.main.StandardListItem with name `sClassName` and enriches
|
|
23246
|
+
* it with the information contained in `oClassInfo`.
|
|
23247
|
+
*
|
|
23248
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
23249
|
+
*/
|
|
23250
|
+
static extend<T extends Record<string, unknown>>(
|
|
23251
|
+
/**
|
|
23252
|
+
* Name of the class being created
|
|
23253
|
+
*/
|
|
23254
|
+
sClassName: string,
|
|
23255
|
+
/**
|
|
23256
|
+
* Object literal with information about the class
|
|
23257
|
+
*/
|
|
23258
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.StandardListItem>,
|
|
23259
|
+
/**
|
|
23260
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23261
|
+
* used by this class
|
|
23262
|
+
*/
|
|
23263
|
+
FNMetaImpl?: Function
|
|
23264
|
+
): Function;
|
|
23265
|
+
/**
|
|
23266
|
+
* Returns a metadata object for class sap.ui.webc.main.StandardListItem.
|
|
23267
|
+
*/
|
|
23268
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
23244
23269
|
/**
|
|
23245
23270
|
* Attaches event handler `fnFunction` to the {@link #event:detailClick detailClick} event of this `sap.ui.webc.main.StandardListItem`.
|
|
23246
23271
|
*
|
|
@@ -23297,27 +23322,6 @@ declare namespace sap {
|
|
|
23297
23322
|
*/
|
|
23298
23323
|
oListener?: object
|
|
23299
23324
|
): this;
|
|
23300
|
-
/**
|
|
23301
|
-
* Creates a new subclass of class sap.ui.webc.main.StandardListItem with name `sClassName` and enriches
|
|
23302
|
-
* it with the information contained in `oClassInfo`.
|
|
23303
|
-
*
|
|
23304
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
23305
|
-
*/
|
|
23306
|
-
static extend<T extends Record<string, unknown>>(
|
|
23307
|
-
/**
|
|
23308
|
-
* Name of the class being created
|
|
23309
|
-
*/
|
|
23310
|
-
sClassName: string,
|
|
23311
|
-
/**
|
|
23312
|
-
* Object literal with information about the class
|
|
23313
|
-
*/
|
|
23314
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.StandardListItem>,
|
|
23315
|
-
/**
|
|
23316
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23317
|
-
* used by this class
|
|
23318
|
-
*/
|
|
23319
|
-
FNMetaImpl?: Function
|
|
23320
|
-
): Function;
|
|
23321
23325
|
/**
|
|
23322
23326
|
* Fires event {@link #event:detailClick detailClick} to attached listeners.
|
|
23323
23327
|
*/
|
|
@@ -23384,10 +23388,6 @@ declare namespace sap {
|
|
|
23384
23388
|
* **Note:** The `image` would be displayed in the beginning of the list item.
|
|
23385
23389
|
*/
|
|
23386
23390
|
getImage(): string;
|
|
23387
|
-
/**
|
|
23388
|
-
* Returns a metadata object for class sap.ui.webc.main.StandardListItem.
|
|
23389
|
-
*/
|
|
23390
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
23391
23391
|
/**
|
|
23392
23392
|
* Gets current value of property {@link #getSelected selected}.
|
|
23393
23393
|
*
|
|
@@ -23636,6 +23636,31 @@ declare namespace sap {
|
|
|
23636
23636
|
mSettings?: sap.ui.webc.main.$StepInputSettings
|
|
23637
23637
|
);
|
|
23638
23638
|
|
|
23639
|
+
/**
|
|
23640
|
+
* Creates a new subclass of class sap.ui.webc.main.StepInput with name `sClassName` and enriches it with
|
|
23641
|
+
* the information contained in `oClassInfo`.
|
|
23642
|
+
*
|
|
23643
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
23644
|
+
*/
|
|
23645
|
+
static extend<T extends Record<string, unknown>>(
|
|
23646
|
+
/**
|
|
23647
|
+
* Name of the class being created
|
|
23648
|
+
*/
|
|
23649
|
+
sClassName: string,
|
|
23650
|
+
/**
|
|
23651
|
+
* Object literal with information about the class
|
|
23652
|
+
*/
|
|
23653
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.StepInput>,
|
|
23654
|
+
/**
|
|
23655
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23656
|
+
* used by this class
|
|
23657
|
+
*/
|
|
23658
|
+
FNMetaImpl?: Function
|
|
23659
|
+
): Function;
|
|
23660
|
+
/**
|
|
23661
|
+
* Returns a metadata object for class sap.ui.webc.main.StepInput.
|
|
23662
|
+
*/
|
|
23663
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
23639
23664
|
/**
|
|
23640
23665
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.StepInput`.
|
|
23641
23666
|
*
|
|
@@ -23692,27 +23717,6 @@ declare namespace sap {
|
|
|
23692
23717
|
*/
|
|
23693
23718
|
oListener?: object
|
|
23694
23719
|
): this;
|
|
23695
|
-
/**
|
|
23696
|
-
* Creates a new subclass of class sap.ui.webc.main.StepInput with name `sClassName` and enriches it with
|
|
23697
|
-
* the information contained in `oClassInfo`.
|
|
23698
|
-
*
|
|
23699
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
23700
|
-
*/
|
|
23701
|
-
static extend<T extends Record<string, unknown>>(
|
|
23702
|
-
/**
|
|
23703
|
-
* Name of the class being created
|
|
23704
|
-
*/
|
|
23705
|
-
sClassName: string,
|
|
23706
|
-
/**
|
|
23707
|
-
* Object literal with information about the class
|
|
23708
|
-
*/
|
|
23709
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.StepInput>,
|
|
23710
|
-
/**
|
|
23711
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
23712
|
-
* used by this class
|
|
23713
|
-
*/
|
|
23714
|
-
FNMetaImpl?: Function
|
|
23715
|
-
): Function;
|
|
23716
23720
|
/**
|
|
23717
23721
|
* Fires event {@link #event:change change} to attached listeners.
|
|
23718
23722
|
*/
|
|
@@ -23736,10 +23740,6 @@ declare namespace sap {
|
|
|
23736
23740
|
* Defines a maximum value of the component.
|
|
23737
23741
|
*/
|
|
23738
23742
|
getMax(): float;
|
|
23739
|
-
/**
|
|
23740
|
-
* Returns a metadata object for class sap.ui.webc.main.StepInput.
|
|
23741
|
-
*/
|
|
23742
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
23743
23743
|
/**
|
|
23744
23744
|
* Gets current value of property {@link #getMin min}.
|
|
23745
23745
|
*
|
|
@@ -24101,6 +24101,10 @@ declare namespace sap {
|
|
|
24101
24101
|
*/
|
|
24102
24102
|
FNMetaImpl?: Function
|
|
24103
24103
|
): Function;
|
|
24104
|
+
/**
|
|
24105
|
+
* Returns a metadata object for class sap.ui.webc.main.SuggestionItem.
|
|
24106
|
+
*/
|
|
24107
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24104
24108
|
/**
|
|
24105
24109
|
* Gets current value of property {@link #getAdditionalText additionalText}.
|
|
24106
24110
|
*
|
|
@@ -24161,10 +24165,6 @@ declare namespace sap {
|
|
|
24161
24165
|
* **Note:** The `image` would be displayed in the beginning of the item.
|
|
24162
24166
|
*/
|
|
24163
24167
|
getImage(): string;
|
|
24164
|
-
/**
|
|
24165
|
-
* Returns a metadata object for class sap.ui.webc.main.SuggestionItem.
|
|
24166
|
-
*/
|
|
24167
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24168
24168
|
/**
|
|
24169
24169
|
* Gets current value of property {@link #getText text}.
|
|
24170
24170
|
*
|
|
@@ -24384,6 +24384,31 @@ declare namespace sap {
|
|
|
24384
24384
|
mSettings?: sap.ui.webc.main.$SwitchSettings
|
|
24385
24385
|
);
|
|
24386
24386
|
|
|
24387
|
+
/**
|
|
24388
|
+
* Creates a new subclass of class sap.ui.webc.main.Switch with name `sClassName` and enriches it with the
|
|
24389
|
+
* information contained in `oClassInfo`.
|
|
24390
|
+
*
|
|
24391
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
24392
|
+
*/
|
|
24393
|
+
static extend<T extends Record<string, unknown>>(
|
|
24394
|
+
/**
|
|
24395
|
+
* Name of the class being created
|
|
24396
|
+
*/
|
|
24397
|
+
sClassName: string,
|
|
24398
|
+
/**
|
|
24399
|
+
* Object literal with information about the class
|
|
24400
|
+
*/
|
|
24401
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Switch>,
|
|
24402
|
+
/**
|
|
24403
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24404
|
+
* used by this class
|
|
24405
|
+
*/
|
|
24406
|
+
FNMetaImpl?: Function
|
|
24407
|
+
): Function;
|
|
24408
|
+
/**
|
|
24409
|
+
* Returns a metadata object for class sap.ui.webc.main.Switch.
|
|
24410
|
+
*/
|
|
24411
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24387
24412
|
/**
|
|
24388
24413
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.Switch`.
|
|
24389
24414
|
*
|
|
@@ -24440,27 +24465,6 @@ declare namespace sap {
|
|
|
24440
24465
|
*/
|
|
24441
24466
|
oListener?: object
|
|
24442
24467
|
): this;
|
|
24443
|
-
/**
|
|
24444
|
-
* Creates a new subclass of class sap.ui.webc.main.Switch with name `sClassName` and enriches it with the
|
|
24445
|
-
* information contained in `oClassInfo`.
|
|
24446
|
-
*
|
|
24447
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
24448
|
-
*/
|
|
24449
|
-
static extend<T extends Record<string, unknown>>(
|
|
24450
|
-
/**
|
|
24451
|
-
* Name of the class being created
|
|
24452
|
-
*/
|
|
24453
|
-
sClassName: string,
|
|
24454
|
-
/**
|
|
24455
|
-
* Object literal with information about the class
|
|
24456
|
-
*/
|
|
24457
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Switch>,
|
|
24458
|
-
/**
|
|
24459
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24460
|
-
* used by this class
|
|
24461
|
-
*/
|
|
24462
|
-
FNMetaImpl?: Function
|
|
24463
|
-
): Function;
|
|
24464
24468
|
/**
|
|
24465
24469
|
* Fires event {@link #event:change change} to attached listeners.
|
|
24466
24470
|
*/
|
|
@@ -24501,10 +24505,6 @@ declare namespace sap {
|
|
|
24501
24505
|
* Default value is `false`.
|
|
24502
24506
|
*/
|
|
24503
24507
|
getDisabled(): boolean;
|
|
24504
|
-
/**
|
|
24505
|
-
* Returns a metadata object for class sap.ui.webc.main.Switch.
|
|
24506
|
-
*/
|
|
24507
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24508
24508
|
/**
|
|
24509
24509
|
* Gets current value of property {@link #getTextOff textOff}.
|
|
24510
24510
|
*
|
|
@@ -24659,19 +24659,6 @@ declare namespace sap {
|
|
|
24659
24659
|
mSettings?: sap.ui.webc.main.$TabSettings
|
|
24660
24660
|
);
|
|
24661
24661
|
|
|
24662
|
-
/**
|
|
24663
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
24664
|
-
*/
|
|
24665
|
-
addContent(
|
|
24666
|
-
/**
|
|
24667
|
-
* The content to add; if empty, nothing is inserted
|
|
24668
|
-
*/
|
|
24669
|
-
oContent: sap.ui.core.Control
|
|
24670
|
-
): this;
|
|
24671
|
-
/**
|
|
24672
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
24673
|
-
*/
|
|
24674
|
-
destroyContent(): this;
|
|
24675
24662
|
/**
|
|
24676
24663
|
* Creates a new subclass of class sap.ui.webc.main.Tab with name `sClassName` and enriches it with the
|
|
24677
24664
|
* information contained in `oClassInfo`.
|
|
@@ -24693,6 +24680,23 @@ declare namespace sap {
|
|
|
24693
24680
|
*/
|
|
24694
24681
|
FNMetaImpl?: Function
|
|
24695
24682
|
): Function;
|
|
24683
|
+
/**
|
|
24684
|
+
* Returns a metadata object for class sap.ui.webc.main.Tab.
|
|
24685
|
+
*/
|
|
24686
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24687
|
+
/**
|
|
24688
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
24689
|
+
*/
|
|
24690
|
+
addContent(
|
|
24691
|
+
/**
|
|
24692
|
+
* The content to add; if empty, nothing is inserted
|
|
24693
|
+
*/
|
|
24694
|
+
oContent: sap.ui.core.Control
|
|
24695
|
+
): this;
|
|
24696
|
+
/**
|
|
24697
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
24698
|
+
*/
|
|
24699
|
+
destroyContent(): this;
|
|
24696
24700
|
/**
|
|
24697
24701
|
* Gets current value of property {@link #getAdditionalText additionalText}.
|
|
24698
24702
|
*
|
|
@@ -24745,10 +24749,6 @@ declare namespace sap {
|
|
|
24745
24749
|
* Default value is `empty string`.
|
|
24746
24750
|
*/
|
|
24747
24751
|
getIcon(): string;
|
|
24748
|
-
/**
|
|
24749
|
-
* Returns a metadata object for class sap.ui.webc.main.Tab.
|
|
24750
|
-
*/
|
|
24751
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24752
24752
|
/**
|
|
24753
24753
|
* Gets current value of property {@link #getSelected selected}.
|
|
24754
24754
|
*
|
|
@@ -24964,6 +24964,31 @@ declare namespace sap {
|
|
|
24964
24964
|
mSettings?: sap.ui.webc.main.$TabContainerSettings
|
|
24965
24965
|
);
|
|
24966
24966
|
|
|
24967
|
+
/**
|
|
24968
|
+
* Creates a new subclass of class sap.ui.webc.main.TabContainer with name `sClassName` and enriches it
|
|
24969
|
+
* with the information contained in `oClassInfo`.
|
|
24970
|
+
*
|
|
24971
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
24972
|
+
*/
|
|
24973
|
+
static extend<T extends Record<string, unknown>>(
|
|
24974
|
+
/**
|
|
24975
|
+
* Name of the class being created
|
|
24976
|
+
*/
|
|
24977
|
+
sClassName: string,
|
|
24978
|
+
/**
|
|
24979
|
+
* Object literal with information about the class
|
|
24980
|
+
*/
|
|
24981
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.TabContainer>,
|
|
24982
|
+
/**
|
|
24983
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
24984
|
+
* used by this class
|
|
24985
|
+
*/
|
|
24986
|
+
FNMetaImpl?: Function
|
|
24987
|
+
): Function;
|
|
24988
|
+
/**
|
|
24989
|
+
* Returns a metadata object for class sap.ui.webc.main.TabContainer.
|
|
24990
|
+
*/
|
|
24991
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
24967
24992
|
/**
|
|
24968
24993
|
* Adds some item to the aggregation {@link #getItems items}.
|
|
24969
24994
|
*/
|
|
@@ -25037,27 +25062,6 @@ declare namespace sap {
|
|
|
25037
25062
|
*/
|
|
25038
25063
|
oListener?: object
|
|
25039
25064
|
): this;
|
|
25040
|
-
/**
|
|
25041
|
-
* Creates a new subclass of class sap.ui.webc.main.TabContainer with name `sClassName` and enriches it
|
|
25042
|
-
* with the information contained in `oClassInfo`.
|
|
25043
|
-
*
|
|
25044
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
25045
|
-
*/
|
|
25046
|
-
static extend<T extends Record<string, unknown>>(
|
|
25047
|
-
/**
|
|
25048
|
-
* Name of the class being created
|
|
25049
|
-
*/
|
|
25050
|
-
sClassName: string,
|
|
25051
|
-
/**
|
|
25052
|
-
* Object literal with information about the class
|
|
25053
|
-
*/
|
|
25054
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.TabContainer>,
|
|
25055
|
-
/**
|
|
25056
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25057
|
-
* used by this class
|
|
25058
|
-
*/
|
|
25059
|
-
FNMetaImpl?: Function
|
|
25060
|
-
): Function;
|
|
25061
25065
|
/**
|
|
25062
25066
|
* Fires event {@link #event:tabSelect tabSelect} to attached listeners.
|
|
25063
25067
|
*/
|
|
@@ -25073,7 +25077,7 @@ declare namespace sap {
|
|
|
25073
25077
|
/**
|
|
25074
25078
|
* The selected `tab` index.
|
|
25075
25079
|
*/
|
|
25076
|
-
tabIndex?:
|
|
25080
|
+
tabIndex?: int;
|
|
25077
25081
|
}
|
|
25078
25082
|
): this;
|
|
25079
25083
|
/**
|
|
@@ -25106,10 +25110,6 @@ declare namespace sap {
|
|
|
25106
25110
|
* **Note:** Use `sap.ui.webc.main.Tab` and `sap.ui.webc.main.TabSeparator` for the intended design.
|
|
25107
25111
|
*/
|
|
25108
25112
|
getItems(): sap.ui.webc.main.ITab[];
|
|
25109
|
-
/**
|
|
25110
|
-
* Returns a metadata object for class sap.ui.webc.main.TabContainer.
|
|
25111
|
-
*/
|
|
25112
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
25113
25113
|
/**
|
|
25114
25114
|
* Gets content of aggregation {@link #getOverflowButton overflowButton}.
|
|
25115
25115
|
*
|
|
@@ -25365,6 +25365,31 @@ declare namespace sap {
|
|
|
25365
25365
|
mSettings?: sap.ui.webc.main.$TableSettings
|
|
25366
25366
|
);
|
|
25367
25367
|
|
|
25368
|
+
/**
|
|
25369
|
+
* Creates a new subclass of class sap.ui.webc.main.Table with name `sClassName` and enriches it with the
|
|
25370
|
+
* information contained in `oClassInfo`.
|
|
25371
|
+
*
|
|
25372
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
25373
|
+
*/
|
|
25374
|
+
static extend<T extends Record<string, unknown>>(
|
|
25375
|
+
/**
|
|
25376
|
+
* Name of the class being created
|
|
25377
|
+
*/
|
|
25378
|
+
sClassName: string,
|
|
25379
|
+
/**
|
|
25380
|
+
* Object literal with information about the class
|
|
25381
|
+
*/
|
|
25382
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Table>,
|
|
25383
|
+
/**
|
|
25384
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25385
|
+
* used by this class
|
|
25386
|
+
*/
|
|
25387
|
+
FNMetaImpl?: Function
|
|
25388
|
+
): Function;
|
|
25389
|
+
/**
|
|
25390
|
+
* Returns a metadata object for class sap.ui.webc.main.Table.
|
|
25391
|
+
*/
|
|
25392
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
25368
25393
|
/**
|
|
25369
25394
|
* Adds some column to the aggregation {@link #getColumns columns}.
|
|
25370
25395
|
*/
|
|
@@ -25626,27 +25651,6 @@ declare namespace sap {
|
|
|
25626
25651
|
*/
|
|
25627
25652
|
oListener?: object
|
|
25628
25653
|
): this;
|
|
25629
|
-
/**
|
|
25630
|
-
* Creates a new subclass of class sap.ui.webc.main.Table with name `sClassName` and enriches it with the
|
|
25631
|
-
* information contained in `oClassInfo`.
|
|
25632
|
-
*
|
|
25633
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
25634
|
-
*/
|
|
25635
|
-
static extend<T extends Record<string, unknown>>(
|
|
25636
|
-
/**
|
|
25637
|
-
* Name of the class being created
|
|
25638
|
-
*/
|
|
25639
|
-
sClassName: string,
|
|
25640
|
-
/**
|
|
25641
|
-
* Object literal with information about the class
|
|
25642
|
-
*/
|
|
25643
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Table>,
|
|
25644
|
-
/**
|
|
25645
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
25646
|
-
* used by this class
|
|
25647
|
-
*/
|
|
25648
|
-
FNMetaImpl?: Function
|
|
25649
|
-
): Function;
|
|
25650
25654
|
/**
|
|
25651
25655
|
* Fires event {@link #event:loadMore loadMore} to attached listeners.
|
|
25652
25656
|
*/
|
|
@@ -25784,10 +25788,6 @@ declare namespace sap {
|
|
|
25784
25788
|
* Default value is `false`.
|
|
25785
25789
|
*/
|
|
25786
25790
|
getHideNoData(): boolean;
|
|
25787
|
-
/**
|
|
25788
|
-
* Returns a metadata object for class sap.ui.webc.main.Table.
|
|
25789
|
-
*/
|
|
25790
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
25791
25791
|
/**
|
|
25792
25792
|
* Gets current value of property {@link #getMode mode}.
|
|
25793
25793
|
*
|
|
@@ -26164,19 +26164,6 @@ declare namespace sap {
|
|
|
26164
26164
|
mSettings?: sap.ui.webc.main.$TableCellSettings
|
|
26165
26165
|
);
|
|
26166
26166
|
|
|
26167
|
-
/**
|
|
26168
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
26169
|
-
*/
|
|
26170
|
-
addContent(
|
|
26171
|
-
/**
|
|
26172
|
-
* The content to add; if empty, nothing is inserted
|
|
26173
|
-
*/
|
|
26174
|
-
oContent: sap.ui.core.Control
|
|
26175
|
-
): this;
|
|
26176
|
-
/**
|
|
26177
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
26178
|
-
*/
|
|
26179
|
-
destroyContent(): this;
|
|
26180
26167
|
/**
|
|
26181
26168
|
* Creates a new subclass of class sap.ui.webc.main.TableCell with name `sClassName` and enriches it with
|
|
26182
26169
|
* the information contained in `oClassInfo`.
|
|
@@ -26198,16 +26185,29 @@ declare namespace sap {
|
|
|
26198
26185
|
*/
|
|
26199
26186
|
FNMetaImpl?: Function
|
|
26200
26187
|
): Function;
|
|
26188
|
+
/**
|
|
26189
|
+
* Returns a metadata object for class sap.ui.webc.main.TableCell.
|
|
26190
|
+
*/
|
|
26191
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26192
|
+
/**
|
|
26193
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
26194
|
+
*/
|
|
26195
|
+
addContent(
|
|
26196
|
+
/**
|
|
26197
|
+
* The content to add; if empty, nothing is inserted
|
|
26198
|
+
*/
|
|
26199
|
+
oContent: sap.ui.core.Control
|
|
26200
|
+
): this;
|
|
26201
|
+
/**
|
|
26202
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
26203
|
+
*/
|
|
26204
|
+
destroyContent(): this;
|
|
26201
26205
|
/**
|
|
26202
26206
|
* Gets content of aggregation {@link #getContent content}.
|
|
26203
26207
|
*
|
|
26204
26208
|
* Specifies the content of the component.
|
|
26205
26209
|
*/
|
|
26206
26210
|
getContent(): sap.ui.core.Control[];
|
|
26207
|
-
/**
|
|
26208
|
-
* Returns a metadata object for class sap.ui.webc.main.TableCell.
|
|
26209
|
-
*/
|
|
26210
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26211
26211
|
/**
|
|
26212
26212
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent content}. and returns
|
|
26213
26213
|
* its index if found or -1 otherwise.
|
|
@@ -26300,19 +26300,6 @@ declare namespace sap {
|
|
|
26300
26300
|
mSettings?: sap.ui.webc.main.$TableColumnSettings
|
|
26301
26301
|
);
|
|
26302
26302
|
|
|
26303
|
-
/**
|
|
26304
|
-
* Adds some content to the aggregation {@link #getContent content}.
|
|
26305
|
-
*/
|
|
26306
|
-
addContent(
|
|
26307
|
-
/**
|
|
26308
|
-
* The content to add; if empty, nothing is inserted
|
|
26309
|
-
*/
|
|
26310
|
-
oContent: sap.ui.core.Control
|
|
26311
|
-
): this;
|
|
26312
|
-
/**
|
|
26313
|
-
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
26314
|
-
*/
|
|
26315
|
-
destroyContent(): this;
|
|
26316
26303
|
/**
|
|
26317
26304
|
* Creates a new subclass of class sap.ui.webc.main.TableColumn with name `sClassName` and enriches it with
|
|
26318
26305
|
* the information contained in `oClassInfo`.
|
|
@@ -26334,6 +26321,23 @@ declare namespace sap {
|
|
|
26334
26321
|
*/
|
|
26335
26322
|
FNMetaImpl?: Function
|
|
26336
26323
|
): Function;
|
|
26324
|
+
/**
|
|
26325
|
+
* Returns a metadata object for class sap.ui.webc.main.TableColumn.
|
|
26326
|
+
*/
|
|
26327
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26328
|
+
/**
|
|
26329
|
+
* Adds some content to the aggregation {@link #getContent content}.
|
|
26330
|
+
*/
|
|
26331
|
+
addContent(
|
|
26332
|
+
/**
|
|
26333
|
+
* The content to add; if empty, nothing is inserted
|
|
26334
|
+
*/
|
|
26335
|
+
oContent: sap.ui.core.Control
|
|
26336
|
+
): this;
|
|
26337
|
+
/**
|
|
26338
|
+
* Destroys all the content in the aggregation {@link #getContent content}.
|
|
26339
|
+
*/
|
|
26340
|
+
destroyContent(): this;
|
|
26337
26341
|
/**
|
|
26338
26342
|
* Gets content of aggregation {@link #getContent content}.
|
|
26339
26343
|
*
|
|
@@ -26350,10 +26354,6 @@ declare namespace sap {
|
|
|
26350
26354
|
* Default value is `false`.
|
|
26351
26355
|
*/
|
|
26352
26356
|
getDemandPopin(): boolean;
|
|
26353
|
-
/**
|
|
26354
|
-
* Returns a metadata object for class sap.ui.webc.main.TableColumn.
|
|
26355
|
-
*/
|
|
26356
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26357
26357
|
/**
|
|
26358
26358
|
* Gets current value of property {@link #getMinWidth minWidth}.
|
|
26359
26359
|
*
|
|
@@ -26519,19 +26519,6 @@ declare namespace sap {
|
|
|
26519
26519
|
mSettings?: sap.ui.webc.main.$TableRowSettings
|
|
26520
26520
|
);
|
|
26521
26521
|
|
|
26522
|
-
/**
|
|
26523
|
-
* Adds some cell to the aggregation {@link #getCells cells}.
|
|
26524
|
-
*/
|
|
26525
|
-
addCell(
|
|
26526
|
-
/**
|
|
26527
|
-
* The cell to add; if empty, nothing is inserted
|
|
26528
|
-
*/
|
|
26529
|
-
oCell: sap.ui.webc.main.ITableCell
|
|
26530
|
-
): this;
|
|
26531
|
-
/**
|
|
26532
|
-
* Destroys all the cells in the aggregation {@link #getCells cells}.
|
|
26533
|
-
*/
|
|
26534
|
-
destroyCells(): this;
|
|
26535
26522
|
/**
|
|
26536
26523
|
* Creates a new subclass of class sap.ui.webc.main.TableRow with name `sClassName` and enriches it with
|
|
26537
26524
|
* the information contained in `oClassInfo`.
|
|
@@ -26553,6 +26540,23 @@ declare namespace sap {
|
|
|
26553
26540
|
*/
|
|
26554
26541
|
FNMetaImpl?: Function
|
|
26555
26542
|
): Function;
|
|
26543
|
+
/**
|
|
26544
|
+
* Returns a metadata object for class sap.ui.webc.main.TableRow.
|
|
26545
|
+
*/
|
|
26546
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26547
|
+
/**
|
|
26548
|
+
* Adds some cell to the aggregation {@link #getCells cells}.
|
|
26549
|
+
*/
|
|
26550
|
+
addCell(
|
|
26551
|
+
/**
|
|
26552
|
+
* The cell to add; if empty, nothing is inserted
|
|
26553
|
+
*/
|
|
26554
|
+
oCell: sap.ui.webc.main.ITableCell
|
|
26555
|
+
): this;
|
|
26556
|
+
/**
|
|
26557
|
+
* Destroys all the cells in the aggregation {@link #getCells cells}.
|
|
26558
|
+
*/
|
|
26559
|
+
destroyCells(): this;
|
|
26556
26560
|
/**
|
|
26557
26561
|
* Gets content of aggregation {@link #getCells cells}.
|
|
26558
26562
|
*
|
|
@@ -26561,10 +26565,6 @@ declare namespace sap {
|
|
|
26561
26565
|
* **Note:** Use `sap.ui.webc.main.TableCell` for the intended design.
|
|
26562
26566
|
*/
|
|
26563
26567
|
getCells(): sap.ui.webc.main.ITableCell[];
|
|
26564
|
-
/**
|
|
26565
|
-
* Returns a metadata object for class sap.ui.webc.main.TableRow.
|
|
26566
|
-
*/
|
|
26567
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26568
26568
|
/**
|
|
26569
26569
|
* Gets current value of property {@link #getSelected selected}.
|
|
26570
26570
|
*
|
|
@@ -26791,6 +26791,31 @@ declare namespace sap {
|
|
|
26791
26791
|
mSettings?: sap.ui.webc.main.$TextAreaSettings
|
|
26792
26792
|
);
|
|
26793
26793
|
|
|
26794
|
+
/**
|
|
26795
|
+
* Creates a new subclass of class sap.ui.webc.main.TextArea with name `sClassName` and enriches it with
|
|
26796
|
+
* the information contained in `oClassInfo`.
|
|
26797
|
+
*
|
|
26798
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
26799
|
+
*/
|
|
26800
|
+
static extend<T extends Record<string, unknown>>(
|
|
26801
|
+
/**
|
|
26802
|
+
* Name of the class being created
|
|
26803
|
+
*/
|
|
26804
|
+
sClassName: string,
|
|
26805
|
+
/**
|
|
26806
|
+
* Object literal with information about the class
|
|
26807
|
+
*/
|
|
26808
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.TextArea>,
|
|
26809
|
+
/**
|
|
26810
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
26811
|
+
* used by this class
|
|
26812
|
+
*/
|
|
26813
|
+
FNMetaImpl?: Function
|
|
26814
|
+
): Function;
|
|
26815
|
+
/**
|
|
26816
|
+
* Returns a metadata object for class sap.ui.webc.main.TextArea.
|
|
26817
|
+
*/
|
|
26818
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26794
26819
|
/**
|
|
26795
26820
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.TextArea`.
|
|
26796
26821
|
*
|
|
@@ -26901,29 +26926,8 @@ declare namespace sap {
|
|
|
26901
26926
|
/**
|
|
26902
26927
|
* Context object on which the given function had to be called
|
|
26903
26928
|
*/
|
|
26904
|
-
oListener?: object
|
|
26905
|
-
): this;
|
|
26906
|
-
/**
|
|
26907
|
-
* Creates a new subclass of class sap.ui.webc.main.TextArea with name `sClassName` and enriches it with
|
|
26908
|
-
* the information contained in `oClassInfo`.
|
|
26909
|
-
*
|
|
26910
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
26911
|
-
*/
|
|
26912
|
-
static extend<T extends Record<string, unknown>>(
|
|
26913
|
-
/**
|
|
26914
|
-
* Name of the class being created
|
|
26915
|
-
*/
|
|
26916
|
-
sClassName: string,
|
|
26917
|
-
/**
|
|
26918
|
-
* Object literal with information about the class
|
|
26919
|
-
*/
|
|
26920
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.TextArea>,
|
|
26921
|
-
/**
|
|
26922
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
26923
|
-
* used by this class
|
|
26924
|
-
*/
|
|
26925
|
-
FNMetaImpl?: Function
|
|
26926
|
-
): Function;
|
|
26929
|
+
oListener?: object
|
|
26930
|
+
): this;
|
|
26927
26931
|
/**
|
|
26928
26932
|
* Fires event {@link #event:change change} to attached listeners.
|
|
26929
26933
|
*/
|
|
@@ -26982,10 +26986,6 @@ declare namespace sap {
|
|
|
26982
26986
|
* Defines the maximum number of characters that the `value` can have.
|
|
26983
26987
|
*/
|
|
26984
26988
|
getMaxlength(): int;
|
|
26985
|
-
/**
|
|
26986
|
-
* Returns a metadata object for class sap.ui.webc.main.TextArea.
|
|
26987
|
-
*/
|
|
26988
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
26989
26989
|
/**
|
|
26990
26990
|
* Gets current value of property {@link #getName name}.
|
|
26991
26991
|
*
|
|
@@ -27432,6 +27432,31 @@ declare namespace sap {
|
|
|
27432
27432
|
mSettings?: sap.ui.webc.main.$TimePickerSettings
|
|
27433
27433
|
);
|
|
27434
27434
|
|
|
27435
|
+
/**
|
|
27436
|
+
* Creates a new subclass of class sap.ui.webc.main.TimePicker with name `sClassName` and enriches it with
|
|
27437
|
+
* the information contained in `oClassInfo`.
|
|
27438
|
+
*
|
|
27439
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
27440
|
+
*/
|
|
27441
|
+
static extend<T extends Record<string, unknown>>(
|
|
27442
|
+
/**
|
|
27443
|
+
* Name of the class being created
|
|
27444
|
+
*/
|
|
27445
|
+
sClassName: string,
|
|
27446
|
+
/**
|
|
27447
|
+
* Object literal with information about the class
|
|
27448
|
+
*/
|
|
27449
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.TimePicker>,
|
|
27450
|
+
/**
|
|
27451
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
27452
|
+
* used by this class
|
|
27453
|
+
*/
|
|
27454
|
+
FNMetaImpl?: Function
|
|
27455
|
+
): Function;
|
|
27456
|
+
/**
|
|
27457
|
+
* Returns a metadata object for class sap.ui.webc.main.TimePicker.
|
|
27458
|
+
*/
|
|
27459
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
27435
27460
|
/**
|
|
27436
27461
|
* Attaches event handler `fnFunction` to the {@link #event:change change} event of this `sap.ui.webc.main.TimePicker`.
|
|
27437
27462
|
*
|
|
@@ -27550,27 +27575,6 @@ declare namespace sap {
|
|
|
27550
27575
|
*/
|
|
27551
27576
|
oListener?: object
|
|
27552
27577
|
): this;
|
|
27553
|
-
/**
|
|
27554
|
-
* Creates a new subclass of class sap.ui.webc.main.TimePicker with name `sClassName` and enriches it with
|
|
27555
|
-
* the information contained in `oClassInfo`.
|
|
27556
|
-
*
|
|
27557
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
27558
|
-
*/
|
|
27559
|
-
static extend<T extends Record<string, unknown>>(
|
|
27560
|
-
/**
|
|
27561
|
-
* Name of the class being created
|
|
27562
|
-
*/
|
|
27563
|
-
sClassName: string,
|
|
27564
|
-
/**
|
|
27565
|
-
* Object literal with information about the class
|
|
27566
|
-
*/
|
|
27567
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.TimePicker>,
|
|
27568
|
-
/**
|
|
27569
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
27570
|
-
* used by this class
|
|
27571
|
-
*/
|
|
27572
|
-
FNMetaImpl?: Function
|
|
27573
|
-
): Function;
|
|
27574
27578
|
/**
|
|
27575
27579
|
* Fires event {@link #event:change change} to attached listeners.
|
|
27576
27580
|
*/
|
|
@@ -27621,10 +27625,6 @@ declare namespace sap {
|
|
|
27621
27625
|
* Default value is `empty string`.
|
|
27622
27626
|
*/
|
|
27623
27627
|
getFormatPattern(): string;
|
|
27624
|
-
/**
|
|
27625
|
-
* Returns a metadata object for class sap.ui.webc.main.TimePicker.
|
|
27626
|
-
*/
|
|
27627
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
27628
27628
|
/**
|
|
27629
27629
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
27630
27630
|
*
|
|
@@ -27909,6 +27909,10 @@ declare namespace sap {
|
|
|
27909
27909
|
*/
|
|
27910
27910
|
FNMetaImpl?: Function
|
|
27911
27911
|
): Function;
|
|
27912
|
+
/**
|
|
27913
|
+
* Returns a metadata object for class sap.ui.webc.main.Title.
|
|
27914
|
+
*/
|
|
27915
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
27912
27916
|
/**
|
|
27913
27917
|
* Gets current value of property {@link #getLevel level}.
|
|
27914
27918
|
*
|
|
@@ -27917,10 +27921,6 @@ declare namespace sap {
|
|
|
27917
27921
|
* Default value is `H2`.
|
|
27918
27922
|
*/
|
|
27919
27923
|
getLevel(): sap.ui.webc.main.TitleLevel;
|
|
27920
|
-
/**
|
|
27921
|
-
* Returns a metadata object for class sap.ui.webc.main.Title.
|
|
27922
|
-
*/
|
|
27923
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
27924
27924
|
/**
|
|
27925
27925
|
* Gets current value of property {@link #getText text}.
|
|
27926
27926
|
*
|
|
@@ -28081,6 +28081,10 @@ declare namespace sap {
|
|
|
28081
28081
|
*/
|
|
28082
28082
|
FNMetaImpl?: Function
|
|
28083
28083
|
): Function;
|
|
28084
|
+
/**
|
|
28085
|
+
* Returns a metadata object for class sap.ui.webc.main.Toast.
|
|
28086
|
+
*/
|
|
28087
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28084
28088
|
/**
|
|
28085
28089
|
* Gets current value of property {@link #getDuration duration}.
|
|
28086
28090
|
*
|
|
@@ -28099,10 +28103,6 @@ declare namespace sap {
|
|
|
28099
28103
|
* Defines the height of the control
|
|
28100
28104
|
*/
|
|
28101
28105
|
getHeight(): sap.ui.core.CSSSize;
|
|
28102
|
-
/**
|
|
28103
|
-
* Returns a metadata object for class sap.ui.webc.main.Toast.
|
|
28104
|
-
*/
|
|
28105
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28106
28106
|
/**
|
|
28107
28107
|
* Gets current value of property {@link #getPlacement placement}.
|
|
28108
28108
|
*
|
|
@@ -28273,6 +28273,31 @@ declare namespace sap {
|
|
|
28273
28273
|
mSettings?: sap.ui.webc.main.$ToggleButtonSettings
|
|
28274
28274
|
);
|
|
28275
28275
|
|
|
28276
|
+
/**
|
|
28277
|
+
* Creates a new subclass of class sap.ui.webc.main.ToggleButton with name `sClassName` and enriches it
|
|
28278
|
+
* with the information contained in `oClassInfo`.
|
|
28279
|
+
*
|
|
28280
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
28281
|
+
*/
|
|
28282
|
+
static extend<T extends Record<string, unknown>>(
|
|
28283
|
+
/**
|
|
28284
|
+
* Name of the class being created
|
|
28285
|
+
*/
|
|
28286
|
+
sClassName: string,
|
|
28287
|
+
/**
|
|
28288
|
+
* Object literal with information about the class
|
|
28289
|
+
*/
|
|
28290
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ToggleButton>,
|
|
28291
|
+
/**
|
|
28292
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28293
|
+
* used by this class
|
|
28294
|
+
*/
|
|
28295
|
+
FNMetaImpl?: Function
|
|
28296
|
+
): Function;
|
|
28297
|
+
/**
|
|
28298
|
+
* Returns a metadata object for class sap.ui.webc.main.ToggleButton.
|
|
28299
|
+
*/
|
|
28300
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28276
28301
|
/**
|
|
28277
28302
|
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.main.ToggleButton`.
|
|
28278
28303
|
*
|
|
@@ -28333,27 +28358,6 @@ declare namespace sap {
|
|
|
28333
28358
|
*/
|
|
28334
28359
|
oListener?: object
|
|
28335
28360
|
): this;
|
|
28336
|
-
/**
|
|
28337
|
-
* Creates a new subclass of class sap.ui.webc.main.ToggleButton with name `sClassName` and enriches it
|
|
28338
|
-
* with the information contained in `oClassInfo`.
|
|
28339
|
-
*
|
|
28340
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
28341
|
-
*/
|
|
28342
|
-
static extend<T extends Record<string, unknown>>(
|
|
28343
|
-
/**
|
|
28344
|
-
* Name of the class being created
|
|
28345
|
-
*/
|
|
28346
|
-
sClassName: string,
|
|
28347
|
-
/**
|
|
28348
|
-
* Object literal with information about the class
|
|
28349
|
-
*/
|
|
28350
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.ToggleButton>,
|
|
28351
|
-
/**
|
|
28352
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28353
|
-
* used by this class
|
|
28354
|
-
*/
|
|
28355
|
-
FNMetaImpl?: Function
|
|
28356
|
-
): Function;
|
|
28357
28361
|
/**
|
|
28358
28362
|
* Fires event {@link #event:click click} to attached listeners.
|
|
28359
28363
|
*/
|
|
@@ -28412,10 +28416,6 @@ declare namespace sap {
|
|
|
28412
28416
|
* Default value is `false`.
|
|
28413
28417
|
*/
|
|
28414
28418
|
getIconEnd(): boolean;
|
|
28415
|
-
/**
|
|
28416
|
-
* Returns a metadata object for class sap.ui.webc.main.ToggleButton.
|
|
28417
|
-
*/
|
|
28418
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28419
28419
|
/**
|
|
28420
28420
|
* Gets current value of property {@link #getPressed pressed}.
|
|
28421
28421
|
*
|
|
@@ -28622,6 +28622,31 @@ declare namespace sap {
|
|
|
28622
28622
|
mSettings?: sap.ui.webc.main.$TokenSettings
|
|
28623
28623
|
);
|
|
28624
28624
|
|
|
28625
|
+
/**
|
|
28626
|
+
* Creates a new subclass of class sap.ui.webc.main.Token with name `sClassName` and enriches it with the
|
|
28627
|
+
* information contained in `oClassInfo`.
|
|
28628
|
+
*
|
|
28629
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
28630
|
+
*/
|
|
28631
|
+
static extend<T extends Record<string, unknown>>(
|
|
28632
|
+
/**
|
|
28633
|
+
* Name of the class being created
|
|
28634
|
+
*/
|
|
28635
|
+
sClassName: string,
|
|
28636
|
+
/**
|
|
28637
|
+
* Object literal with information about the class
|
|
28638
|
+
*/
|
|
28639
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Token>,
|
|
28640
|
+
/**
|
|
28641
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28642
|
+
* used by this class
|
|
28643
|
+
*/
|
|
28644
|
+
FNMetaImpl?: Function
|
|
28645
|
+
): Function;
|
|
28646
|
+
/**
|
|
28647
|
+
* Returns a metadata object for class sap.ui.webc.main.Token.
|
|
28648
|
+
*/
|
|
28649
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28625
28650
|
/**
|
|
28626
28651
|
* Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.webc.main.Token`.
|
|
28627
28652
|
*
|
|
@@ -28682,27 +28707,6 @@ declare namespace sap {
|
|
|
28682
28707
|
*/
|
|
28683
28708
|
oListener?: object
|
|
28684
28709
|
): this;
|
|
28685
|
-
/**
|
|
28686
|
-
* Creates a new subclass of class sap.ui.webc.main.Token with name `sClassName` and enriches it with the
|
|
28687
|
-
* information contained in `oClassInfo`.
|
|
28688
|
-
*
|
|
28689
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
28690
|
-
*/
|
|
28691
|
-
static extend<T extends Record<string, unknown>>(
|
|
28692
|
-
/**
|
|
28693
|
-
* Name of the class being created
|
|
28694
|
-
*/
|
|
28695
|
-
sClassName: string,
|
|
28696
|
-
/**
|
|
28697
|
-
* Object literal with information about the class
|
|
28698
|
-
*/
|
|
28699
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Token>,
|
|
28700
|
-
/**
|
|
28701
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28702
|
-
* used by this class
|
|
28703
|
-
*/
|
|
28704
|
-
FNMetaImpl?: Function
|
|
28705
|
-
): Function;
|
|
28706
28710
|
/**
|
|
28707
28711
|
* Fires event {@link #event:select select} to attached listeners.
|
|
28708
28712
|
*/
|
|
@@ -28719,10 +28723,6 @@ declare namespace sap {
|
|
|
28719
28723
|
* be used. Accepts `sap.ui.webc.main.Icon`
|
|
28720
28724
|
*/
|
|
28721
28725
|
getCloseIcon(): sap.ui.webc.main.IIcon;
|
|
28722
|
-
/**
|
|
28723
|
-
* Returns a metadata object for class sap.ui.webc.main.Token.
|
|
28724
|
-
*/
|
|
28725
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28726
28726
|
/**
|
|
28727
28727
|
* Gets current value of property {@link #getReadonly readonly}.
|
|
28728
28728
|
*
|
|
@@ -28864,6 +28864,31 @@ declare namespace sap {
|
|
|
28864
28864
|
mSettings?: sap.ui.webc.main.$TreeSettings
|
|
28865
28865
|
);
|
|
28866
28866
|
|
|
28867
|
+
/**
|
|
28868
|
+
* Creates a new subclass of class sap.ui.webc.main.Tree with name `sClassName` and enriches it with the
|
|
28869
|
+
* information contained in `oClassInfo`.
|
|
28870
|
+
*
|
|
28871
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
28872
|
+
*/
|
|
28873
|
+
static extend<T extends Record<string, unknown>>(
|
|
28874
|
+
/**
|
|
28875
|
+
* Name of the class being created
|
|
28876
|
+
*/
|
|
28877
|
+
sClassName: string,
|
|
28878
|
+
/**
|
|
28879
|
+
* Object literal with information about the class
|
|
28880
|
+
*/
|
|
28881
|
+
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Tree>,
|
|
28882
|
+
/**
|
|
28883
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
28884
|
+
* used by this class
|
|
28885
|
+
*/
|
|
28886
|
+
FNMetaImpl?: Function
|
|
28887
|
+
): Function;
|
|
28888
|
+
/**
|
|
28889
|
+
* Returns a metadata object for class sap.ui.webc.main.Tree.
|
|
28890
|
+
*/
|
|
28891
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
28867
28892
|
/**
|
|
28868
28893
|
* Adds some header to the aggregation {@link #getHeader header}.
|
|
28869
28894
|
*/
|
|
@@ -29129,27 +29154,6 @@ declare namespace sap {
|
|
|
29129
29154
|
*/
|
|
29130
29155
|
oListener?: object
|
|
29131
29156
|
): this;
|
|
29132
|
-
/**
|
|
29133
|
-
* Creates a new subclass of class sap.ui.webc.main.Tree with name `sClassName` and enriches it with the
|
|
29134
|
-
* information contained in `oClassInfo`.
|
|
29135
|
-
*
|
|
29136
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.webc.common.WebComponent.extend}.
|
|
29137
|
-
*/
|
|
29138
|
-
static extend<T extends Record<string, unknown>>(
|
|
29139
|
-
/**
|
|
29140
|
-
* Name of the class being created
|
|
29141
|
-
*/
|
|
29142
|
-
sClassName: string,
|
|
29143
|
-
/**
|
|
29144
|
-
* Object literal with information about the class
|
|
29145
|
-
*/
|
|
29146
|
-
oClassInfo?: sap.ClassInfo<T, sap.ui.webc.main.Tree>,
|
|
29147
|
-
/**
|
|
29148
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
29149
|
-
* used by this class
|
|
29150
|
-
*/
|
|
29151
|
-
FNMetaImpl?: Function
|
|
29152
|
-
): Function;
|
|
29153
29157
|
/**
|
|
29154
29158
|
* Fires event {@link #event:itemClick itemClick} to attached listeners.
|
|
29155
29159
|
*/
|
|
@@ -29253,10 +29257,6 @@ declare namespace sap {
|
|
|
29253
29257
|
* **Note:** Use `sap.ui.webc.main.TreeItem` for the intended design.
|
|
29254
29258
|
*/
|
|
29255
29259
|
getItems(): sap.ui.webc.main.ITreeItem[];
|
|
29256
|
-
/**
|
|
29257
|
-
* Returns a metadata object for class sap.ui.webc.main.Tree.
|
|
29258
|
-
*/
|
|
29259
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
29260
29260
|
/**
|
|
29261
29261
|
* Gets current value of property {@link #getMode mode}.
|
|
29262
29262
|
*
|
|
@@ -29531,19 +29531,6 @@ declare namespace sap {
|
|
|
29531
29531
|
mSettings?: sap.ui.webc.main.$TreeItemSettings
|
|
29532
29532
|
);
|
|
29533
29533
|
|
|
29534
|
-
/**
|
|
29535
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
29536
|
-
*/
|
|
29537
|
-
addItem(
|
|
29538
|
-
/**
|
|
29539
|
-
* The item to add; if empty, nothing is inserted
|
|
29540
|
-
*/
|
|
29541
|
-
oItem: sap.ui.webc.main.ITreeItem
|
|
29542
|
-
): this;
|
|
29543
|
-
/**
|
|
29544
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
29545
|
-
*/
|
|
29546
|
-
destroyItems(): this;
|
|
29547
29534
|
/**
|
|
29548
29535
|
* Creates a new subclass of class sap.ui.webc.main.TreeItem with name `sClassName` and enriches it with
|
|
29549
29536
|
* the information contained in `oClassInfo`.
|
|
@@ -29565,6 +29552,23 @@ declare namespace sap {
|
|
|
29565
29552
|
*/
|
|
29566
29553
|
FNMetaImpl?: Function
|
|
29567
29554
|
): Function;
|
|
29555
|
+
/**
|
|
29556
|
+
* Returns a metadata object for class sap.ui.webc.main.TreeItem.
|
|
29557
|
+
*/
|
|
29558
|
+
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
29559
|
+
/**
|
|
29560
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
29561
|
+
*/
|
|
29562
|
+
addItem(
|
|
29563
|
+
/**
|
|
29564
|
+
* The item to add; if empty, nothing is inserted
|
|
29565
|
+
*/
|
|
29566
|
+
oItem: sap.ui.webc.main.ITreeItem
|
|
29567
|
+
): this;
|
|
29568
|
+
/**
|
|
29569
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
29570
|
+
*/
|
|
29571
|
+
destroyItems(): this;
|
|
29568
29572
|
/**
|
|
29569
29573
|
* Gets current value of property {@link #getAdditionalText additionalText}.
|
|
29570
29574
|
*
|
|
@@ -29615,10 +29619,6 @@ declare namespace sap {
|
|
|
29615
29619
|
* Defines the items of this component.
|
|
29616
29620
|
*/
|
|
29617
29621
|
getItems(): sap.ui.webc.main.ITreeItem[];
|
|
29618
|
-
/**
|
|
29619
|
-
* Returns a metadata object for class sap.ui.webc.main.TreeItem.
|
|
29620
|
-
*/
|
|
29621
|
-
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
29622
29622
|
/**
|
|
29623
29623
|
* Gets current value of property {@link #getSelected selected}.
|
|
29624
29624
|
*
|