@sapui5/ts-types 1.92.1 → 1.93.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +1 -1
- package/types/index.d.ts +2 -1
- package/types/sap.apf.d.ts +2 -29
- package/types/sap.ca.ui.d.ts +649 -651
- package/types/sap.chart.d.ts +49 -49
- package/types/sap.collaboration.d.ts +756 -762
- package/types/sap.esh.search.ui.d.ts +7 -0
- package/types/sap.f.d.ts +623 -468
- package/types/sap.fe.common.d.ts +1 -1
- package/types/sap.fe.core.d.ts +101 -75
- package/types/sap.fe.macros.d.ts +55 -8
- package/types/sap.fe.navigation.d.ts +5 -14
- package/types/sap.fe.placeholder-1.93.0-d.ts +3 -0
- package/types/sap.fe.plugins.d.ts +2 -4
- package/types/sap.fe.templates.d.ts +1 -16
- package/types/sap.fe.test.d.ts +44 -115
- package/types/sap.fe.tools.d.ts +2 -4
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1321 -1191
- package/types/sap.landvisz.d.ts +345 -345
- package/types/sap.m.d.ts +5498 -4814
- package/types/sap.makit.d.ts +123 -123
- package/types/sap.me.d.ts +137 -153
- package/types/sap.ndc.d.ts +29 -29
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +170 -124
- package/types/sap.suite.ui.commons.d.ts +1593 -1612
- package/types/sap.suite.ui.generic.template.d.ts +285 -165
- package/types/sap.suite.ui.microchart.d.ts +742 -508
- package/types/sap.tnt.d.ts +149 -117
- package/types/sap.ui.codeeditor.d.ts +28 -28
- package/types/sap.ui.commons.d.ts +1387 -1387
- package/types/sap.ui.comp.d.ts +1011 -1011
- package/types/sap.ui.core.d.ts +3852 -3973
- package/types/sap.ui.dt.d.ts +2 -4
- package/types/sap.ui.export.d.ts +3 -3
- package/types/sap.ui.fl.d.ts +1 -1
- package/types/sap.ui.generic.app.d.ts +138 -147
- package/types/sap.ui.generic.template.d.ts +2 -4
- package/types/sap.ui.integration.d.ts +118 -112
- package/types/sap.ui.layout.d.ts +593 -586
- package/types/sap.ui.mdc.d.ts +7 -1
- package/types/sap.ui.richtexteditor.d.ts +30 -30
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +53 -53
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +248 -248
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +853 -713
- package/types/sap.ui.ux3.d.ts +785 -793
- package/types/sap.ui.vbm.d.ts +784 -784
- package/types/sap.ui.vk.d.ts +3130 -2251
- package/types/sap.ui.vtm.d.ts +240 -240
- package/types/sap.uiext.inbox.d.ts +222 -222
- package/types/sap.ushell.d.ts +334 -380
- package/types/sap.ushell_abap.d.ts +127 -129
- package/types/sap.uxap.d.ts +384 -220
- package/types/sap.viz.d.ts +1527 -1527
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +188 -222
- package/types/sap.zen.crosstab.d.ts +15 -17
- package/types/sap.zen.dsh.d.ts +176 -211
- package/types/sap.fe.placeholder.d.ts +0 -5
package/types/sap.me.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -123,17 +123,17 @@ declare namespace sap {
|
|
|
123
123
|
/**
|
|
124
124
|
* event fired when a date is tapped
|
|
125
125
|
*/
|
|
126
|
-
tapOnDate?:
|
|
126
|
+
tapOnDate?: (oEvent: sap.ui.base.Event) => void;
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* event fired when tap to next or previous button and currentDate is updated
|
|
130
130
|
*/
|
|
131
|
-
changeCurrentDate?:
|
|
131
|
+
changeCurrentDate?: (oEvent: sap.ui.base.Event) => void;
|
|
132
132
|
|
|
133
133
|
/**
|
|
134
134
|
* when the range of selected dates changes
|
|
135
135
|
*/
|
|
136
|
-
changeRange?:
|
|
136
|
+
changeRange?: (oEvent: sap.ui.base.Event) => void;
|
|
137
137
|
}
|
|
138
138
|
|
|
139
139
|
interface $CalendarLegendSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -274,12 +274,12 @@ declare namespace sap {
|
|
|
274
274
|
/**
|
|
275
275
|
* Indicates that we have reach the last week with data
|
|
276
276
|
*/
|
|
277
|
-
endOfData?:
|
|
277
|
+
endOfData?: (oEvent: sap.ui.base.Event) => void;
|
|
278
278
|
|
|
279
279
|
/**
|
|
280
280
|
* Triggered when the displayed dates change
|
|
281
281
|
*/
|
|
282
|
-
changeDate?:
|
|
282
|
+
changeDate?: (oEvent: sap.ui.base.Event) => void;
|
|
283
283
|
}
|
|
284
284
|
|
|
285
285
|
interface $OverlapCalendarEventSettings
|
|
@@ -431,17 +431,17 @@ declare namespace sap {
|
|
|
431
431
|
/**
|
|
432
432
|
* Indicates that the selected tab has changed
|
|
433
433
|
*/
|
|
434
|
-
select?:
|
|
434
|
+
select?: (oEvent: sap.ui.base.Event) => void;
|
|
435
435
|
|
|
436
436
|
/**
|
|
437
437
|
* Indicates that the tab will expand
|
|
438
438
|
*/
|
|
439
|
-
expand?:
|
|
439
|
+
expand?: (oEvent: sap.ui.base.Event) => void;
|
|
440
440
|
|
|
441
441
|
/**
|
|
442
442
|
* Indicates that the tab will collapse
|
|
443
443
|
*/
|
|
444
|
-
collapse?:
|
|
444
|
+
collapse?: (oEvent: sap.ui.base.Event) => void;
|
|
445
445
|
}
|
|
446
446
|
|
|
447
447
|
/**
|
|
@@ -482,6 +482,42 @@ declare namespace sap {
|
|
|
482
482
|
mSettings?: sap.me.$CalendarSettings
|
|
483
483
|
);
|
|
484
484
|
|
|
485
|
+
/**
|
|
486
|
+
* Creates a new subclass of class sap.me.Calendar with name `sClassName` and enriches it with the information
|
|
487
|
+
* contained in `oClassInfo`.
|
|
488
|
+
*
|
|
489
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
490
|
+
*/
|
|
491
|
+
static extend<T extends Record<string, unknown>>(
|
|
492
|
+
/**
|
|
493
|
+
* Name of the class being created
|
|
494
|
+
*/
|
|
495
|
+
sClassName: string,
|
|
496
|
+
/**
|
|
497
|
+
* Object literal with information about the class
|
|
498
|
+
*/
|
|
499
|
+
oClassInfo?: sap.ClassInfo<T, sap.me.Calendar>,
|
|
500
|
+
/**
|
|
501
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
502
|
+
* used by this class
|
|
503
|
+
*/
|
|
504
|
+
FNMetaImpl?: Function
|
|
505
|
+
): Function;
|
|
506
|
+
/**
|
|
507
|
+
* Returns a metadata object for class sap.me.Calendar.
|
|
508
|
+
*/
|
|
509
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
510
|
+
/**
|
|
511
|
+
* Helper function to instantiate a Date from the string(s) provided by the getCurrentDate, getSelectedDates
|
|
512
|
+
* methods. IMPORTANT: The only valid values for the created Date are: year, month, day. Disregard
|
|
513
|
+
* any other value: hours, minutes, seconds, milliseconds...
|
|
514
|
+
*/
|
|
515
|
+
static parseDate(
|
|
516
|
+
/**
|
|
517
|
+
* The date, produced by a former call to Date.toDateString.
|
|
518
|
+
*/
|
|
519
|
+
strDate: string
|
|
520
|
+
): Date;
|
|
485
521
|
/**
|
|
486
522
|
* Attaches event handler `fnFunction` to the {@link #event:changeCurrentDate changeCurrentDate} event of
|
|
487
523
|
* this `sap.me.Calendar`.
|
|
@@ -653,27 +689,6 @@ declare namespace sap {
|
|
|
653
689
|
*/
|
|
654
690
|
oListener?: object
|
|
655
691
|
): this;
|
|
656
|
-
/**
|
|
657
|
-
* Creates a new subclass of class sap.me.Calendar with name `sClassName` and enriches it with the information
|
|
658
|
-
* contained in `oClassInfo`.
|
|
659
|
-
*
|
|
660
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
661
|
-
*/
|
|
662
|
-
static extend<T extends Record<string, unknown>>(
|
|
663
|
-
/**
|
|
664
|
-
* Name of the class being created
|
|
665
|
-
*/
|
|
666
|
-
sClassName: string,
|
|
667
|
-
/**
|
|
668
|
-
* Object literal with information about the class
|
|
669
|
-
*/
|
|
670
|
-
oClassInfo?: sap.ClassInfo<T, sap.me.Calendar>,
|
|
671
|
-
/**
|
|
672
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
673
|
-
* used by this class
|
|
674
|
-
*/
|
|
675
|
-
FNMetaImpl?: Function
|
|
676
|
-
): Function;
|
|
677
692
|
/**
|
|
678
693
|
* Fires event {@link #event:changeCurrentDate changeCurrentDate} to attached listeners.
|
|
679
694
|
*/
|
|
@@ -806,10 +821,6 @@ declare namespace sap {
|
|
|
806
821
|
* Default value is `false`.
|
|
807
822
|
*/
|
|
808
823
|
getHideNavControls(): boolean;
|
|
809
|
-
/**
|
|
810
|
-
* Returns a metadata object for class sap.me.Calendar.
|
|
811
|
-
*/
|
|
812
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
813
824
|
/**
|
|
814
825
|
* Gets current value of property {@link #getMonths months}.
|
|
815
826
|
*
|
|
@@ -884,17 +895,6 @@ declare namespace sap {
|
|
|
884
895
|
* Default value is `'100%'`.
|
|
885
896
|
*/
|
|
886
897
|
getWidth(): sap.ui.core.CSSSize;
|
|
887
|
-
/**
|
|
888
|
-
* Helper function to instantiate a Date from the string(s) provided by the getCurrentDate, getSelectedDates
|
|
889
|
-
* methods. IMPORTANT: The only valid values for the created Date are: year, month, day. Disregard
|
|
890
|
-
* any other value: hours, minutes, seconds, milliseconds...
|
|
891
|
-
*/
|
|
892
|
-
static parseDate(
|
|
893
|
-
/**
|
|
894
|
-
* The date, produced by a former call to Date.toDateString.
|
|
895
|
-
*/
|
|
896
|
-
strDate: String
|
|
897
|
-
): Date;
|
|
898
898
|
/**
|
|
899
899
|
* Sets the current date of the calendar.
|
|
900
900
|
*/
|
|
@@ -902,7 +902,7 @@ declare namespace sap {
|
|
|
902
902
|
/**
|
|
903
903
|
* The Date to set, the format being identical to a date string produced by "toDateString".
|
|
904
904
|
*/
|
|
905
|
-
strDate:
|
|
905
|
+
strDate: string
|
|
906
906
|
): this;
|
|
907
907
|
/**
|
|
908
908
|
* Sets a new value for property {@link #getDayHeight dayHeight}.
|
|
@@ -1294,6 +1294,10 @@ declare namespace sap {
|
|
|
1294
1294
|
*/
|
|
1295
1295
|
FNMetaImpl?: Function
|
|
1296
1296
|
): Function;
|
|
1297
|
+
/**
|
|
1298
|
+
* Returns a metadata object for class sap.me.CalendarLegend.
|
|
1299
|
+
*/
|
|
1300
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1297
1301
|
/**
|
|
1298
1302
|
* Gets current value of property {@link #getDesign design}.
|
|
1299
1303
|
*
|
|
@@ -1380,10 +1384,6 @@ declare namespace sap {
|
|
|
1380
1384
|
* Default value is `'12.5rem'`.
|
|
1381
1385
|
*/
|
|
1382
1386
|
getLegendWidth(): sap.ui.core.CSSSize;
|
|
1383
|
-
/**
|
|
1384
|
-
* Returns a metadata object for class sap.me.CalendarLegend.
|
|
1385
|
-
*/
|
|
1386
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* Gets current value of property {@link #getVisible visible}.
|
|
1389
1389
|
*
|
|
@@ -1646,6 +1646,31 @@ declare namespace sap {
|
|
|
1646
1646
|
mSettings?: sap.me.$OverlapCalendarSettings
|
|
1647
1647
|
);
|
|
1648
1648
|
|
|
1649
|
+
/**
|
|
1650
|
+
* Creates a new subclass of class sap.me.OverlapCalendar with name `sClassName` and enriches it with the
|
|
1651
|
+
* information contained in `oClassInfo`.
|
|
1652
|
+
*
|
|
1653
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1654
|
+
*/
|
|
1655
|
+
static extend<T extends Record<string, unknown>>(
|
|
1656
|
+
/**
|
|
1657
|
+
* Name of the class being created
|
|
1658
|
+
*/
|
|
1659
|
+
sClassName: string,
|
|
1660
|
+
/**
|
|
1661
|
+
* Object literal with information about the class
|
|
1662
|
+
*/
|
|
1663
|
+
oClassInfo?: sap.ClassInfo<T, sap.me.OverlapCalendar>,
|
|
1664
|
+
/**
|
|
1665
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1666
|
+
* used by this class
|
|
1667
|
+
*/
|
|
1668
|
+
FNMetaImpl?: Function
|
|
1669
|
+
): Function;
|
|
1670
|
+
/**
|
|
1671
|
+
* Returns a metadata object for class sap.me.OverlapCalendar.
|
|
1672
|
+
*/
|
|
1673
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1649
1674
|
/**
|
|
1650
1675
|
* Adds some calendarEvent to the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
1651
1676
|
*/
|
|
@@ -1771,27 +1796,6 @@ declare namespace sap {
|
|
|
1771
1796
|
*/
|
|
1772
1797
|
oListener?: object
|
|
1773
1798
|
): this;
|
|
1774
|
-
/**
|
|
1775
|
-
* Creates a new subclass of class sap.me.OverlapCalendar with name `sClassName` and enriches it with the
|
|
1776
|
-
* information contained in `oClassInfo`.
|
|
1777
|
-
*
|
|
1778
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
1779
|
-
*/
|
|
1780
|
-
static extend<T extends Record<string, unknown>>(
|
|
1781
|
-
/**
|
|
1782
|
-
* Name of the class being created
|
|
1783
|
-
*/
|
|
1784
|
-
sClassName: string,
|
|
1785
|
-
/**
|
|
1786
|
-
* Object literal with information about the class
|
|
1787
|
-
*/
|
|
1788
|
-
oClassInfo?: sap.ClassInfo<T, sap.me.OverlapCalendar>,
|
|
1789
|
-
/**
|
|
1790
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
1791
|
-
* used by this class
|
|
1792
|
-
*/
|
|
1793
|
-
FNMetaImpl?: Function
|
|
1794
|
-
): Function;
|
|
1795
1799
|
/**
|
|
1796
1800
|
* Fires event {@link #event:changeDate changeDate} to attached listeners.
|
|
1797
1801
|
*/
|
|
@@ -1824,9 +1828,7 @@ declare namespace sap {
|
|
|
1824
1828
|
before?: boolean;
|
|
1825
1829
|
}
|
|
1826
1830
|
): this;
|
|
1827
|
-
|
|
1828
|
-
*
|
|
1829
|
-
*/
|
|
1831
|
+
|
|
1830
1832
|
getCalendar(): sap.me.Calendar;
|
|
1831
1833
|
/**
|
|
1832
1834
|
* Gets content of aggregation {@link #getCalendarEvents calendarEvents}.
|
|
@@ -1842,10 +1844,6 @@ declare namespace sap {
|
|
|
1842
1844
|
* Default value is `0`.
|
|
1843
1845
|
*/
|
|
1844
1846
|
getFirstDayOffset(): int;
|
|
1845
|
-
/**
|
|
1846
|
-
* Returns a metadata object for class sap.me.OverlapCalendar.
|
|
1847
|
-
*/
|
|
1848
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
1849
1847
|
/**
|
|
1850
1848
|
* Gets current value of property {@link #getShowOverlapIndicator showOverlapIndicator}.
|
|
1851
1849
|
*
|
|
@@ -1917,21 +1915,13 @@ declare namespace sap {
|
|
|
1917
1915
|
*/
|
|
1918
1916
|
iIndex: int
|
|
1919
1917
|
): this;
|
|
1920
|
-
|
|
1921
|
-
*
|
|
1922
|
-
*/
|
|
1918
|
+
|
|
1923
1919
|
onAfterRendering(): void;
|
|
1924
|
-
|
|
1925
|
-
*
|
|
1926
|
-
*/
|
|
1920
|
+
|
|
1927
1921
|
onBeforeRendering(): void;
|
|
1928
|
-
|
|
1929
|
-
*
|
|
1930
|
-
*/
|
|
1922
|
+
|
|
1931
1923
|
onswipeleft(oEvent: jQuery.Event): void;
|
|
1932
|
-
|
|
1933
|
-
*
|
|
1934
|
-
*/
|
|
1924
|
+
|
|
1935
1925
|
onswiperight(oEvent: jQuery.Event): void;
|
|
1936
1926
|
/**
|
|
1937
1927
|
* Removes all the controls from the aggregation {@link #getCalendarEvents calendarEvents}.
|
|
@@ -1978,18 +1968,14 @@ declare namespace sap {
|
|
|
1978
1968
|
*/
|
|
1979
1969
|
bShowOverlapIndicator?: boolean
|
|
1980
1970
|
): this;
|
|
1981
|
-
|
|
1982
|
-
*
|
|
1983
|
-
*/
|
|
1971
|
+
|
|
1984
1972
|
setStartDate(
|
|
1985
1973
|
/**
|
|
1986
1974
|
* The start date, expected toDateString.
|
|
1987
1975
|
*/
|
|
1988
1976
|
sDate: string | Date
|
|
1989
1977
|
): void;
|
|
1990
|
-
|
|
1991
|
-
*
|
|
1992
|
-
*/
|
|
1978
|
+
|
|
1993
1979
|
setSwipeToNavigate(bSwipe: boolean): void;
|
|
1994
1980
|
/**
|
|
1995
1981
|
* Sets a new value for property {@link #getVisible visible}.
|
|
@@ -2006,9 +1992,7 @@ declare namespace sap {
|
|
|
2006
1992
|
*/
|
|
2007
1993
|
bVisible?: boolean
|
|
2008
1994
|
): this;
|
|
2009
|
-
|
|
2010
|
-
*
|
|
2011
|
-
*/
|
|
1995
|
+
|
|
2012
1996
|
setWeeksPerRow(
|
|
2013
1997
|
/**
|
|
2014
1998
|
* The integer number of weeks per row
|
|
@@ -2069,6 +2053,31 @@ declare namespace sap {
|
|
|
2069
2053
|
mSettings?: sap.me.$OverlapCalendarEventSettings
|
|
2070
2054
|
);
|
|
2071
2055
|
|
|
2056
|
+
/**
|
|
2057
|
+
* Creates a new subclass of class sap.me.OverlapCalendarEvent with name `sClassName` and enriches it with
|
|
2058
|
+
* the information contained in `oClassInfo`.
|
|
2059
|
+
*
|
|
2060
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2061
|
+
*/
|
|
2062
|
+
static extend<T extends Record<string, unknown>>(
|
|
2063
|
+
/**
|
|
2064
|
+
* Name of the class being created
|
|
2065
|
+
*/
|
|
2066
|
+
sClassName: string,
|
|
2067
|
+
/**
|
|
2068
|
+
* Object literal with information about the class
|
|
2069
|
+
*/
|
|
2070
|
+
oClassInfo?: sap.ClassInfo<T, sap.me.OverlapCalendarEvent>,
|
|
2071
|
+
/**
|
|
2072
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2073
|
+
* used by this class
|
|
2074
|
+
*/
|
|
2075
|
+
FNMetaImpl?: Function
|
|
2076
|
+
): Function;
|
|
2077
|
+
/**
|
|
2078
|
+
* Returns a metadata object for class sap.me.OverlapCalendarEvent.
|
|
2079
|
+
*/
|
|
2080
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2072
2081
|
/**
|
|
2073
2082
|
* Binds property {@link #getEndDay endDay} to model data.
|
|
2074
2083
|
*
|
|
@@ -2165,27 +2174,6 @@ declare namespace sap {
|
|
|
2165
2174
|
*/
|
|
2166
2175
|
oBindingInfo: sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
2167
2176
|
): this;
|
|
2168
|
-
/**
|
|
2169
|
-
* Creates a new subclass of class sap.me.OverlapCalendarEvent with name `sClassName` and enriches it with
|
|
2170
|
-
* the information contained in `oClassInfo`.
|
|
2171
|
-
*
|
|
2172
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
|
|
2173
|
-
*/
|
|
2174
|
-
static extend<T extends Record<string, unknown>>(
|
|
2175
|
-
/**
|
|
2176
|
-
* Name of the class being created
|
|
2177
|
-
*/
|
|
2178
|
-
sClassName: string,
|
|
2179
|
-
/**
|
|
2180
|
-
* Object literal with information about the class
|
|
2181
|
-
*/
|
|
2182
|
-
oClassInfo?: sap.ClassInfo<T, sap.me.OverlapCalendarEvent>,
|
|
2183
|
-
/**
|
|
2184
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2185
|
-
* used by this class
|
|
2186
|
-
*/
|
|
2187
|
-
FNMetaImpl?: Function
|
|
2188
|
-
): Function;
|
|
2189
2177
|
/**
|
|
2190
2178
|
* Gets current value of property {@link #getEndDay endDay}.
|
|
2191
2179
|
*
|
|
@@ -2200,10 +2188,6 @@ declare namespace sap {
|
|
|
2200
2188
|
* Default value is `false`.
|
|
2201
2189
|
*/
|
|
2202
2190
|
getHalfDay(): boolean;
|
|
2203
|
-
/**
|
|
2204
|
-
* Returns a metadata object for class sap.me.OverlapCalendarEvent.
|
|
2205
|
-
*/
|
|
2206
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2207
2191
|
/**
|
|
2208
2192
|
* Gets current value of property {@link #getName name}.
|
|
2209
2193
|
*
|
|
@@ -2443,6 +2427,10 @@ declare namespace sap {
|
|
|
2443
2427
|
*/
|
|
2444
2428
|
FNMetaImpl?: Function
|
|
2445
2429
|
): Function;
|
|
2430
|
+
/**
|
|
2431
|
+
* Returns a metadata object for class sap.me.ProgressIndicator.
|
|
2432
|
+
*/
|
|
2433
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2446
2434
|
/**
|
|
2447
2435
|
* Gets current value of property {@link #getBarColor barColor}.
|
|
2448
2436
|
*
|
|
@@ -2468,10 +2456,6 @@ declare namespace sap {
|
|
|
2468
2456
|
* Default value is `true`.
|
|
2469
2457
|
*/
|
|
2470
2458
|
getEnabled(): boolean;
|
|
2471
|
-
/**
|
|
2472
|
-
* Returns a metadata object for class sap.me.ProgressIndicator.
|
|
2473
|
-
*/
|
|
2474
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2475
2459
|
/**
|
|
2476
2460
|
* Gets current value of property {@link #getPercentValue percentValue}.
|
|
2477
2461
|
*
|
|
@@ -2638,6 +2622,31 @@ declare namespace sap {
|
|
|
2638
2622
|
mSettings?: sap.me.$TabContainerSettings
|
|
2639
2623
|
);
|
|
2640
2624
|
|
|
2625
|
+
/**
|
|
2626
|
+
* Creates a new subclass of class sap.me.TabContainer with name `sClassName` and enriches it with the information
|
|
2627
|
+
* contained in `oClassInfo`.
|
|
2628
|
+
*
|
|
2629
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2630
|
+
*/
|
|
2631
|
+
static extend<T extends Record<string, unknown>>(
|
|
2632
|
+
/**
|
|
2633
|
+
* Name of the class being created
|
|
2634
|
+
*/
|
|
2635
|
+
sClassName: string,
|
|
2636
|
+
/**
|
|
2637
|
+
* Object literal with information about the class
|
|
2638
|
+
*/
|
|
2639
|
+
oClassInfo?: sap.ClassInfo<T, sap.me.TabContainer>,
|
|
2640
|
+
/**
|
|
2641
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2642
|
+
* used by this class
|
|
2643
|
+
*/
|
|
2644
|
+
FNMetaImpl?: Function
|
|
2645
|
+
): Function;
|
|
2646
|
+
/**
|
|
2647
|
+
* Returns a metadata object for class sap.me.TabContainer.
|
|
2648
|
+
*/
|
|
2649
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2641
2650
|
/**
|
|
2642
2651
|
* Attaches event handler `fnFunction` to the {@link #event:collapse collapse} event of this `sap.me.TabContainer`.
|
|
2643
2652
|
*
|
|
@@ -2822,27 +2831,6 @@ declare namespace sap {
|
|
|
2822
2831
|
*/
|
|
2823
2832
|
oListener?: object
|
|
2824
2833
|
): this;
|
|
2825
|
-
/**
|
|
2826
|
-
* Creates a new subclass of class sap.me.TabContainer with name `sClassName` and enriches it with the information
|
|
2827
|
-
* contained in `oClassInfo`.
|
|
2828
|
-
*
|
|
2829
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
2830
|
-
*/
|
|
2831
|
-
static extend<T extends Record<string, unknown>>(
|
|
2832
|
-
/**
|
|
2833
|
-
* Name of the class being created
|
|
2834
|
-
*/
|
|
2835
|
-
sClassName: string,
|
|
2836
|
-
/**
|
|
2837
|
-
* Object literal with information about the class
|
|
2838
|
-
*/
|
|
2839
|
-
oClassInfo?: sap.ClassInfo<T, sap.me.TabContainer>,
|
|
2840
|
-
/**
|
|
2841
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
2842
|
-
* used by this class
|
|
2843
|
-
*/
|
|
2844
|
-
FNMetaImpl?: Function
|
|
2845
|
-
): Function;
|
|
2846
2834
|
/**
|
|
2847
2835
|
* Fires event {@link #event:collapse collapse} to attached listeners.
|
|
2848
2836
|
*/
|
|
@@ -2937,10 +2925,6 @@ declare namespace sap {
|
|
|
2937
2925
|
* Default value is `true`.
|
|
2938
2926
|
*/
|
|
2939
2927
|
getExpanded(): boolean;
|
|
2940
|
-
/**
|
|
2941
|
-
* Returns a metadata object for class sap.me.TabContainer.
|
|
2942
|
-
*/
|
|
2943
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
2944
2928
|
/**
|
|
2945
2929
|
* Gets current value of property {@link #getSelectedTab selectedTab}.
|
|
2946
2930
|
*
|
package/types/sap.ndc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.93.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -34,17 +34,17 @@ declare namespace sap {
|
|
|
34
34
|
/**
|
|
35
35
|
* Event is fired when the scanning is finished or cancelled
|
|
36
36
|
*/
|
|
37
|
-
scanSuccess?:
|
|
37
|
+
scanSuccess?: (oEvent: sap.ui.base.Event) => void;
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
* Event is fired when the native scanning process is failed.
|
|
41
41
|
*/
|
|
42
|
-
scanFail?:
|
|
42
|
+
scanFail?: (oEvent: sap.ui.base.Event) => void;
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
45
|
* Event is fired when the text in the dialog's input field is changed.
|
|
46
46
|
*/
|
|
47
|
-
inputLiveUpdate?:
|
|
47
|
+
inputLiveUpdate?: (oEvent: sap.ui.base.Event) => void;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
/**
|
|
@@ -176,6 +176,31 @@ declare namespace sap {
|
|
|
176
176
|
mSettings?: sap.ndc.$BarcodeScannerButtonSettings
|
|
177
177
|
);
|
|
178
178
|
|
|
179
|
+
/**
|
|
180
|
+
* Creates a new subclass of class sap.ndc.BarcodeScannerButton with name `sClassName` and enriches it with
|
|
181
|
+
* the information contained in `oClassInfo`.
|
|
182
|
+
*
|
|
183
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
184
|
+
*/
|
|
185
|
+
static extend<T extends Record<string, unknown>>(
|
|
186
|
+
/**
|
|
187
|
+
* Name of the class being created
|
|
188
|
+
*/
|
|
189
|
+
sClassName: string,
|
|
190
|
+
/**
|
|
191
|
+
* Object literal with information about the class
|
|
192
|
+
*/
|
|
193
|
+
oClassInfo?: sap.ClassInfo<T, sap.ndc.BarcodeScannerButton>,
|
|
194
|
+
/**
|
|
195
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
196
|
+
* used by this class
|
|
197
|
+
*/
|
|
198
|
+
FNMetaImpl?: Function
|
|
199
|
+
): Function;
|
|
200
|
+
/**
|
|
201
|
+
* Returns a metadata object for class sap.ndc.BarcodeScannerButton.
|
|
202
|
+
*/
|
|
203
|
+
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
179
204
|
/**
|
|
180
205
|
* Attaches event handler `fnFunction` to the {@link #event:inputLiveUpdate inputLiveUpdate} event of this
|
|
181
206
|
* `sap.ndc.BarcodeScannerButton`.
|
|
@@ -347,27 +372,6 @@ declare namespace sap {
|
|
|
347
372
|
*/
|
|
348
373
|
oListener?: object
|
|
349
374
|
): this;
|
|
350
|
-
/**
|
|
351
|
-
* Creates a new subclass of class sap.ndc.BarcodeScannerButton with name `sClassName` and enriches it with
|
|
352
|
-
* the information contained in `oClassInfo`.
|
|
353
|
-
*
|
|
354
|
-
* `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
|
|
355
|
-
*/
|
|
356
|
-
static extend<T extends Record<string, unknown>>(
|
|
357
|
-
/**
|
|
358
|
-
* Name of the class being created
|
|
359
|
-
*/
|
|
360
|
-
sClassName: string,
|
|
361
|
-
/**
|
|
362
|
-
* Object literal with information about the class
|
|
363
|
-
*/
|
|
364
|
-
oClassInfo?: sap.ClassInfo<T, sap.ndc.BarcodeScannerButton>,
|
|
365
|
-
/**
|
|
366
|
-
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
367
|
-
* used by this class
|
|
368
|
-
*/
|
|
369
|
-
FNMetaImpl?: Function
|
|
370
|
-
): Function;
|
|
371
375
|
/**
|
|
372
376
|
* Fires event {@link #event:inputLiveUpdate inputLiveUpdate} to attached listeners.
|
|
373
377
|
*/
|
|
@@ -419,10 +423,6 @@ declare namespace sap {
|
|
|
419
423
|
* Defines the bar code input dialog title. If unset, a predefined title will be used.
|
|
420
424
|
*/
|
|
421
425
|
getDialogTitle(): string;
|
|
422
|
-
/**
|
|
423
|
-
* Returns a metadata object for class sap.ndc.BarcodeScannerButton.
|
|
424
|
-
*/
|
|
425
|
-
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
426
426
|
/**
|
|
427
427
|
* Gets current value of property {@link #getProvideFallback provideFallback}.
|
|
428
428
|
*
|
package/types/sap.ovp.d.ts
CHANGED