@sapui5/ts-types 1.115.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.
Files changed (44) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.chart.d.ts +92 -49
  4. package/types/sap.f.d.ts +775 -686
  5. package/types/sap.fe.core.d.ts +57 -57
  6. package/types/sap.fe.macros.d.ts +66 -10
  7. package/types/sap.fe.navigation.d.ts +5 -5
  8. package/types/sap.fe.placeholder.d.ts +3 -0
  9. package/types/sap.fe.templates.d.ts +5 -6
  10. package/types/sap.fe.test.d.ts +4 -4
  11. package/types/sap.fe.tools.d.ts +3 -0
  12. package/types/sap.m.d.ts +7827 -6468
  13. package/types/sap.makit.d.ts +77 -30
  14. package/types/sap.me.d.ts +108 -75
  15. package/types/sap.ndc.d.ts +42 -30
  16. package/types/sap.suite.ui.generic.template.d.ts +72 -64
  17. package/types/sap.suite.ui.microchart.d.ts +354 -225
  18. package/types/sap.tnt.d.ts +67 -73
  19. package/types/sap.ui.codeeditor.d.ts +38 -34
  20. package/types/sap.ui.commons.d.ts +841 -675
  21. package/types/sap.ui.comp.d.ts +2545 -2065
  22. package/types/sap.ui.core.d.ts +2532 -1908
  23. package/types/sap.ui.dt.d.ts +1 -1
  24. package/types/sap.ui.export.d.ts +42 -27
  25. package/types/sap.ui.fl.d.ts +78 -56
  26. package/types/sap.ui.integration.d.ts +345 -299
  27. package/types/sap.ui.layout.d.ts +347 -337
  28. package/types/sap.ui.mdc.d.ts +959 -801
  29. package/types/sap.ui.richtexteditor.d.ts +62 -37
  30. package/types/sap.ui.rta.d.ts +7 -7
  31. package/types/sap.ui.suite.d.ts +23 -8
  32. package/types/sap.ui.support.d.ts +11 -11
  33. package/types/sap.ui.table.d.ts +476 -420
  34. package/types/sap.ui.testrecorder.d.ts +1 -1
  35. package/types/sap.ui.unified.d.ts +1186 -909
  36. package/types/sap.ui.ux3.d.ts +957 -736
  37. package/types/sap.ui.webc.common.d.ts +9 -9
  38. package/types/sap.ui.webc.fiori.d.ts +519 -386
  39. package/types/sap.ui.webc.main.d.ts +1377 -902
  40. package/types/sap.uiext.inbox.d.ts +135 -31
  41. package/types/sap.ushell.d.ts +379 -267
  42. package/types/sap.ushell_abap.d.ts +1 -1
  43. package/types/sap.uxap.d.ts +280 -242
  44. package/types/sap.viz.d.ts +1677 -601
package/types/sap.me.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -173,21 +173,21 @@ declare namespace sap {
173
173
  * event fired when a date is tapped
174
174
  */
175
175
  tapOnDate?: (
176
- oEvent: sap.ui.base.Event<sap.me.$CalendarTapOnDateEventParameters>
176
+ oEvent: sap.ui.base.Event<sap.me.Calendar$TapOnDateEventParameters>
177
177
  ) => void;
178
178
 
179
179
  /**
180
180
  * event fired when tap to next or previous button and currentDate is updated
181
181
  */
182
182
  changeCurrentDate?: (
183
- oEvent: sap.ui.base.Event<sap.me.$CalendarChangeCurrentDateEventParameters>
183
+ oEvent: sap.ui.base.Event<sap.me.Calendar$ChangeCurrentDateEventParameters>
184
184
  ) => void;
185
185
 
186
186
  /**
187
187
  * when the range of selected dates changes
188
188
  */
189
189
  changeRange?: (
190
- oEvent: sap.ui.base.Event<sap.me.$CalendarChangeRangeEventParameters>
190
+ oEvent: sap.ui.base.Event<sap.me.Calendar$ChangeRangeEventParameters>
191
191
  ) => void;
192
192
  }
