@sapui5/types 1.116.0 → 1.117.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 +1 -0
- package/types/sap.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +114 -30
- package/types/sap.chart.d.ts +29 -8
- package/types/sap.collaboration.d.ts +5 -2
- package/types/sap.esh.search.ui.d.ts +9 -3
- package/types/sap.f.d.ts +130 -36
- package/types/sap.fe.core.d.ts +21 -11
- package/types/sap.fe.macros.d.ts +160 -9
- 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 +282 -1118
- package/types/sap.insights.d.ts +248 -2
- package/types/sap.landvisz.d.ts +53 -14
- package/types/sap.m.d.ts +1793 -403
- package/types/sap.makit.d.ts +22 -7
- package/types/sap.me.d.ts +33 -9
- package/types/sap.ndc.d.ts +20 -15
- package/types/sap.ovp.d.ts +7 -97
- package/types/sap.rules.ui.d.ts +17 -5
- package/types/sap.sac.df.d.ts +90 -1
- package/types/sap.suite.ui.commons.d.ts +439 -108
- package/types/sap.suite.ui.generic.template.d.ts +5 -2
- package/types/sap.suite.ui.microchart.d.ts +69 -18
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +236 -68
- package/types/sap.ui.comp.d.ts +544 -169
- package/types/sap.ui.core.d.ts +929 -259
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +204 -3
- package/types/sap.ui.fl.d.ts +21 -6
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +71 -13
- package/types/sap.ui.layout.d.ts +95 -30
- package/types/sap.ui.mdc.d.ts +296 -98
- package/types/sap.ui.richtexteditor.d.ts +17 -5
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +9 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +118 -24
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +209 -53
- package/types/sap.ui.ux3.d.ts +220 -61
- package/types/sap.ui.vbm.d.ts +184 -61
- package/types/sap.ui.vk.d.ts +544 -139
- package/types/sap.ui.vtm.d.ts +130 -37
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +137 -35
- package/types/sap.ui.webc.main.d.ts +331 -100
- package/types/sap.uiext.inbox.d.ts +50 -14
- package/types/sap.ushell.d.ts +625 -46
- package/types/sap.ushell_abap.d.ts +1 -1
- package/types/sap.uxap.d.ts +42 -12
- package/types/sap.viz.d.ts +521 -137
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +29 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/suite/ui/commons/collaboration/BaseHelperService" {
|
|
4
4
|
/**
|
|
@@ -3452,11 +3452,17 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
3452
3452
|
|
|
3453
3453
|
export interface CalculationBuilder$AfterValidationEventParameters {}
|
|
3454
3454
|
|
|
3455
|
-
export type CalculationBuilder$AfterValidationEvent = Event<
|
|
3455
|
+
export type CalculationBuilder$AfterValidationEvent = Event<
|
|
3456
|
+
CalculationBuilder$AfterValidationEventParameters,
|
|
3457
|
+
CalculationBuilder
|
|
3458
|
+
>;
|
|
3456
3459
|
|
|
3457
3460
|
export interface CalculationBuilder$ChangeEventParameters {}
|
|
3458
3461
|
|
|
3459
|
-
export type CalculationBuilder$ChangeEvent = Event<
|
|
3462
|
+
export type CalculationBuilder$ChangeEvent = Event<
|
|
3463
|
+
CalculationBuilder$ChangeEventParameters,
|
|
3464
|
+
CalculationBuilder
|
|
3465
|
+
>;
|
|
3460
3466
|
|
|
3461
3467
|
export interface CalculationBuilder$ValidateFunctionEventParameters {
|
|
3462
3468
|
definition?: object;
|
|
@@ -3466,7 +3472,10 @@ declare module "sap/suite/ui/commons/CalculationBuilder" {
|
|
|
3466
3472
|
result?: CalculationBuilderValidationResult;
|
|
3467
3473
|
}
|
|
3468
3474
|
|
|
3469
|
-
export type CalculationBuilder$ValidateFunctionEvent = Event<
|
|
3475
|
+
export type CalculationBuilder$ValidateFunctionEvent = Event<
|
|
3476
|
+
CalculationBuilder$ValidateFunctionEventParameters,
|
|
3477
|
+
CalculationBuilder
|
|
3478
|
+
>;
|
|
3470
3479
|
}
|
|
3471
3480
|
|
|
3472
3481
|
declare module "sap/suite/ui/commons/CalculationBuilderFunction" {
|
|
@@ -4106,7 +4115,10 @@ declare module "sap/suite/ui/commons/CalculationBuilderGroup" {
|
|
|
4106
4115
|
key?: string;
|
|
4107
4116
|
}
|
|
4108
4117
|
|
|
4109
|
-
export type CalculationBuilderGroup$SetSelectionEvent = Event<
|
|
4118
|
+
export type CalculationBuilderGroup$SetSelectionEvent = Event<
|
|
4119
|
+
CalculationBuilderGroup$SetSelectionEventParameters,
|
|
4120
|
+
CalculationBuilderGroup
|
|
4121
|
+
>;
|
|
4110
4122
|
}
|
|
4111
4123
|
|
|
4112
4124
|
declare module "sap/suite/ui/commons/CalculationBuilderItem" {
|
|
@@ -5737,19 +5749,31 @@ declare module "sap/suite/ui/commons/ChartContainer" {
|
|
|
5737
5749
|
selectedItemId?: string;
|
|
5738
5750
|
}
|
|
5739
5751
|
|
|
5740
|
-
export type ChartContainer$ContentChangeEvent = Event<
|
|
5752
|
+
export type ChartContainer$ContentChangeEvent = Event<
|
|
5753
|
+
ChartContainer$ContentChangeEventParameters,
|
|
5754
|
+
ChartContainer
|
|
5755
|
+
>;
|
|
5741
5756
|
|
|
5742
5757
|
export interface ChartContainer$CustomZoomInPressEventParameters {}
|
|
5743
5758
|
|
|
5744
|
-
export type ChartContainer$CustomZoomInPressEvent = Event<
|
|
5759
|
+
export type ChartContainer$CustomZoomInPressEvent = Event<
|
|
5760
|
+
ChartContainer$CustomZoomInPressEventParameters,
|
|
5761
|
+
ChartContainer
|
|
5762
|
+
>;
|
|
5745
5763
|
|
|
5746
5764
|
export interface ChartContainer$CustomZoomOutPressEventParameters {}
|
|
5747
5765
|
|
|
5748
|
-
export type ChartContainer$CustomZoomOutPressEvent = Event<
|
|
5766
|
+
export type ChartContainer$CustomZoomOutPressEvent = Event<
|
|
5767
|
+
ChartContainer$CustomZoomOutPressEventParameters,
|
|
5768
|
+
ChartContainer
|
|
5769
|
+
>;
|
|
5749
5770
|
|
|
5750
5771
|
export interface ChartContainer$PersonalizationPressEventParameters {}
|
|
5751
5772
|
|
|
5752
|
-
export type ChartContainer$PersonalizationPressEvent = Event<
|
|
5773
|
+
export type ChartContainer$PersonalizationPressEvent = Event<
|
|
5774
|
+
ChartContainer$PersonalizationPressEventParameters,
|
|
5775
|
+
ChartContainer
|
|
5776
|
+
>;
|
|
5753
5777
|
}
|
|
5754
5778
|
|
|
5755
5779
|
declare module "sap/suite/ui/commons/ChartContainerContent" {
|
|
@@ -6386,6 +6410,14 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
|
|
|
6386
6410
|
* @returns Value of property `filePickerType`
|
|
6387
6411
|
*/
|
|
6388
6412
|
getFilePickerType(): FilePickerType | keyof typeof FilePickerType;
|
|
6413
|
+
/**
|
|
6414
|
+
* Gets current value of property {@link #getMIMEType MIMEType}.
|
|
6415
|
+
*
|
|
6416
|
+
* Specifies the MIME type of the file during Export
|
|
6417
|
+
*
|
|
6418
|
+
* @returns Value of property `MIMEType`
|
|
6419
|
+
*/
|
|
6420
|
+
getMIMEType(): string;
|
|
6389
6421
|
/**
|
|
6390
6422
|
* Gets current value of property {@link #getServiceUrl serviceUrl}.
|
|
6391
6423
|
*
|
|
@@ -6524,6 +6556,21 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
|
|
|
6524
6556
|
*/
|
|
6525
6557
|
sFilePickerType?: FilePickerType | keyof typeof FilePickerType
|
|
6526
6558
|
): this;
|
|
6559
|
+
/**
|
|
6560
|
+
* Sets a new value for property {@link #getMIMEType MIMEType}.
|
|
6561
|
+
*
|
|
6562
|
+
* Specifies the MIME type of the file during Export
|
|
6563
|
+
*
|
|
6564
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6565
|
+
*
|
|
6566
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
6567
|
+
*/
|
|
6568
|
+
setMIMEType(
|
|
6569
|
+
/**
|
|
6570
|
+
* New value for property `MIMEType`
|
|
6571
|
+
*/
|
|
6572
|
+
sMIMEType: string
|
|
6573
|
+
): this;
|
|
6527
6574
|
/**
|
|
6528
6575
|
* Sets a new value for property {@link #getServiceUrl serviceUrl}.
|
|
6529
6576
|
*
|
|
@@ -6650,6 +6697,11 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
|
|
|
6650
6697
|
| PropertyBindingInfo
|
|
6651
6698
|
| `{${string}}`;
|
|
6652
6699
|
|
|
6700
|
+
/**
|
|
6701
|
+
* Specifies the MIME type of the file during Export
|
|
6702
|
+
*/
|
|
6703
|
+
MIMEType?: string | PropertyBindingInfo;
|
|
6704
|
+
|
|
6653
6705
|
/**
|
|
6654
6706
|
* Event is fired when the selection is made
|
|
6655
6707
|
*/
|
|
@@ -6663,7 +6715,10 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
|
|
|
6663
6715
|
|
|
6664
6716
|
export interface CloudFilePicker$CancelEventParameters {}
|
|
6665
6717
|
|
|
6666
|
-
export type CloudFilePicker$CancelEvent = Event<
|
|
6718
|
+
export type CloudFilePicker$CancelEvent = Event<
|
|
6719
|
+
CloudFilePicker$CancelEventParameters,
|
|
6720
|
+
CloudFilePicker
|
|
6721
|
+
>;
|
|
6667
6722
|
|
|
6668
6723
|
export interface CloudFilePicker$SelectEventParameters {
|
|
6669
6724
|
/**
|
|
@@ -6687,7 +6742,10 @@ declare module "sap/suite/ui/commons/CloudFilePicker" {
|
|
|
6687
6742
|
selectedFolder?: /* was: sap.suite.ui.commons.CloudFileInfo */ any;
|
|
6688
6743
|
}
|
|
6689
6744
|
|
|
6690
|
-
export type CloudFilePicker$SelectEvent = Event<
|
|
6745
|
+
export type CloudFilePicker$SelectEvent = Event<
|
|
6746
|
+
CloudFilePicker$SelectEventParameters,
|
|
6747
|
+
CloudFilePicker
|
|
6748
|
+
>;
|
|
6691
6749
|
}
|
|
6692
6750
|
|
|
6693
6751
|
declare module "sap/suite/ui/commons/collaboration/ServiceContainer" {
|
|
@@ -7499,7 +7557,10 @@ declare module "sap/suite/ui/commons/DateRangeScroller" {
|
|
|
7499
7557
|
dateRange?: any;
|
|
7500
7558
|
}
|
|
7501
7559
|
|
|
7502
|
-
export type DateRangeScroller$ChangeEvent = Event<
|
|
7560
|
+
export type DateRangeScroller$ChangeEvent = Event<
|
|
7561
|
+
DateRangeScroller$ChangeEventParameters,
|
|
7562
|
+
DateRangeScroller
|
|
7563
|
+
>;
|
|
7503
7564
|
}
|
|
7504
7565
|
|
|
7505
7566
|
declare module "sap/suite/ui/commons/DateRangeSlider" {
|
|
@@ -8225,11 +8286,17 @@ declare module "sap/suite/ui/commons/DateRangeSlider" {
|
|
|
8225
8286
|
|
|
8226
8287
|
export interface DateRangeSlider$ChangeEventParameters {}
|
|
8227
8288
|
|
|
8228
|
-
export type DateRangeSlider$ChangeEvent = Event<
|
|
8289
|
+
export type DateRangeSlider$ChangeEvent = Event<
|
|
8290
|
+
DateRangeSlider$ChangeEventParameters,
|
|
8291
|
+
DateRangeSlider
|
|
8292
|
+
>;
|
|
8229
8293
|
|
|
8230
8294
|
export interface DateRangeSlider$LiveChangeEventParameters {}
|
|
8231
8295
|
|
|
8232
|
-
export type DateRangeSlider$LiveChangeEvent = Event<
|
|
8296
|
+
export type DateRangeSlider$LiveChangeEvent = Event<
|
|
8297
|
+
DateRangeSlider$LiveChangeEventParameters,
|
|
8298
|
+
DateRangeSlider
|
|
8299
|
+
>;
|
|
8233
8300
|
}
|
|
8234
8301
|
|
|
8235
8302
|
declare module "sap/suite/ui/commons/DateRangeSliderInternal" {
|
|
@@ -8589,12 +8656,18 @@ declare module "sap/suite/ui/commons/DateRangeSliderInternal" {
|
|
|
8589
8656
|
export interface DateRangeSliderInternal$ChangeEventParameters
|
|
8590
8657
|
extends Slider$ChangeEventParameters {}
|
|
8591
8658
|
|
|
8592
|
-
export type DateRangeSliderInternal$ChangeEvent = Event<
|
|
8659
|
+
export type DateRangeSliderInternal$ChangeEvent = Event<
|
|
8660
|
+
DateRangeSliderInternal$ChangeEventParameters,
|
|
8661
|
+
DateRangeSliderInternal
|
|
8662
|
+
>;
|
|
8593
8663
|
|
|
8594
8664
|
export interface DateRangeSliderInternal$LiveChangeEventParameters
|
|
8595
8665
|
extends Slider$LiveChangeEventParameters {}
|
|
8596
8666
|
|
|
8597
|
-
export type DateRangeSliderInternal$LiveChangeEvent = Event<
|
|
8667
|
+
export type DateRangeSliderInternal$LiveChangeEvent = Event<
|
|
8668
|
+
DateRangeSliderInternal$LiveChangeEventParameters,
|
|
8669
|
+
DateRangeSliderInternal
|
|
8670
|
+
>;
|
|
8598
8671
|
}
|
|
8599
8672
|
|
|
8600
8673
|
declare module "sap/suite/ui/commons/DeltaMicroChart" {
|
|
@@ -9256,7 +9329,10 @@ declare module "sap/suite/ui/commons/FacetOverview" {
|
|
|
9256
9329
|
|
|
9257
9330
|
export interface FacetOverview$HeightChangeEventParameters {}
|
|
9258
9331
|
|
|
9259
|
-
export type FacetOverview$HeightChangeEvent = Event<
|
|
9332
|
+
export type FacetOverview$HeightChangeEvent = Event<
|
|
9333
|
+
FacetOverview$HeightChangeEventParameters,
|
|
9334
|
+
FacetOverview
|
|
9335
|
+
>;
|
|
9260
9336
|
|
|
9261
9337
|
export interface FacetOverview$PressEventParameters {
|
|
9262
9338
|
/**
|
|
@@ -9265,7 +9341,10 @@ declare module "sap/suite/ui/commons/FacetOverview" {
|
|
|
9265
9341
|
id?: string;
|
|
9266
9342
|
}
|
|
9267
9343
|
|
|
9268
|
-
export type FacetOverview$PressEvent = Event<
|
|
9344
|
+
export type FacetOverview$PressEvent = Event<
|
|
9345
|
+
FacetOverview$PressEventParameters,
|
|
9346
|
+
FacetOverview
|
|
9347
|
+
>;
|
|
9269
9348
|
}
|
|
9270
9349
|
|
|
9271
9350
|
declare module "sap/suite/ui/commons/FeedItem" {
|
|
@@ -10117,7 +10196,10 @@ declare module "sap/suite/ui/commons/FeedTile" {
|
|
|
10117
10196
|
|
|
10118
10197
|
export interface FeedTile$PressEventParameters {}
|
|
10119
10198
|
|
|
10120
|
-
export type FeedTile$PressEvent = Event<
|
|
10199
|
+
export type FeedTile$PressEvent = Event<
|
|
10200
|
+
FeedTile$PressEventParameters,
|
|
10201
|
+
FeedTile
|
|
10202
|
+
>;
|
|
10121
10203
|
}
|
|
10122
10204
|
|
|
10123
10205
|
declare module "sap/suite/ui/commons/GenericTile" {
|
|
@@ -10765,7 +10847,10 @@ declare module "sap/suite/ui/commons/GenericTile2X2" {
|
|
|
10765
10847
|
|
|
10766
10848
|
export interface GenericTile2X2$PressEventParameters {}
|
|
10767
10849
|
|
|
10768
|
-
export type GenericTile2X2$PressEvent = Event<
|
|
10850
|
+
export type GenericTile2X2$PressEvent = Event<
|
|
10851
|
+
GenericTile2X2$PressEventParameters,
|
|
10852
|
+
GenericTile2X2
|
|
10853
|
+
>;
|
|
10769
10854
|
}
|
|
10770
10855
|
|
|
10771
10856
|
declare module "sap/suite/ui/commons/HarveyBallMicroChart" {
|
|
@@ -14025,27 +14110,45 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditor" {
|
|
|
14025
14110
|
originalCropArea?: object;
|
|
14026
14111
|
}
|
|
14027
14112
|
|
|
14028
|
-
export type ImageEditor$CropAreaChangedEvent = Event<
|
|
14113
|
+
export type ImageEditor$CropAreaChangedEvent = Event<
|
|
14114
|
+
ImageEditor$CropAreaChangedEventParameters,
|
|
14115
|
+
ImageEditor
|
|
14116
|
+
>;
|
|
14029
14117
|
|
|
14030
14118
|
export interface ImageEditor$CustomShapeErrorEventParameters {}
|
|
14031
14119
|
|
|
14032
|
-
export type ImageEditor$CustomShapeErrorEvent = Event<
|
|
14120
|
+
export type ImageEditor$CustomShapeErrorEvent = Event<
|
|
14121
|
+
ImageEditor$CustomShapeErrorEventParameters,
|
|
14122
|
+
ImageEditor
|
|
14123
|
+
>;
|
|
14033
14124
|
|
|
14034
14125
|
export interface ImageEditor$CustomShapeLoadedEventParameters {}
|
|
14035
14126
|
|
|
14036
|
-
export type ImageEditor$CustomShapeLoadedEvent = Event<
|
|
14127
|
+
export type ImageEditor$CustomShapeLoadedEvent = Event<
|
|
14128
|
+
ImageEditor$CustomShapeLoadedEventParameters,
|
|
14129
|
+
ImageEditor
|
|
14130
|
+
>;
|
|
14037
14131
|
|
|
14038
14132
|
export interface ImageEditor$ErrorEventParameters {}
|
|
14039
14133
|
|
|
14040
|
-
export type ImageEditor$ErrorEvent = Event<
|
|
14134
|
+
export type ImageEditor$ErrorEvent = Event<
|
|
14135
|
+
ImageEditor$ErrorEventParameters,
|
|
14136
|
+
ImageEditor
|
|
14137
|
+
>;
|
|
14041
14138
|
|
|
14042
14139
|
export interface ImageEditor$HistoryChangedEventParameters {}
|
|
14043
14140
|
|
|
14044
|
-
export type ImageEditor$HistoryChangedEvent = Event<
|
|
14141
|
+
export type ImageEditor$HistoryChangedEvent = Event<
|
|
14142
|
+
ImageEditor$HistoryChangedEventParameters,
|
|
14143
|
+
ImageEditor
|
|
14144
|
+
>;
|
|
14045
14145
|
|
|
14046
14146
|
export interface ImageEditor$LoadedEventParameters {}
|
|
14047
14147
|
|
|
14048
|
-
export type ImageEditor$LoadedEvent = Event<
|
|
14148
|
+
export type ImageEditor$LoadedEvent = Event<
|
|
14149
|
+
ImageEditor$LoadedEventParameters,
|
|
14150
|
+
ImageEditor
|
|
14151
|
+
>;
|
|
14049
14152
|
|
|
14050
14153
|
export interface ImageEditor$SizeChangedEventParameters {
|
|
14051
14154
|
width?: int;
|
|
@@ -14057,13 +14160,19 @@ declare module "sap/suite/ui/commons/imageeditor/ImageEditor" {
|
|
|
14057
14160
|
originalHeight?: int;
|
|
14058
14161
|
}
|
|
14059
14162
|
|
|
14060
|
-
export type ImageEditor$SizeChangedEvent = Event<
|
|
14163
|
+
export type ImageEditor$SizeChangedEvent = Event<
|
|
14164
|
+
ImageEditor$SizeChangedEventParameters,
|
|
14165
|
+
ImageEditor
|
|
14166
|
+
>;
|
|
14061
14167
|
|
|
14062
14168
|
export interface ImageEditor$ZoomChangedEventParameters {
|
|
14063
14169
|
zoom?: int;
|
|
14064
14170
|
}
|
|
14065
14171
|
|
|
14066
|
-
export type ImageEditor$ZoomChangedEvent = Event<
|
|
14172
|
+
export type ImageEditor$ZoomChangedEvent = Event<
|
|
14173
|
+
ImageEditor$ZoomChangedEventParameters,
|
|
14174
|
+
ImageEditor
|
|
14175
|
+
>;
|
|
14067
14176
|
}
|
|
14068
14177
|
|
|
14069
14178
|
declare module "sap/suite/ui/commons/imageeditor/ImageEditorContainer" {
|
|
@@ -15257,7 +15366,10 @@ declare module "sap/suite/ui/commons/InfoTile" {
|
|
|
15257
15366
|
|
|
15258
15367
|
export interface InfoTile$PressEventParameters {}
|
|
15259
15368
|
|
|
15260
|
-
export type InfoTile$PressEvent = Event<
|
|
15369
|
+
export type InfoTile$PressEvent = Event<
|
|
15370
|
+
InfoTile$PressEventParameters,
|
|
15371
|
+
InfoTile
|
|
15372
|
+
>;
|
|
15261
15373
|
}
|
|
15262
15374
|
|
|
15263
15375
|
declare module "sap/suite/ui/commons/JamContent" {
|
|
@@ -15852,7 +15964,10 @@ declare module "sap/suite/ui/commons/LaunchTile" {
|
|
|
15852
15964
|
|
|
15853
15965
|
export interface LaunchTile$PressEventParameters {}
|
|
15854
15966
|
|
|
15855
|
-
export type LaunchTile$PressEvent = Event<
|
|
15967
|
+
export type LaunchTile$PressEvent = Event<
|
|
15968
|
+
LaunchTile$PressEventParameters,
|
|
15969
|
+
LaunchTile
|
|
15970
|
+
>;
|
|
15856
15971
|
}
|
|
15857
15972
|
|
|
15858
15973
|
declare module "sap/suite/ui/commons/LinkActionSheet" {
|
|
@@ -16111,7 +16226,10 @@ declare module "sap/suite/ui/commons/LinkActionSheet" {
|
|
|
16111
16226
|
item?: Control;
|
|
16112
16227
|
}
|
|
16113
16228
|
|
|
16114
|
-
export type LinkActionSheet$ItemPressEvent = Event<
|
|
16229
|
+
export type LinkActionSheet$ItemPressEvent = Event<
|
|
16230
|
+
LinkActionSheet$ItemPressEventParameters,
|
|
16231
|
+
LinkActionSheet
|
|
16232
|
+
>;
|
|
16115
16233
|
}
|
|
16116
16234
|
|
|
16117
16235
|
declare module "sap/suite/ui/commons/MicroAreaChart" {
|
|
@@ -17171,7 +17289,10 @@ declare module "sap/suite/ui/commons/MicroProcessFlowItem" {
|
|
|
17171
17289
|
item?: object;
|
|
17172
17290
|
}
|
|
17173
17291
|
|
|
17174
|
-
export type MicroProcessFlowItem$PressEvent = Event<
|
|
17292
|
+
export type MicroProcessFlowItem$PressEvent = Event<
|
|
17293
|
+
MicroProcessFlowItem$PressEventParameters,
|
|
17294
|
+
MicroProcessFlowItem
|
|
17295
|
+
>;
|
|
17175
17296
|
}
|
|
17176
17297
|
|
|
17177
17298
|
declare module "sap/suite/ui/commons/MonitoringContent" {
|
|
@@ -17533,7 +17654,10 @@ declare module "sap/suite/ui/commons/MonitoringContent" {
|
|
|
17533
17654
|
|
|
17534
17655
|
export interface MonitoringContent$PressEventParameters {}
|
|
17535
17656
|
|
|
17536
|
-
export type MonitoringContent$PressEvent = Event<
|
|
17657
|
+
export type MonitoringContent$PressEvent = Event<
|
|
17658
|
+
MonitoringContent$PressEventParameters,
|
|
17659
|
+
MonitoringContent
|
|
17660
|
+
>;
|
|
17537
17661
|
}
|
|
17538
17662
|
|
|
17539
17663
|
declare module "sap/suite/ui/commons/MonitoringTile" {
|
|
@@ -17991,7 +18115,10 @@ declare module "sap/suite/ui/commons/networkgraph/ActionButton" {
|
|
|
17991
18115
|
buttonElement?: object;
|
|
17992
18116
|
}
|
|
17993
18117
|
|
|
17994
|
-
export type ActionButton$PressEvent = Event<
|
|
18118
|
+
export type ActionButton$PressEvent = Event<
|
|
18119
|
+
ActionButton$PressEventParameters,
|
|
18120
|
+
ActionButton
|
|
18121
|
+
>;
|
|
17995
18122
|
}
|
|
17996
18123
|
|
|
17997
18124
|
declare module "sap/suite/ui/commons/networkgraph/Coordinate" {
|
|
@@ -20299,11 +20426,17 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
20299
20426
|
|
|
20300
20427
|
export interface Graph$AfterLayoutingEventParameters {}
|
|
20301
20428
|
|
|
20302
|
-
export type Graph$AfterLayoutingEvent = Event<
|
|
20429
|
+
export type Graph$AfterLayoutingEvent = Event<
|
|
20430
|
+
Graph$AfterLayoutingEventParameters,
|
|
20431
|
+
Graph
|
|
20432
|
+
>;
|
|
20303
20433
|
|
|
20304
20434
|
export interface Graph$BeforeLayoutingEventParameters {}
|
|
20305
20435
|
|
|
20306
|
-
export type Graph$BeforeLayoutingEvent = Event<
|
|
20436
|
+
export type Graph$BeforeLayoutingEvent = Event<
|
|
20437
|
+
Graph$BeforeLayoutingEventParameters,
|
|
20438
|
+
Graph
|
|
20439
|
+
>;
|
|
20307
20440
|
|
|
20308
20441
|
export interface Graph$FailureEventParameters {
|
|
20309
20442
|
/**
|
|
@@ -20317,11 +20450,14 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
20317
20450
|
message?: string;
|
|
20318
20451
|
}
|
|
20319
20452
|
|
|
20320
|
-
export type Graph$FailureEvent = Event<Graph$FailureEventParameters>;
|
|
20453
|
+
export type Graph$FailureEvent = Event<Graph$FailureEventParameters, Graph>;
|
|
20321
20454
|
|
|
20322
20455
|
export interface Graph$GraphReadyEventParameters {}
|
|
20323
20456
|
|
|
20324
|
-
export type Graph$GraphReadyEvent = Event<
|
|
20457
|
+
export type Graph$GraphReadyEvent = Event<
|
|
20458
|
+
Graph$GraphReadyEventParameters,
|
|
20459
|
+
Graph
|
|
20460
|
+
>;
|
|
20325
20461
|
|
|
20326
20462
|
export interface Graph$SearchEventParameters {
|
|
20327
20463
|
term?: string;
|
|
@@ -20329,13 +20465,16 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
20329
20465
|
key?: string;
|
|
20330
20466
|
}
|
|
20331
20467
|
|
|
20332
|
-
export type Graph$SearchEvent = Event<Graph$SearchEventParameters>;
|
|
20468
|
+
export type Graph$SearchEvent = Event<Graph$SearchEventParameters, Graph>;
|
|
20333
20469
|
|
|
20334
20470
|
export interface Graph$SearchSuggestEventParameters {
|
|
20335
20471
|
term?: string;
|
|
20336
20472
|
}
|
|
20337
20473
|
|
|
20338
|
-
export type Graph$SearchSuggestEvent = Event<
|
|
20474
|
+
export type Graph$SearchSuggestEvent = Event<
|
|
20475
|
+
Graph$SearchSuggestEventParameters,
|
|
20476
|
+
Graph
|
|
20477
|
+
>;
|
|
20339
20478
|
|
|
20340
20479
|
export interface Graph$SelectionChangeEventParameters {
|
|
20341
20480
|
/**
|
|
@@ -20345,11 +20484,17 @@ declare module "sap/suite/ui/commons/networkgraph/Graph" {
|
|
|
20345
20484
|
items?: ElementBase[];
|
|
20346
20485
|
}
|
|
20347
20486
|
|
|
20348
|
-
export type Graph$SelectionChangeEvent = Event<
|
|
20487
|
+
export type Graph$SelectionChangeEvent = Event<
|
|
20488
|
+
Graph$SelectionChangeEventParameters,
|
|
20489
|
+
Graph
|
|
20490
|
+
>;
|
|
20349
20491
|
|
|
20350
20492
|
export interface Graph$ZoomChangedEventParameters {}
|
|
20351
20493
|
|
|
20352
|
-
export type Graph$ZoomChangedEvent = Event<
|
|
20494
|
+
export type Graph$ZoomChangedEvent = Event<
|
|
20495
|
+
Graph$ZoomChangedEventParameters,
|
|
20496
|
+
Graph
|
|
20497
|
+
>;
|
|
20353
20498
|
}
|
|
20354
20499
|
|
|
20355
20500
|
declare module "sap/suite/ui/commons/networkgraph/GraphMap" {
|
|
@@ -20656,7 +20801,10 @@ declare module "sap/suite/ui/commons/networkgraph/GraphMap" {
|
|
|
20656
20801
|
|
|
20657
20802
|
export interface GraphMap$MapReadyEventParameters {}
|
|
20658
20803
|
|
|
20659
|
-
export type GraphMap$MapReadyEvent = Event<
|
|
20804
|
+
export type GraphMap$MapReadyEvent = Event<
|
|
20805
|
+
GraphMap$MapReadyEventParameters,
|
|
20806
|
+
GraphMap
|
|
20807
|
+
>;
|
|
20660
20808
|
}
|
|
20661
20809
|
|
|
20662
20810
|
declare module "sap/suite/ui/commons/networkgraph/Group" {
|
|
@@ -21213,7 +21361,10 @@ declare module "sap/suite/ui/commons/networkgraph/Group" {
|
|
|
21213
21361
|
|
|
21214
21362
|
export interface Group$CollapseExpandEventParameters {}
|
|
21215
21363
|
|
|
21216
|
-
export type Group$CollapseExpandEvent = Event<
|
|
21364
|
+
export type Group$CollapseExpandEvent = Event<
|
|
21365
|
+
Group$CollapseExpandEventParameters,
|
|
21366
|
+
Group
|
|
21367
|
+
>;
|
|
21217
21368
|
|
|
21218
21369
|
export interface Group$HeaderCheckBoxPressEventParameters {
|
|
21219
21370
|
/**
|
|
@@ -21222,11 +21373,17 @@ declare module "sap/suite/ui/commons/networkgraph/Group" {
|
|
|
21222
21373
|
checked?: boolean;
|
|
21223
21374
|
}
|
|
21224
21375
|
|
|
21225
|
-
export type Group$HeaderCheckBoxPressEvent = Event<
|
|
21376
|
+
export type Group$HeaderCheckBoxPressEvent = Event<
|
|
21377
|
+
Group$HeaderCheckBoxPressEventParameters,
|
|
21378
|
+
Group
|
|
21379
|
+
>;
|
|
21226
21380
|
|
|
21227
21381
|
export interface Group$ShowDetailEventParameters {}
|
|
21228
21382
|
|
|
21229
|
-
export type Group$ShowDetailEvent = Event<
|
|
21383
|
+
export type Group$ShowDetailEvent = Event<
|
|
21384
|
+
Group$ShowDetailEventParameters,
|
|
21385
|
+
Group
|
|
21386
|
+
>;
|
|
21230
21387
|
}
|
|
21231
21388
|
|
|
21232
21389
|
declare module "sap/suite/ui/commons/networkgraph/layout/ForceBasedLayout" {
|
|
@@ -22924,7 +23081,7 @@ declare module "sap/suite/ui/commons/networkgraph/Line" {
|
|
|
22924
23081
|
|
|
22925
23082
|
export interface Line$HoverEventParameters {}
|
|
22926
23083
|
|
|
22927
|
-
export type Line$HoverEvent = Event<Line$HoverEventParameters>;
|
|
23084
|
+
export type Line$HoverEvent = Event<Line$HoverEventParameters, Line>;
|
|
22928
23085
|
|
|
22929
23086
|
export interface Line$PressEventParameters {
|
|
22930
23087
|
/**
|
|
@@ -22939,7 +23096,7 @@ declare module "sap/suite/ui/commons/networkgraph/Line" {
|
|
|
22939
23096
|
opener?: Object;
|
|
22940
23097
|
}
|
|
22941
23098
|
|
|
22942
|
-
export type Line$PressEvent = Event<Line$PressEventParameters>;
|
|
23099
|
+
export type Line$PressEvent = Event<Line$PressEventParameters, Line>;
|
|
22943
23100
|
}
|
|
22944
23101
|
|
|
22945
23102
|
declare module "sap/suite/ui/commons/networkgraph/Node" {
|
|
@@ -24606,7 +24763,10 @@ declare module "sap/suite/ui/commons/networkgraph/Node" {
|
|
|
24606
24763
|
|
|
24607
24764
|
export interface Node$CollapseExpandEventParameters {}
|
|
24608
24765
|
|
|
24609
|
-
export type Node$CollapseExpandEvent = Event<
|
|
24766
|
+
export type Node$CollapseExpandEvent = Event<
|
|
24767
|
+
Node$CollapseExpandEventParameters,
|
|
24768
|
+
Node
|
|
24769
|
+
>;
|
|
24610
24770
|
|
|
24611
24771
|
export interface Node$HeaderCheckBoxPressEventParameters {
|
|
24612
24772
|
/**
|
|
@@ -24615,15 +24775,18 @@ declare module "sap/suite/ui/commons/networkgraph/Node" {
|
|
|
24615
24775
|
checked?: boolean;
|
|
24616
24776
|
}
|
|
24617
24777
|
|
|
24618
|
-
export type Node$HeaderCheckBoxPressEvent = Event<
|
|
24778
|
+
export type Node$HeaderCheckBoxPressEvent = Event<
|
|
24779
|
+
Node$HeaderCheckBoxPressEventParameters,
|
|
24780
|
+
Node
|
|
24781
|
+
>;
|
|
24619
24782
|
|
|
24620
24783
|
export interface Node$HoverEventParameters {}
|
|
24621
24784
|
|
|
24622
|
-
export type Node$HoverEvent = Event<Node$HoverEventParameters>;
|
|
24785
|
+
export type Node$HoverEvent = Event<Node$HoverEventParameters, Node>;
|
|
24623
24786
|
|
|
24624
24787
|
export interface Node$PressEventParameters {}
|
|
24625
24788
|
|
|
24626
|
-
export type Node$PressEvent = Event<Node$PressEventParameters>;
|
|
24789
|
+
export type Node$PressEvent = Event<Node$PressEventParameters, Node>;
|
|
24627
24790
|
}
|
|
24628
24791
|
|
|
24629
24792
|
declare module "sap/suite/ui/commons/networkgraph/NodeImage" {
|
|
@@ -26479,7 +26642,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26479
26642
|
card?: NoteTakerCard;
|
|
26480
26643
|
}
|
|
26481
26644
|
|
|
26482
|
-
export type NoteTaker$AddCardEvent = Event<
|
|
26645
|
+
export type NoteTaker$AddCardEvent = Event<
|
|
26646
|
+
NoteTaker$AddCardEventParameters,
|
|
26647
|
+
NoteTaker
|
|
26648
|
+
>;
|
|
26483
26649
|
|
|
26484
26650
|
export interface NoteTaker$AttachmentClickEventParameters {
|
|
26485
26651
|
/**
|
|
@@ -26499,7 +26665,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26499
26665
|
filename?: string;
|
|
26500
26666
|
}
|
|
26501
26667
|
|
|
26502
|
-
export type NoteTaker$AttachmentClickEvent = Event<
|
|
26668
|
+
export type NoteTaker$AttachmentClickEvent = Event<
|
|
26669
|
+
NoteTaker$AttachmentClickEventParameters,
|
|
26670
|
+
NoteTaker
|
|
26671
|
+
>;
|
|
26503
26672
|
|
|
26504
26673
|
export interface NoteTaker$AttachmentDeleteEventParameters {
|
|
26505
26674
|
/**
|
|
@@ -26513,7 +26682,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26513
26682
|
uid?: string;
|
|
26514
26683
|
}
|
|
26515
26684
|
|
|
26516
|
-
export type NoteTaker$AttachmentDeleteEvent = Event<
|
|
26685
|
+
export type NoteTaker$AttachmentDeleteEvent = Event<
|
|
26686
|
+
NoteTaker$AttachmentDeleteEventParameters,
|
|
26687
|
+
NoteTaker
|
|
26688
|
+
>;
|
|
26517
26689
|
|
|
26518
26690
|
export interface NoteTaker$AttachmentSelectEventParameters {
|
|
26519
26691
|
/**
|
|
@@ -26522,7 +26694,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26522
26694
|
filename?: string;
|
|
26523
26695
|
}
|
|
26524
26696
|
|
|
26525
|
-
export type NoteTaker$AttachmentSelectEvent = Event<
|
|
26697
|
+
export type NoteTaker$AttachmentSelectEvent = Event<
|
|
26698
|
+
NoteTaker$AttachmentSelectEventParameters,
|
|
26699
|
+
NoteTaker
|
|
26700
|
+
>;
|
|
26526
26701
|
|
|
26527
26702
|
export interface NoteTaker$AttachmentUploadCompleteEventParameters {
|
|
26528
26703
|
/**
|
|
@@ -26538,7 +26713,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26538
26713
|
uid?: string;
|
|
26539
26714
|
}
|
|
26540
26715
|
|
|
26541
|
-
export type NoteTaker$AttachmentUploadCompleteEvent = Event<
|
|
26716
|
+
export type NoteTaker$AttachmentUploadCompleteEvent = Event<
|
|
26717
|
+
NoteTaker$AttachmentUploadCompleteEventParameters,
|
|
26718
|
+
NoteTaker
|
|
26719
|
+
>;
|
|
26542
26720
|
|
|
26543
26721
|
export interface NoteTaker$DeleteCardEventParameters {
|
|
26544
26722
|
/**
|
|
@@ -26572,7 +26750,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26572
26750
|
thumbDown?: boolean;
|
|
26573
26751
|
}
|
|
26574
26752
|
|
|
26575
|
-
export type NoteTaker$DeleteCardEvent = Event<
|
|
26753
|
+
export type NoteTaker$DeleteCardEvent = Event<
|
|
26754
|
+
NoteTaker$DeleteCardEventParameters,
|
|
26755
|
+
NoteTaker
|
|
26756
|
+
>;
|
|
26576
26757
|
|
|
26577
26758
|
export interface NoteTaker$EditCardEventParameters {
|
|
26578
26759
|
/**
|
|
@@ -26611,7 +26792,10 @@ declare module "sap/suite/ui/commons/NoteTaker" {
|
|
|
26611
26792
|
tags?: object;
|
|
26612
26793
|
}
|
|
26613
26794
|
|
|
26614
|
-
export type NoteTaker$EditCardEvent = Event<
|
|
26795
|
+
export type NoteTaker$EditCardEvent = Event<
|
|
26796
|
+
NoteTaker$EditCardEventParameters,
|
|
26797
|
+
NoteTaker
|
|
26798
|
+
>;
|
|
26615
26799
|
}
|
|
26616
26800
|
|
|
26617
26801
|
declare module "sap/suite/ui/commons/NoteTakerCard" {
|
|
@@ -27315,7 +27499,10 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
|
|
|
27315
27499
|
filename?: string;
|
|
27316
27500
|
}
|
|
27317
27501
|
|
|
27318
|
-
export type NoteTakerCard$AttachmentClickEvent = Event<
|
|
27502
|
+
export type NoteTakerCard$AttachmentClickEvent = Event<
|
|
27503
|
+
NoteTakerCard$AttachmentClickEventParameters,
|
|
27504
|
+
NoteTakerCard
|
|
27505
|
+
>;
|
|
27319
27506
|
|
|
27320
27507
|
export interface NoteTakerCard$DeleteNoteEventParameters {
|
|
27321
27508
|
/**
|
|
@@ -27354,7 +27541,10 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
|
|
|
27354
27541
|
thumbDown?: boolean;
|
|
27355
27542
|
}
|
|
27356
27543
|
|
|
27357
|
-
export type NoteTakerCard$DeleteNoteEvent = Event<
|
|
27544
|
+
export type NoteTakerCard$DeleteNoteEvent = Event<
|
|
27545
|
+
NoteTakerCard$DeleteNoteEventParameters,
|
|
27546
|
+
NoteTakerCard
|
|
27547
|
+
>;
|
|
27358
27548
|
|
|
27359
27549
|
export interface NoteTakerCard$EditNoteEventParameters {
|
|
27360
27550
|
/**
|
|
@@ -27393,7 +27583,10 @@ declare module "sap/suite/ui/commons/NoteTakerCard" {
|
|
|
27393
27583
|
tags?: object;
|
|
27394
27584
|
}
|
|
27395
27585
|
|
|
27396
|
-
export type NoteTakerCard$EditNoteEvent = Event<
|
|
27586
|
+
export type NoteTakerCard$EditNoteEvent = Event<
|
|
27587
|
+
NoteTakerCard$EditNoteEventParameters,
|
|
27588
|
+
NoteTakerCard
|
|
27589
|
+
>;
|
|
27397
27590
|
}
|
|
27398
27591
|
|
|
27399
27592
|
declare module "sap/suite/ui/commons/NoteTakerFeeder" {
|
|
@@ -28138,7 +28331,10 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
|
|
|
28138
28331
|
attachmentFilename?: string;
|
|
28139
28332
|
}
|
|
28140
28333
|
|
|
28141
|
-
export type NoteTakerFeeder$AddNoteEvent = Event<
|
|
28334
|
+
export type NoteTakerFeeder$AddNoteEvent = Event<
|
|
28335
|
+
NoteTakerFeeder$AddNoteEventParameters,
|
|
28336
|
+
NoteTakerFeeder
|
|
28337
|
+
>;
|
|
28142
28338
|
|
|
28143
28339
|
export interface NoteTakerFeeder$AttachmentClickEventParameters {
|
|
28144
28340
|
/**
|
|
@@ -28147,7 +28343,10 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
|
|
|
28147
28343
|
filename?: string;
|
|
28148
28344
|
}
|
|
28149
28345
|
|
|
28150
|
-
export type NoteTakerFeeder$AttachmentClickEvent = Event<
|
|
28346
|
+
export type NoteTakerFeeder$AttachmentClickEvent = Event<
|
|
28347
|
+
NoteTakerFeeder$AttachmentClickEventParameters,
|
|
28348
|
+
NoteTakerFeeder
|
|
28349
|
+
>;
|
|
28151
28350
|
|
|
28152
28351
|
export interface NoteTakerFeeder$AttachmentDeleteEventParameters {
|
|
28153
28352
|
/**
|
|
@@ -28156,7 +28355,10 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
|
|
|
28156
28355
|
filename?: string;
|
|
28157
28356
|
}
|
|
28158
28357
|
|
|
28159
|
-
export type NoteTakerFeeder$AttachmentDeleteEvent = Event<
|
|
28358
|
+
export type NoteTakerFeeder$AttachmentDeleteEvent = Event<
|
|
28359
|
+
NoteTakerFeeder$AttachmentDeleteEventParameters,
|
|
28360
|
+
NoteTakerFeeder
|
|
28361
|
+
>;
|
|
28160
28362
|
|
|
28161
28363
|
export interface NoteTakerFeeder$AttachmentSelectEventParameters {
|
|
28162
28364
|
/**
|
|
@@ -28165,7 +28367,10 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
|
|
|
28165
28367
|
filename?: string;
|
|
28166
28368
|
}
|
|
28167
28369
|
|
|
28168
|
-
export type NoteTakerFeeder$AttachmentSelectEvent = Event<
|
|
28370
|
+
export type NoteTakerFeeder$AttachmentSelectEvent = Event<
|
|
28371
|
+
NoteTakerFeeder$AttachmentSelectEventParameters,
|
|
28372
|
+
NoteTakerFeeder
|
|
28373
|
+
>;
|
|
28169
28374
|
|
|
28170
28375
|
export interface NoteTakerFeeder$AttachmentUploadCompleteEventParameters {
|
|
28171
28376
|
/**
|
|
@@ -28176,7 +28381,10 @@ declare module "sap/suite/ui/commons/NoteTakerFeeder" {
|
|
|
28176
28381
|
response?: string;
|
|
28177
28382
|
}
|
|
28178
28383
|
|
|
28179
|
-
export type NoteTakerFeeder$AttachmentUploadCompleteEvent = Event<
|
|
28384
|
+
export type NoteTakerFeeder$AttachmentUploadCompleteEvent = Event<
|
|
28385
|
+
NoteTakerFeeder$AttachmentUploadCompleteEventParameters,
|
|
28386
|
+
NoteTakerFeeder
|
|
28387
|
+
>;
|
|
28180
28388
|
}
|
|
28181
28389
|
|
|
28182
28390
|
declare module "sap/suite/ui/commons/NumericTile" {
|
|
@@ -29535,7 +29743,10 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
|
|
|
29535
29743
|
oEvent?: object;
|
|
29536
29744
|
}
|
|
29537
29745
|
|
|
29538
|
-
export type ProcessFlow$HeaderPressEvent = Event<
|
|
29746
|
+
export type ProcessFlow$HeaderPressEvent = Event<
|
|
29747
|
+
ProcessFlow$HeaderPressEventParameters,
|
|
29748
|
+
ProcessFlow
|
|
29749
|
+
>;
|
|
29539
29750
|
|
|
29540
29751
|
export interface ProcessFlow$LabelPressEventParameters {
|
|
29541
29752
|
/**
|
|
@@ -29544,7 +29755,10 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
|
|
|
29544
29755
|
oEvent?: object;
|
|
29545
29756
|
}
|
|
29546
29757
|
|
|
29547
|
-
export type ProcessFlow$LabelPressEvent = Event<
|
|
29758
|
+
export type ProcessFlow$LabelPressEvent = Event<
|
|
29759
|
+
ProcessFlow$LabelPressEventParameters,
|
|
29760
|
+
ProcessFlow
|
|
29761
|
+
>;
|
|
29548
29762
|
|
|
29549
29763
|
export interface ProcessFlow$NodePressEventParameters {
|
|
29550
29764
|
/**
|
|
@@ -29553,7 +29767,10 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
|
|
|
29553
29767
|
oEvent?: object;
|
|
29554
29768
|
}
|
|
29555
29769
|
|
|
29556
|
-
export type ProcessFlow$NodePressEvent = Event<
|
|
29770
|
+
export type ProcessFlow$NodePressEvent = Event<
|
|
29771
|
+
ProcessFlow$NodePressEventParameters,
|
|
29772
|
+
ProcessFlow
|
|
29773
|
+
>;
|
|
29557
29774
|
|
|
29558
29775
|
export interface ProcessFlow$NodeTitlePressEventParameters {
|
|
29559
29776
|
/**
|
|
@@ -29562,7 +29779,10 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
|
|
|
29562
29779
|
oEvent?: object;
|
|
29563
29780
|
}
|
|
29564
29781
|
|
|
29565
|
-
export type ProcessFlow$NodeTitlePressEvent = Event<
|
|
29782
|
+
export type ProcessFlow$NodeTitlePressEvent = Event<
|
|
29783
|
+
ProcessFlow$NodeTitlePressEventParameters,
|
|
29784
|
+
ProcessFlow
|
|
29785
|
+
>;
|
|
29566
29786
|
|
|
29567
29787
|
export interface ProcessFlow$OnErrorEventParameters {
|
|
29568
29788
|
/**
|
|
@@ -29571,7 +29791,10 @@ declare module "sap/suite/ui/commons/ProcessFlow" {
|
|
|
29571
29791
|
oEvent?: object;
|
|
29572
29792
|
}
|
|
29573
29793
|
|
|
29574
|
-
export type ProcessFlow$OnErrorEvent = Event<
|
|
29794
|
+
export type ProcessFlow$OnErrorEvent = Event<
|
|
29795
|
+
ProcessFlow$OnErrorEventParameters,
|
|
29796
|
+
ProcessFlow
|
|
29797
|
+
>;
|
|
29575
29798
|
}
|
|
29576
29799
|
|
|
29577
29800
|
declare module "sap/suite/ui/commons/ProcessFlowConnection" {
|
|
@@ -30347,7 +30570,10 @@ declare module "sap/suite/ui/commons/ProcessFlowLaneHeader" {
|
|
|
30347
30570
|
oEvent?: object;
|
|
30348
30571
|
}
|
|
30349
30572
|
|
|
30350
|
-
export type ProcessFlowLaneHeader$PressEvent = Event<
|
|
30573
|
+
export type ProcessFlowLaneHeader$PressEvent = Event<
|
|
30574
|
+
ProcessFlowLaneHeader$PressEventParameters,
|
|
30575
|
+
ProcessFlowLaneHeader
|
|
30576
|
+
>;
|
|
30351
30577
|
}
|
|
30352
30578
|
|
|
30353
30579
|
declare module "sap/suite/ui/commons/ProcessFlowNode" {
|
|
@@ -31295,7 +31521,10 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
|
|
|
31295
31521
|
oEvent?: object;
|
|
31296
31522
|
}
|
|
31297
31523
|
|
|
31298
|
-
export type ProcessFlowNode$PressEvent = Event<
|
|
31524
|
+
export type ProcessFlowNode$PressEvent = Event<
|
|
31525
|
+
ProcessFlowNode$PressEventParameters,
|
|
31526
|
+
ProcessFlowNode
|
|
31527
|
+
>;
|
|
31299
31528
|
|
|
31300
31529
|
export interface ProcessFlowNode$TitlePressEventParameters {
|
|
31301
31530
|
/**
|
|
@@ -31304,7 +31533,10 @@ declare module "sap/suite/ui/commons/ProcessFlowNode" {
|
|
|
31304
31533
|
oEvent?: object;
|
|
31305
31534
|
}
|
|
31306
31535
|
|
|
31307
|
-
export type ProcessFlowNode$TitlePressEvent = Event<
|
|
31536
|
+
export type ProcessFlowNode$TitlePressEvent = Event<
|
|
31537
|
+
ProcessFlowNode$TitlePressEventParameters,
|
|
31538
|
+
ProcessFlowNode
|
|
31539
|
+
>;
|
|
31308
31540
|
}
|
|
31309
31541
|
|
|
31310
31542
|
declare module "sap/suite/ui/commons/RepeaterViewConfiguration" {
|
|
@@ -33454,7 +33686,10 @@ declare module "sap/suite/ui/commons/statusindicator/LibraryShape" {
|
|
|
33454
33686
|
|
|
33455
33687
|
export interface LibraryShape$AfterShapeLoadedEventParameters {}
|
|
33456
33688
|
|
|
33457
|
-
export type LibraryShape$AfterShapeLoadedEvent = Event<
|
|
33689
|
+
export type LibraryShape$AfterShapeLoadedEvent = Event<
|
|
33690
|
+
LibraryShape$AfterShapeLoadedEventParameters,
|
|
33691
|
+
LibraryShape
|
|
33692
|
+
>;
|
|
33458
33693
|
}
|
|
33459
33694
|
|
|
33460
33695
|
declare module "sap/suite/ui/commons/statusindicator/Path" {
|
|
@@ -35685,7 +35920,10 @@ declare module "sap/suite/ui/commons/statusindicator/StatusIndicator" {
|
|
|
35685
35920
|
|
|
35686
35921
|
export interface StatusIndicator$PressEventParameters {}
|
|
35687
35922
|
|
|
35688
|
-
export type StatusIndicator$PressEvent = Event<
|
|
35923
|
+
export type StatusIndicator$PressEvent = Event<
|
|
35924
|
+
StatusIndicator$PressEventParameters,
|
|
35925
|
+
StatusIndicator
|
|
35926
|
+
>;
|
|
35689
35927
|
}
|
|
35690
35928
|
|
|
35691
35929
|
declare module "sap/suite/ui/commons/taccount/TAccount" {
|
|
@@ -36808,7 +37046,10 @@ declare module "sap/suite/ui/commons/taccount/TAccountItem" {
|
|
|
36808
37046
|
|
|
36809
37047
|
export interface TAccountItem$PressEventParameters {}
|
|
36810
37048
|
|
|
36811
|
-
export type TAccountItem$PressEvent = Event<
|
|
37049
|
+
export type TAccountItem$PressEvent = Event<
|
|
37050
|
+
TAccountItem$PressEventParameters,
|
|
37051
|
+
TAccountItem
|
|
37052
|
+
>;
|
|
36812
37053
|
}
|
|
36813
37054
|
|
|
36814
37055
|
declare module "sap/suite/ui/commons/taccount/TAccountItemProperty" {
|
|
@@ -37604,7 +37845,10 @@ declare module "sap/suite/ui/commons/taccount/TAccountPanel" {
|
|
|
37604
37845
|
properties?: object;
|
|
37605
37846
|
}
|
|
37606
37847
|
|
|
37607
|
-
export type TAccountPanel$SettingsAppliedEvent = Event<
|
|
37848
|
+
export type TAccountPanel$SettingsAppliedEvent = Event<
|
|
37849
|
+
TAccountPanel$SettingsAppliedEventParameters,
|
|
37850
|
+
TAccountPanel
|
|
37851
|
+
>;
|
|
37608
37852
|
|
|
37609
37853
|
export interface TAccountPanel$StateChangedEventParameters {
|
|
37610
37854
|
/**
|
|
@@ -37615,7 +37859,10 @@ declare module "sap/suite/ui/commons/taccount/TAccountPanel" {
|
|
|
37615
37859
|
| keyof typeof taccount.TAccountPanelState;
|
|
37616
37860
|
}
|
|
37617
37861
|
|
|
37618
|
-
export type TAccountPanel$StateChangedEvent = Event<
|
|
37862
|
+
export type TAccountPanel$StateChangedEvent = Event<
|
|
37863
|
+
TAccountPanel$StateChangedEventParameters,
|
|
37864
|
+
TAccountPanel
|
|
37865
|
+
>;
|
|
37619
37866
|
}
|
|
37620
37867
|
|
|
37621
37868
|
declare module "sap/suite/ui/commons/TargetFilter" {
|
|
@@ -38140,15 +38387,24 @@ declare module "sap/suite/ui/commons/TargetFilter" {
|
|
|
38140
38387
|
|
|
38141
38388
|
export interface TargetFilter$CancelEventParameters {}
|
|
38142
38389
|
|
|
38143
|
-
export type TargetFilter$CancelEvent = Event<
|
|
38390
|
+
export type TargetFilter$CancelEvent = Event<
|
|
38391
|
+
TargetFilter$CancelEventParameters,
|
|
38392
|
+
TargetFilter
|
|
38393
|
+
>;
|
|
38144
38394
|
|
|
38145
38395
|
export interface TargetFilter$FilterChangeEventParameters {}
|
|
38146
38396
|
|
|
38147
|
-
export type TargetFilter$FilterChangeEvent = Event<
|
|
38397
|
+
export type TargetFilter$FilterChangeEvent = Event<
|
|
38398
|
+
TargetFilter$FilterChangeEventParameters,
|
|
38399
|
+
TargetFilter
|
|
38400
|
+
>;
|
|
38148
38401
|
|
|
38149
38402
|
export interface TargetFilter$SearchEventParameters {}
|
|
38150
38403
|
|
|
38151
|
-
export type TargetFilter$SearchEvent = Event<
|
|
38404
|
+
export type TargetFilter$SearchEvent = Event<
|
|
38405
|
+
TargetFilter$SearchEventParameters,
|
|
38406
|
+
TargetFilter
|
|
38407
|
+
>;
|
|
38152
38408
|
}
|
|
38153
38409
|
|
|
38154
38410
|
declare module "sap/suite/ui/commons/TargetFilterColumn" {
|
|
@@ -42295,15 +42551,24 @@ declare module "sap/suite/ui/commons/Timeline" {
|
|
|
42295
42551
|
value?: string;
|
|
42296
42552
|
}
|
|
42297
42553
|
|
|
42298
|
-
export type Timeline$AddPostEvent = Event<
|
|
42554
|
+
export type Timeline$AddPostEvent = Event<
|
|
42555
|
+
Timeline$AddPostEventParameters,
|
|
42556
|
+
Timeline
|
|
42557
|
+
>;
|
|
42299
42558
|
|
|
42300
42559
|
export interface Timeline$CustomMessageClosedEventParameters {}
|
|
42301
42560
|
|
|
42302
|
-
export type Timeline$CustomMessageClosedEvent = Event<
|
|
42561
|
+
export type Timeline$CustomMessageClosedEvent = Event<
|
|
42562
|
+
Timeline$CustomMessageClosedEventParameters,
|
|
42563
|
+
Timeline
|
|
42564
|
+
>;
|
|
42303
42565
|
|
|
42304
42566
|
export interface Timeline$FilterOpenEventParameters {}
|
|
42305
42567
|
|
|
42306
|
-
export type Timeline$FilterOpenEvent = Event<
|
|
42568
|
+
export type Timeline$FilterOpenEvent = Event<
|
|
42569
|
+
Timeline$FilterOpenEventParameters,
|
|
42570
|
+
Timeline
|
|
42571
|
+
>;
|
|
42307
42572
|
|
|
42308
42573
|
export interface Timeline$FilterSelectionChangeEventParameters {
|
|
42309
42574
|
/**
|
|
@@ -42337,11 +42602,17 @@ declare module "sap/suite/ui/commons/Timeline" {
|
|
|
42337
42602
|
clear?: boolean;
|
|
42338
42603
|
}
|
|
42339
42604
|
|
|
42340
|
-
export type Timeline$FilterSelectionChangeEvent = Event<
|
|
42605
|
+
export type Timeline$FilterSelectionChangeEvent = Event<
|
|
42606
|
+
Timeline$FilterSelectionChangeEventParameters,
|
|
42607
|
+
Timeline
|
|
42608
|
+
>;
|
|
42341
42609
|
|
|
42342
42610
|
export interface Timeline$GrowEventParameters {}
|
|
42343
42611
|
|
|
42344
|
-
export type Timeline$GrowEvent = Event<
|
|
42612
|
+
export type Timeline$GrowEvent = Event<
|
|
42613
|
+
Timeline$GrowEventParameters,
|
|
42614
|
+
Timeline
|
|
42615
|
+
>;
|
|
42345
42616
|
|
|
42346
42617
|
export interface Timeline$ItemFilteringEventParameters {
|
|
42347
42618
|
/**
|
|
@@ -42372,7 +42643,10 @@ declare module "sap/suite/ui/commons/Timeline" {
|
|
|
42372
42643
|
searchTerm?: string;
|
|
42373
42644
|
}
|
|
42374
42645
|
|
|
42375
|
-
export type Timeline$ItemFilteringEvent = Event<
|
|
42646
|
+
export type Timeline$ItemFilteringEvent = Event<
|
|
42647
|
+
Timeline$ItemFilteringEventParameters,
|
|
42648
|
+
Timeline
|
|
42649
|
+
>;
|
|
42376
42650
|
|
|
42377
42651
|
export interface Timeline$SelectEventParameters {
|
|
42378
42652
|
/**
|
|
@@ -42391,7 +42665,10 @@ declare module "sap/suite/ui/commons/Timeline" {
|
|
|
42391
42665
|
userAction?: boolean;
|
|
42392
42666
|
}
|
|
42393
42667
|
|
|
42394
|
-
export type Timeline$SelectEvent = Event<
|
|
42668
|
+
export type Timeline$SelectEvent = Event<
|
|
42669
|
+
Timeline$SelectEventParameters,
|
|
42670
|
+
Timeline
|
|
42671
|
+
>;
|
|
42395
42672
|
|
|
42396
42673
|
export interface Timeline$SuggestEventParameters {
|
|
42397
42674
|
/**
|
|
@@ -42400,7 +42677,10 @@ declare module "sap/suite/ui/commons/Timeline" {
|
|
|
42400
42677
|
suggestValue?: string;
|
|
42401
42678
|
}
|
|
42402
42679
|
|
|
42403
|
-
export type Timeline$SuggestEvent = Event<
|
|
42680
|
+
export type Timeline$SuggestEvent = Event<
|
|
42681
|
+
Timeline$SuggestEventParameters,
|
|
42682
|
+
Timeline
|
|
42683
|
+
>;
|
|
42404
42684
|
|
|
42405
42685
|
export interface Timeline$SuggestionItemSelectedEventParameters {
|
|
42406
42686
|
/**
|
|
@@ -42409,7 +42689,10 @@ declare module "sap/suite/ui/commons/Timeline" {
|
|
|
42409
42689
|
selectedItem?: Item;
|
|
42410
42690
|
}
|
|
42411
42691
|
|
|
42412
|
-
export type Timeline$SuggestionItemSelectedEvent = Event<
|
|
42692
|
+
export type Timeline$SuggestionItemSelectedEvent = Event<
|
|
42693
|
+
Timeline$SuggestionItemSelectedEventParameters,
|
|
42694
|
+
Timeline
|
|
42695
|
+
>;
|
|
42413
42696
|
}
|
|
42414
42697
|
|
|
42415
42698
|
declare module "sap/suite/ui/commons/TimelineFilterListItem" {
|
|
@@ -44228,15 +44511,24 @@ declare module "sap/suite/ui/commons/TimelineItem" {
|
|
|
44228
44511
|
linkObj?: Link;
|
|
44229
44512
|
}
|
|
44230
44513
|
|
|
44231
|
-
export type TimelineItem$CustomActionClickedEvent = Event<
|
|
44514
|
+
export type TimelineItem$CustomActionClickedEvent = Event<
|
|
44515
|
+
TimelineItem$CustomActionClickedEventParameters,
|
|
44516
|
+
TimelineItem
|
|
44517
|
+
>;
|
|
44232
44518
|
|
|
44233
44519
|
export interface TimelineItem$PressEventParameters {}
|
|
44234
44520
|
|
|
44235
|
-
export type TimelineItem$PressEvent = Event<
|
|
44521
|
+
export type TimelineItem$PressEvent = Event<
|
|
44522
|
+
TimelineItem$PressEventParameters,
|
|
44523
|
+
TimelineItem
|
|
44524
|
+
>;
|
|
44236
44525
|
|
|
44237
44526
|
export interface TimelineItem$ReplyListOpenEventParameters {}
|
|
44238
44527
|
|
|
44239
|
-
export type TimelineItem$ReplyListOpenEvent = Event<
|
|
44528
|
+
export type TimelineItem$ReplyListOpenEvent = Event<
|
|
44529
|
+
TimelineItem$ReplyListOpenEventParameters,
|
|
44530
|
+
TimelineItem
|
|
44531
|
+
>;
|
|
44240
44532
|
|
|
44241
44533
|
export interface TimelineItem$ReplyPostEventParameters {
|
|
44242
44534
|
/**
|
|
@@ -44245,11 +44537,17 @@ declare module "sap/suite/ui/commons/TimelineItem" {
|
|
|
44245
44537
|
value?: string;
|
|
44246
44538
|
}
|
|
44247
44539
|
|
|
44248
|
-
export type TimelineItem$ReplyPostEvent = Event<
|
|
44540
|
+
export type TimelineItem$ReplyPostEvent = Event<
|
|
44541
|
+
TimelineItem$ReplyPostEventParameters,
|
|
44542
|
+
TimelineItem
|
|
44543
|
+
>;
|
|
44249
44544
|
|
|
44250
44545
|
export interface TimelineItem$SelectEventParameters {}
|
|
44251
44546
|
|
|
44252
|
-
export type TimelineItem$SelectEvent = Event<
|
|
44547
|
+
export type TimelineItem$SelectEvent = Event<
|
|
44548
|
+
TimelineItem$SelectEventParameters,
|
|
44549
|
+
TimelineItem
|
|
44550
|
+
>;
|
|
44253
44551
|
|
|
44254
44552
|
export interface TimelineItem$SuggestEventParameters {
|
|
44255
44553
|
/**
|
|
@@ -44258,7 +44556,10 @@ declare module "sap/suite/ui/commons/TimelineItem" {
|
|
|
44258
44556
|
suggestValue?: string;
|
|
44259
44557
|
}
|
|
44260
44558
|
|
|
44261
|
-
export type TimelineItem$SuggestEvent = Event<
|
|
44559
|
+
export type TimelineItem$SuggestEvent = Event<
|
|
44560
|
+
TimelineItem$SuggestEventParameters,
|
|
44561
|
+
TimelineItem
|
|
44562
|
+
>;
|
|
44262
44563
|
|
|
44263
44564
|
export interface TimelineItem$SuggestionItemSelectedEventParameters {
|
|
44264
44565
|
/**
|
|
@@ -44267,7 +44568,10 @@ declare module "sap/suite/ui/commons/TimelineItem" {
|
|
|
44267
44568
|
selectedItem?: Item;
|
|
44268
44569
|
}
|
|
44269
44570
|
|
|
44270
|
-
export type TimelineItem$SuggestionItemSelectedEvent = Event<
|
|
44571
|
+
export type TimelineItem$SuggestionItemSelectedEvent = Event<
|
|
44572
|
+
TimelineItem$SuggestionItemSelectedEventParameters,
|
|
44573
|
+
TimelineItem
|
|
44574
|
+
>;
|
|
44271
44575
|
|
|
44272
44576
|
export interface TimelineItem$UserNameClickedEventParameters {
|
|
44273
44577
|
/**
|
|
@@ -44276,7 +44580,10 @@ declare module "sap/suite/ui/commons/TimelineItem" {
|
|
|
44276
44580
|
uiElement?: Control;
|
|
44277
44581
|
}
|
|
44278
44582
|
|
|
44279
|
-
export type TimelineItem$UserNameClickedEvent = Event<
|
|
44583
|
+
export type TimelineItem$UserNameClickedEvent = Event<
|
|
44584
|
+
TimelineItem$UserNameClickedEventParameters,
|
|
44585
|
+
TimelineItem
|
|
44586
|
+
>;
|
|
44280
44587
|
}
|
|
44281
44588
|
|
|
44282
44589
|
declare module "sap/suite/ui/commons/TimelineNavigator" {
|
|
@@ -46013,7 +46320,10 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
|
|
|
46013
46320
|
caller?: object;
|
|
46014
46321
|
}
|
|
46015
46322
|
|
|
46016
|
-
export type UnifiedThingInspector$ActionsButtonPressEvent = Event<
|
|
46323
|
+
export type UnifiedThingInspector$ActionsButtonPressEvent = Event<
|
|
46324
|
+
UnifiedThingInspector$ActionsButtonPressEventParameters,
|
|
46325
|
+
UnifiedThingInspector
|
|
46326
|
+
>;
|
|
46017
46327
|
|
|
46018
46328
|
export interface UnifiedThingInspector$AfterNavigateEventParameters {
|
|
46019
46329
|
/**
|
|
@@ -46068,11 +46378,17 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
|
|
|
46068
46378
|
direction?: string;
|
|
46069
46379
|
}
|
|
46070
46380
|
|
|
46071
|
-
export type UnifiedThingInspector$AfterNavigateEvent = Event<
|
|
46381
|
+
export type UnifiedThingInspector$AfterNavigateEvent = Event<
|
|
46382
|
+
UnifiedThingInspector$AfterNavigateEventParameters,
|
|
46383
|
+
UnifiedThingInspector
|
|
46384
|
+
>;
|
|
46072
46385
|
|
|
46073
46386
|
export interface UnifiedThingInspector$BackActionEventParameters {}
|
|
46074
46387
|
|
|
46075
|
-
export type UnifiedThingInspector$BackActionEvent = Event<
|
|
46388
|
+
export type UnifiedThingInspector$BackActionEvent = Event<
|
|
46389
|
+
UnifiedThingInspector$BackActionEventParameters,
|
|
46390
|
+
UnifiedThingInspector
|
|
46391
|
+
>;
|
|
46076
46392
|
|
|
46077
46393
|
export interface UnifiedThingInspector$ConfigurationButtonPressEventParameters {
|
|
46078
46394
|
/**
|
|
@@ -46081,7 +46397,10 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
|
|
|
46081
46397
|
caller?: object;
|
|
46082
46398
|
}
|
|
46083
46399
|
|
|
46084
|
-
export type UnifiedThingInspector$ConfigurationButtonPressEvent = Event<
|
|
46400
|
+
export type UnifiedThingInspector$ConfigurationButtonPressEvent = Event<
|
|
46401
|
+
UnifiedThingInspector$ConfigurationButtonPressEventParameters,
|
|
46402
|
+
UnifiedThingInspector
|
|
46403
|
+
>;
|
|
46085
46404
|
|
|
46086
46405
|
export interface UnifiedThingInspector$NavigateEventParameters {
|
|
46087
46406
|
/**
|
|
@@ -46136,7 +46455,10 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
|
|
|
46136
46455
|
direction?: string;
|
|
46137
46456
|
}
|
|
46138
46457
|
|
|
46139
|
-
export type UnifiedThingInspector$NavigateEvent = Event<
|
|
46458
|
+
export type UnifiedThingInspector$NavigateEvent = Event<
|
|
46459
|
+
UnifiedThingInspector$NavigateEventParameters,
|
|
46460
|
+
UnifiedThingInspector
|
|
46461
|
+
>;
|
|
46140
46462
|
|
|
46141
46463
|
export interface UnifiedThingInspector$TransactionsButtonPressEventParameters {
|
|
46142
46464
|
/**
|
|
@@ -46145,7 +46467,10 @@ declare module "sap/suite/ui/commons/UnifiedThingInspector" {
|
|
|
46145
46467
|
caller?: object;
|
|
46146
46468
|
}
|
|
46147
46469
|
|
|
46148
|
-
export type UnifiedThingInspector$TransactionsButtonPressEvent = Event<
|
|
46470
|
+
export type UnifiedThingInspector$TransactionsButtonPressEvent = Event<
|
|
46471
|
+
UnifiedThingInspector$TransactionsButtonPressEventParameters,
|
|
46472
|
+
UnifiedThingInspector
|
|
46473
|
+
>;
|
|
46149
46474
|
}
|
|
46150
46475
|
|
|
46151
46476
|
declare module "sap/suite/ui/commons/util/HtmlElement" {
|
|
@@ -47286,7 +47611,10 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
|
|
|
47286
47611
|
page?: int;
|
|
47287
47612
|
}
|
|
47288
47613
|
|
|
47289
|
-
export type ViewRepeater$ChangeViewEvent = Event<
|
|
47614
|
+
export type ViewRepeater$ChangeViewEvent = Event<
|
|
47615
|
+
ViewRepeater$ChangeViewEventParameters,
|
|
47616
|
+
ViewRepeater
|
|
47617
|
+
>;
|
|
47290
47618
|
|
|
47291
47619
|
export interface ViewRepeater$SearchEventParameters {
|
|
47292
47620
|
/**
|
|
@@ -47295,7 +47623,10 @@ declare module "sap/suite/ui/commons/ViewRepeater" {
|
|
|
47295
47623
|
query?: string;
|
|
47296
47624
|
}
|
|
47297
47625
|
|
|
47298
|
-
export type ViewRepeater$SearchEvent = Event<
|
|
47626
|
+
export type ViewRepeater$SearchEvent = Event<
|
|
47627
|
+
ViewRepeater$SearchEventParameters,
|
|
47628
|
+
ViewRepeater
|
|
47629
|
+
>;
|
|
47299
47630
|
}
|
|
47300
47631
|
|
|
47301
47632
|
declare namespace sap {
|