@sapui5/ts-types 1.115.1 → 1.117.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 +4 -14
- package/package.json +1 -1
- package/types/index.d.ts +10 -3
- package/types/sap.apf.d.ts +38 -30
- package/types/sap.ca.ui.d.ts +216 -87
- package/types/sap.chart.d.ts +31 -55
- package/types/sap.collaboration.d.ts +25 -20
- package/types/sap.esh.search.ui.d.ts +117 -107
- package/types/sap.f.d.ts +229 -310
- package/types/sap.fe.core.d.ts +147 -35
- package/types/sap.fe.macros.d.ts +167 -61
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.optimisticBatch.d.ts +3 -0
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +1255 -2252
- package/types/sap.insights.d.ts +251 -11
- package/types/sap.landvisz.d.ts +92 -27
- package/types/sap.m.d.ts +2631 -3400
- package/types/sap.makit.d.ts +22 -42
- package/types/sap.me.d.ts +45 -78
- package/types/sap.ndc.d.ts +41 -39
- package/types/sap.ovp.d.ts +24 -98
- package/types/sap.rules.ui.d.ts +41 -37
- package/types/sap.sac.df.d.ts +93 -5
- package/types/sap.suite.ui.commons.d.ts +1361 -1165
- package/types/sap.suite.ui.generic.template.d.ts +5 -8
- package/types/sap.suite.ui.microchart.d.ts +88 -138
- package/types/sap.tnt.d.ts +63 -27
- package/types/sap.ui.codeeditor.d.ts +11 -21
- package/types/sap.ui.commons.d.ts +335 -530
- package/types/sap.ui.comp.d.ts +919 -1032
- package/types/sap.ui.core.d.ts +1176 -1078
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +192 -13
- package/types/sap.ui.fl.d.ts +28 -87
- package/types/sap.ui.generic.app.d.ts +28 -30
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +207 -114
- package/types/sap.ui.layout.d.ts +98 -69
- package/types/sap.ui.mdc.d.ts +7003 -6826
- package/types/sap.ui.richtexteditor.d.ts +18 -31
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -14
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +169 -229
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +288 -481
- package/types/sap.ui.ux3.d.ts +343 -602
- package/types/sap.ui.vbm.d.ts +664 -764
- package/types/sap.ui.vk.d.ts +1746 -1844
- package/types/sap.ui.vtm.d.ts +417 -386
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +894 -369
- package/types/sap.ui.webc.main.d.ts +4598 -1356
- package/types/sap.uiext.inbox.d.ts +64 -103
- package/types/sap.ushell.d.ts +285 -316
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +60 -100
- package/types/sap.viz.d.ts +677 -1089
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +2 -2
- package/types/sap.zen.crosstab.d.ts +2 -2
- package/types/sap.zen.dsh.d.ts +148 -157
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -383,9 +383,7 @@ declare namespace sap {
|
|
|
383
383
|
/**
|
|
384
384
|
* Date focus changed
|
|
385
385
|
*/
|
|
386
|
-
focus?: (
|
|
387
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.calendar.Month$FocusEventParameters>
|
|
388
|
-
) => void;
|
|
386
|
+
focus?: (oEvent: Month$FocusEvent) => void;
|
|
389
387
|
|
|
390
388
|
/**
|
|
391
389
|
* @since 1.60
|
|
@@ -397,9 +395,7 @@ declare namespace sap {
|
|
|
397
395
|
*
|
|
398
396
|
* **Note:** Works for Gregorian calendars only and when `intervalSelection` is set to `true`.
|
|
399
397
|
*/
|
|
400
|
-
weekNumberSelect?: (
|
|
401
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.calendar.Month$WeekNumberSelectEventParameters>
|
|
402
|
-
) => void;
|
|
398
|
+
weekNumberSelect?: (oEvent: Month$WeekNumberSelectEvent) => void;
|
|
403
399
|
}
|
|
404
400
|
|
|
405
401
|
interface $MonthPickerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -619,9 +615,7 @@ declare namespace sap {
|
|
|
619
615
|
/**
|
|
620
616
|
* Month focus changed
|
|
621
617
|
*/
|
|
622
|
-
focus?: (
|
|
623
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.calendar.MonthsRow$FocusEventParameters>
|
|
624
|
-
) => void;
|
|
618
|
+
focus?: (oEvent: MonthsRow$FocusEvent) => void;
|
|
625
619
|
}
|
|
626
620
|
|
|
627
621
|
interface $TimesRowSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -755,9 +749,7 @@ declare namespace sap {
|
|
|
755
749
|
/**
|
|
756
750
|
* Time focus changed
|
|
757
751
|
*/
|
|
758
|
-
focus?: (
|
|
759
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.calendar.TimesRow$FocusEventParameters>
|
|
760
|
-
) => void;
|
|
752
|
+
focus?: (oEvent: TimesRow$FocusEvent) => void;
|
|
761
753
|
}
|
|
762
754
|
|
|
763
755
|
interface $YearPickerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -5492,141 +5484,90 @@ declare namespace sap {
|
|
|
5492
5484
|
): this;
|
|
5493
5485
|
}
|
|
5494
5486
|
|
|
5495
|
-
|
|
5496
|
-
|
|
5497
|
-
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
|
|
5501
|
-
|
|
5502
|
-
|
|
5503
|
-
|
|
5504
|
-
|
|
5505
|
-
|
|
5506
|
-
|
|
5507
|
-
|
|
5508
|
-
|
|
5509
|
-
|
|
5510
|
-
|
|
5511
|
-
|
|
5512
|
-
|
|
5513
|
-
|
|
5514
|
-
|
|
5515
|
-
type $
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
type
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5532
|
-
|
|
5533
|
-
|
|
5534
|
-
|
|
5535
|
-
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
|
|
5542
|
-
|
|
5543
|
-
|
|
5544
|
-
|
|
5545
|
-
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
|
|
5549
|
-
|
|
5550
|
-
|
|
5551
|
-
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
type $
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
type
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
|
|
5570
|
-
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
type $MonthPickerSelectEventParameters = sap.ui.unified.calendar.MonthPicker$SelectEventParameters;
|
|
5580
|
-
|
|
5581
|
-
type MonthPicker$SelectEvent = sap.ui.base.Event<MonthPicker$SelectEventParameters>;
|
|
5582
|
-
|
|
5583
|
-
/**
|
|
5584
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthsRow$FocusEventParameters'
|
|
5585
|
-
* in 1.115.1 and any later releases.
|
|
5586
|
-
*/
|
|
5587
|
-
type $MonthsRowFocusEventParameters = sap.ui.unified.calendar.MonthsRow$FocusEventParameters;
|
|
5588
|
-
|
|
5589
|
-
type MonthsRow$FocusEvent = sap.ui.base.Event<MonthsRow$FocusEventParameters>;
|
|
5590
|
-
|
|
5591
|
-
/**
|
|
5592
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MonthsRow$SelectEventParameters'
|
|
5593
|
-
* in 1.115.1 and any later releases.
|
|
5594
|
-
*/
|
|
5595
|
-
type $MonthsRowSelectEventParameters = sap.ui.unified.calendar.MonthsRow$SelectEventParameters;
|
|
5596
|
-
|
|
5597
|
-
type MonthsRow$SelectEvent = sap.ui.base.Event<MonthsRow$SelectEventParameters>;
|
|
5598
|
-
|
|
5599
|
-
/**
|
|
5600
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimesRow$FocusEventParameters'
|
|
5601
|
-
* in 1.115.1 and any later releases.
|
|
5602
|
-
*/
|
|
5603
|
-
type $TimesRowFocusEventParameters = sap.ui.unified.calendar.TimesRow$FocusEventParameters;
|
|
5604
|
-
|
|
5605
|
-
type TimesRow$FocusEvent = sap.ui.base.Event<TimesRow$FocusEventParameters>;
|
|
5606
|
-
|
|
5607
|
-
/**
|
|
5608
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TimesRow$SelectEventParameters'
|
|
5609
|
-
* in 1.115.1 and any later releases.
|
|
5610
|
-
*/
|
|
5611
|
-
type $TimesRowSelectEventParameters = sap.ui.unified.calendar.TimesRow$SelectEventParameters;
|
|
5612
|
-
|
|
5613
|
-
type TimesRow$SelectEvent = sap.ui.base.Event<TimesRow$SelectEventParameters>;
|
|
5614
|
-
|
|
5615
|
-
/**
|
|
5616
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'YearPicker$PageChangeEventParameters'
|
|
5617
|
-
* in 1.115.1 and any later releases.
|
|
5618
|
-
*/
|
|
5619
|
-
type $YearPickerPageChangeEventParameters = sap.ui.unified.calendar.YearPicker$PageChangeEventParameters;
|
|
5620
|
-
|
|
5621
|
-
type YearPicker$PageChangeEvent = sap.ui.base.Event<YearPicker$PageChangeEventParameters>;
|
|
5622
|
-
|
|
5623
|
-
/**
|
|
5624
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'YearPicker$SelectEventParameters'
|
|
5625
|
-
* in 1.115.1 and any later releases.
|
|
5626
|
-
*/
|
|
5627
|
-
type $YearPickerSelectEventParameters = sap.ui.unified.calendar.YearPicker$SelectEventParameters;
|
|
5628
|
-
|
|
5629
|
-
type YearPicker$SelectEvent = sap.ui.base.Event<YearPicker$SelectEventParameters>;
|
|
5487
|
+
type Header$PressButton0Event = sap.ui.base.Event<
|
|
5488
|
+
Header$PressButton0EventParameters,
|
|
5489
|
+
Header
|
|
5490
|
+
>;
|
|
5491
|
+
|
|
5492
|
+
type Header$PressButton1Event = sap.ui.base.Event<
|
|
5493
|
+
Header$PressButton1EventParameters,
|
|
5494
|
+
Header
|
|
5495
|
+
>;
|
|
5496
|
+
|
|
5497
|
+
type Header$PressButton2Event = sap.ui.base.Event<
|
|
5498
|
+
Header$PressButton2EventParameters,
|
|
5499
|
+
Header
|
|
5500
|
+
>;
|
|
5501
|
+
|
|
5502
|
+
type Header$PressCurrentDateEvent = sap.ui.base.Event<
|
|
5503
|
+
Header$PressCurrentDateEventParameters,
|
|
5504
|
+
Header
|
|
5505
|
+
>;
|
|
5506
|
+
|
|
5507
|
+
type Header$PressNextEvent = sap.ui.base.Event<
|
|
5508
|
+
Header$PressNextEventParameters,
|
|
5509
|
+
Header
|
|
5510
|
+
>;
|
|
5511
|
+
|
|
5512
|
+
type Header$PressPreviousEvent = sap.ui.base.Event<
|
|
5513
|
+
Header$PressPreviousEventParameters,
|
|
5514
|
+
Header
|
|
5515
|
+
>;
|
|
5516
|
+
|
|
5517
|
+
type Month$FocusEvent = sap.ui.base.Event<
|
|
5518
|
+
Month$FocusEventParameters,
|
|
5519
|
+
Month
|
|
5520
|
+
>;
|
|
5521
|
+
|
|
5522
|
+
type Month$SelectEvent = sap.ui.base.Event<
|
|
5523
|
+
Month$SelectEventParameters,
|
|
5524
|
+
Month
|
|
5525
|
+
>;
|
|
5526
|
+
|
|
5527
|
+
type Month$WeekNumberSelectEvent = sap.ui.base.Event<
|
|
5528
|
+
Month$WeekNumberSelectEventParameters,
|
|
5529
|
+
Month
|
|
5530
|
+
>;
|
|
5531
|
+
|
|
5532
|
+
type MonthPicker$PageChangeEvent = sap.ui.base.Event<
|
|
5533
|
+
MonthPicker$PageChangeEventParameters,
|
|
5534
|
+
MonthPicker
|
|
5535
|
+
>;
|
|
5536
|
+
|
|
5537
|
+
type MonthPicker$SelectEvent = sap.ui.base.Event<
|
|
5538
|
+
MonthPicker$SelectEventParameters,
|
|
5539
|
+
MonthPicker
|
|
5540
|
+
>;
|
|
5541
|
+
|
|
5542
|
+
type MonthsRow$FocusEvent = sap.ui.base.Event<
|
|
5543
|
+
MonthsRow$FocusEventParameters,
|
|
5544
|
+
MonthsRow
|
|
5545
|
+
>;
|
|
5546
|
+
|
|
5547
|
+
type MonthsRow$SelectEvent = sap.ui.base.Event<
|
|
5548
|
+
MonthsRow$SelectEventParameters,
|
|
5549
|
+
MonthsRow
|
|
5550
|
+
>;
|
|
5551
|
+
|
|
5552
|
+
type TimesRow$FocusEvent = sap.ui.base.Event<
|
|
5553
|
+
TimesRow$FocusEventParameters,
|
|
5554
|
+
TimesRow
|
|
5555
|
+
>;
|
|
5556
|
+
|
|
5557
|
+
type TimesRow$SelectEvent = sap.ui.base.Event<
|
|
5558
|
+
TimesRow$SelectEventParameters,
|
|
5559
|
+
TimesRow
|
|
5560
|
+
>;
|
|
5561
|
+
|
|
5562
|
+
type YearPicker$PageChangeEvent = sap.ui.base.Event<
|
|
5563
|
+
YearPicker$PageChangeEventParameters,
|
|
5564
|
+
YearPicker
|
|
5565
|
+
>;
|
|
5566
|
+
|
|
5567
|
+
type YearPicker$SelectEvent = sap.ui.base.Event<
|
|
5568
|
+
YearPicker$SelectEventParameters,
|
|
5569
|
+
YearPicker
|
|
5570
|
+
>;
|
|
5630
5571
|
}
|
|
5631
5572
|
/**
|
|
5632
5573
|
* Marker interface for controls that process instances of `window.Blob`, such as `window.File`. The implementation
|
|
@@ -5916,9 +5857,7 @@ declare namespace sap {
|
|
|
5916
5857
|
*
|
|
5917
5858
|
* **Note** Works for Gregorian calendars only and when `intervalSelection` is set to 'true'.
|
|
5918
5859
|
*/
|
|
5919
|
-
weekNumberSelect?: (
|
|
5920
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.Calendar$WeekNumberSelectEventParameters>
|
|
5921
|
-
) => void;
|
|
5860
|
+
weekNumberSelect?: (oEvent: Calendar$WeekNumberSelectEvent) => void;
|
|
5922
5861
|
}
|
|
5923
5862
|
|
|
5924
5863
|
interface $CalendarAppointmentSettings
|
|
@@ -6503,9 +6442,7 @@ declare namespace sap {
|
|
|
6503
6442
|
/**
|
|
6504
6443
|
* Fired if an appointment was selected
|
|
6505
6444
|
*/
|
|
6506
|
-
select?: (
|
|
6507
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.CalendarRow$SelectEventParameters>
|
|
6508
|
-
) => void;
|
|
6445
|
+
select?: (oEvent: CalendarRow$SelectEvent) => void;
|
|
6509
6446
|
|
|
6510
6447
|
/**
|
|
6511
6448
|
* `startDate` was changed while navigating in `CalendarRow`
|
|
@@ -6516,18 +6453,14 @@ declare namespace sap {
|
|
|
6516
6453
|
* The `CalendarRow` should be left while navigating. (Arrow up or arrow down.) The caller should determine
|
|
6517
6454
|
* the next control to be focused
|
|
6518
6455
|
*/
|
|
6519
|
-
leaveRow?: (
|
|
6520
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.CalendarRow$LeaveRowEventParameters>
|
|
6521
|
-
) => void;
|
|
6456
|
+
leaveRow?: (oEvent: CalendarRow$LeaveRowEvent) => void;
|
|
6522
6457
|
|
|
6523
6458
|
/**
|
|
6524
6459
|
* @since 1.38.0
|
|
6525
6460
|
*
|
|
6526
6461
|
* Fired if an interval was selected
|
|
6527
6462
|
*/
|
|
6528
|
-
intervalSelect?: (
|
|
6529
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.CalendarRow$IntervalSelectEventParameters>
|
|
6530
|
-
) => void;
|
|
6463
|
+
intervalSelect?: (oEvent: CalendarRow$IntervalSelectEvent) => void;
|
|
6531
6464
|
}
|
|
6532
6465
|
|
|
6533
6466
|
interface $CalendarTimeIntervalSettings
|
|
@@ -6726,9 +6659,7 @@ declare namespace sap {
|
|
|
6726
6659
|
*
|
|
6727
6660
|
* **Note:** When the user action is mouse dragging, the `change` event fires on the mouseup event.
|
|
6728
6661
|
*/
|
|
6729
|
-
change?: (
|
|
6730
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.ColorPicker$ChangeEventParameters>
|
|
6731
|
-
) => void;
|
|
6662
|
+
change?: (oEvent: ColorPicker$ChangeEvent) => void;
|
|
6732
6663
|
|
|
6733
6664
|
/**
|
|
6734
6665
|
* @since 1.48.0
|
|
@@ -6737,9 +6668,7 @@ declare namespace sap {
|
|
|
6737
6668
|
*
|
|
6738
6669
|
* **Note:** When the user action is mouse move, the `liveChange` event is fired during the mousedown event.
|
|
6739
6670
|
*/
|
|
6740
|
-
liveChange?: (
|
|
6741
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.ColorPicker$LiveChangeEventParameters>
|
|
6742
|
-
) => void;
|
|
6671
|
+
liveChange?: (oEvent: ColorPicker$LiveChangeEvent) => void;
|
|
6743
6672
|
}
|
|
6744
6673
|
|
|
6745
6674
|
interface $ColorPickerPopoverSettings
|
|
@@ -6781,18 +6710,14 @@ declare namespace sap {
|
|
|
6781
6710
|
*
|
|
6782
6711
|
* Fired when the submit button of the popover is clicked.
|
|
6783
6712
|
*/
|
|
6784
|
-
change?: (
|
|
6785
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.ColorPickerPopover$ChangeEventParameters>
|
|
6786
|
-
) => void;
|
|
6713
|
+
change?: (oEvent: ColorPickerPopover$ChangeEvent) => void;
|
|
6787
6714
|
|
|
6788
6715
|
/**
|
|
6789
6716
|
* @since 1.85
|
|
6790
6717
|
*
|
|
6791
6718
|
* Fired when the value is changed by user interaction in the internal ColorPicker
|
|
6792
6719
|
*/
|
|
6793
|
-
liveChange?: (
|
|
6794
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.ColorPickerPopover$LiveChangeEventParameters>
|
|
6795
|
-
) => void;
|
|
6720
|
+
liveChange?: (oEvent: ColorPickerPopover$LiveChangeEvent) => void;
|
|
6796
6721
|
}
|
|
6797
6722
|
|
|
6798
6723
|
interface $ContentSwitcherSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -7261,9 +7186,7 @@ declare namespace sap {
|
|
|
7261
7186
|
* **Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in
|
|
7262
7187
|
* Chrome browser when the Cancel button of the uploads window is pressed.
|
|
7263
7188
|
*/
|
|
7264
|
-
change?: (
|
|
7265
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$ChangeEventParameters>
|
|
7266
|
-
) => void;
|
|
7189
|
+
change?: (oEvent: FileUploader$ChangeEvent) => void;
|
|
7267
7190
|
|
|
7268
7191
|
/**
|
|
7269
7192
|
* Event is fired as soon as the upload request is completed (either successful or unsuccessful).
|
|
@@ -7272,31 +7195,23 @@ declare namespace sap {
|
|
|
7272
7195
|
* progress of the upload can be monitored by listening to the `uploadProgress` event. However, this covers
|
|
7273
7196
|
* only the client side of the upload process and does not give any success status from the server.
|
|
7274
7197
|
*/
|
|
7275
|
-
uploadComplete?: (
|
|
7276
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$UploadCompleteEventParameters>
|
|
7277
|
-
) => void;
|
|
7198
|
+
uploadComplete?: (oEvent: FileUploader$UploadCompleteEvent) => void;
|
|
7278
7199
|
|
|
7279
7200
|
/**
|
|
7280
7201
|
* Event is fired when the type of a file does not match the `mimeType` or `fileType` property.
|
|
7281
7202
|
*/
|
|
7282
|
-
typeMissmatch?: (
|
|
7283
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$TypeMissmatchEventParameters>
|
|
7284
|
-
) => void;
|
|
7203
|
+
typeMissmatch?: (oEvent: FileUploader$TypeMissmatchEvent) => void;
|
|
7285
7204
|
|
|
7286
7205
|
/**
|
|
7287
7206
|
* Event is fired when the size of a file is above the `maximumFileSize` property. This event is not supported
|
|
7288
7207
|
* by Internet Explorer 9 (same restriction as for the property `maximumFileSize`).
|
|
7289
7208
|
*/
|
|
7290
|
-
fileSizeExceed?: (
|
|
7291
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$FileSizeExceedEventParameters>
|
|
7292
|
-
) => void;
|
|
7209
|
+
fileSizeExceed?: (oEvent: FileUploader$FileSizeExceedEvent) => void;
|
|
7293
7210
|
|
|
7294
7211
|
/**
|
|
7295
7212
|
* Event is fired when the size of the file is 0
|
|
7296
7213
|
*/
|
|
7297
|
-
fileEmpty?: (
|
|
7298
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$FileEmptyEventParameters>
|
|
7299
|
-
) => void;
|
|
7214
|
+
fileEmpty?: (oEvent: FileUploader$FileEmptyEvent) => void;
|
|
7300
7215
|
|
|
7301
7216
|
/**
|
|
7302
7217
|
* Event is fired when the file is allowed for upload on client side.
|
|
@@ -7314,9 +7229,7 @@ declare namespace sap {
|
|
|
7314
7229
|
* This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
|
|
7315
7230
|
* Internet Explorer 9.
|
|
7316
7231
|
*/
|
|
7317
|
-
uploadProgress?: (
|
|
7318
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$UploadProgressEventParameters>
|
|
7319
|
-
) => void;
|
|
7232
|
+
uploadProgress?: (oEvent: FileUploader$UploadProgressEvent) => void;
|
|
7320
7233
|
|
|
7321
7234
|
/**
|
|
7322
7235
|
* @since 1.24.0
|
|
@@ -7326,9 +7239,7 @@ declare namespace sap {
|
|
|
7326
7239
|
* This event is only supported with property `sendXHR` set to true, i.e. the event is not supported in
|
|
7327
7240
|
* Internet Explorer 9.
|
|
7328
7241
|
*/
|
|
7329
|
-
uploadAborted?: (
|
|
7330
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$UploadAbortedEventParameters>
|
|
7331
|
-
) => void;
|
|
7242
|
+
uploadAborted?: (oEvent: FileUploader$UploadAbortedEvent) => void;
|
|
7332
7243
|
|
|
7333
7244
|
/**
|
|
7334
7245
|
* @since 1.24.0
|
|
@@ -7337,7 +7248,7 @@ declare namespace sap {
|
|
|
7337
7248
|
* property.
|
|
7338
7249
|
*/
|
|
7339
7250
|
filenameLengthExceed?: (
|
|
7340
|
-
oEvent:
|
|
7251
|
+
oEvent: FileUploader$FilenameLengthExceedEvent
|
|
7341
7252
|
) => void;
|
|
7342
7253
|
|
|
7343
7254
|
/**
|
|
@@ -7345,9 +7256,7 @@ declare namespace sap {
|
|
|
7345
7256
|
*
|
|
7346
7257
|
* Event is fired before an upload is started.
|
|
7347
7258
|
*/
|
|
7348
|
-
uploadStart?: (
|
|
7349
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.FileUploader$UploadStartEventParameters>
|
|
7350
|
-
) => void;
|
|
7259
|
+
uploadStart?: (oEvent: FileUploader$UploadStartEvent) => void;
|
|
7351
7260
|
|
|
7352
7261
|
/**
|
|
7353
7262
|
* @since 1.102.0
|
|
@@ -7461,9 +7370,7 @@ declare namespace sap {
|
|
|
7461
7370
|
* one of its direct or indirect submenus. **Note:** There is also a select event available for each single
|
|
7462
7371
|
* menu item. This event and the event of the menu items are redundant.
|
|
7463
7372
|
*/
|
|
7464
|
-
itemSelect?: (
|
|
7465
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.Menu$ItemSelectEventParameters>
|
|
7466
|
-
) => void;
|
|
7373
|
+
itemSelect?: (oEvent: Menu$ItemSelectEvent) => void;
|
|
7467
7374
|
}
|
|
7468
7375
|
|
|
7469
7376
|
interface $MenuItemSettings extends sap.ui.unified.$MenuItemBaseSettings {
|
|
@@ -7524,9 +7431,7 @@ declare namespace sap {
|
|
|
7524
7431
|
* a submenu. In general, applications must not handle event in this case because the user selection opens
|
|
7525
7432
|
* the sub menu.
|
|
7526
7433
|
*/
|
|
7527
|
-
select?: (
|
|
7528
|
-
oEvent: sap.ui.base.Event<sap.ui.unified.MenuItemBase$SelectEventParameters>
|
|
7529
|
-
) => void;
|
|
7434
|
+
select?: (oEvent: MenuItemBase$SelectEvent) => void;
|
|
7530
7435
|
}
|
|
7531
7436
|
|
|
7532
7437
|
interface $MenuTextFieldItemSettings
|
|
@@ -17505,6 +17410,12 @@ declare namespace sap {
|
|
|
17505
17410
|
*/
|
|
17506
17411
|
iIndex: int
|
|
17507
17412
|
): this;
|
|
17413
|
+
/**
|
|
17414
|
+
* Returns whether the `Menu` is currently open.
|
|
17415
|
+
*
|
|
17416
|
+
* @returns true if menu is open
|
|
17417
|
+
*/
|
|
17418
|
+
isOpen(): boolean;
|
|
17508
17419
|
/**
|
|
17509
17420
|
* Opens the menu at the specified position.
|
|
17510
17421
|
*
|
|
@@ -20777,285 +20688,181 @@ declare namespace sap {
|
|
|
20777
20688
|
*/
|
|
20778
20689
|
WorkingDay = "WorkingDay",
|
|
20779
20690
|
}
|
|
20780
|
-
/**
|
|
20781
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$CancelEventParameters'
|
|
20782
|
-
* in 1.115.1 and any later releases.
|
|
20783
|
-
*/
|
|
20784
|
-
type $CalendarCancelEventParameters = sap.ui.unified.Calendar$CancelEventParameters;
|
|
20785
|
-
|
|
20786
|
-
type Calendar$CancelEvent = sap.ui.base.Event<Calendar$CancelEventParameters>;
|
|
20787
|
-
|
|
20788
|
-
/**
|
|
20789
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$SelectEventParameters'
|
|
20790
|
-
* in 1.115.1 and any later releases.
|
|
20791
|
-
*/
|
|
20792
|
-
type $CalendarSelectEventParameters = sap.ui.unified.Calendar$SelectEventParameters;
|
|
20793
|
-
|
|
20794
|
-
type Calendar$SelectEvent = sap.ui.base.Event<Calendar$SelectEventParameters>;
|
|
20795
|
-
|
|
20796
|
-
/**
|
|
20797
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$StartDateChangeEventParameters'
|
|
20798
|
-
* in 1.115.1 and any later releases.
|
|
20799
|
-
*/
|
|
20800
|
-
type $CalendarStartDateChangeEventParameters = sap.ui.unified.Calendar$StartDateChangeEventParameters;
|
|
20801
|
-
|
|
20802
|
-
type Calendar$StartDateChangeEvent = sap.ui.base.Event<Calendar$StartDateChangeEventParameters>;
|
|
20803
|
-
|
|
20804
|
-
/**
|
|
20805
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Calendar$WeekNumberSelectEventParameters'
|
|
20806
|
-
* in 1.115.1 and any later releases.
|
|
20807
|
-
*/
|
|
20808
|
-
type $CalendarWeekNumberSelectEventParameters = sap.ui.unified.Calendar$WeekNumberSelectEventParameters;
|
|
20809
|
-
|
|
20810
|
-
type Calendar$WeekNumberSelectEvent = sap.ui.base.Event<Calendar$WeekNumberSelectEventParameters>;
|
|
20811
|
-
|
|
20812
|
-
/**
|
|
20813
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$CancelEventParameters'
|
|
20814
|
-
* in 1.115.1 and any later releases.
|
|
20815
|
-
*/
|
|
20816
|
-
type $CalendarMonthIntervalCancelEventParameters = sap.ui.unified.CalendarMonthInterval$CancelEventParameters;
|
|
20817
|
-
|
|
20818
|
-
type CalendarMonthInterval$CancelEvent = sap.ui.base.Event<CalendarMonthInterval$CancelEventParameters>;
|
|
20819
|
-
|
|
20820
|
-
/**
|
|
20821
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$SelectEventParameters'
|
|
20822
|
-
* in 1.115.1 and any later releases.
|
|
20823
|
-
*/
|
|
20824
|
-
type $CalendarMonthIntervalSelectEventParameters = sap.ui.unified.CalendarMonthInterval$SelectEventParameters;
|
|
20825
|
-
|
|
20826
|
-
type CalendarMonthInterval$SelectEvent = sap.ui.base.Event<CalendarMonthInterval$SelectEventParameters>;
|
|
20827
|
-
|
|
20828
|
-
/**
|
|
20829
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarMonthInterval$StartDateChangeEventParameters'
|
|
20830
|
-
* in 1.115.1 and any later releases.
|
|
20831
|
-
*/
|
|
20832
|
-
type $CalendarMonthIntervalStartDateChangeEventParameters = sap.ui.unified.CalendarMonthInterval$StartDateChangeEventParameters;
|
|
20833
|
-
|
|
20834
|
-
type CalendarMonthInterval$StartDateChangeEvent = sap.ui.base.Event<CalendarMonthInterval$StartDateChangeEventParameters>;
|
|
20835
|
-
|
|
20836
|
-
/**
|
|
20837
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$IntervalSelectEventParameters'
|
|
20838
|
-
* in 1.115.1 and any later releases.
|
|
20839
|
-
*/
|
|
20840
|
-
type $CalendarRowIntervalSelectEventParameters = sap.ui.unified.CalendarRow$IntervalSelectEventParameters;
|
|
20841
|
-
|
|
20842
|
-
type CalendarRow$IntervalSelectEvent = sap.ui.base.Event<CalendarRow$IntervalSelectEventParameters>;
|
|
20843
|
-
|
|
20844
|
-
/**
|
|
20845
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$LeaveRowEventParameters'
|
|
20846
|
-
* in 1.115.1 and any later releases.
|
|
20847
|
-
*/
|
|
20848
|
-
type $CalendarRowLeaveRowEventParameters = sap.ui.unified.CalendarRow$LeaveRowEventParameters;
|
|
20849
|
-
|
|
20850
|
-
type CalendarRow$LeaveRowEvent = sap.ui.base.Event<CalendarRow$LeaveRowEventParameters>;
|
|
20851
|
-
|
|
20852
|
-
/**
|
|
20853
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$SelectEventParameters'
|
|
20854
|
-
* in 1.115.1 and any later releases.
|
|
20855
|
-
*/
|
|
20856
|
-
type $CalendarRowSelectEventParameters = sap.ui.unified.CalendarRow$SelectEventParameters;
|
|
20857
|
-
|
|
20858
|
-
type CalendarRow$SelectEvent = sap.ui.base.Event<CalendarRow$SelectEventParameters>;
|
|
20859
|
-
|
|
20860
|
-
/**
|
|
20861
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarRow$StartDateChangeEventParameters'
|
|
20862
|
-
* in 1.115.1 and any later releases.
|
|
20863
|
-
*/
|
|
20864
|
-
type $CalendarRowStartDateChangeEventParameters = sap.ui.unified.CalendarRow$StartDateChangeEventParameters;
|
|
20865
|
-
|
|
20866
|
-
type CalendarRow$StartDateChangeEvent = sap.ui.base.Event<CalendarRow$StartDateChangeEventParameters>;
|
|
20867
|
-
|
|
20868
|
-
/**
|
|
20869
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$CancelEventParameters'
|
|
20870
|
-
* in 1.115.1 and any later releases.
|
|
20871
|
-
*/
|
|
20872
|
-
type $CalendarTimeIntervalCancelEventParameters = sap.ui.unified.CalendarTimeInterval$CancelEventParameters;
|
|
20873
|
-
|
|
20874
|
-
type CalendarTimeInterval$CancelEvent = sap.ui.base.Event<CalendarTimeInterval$CancelEventParameters>;
|
|
20875
|
-
|
|
20876
|
-
/**
|
|
20877
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$SelectEventParameters'
|
|
20878
|
-
* in 1.115.1 and any later releases.
|
|
20879
|
-
*/
|
|
20880
|
-
type $CalendarTimeIntervalSelectEventParameters = sap.ui.unified.CalendarTimeInterval$SelectEventParameters;
|
|
20881
|
-
|
|
20882
|
-
type CalendarTimeInterval$SelectEvent = sap.ui.base.Event<CalendarTimeInterval$SelectEventParameters>;
|
|
20883
|
-
|
|
20884
|
-
/**
|
|
20885
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'CalendarTimeInterval$StartDateChangeEventParameters'
|
|
20886
|
-
* in 1.115.1 and any later releases.
|
|
20887
|
-
*/
|
|
20888
|
-
type $CalendarTimeIntervalStartDateChangeEventParameters = sap.ui.unified.CalendarTimeInterval$StartDateChangeEventParameters;
|
|
20889
|
-
|
|
20890
|
-
type CalendarTimeInterval$StartDateChangeEvent = sap.ui.base.Event<CalendarTimeInterval$StartDateChangeEventParameters>;
|
|
20891
|
-
|
|
20892
|
-
/**
|
|
20893
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPicker$ChangeEventParameters'
|
|
20894
|
-
* in 1.115.1 and any later releases.
|
|
20895
|
-
*/
|
|
20896
|
-
type $ColorPickerChangeEventParameters = sap.ui.unified.ColorPicker$ChangeEventParameters;
|
|
20897
|
-
|
|
20898
|
-
type ColorPicker$ChangeEvent = sap.ui.base.Event<ColorPicker$ChangeEventParameters>;
|
|
20899
|
-
|
|
20900
|
-
/**
|
|
20901
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPicker$LiveChangeEventParameters'
|
|
20902
|
-
* in 1.115.1 and any later releases.
|
|
20903
|
-
*/
|
|
20904
|
-
type $ColorPickerLiveChangeEventParameters = sap.ui.unified.ColorPicker$LiveChangeEventParameters;
|
|
20905
|
-
|
|
20906
|
-
type ColorPicker$LiveChangeEvent = sap.ui.base.Event<ColorPicker$LiveChangeEventParameters>;
|
|
20907
|
-
|
|
20908
|
-
/**
|
|
20909
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPickerPopover$ChangeEventParameters'
|
|
20910
|
-
* in 1.115.1 and any later releases.
|
|
20911
|
-
*/
|
|
20912
|
-
type $ColorPickerPopoverChangeEventParameters = sap.ui.unified.ColorPickerPopover$ChangeEventParameters;
|
|
20913
|
-
|
|
20914
|
-
type ColorPickerPopover$ChangeEvent = sap.ui.base.Event<ColorPickerPopover$ChangeEventParameters>;
|
|
20915
|
-
|
|
20916
|
-
/**
|
|
20917
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ColorPickerPopover$LiveChangeEventParameters'
|
|
20918
|
-
* in 1.115.1 and any later releases.
|
|
20919
|
-
*/
|
|
20920
|
-
type $ColorPickerPopoverLiveChangeEventParameters = sap.ui.unified.ColorPickerPopover$LiveChangeEventParameters;
|
|
20921
|
-
|
|
20922
|
-
type ColorPickerPopover$LiveChangeEvent = sap.ui.base.Event<ColorPickerPopover$LiveChangeEventParameters>;
|
|
20923
|
-
|
|
20924
|
-
/**
|
|
20925
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$AfterDialogCloseEventParameters'
|
|
20926
|
-
* in 1.115.1 and any later releases.
|
|
20927
|
-
*/
|
|
20928
|
-
type $FileUploaderAfterDialogCloseEventParameters = sap.ui.unified.FileUploader$AfterDialogCloseEventParameters;
|
|
20929
|
-
|
|
20930
|
-
type FileUploader$AfterDialogCloseEvent = sap.ui.base.Event<FileUploader$AfterDialogCloseEventParameters>;
|
|
20931
|
-
|
|
20932
|
-
/**
|
|
20933
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$BeforeDialogOpenEventParameters'
|
|
20934
|
-
* in 1.115.1 and any later releases.
|
|
20935
|
-
*/
|
|
20936
|
-
type $FileUploaderBeforeDialogOpenEventParameters = sap.ui.unified.FileUploader$BeforeDialogOpenEventParameters;
|
|
20937
|
-
|
|
20938
|
-
type FileUploader$BeforeDialogOpenEvent = sap.ui.base.Event<FileUploader$BeforeDialogOpenEventParameters>;
|
|
20939
|
-
|
|
20940
|
-
/**
|
|
20941
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$ChangeEventParameters'
|
|
20942
|
-
* in 1.115.1 and any later releases.
|
|
20943
|
-
*/
|
|
20944
|
-
type $FileUploaderChangeEventParameters = sap.ui.unified.FileUploader$ChangeEventParameters;
|
|
20945
|
-
|
|
20946
|
-
type FileUploader$ChangeEvent = sap.ui.base.Event<FileUploader$ChangeEventParameters>;
|
|
20947
|
-
|
|
20948
|
-
/**
|
|
20949
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileAllowedEventParameters'
|
|
20950
|
-
* in 1.115.1 and any later releases.
|
|
20951
|
-
*/
|
|
20952
|
-
type $FileUploaderFileAllowedEventParameters = sap.ui.unified.FileUploader$FileAllowedEventParameters;
|
|
20953
|
-
|
|
20954
|
-
type FileUploader$FileAllowedEvent = sap.ui.base.Event<FileUploader$FileAllowedEventParameters>;
|
|
20955
|
-
|
|
20956
|
-
/**
|
|
20957
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileEmptyEventParameters'
|
|
20958
|
-
* in 1.115.1 and any later releases.
|
|
20959
|
-
*/
|
|
20960
|
-
type $FileUploaderFileEmptyEventParameters = sap.ui.unified.FileUploader$FileEmptyEventParameters;
|
|
20961
|
-
|
|
20962
|
-
type FileUploader$FileEmptyEvent = sap.ui.base.Event<FileUploader$FileEmptyEventParameters>;
|
|
20963
|
-
|
|
20964
|
-
/**
|
|
20965
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FilenameLengthExceedEventParameters'
|
|
20966
|
-
* in 1.115.1 and any later releases.
|
|
20967
|
-
*/
|
|
20968
|
-
type $FileUploaderFilenameLengthExceedEventParameters = sap.ui.unified.FileUploader$FilenameLengthExceedEventParameters;
|
|
20969
|
-
|
|
20970
|
-
type FileUploader$FilenameLengthExceedEvent = sap.ui.base.Event<FileUploader$FilenameLengthExceedEventParameters>;
|
|
20971
|
-
|
|
20972
|
-
/**
|
|
20973
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$FileSizeExceedEventParameters'
|
|
20974
|
-
* in 1.115.1 and any later releases.
|
|
20975
|
-
*/
|
|
20976
|
-
type $FileUploaderFileSizeExceedEventParameters = sap.ui.unified.FileUploader$FileSizeExceedEventParameters;
|
|
20977
|
-
|
|
20978
|
-
type FileUploader$FileSizeExceedEvent = sap.ui.base.Event<FileUploader$FileSizeExceedEventParameters>;
|
|
20979
|
-
|
|
20980
|
-
/**
|
|
20981
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$TypeMissmatchEventParameters'
|
|
20982
|
-
* in 1.115.1 and any later releases.
|
|
20983
|
-
*/
|
|
20984
|
-
type $FileUploaderTypeMissmatchEventParameters = sap.ui.unified.FileUploader$TypeMissmatchEventParameters;
|
|
20985
|
-
|
|
20986
|
-
type FileUploader$TypeMissmatchEvent = sap.ui.base.Event<FileUploader$TypeMissmatchEventParameters>;
|
|
20987
|
-
|
|
20988
|
-
/**
|
|
20989
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadAbortedEventParameters'
|
|
20990
|
-
* in 1.115.1 and any later releases.
|
|
20991
|
-
*/
|
|
20992
|
-
type $FileUploaderUploadAbortedEventParameters = sap.ui.unified.FileUploader$UploadAbortedEventParameters;
|
|
20993
|
-
|
|
20994
|
-
type FileUploader$UploadAbortedEvent = sap.ui.base.Event<FileUploader$UploadAbortedEventParameters>;
|
|
20995
|
-
|
|
20996
|
-
/**
|
|
20997
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadCompleteEventParameters'
|
|
20998
|
-
* in 1.115.1 and any later releases.
|
|
20999
|
-
*/
|
|
21000
|
-
type $FileUploaderUploadCompleteEventParameters = sap.ui.unified.FileUploader$UploadCompleteEventParameters;
|
|
21001
|
-
|
|
21002
|
-
type FileUploader$UploadCompleteEvent = sap.ui.base.Event<FileUploader$UploadCompleteEventParameters>;
|
|
21003
|
-
|
|
21004
|
-
/**
|
|
21005
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadProgressEventParameters'
|
|
21006
|
-
* in 1.115.1 and any later releases.
|
|
21007
|
-
*/
|
|
21008
|
-
type $FileUploaderUploadProgressEventParameters = sap.ui.unified.FileUploader$UploadProgressEventParameters;
|
|
21009
|
-
|
|
21010
|
-
type FileUploader$UploadProgressEvent = sap.ui.base.Event<FileUploader$UploadProgressEventParameters>;
|
|
21011
|
-
|
|
21012
|
-
/**
|
|
21013
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'FileUploader$UploadStartEventParameters'
|
|
21014
|
-
* in 1.115.1 and any later releases.
|
|
21015
|
-
*/
|
|
21016
|
-
type $FileUploaderUploadStartEventParameters = sap.ui.unified.FileUploader$UploadStartEventParameters;
|
|
21017
|
-
|
|
21018
|
-
type FileUploader$UploadStartEvent = sap.ui.base.Event<FileUploader$UploadStartEventParameters>;
|
|
21019
|
-
|
|
21020
|
-
/**
|
|
21021
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Menu$ItemSelectEventParameters'
|
|
21022
|
-
* in 1.115.1 and any later releases.
|
|
21023
|
-
*/
|
|
21024
|
-
type $MenuItemSelectEventParameters = sap.ui.unified.Menu$ItemSelectEventParameters;
|
|
21025
|
-
|
|
21026
|
-
type Menu$ItemSelectEvent = sap.ui.base.Event<Menu$ItemSelectEventParameters>;
|
|
21027
|
-
|
|
21028
|
-
/**
|
|
21029
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MenuItemBase$SelectEventParameters'
|
|
21030
|
-
* in 1.115.1 and any later releases.
|
|
21031
|
-
*/
|
|
21032
|
-
type $MenuItemBaseSelectEventParameters = sap.ui.unified.MenuItemBase$SelectEventParameters;
|
|
21033
|
-
|
|
21034
|
-
type MenuItemBase$SelectEvent = sap.ui.base.Event<MenuItemBase$SelectEventParameters>;
|
|
21035
|
-
|
|
21036
|
-
/**
|
|
21037
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellHeadItem$PressEventParameters'
|
|
21038
|
-
* in 1.115.1 and any later releases.
|
|
21039
|
-
*/
|
|
21040
|
-
type $ShellHeadItemPressEventParameters = sap.ui.unified.ShellHeadItem$PressEventParameters;
|
|
21041
|
-
|
|
21042
|
-
type ShellHeadItem$PressEvent = sap.ui.base.Event<ShellHeadItem$PressEventParameters>;
|
|
21043
|
-
|
|
21044
|
-
/**
|
|
21045
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellHeadUserItem$PressEventParameters'
|
|
21046
|
-
* in 1.115.1 and any later releases.
|
|
21047
|
-
*/
|
|
21048
|
-
type $ShellHeadUserItemPressEventParameters = sap.ui.unified.ShellHeadUserItem$PressEventParameters;
|
|
21049
|
-
|
|
21050
|
-
type ShellHeadUserItem$PressEvent = sap.ui.base.Event<ShellHeadUserItem$PressEventParameters>;
|
|
21051
|
-
|
|
21052
|
-
/**
|
|
21053
|
-
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'ShellOverlay$ClosedEventParameters'
|
|
21054
|
-
* in 1.115.1 and any later releases.
|
|
21055
|
-
*/
|
|
21056
|
-
type $ShellOverlayClosedEventParameters = sap.ui.unified.ShellOverlay$ClosedEventParameters;
|
|
21057
20691
|
|
|
21058
|
-
type
|
|
20692
|
+
type Calendar$CancelEvent = sap.ui.base.Event<
|
|
20693
|
+
Calendar$CancelEventParameters,
|
|
20694
|
+
Calendar
|
|
20695
|
+
>;
|
|
20696
|
+
|
|
20697
|
+
type Calendar$SelectEvent = sap.ui.base.Event<
|
|
20698
|
+
Calendar$SelectEventParameters,
|
|
20699
|
+
Calendar
|
|
20700
|
+
>;
|
|
20701
|
+
|
|
20702
|
+
type Calendar$StartDateChangeEvent = sap.ui.base.Event<
|
|
20703
|
+
Calendar$StartDateChangeEventParameters,
|
|
20704
|
+
Calendar
|
|
20705
|
+
>;
|
|
20706
|
+
|
|
20707
|
+
type Calendar$WeekNumberSelectEvent = sap.ui.base.Event<
|
|
20708
|
+
Calendar$WeekNumberSelectEventParameters,
|
|
20709
|
+
Calendar
|
|
20710
|
+
>;
|
|
20711
|
+
|
|
20712
|
+
type CalendarMonthInterval$CancelEvent = sap.ui.base.Event<
|
|
20713
|
+
CalendarMonthInterval$CancelEventParameters,
|
|
20714
|
+
CalendarMonthInterval
|
|
20715
|
+
>;
|
|
20716
|
+
|
|
20717
|
+
type CalendarMonthInterval$SelectEvent = sap.ui.base.Event<
|
|
20718
|
+
CalendarMonthInterval$SelectEventParameters,
|
|
20719
|
+
CalendarMonthInterval
|
|
20720
|
+
>;
|
|
20721
|
+
|
|
20722
|
+
type CalendarMonthInterval$StartDateChangeEvent = sap.ui.base.Event<
|
|
20723
|
+
CalendarMonthInterval$StartDateChangeEventParameters,
|
|
20724
|
+
CalendarMonthInterval
|
|
20725
|
+
>;
|
|
20726
|
+
|
|
20727
|
+
type CalendarRow$IntervalSelectEvent = sap.ui.base.Event<
|
|
20728
|
+
CalendarRow$IntervalSelectEventParameters,
|
|
20729
|
+
CalendarRow
|
|
20730
|
+
>;
|
|
20731
|
+
|
|
20732
|
+
type CalendarRow$LeaveRowEvent = sap.ui.base.Event<
|
|
20733
|
+
CalendarRow$LeaveRowEventParameters,
|
|
20734
|
+
CalendarRow
|
|
20735
|
+
>;
|
|
20736
|
+
|
|
20737
|
+
type CalendarRow$SelectEvent = sap.ui.base.Event<
|
|
20738
|
+
CalendarRow$SelectEventParameters,
|
|
20739
|
+
CalendarRow
|
|
20740
|
+
>;
|
|
20741
|
+
|
|
20742
|
+
type CalendarRow$StartDateChangeEvent = sap.ui.base.Event<
|
|
20743
|
+
CalendarRow$StartDateChangeEventParameters,
|
|
20744
|
+
CalendarRow
|
|
20745
|
+
>;
|
|
20746
|
+
|
|
20747
|
+
type CalendarTimeInterval$CancelEvent = sap.ui.base.Event<
|
|
20748
|
+
CalendarTimeInterval$CancelEventParameters,
|
|
20749
|
+
CalendarTimeInterval
|
|
20750
|
+
>;
|
|
20751
|
+
|
|
20752
|
+
type CalendarTimeInterval$SelectEvent = sap.ui.base.Event<
|
|
20753
|
+
CalendarTimeInterval$SelectEventParameters,
|
|
20754
|
+
CalendarTimeInterval
|
|
20755
|
+
>;
|
|
20756
|
+
|
|
20757
|
+
type CalendarTimeInterval$StartDateChangeEvent = sap.ui.base.Event<
|
|
20758
|
+
CalendarTimeInterval$StartDateChangeEventParameters,
|
|
20759
|
+
CalendarTimeInterval
|
|
20760
|
+
>;
|
|
20761
|
+
|
|
20762
|
+
type ColorPicker$ChangeEvent = sap.ui.base.Event<
|
|
20763
|
+
ColorPicker$ChangeEventParameters,
|
|
20764
|
+
ColorPicker
|
|
20765
|
+
>;
|
|
20766
|
+
|
|
20767
|
+
type ColorPicker$LiveChangeEvent = sap.ui.base.Event<
|
|
20768
|
+
ColorPicker$LiveChangeEventParameters,
|
|
20769
|
+
ColorPicker
|
|
20770
|
+
>;
|
|
20771
|
+
|
|
20772
|
+
type ColorPickerPopover$ChangeEvent = sap.ui.base.Event<
|
|
20773
|
+
ColorPickerPopover$ChangeEventParameters,
|
|
20774
|
+
ColorPickerPopover
|
|
20775
|
+
>;
|
|
20776
|
+
|
|
20777
|
+
type ColorPickerPopover$LiveChangeEvent = sap.ui.base.Event<
|
|
20778
|
+
ColorPickerPopover$LiveChangeEventParameters,
|
|
20779
|
+
ColorPickerPopover
|
|
20780
|
+
>;
|
|
20781
|
+
|
|
20782
|
+
type FileUploader$AfterDialogCloseEvent = sap.ui.base.Event<
|
|
20783
|
+
FileUploader$AfterDialogCloseEventParameters,
|
|
20784
|
+
FileUploader
|
|
20785
|
+
>;
|
|
20786
|
+
|
|
20787
|
+
type FileUploader$BeforeDialogOpenEvent = sap.ui.base.Event<
|
|
20788
|
+
FileUploader$BeforeDialogOpenEventParameters,
|
|
20789
|
+
FileUploader
|
|
20790
|
+
>;
|
|
20791
|
+
|
|
20792
|
+
type FileUploader$ChangeEvent = sap.ui.base.Event<
|
|
20793
|
+
FileUploader$ChangeEventParameters,
|
|
20794
|
+
FileUploader
|
|
20795
|
+
>;
|
|
20796
|
+
|
|
20797
|
+
type FileUploader$FileAllowedEvent = sap.ui.base.Event<
|
|
20798
|
+
FileUploader$FileAllowedEventParameters,
|
|
20799
|
+
FileUploader
|
|
20800
|
+
>;
|
|
20801
|
+
|
|
20802
|
+
type FileUploader$FileEmptyEvent = sap.ui.base.Event<
|
|
20803
|
+
FileUploader$FileEmptyEventParameters,
|
|
20804
|
+
FileUploader
|
|
20805
|
+
>;
|
|
20806
|
+
|
|
20807
|
+
type FileUploader$FilenameLengthExceedEvent = sap.ui.base.Event<
|
|
20808
|
+
FileUploader$FilenameLengthExceedEventParameters,
|
|
20809
|
+
FileUploader
|
|
20810
|
+
>;
|
|
20811
|
+
|
|
20812
|
+
type FileUploader$FileSizeExceedEvent = sap.ui.base.Event<
|
|
20813
|
+
FileUploader$FileSizeExceedEventParameters,
|
|
20814
|
+
FileUploader
|
|
20815
|
+
>;
|
|
20816
|
+
|
|
20817
|
+
type FileUploader$TypeMissmatchEvent = sap.ui.base.Event<
|
|
20818
|
+
FileUploader$TypeMissmatchEventParameters,
|
|
20819
|
+
FileUploader
|
|
20820
|
+
>;
|
|
20821
|
+
|
|
20822
|
+
type FileUploader$UploadAbortedEvent = sap.ui.base.Event<
|
|
20823
|
+
FileUploader$UploadAbortedEventParameters,
|
|
20824
|
+
FileUploader
|
|
20825
|
+
>;
|
|
20826
|
+
|
|
20827
|
+
type FileUploader$UploadCompleteEvent = sap.ui.base.Event<
|
|
20828
|
+
FileUploader$UploadCompleteEventParameters,
|
|
20829
|
+
FileUploader
|
|
20830
|
+
>;
|
|
20831
|
+
|
|
20832
|
+
type FileUploader$UploadProgressEvent = sap.ui.base.Event<
|
|
20833
|
+
FileUploader$UploadProgressEventParameters,
|
|
20834
|
+
FileUploader
|
|
20835
|
+
>;
|
|
20836
|
+
|
|
20837
|
+
type FileUploader$UploadStartEvent = sap.ui.base.Event<
|
|
20838
|
+
FileUploader$UploadStartEventParameters,
|
|
20839
|
+
FileUploader
|
|
20840
|
+
>;
|
|
20841
|
+
|
|
20842
|
+
type Menu$ItemSelectEvent = sap.ui.base.Event<
|
|
20843
|
+
Menu$ItemSelectEventParameters,
|
|
20844
|
+
Menu
|
|
20845
|
+
>;
|
|
20846
|
+
|
|
20847
|
+
type MenuItemBase$SelectEvent = sap.ui.base.Event<
|
|
20848
|
+
MenuItemBase$SelectEventParameters,
|
|
20849
|
+
MenuItemBase
|
|
20850
|
+
>;
|
|
20851
|
+
|
|
20852
|
+
type ShellHeadItem$PressEvent = sap.ui.base.Event<
|
|
20853
|
+
ShellHeadItem$PressEventParameters,
|
|
20854
|
+
ShellHeadItem
|
|
20855
|
+
>;
|
|
20856
|
+
|
|
20857
|
+
type ShellHeadUserItem$PressEvent = sap.ui.base.Event<
|
|
20858
|
+
ShellHeadUserItem$PressEventParameters,
|
|
20859
|
+
ShellHeadUserItem
|
|
20860
|
+
>;
|
|
20861
|
+
|
|
20862
|
+
type ShellOverlay$ClosedEvent = sap.ui.base.Event<
|
|
20863
|
+
ShellOverlay$ClosedEventParameters,
|
|
20864
|
+
ShellOverlay
|
|
20865
|
+
>;
|
|
21059
20866
|
}
|
|
21060
20867
|
}
|
|
21061
20868
|
|