193
193
 
@@ -357,14 +357,14 @@ declare namespace sap {
357
357
  * Indicates that we have reach the last week with data
358
358
  */
359
359
  endOfData?: (
360
- oEvent: sap.ui.base.Event<sap.me.$OverlapCalendarEndOfDataEventParameters>
360
+ oEvent: sap.ui.base.Event<sap.me.OverlapCalendar$EndOfDataEventParameters>
361
361
  ) => void;
362
362
 
363
363
  /**
364
364
  * Triggered when the displayed dates change
365
365
  */
366
366
  changeDate?: (
367
- oEvent: sap.ui.base.Event<sap.me.$OverlapCalendarChangeDateEventParameters>
367
+ oEvent: sap.ui.base.Event<sap.me.OverlapCalendar$ChangeDateEventParameters>
368
368
  ) => void;
369
369
  }
370
370
 
@@ -574,14 +574,14 @@ declare namespace sap {
574
574
  collapse?: (oEvent: sap.ui.base.Event) => void;
575
575
  }
576
576
 
577
- interface $CalendarChangeCurrentDateEventParameters {
577
+ interface Calendar$ChangeCurrentDateEventParameters {
578
578
  /**
579
579
  * new date
580
580
  */
581
581
  currentDate?: string;
582
582
  }
583
583
 
584
- interface $CalendarChangeRangeEventParameters {
584
+ interface Calendar$ChangeRangeEventParameters {
585
585
  /**
586
586
  * from date
587
587
  */
@@ -593,7 +593,7 @@ declare namespace sap {
593
593
  toDate?: string;
594
594
  }
595
595
 
596
- interface $CalendarTapOnDateEventParameters {
596
+ interface Calendar$TapOnDateEventParameters {
597
597
  /**
598
598
  * date tapped
599
599
  */
@@ -605,7 +605,7 @@ declare namespace sap {
605
605
  didSelect?: boolean;
606
606
  }
607
607
 
608
- interface $OverlapCalendarChangeDateEventParameters {
608
+ interface OverlapCalendar$ChangeDateEventParameters {
609
609
  /**
610
610
  * The first date displayed in the calendar
611
611
  */
@@ -617,18 +617,18 @@ declare namespace sap {
617
617
  lastDate?: object;
618
618
  }
619
619
 
620
- interface $OverlapCalendarEndOfDataEventParameters {
620
+ interface OverlapCalendar$EndOfDataEventParameters {
621
621
  /**
622
622
  * Indicates if the data missing are before the start date or at the end
623
623
  */
624
624
  before?: boolean;
625
625
  }
626
626
 
627
- interface $TabContainerCollapseEventParameters {}
627
+ interface TabContainer$CollapseEventParameters {}
628
628
 
629
- interface $TabContainerExpandEventParameters {}
629
+ interface TabContainer$ExpandEventParameters {}
630
630
 
631
- interface $TabContainerSelectEventParameters {}
631
+ interface TabContainer$SelectEventParameters {}
632
632
 
633
633
  /**
634
634
  * @deprecated (since 1.26.0) - This control was experimental since 1.12. Please use the sap.ui.unified.Calendar
@@ -730,9 +730,7 @@ declare namespace sap {
730
730
  /**
731
731
  * The function to be called when the event occurs
732
732
  */
733
- fnFunction: (
734
- p1: sap.ui.base.Event<sap.me.$CalendarChangeCurrentDateEventParameters>
735
- ) => void,
733
+ fnFunction: (p1: Calendar$ChangeCurrentDateEvent) => void,
736
734
  /**
737
735
  * Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
738
736
  */
@@ -753,9 +751,7 @@ declare namespace sap {
753
751
  /**
754
752
  * The function to be called when the event occurs
755
753
  */
756
- fnFunction: (
757
- p1: sap.ui.base.Event<sap.me.$CalendarChangeCurrentDateEventParameters>
758
- ) => void,
754
+ fnFunction: (p1: Calendar$ChangeCurrentDateEvent) => void,
759
755
  /**
760
756
  * Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
761
757
  */
@@ -780,9 +776,7 @@ declare namespace sap {
780
776
  /**
781
777
  * The function to be called when the event occurs
782
778
  */
783
- fnFunction: (
784
- p1: sap.ui.base.Event<sap.me.$CalendarChangeRangeEventParameters>
785
- ) => void,
779
+ fnFunction: (p1: Calendar$ChangeRangeEvent) => void,
786
780
  /**
787
781
  * Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
788
782
  */
@@ -802,9 +796,7 @@ declare namespace sap {
802
796
  /**
803
797
  * The function to be called when the event occurs
804
798
  */
805
- fnFunction: (
806
- p1: sap.ui.base.Event<sap.me.$CalendarChangeRangeEventParameters>
807
- ) => void,
799
+ fnFunction: (p1: Calendar$ChangeRangeEvent) => void,
808
800
  /**
809
801
  * Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
810
802
  */
@@ -829,9 +821,7 @@ declare namespace sap {
829
821
  /**
830
822
  * The function to be called when the event occurs
831
823
  */
832
- fnFunction: (
833
- p1: sap.ui.base.Event<sap.me.$CalendarTapOnDateEventParameters>
834
- ) => void,
824
+ fnFunction: (p1: Calendar$TapOnDateEvent) => void,
835
825
  /**
836
826
  * Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
837
827
  */
@@ -851,9 +841,7 @@ declare namespace sap {
851
841
  /**
852
842
  * The function to be called when the event occurs
853
843
  */
854
- fnFunction: (
855
- p1: sap.ui.base.Event<sap.me.$CalendarTapOnDateEventParameters>
856
- ) => void,
844
+ fnFunction: (p1: Calendar$TapOnDateEvent) => void,
857
845
  /**
858
846
  * Context object to call the event handler with. Defaults to this `sap.me.Calendar` itself
859
847
  */
@@ -871,9 +859,7 @@ declare namespace sap {
871
859
  /**
872
860
  * The function to be called, when the event occurs
873
861
  */
874
- fnFunction: (
875
- p1: sap.ui.base.Event<sap.me.$CalendarChangeCurrentDateEventParameters>
876
- ) => void,
862
+ fnFunction: (p1: Calendar$ChangeCurrentDateEvent) => void,
877
863
  /**
878
864
  * Context object on which the given function had to be called
879
865
  */
@@ -890,9 +876,7 @@ declare namespace sap {
890
876
  /**
891
877
  * The function to be called, when the event occurs
892
878
  */
893
- fnFunction: (
894
- p1: sap.ui.base.Event<sap.me.$CalendarChangeRangeEventParameters>
895
- ) => void,
879
+ fnFunction: (p1: Calendar$ChangeRangeEvent) => void,
896
880
  /**
897
881
  * Context object on which the given function had to be called
898
882
  */
@@ -909,16 +893,14 @@ declare namespace sap {
909
893
  /**
910
894
  * The function to be called, when the event occurs
911
895
  */
912
- fnFunction: (
913
- p1: sap.ui.base.Event<sap.me.$CalendarTapOnDateEventParameters>
914
- ) => void,
896
+ fnFunction: (p1: Calendar$TapOnDateEvent) => void,
915
897
  /**
916
898
  * Context object on which the given function had to be called
917
899
  */
918
900
  oListener?: object
919
901
  ): this;
920
902
  /**
921
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
903
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
922
904
  *
923
905
  * Fires event {@link #event:changeCurrentDate changeCurrentDate} to attached listeners.
924
906
  *
@@ -928,10 +910,10 @@ declare namespace sap {
928
910
  /**
929
911
  * Parameters to pass along with the event
930
912
  */
931
- mParameters?: sap.me.$CalendarChangeCurrentDateEventParameters
913
+ mParameters?: sap.me.Calendar$ChangeCurrentDateEventParameters
932
914
  ): this;
933
915
  /**
934
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
916
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
935
917
  *
936
918
  * Fires event {@link #event:changeRange changeRange} to attached listeners.
937
919
  *
@@ -941,10 +923,10 @@ declare namespace sap {
941
923
  /**
942
924
  * Parameters to pass along with the event
943
925
  */
944
- mParameters?: sap.me.$CalendarChangeRangeEventParameters
926
+ mParameters?: sap.me.Calendar$ChangeRangeEventParameters
945
927
  ): this;
946
928
  /**
947
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
929
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
948
930
  *
949
931
  * Fires event {@link #event:tapOnDate tapOnDate} to attached listeners.
950
932
  *
@@ -954,7 +936,7 @@ declare namespace sap {
954
936
  /**
955
937
  * Parameters to pass along with the event
956
938
  */
957
- mParameters?: sap.me.$CalendarTapOnDateEventParameters
939
+ mParameters?: sap.me.Calendar$TapOnDateEventParameters
958
940
  ): this;
959
941
  /**
960
942
  * Gets current value of property {@link #getCurrentDate currentDate}.
@@ -2066,9 +2048,7 @@ declare namespace sap {
2066
2048
  /**
2067
2049
  * The function to be called when the event occurs
2068
2050
  */
2069
- fnFunction: (
2070
- p1: sap.ui.base.Event<sap.me.$OverlapCalendarChangeDateEventParameters>
2071
- ) => void,
2051
+ fnFunction: (p1: OverlapCalendar$ChangeDateEvent) => void,
2072
2052
  /**
2073
2053
  * Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
2074
2054
  */
@@ -2088,9 +2068,7 @@ declare namespace sap {
2088
2068
  /**
2089
2069
  * The function to be called when the event occurs
2090
2070
  */
2091
- fnFunction: (
2092
- p1: sap.ui.base.Event<sap.me.$OverlapCalendarChangeDateEventParameters>
2093
- ) => void,
2071
+ fnFunction: (p1: OverlapCalendar$ChangeDateEvent) => void,
2094
2072
  /**
2095
2073
  * Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
2096
2074
  */
@@ -2115,9 +2093,7 @@ declare namespace sap {
2115
2093
  /**
2116
2094
  * The function to be called when the event occurs
2117
2095
  */
2118
- fnFunction: (
2119
- p1: sap.ui.base.Event<sap.me.$OverlapCalendarEndOfDataEventParameters>
2120
- ) => void,
2096
+ fnFunction: (p1: OverlapCalendar$EndOfDataEvent) => void,
2121
2097
  /**
2122
2098
  * Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
2123
2099
  */
@@ -2137,9 +2113,7 @@ declare namespace sap {
2137
2113
  /**
2138
2114
  * The function to be called when the event occurs
2139
2115
  */
2140
- fnFunction: (
2141
- p1: sap.ui.base.Event<sap.me.$OverlapCalendarEndOfDataEventParameters>
2142
- ) => void,
2116
+ fnFunction: (p1: OverlapCalendar$EndOfDataEvent) => void,
2143
2117
  /**
2144
2118
  * Context object to call the event handler with. Defaults to this `sap.me.OverlapCalendar` itself
2145
2119
  */
@@ -2162,9 +2136,7 @@ declare namespace sap {
2162
2136
  /**
2163
2137
  * The function to be called, when the event occurs
2164
2138
  */
2165
- fnFunction: (
2166
- p1: sap.ui.base.Event<sap.me.$OverlapCalendarChangeDateEventParameters>
2167
- ) => void,
2139
+ fnFunction: (p1: OverlapCalendar$ChangeDateEvent) => void,
2168
2140
  /**
2169
2141
  * Context object on which the given function had to be called
2170
2142
  */
@@ -2181,16 +2153,14 @@ declare namespace sap {
2181
2153
  /**
2182
2154
  * The function to be called, when the event occurs
2183
2155
  */
2184
- fnFunction: (
2185
- p1: sap.ui.base.Event<sap.me.$OverlapCalendarEndOfDataEventParameters>
2186
- ) => void,
2156
+ fnFunction: (p1: OverlapCalendar$EndOfDataEvent) => void,
2187
2157
  /**
2188
2158
  * Context object on which the given function had to be called
2189
2159
  */
2190
2160
  oListener?: object
2191
2161
  ): this;
2192
2162
  /**
2193
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2163
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2194
2164
  *
2195
2165
  * Fires event {@link #event:changeDate changeDate} to attached listeners.
2196
2166
  *
@@ -2200,10 +2170,10 @@ declare namespace sap {
2200
2170
  /**
2201
2171
  * Parameters to pass along with the event
2202
2172
  */
2203
- mParameters?: sap.me.$OverlapCalendarChangeDateEventParameters
2173
+ mParameters?: sap.me.OverlapCalendar$ChangeDateEventParameters
2204
2174
  ): this;
2205
2175
  /**
2206
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
2176
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
2207
2177
  *
2208
2178
  * Fires event {@link #event:endOfData endOfData} to attached listeners.
2209
2179
  *
@@ -2213,7 +2183,7 @@ declare namespace sap {
2213
2183
  /**
2214
2184
  * Parameters to pass along with the event
2215
2185
  */
2216
- mParameters?: sap.me.$OverlapCalendarEndOfDataEventParameters
2186
+ mParameters?: sap.me.OverlapCalendar$EndOfDataEventParameters
2217
2187
  ): this;
2218
2188
  /**
2219
2189
  *
@@ -3382,7 +3352,7 @@ declare namespace sap {
3382
3352
  oListener?: object
3383
3353
  ): this;
3384
3354
  /**
3385
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3355
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3386
3356
  *
3387
3357
  * Fires event {@link #event:collapse collapse} to attached listeners.
3388
3358
  *
@@ -3395,7 +3365,7 @@ declare namespace sap {
3395
3365
  mParameters?: object
3396
3366
  ): this;
3397
3367
  /**
3398
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3368
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3399
3369
  *
3400
3370
  * Fires event {@link #event:expand expand} to attached listeners.
3401
3371
  *
@@ -3408,7 +3378,7 @@ declare namespace sap {
3408
3378
  mParameters?: object
3409
3379
  ): this;
3410
3380
  /**
3411
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
3381
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
3412
3382
  *
3413
3383
  * Fires event {@link #event:select select} to attached listeners.
3414
3384
  *
@@ -3690,7 +3660,7 @@ declare namespace sap {
3690
3660
  }
3691
3661
  /**
3692
3662
  * @deprecated (since 1.34)
3693
- * @EXPERIMENTAL (since 1.12) - API is not yet finished and might change completely
3663
+ * @experimental (since 1.12) - API is not yet finished and might change completely
3694
3664
  *
3695
3665
  * Type of Design for the Calendar
3696
3666
  */
@@ -3706,7 +3676,7 @@ declare namespace sap {
3706
3676
  }
3707
3677
  /**
3708
3678
  * @deprecated (since 1.34)
3709
- * @EXPERIMENTAL (since 1.12) - API is not yet finished and might change completely
3679
+ * @experimental (since 1.12) - API is not yet finished and might change completely
3710
3680
  *
3711
3681
  * Type code for a calendar event
3712
3682
  */
@@ -3738,7 +3708,7 @@ declare namespace sap {
3738
3708
  }
3739
3709
  /**
3740
3710
  * @deprecated (since 1.34)
3741
- * @EXPERIMENTAL (since 1.12) - API is not yet finished and might change completely
3711
+ * @experimental (since 1.12) - API is not yet finished and might change completely
3742
3712
  *
3743
3713
  * Selection Mode for the Calendar
3744
3714
  */
@@ -3756,6 +3726,69 @@ declare namespace sap {
3756
3726
  */
3757
3727
  SINGLE = "SINGLE",
3758
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>;
3759
3792
  }
3760
3793
 
3761
3794
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.115.0
1
+ // For Library Version: 1.115.1
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -65,7 +65,7 @@ declare namespace sap {
65
65
  * Event is fired when the scanning is finished or cancelled
66
66
  */
67
67
  scanSuccess?: (
68
- oEvent: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonScanSuccessEventParameters>
68
+ oEvent: sap.ui.base.Event<sap.ndc.BarcodeScannerButton$ScanSuccessEventParameters>
69
69
  ) => void;
70
70
 
71
71
  /**
@@ -77,20 +77,20 @@ declare namespace sap {
77
77
  * Event is fired when the text in the dialog's input field is changed.
78
78
  */
79
79
  inputLiveUpdate?: (
80
- oEvent: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonInputLiveUpdateEventParameters>
80
+ oEvent: sap.ui.base.Event<sap.ndc.BarcodeScannerButton$InputLiveUpdateEventParameters>
81
81
  ) => void;
82
82
  }
83
83
 
84
- interface $BarcodeScannerButtonInputLiveUpdateEventParameters {
84
+ interface BarcodeScannerButton$InputLiveUpdateEventParameters {
85
85
  /**
86
86
  * The new value of the input field.
87
87
  */
88
88
  newValue?: string;
89
89
  }
90
90
 
91
- interface $BarcodeScannerButtonScanFailEventParameters {}
91
+ interface BarcodeScannerButton$ScanFailEventParameters {}
92
92
 
93
- interface $BarcodeScannerButtonScanSuccessEventParameters {
93
+ interface BarcodeScannerButton$ScanSuccessEventParameters {
94
94
  /**
95
95
  * The the text representation of the barcode data.
96
96
  */
@@ -108,7 +108,7 @@ declare namespace sap {
108
108
  }
109
109
 
110
110
  /**
111
- * @SINCE 1.28.0
111
+ * @since 1.28.0
112
112
  *
113
113
  * Please refer to SAP
114
114
  * Note 2402585 for information on Barcode Scanner support in native iOS and Android browsers.
@@ -431,9 +431,7 @@ declare namespace sap {
431
431
  /**
432
432
  * The function to be called when the event occurs
433
433
  */
434
- fnFunction: (
435
- p1: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonInputLiveUpdateEventParameters>
436
- ) => void,
434
+ fnFunction: (p1: BarcodeScannerButton$InputLiveUpdateEvent) => void,
437
435
  /**
438
436
  * Context object to call the event handler with. Defaults to this `sap.ndc.BarcodeScannerButton` itself
439
437
  */
@@ -454,9 +452,7 @@ declare namespace sap {
454
452
  /**
455
453
  * The function to be called when the event occurs
456
454
  */
457
- fnFunction: (
458
- p1: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonInputLiveUpdateEventParameters>
459
- ) => void,
455
+ fnFunction: (p1: BarcodeScannerButton$InputLiveUpdateEvent) => void,
460
456
  /**
461
457
  * Context object to call the event handler with. Defaults to this `sap.ndc.BarcodeScannerButton` itself
462
458
  */
@@ -526,9 +522,7 @@ declare namespace sap {
526
522
  /**
527
523
  * The function to be called when the event occurs
528
524
  */
529
- fnFunction: (
530
- p1: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonScanSuccessEventParameters>
531
- ) => void,
525
+ fnFunction: (p1: BarcodeScannerButton$ScanSuccessEvent) => void,
532
526
  /**
533
527
  * Context object to call the event handler with. Defaults to this `sap.ndc.BarcodeScannerButton` itself
534
528
  */
@@ -548,9 +542,7 @@ declare namespace sap {
548
542
  /**
549
543
  * The function to be called when the event occurs
550
544
  */
551
- fnFunction: (
552
- p1: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonScanSuccessEventParameters>
553
- ) => void,
545
+ fnFunction: (p1: BarcodeScannerButton$ScanSuccessEvent) => void,
554
546
  /**
555
547
  * Context object to call the event handler with. Defaults to this `sap.ndc.BarcodeScannerButton` itself
556
548
  */
@@ -568,9 +560,7 @@ declare namespace sap {
568
560
  /**
569
561
  * The function to be called, when the event occurs
570
562
  */
571
- fnFunction: (
572
- p1: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonInputLiveUpdateEventParameters>
573
- ) => void,
563
+ fnFunction: (p1: BarcodeScannerButton$InputLiveUpdateEvent) => void,
574
564
  /**
575
565
  * Context object on which the given function had to be called
576
566
  */
@@ -604,16 +594,14 @@ declare namespace sap {
604
594
  /**
605
595
  * The function to be called, when the event occurs
606
596
  */
607
- fnFunction: (
608
- p1: sap.ui.base.Event<sap.ndc.$BarcodeScannerButtonScanSuccessEventParameters>
609
- ) => void,
597
+ fnFunction: (p1: BarcodeScannerButton$ScanSuccessEvent) => void,
610
598
  /**
611
599
  * Context object on which the given function had to be called
612
600
  */
613
601
  oListener?: object
614
602
  ): this;
615
603
  /**
616
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
604
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
617
605
  *
618
606
  * Fires event {@link #event:inputLiveUpdate inputLiveUpdate} to attached listeners.
619
607
  *
@@ -623,10 +611,10 @@ declare namespace sap {
623
611
  /**
624
612
  * Parameters to pass along with the event
625
613
  */
626
- mParameters?: sap.ndc.$BarcodeScannerButtonInputLiveUpdateEventParameters
614
+ mParameters?: sap.ndc.BarcodeScannerButton$InputLiveUpdateEventParameters
627
615
  ): this;
628
616
  /**
629
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
617
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
630
618
  *
631
619
  * Fires event {@link #event:scanFail scanFail} to attached listeners.
632
620
  *
@@ -639,7 +627,7 @@ declare namespace sap {
639
627
  mParameters?: object
640
628
  ): this;
641
629
  /**
642
- * @PROTECTED - DO NOT USE IN APPLICATIONS (only for related classes in the framework)
630
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
643
631
  *
644
632
  * Fires event {@link #event:scanSuccess scanSuccess} to attached listeners.
645
633
  *
@@ -649,7 +637,7 @@ declare namespace sap {
649
637
  /**
650
638
  * Parameters to pass along with the event
651
639
  */
652
- mParameters?: sap.ndc.$BarcodeScannerButtonScanSuccessEventParameters
640
+ mParameters?: sap.ndc.BarcodeScannerButton$ScanSuccessEventParameters
653
641
  ): this;
654
642
  /**
655
643
  * Gets current value of property {@link #getDialogTitle dialogTitle}.
@@ -827,6 +815,30 @@ declare namespace sap {
827
815
  fZoom: float
828
816
  ): this;
829
817
  }
818
+
819
+ /**
820
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BarcodeScannerButton$InputLiveUpdateEventParameters'
821
+ * in 1.115.1 and any later releases.
822
+ */
823
+ type $BarcodeScannerButtonInputLiveUpdateEventParameters = sap.ndc.BarcodeScannerButton$InputLiveUpdateEventParameters;
824
+
825
+ type BarcodeScannerButton$InputLiveUpdateEvent = sap.ui.base.Event<BarcodeScannerButton$InputLiveUpdateEventParameters>;
826
+
827
+ /**
828
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BarcodeScannerButton$ScanFailEventParameters'
829
+ * in 1.115.1 and any later releases.
830
+ */
831
+ type $BarcodeScannerButtonScanFailEventParameters = sap.ndc.BarcodeScannerButton$ScanFailEventParameters;
832
+
833
+ type BarcodeScannerButton$ScanFailEvent = sap.ui.base.Event<BarcodeScannerButton$ScanFailEventParameters>;
834
+
835
+ /**
836
+ * @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'BarcodeScannerButton$ScanSuccessEventParameters'
837
+ * in 1.115.1 and any later releases.
838
+ */
839
+ type $BarcodeScannerButtonScanSuccessEventParameters = sap.ndc.BarcodeScannerButton$ScanSuccessEventParameters;
840
+
841
+ type BarcodeScannerButton$ScanSuccessEvent = sap.ui.base.Event<BarcodeScannerButton$ScanSuccessEventParameters>;
830
842
  }
831
843
 
832
844
  interface IUI5DefineDependencyNames {