@openui5/ts-types-esm 1.92.0 → 1.95.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -0
- package/package.json +1 -1
- package/types/sap.f.d.ts +897 -482
- package/types/sap.m.d.ts +5672 -4629
- package/types/sap.tnt.d.ts +159 -128
- package/types/sap.ui.codeeditor.d.ts +56 -58
- package/types/sap.ui.commons.d.ts +1386 -1386
- package/types/sap.ui.core.d.ts +4395 -4210
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.fl.d.ts +33 -31
- package/types/sap.ui.integration.d.ts +329 -126
- package/types/sap.ui.layout.d.ts +582 -575
- package/types/sap.ui.mdc.d.ts +35 -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 +254 -249
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +976 -710
- 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 +1952 -767
- package/types/sap.ui.webc.main.d.ts +7518 -6031
- package/types/sap.uxap.d.ts +393 -231
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.95.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/unified/library" {
|
|
4
4
|
/**
|
|
@@ -377,6 +377,31 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
377
377
|
mSettings?: $CalendarSettings
|
|
378
378
|
);
|
|
379
379
|
|
|
380
|
+
/**
|
|
381
|
+
* Creates a new subclass of class sap.ui.unified.Calendar with name `sClassName` and enriches it with the
|
|
382
|
+
* information contained in `oClassInfo`.
|
|
383
|
+
*
|
|
384
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
385
|
+
*/
|
|
386
|
+
static extend<T extends Record<string, unknown>>(
|
|
387
|
+
/**
|
|
388
|
+
* Name of the class being created
|
|
389
|
+
*/
|
|
390
|
+
sClassName: string,
|
|
391
|
+
/**
|
|
392
|
+
* Object literal with information about the class
|
|
393
|
+
*/
|
|
394
|
+
oClassInfo?: sap.ClassInfo<T, Calendar>,
|
|
395
|
+
/**
|
|
396
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
397
|
+
* used by this class
|
|
398
|
+
*/
|
|
399
|
+
FNMetaImpl?: Function
|
|
400
|
+
): Function;
|
|
401
|
+
/**
|
|
402
|
+
* Returns a metadata object for class sap.ui.unified.Calendar.
|
|
403
|
+
*/
|
|
404
|
+
static getMetadata(): ElementMetadata;
|
|
380
405
|
/**
|
|
381
406
|
* @SINCE 1.28.0
|
|
382
407
|
*
|
|
@@ -702,27 +727,6 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
702
727
|
*/
|
|
703
728
|
oDate: Object
|
|
704
729
|
): this;
|
|
705
|
-
/**
|
|
706
|
-
* Creates a new subclass of class sap.ui.unified.Calendar with name `sClassName` and enriches it with the
|
|
707
|
-
* information contained in `oClassInfo`.
|
|
708
|
-
*
|
|
709
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
710
|
-
*/
|
|
711
|
-
static extend<T extends Record<string, unknown>>(
|
|
712
|
-
/**
|
|
713
|
-
* Name of the class being created
|
|
714
|
-
*/
|
|
715
|
-
sClassName: string,
|
|
716
|
-
/**
|
|
717
|
-
* Object literal with information about the class
|
|
718
|
-
*/
|
|
719
|
-
oClassInfo?: sap.ClassInfo<T, Calendar>,
|
|
720
|
-
/**
|
|
721
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
722
|
-
* used by this class
|
|
723
|
-
*/
|
|
724
|
-
FNMetaImpl?: Function
|
|
725
|
-
): Function;
|
|
726
730
|
/**
|
|
727
731
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
728
732
|
*/
|
|
@@ -776,11 +780,11 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
776
780
|
}
|
|
777
781
|
): boolean;
|
|
778
782
|
/**
|
|
779
|
-
*
|
|
783
|
+
* Displays and sets the focused date of the calendar.
|
|
780
784
|
*/
|
|
781
785
|
focusDate(
|
|
782
786
|
/**
|
|
783
|
-
* JavaScript date object for focused date
|
|
787
|
+
* A JavaScript date object for focused date
|
|
784
788
|
*/
|
|
785
789
|
oDate: Object
|
|
786
790
|
): this;
|
|
@@ -841,10 +845,6 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
841
845
|
* month of the `maxDate`.
|
|
842
846
|
*/
|
|
843
847
|
getMaxDate(): object;
|
|
844
|
-
/**
|
|
845
|
-
* Returns a metadata object for class sap.ui.unified.Calendar.
|
|
846
|
-
*/
|
|
847
|
-
static getMetadata(): ElementMetadata;
|
|
848
848
|
/**
|
|
849
849
|
* @SINCE 1.38.0
|
|
850
850
|
*
|
|
@@ -913,6 +913,17 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
913
913
|
* class.
|
|
914
914
|
*/
|
|
915
915
|
getSelectedDates(): DateRange[];
|
|
916
|
+
/**
|
|
917
|
+
* @SINCE 1.95
|
|
918
|
+
*
|
|
919
|
+
* Gets current value of property {@link #getShowCurrentDateButton showCurrentDateButton}.
|
|
920
|
+
*
|
|
921
|
+
* Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
|
|
922
|
+
* view, the calendar navigates to Day picker view.
|
|
923
|
+
*
|
|
924
|
+
* Default value is `false`.
|
|
925
|
+
*/
|
|
926
|
+
getShowCurrentDateButton(): boolean;
|
|
916
927
|
/**
|
|
917
928
|
* @SINCE 1.48
|
|
918
929
|
*
|
|
@@ -1257,6 +1268,15 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1257
1268
|
*/
|
|
1258
1269
|
sSecondaryCalendarType?: CalendarType | keyof typeof CalendarType
|
|
1259
1270
|
): this;
|
|
1271
|
+
/**
|
|
1272
|
+
* Sets the visibility of the Current date button in the calendar.
|
|
1273
|
+
*/
|
|
1274
|
+
setShowCurrentDateButton(
|
|
1275
|
+
/**
|
|
1276
|
+
* whether the Today button will be displayed
|
|
1277
|
+
*/
|
|
1278
|
+
bShow: boolean
|
|
1279
|
+
): this;
|
|
1260
1280
|
/**
|
|
1261
1281
|
* @SINCE 1.48
|
|
1262
1282
|
*
|
|
@@ -1418,6 +1438,14 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1418
1438
|
*/
|
|
1419
1439
|
showWeekNumbers?: boolean | PropertyBindingInfo;
|
|
1420
1440
|
|
|
1441
|
+
/**
|
|
1442
|
+
* @SINCE 1.95
|
|
1443
|
+
*
|
|
1444
|
+
* Determines whether there is a shortcut navigation to Today. When used in Month, Year or Year-range picker
|
|
1445
|
+
* view, the calendar navigates to Day picker view.
|
|
1446
|
+
*/
|
|
1447
|
+
showCurrentDateButton?: boolean | PropertyBindingInfo;
|
|
1448
|
+
|
|
1421
1449
|
/**
|
|
1422
1450
|
* Dates or date ranges for selected dates.
|
|
1423
1451
|
*
|
|
@@ -1470,12 +1498,12 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1470
1498
|
/**
|
|
1471
1499
|
* Date selection changed
|
|
1472
1500
|
*/
|
|
1473
|
-
select?:
|
|
1501
|
+
select?: (oEvent: Event) => void;
|
|
1474
1502
|
|
|
1475
1503
|
/**
|
|
1476
1504
|
* Date selection was cancelled
|
|
1477
1505
|
*/
|
|
1478
|
-
cancel?:
|
|
1506
|
+
cancel?: (oEvent: Event) => void;
|
|
1479
1507
|
|
|
1480
1508
|
/**
|
|
1481
1509
|
* @SINCE 1.34.0
|
|
@@ -1484,7 +1512,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1484
1512
|
*
|
|
1485
1513
|
* Use `getStartDate` function to determine the current start date
|
|
1486
1514
|
*/
|
|
1487
|
-
startDateChange?:
|
|
1515
|
+
startDateChange?: (oEvent: Event) => void;
|
|
1488
1516
|
|
|
1489
1517
|
/**
|
|
1490
1518
|
* @SINCE 1.56
|
|
@@ -1496,7 +1524,7 @@ declare module "sap/ui/unified/Calendar" {
|
|
|
1496
1524
|
*
|
|
1497
1525
|
* **Note** Works for Gregorian calendars only and when `intervalSelection` is set to 'true'.
|
|
1498
1526
|
*/
|
|
1499
|
-
weekNumberSelect?:
|
|
1527
|
+
weekNumberSelect?: (oEvent: Event) => void;
|
|
1500
1528
|
}
|
|
1501
1529
|
}
|
|
1502
1530
|
|
|
@@ -1549,18 +1577,6 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
1549
1577
|
mSettings?: $DatesRowSettings
|
|
1550
1578
|
);
|
|
1551
1579
|
|
|
1552
|
-
/**
|
|
1553
|
-
* displays the a given date without setting the focus
|
|
1554
|
-
*
|
|
1555
|
-
* Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
|
|
1556
|
-
* `startDate` and `days` days So set this properties before setting the date.
|
|
1557
|
-
*/
|
|
1558
|
-
displayDate(
|
|
1559
|
-
/**
|
|
1560
|
-
* JavaScript date object for focused date.
|
|
1561
|
-
*/
|
|
1562
|
-
oDate: object
|
|
1563
|
-
): this;
|
|
1564
1580
|
/**
|
|
1565
1581
|
* Creates a new subclass of class sap.ui.unified.calendar.DatesRow with name `sClassName` and enriches
|
|
1566
1582
|
* it with the information contained in `oClassInfo`.
|
|
@@ -1582,6 +1598,22 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
1582
1598
|
*/
|
|
1583
1599
|
FNMetaImpl?: Function
|
|
1584
1600
|
): Function;
|
|
1601
|
+
/**
|
|
1602
|
+
* Returns a metadata object for class sap.ui.unified.calendar.DatesRow.
|
|
1603
|
+
*/
|
|
1604
|
+
static getMetadata(): ElementMetadata;
|
|
1605
|
+
/**
|
|
1606
|
+
* displays the a given date without setting the focus
|
|
1607
|
+
*
|
|
1608
|
+
* Property `date` date to be focused or displayed. It must be in the displayed date range beginning with
|
|
1609
|
+
* `startDate` and `days` days So set this properties before setting the date.
|
|
1610
|
+
*/
|
|
1611
|
+
displayDate(
|
|
1612
|
+
/**
|
|
1613
|
+
* JavaScript date object for focused date.
|
|
1614
|
+
*/
|
|
1615
|
+
oDate: object
|
|
1616
|
+
): this;
|
|
1585
1617
|
/**
|
|
1586
1618
|
* Gets current value of property {@link #getDays days}.
|
|
1587
1619
|
*
|
|
@@ -1590,10 +1622,6 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
1590
1622
|
* Default value is `7`.
|
|
1591
1623
|
*/
|
|
1592
1624
|
getDays(): int;
|
|
1593
|
-
/**
|
|
1594
|
-
* Returns a metadata object for class sap.ui.unified.calendar.DatesRow.
|
|
1595
|
-
*/
|
|
1596
|
-
static getMetadata(): ElementMetadata;
|
|
1597
1625
|
/**
|
|
1598
1626
|
* @SINCE 1.34.0
|
|
1599
1627
|
*
|
|
@@ -1640,17 +1668,6 @@ declare module "sap/ui/unified/calendar/DatesRow" {
|
|
|
1640
1668
|
*/
|
|
1641
1669
|
iDays?: int
|
|
1642
1670
|
): this;
|
|
1643
|
-
/**
|
|
1644
|
-
* Setter for property `firstDayOfWeek`.
|
|
1645
|
-
*
|
|
1646
|
-
* Property `firstDayOfWeek` is not supported in `sap.ui.unified.calendar.DatesRow` control.
|
|
1647
|
-
*/
|
|
1648
|
-
setFirstDayOfWeek(
|
|
1649
|
-
/**
|
|
1650
|
-
* The first day of the week
|
|
1651
|
-
*/
|
|
1652
|
-
iFirstDayOfWeek: int
|
|
1653
|
-
): this;
|
|
1654
1671
|
/**
|
|
1655
1672
|
* @SINCE 1.34.0
|
|
1656
1673
|
*
|
|
@@ -1761,6 +1778,31 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
1761
1778
|
mSettings?: $HeaderSettings
|
|
1762
1779
|
);
|
|
1763
1780
|
|
|
1781
|
+
/**
|
|
1782
|
+
* Creates a new subclass of class sap.ui.unified.calendar.Header with name `sClassName` and enriches it
|
|
1783
|
+
* with the information contained in `oClassInfo`.
|
|
1784
|
+
*
|
|
1785
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1786
|
+
*/
|
|
1787
|
+
static extend<T extends Record<string, unknown>>(
|
|
1788
|
+
/**
|
|
1789
|
+
* Name of the class being created
|
|
1790
|
+
*/
|
|
1791
|
+
sClassName: string,
|
|
1792
|
+
/**
|
|
1793
|
+
* Object literal with information about the class
|
|
1794
|
+
*/
|
|
1795
|
+
oClassInfo?: sap.ClassInfo<T, Header>,
|
|
1796
|
+
/**
|
|
1797
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1798
|
+
* used by this class
|
|
1799
|
+
*/
|
|
1800
|
+
FNMetaImpl?: Function
|
|
1801
|
+
): Function;
|
|
1802
|
+
/**
|
|
1803
|
+
* Returns a metadata object for class sap.ui.unified.calendar.Header.
|
|
1804
|
+
*/
|
|
1805
|
+
static getMetadata(): ElementMetadata;
|
|
1764
1806
|
/**
|
|
1765
1807
|
* @SINCE 1.32.0
|
|
1766
1808
|
*
|
|
@@ -1888,6 +1930,49 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
1888
1930
|
*/
|
|
1889
1931
|
oListener?: object
|
|
1890
1932
|
): this;
|
|
1933
|
+
/**
|
|
1934
|
+
* Attaches event handler `fnFunction` to the {@link #event:pressCurrentDate pressCurrentDate} event of
|
|
1935
|
+
* this `sap.ui.unified.calendar.Header`.
|
|
1936
|
+
*
|
|
1937
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
1938
|
+
* otherwise it will be bound to this `sap.ui.unified.calendar.Header` itself.
|
|
1939
|
+
*
|
|
1940
|
+
* Current date button pressed
|
|
1941
|
+
*/
|
|
1942
|
+
attachPressCurrentDate(
|
|
1943
|
+
/**
|
|
1944
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
1945
|
+
* object when firing the event
|
|
1946
|
+
*/
|
|
1947
|
+
oData: object,
|
|
1948
|
+
/**
|
|
1949
|
+
* The function to be called when the event occurs
|
|
1950
|
+
*/
|
|
1951
|
+
fnFunction: (p1: Event) => void,
|
|
1952
|
+
/**
|
|
1953
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.unified.calendar.Header` itself
|
|
1954
|
+
*/
|
|
1955
|
+
oListener?: object
|
|
1956
|
+
): this;
|
|
1957
|
+
/**
|
|
1958
|
+
* Attaches event handler `fnFunction` to the {@link #event:pressCurrentDate pressCurrentDate} event of
|
|
1959
|
+
* this `sap.ui.unified.calendar.Header`.
|
|
1960
|
+
*
|
|
1961
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
1962
|
+
* otherwise it will be bound to this `sap.ui.unified.calendar.Header` itself.
|
|
1963
|
+
*
|
|
1964
|
+
* Current date button pressed
|
|
1965
|
+
*/
|
|
1966
|
+
attachPressCurrentDate(
|
|
1967
|
+
/**
|
|
1968
|
+
* The function to be called when the event occurs
|
|
1969
|
+
*/
|
|
1970
|
+
fnFunction: (p1: Event) => void,
|
|
1971
|
+
/**
|
|
1972
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.unified.calendar.Header` itself
|
|
1973
|
+
*/
|
|
1974
|
+
oListener?: object
|
|
1975
|
+
): this;
|
|
1891
1976
|
/**
|
|
1892
1977
|
* Attaches event handler `fnFunction` to the {@link #event:pressNext pressNext} event of this `sap.ui.unified.calendar.Header`.
|
|
1893
1978
|
*
|
|
@@ -2018,11 +2103,12 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2018
2103
|
oListener?: object
|
|
2019
2104
|
): this;
|
|
2020
2105
|
/**
|
|
2021
|
-
* Detaches event handler `fnFunction` from the {@link #event:
|
|
2106
|
+
* Detaches event handler `fnFunction` from the {@link #event:pressCurrentDate pressCurrentDate} event of
|
|
2107
|
+
* this `sap.ui.unified.calendar.Header`.
|
|
2022
2108
|
*
|
|
2023
2109
|
* The passed function and listener object must match the ones used for event registration.
|
|
2024
2110
|
*/
|
|
2025
|
-
|
|
2111
|
+
detachPressCurrentDate(
|
|
2026
2112
|
/**
|
|
2027
2113
|
* The function to be called, when the event occurs
|
|
2028
2114
|
*/
|
|
@@ -2033,12 +2119,11 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2033
2119
|
oListener?: object
|
|
2034
2120
|
): this;
|
|
2035
2121
|
/**
|
|
2036
|
-
* Detaches event handler `fnFunction` from the {@link #event:
|
|
2037
|
-
* `sap.ui.unified.calendar.Header`.
|
|
2122
|
+
* Detaches event handler `fnFunction` from the {@link #event:pressNext pressNext} event of this `sap.ui.unified.calendar.Header`.
|
|
2038
2123
|
*
|
|
2039
2124
|
* The passed function and listener object must match the ones used for event registration.
|
|
2040
2125
|
*/
|
|
2041
|
-
|
|
2126
|
+
detachPressNext(
|
|
2042
2127
|
/**
|
|
2043
2128
|
* The function to be called, when the event occurs
|
|
2044
2129
|
*/
|
|
@@ -2049,26 +2134,21 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2049
2134
|
oListener?: object
|
|
2050
2135
|
): this;
|
|
2051
2136
|
/**
|
|
2052
|
-
*
|
|
2053
|
-
*
|
|
2137
|
+
* Detaches event handler `fnFunction` from the {@link #event:pressPrevious pressPrevious} event of this
|
|
2138
|
+
* `sap.ui.unified.calendar.Header`.
|
|
2054
2139
|
*
|
|
2055
|
-
*
|
|
2140
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
2056
2141
|
*/
|
|
2057
|
-
|
|
2058
|
-
/**
|
|
2059
|
-
* Name of the class being created
|
|
2060
|
-
*/
|
|
2061
|
-
sClassName: string,
|
|
2142
|
+
detachPressPrevious(
|
|
2062
2143
|
/**
|
|
2063
|
-
*
|
|
2144
|
+
* The function to be called, when the event occurs
|
|
2064
2145
|
*/
|
|
2065
|
-
|
|
2146
|
+
fnFunction: (p1: Event) => void,
|
|
2066
2147
|
/**
|
|
2067
|
-
*
|
|
2068
|
-
* used by this class
|
|
2148
|
+
* Context object on which the given function had to be called
|
|
2069
2149
|
*/
|
|
2070
|
-
|
|
2071
|
-
):
|
|
2150
|
+
oListener?: object
|
|
2151
|
+
): this;
|
|
2072
2152
|
/**
|
|
2073
2153
|
* @SINCE 1.32.0
|
|
2074
2154
|
*
|
|
@@ -2098,6 +2178,15 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2098
2178
|
*/
|
|
2099
2179
|
mParameters?: object
|
|
2100
2180
|
): this;
|
|
2181
|
+
/**
|
|
2182
|
+
* Fires event {@link #event:pressCurrentDate pressCurrentDate} to attached listeners.
|
|
2183
|
+
*/
|
|
2184
|
+
firePressCurrentDate(
|
|
2185
|
+
/**
|
|
2186
|
+
* Parameters to pass along with the event
|
|
2187
|
+
*/
|
|
2188
|
+
mParameters?: object
|
|
2189
|
+
): this;
|
|
2101
2190
|
/**
|
|
2102
2191
|
* Fires event {@link #event:pressNext pressNext} to attached listeners.
|
|
2103
2192
|
*/
|
|
@@ -2176,10 +2265,6 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2176
2265
|
* Default value is `true`.
|
|
2177
2266
|
*/
|
|
2178
2267
|
getEnabledPrevious(): boolean;
|
|
2179
|
-
/**
|
|
2180
|
-
* Returns a metadata object for class sap.ui.unified.calendar.Header.
|
|
2181
|
-
*/
|
|
2182
|
-
static getMetadata(): ElementMetadata;
|
|
2183
2268
|
/**
|
|
2184
2269
|
* @SINCE 1.32.0
|
|
2185
2270
|
*
|
|
@@ -2232,6 +2317,16 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2232
2317
|
* Default value is `true`.
|
|
2233
2318
|
*/
|
|
2234
2319
|
getVisibleButton2(): boolean;
|
|
2320
|
+
/**
|
|
2321
|
+
* @SINCE 1.95.0
|
|
2322
|
+
*
|
|
2323
|
+
* Gets current value of property {@link #getVisibleCurrentDateButton visibleCurrentDateButton}.
|
|
2324
|
+
*
|
|
2325
|
+
* If set, the Current date button will be displayed.
|
|
2326
|
+
*
|
|
2327
|
+
* Default value is `false`.
|
|
2328
|
+
*/
|
|
2329
|
+
getVisibleCurrentDateButton(): boolean;
|
|
2235
2330
|
/**
|
|
2236
2331
|
* @SINCE 1.34.0
|
|
2237
2332
|
*
|
|
@@ -2442,6 +2537,23 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2442
2537
|
*/
|
|
2443
2538
|
bVisibleButton2?: boolean
|
|
2444
2539
|
): this;
|
|
2540
|
+
/**
|
|
2541
|
+
* @SINCE 1.95.0
|
|
2542
|
+
*
|
|
2543
|
+
* Sets a new value for property {@link #getVisibleCurrentDateButton visibleCurrentDateButton}.
|
|
2544
|
+
*
|
|
2545
|
+
* If set, the Current date button will be displayed.
|
|
2546
|
+
*
|
|
2547
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
2548
|
+
*
|
|
2549
|
+
* Default value is `false`.
|
|
2550
|
+
*/
|
|
2551
|
+
setVisibleCurrentDateButton(
|
|
2552
|
+
/**
|
|
2553
|
+
* New value for property `visibleCurrentDateButton`
|
|
2554
|
+
*/
|
|
2555
|
+
bVisibleCurrentDateButton?: boolean
|
|
2556
|
+
): this;
|
|
2445
2557
|
}
|
|
2446
2558
|
|
|
2447
2559
|
export interface $HeaderSettings extends $ControlSettings {
|
|
@@ -2533,32 +2645,44 @@ declare module "sap/ui/unified/calendar/Header" {
|
|
|
2533
2645
|
*/
|
|
2534
2646
|
enabledNext?: boolean | PropertyBindingInfo;
|
|
2535
2647
|
|
|
2648
|
+
/**
|
|
2649
|
+
* @SINCE 1.95.0
|
|
2650
|
+
*
|
|
2651
|
+
* If set, the Current date button will be displayed.
|
|
2652
|
+
*/
|
|
2653
|
+
visibleCurrentDateButton?: boolean | PropertyBindingInfo;
|
|
2654
|
+
|
|
2536
2655
|
/**
|
|
2537
2656
|
* Previous button pressed
|
|
2538
2657
|
*/
|
|
2539
|
-
pressPrevious?:
|
|
2658
|
+
pressPrevious?: (oEvent: Event) => void;
|
|
2540
2659
|
|
|
2541
2660
|
/**
|
|
2542
2661
|
* Next button pressed
|
|
2543
2662
|
*/
|
|
2544
|
-
pressNext?:
|
|
2663
|
+
pressNext?: (oEvent: Event) => void;
|
|
2664
|
+
|
|
2665
|
+
/**
|
|
2666
|
+
* Current date button pressed
|
|
2667
|
+
*/
|
|
2668
|
+
pressCurrentDate?: (oEvent: Event) => void;
|
|
2545
2669
|
|
|
2546
2670
|
/**
|
|
2547
2671
|
* @SINCE 1.32.0
|
|
2548
2672
|
*
|
|
2549
2673
|
* First button pressed (normally day)
|
|
2550
2674
|
*/
|
|
2551
|
-
pressButton0?:
|
|
2675
|
+
pressButton0?: (oEvent: Event) => void;
|
|
2552
2676
|
|
|
2553
2677
|
/**
|
|
2554
2678
|
* Second button pressed (normally month)
|
|
2555
2679
|
*/
|
|
2556
|
-
pressButton1?:
|
|
2680
|
+
pressButton1?: (oEvent: Event) => void;
|
|
2557
2681
|
|
|
2558
2682
|
/**
|
|
2559
2683
|
* Third button pressed (normally year)
|
|
2560
2684
|
*/
|
|
2561
|
-
pressButton2?:
|
|
2685
|
+
pressButton2?: (oEvent: Event) => void;
|
|
2562
2686
|
}
|
|
2563
2687
|
}
|
|
2564
2688
|
|
|
@@ -2623,6 +2747,31 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
2623
2747
|
mSettings?: $MonthSettings
|
|
2624
2748
|
);
|
|
2625
2749
|
|
|
2750
|
+
/**
|
|
2751
|
+
* Creates a new subclass of class sap.ui.unified.calendar.Month with name `sClassName` and enriches it
|
|
2752
|
+
* with the information contained in `oClassInfo`.
|
|
2753
|
+
*
|
|
2754
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2755
|
+
*/
|
|
2756
|
+
static extend<T extends Record<string, unknown>>(
|
|
2757
|
+
/**
|
|
2758
|
+
* Name of the class being created
|
|
2759
|
+
*/
|
|
2760
|
+
sClassName: string,
|
|
2761
|
+
/**
|
|
2762
|
+
* Object literal with information about the class
|
|
2763
|
+
*/
|
|
2764
|
+
oClassInfo?: sap.ClassInfo<T, Month>,
|
|
2765
|
+
/**
|
|
2766
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2767
|
+
* used by this class
|
|
2768
|
+
*/
|
|
2769
|
+
FNMetaImpl?: Function
|
|
2770
|
+
): Function;
|
|
2771
|
+
/**
|
|
2772
|
+
* Returns a metadata object for class sap.ui.unified.calendar.Month.
|
|
2773
|
+
*/
|
|
2774
|
+
static getMetadata(): ElementMetadata;
|
|
2626
2775
|
/**
|
|
2627
2776
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
2628
2777
|
*/
|
|
@@ -2881,27 +3030,6 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
2881
3030
|
*/
|
|
2882
3031
|
oDate: object
|
|
2883
3032
|
): this;
|
|
2884
|
-
/**
|
|
2885
|
-
* Creates a new subclass of class sap.ui.unified.calendar.Month with name `sClassName` and enriches it
|
|
2886
|
-
* with the information contained in `oClassInfo`.
|
|
2887
|
-
*
|
|
2888
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2889
|
-
*/
|
|
2890
|
-
static extend<T extends Record<string, unknown>>(
|
|
2891
|
-
/**
|
|
2892
|
-
* Name of the class being created
|
|
2893
|
-
*/
|
|
2894
|
-
sClassName: string,
|
|
2895
|
-
/**
|
|
2896
|
-
* Object literal with information about the class
|
|
2897
|
-
*/
|
|
2898
|
-
oClassInfo?: sap.ClassInfo<T, Month>,
|
|
2899
|
-
/**
|
|
2900
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2901
|
-
* used by this class
|
|
2902
|
-
*/
|
|
2903
|
-
FNMetaImpl?: Function
|
|
2904
|
-
): Function;
|
|
2905
3033
|
/**
|
|
2906
3034
|
* Fires event {@link #event:focus focus} to attached listeners.
|
|
2907
3035
|
*/
|
|
@@ -3003,10 +3131,6 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3003
3131
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
3004
3132
|
*/
|
|
3005
3133
|
getLegend(): ID;
|
|
3006
|
-
/**
|
|
3007
|
-
* Returns a metadata object for class sap.ui.unified.calendar.Month.
|
|
3008
|
-
*/
|
|
3009
|
-
static getMetadata(): ElementMetadata;
|
|
3010
3134
|
/**
|
|
3011
3135
|
* @SINCE 1.28.9
|
|
3012
3136
|
*
|
|
@@ -3515,12 +3639,12 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3515
3639
|
/**
|
|
3516
3640
|
* Date selection changed
|
|
3517
3641
|
*/
|
|
3518
|
-
select?:
|
|
3642
|
+
select?: (oEvent: Event) => void;
|
|
3519
3643
|
|
|
3520
3644
|
/**
|
|
3521
3645
|
* Date focus changed
|
|
3522
3646
|
*/
|
|
3523
|
-
focus?:
|
|
3647
|
+
focus?: (oEvent: Event) => void;
|
|
3524
3648
|
|
|
3525
3649
|
/**
|
|
3526
3650
|
* @SINCE 1.60
|
|
@@ -3532,7 +3656,7 @@ declare module "sap/ui/unified/calendar/Month" {
|
|
|
3532
3656
|
*
|
|
3533
3657
|
* **Note:** Works for Gregorian calendars only and when `intervalSelection` is set to `true`.
|
|
3534
3658
|
*/
|
|
3535
|
-
weekNumberSelect?:
|
|
3659
|
+
weekNumberSelect?: (oEvent: Event) => void;
|
|
3536
3660
|
}
|
|
3537
3661
|
}
|
|
3538
3662
|
|
|
@@ -3591,6 +3715,31 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
3591
3715
|
mSettings?: $MonthPickerSettings
|
|
3592
3716
|
);
|
|
3593
3717
|
|
|
3718
|
+
/**
|
|
3719
|
+
* Creates a new subclass of class sap.ui.unified.calendar.MonthPicker with name `sClassName` and enriches
|
|
3720
|
+
* it with the information contained in `oClassInfo`.
|
|
3721
|
+
*
|
|
3722
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3723
|
+
*/
|
|
3724
|
+
static extend<T extends Record<string, unknown>>(
|
|
3725
|
+
/**
|
|
3726
|
+
* Name of the class being created
|
|
3727
|
+
*/
|
|
3728
|
+
sClassName: string,
|
|
3729
|
+
/**
|
|
3730
|
+
* Object literal with information about the class
|
|
3731
|
+
*/
|
|
3732
|
+
oClassInfo?: sap.ClassInfo<T, MonthPicker>,
|
|
3733
|
+
/**
|
|
3734
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3735
|
+
* used by this class
|
|
3736
|
+
*/
|
|
3737
|
+
FNMetaImpl?: Function
|
|
3738
|
+
): Function;
|
|
3739
|
+
/**
|
|
3740
|
+
* Returns a metadata object for class sap.ui.unified.calendar.MonthPicker.
|
|
3741
|
+
*/
|
|
3742
|
+
static getMetadata(): ElementMetadata;
|
|
3594
3743
|
/**
|
|
3595
3744
|
* @SINCE 1.92
|
|
3596
3745
|
*
|
|
@@ -3743,27 +3892,6 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
3743
3892
|
*/
|
|
3744
3893
|
oListener?: object
|
|
3745
3894
|
): this;
|
|
3746
|
-
/**
|
|
3747
|
-
* Creates a new subclass of class sap.ui.unified.calendar.MonthPicker with name `sClassName` and enriches
|
|
3748
|
-
* it with the information contained in `oClassInfo`.
|
|
3749
|
-
*
|
|
3750
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
3751
|
-
*/
|
|
3752
|
-
static extend<T extends Record<string, unknown>>(
|
|
3753
|
-
/**
|
|
3754
|
-
* Name of the class being created
|
|
3755
|
-
*/
|
|
3756
|
-
sClassName: string,
|
|
3757
|
-
/**
|
|
3758
|
-
* Object literal with information about the class
|
|
3759
|
-
*/
|
|
3760
|
-
oClassInfo?: sap.ClassInfo<T, MonthPicker>,
|
|
3761
|
-
/**
|
|
3762
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
3763
|
-
* used by this class
|
|
3764
|
-
*/
|
|
3765
|
-
FNMetaImpl?: Function
|
|
3766
|
-
): Function;
|
|
3767
3895
|
/**
|
|
3768
3896
|
* @SINCE 1.38.0
|
|
3769
3897
|
*
|
|
@@ -3812,10 +3940,6 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
3812
3940
|
* Default value is `false`.
|
|
3813
3941
|
*/
|
|
3814
3942
|
getIntervalSelection(): boolean;
|
|
3815
|
-
/**
|
|
3816
|
-
* Returns a metadata object for class sap.ui.unified.calendar.MonthPicker.
|
|
3817
|
-
*/
|
|
3818
|
-
static getMetadata(): ElementMetadata;
|
|
3819
3943
|
/**
|
|
3820
3944
|
* Gets current value of property {@link #getMonth month}.
|
|
3821
3945
|
*
|
|
@@ -4077,7 +4201,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4077
4201
|
/**
|
|
4078
4202
|
* Month selection changed
|
|
4079
4203
|
*/
|
|
4080
|
-
select?:
|
|
4204
|
+
select?: (oEvent: Event) => void;
|
|
4081
4205
|
|
|
4082
4206
|
/**
|
|
4083
4207
|
* @SINCE 1.38.0
|
|
@@ -4085,7 +4209,7 @@ declare module "sap/ui/unified/calendar/MonthPicker" {
|
|
|
4085
4209
|
* If less than 12 months are displayed the `pageChange` event is fired if the displayed months are changed
|
|
4086
4210
|
* by user navigation.
|
|
4087
4211
|
*/
|
|
4088
|
-
pageChange?:
|
|
4212
|
+
pageChange?: (oEvent: Event) => void;
|
|
4089
4213
|
}
|
|
4090
4214
|
}
|
|
4091
4215
|
|
|
@@ -4156,6 +4280,31 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
4156
4280
|
mSettings?: $MonthsRowSettings
|
|
4157
4281
|
);
|
|
4158
4282
|
|
|
4283
|
+
/**
|
|
4284
|
+
* Creates a new subclass of class sap.ui.unified.calendar.MonthsRow with name `sClassName` and enriches
|
|
4285
|
+
* it with the information contained in `oClassInfo`.
|
|
4286
|
+
*
|
|
4287
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4288
|
+
*/
|
|
4289
|
+
static extend<T extends Record<string, unknown>>(
|
|
4290
|
+
/**
|
|
4291
|
+
* Name of the class being created
|
|
4292
|
+
*/
|
|
4293
|
+
sClassName: string,
|
|
4294
|
+
/**
|
|
4295
|
+
* Object literal with information about the class
|
|
4296
|
+
*/
|
|
4297
|
+
oClassInfo?: sap.ClassInfo<T, MonthsRow>,
|
|
4298
|
+
/**
|
|
4299
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4300
|
+
* used by this class
|
|
4301
|
+
*/
|
|
4302
|
+
FNMetaImpl?: Function
|
|
4303
|
+
): Function;
|
|
4304
|
+
/**
|
|
4305
|
+
* Returns a metadata object for class sap.ui.unified.calendar.MonthsRow.
|
|
4306
|
+
*/
|
|
4307
|
+
static getMetadata(): ElementMetadata;
|
|
4159
4308
|
/**
|
|
4160
4309
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
4161
4310
|
*/
|
|
@@ -4322,27 +4471,6 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
4322
4471
|
*/
|
|
4323
4472
|
oDate: object
|
|
4324
4473
|
): this;
|
|
4325
|
-
/**
|
|
4326
|
-
* Creates a new subclass of class sap.ui.unified.calendar.MonthsRow with name `sClassName` and enriches
|
|
4327
|
-
* it with the information contained in `oClassInfo`.
|
|
4328
|
-
*
|
|
4329
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4330
|
-
*/
|
|
4331
|
-
static extend<T extends Record<string, unknown>>(
|
|
4332
|
-
/**
|
|
4333
|
-
* Name of the class being created
|
|
4334
|
-
*/
|
|
4335
|
-
sClassName: string,
|
|
4336
|
-
/**
|
|
4337
|
-
* Object literal with information about the class
|
|
4338
|
-
*/
|
|
4339
|
-
oClassInfo?: sap.ClassInfo<T, MonthsRow>,
|
|
4340
|
-
/**
|
|
4341
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4342
|
-
* used by this class
|
|
4343
|
-
*/
|
|
4344
|
-
FNMetaImpl?: Function
|
|
4345
|
-
): Function;
|
|
4346
4474
|
/**
|
|
4347
4475
|
* Fires event {@link #event:focus focus} to attached listeners.
|
|
4348
4476
|
*/
|
|
@@ -4398,10 +4526,6 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
4398
4526
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
4399
4527
|
*/
|
|
4400
4528
|
getLegend(): ID;
|
|
4401
|
-
/**
|
|
4402
|
-
* Returns a metadata object for class sap.ui.unified.calendar.MonthsRow.
|
|
4403
|
-
*/
|
|
4404
|
-
static getMetadata(): ElementMetadata;
|
|
4405
4529
|
/**
|
|
4406
4530
|
* Gets current value of property {@link #getMonths months}.
|
|
4407
4531
|
*
|
|
@@ -4706,12 +4830,12 @@ declare module "sap/ui/unified/calendar/MonthsRow" {
|
|
|
4706
4830
|
/**
|
|
4707
4831
|
* Month selection changed
|
|
4708
4832
|
*/
|
|
4709
|
-
select?:
|
|
4833
|
+
select?: (oEvent: Event) => void;
|
|
4710
4834
|
|
|
4711
4835
|
/**
|
|
4712
4836
|
* Month focus changed
|
|
4713
4837
|
*/
|
|
4714
|
-
focus?:
|
|
4838
|
+
focus?: (oEvent: Event) => void;
|
|
4715
4839
|
}
|
|
4716
4840
|
}
|
|
4717
4841
|
|
|
@@ -4781,6 +4905,31 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
4781
4905
|
mSettings?: $TimesRowSettings
|
|
4782
4906
|
);
|
|
4783
4907
|
|
|
4908
|
+
/**
|
|
4909
|
+
* Creates a new subclass of class sap.ui.unified.calendar.TimesRow with name `sClassName` and enriches
|
|
4910
|
+
* it with the information contained in `oClassInfo`.
|
|
4911
|
+
*
|
|
4912
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4913
|
+
*/
|
|
4914
|
+
static extend<T extends Record<string, unknown>>(
|
|
4915
|
+
/**
|
|
4916
|
+
* Name of the class being created
|
|
4917
|
+
*/
|
|
4918
|
+
sClassName: string,
|
|
4919
|
+
/**
|
|
4920
|
+
* Object literal with information about the class
|
|
4921
|
+
*/
|
|
4922
|
+
oClassInfo?: sap.ClassInfo<T, TimesRow>,
|
|
4923
|
+
/**
|
|
4924
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4925
|
+
* used by this class
|
|
4926
|
+
*/
|
|
4927
|
+
FNMetaImpl?: Function
|
|
4928
|
+
): Function;
|
|
4929
|
+
/**
|
|
4930
|
+
* Returns a metadata object for class sap.ui.unified.calendar.TimesRow.
|
|
4931
|
+
*/
|
|
4932
|
+
static getMetadata(): ElementMetadata;
|
|
4784
4933
|
/**
|
|
4785
4934
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
4786
4935
|
*/
|
|
@@ -4947,27 +5096,6 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
4947
5096
|
*/
|
|
4948
5097
|
oDate: object
|
|
4949
5098
|
): this;
|
|
4950
|
-
/**
|
|
4951
|
-
* Creates a new subclass of class sap.ui.unified.calendar.TimesRow with name `sClassName` and enriches
|
|
4952
|
-
* it with the information contained in `oClassInfo`.
|
|
4953
|
-
*
|
|
4954
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
4955
|
-
*/
|
|
4956
|
-
static extend<T extends Record<string, unknown>>(
|
|
4957
|
-
/**
|
|
4958
|
-
* Name of the class being created
|
|
4959
|
-
*/
|
|
4960
|
-
sClassName: string,
|
|
4961
|
-
/**
|
|
4962
|
-
* Object literal with information about the class
|
|
4963
|
-
*/
|
|
4964
|
-
oClassInfo?: sap.ClassInfo<T, TimesRow>,
|
|
4965
|
-
/**
|
|
4966
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
4967
|
-
* used by this class
|
|
4968
|
-
*/
|
|
4969
|
-
FNMetaImpl?: Function
|
|
4970
|
-
): Function;
|
|
4971
5099
|
/**
|
|
4972
5100
|
* Fires event {@link #event:focus focus} to attached listeners.
|
|
4973
5101
|
*/
|
|
@@ -5045,10 +5173,6 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
5045
5173
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
5046
5174
|
*/
|
|
5047
5175
|
getLegend(): ID;
|
|
5048
|
-
/**
|
|
5049
|
-
* Returns a metadata object for class sap.ui.unified.calendar.TimesRow.
|
|
5050
|
-
*/
|
|
5051
|
-
static getMetadata(): ElementMetadata;
|
|
5052
5176
|
/**
|
|
5053
5177
|
* Gets content of aggregation {@link #getSelectedDates selectedDates}.
|
|
5054
5178
|
*
|
|
@@ -5380,12 +5504,12 @@ declare module "sap/ui/unified/calendar/TimesRow" {
|
|
|
5380
5504
|
/**
|
|
5381
5505
|
* Time selection changed
|
|
5382
5506
|
*/
|
|
5383
|
-
select?:
|
|
5507
|
+
select?: (oEvent: Event) => void;
|
|
5384
5508
|
|
|
5385
5509
|
/**
|
|
5386
5510
|
* Time focus changed
|
|
5387
5511
|
*/
|
|
5388
|
-
focus?:
|
|
5512
|
+
focus?: (oEvent: Event) => void;
|
|
5389
5513
|
}
|
|
5390
5514
|
}
|
|
5391
5515
|
|
|
@@ -5444,6 +5568,31 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
5444
5568
|
mSettings?: $YearPickerSettings
|
|
5445
5569
|
);
|
|
5446
5570
|
|
|
5571
|
+
/**
|
|
5572
|
+
* Creates a new subclass of class sap.ui.unified.calendar.YearPicker with name `sClassName` and enriches
|
|
5573
|
+
* it with the information contained in `oClassInfo`.
|
|
5574
|
+
*
|
|
5575
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5576
|
+
*/
|
|
5577
|
+
static extend<T extends Record<string, unknown>>(
|
|
5578
|
+
/**
|
|
5579
|
+
* Name of the class being created
|
|
5580
|
+
*/
|
|
5581
|
+
sClassName: string,
|
|
5582
|
+
/**
|
|
5583
|
+
* Object literal with information about the class
|
|
5584
|
+
*/
|
|
5585
|
+
oClassInfo?: sap.ClassInfo<T, YearPicker>,
|
|
5586
|
+
/**
|
|
5587
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5588
|
+
* used by this class
|
|
5589
|
+
*/
|
|
5590
|
+
FNMetaImpl?: Function
|
|
5591
|
+
): Function;
|
|
5592
|
+
/**
|
|
5593
|
+
* Returns a metadata object for class sap.ui.unified.calendar.YearPicker.
|
|
5594
|
+
*/
|
|
5595
|
+
static getMetadata(): ElementMetadata;
|
|
5447
5596
|
/**
|
|
5448
5597
|
* @SINCE 1.74
|
|
5449
5598
|
*
|
|
@@ -5583,27 +5732,6 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
5583
5732
|
*/
|
|
5584
5733
|
oListener?: object
|
|
5585
5734
|
): this;
|
|
5586
|
-
/**
|
|
5587
|
-
* Creates a new subclass of class sap.ui.unified.calendar.YearPicker with name `sClassName` and enriches
|
|
5588
|
-
* it with the information contained in `oClassInfo`.
|
|
5589
|
-
*
|
|
5590
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
5591
|
-
*/
|
|
5592
|
-
static extend<T extends Record<string, unknown>>(
|
|
5593
|
-
/**
|
|
5594
|
-
* Name of the class being created
|
|
5595
|
-
*/
|
|
5596
|
-
sClassName: string,
|
|
5597
|
-
/**
|
|
5598
|
-
* Object literal with information about the class
|
|
5599
|
-
*/
|
|
5600
|
-
oClassInfo?: sap.ClassInfo<T, YearPicker>,
|
|
5601
|
-
/**
|
|
5602
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
5603
|
-
* used by this class
|
|
5604
|
-
*/
|
|
5605
|
-
FNMetaImpl?: Function
|
|
5606
|
-
): Function;
|
|
5607
5735
|
/**
|
|
5608
5736
|
* @SINCE 1.38.0
|
|
5609
5737
|
*
|
|
@@ -5660,10 +5788,6 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
5660
5788
|
* Default value is `false`.
|
|
5661
5789
|
*/
|
|
5662
5790
|
getIntervalSelection(): boolean;
|
|
5663
|
-
/**
|
|
5664
|
-
* Returns a metadata object for class sap.ui.unified.calendar.YearPicker.
|
|
5665
|
-
*/
|
|
5666
|
-
static getMetadata(): ElementMetadata;
|
|
5667
5791
|
/**
|
|
5668
5792
|
* @SINCE 1.34.0
|
|
5669
5793
|
*
|
|
@@ -5900,14 +6024,14 @@ declare module "sap/ui/unified/calendar/YearPicker" {
|
|
|
5900
6024
|
/**
|
|
5901
6025
|
* Year selection changed
|
|
5902
6026
|
*/
|
|
5903
|
-
select?:
|
|
6027
|
+
select?: (oEvent: Event) => void;
|
|
5904
6028
|
|
|
5905
6029
|
/**
|
|
5906
6030
|
* @SINCE 1.38.0
|
|
5907
6031
|
*
|
|
5908
6032
|
* The `pageChange` event is fired if the displayed years are changed by user navigation.
|
|
5909
6033
|
*/
|
|
5910
|
-
pageChange?:
|
|
6034
|
+
pageChange?: (oEvent: Event) => void;
|
|
5911
6035
|
}
|
|
5912
6036
|
}
|
|
5913
6037
|
|
|
@@ -5917,11 +6041,16 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
5917
6041
|
$DateTypeRangeSettings,
|
|
5918
6042
|
} from "sap/ui/unified/DateTypeRange";
|
|
5919
6043
|
|
|
6044
|
+
import Control from "sap/ui/core/Control";
|
|
6045
|
+
|
|
5920
6046
|
import { CSSColor, URI } from "sap/ui/core/library";
|
|
5921
6047
|
|
|
5922
6048
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
5923
6049
|
|
|
5924
|
-
import {
|
|
6050
|
+
import {
|
|
6051
|
+
PropertyBindingInfo,
|
|
6052
|
+
AggregationBindingInfo,
|
|
6053
|
+
} from "sap/ui/base/ManagedObject";
|
|
5925
6054
|
|
|
5926
6055
|
/**
|
|
5927
6056
|
* @SINCE 1.34.0
|
|
@@ -5984,6 +6113,29 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
5984
6113
|
*/
|
|
5985
6114
|
FNMetaImpl?: Function
|
|
5986
6115
|
): Function;
|
|
6116
|
+
/**
|
|
6117
|
+
* Returns a metadata object for class sap.ui.unified.CalendarAppointment.
|
|
6118
|
+
*/
|
|
6119
|
+
static getMetadata(): ElementMetadata;
|
|
6120
|
+
/**
|
|
6121
|
+
* @SINCE 1.93.0
|
|
6122
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6123
|
+
*
|
|
6124
|
+
* Adds some customContent to the aggregation {@link #getCustomContent customContent}.
|
|
6125
|
+
*/
|
|
6126
|
+
addCustomContent(
|
|
6127
|
+
/**
|
|
6128
|
+
* The customContent to add; if empty, nothing is inserted
|
|
6129
|
+
*/
|
|
6130
|
+
oCustomContent: Control
|
|
6131
|
+
): this;
|
|
6132
|
+
/**
|
|
6133
|
+
* @SINCE 1.93.0
|
|
6134
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6135
|
+
*
|
|
6136
|
+
* Destroys all the customContent in the aggregation {@link #getCustomContent customContent}.
|
|
6137
|
+
*/
|
|
6138
|
+
destroyCustomContent(): this;
|
|
5987
6139
|
/**
|
|
5988
6140
|
* @SINCE 1.46.0
|
|
5989
6141
|
*
|
|
@@ -5993,6 +6145,24 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
5993
6145
|
* with pound symbol, e.g.: #FF0000.
|
|
5994
6146
|
*/
|
|
5995
6147
|
getColor(): CSSColor;
|
|
6148
|
+
/**
|
|
6149
|
+
* @SINCE 1.93.0
|
|
6150
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6151
|
+
*
|
|
6152
|
+
* Gets content of aggregation {@link #getCustomContent customContent}.
|
|
6153
|
+
*
|
|
6154
|
+
* Holds the content of the appointment.
|
|
6155
|
+
*
|
|
6156
|
+
* **Note **, If the `customContent` aggregation is added then:
|
|
6157
|
+
*
|
|
6158
|
+
*
|
|
6159
|
+
* - The `title`, `text`, `description`, and `icon` properties are ignored.
|
|
6160
|
+
* - The application developer has to ensure, that all the accessibility requirements are met, and that
|
|
6161
|
+
* the height of the content conforms with the height provided by the appointment.
|
|
6162
|
+
* - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
|
|
6163
|
+
* and may lead to unpredictable results.
|
|
6164
|
+
*/
|
|
6165
|
+
getCustomContent(): Control[];
|
|
5996
6166
|
/**
|
|
5997
6167
|
* @SINCE 1.81.0
|
|
5998
6168
|
*
|
|
@@ -6015,10 +6185,6 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
6015
6185
|
* Can be used as identifier of the appointment
|
|
6016
6186
|
*/
|
|
6017
6187
|
getKey(): string;
|
|
6018
|
-
/**
|
|
6019
|
-
* Returns a metadata object for class sap.ui.unified.CalendarAppointment.
|
|
6020
|
-
*/
|
|
6021
|
-
static getMetadata(): ElementMetadata;
|
|
6022
6188
|
/**
|
|
6023
6189
|
* Gets current value of property {@link #getSelected selected}.
|
|
6024
6190
|
*
|
|
@@ -6047,6 +6213,58 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
6047
6213
|
* Title of the appointment.
|
|
6048
6214
|
*/
|
|
6049
6215
|
getTitle(): string;
|
|
6216
|
+
/**
|
|
6217
|
+
* @SINCE 1.93.0
|
|
6218
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6219
|
+
*
|
|
6220
|
+
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCustomContent customContent}.
|
|
6221
|
+
* and returns its index if found or -1 otherwise.
|
|
6222
|
+
*/
|
|
6223
|
+
indexOfCustomContent(
|
|
6224
|
+
/**
|
|
6225
|
+
* The customContent whose index is looked for
|
|
6226
|
+
*/
|
|
6227
|
+
oCustomContent: Control
|
|
6228
|
+
): int;
|
|
6229
|
+
/**
|
|
6230
|
+
* @SINCE 1.93.0
|
|
6231
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6232
|
+
*
|
|
6233
|
+
* Inserts a customContent into the aggregation {@link #getCustomContent customContent}.
|
|
6234
|
+
*/
|
|
6235
|
+
insertCustomContent(
|
|
6236
|
+
/**
|
|
6237
|
+
* The customContent to insert; if empty, nothing is inserted
|
|
6238
|
+
*/
|
|
6239
|
+
oCustomContent: Control,
|
|
6240
|
+
/**
|
|
6241
|
+
* The `0`-based index the customContent should be inserted at; for a negative value of `iIndex`, the customContent
|
|
6242
|
+
* is inserted at position 0; for a value greater than the current size of the aggregation, the customContent
|
|
6243
|
+
* is inserted at the last position
|
|
6244
|
+
*/
|
|
6245
|
+
iIndex: int
|
|
6246
|
+
): this;
|
|
6247
|
+
/**
|
|
6248
|
+
* @SINCE 1.93.0
|
|
6249
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6250
|
+
*
|
|
6251
|
+
* Removes all the controls from the aggregation {@link #getCustomContent customContent}.
|
|
6252
|
+
*
|
|
6253
|
+
* Additionally, it unregisters them from the hosting UIArea.
|
|
6254
|
+
*/
|
|
6255
|
+
removeAllCustomContent(): Control[];
|
|
6256
|
+
/**
|
|
6257
|
+
* @SINCE 1.93.0
|
|
6258
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6259
|
+
*
|
|
6260
|
+
* Removes a customContent from the aggregation {@link #getCustomContent customContent}.
|
|
6261
|
+
*/
|
|
6262
|
+
removeCustomContent(
|
|
6263
|
+
/**
|
|
6264
|
+
* The customContent to remove or its index or id
|
|
6265
|
+
*/
|
|
6266
|
+
vCustomContent: int | string | Control
|
|
6267
|
+
): Control;
|
|
6050
6268
|
/**
|
|
6051
6269
|
* @SINCE 1.46.0
|
|
6052
6270
|
*
|
|
@@ -6211,6 +6429,23 @@ declare module "sap/ui/unified/CalendarAppointment" {
|
|
|
6211
6429
|
* with pound symbol, e.g.: #FF0000.
|
|
6212
6430
|
*/
|
|
6213
6431
|
color?: CSSColor | PropertyBindingInfo;
|
|
6432
|
+
|
|
6433
|
+
/**
|
|
6434
|
+
* @SINCE 1.93.0
|
|
6435
|
+
* @EXPERIMENTAL (since 1.93)
|
|
6436
|
+
*
|
|
6437
|
+
* Holds the content of the appointment.
|
|
6438
|
+
*
|
|
6439
|
+
* **Note **, If the `customContent` aggregation is added then:
|
|
6440
|
+
*
|
|
6441
|
+
*
|
|
6442
|
+
* - The `title`, `text`, `description`, and `icon` properties are ignored.
|
|
6443
|
+
* - The application developer has to ensure, that all the accessibility requirements are met, and that
|
|
6444
|
+
* the height of the content conforms with the height provided by the appointment.
|
|
6445
|
+
* - Do not use interactive controls as content, as they may trigger unwanted selection of the appointment
|
|
6446
|
+
* and may lead to unpredictable results.
|
|
6447
|
+
*/
|
|
6448
|
+
customContent?: Control[] | Control | AggregationBindingInfo;
|
|
6214
6449
|
}
|
|
6215
6450
|
}
|
|
6216
6451
|
|
|
@@ -6262,10 +6497,6 @@ declare module "sap/ui/unified/CalendarDateInterval" {
|
|
|
6262
6497
|
mSettings?: $CalendarDateIntervalSettings
|
|
6263
6498
|
);
|
|
6264
6499
|
|
|
6265
|
-
/**
|
|
6266
|
-
* If more than this number of days are displayed, start and end month are displayed on the button.
|
|
6267
|
-
*/
|
|
6268
|
-
_getDaysLarge(): int;
|
|
6269
6500
|
/**
|
|
6270
6501
|
* Creates a new subclass of class sap.ui.unified.CalendarDateInterval with name `sClassName` and enriches
|
|
6271
6502
|
* it with the information contained in `oClassInfo`.
|
|
@@ -6287,6 +6518,14 @@ declare module "sap/ui/unified/CalendarDateInterval" {
|
|
|
6287
6518
|
*/
|
|
6288
6519
|
FNMetaImpl?: Function
|
|
6289
6520
|
): Function;
|
|
6521
|
+
/**
|
|
6522
|
+
* Returns a metadata object for class sap.ui.unified.CalendarDateInterval.
|
|
6523
|
+
*/
|
|
6524
|
+
static getMetadata(): ElementMetadata;
|
|
6525
|
+
/**
|
|
6526
|
+
* If more than this number of days are displayed, start and end month are displayed on the button.
|
|
6527
|
+
*/
|
|
6528
|
+
_getDaysLarge(): int;
|
|
6290
6529
|
/**
|
|
6291
6530
|
* Gets current value of property {@link #getDays days}.
|
|
6292
6531
|
*
|
|
@@ -6295,10 +6534,6 @@ declare module "sap/ui/unified/CalendarDateInterval" {
|
|
|
6295
6534
|
* Default value is `7`.
|
|
6296
6535
|
*/
|
|
6297
6536
|
getDays(): int;
|
|
6298
|
-
/**
|
|
6299
|
-
* Returns a metadata object for class sap.ui.unified.CalendarDateInterval.
|
|
6300
|
-
*/
|
|
6301
|
-
static getMetadata(): ElementMetadata;
|
|
6302
6537
|
/**
|
|
6303
6538
|
* @SINCE 1.34.0
|
|
6304
6539
|
*
|
|
@@ -6493,19 +6728,6 @@ declare module "sap/ui/unified/CalendarLegend" {
|
|
|
6493
6728
|
mSettings?: $CalendarLegendSettings
|
|
6494
6729
|
);
|
|
6495
6730
|
|
|
6496
|
-
/**
|
|
6497
|
-
* Adds some item to the aggregation {@link #getItems items}.
|
|
6498
|
-
*/
|
|
6499
|
-
addItem(
|
|
6500
|
-
/**
|
|
6501
|
-
* The item to add; if empty, nothing is inserted
|
|
6502
|
-
*/
|
|
6503
|
-
oItem: CalendarLegendItem
|
|
6504
|
-
): this;
|
|
6505
|
-
/**
|
|
6506
|
-
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
6507
|
-
*/
|
|
6508
|
-
destroyItems(): this;
|
|
6509
6731
|
/**
|
|
6510
6732
|
* Creates a new subclass of class sap.ui.unified.CalendarLegend with name `sClassName` and enriches it
|
|
6511
6733
|
* with the information contained in `oClassInfo`.
|
|
@@ -6527,6 +6749,23 @@ declare module "sap/ui/unified/CalendarLegend" {
|
|
|
6527
6749
|
*/
|
|
6528
6750
|
FNMetaImpl?: Function
|
|
6529
6751
|
): Function;
|
|
6752
|
+
/**
|
|
6753
|
+
* Returns a metadata object for class sap.ui.unified.CalendarLegend.
|
|
6754
|
+
*/
|
|
6755
|
+
static getMetadata(): ElementMetadata;
|
|
6756
|
+
/**
|
|
6757
|
+
* Adds some item to the aggregation {@link #getItems items}.
|
|
6758
|
+
*/
|
|
6759
|
+
addItem(
|
|
6760
|
+
/**
|
|
6761
|
+
* The item to add; if empty, nothing is inserted
|
|
6762
|
+
*/
|
|
6763
|
+
oItem: CalendarLegendItem
|
|
6764
|
+
): this;
|
|
6765
|
+
/**
|
|
6766
|
+
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
6767
|
+
*/
|
|
6768
|
+
destroyItems(): this;
|
|
6530
6769
|
/**
|
|
6531
6770
|
* Gets current value of property {@link #getColumnWidth columnWidth}.
|
|
6532
6771
|
*
|
|
@@ -6541,10 +6780,6 @@ declare module "sap/ui/unified/CalendarLegend" {
|
|
|
6541
6780
|
* Items to be displayed.
|
|
6542
6781
|
*/
|
|
6543
6782
|
getItems(): CalendarLegendItem[];
|
|
6544
|
-
/**
|
|
6545
|
-
* Returns a metadata object for class sap.ui.unified.CalendarLegend.
|
|
6546
|
-
*/
|
|
6547
|
-
static getMetadata(): ElementMetadata;
|
|
6548
6783
|
/**
|
|
6549
6784
|
* @SINCE 1.54
|
|
6550
6785
|
*
|
|
@@ -6724,6 +6959,10 @@ declare module "sap/ui/unified/CalendarLegendItem" {
|
|
|
6724
6959
|
*/
|
|
6725
6960
|
FNMetaImpl?: Function
|
|
6726
6961
|
): Function;
|
|
6962
|
+
/**
|
|
6963
|
+
* Returns a metadata object for class sap.ui.unified.CalendarLegendItem.
|
|
6964
|
+
*/
|
|
6965
|
+
static getMetadata(): ElementMetadata;
|
|
6727
6966
|
/**
|
|
6728
6967
|
* @SINCE 1.46.0
|
|
6729
6968
|
*
|
|
@@ -6732,10 +6971,6 @@ declare module "sap/ui/unified/CalendarLegendItem" {
|
|
|
6732
6971
|
* Overrides the color derived from the `type` property.
|
|
6733
6972
|
*/
|
|
6734
6973
|
getColor(): CSSColor;
|
|
6735
|
-
/**
|
|
6736
|
-
* Returns a metadata object for class sap.ui.unified.CalendarLegendItem.
|
|
6737
|
-
*/
|
|
6738
|
-
static getMetadata(): ElementMetadata;
|
|
6739
6974
|
/**
|
|
6740
6975
|
* Gets current value of property {@link #getText text}.
|
|
6741
6976
|
*
|
|
@@ -6889,6 +7124,31 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
6889
7124
|
mSettings?: $CalendarMonthIntervalSettings
|
|
6890
7125
|
);
|
|
6891
7126
|
|
|
7127
|
+
/**
|
|
7128
|
+
* Creates a new subclass of class sap.ui.unified.CalendarMonthInterval with name `sClassName` and enriches
|
|
7129
|
+
* it with the information contained in `oClassInfo`.
|
|
7130
|
+
*
|
|
7131
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7132
|
+
*/
|
|
7133
|
+
static extend<T extends Record<string, unknown>>(
|
|
7134
|
+
/**
|
|
7135
|
+
* Name of the class being created
|
|
7136
|
+
*/
|
|
7137
|
+
sClassName: string,
|
|
7138
|
+
/**
|
|
7139
|
+
* Object literal with information about the class
|
|
7140
|
+
*/
|
|
7141
|
+
oClassInfo?: sap.ClassInfo<T, CalendarMonthInterval>,
|
|
7142
|
+
/**
|
|
7143
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7144
|
+
* used by this class
|
|
7145
|
+
*/
|
|
7146
|
+
FNMetaImpl?: Function
|
|
7147
|
+
): Function;
|
|
7148
|
+
/**
|
|
7149
|
+
* Returns a metadata object for class sap.ui.unified.CalendarMonthInterval.
|
|
7150
|
+
*/
|
|
7151
|
+
static getMetadata(): ElementMetadata;
|
|
6892
7152
|
/**
|
|
6893
7153
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
6894
7154
|
*/
|
|
@@ -7116,27 +7376,6 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
7116
7376
|
*/
|
|
7117
7377
|
oDatetime: Object
|
|
7118
7378
|
): this;
|
|
7119
|
-
/**
|
|
7120
|
-
* Creates a new subclass of class sap.ui.unified.CalendarMonthInterval with name `sClassName` and enriches
|
|
7121
|
-
* it with the information contained in `oClassInfo`.
|
|
7122
|
-
*
|
|
7123
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7124
|
-
*/
|
|
7125
|
-
static extend<T extends Record<string, unknown>>(
|
|
7126
|
-
/**
|
|
7127
|
-
* Name of the class being created
|
|
7128
|
-
*/
|
|
7129
|
-
sClassName: string,
|
|
7130
|
-
/**
|
|
7131
|
-
* Object literal with information about the class
|
|
7132
|
-
*/
|
|
7133
|
-
oClassInfo?: sap.ClassInfo<T, CalendarMonthInterval>,
|
|
7134
|
-
/**
|
|
7135
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7136
|
-
* used by this class
|
|
7137
|
-
*/
|
|
7138
|
-
FNMetaImpl?: Function
|
|
7139
|
-
): Function;
|
|
7140
7379
|
/**
|
|
7141
7380
|
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
7142
7381
|
*/
|
|
@@ -7205,10 +7444,6 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
7205
7444
|
* month of the `maxDate`.
|
|
7206
7445
|
*/
|
|
7207
7446
|
getMaxDate(): object;
|
|
7208
|
-
/**
|
|
7209
|
-
* Returns a metadata object for class sap.ui.unified.CalendarMonthInterval.
|
|
7210
|
-
*/
|
|
7211
|
-
static getMetadata(): ElementMetadata;
|
|
7212
7447
|
/**
|
|
7213
7448
|
* @SINCE 1.38.0
|
|
7214
7449
|
*
|
|
@@ -7598,19 +7833,19 @@ declare module "sap/ui/unified/CalendarMonthInterval" {
|
|
|
7598
7833
|
/**
|
|
7599
7834
|
* Month selection changed
|
|
7600
7835
|
*/
|
|
7601
|
-
select?:
|
|
7836
|
+
select?: (oEvent: Event) => void;
|
|
7602
7837
|
|
|
7603
7838
|
/**
|
|
7604
7839
|
* Month selection was cancelled
|
|
7605
7840
|
*/
|
|
7606
|
-
cancel?:
|
|
7841
|
+
cancel?: (oEvent: Event) => void;
|
|
7607
7842
|
|
|
7608
7843
|
/**
|
|
7609
7844
|
* @SINCE 1.34.0
|
|
7610
7845
|
*
|
|
7611
7846
|
* `startDate` was changed while navigation in `CalendarMonthInterval`
|
|
7612
7847
|
*/
|
|
7613
|
-
startDateChange?:
|
|
7848
|
+
startDateChange?: (oEvent: Event) => void;
|
|
7614
7849
|
}
|
|
7615
7850
|
}
|
|
7616
7851
|
|
|
@@ -7677,6 +7912,31 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
7677
7912
|
mSettings?: $CalendarRowSettings
|
|
7678
7913
|
);
|
|
7679
7914
|
|
|
7915
|
+
/**
|
|
7916
|
+
* Creates a new subclass of class sap.ui.unified.CalendarRow with name `sClassName` and enriches it with
|
|
7917
|
+
* the information contained in `oClassInfo`.
|
|
7918
|
+
*
|
|
7919
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7920
|
+
*/
|
|
7921
|
+
static extend<T extends Record<string, unknown>>(
|
|
7922
|
+
/**
|
|
7923
|
+
* Name of the class being created
|
|
7924
|
+
*/
|
|
7925
|
+
sClassName: string,
|
|
7926
|
+
/**
|
|
7927
|
+
* Object literal with information about the class
|
|
7928
|
+
*/
|
|
7929
|
+
oClassInfo?: sap.ClassInfo<T, CalendarRow>,
|
|
7930
|
+
/**
|
|
7931
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7932
|
+
* used by this class
|
|
7933
|
+
*/
|
|
7934
|
+
FNMetaImpl?: Function
|
|
7935
|
+
): Function;
|
|
7936
|
+
/**
|
|
7937
|
+
* Returns a metadata object for class sap.ui.unified.CalendarRow.
|
|
7938
|
+
*/
|
|
7939
|
+
static getMetadata(): ElementMetadata;
|
|
7680
7940
|
/**
|
|
7681
7941
|
* Adds some appointment to the aggregation {@link #getAppointments appointments}.
|
|
7682
7942
|
*/
|
|
@@ -7950,27 +8210,6 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
7950
8210
|
*/
|
|
7951
8211
|
oListener?: object
|
|
7952
8212
|
): this;
|
|
7953
|
-
/**
|
|
7954
|
-
* Creates a new subclass of class sap.ui.unified.CalendarRow with name `sClassName` and enriches it with
|
|
7955
|
-
* the information contained in `oClassInfo`.
|
|
7956
|
-
*
|
|
7957
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
7958
|
-
*/
|
|
7959
|
-
static extend<T extends Record<string, unknown>>(
|
|
7960
|
-
/**
|
|
7961
|
-
* Name of the class being created
|
|
7962
|
-
*/
|
|
7963
|
-
sClassName: string,
|
|
7964
|
-
/**
|
|
7965
|
-
* Object literal with information about the class
|
|
7966
|
-
*/
|
|
7967
|
-
oClassInfo?: sap.ClassInfo<T, CalendarRow>,
|
|
7968
|
-
/**
|
|
7969
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
7970
|
-
* used by this class
|
|
7971
|
-
*/
|
|
7972
|
-
FNMetaImpl?: Function
|
|
7973
|
-
): Function;
|
|
7974
8213
|
/**
|
|
7975
8214
|
* @SINCE 1.38.0
|
|
7976
8215
|
*
|
|
@@ -8191,6 +8430,15 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
8191
8430
|
* Default value is `12`.
|
|
8192
8431
|
*/
|
|
8193
8432
|
getIntervals(): int;
|
|
8433
|
+
/**
|
|
8434
|
+
* Gets current value of property {@link #getIntervalSize intervalSize}.
|
|
8435
|
+
*
|
|
8436
|
+
* Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
|
|
8437
|
+
* Note: If the value is more than 1, the NonWorkingDays type is not presented.
|
|
8438
|
+
*
|
|
8439
|
+
* Default value is `1`.
|
|
8440
|
+
*/
|
|
8441
|
+
getIntervalSize(): int;
|
|
8194
8442
|
/**
|
|
8195
8443
|
* Gets current value of property {@link #getIntervalType intervalType}.
|
|
8196
8444
|
*
|
|
@@ -8205,10 +8453,6 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
8205
8453
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
8206
8454
|
*/
|
|
8207
8455
|
getLegend(): ID;
|
|
8208
|
-
/**
|
|
8209
|
-
* Returns a metadata object for class sap.ui.unified.CalendarRow.
|
|
8210
|
-
*/
|
|
8211
|
-
static getMetadata(): ElementMetadata;
|
|
8212
8456
|
/**
|
|
8213
8457
|
* Gets current value of property {@link #getNonWorkingDays nonWorkingDays}.
|
|
8214
8458
|
*
|
|
@@ -8547,6 +8791,22 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
8547
8791
|
*/
|
|
8548
8792
|
iIntervals?: int
|
|
8549
8793
|
): this;
|
|
8794
|
+
/**
|
|
8795
|
+
* Sets a new value for property {@link #getIntervalSize intervalSize}.
|
|
8796
|
+
*
|
|
8797
|
+
* Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
|
|
8798
|
+
* Note: If the value is more than 1, the NonWorkingDays type is not presented.
|
|
8799
|
+
*
|
|
8800
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8801
|
+
*
|
|
8802
|
+
* Default value is `1`.
|
|
8803
|
+
*/
|
|
8804
|
+
setIntervalSize(
|
|
8805
|
+
/**
|
|
8806
|
+
* New value for property `intervalSize`
|
|
8807
|
+
*/
|
|
8808
|
+
iIntervalSize?: int
|
|
8809
|
+
): this;
|
|
8550
8810
|
/**
|
|
8551
8811
|
* Sets a new value for property {@link #getIntervalType intervalType}.
|
|
8552
8812
|
*
|
|
@@ -8734,6 +8994,12 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
8734
8994
|
*/
|
|
8735
8995
|
intervals?: int | PropertyBindingInfo;
|
|
8736
8996
|
|
|
8997
|
+
/**
|
|
8998
|
+
* Number of interval type units merged. It's used when presenting Relative View in sap.m.PlanningCalendar.
|
|
8999
|
+
* Note: If the value is more than 1, the NonWorkingDays type is not presented.
|
|
9000
|
+
*/
|
|
9001
|
+
intervalSize?: int | PropertyBindingInfo;
|
|
9002
|
+
|
|
8737
9003
|
/**
|
|
8738
9004
|
* Type of the intervals of the row. The default is one hour.
|
|
8739
9005
|
*/
|
|
@@ -8918,25 +9184,25 @@ declare module "sap/ui/unified/CalendarRow" {
|
|
|
8918
9184
|
/**
|
|
8919
9185
|
* Fired if an appointment was selected
|
|
8920
9186
|
*/
|
|
8921
|
-
select?:
|
|
9187
|
+
select?: (oEvent: Event) => void;
|
|
8922
9188
|
|
|
8923
9189
|
/**
|
|
8924
9190
|
* `startDate` was changed while navigating in `CalendarRow`
|
|
8925
9191
|
*/
|
|
8926
|
-
startDateChange?:
|
|
9192
|
+
startDateChange?: (oEvent: Event) => void;
|
|
8927
9193
|
|
|
8928
9194
|
/**
|
|
8929
9195
|
* The `CalendarRow` should be left while navigating. (Arrow up or arrow down.) The caller should determine
|
|
8930
9196
|
* the next control to be focused
|
|
8931
9197
|
*/
|
|
8932
|
-
leaveRow?:
|
|
9198
|
+
leaveRow?: (oEvent: Event) => void;
|
|
8933
9199
|
|
|
8934
9200
|
/**
|
|
8935
9201
|
* @SINCE 1.38.0
|
|
8936
9202
|
*
|
|
8937
9203
|
* Fired if an interval was selected
|
|
8938
9204
|
*/
|
|
8939
|
-
intervalSelect?:
|
|
9205
|
+
intervalSelect?: (oEvent: Event) => void;
|
|
8940
9206
|
}
|
|
8941
9207
|
}
|
|
8942
9208
|
|
|
@@ -8999,6 +9265,31 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
8999
9265
|
mSettings?: $CalendarTimeIntervalSettings
|
|
9000
9266
|
);
|
|
9001
9267
|
|
|
9268
|
+
/**
|
|
9269
|
+
* Creates a new subclass of class sap.ui.unified.CalendarTimeInterval with name `sClassName` and enriches
|
|
9270
|
+
* it with the information contained in `oClassInfo`.
|
|
9271
|
+
*
|
|
9272
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9273
|
+
*/
|
|
9274
|
+
static extend<T extends Record<string, unknown>>(
|
|
9275
|
+
/**
|
|
9276
|
+
* Name of the class being created
|
|
9277
|
+
*/
|
|
9278
|
+
sClassName: string,
|
|
9279
|
+
/**
|
|
9280
|
+
* Object literal with information about the class
|
|
9281
|
+
*/
|
|
9282
|
+
oClassInfo?: sap.ClassInfo<T, CalendarTimeInterval>,
|
|
9283
|
+
/**
|
|
9284
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9285
|
+
* used by this class
|
|
9286
|
+
*/
|
|
9287
|
+
FNMetaImpl?: Function
|
|
9288
|
+
): Function;
|
|
9289
|
+
/**
|
|
9290
|
+
* Returns a metadata object for class sap.ui.unified.CalendarTimeInterval.
|
|
9291
|
+
*/
|
|
9292
|
+
static getMetadata(): ElementMetadata;
|
|
9002
9293
|
/**
|
|
9003
9294
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
9004
9295
|
*/
|
|
@@ -9227,41 +9518,20 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
9227
9518
|
oDate: object
|
|
9228
9519
|
): Calendar;
|
|
9229
9520
|
/**
|
|
9230
|
-
*
|
|
9231
|
-
* it with the information contained in `oClassInfo`.
|
|
9232
|
-
*
|
|
9233
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9521
|
+
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
9234
9522
|
*/
|
|
9235
|
-
|
|
9523
|
+
fireCancel(
|
|
9236
9524
|
/**
|
|
9237
|
-
*
|
|
9525
|
+
* Parameters to pass along with the event
|
|
9238
9526
|
*/
|
|
9239
|
-
|
|
9527
|
+
mParameters?: object
|
|
9528
|
+
): this;
|
|
9529
|
+
/**
|
|
9530
|
+
* Fires event {@link #event:select select} to attached listeners.
|
|
9531
|
+
*/
|
|
9532
|
+
fireSelect(
|
|
9240
9533
|
/**
|
|
9241
|
-
*
|
|
9242
|
-
*/
|
|
9243
|
-
oClassInfo?: sap.ClassInfo<T, CalendarTimeInterval>,
|
|
9244
|
-
/**
|
|
9245
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9246
|
-
* used by this class
|
|
9247
|
-
*/
|
|
9248
|
-
FNMetaImpl?: Function
|
|
9249
|
-
): Function;
|
|
9250
|
-
/**
|
|
9251
|
-
* Fires event {@link #event:cancel cancel} to attached listeners.
|
|
9252
|
-
*/
|
|
9253
|
-
fireCancel(
|
|
9254
|
-
/**
|
|
9255
|
-
* Parameters to pass along with the event
|
|
9256
|
-
*/
|
|
9257
|
-
mParameters?: object
|
|
9258
|
-
): this;
|
|
9259
|
-
/**
|
|
9260
|
-
* Fires event {@link #event:select select} to attached listeners.
|
|
9261
|
-
*/
|
|
9262
|
-
fireSelect(
|
|
9263
|
-
/**
|
|
9264
|
-
* Parameters to pass along with the event
|
|
9534
|
+
* Parameters to pass along with the event
|
|
9265
9535
|
*/
|
|
9266
9536
|
mParameters?: object
|
|
9267
9537
|
): this;
|
|
@@ -9339,10 +9609,6 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
9339
9609
|
* month of the `maxDate`.
|
|
9340
9610
|
*/
|
|
9341
9611
|
getMaxDate(): object;
|
|
9342
|
-
/**
|
|
9343
|
-
* Returns a metadata object for class sap.ui.unified.CalendarTimeInterval.
|
|
9344
|
-
*/
|
|
9345
|
-
static getMetadata(): ElementMetadata;
|
|
9346
9612
|
/**
|
|
9347
9613
|
* @SINCE 1.38.0
|
|
9348
9614
|
*
|
|
@@ -9758,19 +10024,19 @@ declare module "sap/ui/unified/CalendarTimeInterval" {
|
|
|
9758
10024
|
/**
|
|
9759
10025
|
* Time selection changed
|
|
9760
10026
|
*/
|
|
9761
|
-
select?:
|
|
10027
|
+
select?: (oEvent: Event) => void;
|
|
9762
10028
|
|
|
9763
10029
|
/**
|
|
9764
10030
|
* Time selection was cancelled
|
|
9765
10031
|
*/
|
|
9766
|
-
cancel?:
|
|
10032
|
+
cancel?: (oEvent: Event) => void;
|
|
9767
10033
|
|
|
9768
10034
|
/**
|
|
9769
10035
|
* @SINCE 1.34.0
|
|
9770
10036
|
*
|
|
9771
10037
|
* `startDate` was changed while navigation in `CalendarTimeInterval`
|
|
9772
10038
|
*/
|
|
9773
|
-
startDateChange?:
|
|
10039
|
+
startDateChange?: (oEvent: Event) => void;
|
|
9774
10040
|
}
|
|
9775
10041
|
}
|
|
9776
10042
|
|
|
@@ -9828,6 +10094,31 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
9828
10094
|
mSettings?: $ColorPickerSettings
|
|
9829
10095
|
);
|
|
9830
10096
|
|
|
10097
|
+
/**
|
|
10098
|
+
* Creates a new subclass of class sap.ui.unified.ColorPicker with name `sClassName` and enriches it with
|
|
10099
|
+
* the information contained in `oClassInfo`.
|
|
10100
|
+
*
|
|
10101
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10102
|
+
*/
|
|
10103
|
+
static extend<T extends Record<string, unknown>>(
|
|
10104
|
+
/**
|
|
10105
|
+
* Name of the class being created
|
|
10106
|
+
*/
|
|
10107
|
+
sClassName: string,
|
|
10108
|
+
/**
|
|
10109
|
+
* Object literal with information about the class
|
|
10110
|
+
*/
|
|
10111
|
+
oClassInfo?: sap.ClassInfo<T, ColorPicker>,
|
|
10112
|
+
/**
|
|
10113
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10114
|
+
* used by this class
|
|
10115
|
+
*/
|
|
10116
|
+
FNMetaImpl?: Function
|
|
10117
|
+
): Function;
|
|
10118
|
+
/**
|
|
10119
|
+
* Returns a metadata object for class sap.ui.unified.ColorPicker.
|
|
10120
|
+
*/
|
|
10121
|
+
static getMetadata(): ElementMetadata;
|
|
9831
10122
|
/**
|
|
9832
10123
|
* @SINCE 1.48.0
|
|
9833
10124
|
*
|
|
@@ -9960,27 +10251,6 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
9960
10251
|
*/
|
|
9961
10252
|
oListener?: object
|
|
9962
10253
|
): this;
|
|
9963
|
-
/**
|
|
9964
|
-
* Creates a new subclass of class sap.ui.unified.ColorPicker with name `sClassName` and enriches it with
|
|
9965
|
-
* the information contained in `oClassInfo`.
|
|
9966
|
-
*
|
|
9967
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
9968
|
-
*/
|
|
9969
|
-
static extend<T extends Record<string, unknown>>(
|
|
9970
|
-
/**
|
|
9971
|
-
* Name of the class being created
|
|
9972
|
-
*/
|
|
9973
|
-
sClassName: string,
|
|
9974
|
-
/**
|
|
9975
|
-
* Object literal with information about the class
|
|
9976
|
-
*/
|
|
9977
|
-
oClassInfo?: sap.ClassInfo<T, ColorPicker>,
|
|
9978
|
-
/**
|
|
9979
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
9980
|
-
* used by this class
|
|
9981
|
-
*/
|
|
9982
|
-
FNMetaImpl?: Function
|
|
9983
|
-
): Function;
|
|
9984
10254
|
/**
|
|
9985
10255
|
* @SINCE 1.48.0
|
|
9986
10256
|
*
|
|
@@ -10102,10 +10372,6 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
10102
10372
|
getDisplayMode():
|
|
10103
10373
|
| ColorPickerDisplayMode
|
|
10104
10374
|
| keyof typeof ColorPickerDisplayMode;
|
|
10105
|
-
/**
|
|
10106
|
-
* Returns a metadata object for class sap.ui.unified.ColorPicker.
|
|
10107
|
-
*/
|
|
10108
|
-
static getMetadata(): ElementMetadata;
|
|
10109
10375
|
/**
|
|
10110
10376
|
* @SINCE 1.48.0
|
|
10111
10377
|
*
|
|
@@ -10223,7 +10489,7 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
10223
10489
|
*
|
|
10224
10490
|
* **Note:** When the user action is mouse dragging, the `change` event fires on the mouseup event.
|
|
10225
10491
|
*/
|
|
10226
|
-
change?:
|
|
10492
|
+
change?: (oEvent: Event) => void;
|
|
10227
10493
|
|
|
10228
10494
|
/**
|
|
10229
10495
|
* @SINCE 1.48.0
|
|
@@ -10232,7 +10498,7 @@ declare module "sap/ui/unified/ColorPicker" {
|
|
|
10232
10498
|
*
|
|
10233
10499
|
* **Note:** When the user action is mouse move, the `liveChange` event is fired during the mousedown event.
|
|
10234
10500
|
*/
|
|
10235
|
-
liveChange?:
|
|
10501
|
+
liveChange?: (oEvent: Event) => void;
|
|
10236
10502
|
}
|
|
10237
10503
|
}
|
|
10238
10504
|
|
|
@@ -10309,6 +10575,31 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
10309
10575
|
mSettings?: $ColorPickerPopoverSettings
|
|
10310
10576
|
);
|
|
10311
10577
|
|
|
10578
|
+
/**
|
|
10579
|
+
* Creates a new subclass of class sap.ui.unified.ColorPickerPopover with name `sClassName` and enriches
|
|
10580
|
+
* it with the information contained in `oClassInfo`.
|
|
10581
|
+
*
|
|
10582
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10583
|
+
*/
|
|
10584
|
+
static extend<T extends Record<string, unknown>>(
|
|
10585
|
+
/**
|
|
10586
|
+
* Name of the class being created
|
|
10587
|
+
*/
|
|
10588
|
+
sClassName: string,
|
|
10589
|
+
/**
|
|
10590
|
+
* Object literal with information about the class
|
|
10591
|
+
*/
|
|
10592
|
+
oClassInfo?: sap.ClassInfo<T, ColorPickerPopover>,
|
|
10593
|
+
/**
|
|
10594
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10595
|
+
* used by this class
|
|
10596
|
+
*/
|
|
10597
|
+
FNMetaImpl?: Function
|
|
10598
|
+
): Function;
|
|
10599
|
+
/**
|
|
10600
|
+
* Returns a metadata object for class sap.ui.unified.ColorPickerPopover.
|
|
10601
|
+
*/
|
|
10602
|
+
static getMetadata(): ElementMetadata;
|
|
10312
10603
|
/**
|
|
10313
10604
|
* @SINCE 1.60.0
|
|
10314
10605
|
*
|
|
@@ -10437,27 +10728,6 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
10437
10728
|
*/
|
|
10438
10729
|
oListener?: object
|
|
10439
10730
|
): this;
|
|
10440
|
-
/**
|
|
10441
|
-
* Creates a new subclass of class sap.ui.unified.ColorPickerPopover with name `sClassName` and enriches
|
|
10442
|
-
* it with the information contained in `oClassInfo`.
|
|
10443
|
-
*
|
|
10444
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10445
|
-
*/
|
|
10446
|
-
static extend<T extends Record<string, unknown>>(
|
|
10447
|
-
/**
|
|
10448
|
-
* Name of the class being created
|
|
10449
|
-
*/
|
|
10450
|
-
sClassName: string,
|
|
10451
|
-
/**
|
|
10452
|
-
* Object literal with information about the class
|
|
10453
|
-
*/
|
|
10454
|
-
oClassInfo?: sap.ClassInfo<T, ColorPickerPopover>,
|
|
10455
|
-
/**
|
|
10456
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10457
|
-
* used by this class
|
|
10458
|
-
*/
|
|
10459
|
-
FNMetaImpl?: Function
|
|
10460
|
-
): Function;
|
|
10461
10731
|
/**
|
|
10462
10732
|
* @SINCE 1.60.0
|
|
10463
10733
|
*
|
|
@@ -10579,10 +10849,6 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
10579
10849
|
getDisplayMode():
|
|
10580
10850
|
| ColorPickerDisplayMode
|
|
10581
10851
|
| keyof typeof ColorPickerDisplayMode;
|
|
10582
|
-
/**
|
|
10583
|
-
* Returns a metadata object for class sap.ui.unified.ColorPickerPopover.
|
|
10584
|
-
*/
|
|
10585
|
-
static getMetadata(): ElementMetadata;
|
|
10586
10852
|
/**
|
|
10587
10853
|
* @SINCE 1.60.0
|
|
10588
10854
|
*
|
|
@@ -10699,14 +10965,14 @@ declare module "sap/ui/unified/ColorPickerPopover" {
|
|
|
10699
10965
|
*
|
|
10700
10966
|
* Fired when the submit button of the popover is clicked.
|
|
10701
10967
|
*/
|
|
10702
|
-
change?:
|
|
10968
|
+
change?: (oEvent: Event) => void;
|
|
10703
10969
|
|
|
10704
10970
|
/**
|
|
10705
10971
|
* @SINCE 1.85
|
|
10706
10972
|
*
|
|
10707
10973
|
* Fired when the value is changed by user interaction in the internal ColorPicker
|
|
10708
10974
|
*/
|
|
10709
|
-
liveChange?:
|
|
10975
|
+
liveChange?: (oEvent: Event) => void;
|
|
10710
10976
|
}
|
|
10711
10977
|
}
|
|
10712
10978
|
|
|
@@ -10759,6 +11025,31 @@ declare module "sap/ui/unified/ContentSwitcher" {
|
|
|
10759
11025
|
mSettings?: $ContentSwitcherSettings
|
|
10760
11026
|
);
|
|
10761
11027
|
|
|
11028
|
+
/**
|
|
11029
|
+
* Creates a new subclass of class sap.ui.unified.ContentSwitcher with name `sClassName` and enriches it
|
|
11030
|
+
* with the information contained in `oClassInfo`.
|
|
11031
|
+
*
|
|
11032
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11033
|
+
*/
|
|
11034
|
+
static extend<T extends Record<string, unknown>>(
|
|
11035
|
+
/**
|
|
11036
|
+
* Name of the class being created
|
|
11037
|
+
*/
|
|
11038
|
+
sClassName: string,
|
|
11039
|
+
/**
|
|
11040
|
+
* Object literal with information about the class
|
|
11041
|
+
*/
|
|
11042
|
+
oClassInfo?: sap.ClassInfo<T, ContentSwitcher>,
|
|
11043
|
+
/**
|
|
11044
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11045
|
+
* used by this class
|
|
11046
|
+
*/
|
|
11047
|
+
FNMetaImpl?: Function
|
|
11048
|
+
): Function;
|
|
11049
|
+
/**
|
|
11050
|
+
* Returns a metadata object for class sap.ui.unified.ContentSwitcher.
|
|
11051
|
+
*/
|
|
11052
|
+
static getMetadata(): ElementMetadata;
|
|
10762
11053
|
/**
|
|
10763
11054
|
* Adds some content1 to the aggregation {@link #getContent1 content1}.
|
|
10764
11055
|
*/
|
|
@@ -10785,27 +11076,6 @@ declare module "sap/ui/unified/ContentSwitcher" {
|
|
|
10785
11076
|
* Destroys all the content2 in the aggregation {@link #getContent2 content2}.
|
|
10786
11077
|
*/
|
|
10787
11078
|
destroyContent2(): this;
|
|
10788
|
-
/**
|
|
10789
|
-
* Creates a new subclass of class sap.ui.unified.ContentSwitcher with name `sClassName` and enriches it
|
|
10790
|
-
* with the information contained in `oClassInfo`.
|
|
10791
|
-
*
|
|
10792
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
10793
|
-
*/
|
|
10794
|
-
static extend<T extends Record<string, unknown>>(
|
|
10795
|
-
/**
|
|
10796
|
-
* Name of the class being created
|
|
10797
|
-
*/
|
|
10798
|
-
sClassName: string,
|
|
10799
|
-
/**
|
|
10800
|
-
* Object literal with information about the class
|
|
10801
|
-
*/
|
|
10802
|
-
oClassInfo?: sap.ClassInfo<T, ContentSwitcher>,
|
|
10803
|
-
/**
|
|
10804
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
10805
|
-
* used by this class
|
|
10806
|
-
*/
|
|
10807
|
-
FNMetaImpl?: Function
|
|
10808
|
-
): Function;
|
|
10809
11079
|
/**
|
|
10810
11080
|
* Gets current value of property {@link #getActiveContent activeContent}.
|
|
10811
11081
|
*
|
|
@@ -10837,10 +11107,6 @@ declare module "sap/ui/unified/ContentSwitcher" {
|
|
|
10837
11107
|
* The controls that should be shown in the second content
|
|
10838
11108
|
*/
|
|
10839
11109
|
getContent2(): Control[];
|
|
10840
|
-
/**
|
|
10841
|
-
* Returns a metadata object for class sap.ui.unified.ContentSwitcher.
|
|
10842
|
-
*/
|
|
10843
|
-
static getMetadata(): ElementMetadata;
|
|
10844
11110
|
/**
|
|
10845
11111
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getContent1 content1}. and returns
|
|
10846
11112
|
* its index if found or -1 otherwise.
|
|
@@ -11079,6 +11345,10 @@ declare module "sap/ui/unified/Currency" {
|
|
|
11079
11345
|
*/
|
|
11080
11346
|
FNMetaImpl?: Function
|
|
11081
11347
|
): Function;
|
|
11348
|
+
/**
|
|
11349
|
+
* Returns a metadata object for class sap.ui.unified.Currency.
|
|
11350
|
+
*/
|
|
11351
|
+
static getMetadata(): ElementMetadata;
|
|
11082
11352
|
/**
|
|
11083
11353
|
* See:
|
|
11084
11354
|
* sap.ui.core.Control#getAccessibilityInfo
|
|
@@ -11117,10 +11387,6 @@ declare module "sap/ui/unified/Currency" {
|
|
|
11117
11387
|
* Defines the space that is available for the precision of the various currencies.
|
|
11118
11388
|
*/
|
|
11119
11389
|
getMaxPrecision(): int;
|
|
11120
|
-
/**
|
|
11121
|
-
* Returns a metadata object for class sap.ui.unified.Currency.
|
|
11122
|
-
*/
|
|
11123
|
-
static getMetadata(): ElementMetadata;
|
|
11124
11390
|
/**
|
|
11125
11391
|
* @SINCE 1.54
|
|
11126
11392
|
*
|
|
@@ -11308,6 +11574,10 @@ declare module "sap/ui/unified/DateRange" {
|
|
|
11308
11574
|
*/
|
|
11309
11575
|
FNMetaImpl?: Function
|
|
11310
11576
|
): Function;
|
|
11577
|
+
/**
|
|
11578
|
+
* Returns a metadata object for class sap.ui.unified.DateRange.
|
|
11579
|
+
*/
|
|
11580
|
+
static getMetadata(): ElementMetadata;
|
|
11311
11581
|
/**
|
|
11312
11582
|
* Gets current value of property {@link #getEndDate endDate}.
|
|
11313
11583
|
*
|
|
@@ -11315,10 +11585,6 @@ declare module "sap/ui/unified/DateRange" {
|
|
|
11315
11585
|
* be a JavaScript date object.
|
|
11316
11586
|
*/
|
|
11317
11587
|
getEndDate(): object;
|
|
11318
|
-
/**
|
|
11319
|
-
* Returns a metadata object for class sap.ui.unified.DateRange.
|
|
11320
|
-
*/
|
|
11321
|
-
static getMetadata(): ElementMetadata;
|
|
11322
11588
|
/**
|
|
11323
11589
|
* Gets current value of property {@link #getStartDate startDate}.
|
|
11324
11590
|
*
|
|
@@ -11440,6 +11706,10 @@ declare module "sap/ui/unified/DateTypeRange" {
|
|
|
11440
11706
|
*/
|
|
11441
11707
|
FNMetaImpl?: Function
|
|
11442
11708
|
): Function;
|
|
11709
|
+
/**
|
|
11710
|
+
* Returns a metadata object for class sap.ui.unified.DateTypeRange.
|
|
11711
|
+
*/
|
|
11712
|
+
static getMetadata(): ElementMetadata;
|
|
11443
11713
|
/**
|
|
11444
11714
|
* @SINCE 1.76.0
|
|
11445
11715
|
*
|
|
@@ -11449,10 +11719,6 @@ declare module "sap/ui/unified/DateTypeRange" {
|
|
|
11449
11719
|
* background color defined in `Calendar` `specialDates` aggregation
|
|
11450
11720
|
*/
|
|
11451
11721
|
getColor(): CSSColor;
|
|
11452
|
-
/**
|
|
11453
|
-
* Returns a metadata object for class sap.ui.unified.DateTypeRange.
|
|
11454
|
-
*/
|
|
11455
|
-
static getMetadata(): ElementMetadata;
|
|
11456
11722
|
/**
|
|
11457
11723
|
* @SINCE 1.81.0
|
|
11458
11724
|
*
|
|
@@ -11629,6 +11895,31 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
11629
11895
|
mSettings?: $FileUploaderSettings
|
|
11630
11896
|
);
|
|
11631
11897
|
|
|
11898
|
+
/**
|
|
11899
|
+
* Creates a new subclass of class sap.ui.unified.FileUploader with name `sClassName` and enriches it with
|
|
11900
|
+
* the information contained in `oClassInfo`.
|
|
11901
|
+
*
|
|
11902
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
11903
|
+
*/
|
|
11904
|
+
static extend<T extends Record<string, unknown>>(
|
|
11905
|
+
/**
|
|
11906
|
+
* Name of the class being created
|
|
11907
|
+
*/
|
|
11908
|
+
sClassName: string,
|
|
11909
|
+
/**
|
|
11910
|
+
* Object literal with information about the class
|
|
11911
|
+
*/
|
|
11912
|
+
oClassInfo?: sap.ClassInfo<T, FileUploader>,
|
|
11913
|
+
/**
|
|
11914
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
11915
|
+
* used by this class
|
|
11916
|
+
*/
|
|
11917
|
+
FNMetaImpl?: Function
|
|
11918
|
+
): Function;
|
|
11919
|
+
/**
|
|
11920
|
+
* Returns a metadata object for class sap.ui.unified.FileUploader.
|
|
11921
|
+
*/
|
|
11922
|
+
static getMetadata(): ElementMetadata;
|
|
11632
11923
|
/**
|
|
11633
11924
|
* @SINCE 1.24.0
|
|
11634
11925
|
*
|
|
@@ -12350,27 +12641,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
12350
12641
|
*/
|
|
12351
12642
|
oListener?: object
|
|
12352
12643
|
): this;
|
|
12353
|
-
/**
|
|
12354
|
-
* Creates a new subclass of class sap.ui.unified.FileUploader with name `sClassName` and enriches it with
|
|
12355
|
-
* the information contained in `oClassInfo`.
|
|
12356
|
-
*
|
|
12357
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
12358
|
-
*/
|
|
12359
|
-
static extend<T extends Record<string, unknown>>(
|
|
12360
|
-
/**
|
|
12361
|
-
* Name of the class being created
|
|
12362
|
-
*/
|
|
12363
|
-
sClassName: string,
|
|
12364
|
-
/**
|
|
12365
|
-
* Object literal with information about the class
|
|
12366
|
-
*/
|
|
12367
|
-
oClassInfo?: sap.ClassInfo<T, FileUploader>,
|
|
12368
|
-
/**
|
|
12369
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
12370
|
-
* used by this class
|
|
12371
|
-
*/
|
|
12372
|
-
FNMetaImpl?: Function
|
|
12373
|
-
): Function;
|
|
12374
12644
|
/**
|
|
12375
12645
|
* Fires event {@link #event:change change} to attached listeners.
|
|
12376
12646
|
*/
|
|
@@ -12755,10 +13025,6 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
12755
13025
|
* This property is not supported by Internet Explorer 9.
|
|
12756
13026
|
*/
|
|
12757
13027
|
getMaximumFileSize(): float;
|
|
12758
|
-
/**
|
|
12759
|
-
* Returns a metadata object for class sap.ui.unified.FileUploader.
|
|
12760
|
-
*/
|
|
12761
|
-
static getMetadata(): ElementMetadata;
|
|
12762
13028
|
/**
|
|
12763
13029
|
* Gets current value of property {@link #getMimeType mimeType}.
|
|
12764
13030
|
*
|
|
@@ -13772,7 +14038,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
13772
14038
|
* **Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in
|
|
13773
14039
|
* Chrome browser when the Cancel button of the uploads window is pressed.
|
|
13774
14040
|
*/
|
|
13775
|
-
change?:
|
|
14041
|
+
change?: (oEvent: Event) => void;
|
|
13776
14042
|
|
|
13777
14043
|
/**
|
|
13778
14044
|
* Event is fired as soon as the upload request is completed (either successful or unsuccessful).
|
|
@@ -13781,28 +14047,28 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
13781
14047
|
* progress of the upload can be monitored by listening to the `uploadProgress` event. However, this covers
|
|
13782
14048
|
* only the client side of the upload process and does not give any success status from the server.
|
|
13783
14049
|
*/
|
|
13784
|
-
uploadComplete?:
|
|
14050
|
+
uploadComplete?: (oEvent: Event) => void;
|
|
13785
14051
|
|
|
13786
14052
|
/**
|
|
13787
14053
|
* Event is fired when the type of a file does not match the `mimeType` or `fileType` property.
|
|
13788
14054
|
*/
|
|
13789
|
-
typeMissmatch?:
|
|
14055
|
+
typeMissmatch?: (oEvent: Event) => void;
|
|
13790
14056
|
|
|
13791
14057
|
/**
|
|
13792
14058
|
* Event is fired when the size of a file is above the `maximumFileSize` property. This event is not supported
|
|
13793
14059
|
* by Internet Explorer 9 (same restriction as for the property `maximumFileSize`).
|
|
13794
14060
|
*/
|
|
13795
|
-
fileSizeExceed?:
|
|
14061
|
+
fileSizeExceed?: (oEvent: Event) => void;
|
|
13796
14062
|
|
|
13797
14063
|
/**
|
|
13798
14064
|
* Event is fired when the size of the file is 0
|
|
13799
14065
|
*/
|
|
13800
|
-
fileEmpty?:
|
|
14066
|
+
fileEmpty?: (oEvent: Event) => void;
|
|
13801
14067
|
|
|
13802
14068
|
/**
|
|
13803
14069
|
* Event is fired when the file is allowed for upload on client side.
|
|
13804
14070
|
*/
|
|
13805
|
-
fileAllowed?:
|
|
14071
|
+
fileAllowed?: (oEvent: Event) => void;
|
|
13806
14072
|
|
|
13807
14073
|
/**
|
|
13808
14074
|
* @SINCE 1.24.0
|
|
@@ -13815,7 +14081,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
13815
14081
|
* This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
|
|
13816
14082
|
* Internet Explorer 9.
|
|
13817
14083
|
*/
|
|
13818
|
-
uploadProgress?:
|
|
14084
|
+
uploadProgress?: (oEvent: Event) => void;
|
|
13819
14085
|
|
|
13820
14086
|
/**
|
|
13821
14087
|
* @SINCE 1.24.0
|
|
@@ -13825,7 +14091,7 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
13825
14091
|
* This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
|
|
13826
14092
|
* Internet Explorer 9.
|
|
13827
14093
|
*/
|
|
13828
|
-
uploadAborted?:
|
|
14094
|
+
uploadAborted?: (oEvent: Event) => void;
|
|
13829
14095
|
|
|
13830
14096
|
/**
|
|
13831
14097
|
* @SINCE 1.24.0
|
|
@@ -13833,14 +14099,14 @@ declare module "sap/ui/unified/FileUploader" {
|
|
|
13833
14099
|
* Event is fired, if the filename of a chosen file is longer than the value specified with the `maximumFilenameLength`
|
|
13834
14100
|
* property.
|
|
13835
14101
|
*/
|
|
13836
|
-
filenameLengthExceed?:
|
|
14102
|
+
filenameLengthExceed?: (oEvent: Event) => void;
|
|
13837
14103
|
|
|
13838
14104
|
/**
|
|
13839
14105
|
* @SINCE 1.30.0
|
|
13840
14106
|
*
|
|
13841
14107
|
* Event is fired before an upload is started.
|
|
13842
14108
|
*/
|
|
13843
|
-
uploadStart?:
|
|
14109
|
+
uploadStart?: (oEvent: Event) => void;
|
|
13844
14110
|
}
|
|
13845
14111
|
}
|
|
13846
14112
|
|
|
@@ -14143,11 +14409,36 @@ declare module "sap/ui/unified/Menu" {
|
|
|
14143
14409
|
);
|
|
14144
14410
|
|
|
14145
14411
|
/**
|
|
14146
|
-
*
|
|
14412
|
+
* Creates a new subclass of class sap.ui.unified.Menu with name `sClassName` and enriches it with the information
|
|
14413
|
+
* contained in `oClassInfo`.
|
|
14147
14414
|
*
|
|
14148
|
-
*
|
|
14415
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14149
14416
|
*/
|
|
14150
|
-
|
|
14417
|
+
static extend<T extends Record<string, unknown>>(
|
|
14418
|
+
/**
|
|
14419
|
+
* Name of the class being created
|
|
14420
|
+
*/
|
|
14421
|
+
sClassName: string,
|
|
14422
|
+
/**
|
|
14423
|
+
* Object literal with information about the class
|
|
14424
|
+
*/
|
|
14425
|
+
oClassInfo?: sap.ClassInfo<T, Menu>,
|
|
14426
|
+
/**
|
|
14427
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14428
|
+
* used by this class
|
|
14429
|
+
*/
|
|
14430
|
+
FNMetaImpl?: Function
|
|
14431
|
+
): Function;
|
|
14432
|
+
/**
|
|
14433
|
+
* Returns a metadata object for class sap.ui.unified.Menu.
|
|
14434
|
+
*/
|
|
14435
|
+
static getMetadata(): ElementMetadata;
|
|
14436
|
+
/**
|
|
14437
|
+
* @SINCE 1.26.3
|
|
14438
|
+
*
|
|
14439
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
14440
|
+
*/
|
|
14441
|
+
addAriaLabelledBy(
|
|
14151
14442
|
/**
|
|
14152
14443
|
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
14153
14444
|
*/
|
|
@@ -14230,27 +14521,6 @@ declare module "sap/ui/unified/Menu" {
|
|
|
14230
14521
|
*/
|
|
14231
14522
|
oListener?: object
|
|
14232
14523
|
): this;
|
|
14233
|
-
/**
|
|
14234
|
-
* Creates a new subclass of class sap.ui.unified.Menu with name `sClassName` and enriches it with the information
|
|
14235
|
-
* contained in `oClassInfo`.
|
|
14236
|
-
*
|
|
14237
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
14238
|
-
*/
|
|
14239
|
-
static extend<T extends Record<string, unknown>>(
|
|
14240
|
-
/**
|
|
14241
|
-
* Name of the class being created
|
|
14242
|
-
*/
|
|
14243
|
-
sClassName: string,
|
|
14244
|
-
/**
|
|
14245
|
-
* Object literal with information about the class
|
|
14246
|
-
*/
|
|
14247
|
-
oClassInfo?: sap.ClassInfo<T, Menu>,
|
|
14248
|
-
/**
|
|
14249
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14250
|
-
* used by this class
|
|
14251
|
-
*/
|
|
14252
|
-
FNMetaImpl?: Function
|
|
14253
|
-
): Function;
|
|
14254
14524
|
/**
|
|
14255
14525
|
* Fires event {@link #event:itemSelect itemSelect} to attached listeners.
|
|
14256
14526
|
*/
|
|
@@ -14306,10 +14576,6 @@ declare module "sap/ui/unified/Menu" {
|
|
|
14306
14576
|
* Default value is `0`.
|
|
14307
14577
|
*/
|
|
14308
14578
|
getMaxVisibleItems(): int;
|
|
14309
|
-
/**
|
|
14310
|
-
* Returns a metadata object for class sap.ui.unified.Menu.
|
|
14311
|
-
*/
|
|
14312
|
-
static getMetadata(): ElementMetadata;
|
|
14313
14579
|
/**
|
|
14314
14580
|
* @SINCE 1.25.0
|
|
14315
14581
|
*
|
|
@@ -14561,7 +14827,7 @@ declare module "sap/ui/unified/Menu" {
|
|
|
14561
14827
|
* one of its direct or indirect submenus. **Note:** There is also a select event available for each single
|
|
14562
14828
|
* menu item. This event and the event of the menu items are redundant.
|
|
14563
14829
|
*/
|
|
14564
|
-
itemSelect?:
|
|
14830
|
+
itemSelect?: (oEvent: Event) => void;
|
|
14565
14831
|
}
|
|
14566
14832
|
}
|
|
14567
14833
|
|
|
@@ -14617,15 +14883,6 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
14617
14883
|
mSettings?: $MenuItemSettings
|
|
14618
14884
|
);
|
|
14619
14885
|
|
|
14620
|
-
/**
|
|
14621
|
-
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
14622
|
-
*/
|
|
14623
|
-
addAriaLabelledBy(
|
|
14624
|
-
/**
|
|
14625
|
-
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
14626
|
-
*/
|
|
14627
|
-
vAriaLabelledBy: ID | Control
|
|
14628
|
-
): this;
|
|
14629
14886
|
/**
|
|
14630
14887
|
* Creates a new subclass of class sap.ui.unified.MenuItem with name `sClassName` and enriches it with the
|
|
14631
14888
|
* information contained in `oClassInfo`.
|
|
@@ -14647,6 +14904,19 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
14647
14904
|
*/
|
|
14648
14905
|
FNMetaImpl?: Function
|
|
14649
14906
|
): Function;
|
|
14907
|
+
/**
|
|
14908
|
+
* Returns a metadata object for class sap.ui.unified.MenuItem.
|
|
14909
|
+
*/
|
|
14910
|
+
static getMetadata(): ElementMetadata;
|
|
14911
|
+
/**
|
|
14912
|
+
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
14913
|
+
*/
|
|
14914
|
+
addAriaLabelledBy(
|
|
14915
|
+
/**
|
|
14916
|
+
* The ariaLabelledBy to add; if empty, nothing is inserted
|
|
14917
|
+
*/
|
|
14918
|
+
vAriaLabelledBy: ID | Control
|
|
14919
|
+
): this;
|
|
14650
14920
|
/**
|
|
14651
14921
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
14652
14922
|
* ariaLabelledBy}.
|
|
@@ -14661,10 +14931,6 @@ declare module "sap/ui/unified/MenuItem" {
|
|
|
14661
14931
|
* Default value is `empty string`.
|
|
14662
14932
|
*/
|
|
14663
14933
|
getIcon(): URI;
|
|
14664
|
-
/**
|
|
14665
|
-
* Returns a metadata object for class sap.ui.unified.MenuItem.
|
|
14666
|
-
*/
|
|
14667
|
-
static getMetadata(): ElementMetadata;
|
|
14668
14934
|
/**
|
|
14669
14935
|
* Gets current value of property {@link #getText text}.
|
|
14670
14936
|
*
|
|
@@ -14788,6 +15054,31 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
14788
15054
|
mSettings?: $MenuItemBaseSettings
|
|
14789
15055
|
);
|
|
14790
15056
|
|
|
15057
|
+
/**
|
|
15058
|
+
* Creates a new subclass of class sap.ui.unified.MenuItemBase with name `sClassName` and enriches it with
|
|
15059
|
+
* the information contained in `oClassInfo`.
|
|
15060
|
+
*
|
|
15061
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
15062
|
+
*/
|
|
15063
|
+
static extend<T extends Record<string, unknown>>(
|
|
15064
|
+
/**
|
|
15065
|
+
* Name of the class being created
|
|
15066
|
+
*/
|
|
15067
|
+
sClassName: string,
|
|
15068
|
+
/**
|
|
15069
|
+
* Object literal with information about the class
|
|
15070
|
+
*/
|
|
15071
|
+
oClassInfo?: sap.ClassInfo<T, MenuItemBase>,
|
|
15072
|
+
/**
|
|
15073
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15074
|
+
* used by this class
|
|
15075
|
+
*/
|
|
15076
|
+
FNMetaImpl?: Function
|
|
15077
|
+
): Function;
|
|
15078
|
+
/**
|
|
15079
|
+
* Returns a metadata object for class sap.ui.unified.MenuItemBase.
|
|
15080
|
+
*/
|
|
15081
|
+
static getMetadata(): ElementMetadata;
|
|
14791
15082
|
/**
|
|
14792
15083
|
* Attaches event handler `fnFunction` to the {@link #event:select select} event of this `sap.ui.unified.MenuItemBase`.
|
|
14793
15084
|
*
|
|
@@ -14852,27 +15143,6 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
14852
15143
|
*/
|
|
14853
15144
|
oListener?: object
|
|
14854
15145
|
): this;
|
|
14855
|
-
/**
|
|
14856
|
-
* Creates a new subclass of class sap.ui.unified.MenuItemBase with name `sClassName` and enriches it with
|
|
14857
|
-
* the information contained in `oClassInfo`.
|
|
14858
|
-
*
|
|
14859
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
14860
|
-
*/
|
|
14861
|
-
static extend<T extends Record<string, unknown>>(
|
|
14862
|
-
/**
|
|
14863
|
-
* Name of the class being created
|
|
14864
|
-
*/
|
|
14865
|
-
sClassName: string,
|
|
14866
|
-
/**
|
|
14867
|
-
* Object literal with information about the class
|
|
14868
|
-
*/
|
|
14869
|
-
oClassInfo?: sap.ClassInfo<T, MenuItemBase>,
|
|
14870
|
-
/**
|
|
14871
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
14872
|
-
* used by this class
|
|
14873
|
-
*/
|
|
14874
|
-
FNMetaImpl?: Function
|
|
14875
|
-
): Function;
|
|
14876
15146
|
/**
|
|
14877
15147
|
* Fires event {@link #event:select select} to attached listeners.
|
|
14878
15148
|
*/
|
|
@@ -14896,10 +15166,6 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
14896
15166
|
* Default value is `true`.
|
|
14897
15167
|
*/
|
|
14898
15168
|
getEnabled(): boolean;
|
|
14899
|
-
/**
|
|
14900
|
-
* Returns a metadata object for class sap.ui.unified.MenuItemBase.
|
|
14901
|
-
*/
|
|
14902
|
-
static getMetadata(): ElementMetadata;
|
|
14903
15169
|
/**
|
|
14904
15170
|
* Gets current value of property {@link #getStartsSection startsSection}.
|
|
14905
15171
|
*
|
|
@@ -15061,7 +15327,7 @@ declare module "sap/ui/unified/MenuItemBase" {
|
|
|
15061
15327
|
* a submenu. In general, applications must not handle event in this case because the user selection opens
|
|
15062
15328
|
* the sub menu.
|
|
15063
15329
|
*/
|
|
15064
|
-
select?:
|
|
15330
|
+
select?: (oEvent: Event) => void;
|
|
15065
15331
|
}
|
|
15066
15332
|
}
|
|
15067
15333
|
|
|
@@ -15118,13 +15384,6 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
|
|
|
15118
15384
|
mSettings?: $MenuTextFieldItemSettings
|
|
15119
15385
|
);
|
|
15120
15386
|
|
|
15121
|
-
/**
|
|
15122
|
-
* @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
|
|
15123
|
-
* this type of menu item.
|
|
15124
|
-
*
|
|
15125
|
-
* The aggregation `submenu` (inherited from parent class) is not supported for this type of menu item.
|
|
15126
|
-
*/
|
|
15127
|
-
destroySubmenu(): this;
|
|
15128
15387
|
/**
|
|
15129
15388
|
* Creates a new subclass of class sap.ui.unified.MenuTextFieldItem with name `sClassName` and enriches
|
|
15130
15389
|
* it with the information contained in `oClassInfo`.
|
|
@@ -15146,6 +15405,17 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
|
|
|
15146
15405
|
*/
|
|
15147
15406
|
FNMetaImpl?: Function
|
|
15148
15407
|
): Function;
|
|
15408
|
+
/**
|
|
15409
|
+
* Returns a metadata object for class sap.ui.unified.MenuTextFieldItem.
|
|
15410
|
+
*/
|
|
15411
|
+
static getMetadata(): ElementMetadata;
|
|
15412
|
+
/**
|
|
15413
|
+
* @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
|
|
15414
|
+
* this type of menu item.
|
|
15415
|
+
*
|
|
15416
|
+
* The aggregation `submenu` (inherited from parent class) is not supported for this type of menu item.
|
|
15417
|
+
*/
|
|
15418
|
+
destroySubmenu(): this;
|
|
15149
15419
|
/**
|
|
15150
15420
|
* Gets current value of property {@link #getIcon icon}.
|
|
15151
15421
|
*
|
|
@@ -15159,10 +15429,6 @@ declare module "sap/ui/unified/MenuTextFieldItem" {
|
|
|
15159
15429
|
* Defines the label of the text field of the item.
|
|
15160
15430
|
*/
|
|
15161
15431
|
getLabel(): string;
|
|
15162
|
-
/**
|
|
15163
|
-
* Returns a metadata object for class sap.ui.unified.MenuTextFieldItem.
|
|
15164
|
-
*/
|
|
15165
|
-
static getMetadata(): ElementMetadata;
|
|
15166
15432
|
/**
|
|
15167
15433
|
* @deprecated (since 1.21) - the aggregation `submenu` (inherited from parent class) is not supported for
|
|
15168
15434
|
* this type of menu item.
|
|
@@ -15342,6 +15608,31 @@ declare module "sap/ui/unified/Shell" {
|
|
|
15342
15608
|
mSettings?: $ShellSettings
|
|
15343
15609
|
);
|
|
15344
15610
|
|
|
15611
|
+
/**
|
|
15612
|
+
* Creates a new subclass of class sap.ui.unified.Shell with name `sClassName` and enriches it with the
|
|
15613
|
+
* information contained in `oClassInfo`.
|
|
15614
|
+
*
|
|
15615
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.ShellLayout.extend}.
|
|
15616
|
+
*/
|
|
15617
|
+
static extend<T extends Record<string, unknown>>(
|
|
15618
|
+
/**
|
|
15619
|
+
* Name of the class being created
|
|
15620
|
+
*/
|
|
15621
|
+
sClassName: string,
|
|
15622
|
+
/**
|
|
15623
|
+
* Object literal with information about the class
|
|
15624
|
+
*/
|
|
15625
|
+
oClassInfo?: sap.ClassInfo<T, Shell>,
|
|
15626
|
+
/**
|
|
15627
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15628
|
+
* used by this class
|
|
15629
|
+
*/
|
|
15630
|
+
FNMetaImpl?: Function
|
|
15631
|
+
): Function;
|
|
15632
|
+
/**
|
|
15633
|
+
* Returns a metadata object for class sap.ui.unified.Shell.
|
|
15634
|
+
*/
|
|
15635
|
+
static getMetadata(): ElementMetadata;
|
|
15345
15636
|
/**
|
|
15346
15637
|
* Adds some curtainContent to the aggregation {@link #getCurtainContent curtainContent}.
|
|
15347
15638
|
*/
|
|
@@ -15409,27 +15700,6 @@ declare module "sap/ui/unified/Shell" {
|
|
|
15409
15700
|
* Destroys the user in the aggregation {@link #getUser user}.
|
|
15410
15701
|
*/
|
|
15411
15702
|
destroyUser(): this;
|
|
15412
|
-
/**
|
|
15413
|
-
* Creates a new subclass of class sap.ui.unified.Shell with name `sClassName` and enriches it with the
|
|
15414
|
-
* information contained in `oClassInfo`.
|
|
15415
|
-
*
|
|
15416
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.ShellLayout.extend}.
|
|
15417
|
-
*/
|
|
15418
|
-
static extend<T extends Record<string, unknown>>(
|
|
15419
|
-
/**
|
|
15420
|
-
* Name of the class being created
|
|
15421
|
-
*/
|
|
15422
|
-
sClassName: string,
|
|
15423
|
-
/**
|
|
15424
|
-
* Object literal with information about the class
|
|
15425
|
-
*/
|
|
15426
|
-
oClassInfo?: sap.ClassInfo<T, Shell>,
|
|
15427
|
-
/**
|
|
15428
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15429
|
-
* used by this class
|
|
15430
|
-
*/
|
|
15431
|
-
FNMetaImpl?: Function
|
|
15432
|
-
): Function;
|
|
15433
15703
|
/**
|
|
15434
15704
|
* Gets content of aggregation {@link #getCurtainContent curtainContent}.
|
|
15435
15705
|
*
|
|
@@ -15462,10 +15732,6 @@ declare module "sap/ui/unified/Shell" {
|
|
|
15462
15732
|
* The application icon. If a custom header is set this property has no effect.
|
|
15463
15733
|
*/
|
|
15464
15734
|
getIcon(): URI;
|
|
15465
|
-
/**
|
|
15466
|
-
* Returns a metadata object for class sap.ui.unified.Shell.
|
|
15467
|
-
*/
|
|
15468
|
-
static getMetadata(): ElementMetadata;
|
|
15469
15735
|
/**
|
|
15470
15736
|
* Gets content of aggregation {@link #getSearch search}.
|
|
15471
15737
|
*
|
|
@@ -15878,6 +16144,31 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
15878
16144
|
mSettings?: $ShellHeadItemSettings
|
|
15879
16145
|
);
|
|
15880
16146
|
|
|
16147
|
+
/**
|
|
16148
|
+
* Creates a new subclass of class sap.ui.unified.ShellHeadItem with name `sClassName` and enriches it with
|
|
16149
|
+
* the information contained in `oClassInfo`.
|
|
16150
|
+
*
|
|
16151
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
16152
|
+
*/
|
|
16153
|
+
static extend<T extends Record<string, unknown>>(
|
|
16154
|
+
/**
|
|
16155
|
+
* Name of the class being created
|
|
16156
|
+
*/
|
|
16157
|
+
sClassName: string,
|
|
16158
|
+
/**
|
|
16159
|
+
* Object literal with information about the class
|
|
16160
|
+
*/
|
|
16161
|
+
oClassInfo?: sap.ClassInfo<T, ShellHeadItem>,
|
|
16162
|
+
/**
|
|
16163
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16164
|
+
* used by this class
|
|
16165
|
+
*/
|
|
16166
|
+
FNMetaImpl?: Function
|
|
16167
|
+
): Function;
|
|
16168
|
+
/**
|
|
16169
|
+
* Returns a metadata object for class sap.ui.unified.ShellHeadItem.
|
|
16170
|
+
*/
|
|
16171
|
+
static getMetadata(): ElementMetadata;
|
|
15881
16172
|
/**
|
|
15882
16173
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
15883
16174
|
*/
|
|
@@ -15943,27 +16234,6 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
15943
16234
|
*/
|
|
15944
16235
|
oListener?: object
|
|
15945
16236
|
): this;
|
|
15946
|
-
/**
|
|
15947
|
-
* Creates a new subclass of class sap.ui.unified.ShellHeadItem with name `sClassName` and enriches it with
|
|
15948
|
-
* the information contained in `oClassInfo`.
|
|
15949
|
-
*
|
|
15950
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
15951
|
-
*/
|
|
15952
|
-
static extend<T extends Record<string, unknown>>(
|
|
15953
|
-
/**
|
|
15954
|
-
* Name of the class being created
|
|
15955
|
-
*/
|
|
15956
|
-
sClassName: string,
|
|
15957
|
-
/**
|
|
15958
|
-
* Object literal with information about the class
|
|
15959
|
-
*/
|
|
15960
|
-
oClassInfo?: sap.ClassInfo<T, ShellHeadItem>,
|
|
15961
|
-
/**
|
|
15962
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
15963
|
-
* used by this class
|
|
15964
|
-
*/
|
|
15965
|
-
FNMetaImpl?: Function
|
|
15966
|
-
): Function;
|
|
15967
16237
|
/**
|
|
15968
16238
|
* Fires event {@link #event:press press} to attached listeners.
|
|
15969
16239
|
*/
|
|
@@ -15985,10 +16255,6 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
15985
16255
|
* must be set.
|
|
15986
16256
|
*/
|
|
15987
16257
|
getIcon(): URI;
|
|
15988
|
-
/**
|
|
15989
|
-
* Returns a metadata object for class sap.ui.unified.ShellHeadItem.
|
|
15990
|
-
*/
|
|
15991
|
-
static getMetadata(): ElementMetadata;
|
|
15992
16258
|
/**
|
|
15993
16259
|
* Gets current value of property {@link #getSelected selected}.
|
|
15994
16260
|
*
|
|
@@ -16237,7 +16503,7 @@ declare module "sap/ui/unified/ShellHeadItem" {
|
|
|
16237
16503
|
/**
|
|
16238
16504
|
* Event is fired when the user presses the item.
|
|
16239
16505
|
*/
|
|
16240
|
-
press?:
|
|
16506
|
+
press?: (oEvent: Event) => void;
|
|
16241
16507
|
}
|
|
16242
16508
|
}
|
|
16243
16509
|
|
|
@@ -16292,6 +16558,31 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
16292
16558
|
mSettings?: $ShellHeadUserItemSettings
|
|
16293
16559
|
);
|
|
16294
16560
|
|
|
16561
|
+
/**
|
|
16562
|
+
* Creates a new subclass of class sap.ui.unified.ShellHeadUserItem with name `sClassName` and enriches
|
|
16563
|
+
* it with the information contained in `oClassInfo`.
|
|
16564
|
+
*
|
|
16565
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
16566
|
+
*/
|
|
16567
|
+
static extend<T extends Record<string, unknown>>(
|
|
16568
|
+
/**
|
|
16569
|
+
* Name of the class being created
|
|
16570
|
+
*/
|
|
16571
|
+
sClassName: string,
|
|
16572
|
+
/**
|
|
16573
|
+
* Object literal with information about the class
|
|
16574
|
+
*/
|
|
16575
|
+
oClassInfo?: sap.ClassInfo<T, ShellHeadUserItem>,
|
|
16576
|
+
/**
|
|
16577
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16578
|
+
* used by this class
|
|
16579
|
+
*/
|
|
16580
|
+
FNMetaImpl?: Function
|
|
16581
|
+
): Function;
|
|
16582
|
+
/**
|
|
16583
|
+
* Returns a metadata object for class sap.ui.unified.ShellHeadUserItem.
|
|
16584
|
+
*/
|
|
16585
|
+
static getMetadata(): ElementMetadata;
|
|
16295
16586
|
/**
|
|
16296
16587
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
16297
16588
|
*/
|
|
@@ -16357,27 +16648,6 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
16357
16648
|
*/
|
|
16358
16649
|
oListener?: object
|
|
16359
16650
|
): this;
|
|
16360
|
-
/**
|
|
16361
|
-
* Creates a new subclass of class sap.ui.unified.ShellHeadUserItem with name `sClassName` and enriches
|
|
16362
|
-
* it with the information contained in `oClassInfo`.
|
|
16363
|
-
*
|
|
16364
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
16365
|
-
*/
|
|
16366
|
-
static extend<T extends Record<string, unknown>>(
|
|
16367
|
-
/**
|
|
16368
|
-
* Name of the class being created
|
|
16369
|
-
*/
|
|
16370
|
-
sClassName: string,
|
|
16371
|
-
/**
|
|
16372
|
-
* Object literal with information about the class
|
|
16373
|
-
*/
|
|
16374
|
-
oClassInfo?: sap.ClassInfo<T, ShellHeadUserItem>,
|
|
16375
|
-
/**
|
|
16376
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16377
|
-
* used by this class
|
|
16378
|
-
*/
|
|
16379
|
-
FNMetaImpl?: Function
|
|
16380
|
-
): Function;
|
|
16381
16651
|
/**
|
|
16382
16652
|
* Fires event {@link #event:press press} to attached listeners.
|
|
16383
16653
|
*/
|
|
@@ -16398,10 +16668,6 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
16398
16668
|
* An image of the user, normally a URI to an image but also an icon from the sap.ui.core.IconPool is possible.
|
|
16399
16669
|
*/
|
|
16400
16670
|
getImage(): URI;
|
|
16401
|
-
/**
|
|
16402
|
-
* Returns a metadata object for class sap.ui.unified.ShellHeadUserItem.
|
|
16403
|
-
*/
|
|
16404
|
-
static getMetadata(): ElementMetadata;
|
|
16405
16671
|
/**
|
|
16406
16672
|
* @SINCE 1.27.0
|
|
16407
16673
|
*
|
|
@@ -16509,7 +16775,7 @@ declare module "sap/ui/unified/ShellHeadUserItem" {
|
|
|
16509
16775
|
/**
|
|
16510
16776
|
* Event is fired when the user presses the button.
|
|
16511
16777
|
*/
|
|
16512
|
-
press?:
|
|
16778
|
+
press?: (oEvent: Event) => void;
|
|
16513
16779
|
}
|
|
16514
16780
|
}
|
|
16515
16781
|
|
|
@@ -16564,6 +16830,31 @@ declare module "sap/ui/unified/ShellLayout" {
|
|
|
16564
16830
|
mSettings?: $ShellLayoutSettings
|
|
16565
16831
|
);
|
|
16566
16832
|
|
|
16833
|
+
/**
|
|
16834
|
+
* Creates a new subclass of class sap.ui.unified.ShellLayout with name `sClassName` and enriches it with
|
|
16835
|
+
* the information contained in `oClassInfo`.
|
|
16836
|
+
*
|
|
16837
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16838
|
+
*/
|
|
16839
|
+
static extend<T extends Record<string, unknown>>(
|
|
16840
|
+
/**
|
|
16841
|
+
* Name of the class being created
|
|
16842
|
+
*/
|
|
16843
|
+
sClassName: string,
|
|
16844
|
+
/**
|
|
16845
|
+
* Object literal with information about the class
|
|
16846
|
+
*/
|
|
16847
|
+
oClassInfo?: sap.ClassInfo<T, ShellLayout>,
|
|
16848
|
+
/**
|
|
16849
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16850
|
+
* used by this class
|
|
16851
|
+
*/
|
|
16852
|
+
FNMetaImpl?: Function
|
|
16853
|
+
): Function;
|
|
16854
|
+
/**
|
|
16855
|
+
* Returns a metadata object for class sap.ui.unified.ShellLayout.
|
|
16856
|
+
*/
|
|
16857
|
+
static getMetadata(): ElementMetadata;
|
|
16567
16858
|
/**
|
|
16568
16859
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
16569
16860
|
*/
|
|
@@ -16594,27 +16885,6 @@ declare module "sap/ui/unified/ShellLayout" {
|
|
|
16594
16885
|
* Destroys all the paneContent in the aggregation {@link #getPaneContent paneContent}.
|
|
16595
16886
|
*/
|
|
16596
16887
|
destroyPaneContent(): this;
|
|
16597
|
-
/**
|
|
16598
|
-
* Creates a new subclass of class sap.ui.unified.ShellLayout with name `sClassName` and enriches it with
|
|
16599
|
-
* the information contained in `oClassInfo`.
|
|
16600
|
-
*
|
|
16601
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16602
|
-
*/
|
|
16603
|
-
static extend<T extends Record<string, unknown>>(
|
|
16604
|
-
/**
|
|
16605
|
-
* Name of the class being created
|
|
16606
|
-
*/
|
|
16607
|
-
sClassName: string,
|
|
16608
|
-
/**
|
|
16609
|
-
* Object literal with information about the class
|
|
16610
|
-
*/
|
|
16611
|
-
oClassInfo?: sap.ClassInfo<T, ShellLayout>,
|
|
16612
|
-
/**
|
|
16613
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16614
|
-
* used by this class
|
|
16615
|
-
*/
|
|
16616
|
-
FNMetaImpl?: Function
|
|
16617
|
-
): Function;
|
|
16618
16888
|
/**
|
|
16619
16889
|
* Gets content of aggregation {@link #getContent content}.
|
|
16620
16890
|
*
|
|
@@ -16644,10 +16914,6 @@ declare module "sap/ui/unified/ShellLayout" {
|
|
|
16644
16914
|
* Default value is `true`.
|
|
16645
16915
|
*/
|
|
16646
16916
|
getHeaderVisible(): boolean;
|
|
16647
|
-
/**
|
|
16648
|
-
* Returns a metadata object for class sap.ui.unified.ShellLayout.
|
|
16649
|
-
*/
|
|
16650
|
-
static getMetadata(): ElementMetadata;
|
|
16651
16917
|
/**
|
|
16652
16918
|
* Gets content of aggregation {@link #getPaneContent paneContent}.
|
|
16653
16919
|
*
|
|
@@ -16884,6 +17150,31 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
16884
17150
|
mSettings?: $ShellOverlaySettings
|
|
16885
17151
|
);
|
|
16886
17152
|
|
|
17153
|
+
/**
|
|
17154
|
+
* Creates a new subclass of class sap.ui.unified.ShellOverlay with name `sClassName` and enriches it with
|
|
17155
|
+
* the information contained in `oClassInfo`.
|
|
17156
|
+
*
|
|
17157
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17158
|
+
*/
|
|
17159
|
+
static extend<T extends Record<string, unknown>>(
|
|
17160
|
+
/**
|
|
17161
|
+
* Name of the class being created
|
|
17162
|
+
*/
|
|
17163
|
+
sClassName: string,
|
|
17164
|
+
/**
|
|
17165
|
+
* Object literal with information about the class
|
|
17166
|
+
*/
|
|
17167
|
+
oClassInfo?: sap.ClassInfo<T, ShellOverlay>,
|
|
17168
|
+
/**
|
|
17169
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17170
|
+
* used by this class
|
|
17171
|
+
*/
|
|
17172
|
+
FNMetaImpl?: Function
|
|
17173
|
+
): Function;
|
|
17174
|
+
/**
|
|
17175
|
+
* Returns a metadata object for class sap.ui.unified.ShellOverlay.
|
|
17176
|
+
*/
|
|
17177
|
+
static getMetadata(): ElementMetadata;
|
|
16887
17178
|
/**
|
|
16888
17179
|
* Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
16889
17180
|
*/
|
|
@@ -16970,27 +17261,6 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
16970
17261
|
*/
|
|
16971
17262
|
oListener?: object
|
|
16972
17263
|
): this;
|
|
16973
|
-
/**
|
|
16974
|
-
* Creates a new subclass of class sap.ui.unified.ShellOverlay with name `sClassName` and enriches it with
|
|
16975
|
-
* the information contained in `oClassInfo`.
|
|
16976
|
-
*
|
|
16977
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
16978
|
-
*/
|
|
16979
|
-
static extend<T extends Record<string, unknown>>(
|
|
16980
|
-
/**
|
|
16981
|
-
* Name of the class being created
|
|
16982
|
-
*/
|
|
16983
|
-
sClassName: string,
|
|
16984
|
-
/**
|
|
16985
|
-
* Object literal with information about the class
|
|
16986
|
-
*/
|
|
16987
|
-
oClassInfo?: sap.ClassInfo<T, ShellOverlay>,
|
|
16988
|
-
/**
|
|
16989
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
16990
|
-
* used by this class
|
|
16991
|
-
*/
|
|
16992
|
-
FNMetaImpl?: Function
|
|
16993
|
-
): Function;
|
|
16994
17264
|
/**
|
|
16995
17265
|
* Fires event {@link #event:closed closed} to attached listeners.
|
|
16996
17266
|
*/
|
|
@@ -17011,10 +17281,6 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
17011
17281
|
* The content to appear in the overlay.
|
|
17012
17282
|
*/
|
|
17013
17283
|
getContent(): Control[];
|
|
17014
|
-
/**
|
|
17015
|
-
* Returns a metadata object for class sap.ui.unified.ShellOverlay.
|
|
17016
|
-
*/
|
|
17017
|
-
static getMetadata(): ElementMetadata;
|
|
17018
17284
|
/**
|
|
17019
17285
|
* Gets content of aggregation {@link #getSearch search}.
|
|
17020
17286
|
*
|
|
@@ -17129,7 +17395,7 @@ declare module "sap/ui/unified/ShellOverlay" {
|
|
|
17129
17395
|
/**
|
|
17130
17396
|
* Fired when the overlay was closed.
|
|
17131
17397
|
*/
|
|
17132
|
-
closed?:
|
|
17398
|
+
closed?: (oEvent: Event) => void;
|
|
17133
17399
|
}
|
|
17134
17400
|
}
|
|
17135
17401
|
|
|
@@ -17184,6 +17450,31 @@ declare module "sap/ui/unified/SplitContainer" {
|
|
|
17184
17450
|
mSettings?: $SplitContainerSettings
|
|
17185
17451
|
);
|
|
17186
17452
|
|
|
17453
|
+
/**
|
|
17454
|
+
* Creates a new subclass of class sap.ui.unified.SplitContainer with name `sClassName` and enriches it
|
|
17455
|
+
* with the information contained in `oClassInfo`.
|
|
17456
|
+
*
|
|
17457
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17458
|
+
*/
|
|
17459
|
+
static extend<T extends Record<string, unknown>>(
|
|
17460
|
+
/**
|
|
17461
|
+
* Name of the class being created
|
|
17462
|
+
*/
|
|
17463
|
+
sClassName: string,
|
|
17464
|
+
/**
|
|
17465
|
+
* Object literal with information about the class
|
|
17466
|
+
*/
|
|
17467
|
+
oClassInfo?: sap.ClassInfo<T, SplitContainer>,
|
|
17468
|
+
/**
|
|
17469
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17470
|
+
* used by this class
|
|
17471
|
+
*/
|
|
17472
|
+
FNMetaImpl?: Function
|
|
17473
|
+
): Function;
|
|
17474
|
+
/**
|
|
17475
|
+
* Returns a metadata object for class sap.ui.unified.SplitContainer.
|
|
17476
|
+
*/
|
|
17477
|
+
static getMetadata(): ElementMetadata;
|
|
17187
17478
|
/**
|
|
17188
17479
|
* Adds some content to the aggregation {@link #getContent content}.
|
|
17189
17480
|
*/
|
|
@@ -17210,37 +17501,12 @@ declare module "sap/ui/unified/SplitContainer" {
|
|
|
17210
17501
|
* Destroys all the secondaryContent in the aggregation {@link #getSecondaryContent secondaryContent}.
|
|
17211
17502
|
*/
|
|
17212
17503
|
destroySecondaryContent(): this;
|
|
17213
|
-
/**
|
|
17214
|
-
* Creates a new subclass of class sap.ui.unified.SplitContainer with name `sClassName` and enriches it
|
|
17215
|
-
* with the information contained in `oClassInfo`.
|
|
17216
|
-
*
|
|
17217
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
17218
|
-
*/
|
|
17219
|
-
static extend<T extends Record<string, unknown>>(
|
|
17220
|
-
/**
|
|
17221
|
-
* Name of the class being created
|
|
17222
|
-
*/
|
|
17223
|
-
sClassName: string,
|
|
17224
|
-
/**
|
|
17225
|
-
* Object literal with information about the class
|
|
17226
|
-
*/
|
|
17227
|
-
oClassInfo?: sap.ClassInfo<T, SplitContainer>,
|
|
17228
|
-
/**
|
|
17229
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
17230
|
-
* used by this class
|
|
17231
|
-
*/
|
|
17232
|
-
FNMetaImpl?: Function
|
|
17233
|
-
): Function;
|
|
17234
17504
|
/**
|
|
17235
17505
|
* Gets content of aggregation {@link #getContent content}.
|
|
17236
17506
|
*
|
|
17237
17507
|
* The content to appear in the main area.
|
|
17238
17508
|
*/
|
|
17239
17509
|
getContent(): Control[];
|
|
17240
|
-
/**
|
|
17241
|
-
* Returns a metadata object for class sap.ui.unified.SplitContainer.
|
|
17242
|
-
*/
|
|
17243
|
-
static getMetadata(): ElementMetadata;
|
|
17244
17510
|
/**
|
|
17245
17511
|
* @SINCE 1.22.0
|
|
17246
17512
|
*
|