@sapui5/ts-types 1.114.0 → 1.115.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/index.d.ts +2 -0
- package/types/sap.apf.d.ts +2 -2
- package/types/sap.ca.ui.d.ts +135 -67
- package/types/sap.chart.d.ts +216 -144
- package/types/sap.collaboration.d.ts +80 -78
- package/types/sap.esh.search.ui.d.ts +93 -1
- package/types/sap.f.d.ts +1987 -1517
- package/types/sap.fe.core.d.ts +95 -209
- package/types/sap.fe.macros.d.ts +112 -10
- package/types/sap.fe.navigation.d.ts +39 -32
- package/types/sap.fe.placeholder.d.ts +3 -0
- package/types/sap.fe.templates.d.ts +10 -278
- package/types/sap.fe.test.d.ts +7 -13
- package/types/sap.fe.tools.d.ts +3 -0
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1716 -1087
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.landvisz.d.ts +35 -9
- package/types/sap.m.d.ts +26776 -22688
- package/types/sap.makit.d.ts +87 -28
- package/types/sap.me.d.ts +166 -74
- package/types/sap.ndc.d.ts +115 -43
- package/types/sap.ovp.d.ts +1 -2
- package/types/sap.rules.ui.d.ts +43 -19
- package/types/sap.sac.df.d.ts +3 -3
- package/types/sap.suite.ui.commons.d.ts +2056 -1282
- package/types/sap.suite.ui.generic.template.d.ts +99 -102
- package/types/sap.suite.ui.microchart.d.ts +503 -322
- package/types/sap.tnt.d.ts +160 -86
- package/types/sap.ui.codeeditor.d.ts +64 -38
- package/types/sap.ui.commons.d.ts +1377 -793
- package/types/sap.ui.comp.d.ts +4158 -2831
- package/types/sap.ui.core.d.ts +6006 -3642
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +71 -53
- package/types/sap.ui.fl.d.ts +162 -97
- package/types/sap.ui.generic.app.d.ts +40 -39
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +497 -373
- package/types/sap.ui.layout.d.ts +598 -631
- package/types/sap.ui.mdc.d.ts +21985 -6
- package/types/sap.ui.richtexteditor.d.ts +107 -70
- package/types/sap.ui.rta.d.ts +7 -8
- package/types/sap.ui.suite.d.ts +29 -14
- package/types/sap.ui.support.d.ts +15 -17
- package/types/sap.ui.table.d.ts +910 -628
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1775 -1166
- package/types/sap.ui.ux3.d.ts +1469 -759
- package/types/sap.ui.vbm.d.ts +1262 -710
- package/types/sap.ui.vk.d.ts +2981 -1751
- package/types/sap.ui.vtm.d.ts +704 -457
- package/types/sap.ui.webc.common.d.ts +9 -9
- package/types/sap.ui.webc.fiori.d.ts +812 -448
- package/types/sap.ui.webc.main.d.ts +2045 -1068
- package/types/sap.uiext.inbox.d.ts +168 -41
- package/types/sap.ushell.d.ts +722 -424
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +469 -343
- package/types/sap.viz.d.ts +2196 -833
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +5 -5
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +147 -81
package/types/sap.me.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -172,17 +172,23 @@ declare namespace sap {
|
|
|
172
172
|
/**
|
|
173
173
|
* event fired when a date is tapped
|
|
174
174
|
*/
|
|
175
|
-
tapOnDate?: (
|
|
175
|
+
tapOnDate?: (
|
|
176
|
+
oEvent: sap.ui.base.Event<sap.me.Calendar$TapOnDateEventParameters>
|
|
177
|
+
) => void;
|
|
176
178
|
|
|
177
179
|
/**
|
|
178
180
|
* event fired when tap to next or previous button and currentDate is updated
|
|
179
181
|
*/
|
|
180
|
-
changeCurrentDate?: (
|
|
182
|
+
changeCurrentDate?: (
|
|
183
|
+
oEvent: sap.ui.base.Event<sap.me.Calendar$ChangeCurrentDateEventParameters>
|
|
184
|
+
) => void;
|
|
181
185
|
|
|
182
186
|
/**
|
|
183
187
|
* when the range of selected dates changes
|
|
184
188
|
*/
|
|
185
|
-
changeRange?: (
|
|
189
|
+
changeRange?: (
|
|
190
|
+
oEvent: sap.ui.base.Event<sap.me.Calendar$ChangeRangeEventParameters>
|
|
191
|
+
) => void;
|
|
186
192
|
}
|
|
187
193
|
|
|
188
194
|
interface $CalendarLegendSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -350,12 +356,16 @@ declare namespace sap {
|
|
|
350
356
|
/**
|
|
351
357
|
* Indicates that we have reach the last week with data
|
|
352
358
|
*/
|
|
353
|
-
endOfData?: (
|
|
359
|
+
endOfData?: (
|
|
360
|
+
oEvent: sap.ui.base.Event<sap.me.OverlapCalendar$EndOfDataEventParameters>
|
|
361
|
+
) => void;
|
|
354
362
|
|
|
355
363
|
/**
|
|
356
364
|
* Triggered when the displayed dates change
|
|
357
365
|
*/
|
|
358
|
-
changeDate?: (
|
|
366
|
+
changeDate?: (
|
|
367
|
+
oEvent: sap.ui.base.Event<sap.me.OverlapCalendar$ChangeDateEventParameters>
|
|
368
|
+
) => void;
|
|
359
369
|
}
|
|
360
370
|
|
|
361
371
|
interface $OverlapCalendarEventSettings
|
|
@@ -564,6 +574,62 @@ declare namespace sap {
|
|
|
564
574
|
collapse?: (oEvent: sap.ui.base.Event) => void;
|
|
565
575
|
}
|
|
566
576
|
|
|
577
|
+
interface Calendar$ChangeCurrentDateEventParameters {
|
|
578
|
+
/**
|
|
579
|
+
* new date
|
|
580
|
+
*/
|
|
581
|
+
currentDate?: string;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
interface Calendar$ChangeRangeEventParameters {
|
|
585
|
+
/**
|
|
586
|
+
* from date
|
|
587
|
+
*/
|
|
588
|
+
fromDate?: string;
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* to date
|
|
592
|
+
*/
|
|
593
|
+
toDate?: string;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
interface Calendar$TapOnDateEventParameters {
|
|
597
|
+
/**
|
|
598
|
+
* date tapped
|
|
599
|
+
*/
|
|
600
|
+
date?: string;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* if day was selected
|
|
604
|
+
*/
|
|
605
|
+
didSelect?: boolean;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
interface OverlapCalendar$ChangeDateEventParameters {
|
|
609
|
+
/**
|
|
610
|
+
* The first date displayed in the calendar
|
|
611
|
+
*/
|
|
612
|
+
firstDate?: object;
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* The last date that will be displayed
|
|
616
|
+
*/
|
|
617
|
+
lastDate?: object;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
interface OverlapCalendar$EndOfDataEventParameters {
|
|
621
|
+
/**
|
|
622
|
+
* Indicates if the data missing are before the start date or at the end
|
|
623
|
+
*/
|
|
624
|
+
before?: boolean;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
interface TabContainer$CollapseEventParameters {}
|
|
628
|
+
|
|
629
|
+
interface TabContainer$ExpandEventParameters {}
|
|
630
|
+
|
|
631
|
+
interface TabContainer$SelectEventParameters {}
|
|
632
|
+
|
|
567
633
|
/**
|
|
568
634
|
* @deprecated (since 1.26.0) - This control was experimental since 1.12. Please use the sap.ui.unified.Calendar
|
|
569
635
|
* instead!
|
|
@@ -664,7 +730,7 @@ declare namespace sap {
|
|
|
664
730
|
/**
|
|
665
731
|
* The function to be called when the event occurs
|
|
666
732
|
*/
|
|
667
|
-
fnFunction: (p1:
|
|
733
|
+
fnFunction: (p1: Calendar$ChangeCurrentDateEvent) => void,
|
|
668
734
|
/**
|
|
669
735
|
* Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
|
|
670
736
|
*/
|
|
@@ -685,7 +751,7 @@ declare namespace sap {
|
|
|
685
751
|
/**
|
|
686
752
|
* The function to be called when the event occurs
|
|
687
753
|
*/
|
|
688
|
-
fnFunction: (p1:
|
|
754
|
+
fnFunction: (p1: Calendar$ChangeCurrentDateEvent) => void,
|
|
689
755
|
/**
|
|
690
756
|
* Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
|
|
691
757
|
*/
|
|
@@ -710,7 +776,7 @@ declare namespace sap {
|
|
|
710
776
|
/**
|
|
711
777
|
* The function to be called when the event occurs
|
|
712
778
|
*/
|
|
713
|
-
fnFunction: (p1:
|
|
779
|
+
fnFunction: (p1: Calendar$ChangeRangeEvent) => void,
|
|
714
780
|
/**
|
|
715
781
|
* Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
|
|
716
782
|
*/
|
|
@@ -730,7 +796,7 @@ declare namespace sap {
|
|
|
730
796
|
/**
|
|
731
797
|
* The function to be called when the event occurs
|
|
732
798
|
*/
|
|
733
|
-
fnFunction: (p1:
|
|
799
|
+
fnFunction: (p1: Calendar$ChangeRangeEvent) => void,
|
|
734
800
|
/**
|
|
735
801
|
* Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
|
|
736
802
|
*/
|
|
@@ -755,7 +821,7 @@ declare namespace sap {
|
|
|
755
821
|
/**
|
|
756
822
|
* The function to be called when the event occurs
|
|
757
823
|
*/
|
|
758
|
-
fnFunction: (p1:
|
|
824
|
+
fnFunction: (p1: Calendar$TapOnDateEvent) => void,
|
|
759
825
|
/**
|
|
760
826
|
* Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
|
|
761
827
|
*/
|
|
@@ -775,7 +841,7 @@ declare namespace sap {
|
|
|
775
841
|
/**
|
|
776
842
|
* The function to be called when the event occurs
|
|
777
843
|
*/
|
|
778
|
-
fnFunction: (p1:
|
|
844
|
+
fnFunction: (p1: Calendar$TapOnDateEvent) => void,
|
|
779
845
|
/**
|
|
780
846
|
* Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
|
|
781
847
|
*/
|
|
@@ -793,7 +859,7 @@ declare namespace sap {
|
|
|
793
859
|
/**
|
|
794
860
|
* The function to be called, when the event occurs
|
|
795
861
|
*/
|
|
796
|
-
fnFunction: (p1:
|
|
862
|
+
fnFunction: (p1: Calendar$ChangeCurrentDateEvent) => void,
|
|
797
863
|
/**
|
|
798
864
|
* Context object on which the given function had to be called
|
|
799
865
|
*/
|
|
@@ -810,7 +876,7 @@ declare namespace sap {
|
|
|
810
876
|
/**
|
|
811
877
|
* The function to be called, when the event occurs
|
|
812
878
|
*/
|
|
813
|
-
fnFunction: (p1:
|
|
879
|
+
fnFunction: (p1: Calendar$ChangeRangeEvent) => void,
|
|
814
880
|
/**
|
|
815
881
|
* Context object on which the given function had to be called
|
|
816
882
|
*/
|
|
@@ -827,14 +893,14 @@ declare namespace sap {
|
|
|
827
893
|
/**
|
|
828
894
|
* The function to be called, when the event occurs
|
|
829
895
|
*/
|
|
830
|
-
fnFunction: (p1:
|
|
896
|
+
fnFunction: (p1: Calendar$TapOnDateEvent) => void,
|
|
831
897
|
/**
|
|
832
898
|
* Context object on which the given function had to be called
|
|
833
899
|
*/
|
|
834
900
|
oListener?: object
|
|
835
901
|
): this;
|
|
836
902
|
/**
|
|
837
|
-
* @
|
|
903
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
838
904
|
*
|
|
839
905
|
* Fires event {@link #event:changeCurrentDate changeCurrentDate} to attached listeners.
|
|
840
906
|
*
|
|
@@ -844,15 +910,10 @@ declare namespace sap {
|
|
|
844
910
|
/**
|
|
845
911
|
* Parameters to pass along with the event
|
|
846
912
|
*/
|
|
847
|
-
mParameters?:
|
|
848
|
-
/**
|
|
849
|
-
* new date
|
|
850
|
-
*/
|
|
851
|
-
currentDate?: string;
|
|
852
|
-
}
|
|
913
|
+
mParameters?: sap.me.Calendar$ChangeCurrentDateEventParameters
|
|
853
914
|
): this;
|
|
854
915
|
/**
|
|
855
|
-
* @
|
|
916
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
856
917
|
*
|
|
857
918
|
* Fires event {@link #event:changeRange changeRange} to attached listeners.
|
|
858
919
|
*
|
|
@@ -862,19 +923,10 @@ declare namespace sap {
|
|
|
862
923
|
/**
|
|
863
924
|
* Parameters to pass along with the event
|
|
864
925
|
*/
|
|
865
|
-
mParameters?:
|
|
866
|
-
/**
|
|
867
|
-
* from date
|
|
868
|
-
*/
|
|
869
|
-
fromDate?: string;
|
|
870
|
-
/**
|
|
871
|
-
* to date
|
|
872
|
-
*/
|
|
873
|
-
toDate?: string;
|
|
874
|
-
}
|
|
926
|
+
mParameters?: sap.me.Calendar$ChangeRangeEventParameters
|
|
875
927
|
): this;
|
|
876
928
|
/**
|
|
877
|
-
* @
|
|
929
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
878
930
|
*
|
|
879
931
|
* Fires event {@link #event:tapOnDate tapOnDate} to attached listeners.
|
|
880
932
|
*
|
|
@@ -884,16 +936,7 @@ declare namespace sap {
|
|
|
884
936
|
/**
|
|
885
937
|
* Parameters to pass along with the event
|
|
886
938
|
*/
|
|
887
|
-
mParameters?:
|
|
888
|
-
/**
|
|
889
|
-
* date tapped
|
|
890
|
-
*/
|
|
891
|
-
date?: string;
|
|
892
|
-
/**
|
|
893
|
-
* if day was selected
|
|
894
|
-
*/
|
|
895
|
-
didSelect?: boolean;
|
|
896
|
-
}
|
|
939
|
+
mParameters?: sap.me.Calendar$TapOnDateEventParameters
|
|
897
940
|
): this;
|
|
898
941
|
/**
|
|
899
942
|
* Gets current value of property {@link #getCurrentDate currentDate}.
|
|
@@ -2005,7 +2048,7 @@ declare namespace sap {
|
|
|
2005
2048
|
/**
|
|
2006
2049
|
* The function to be called when the event occurs
|
|
2007
2050
|
*/
|
|
2008
|
-
fnFunction: (p1:
|
|
2051
|
+
fnFunction: (p1: OverlapCalendar$ChangeDateEvent) => void,
|
|
2009
2052
|
/**
|
|
2010
2053
|
* Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
|
|
2011
2054
|
*/
|
|
@@ -2025,7 +2068,7 @@ declare namespace sap {
|
|
|
2025
2068
|
/**
|
|
2026
2069
|
* The function to be called when the event occurs
|
|
2027
2070
|
*/
|
|
2028
|
-
fnFunction: (p1:
|
|
2071
|
+
fnFunction: (p1: OverlapCalendar$ChangeDateEvent) => void,
|
|
2029
2072
|
/**
|
|
2030
2073
|
* Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
|
|
2031
2074
|
*/
|
|
@@ -2050,7 +2093,7 @@ declare namespace sap {
|
|
|
2050
2093
|
/**
|
|
2051
2094
|
* The function to be called when the event occurs
|
|
2052
2095
|
*/
|
|
2053
|
-
fnFunction: (p1:
|
|
2096
|
+
fnFunction: (p1: OverlapCalendar$EndOfDataEvent) => void,
|
|
2054
2097
|
/**
|
|
2055
2098
|
* Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
|
|
2056
2099
|
*/
|
|
@@ -2070,7 +2113,7 @@ declare namespace sap {
|
|
|
2070
2113
|
/**
|
|
2071
2114
|
* The function to be called when the event occurs
|
|
2072
2115
|
*/
|
|
2073
|
-
fnFunction: (p1:
|
|
2116
|
+
fnFunction: (p1: OverlapCalendar$EndOfDataEvent) => void,
|
|
2074
2117
|
/**
|
|
2075
2118
|
* Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
|
|
2076
2119
|
*/
|
|
@@ -2093,7 +2136,7 @@ declare namespace sap {
|
|
|
2093
2136
|
/**
|
|
2094
2137
|
* The function to be called, when the event occurs
|
|
2095
2138
|
*/
|
|
2096
|
-
fnFunction: (p1:
|
|
2139
|
+
fnFunction: (p1: OverlapCalendar$ChangeDateEvent) => void,
|
|
2097
2140
|
/**
|
|
2098
2141
|
* Context object on which the given function had to be called
|
|
2099
2142
|
*/
|
|
@@ -2110,14 +2153,14 @@ declare namespace sap {
|
|
|
2110
2153
|
/**
|
|
2111
2154
|
* The function to be called, when the event occurs
|
|
2112
2155
|
*/
|
|
2113
|
-
fnFunction: (p1:
|
|
2156
|
+
fnFunction: (p1: OverlapCalendar$EndOfDataEvent) => void,
|
|
2114
2157
|
/**
|
|
2115
2158
|
* Context object on which the given function had to be called
|
|
2116
2159
|
*/
|
|
2117
2160
|
oListener?: object
|
|
2118
2161
|
): this;
|
|
2119
2162
|
/**
|
|
2120
|
-
* @
|
|
2163
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2121
2164
|
*
|
|
2122
2165
|
* Fires event {@link #event:changeDate changeDate} to attached listeners.
|
|
2123
2166
|
*
|
|
@@ -2127,19 +2170,10 @@ declare namespace sap {
|
|
|
2127
2170
|
/**
|
|
2128
2171
|
* Parameters to pass along with the event
|
|
2129
2172
|
*/
|
|
2130
|
-
mParameters?:
|
|
2131
|
-
/**
|
|
2132
|
-
* The first date displayed in the calendar
|
|
2133
|
-
*/
|
|
2134
|
-
firstDate?: object;
|
|
2135
|
-
/**
|
|
2136
|
-
* The last date that will be displayed
|
|
2137
|
-
*/
|
|
2138
|
-
lastDate?: object;
|
|
2139
|
-
}
|
|
2173
|
+
mParameters?: sap.me.OverlapCalendar$ChangeDateEventParameters
|
|
2140
2174
|
): this;
|
|
2141
2175
|
/**
|
|
2142
|
-
* @
|
|
2176
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2143
2177
|
*
|
|
2144
2178
|
* Fires event {@link #event:endOfData endOfData} to attached listeners.
|
|
2145
2179
|
*
|
|
@@ -2149,12 +2183,7 @@ declare namespace sap {
|
|
|
2149
2183
|
/**
|
|
2150
2184
|
* Parameters to pass along with the event
|
|
2151
2185
|
*/
|
|
2152
|
-
mParameters?:
|
|
2153
|
-
/**
|
|
2154
|
-
* Indicates if the data missing are before the start date or at the end
|
|
2155
|
-
*/
|
|
2156
|
-
before?: boolean;
|
|
2157
|
-
}
|
|
2186
|
+
mParameters?: sap.me.OverlapCalendar$EndOfDataEventParameters
|
|
2158
2187
|
): this;
|
|
2159
2188
|
/**
|
|
2160
2189
|
*
|
|
@@ -3323,7 +3352,7 @@ declare namespace sap {
|
|
|
3323
3352
|
oListener?: object
|
|
3324
3353
|
): this;
|
|
3325
3354
|
/**
|
|
3326
|
-
* @
|
|
3355
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3327
3356
|
*
|
|
3328
3357
|
* Fires event {@link #event:collapse collapse} to attached listeners.
|
|
3329
3358
|
*
|
|
@@ -3336,7 +3365,7 @@ declare namespace sap {
|
|
|
3336
3365
|
mParameters?: object
|
|
3337
3366
|
): this;
|
|
3338
3367
|
/**
|
|
3339
|
-
* @
|
|
3368
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3340
3369
|
*
|
|
3341
3370
|
* Fires event {@link #event:expand expand} to attached listeners.
|
|
3342
3371
|
*
|
|
@@ -3349,7 +3378,7 @@ declare namespace sap {
|
|
|
3349
3378
|
mParameters?: object
|
|
3350
3379
|
): this;
|
|
3351
3380
|
/**
|
|
3352
|
-
* @
|
|
3381
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3353
3382
|
*
|
|
3354
3383
|
* Fires event {@link #event:select select} to attached listeners.
|
|
3355
3384
|
*
|
|
@@ -3631,7 +3660,7 @@ declare namespace sap {
|
|
|
3631
3660
|
}
|
|
3632
3661
|
/**
|
|
3633
3662
|
* @deprecated (since 1.34)
|
|
3634
|
-
* @
|
|
3663
|
+
* @experimental (since 1.12) - API is not yet finished and might change completely
|
|
3635
3664
|
*
|
|
3636
3665
|
* Type of Design for the Calendar
|
|
3637
3666
|
*/
|
|
@@ -3647,7 +3676,7 @@ declare namespace sap {
|
|
|
3647
3676
|
}
|
|
3648
3677
|
/**
|
|
3649
3678
|
* @deprecated (since 1.34)
|
|
3650
|
-
* @
|
|
3679
|
+
* @experimental (since 1.12) - API is not yet finished and might change completely
|
|
3651
3680
|
*
|
|
3652
3681
|
* Type code for a calendar event
|
|
3653
3682
|
*/
|
|
@@ -3679,7 +3708,7 @@ declare namespace sap {
|
|
|
3679
3708
|
}
|
|
3680
3709
|
/**
|
|
3681
3710
|
* @deprecated (since 1.34)
|
|
3682
|
-
* @
|
|
3711
|
+
* @experimental (since 1.12) - API is not yet finished and might change completely
|
|
3683
3712
|
*
|
|
3684
3713
|
* Selection Mode for the Calendar
|
|
3685
3714
|
*/
|
|
@@ -3697,6 +3726,69 @@ declare namespace sap {
|
|
|
3697
3726
|
*/
|
|
3698
3727
|
SINGLE = "SINGLE",
|
|
3699
3728
|
}
|
|
3729
|
+
/**
|
|
3730
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$ChangeCurrentDateEventParameters'
|
|
3731
|
+
* in 1.115.1 and any later releases.
|
|
3732
|
+
*/
|
|
3733
|
+
type $CalendarChangeCurrentDateEventParameters = sap.me.Calendar$ChangeCurrentDateEventParameters;
|
|
3734
|
+
|
|
3735
|
+
type Calendar$ChangeCurrentDateEvent = sap.ui.base.Event<Calendar$ChangeCurrentDateEventParameters>;
|
|
3736
|
+
|
|
3737
|
+
/**
|
|
3738
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$ChangeRangeEventParameters'
|
|
3739
|
+
* in 1.115.1 and any later releases.
|
|
3740
|
+
*/
|
|
3741
|
+
type $CalendarChangeRangeEventParameters = sap.me.Calendar$ChangeRangeEventParameters;
|
|
3742
|
+
|
|
3743
|
+
type Calendar$ChangeRangeEvent = sap.ui.base.Event<Calendar$ChangeRangeEventParameters>;
|
|
3744
|
+
|
|
3745
|
+
/**
|
|
3746
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$TapOnDateEventParameters'
|
|
3747
|
+
* in 1.115.1 and any later releases.
|
|
3748
|
+
*/
|
|
3749
|
+
type $CalendarTapOnDateEventParameters = sap.me.Calendar$TapOnDateEventParameters;
|
|
3750
|
+
|
|
3751
|
+
type Calendar$TapOnDateEvent = sap.ui.base.Event<Calendar$TapOnDateEventParameters>;
|
|
3752
|
+
|
|
3753
|
+
/**
|
|
3754
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'OverlapCalendar$ChangeDateEventParameters'
|
|
3755
|
+
* in 1.115.1 and any later releases.
|
|
3756
|
+
*/
|
|
3757
|
+
type $OverlapCalendarChangeDateEventParameters = sap.me.OverlapCalendar$ChangeDateEventParameters;
|
|
3758
|
+
|
|
3759
|
+
type OverlapCalendar$ChangeDateEvent = sap.ui.base.Event<OverlapCalendar$ChangeDateEventParameters>;
|
|
3760
|
+
|
|
3761
|
+
/**
|
|
3762
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'OverlapCalendar$EndOfDataEventParameters'
|
|
3763
|
+
* in 1.115.1 and any later releases.
|
|
3764
|
+
*/
|
|
3765
|
+
type $OverlapCalendarEndOfDataEventParameters = sap.me.OverlapCalendar$EndOfDataEventParameters;
|
|
3766
|
+
|
|
3767
|
+
type OverlapCalendar$EndOfDataEvent = sap.ui.base.Event<OverlapCalendar$EndOfDataEventParameters>;
|
|
3768
|
+
|
|
3769
|
+
/**
|
|
3770
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabContainer$CollapseEventParameters'
|
|
3771
|
+
* in 1.115.1 and any later releases.
|
|
3772
|
+
*/
|
|
3773
|
+
type $TabContainerCollapseEventParameters = sap.me.TabContainer$CollapseEventParameters;
|
|
3774
|
+
|
|
3775
|
+
type TabContainer$CollapseEvent = sap.ui.base.Event<TabContainer$CollapseEventParameters>;
|
|
3776
|
+
|
|
3777
|
+
/**
|
|
3778
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabContainer$ExpandEventParameters'
|
|
3779
|
+
* in 1.115.1 and any later releases.
|
|
3780
|
+
*/
|
|
3781
|
+
type $TabContainerExpandEventParameters = sap.me.TabContainer$ExpandEventParameters;
|
|
3782
|
+
|
|
3783
|
+
type TabContainer$ExpandEvent = sap.ui.base.Event<TabContainer$ExpandEventParameters>;
|
|
3784
|
+
|
|
3785
|
+
/**
|
|
3786
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TabContainer$SelectEventParameters'
|
|
3787
|
+
* in 1.115.1 and any later releases.
|
|
3788
|
+
*/
|
|
3789
|
+
type $TabContainerSelectEventParameters = sap.me.TabContainer$SelectEventParameters;
|
|
3790
|
+
|
|
3791
|
+
type TabContainer$SelectEvent = sap.ui.base.Event<TabContainer$SelectEventParameters>;
|
|
3700
3792
|
}
|
|
3701
3793
|
|
|
3702
3794
|
interface IUI5DefineDependencyNames {
|