@openui5/types 1.120.11 → 1.120.13
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/sap.f.d.ts +372 -54
- package/types/sap.m.d.ts +3123 -276
- package/types/sap.tnt.d.ts +40 -8
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +756 -90
- package/types/sap.ui.core.d.ts +1112 -135
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +44 -3
- package/types/sap.ui.integration.d.ts +144 -6
- package/types/sap.ui.layout.d.ts +166 -41
- package/types/sap.ui.mdc.d.ts +430 -38
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +222 -19
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +431 -35
- package/types/sap.ui.ux3.d.ts +524 -31
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +118 -18
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/fiori/library" {
|
|
4
4
|
/**
|
|
@@ -1285,7 +1285,11 @@ declare module "sap/ui/webc/fiori/Bar" {
|
|
|
1285
1285
|
sWidth: CSSSize
|
|
1286
1286
|
): this;
|
|
1287
1287
|
}
|
|
1288
|
-
|
|
1288
|
+
/**
|
|
1289
|
+
* Describes the settings that can be provided to the Bar constructor.
|
|
1290
|
+
*
|
|
1291
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1292
|
+
*/
|
|
1289
1293
|
export interface $BarSettings extends $WebComponentSettings {
|
|
1290
1294
|
/**
|
|
1291
1295
|
* Defines the component's design.
|
|
@@ -1581,7 +1585,11 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1581
1585
|
*/
|
|
1582
1586
|
show(): void;
|
|
1583
1587
|
}
|
|
1584
|
-
|
|
1588
|
+
/**
|
|
1589
|
+
* Describes the settings that can be provided to the BarcodeScannerDialog constructor.
|
|
1590
|
+
*
|
|
1591
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
1592
|
+
*/
|
|
1585
1593
|
export interface $BarcodeScannerDialogSettings extends $WebComponentSettings {
|
|
1586
1594
|
/**
|
|
1587
1595
|
* Fires when the scan fails with error.
|
|
@@ -1594,6 +1602,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1594
1602
|
scanSuccess?: (oEvent: BarcodeScannerDialog$ScanSuccessEvent) => void;
|
|
1595
1603
|
}
|
|
1596
1604
|
|
|
1605
|
+
/**
|
|
1606
|
+
* Parameters of the BarcodeScannerDialog#scanError event.
|
|
1607
|
+
*/
|
|
1597
1608
|
export interface BarcodeScannerDialog$ScanErrorEventParameters {
|
|
1598
1609
|
/**
|
|
1599
1610
|
* the error message
|
|
@@ -1601,11 +1612,17 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1601
1612
|
message?: string;
|
|
1602
1613
|
}
|
|
1603
1614
|
|
|
1615
|
+
/**
|
|
1616
|
+
* Event object of the BarcodeScannerDialog#scanError event.
|
|
1617
|
+
*/
|
|
1604
1618
|
export type BarcodeScannerDialog$ScanErrorEvent = Event<
|
|
1605
1619
|
BarcodeScannerDialog$ScanErrorEventParameters,
|
|
1606
1620
|
BarcodeScannerDialog
|
|
1607
1621
|
>;
|
|
1608
1622
|
|
|
1623
|
+
/**
|
|
1624
|
+
* Parameters of the BarcodeScannerDialog#scanSuccess event.
|
|
1625
|
+
*/
|
|
1609
1626
|
export interface BarcodeScannerDialog$ScanSuccessEventParameters {
|
|
1610
1627
|
/**
|
|
1611
1628
|
* the scan result as string
|
|
@@ -1618,6 +1635,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1618
1635
|
rawBytes?: object;
|
|
1619
1636
|
}
|
|
1620
1637
|
|
|
1638
|
+
/**
|
|
1639
|
+
* Event object of the BarcodeScannerDialog#scanSuccess event.
|
|
1640
|
+
*/
|
|
1621
1641
|
export type BarcodeScannerDialog$ScanSuccessEvent = Event<
|
|
1622
1642
|
BarcodeScannerDialog$ScanSuccessEventParameters,
|
|
1623
1643
|
BarcodeScannerDialog
|
|
@@ -2259,7 +2279,11 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2259
2279
|
*/
|
|
2260
2280
|
toggleContents(): void;
|
|
2261
2281
|
}
|
|
2262
|
-
|
|
2282
|
+
/**
|
|
2283
|
+
* Describes the settings that can be provided to the DynamicSideContent constructor.
|
|
2284
|
+
*
|
|
2285
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
2286
|
+
*/
|
|
2263
2287
|
export interface $DynamicSideContentSettings extends $WebComponentSettings {
|
|
2264
2288
|
/**
|
|
2265
2289
|
* Defines whether the component is in equal split mode. In this mode, the side and the main content take
|
|
@@ -2348,6 +2372,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2348
2372
|
layoutChange?: (oEvent: DynamicSideContent$LayoutChangeEvent) => void;
|
|
2349
2373
|
}
|
|
2350
2374
|
|
|
2375
|
+
/**
|
|
2376
|
+
* Parameters of the DynamicSideContent#layoutChange event.
|
|
2377
|
+
*/
|
|
2351
2378
|
export interface DynamicSideContent$LayoutChangeEventParameters {
|
|
2352
2379
|
/**
|
|
2353
2380
|
* the current breakpoint.
|
|
@@ -2370,6 +2397,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2370
2397
|
sideContentVisible?: boolean;
|
|
2371
2398
|
}
|
|
2372
2399
|
|
|
2400
|
+
/**
|
|
2401
|
+
* Event object of the DynamicSideContent#layoutChange event.
|
|
2402
|
+
*/
|
|
2373
2403
|
export type DynamicSideContent$LayoutChangeEvent = Event<
|
|
2374
2404
|
DynamicSideContent$LayoutChangeEventParameters,
|
|
2375
2405
|
DynamicSideContent
|
|
@@ -2599,7 +2629,11 @@ declare module "sap/ui/webc/fiori/FilterItem" {
|
|
|
2599
2629
|
sText?: string
|
|
2600
2630
|
): this;
|
|
2601
2631
|
}
|
|
2602
|
-
|
|
2632
|
+
/**
|
|
2633
|
+
* Describes the settings that can be provided to the FilterItem constructor.
|
|
2634
|
+
*
|
|
2635
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
2636
|
+
*/
|
|
2603
2637
|
export interface $FilterItemSettings extends $WebComponentSettings {
|
|
2604
2638
|
/**
|
|
2605
2639
|
* Defines the additional text of the component.
|
|
@@ -2767,7 +2801,11 @@ declare module "sap/ui/webc/fiori/FilterItemOption" {
|
|
|
2767
2801
|
sText?: string
|
|
2768
2802
|
): this;
|
|
2769
2803
|
}
|
|
2770
|
-
|
|
2804
|
+
/**
|
|
2805
|
+
* Describes the settings that can be provided to the FilterItemOption constructor.
|
|
2806
|
+
*
|
|
2807
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
2808
|
+
*/
|
|
2771
2809
|
export interface $FilterItemOptionSettings extends $WebComponentSettings {
|
|
2772
2810
|
/**
|
|
2773
2811
|
* Defines if the component is selected.
|
|
@@ -3303,7 +3341,11 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3303
3341
|
sWidth: CSSSize
|
|
3304
3342
|
): this;
|
|
3305
3343
|
}
|
|
3306
|
-
|
|
3344
|
+
/**
|
|
3345
|
+
* Describes the settings that can be provided to the FlexibleColumnLayout constructor.
|
|
3346
|
+
*
|
|
3347
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
3348
|
+
*/
|
|
3307
3349
|
export interface $FlexibleColumnLayoutSettings extends $WebComponentSettings {
|
|
3308
3350
|
/**
|
|
3309
3351
|
* An object of strings that defines additional accessibility roles for further customization.
|
|
@@ -3394,6 +3436,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3394
3436
|
layoutChange?: (oEvent: FlexibleColumnLayout$LayoutChangeEvent) => void;
|
|
3395
3437
|
}
|
|
3396
3438
|
|
|
3439
|
+
/**
|
|
3440
|
+
* Parameters of the FlexibleColumnLayout#layoutChange event.
|
|
3441
|
+
*/
|
|
3397
3442
|
export interface FlexibleColumnLayout$LayoutChangeEventParameters {
|
|
3398
3443
|
/**
|
|
3399
3444
|
* The current layout
|
|
@@ -3431,6 +3476,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3431
3476
|
resize?: boolean;
|
|
3432
3477
|
}
|
|
3433
3478
|
|
|
3479
|
+
/**
|
|
3480
|
+
* Event object of the FlexibleColumnLayout#layoutChange event.
|
|
3481
|
+
*/
|
|
3434
3482
|
export type FlexibleColumnLayout$LayoutChangeEvent = Event<
|
|
3435
3483
|
FlexibleColumnLayout$LayoutChangeEventParameters,
|
|
3436
3484
|
FlexibleColumnLayout
|
|
@@ -3861,7 +3909,11 @@ declare module "sap/ui/webc/fiori/IllustratedMessage" {
|
|
|
3861
3909
|
sTitleText?: string
|
|
3862
3910
|
): this;
|
|
3863
3911
|
}
|
|
3864
|
-
|
|
3912
|
+
/**
|
|
3913
|
+
* Describes the settings that can be provided to the IllustratedMessage constructor.
|
|
3914
|
+
*
|
|
3915
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
3916
|
+
*/
|
|
3865
3917
|
export interface $IllustratedMessageSettings extends $WebComponentSettings {
|
|
3866
3918
|
name?:
|
|
3867
3919
|
| (IllustrationMessageType | keyof typeof IllustrationMessageType)
|
|
@@ -4554,7 +4606,11 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4554
4606
|
bShowAllThumbnails?: boolean
|
|
4555
4607
|
): this;
|
|
4556
4608
|
}
|
|
4557
|
-
|
|
4609
|
+
/**
|
|
4610
|
+
* Describes the settings that can be provided to the MediaGallery constructor.
|
|
4611
|
+
*
|
|
4612
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
4613
|
+
*/
|
|
4558
4614
|
export interface $MediaGallerySettings extends $WebComponentSettings {
|
|
4559
4615
|
/**
|
|
4560
4616
|
* If enabled, a `display-area-click` event is fired when the user clicks or taps on the display area.
|
|
@@ -4645,20 +4701,35 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4645
4701
|
selectionChange?: (oEvent: MediaGallery$SelectionChangeEvent) => void;
|
|
4646
4702
|
}
|
|
4647
4703
|
|
|
4704
|
+
/**
|
|
4705
|
+
* Parameters of the MediaGallery#displayAreaClick event.
|
|
4706
|
+
*/
|
|
4648
4707
|
export interface MediaGallery$DisplayAreaClickEventParameters {}
|
|
4649
4708
|
|
|
4709
|
+
/**
|
|
4710
|
+
* Event object of the MediaGallery#displayAreaClick event.
|
|
4711
|
+
*/
|
|
4650
4712
|
export type MediaGallery$DisplayAreaClickEvent = Event<
|
|
4651
4713
|
MediaGallery$DisplayAreaClickEventParameters,
|
|
4652
4714
|
MediaGallery
|
|
4653
4715
|
>;
|
|
4654
4716
|
|
|
4717
|
+
/**
|
|
4718
|
+
* Parameters of the MediaGallery#overflowClick event.
|
|
4719
|
+
*/
|
|
4655
4720
|
export interface MediaGallery$OverflowClickEventParameters {}
|
|
4656
4721
|
|
|
4722
|
+
/**
|
|
4723
|
+
* Event object of the MediaGallery#overflowClick event.
|
|
4724
|
+
*/
|
|
4657
4725
|
export type MediaGallery$OverflowClickEvent = Event<
|
|
4658
4726
|
MediaGallery$OverflowClickEventParameters,
|
|
4659
4727
|
MediaGallery
|
|
4660
4728
|
>;
|
|
4661
4729
|
|
|
4730
|
+
/**
|
|
4731
|
+
* Parameters of the MediaGallery#selectionChange event.
|
|
4732
|
+
*/
|
|
4662
4733
|
export interface MediaGallery$SelectionChangeEventParameters {
|
|
4663
4734
|
/**
|
|
4664
4735
|
* the selected item.
|
|
@@ -4666,6 +4737,9 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4666
4737
|
item?: HTMLElement;
|
|
4667
4738
|
}
|
|
4668
4739
|
|
|
4740
|
+
/**
|
|
4741
|
+
* Event object of the MediaGallery#selectionChange event.
|
|
4742
|
+
*/
|
|
4669
4743
|
export type MediaGallery$SelectionChangeEvent = Event<
|
|
4670
4744
|
MediaGallery$SelectionChangeEventParameters,
|
|
4671
4745
|
MediaGallery
|
|
@@ -4922,7 +4996,11 @@ declare module "sap/ui/webc/fiori/MediaGalleryItem" {
|
|
|
4922
4996
|
oThumbnail: Control
|
|
4923
4997
|
): this;
|
|
4924
4998
|
}
|
|
4925
|
-
|
|
4999
|
+
/**
|
|
5000
|
+
* Describes the settings that can be provided to the MediaGalleryItem constructor.
|
|
5001
|
+
*
|
|
5002
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
5003
|
+
*/
|
|
4926
5004
|
export interface $MediaGalleryItemSettings extends $WebComponentSettings {
|
|
4927
5005
|
/**
|
|
4928
5006
|
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
@@ -5253,7 +5331,11 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5253
5331
|
sText?: string
|
|
5254
5332
|
): this;
|
|
5255
5333
|
}
|
|
5256
|
-
|
|
5334
|
+
/**
|
|
5335
|
+
* Describes the settings that can be provided to the NotificationAction constructor.
|
|
5336
|
+
*
|
|
5337
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5338
|
+
*/
|
|
5257
5339
|
export interface $NotificationActionSettings extends $WebComponentSettings {
|
|
5258
5340
|
/**
|
|
5259
5341
|
* Defines the action design.
|
|
@@ -5288,6 +5370,9 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5288
5370
|
click?: (oEvent: NotificationAction$ClickEvent) => void;
|
|
5289
5371
|
}
|
|
5290
5372
|
|
|
5373
|
+
/**
|
|
5374
|
+
* Parameters of the NotificationAction#click event.
|
|
5375
|
+
*/
|
|
5291
5376
|
export interface NotificationAction$ClickEventParameters {
|
|
5292
5377
|
/**
|
|
5293
5378
|
* DOM ref of the clicked element
|
|
@@ -5295,6 +5380,9 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5295
5380
|
targetRef?: HTMLElement;
|
|
5296
5381
|
}
|
|
5297
5382
|
|
|
5383
|
+
/**
|
|
5384
|
+
* Event object of the NotificationAction#click event.
|
|
5385
|
+
*/
|
|
5298
5386
|
export type NotificationAction$ClickEvent = Event<
|
|
5299
5387
|
NotificationAction$ClickEventParameters,
|
|
5300
5388
|
NotificationAction
|
|
@@ -5996,7 +6084,11 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
5996
6084
|
sTitleText?: string
|
|
5997
6085
|
): this;
|
|
5998
6086
|
}
|
|
5999
|
-
|
|
6087
|
+
/**
|
|
6088
|
+
* Describes the settings that can be provided to the NotificationListGroupItem constructor.
|
|
6089
|
+
*
|
|
6090
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
6091
|
+
*/
|
|
6000
6092
|
export interface $NotificationListGroupItemSettings
|
|
6001
6093
|
extends $WebComponentSettings {
|
|
6002
6094
|
/**
|
|
@@ -6081,6 +6173,9 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
6081
6173
|
toggle?: (oEvent: Event) => void;
|
|
6082
6174
|
}
|
|
6083
6175
|
|
|
6176
|
+
/**
|
|
6177
|
+
* Parameters of the NotificationListGroupItem#close event.
|
|
6178
|
+
*/
|
|
6084
6179
|
export interface NotificationListGroupItem$CloseEventParameters {
|
|
6085
6180
|
/**
|
|
6086
6181
|
* the closed item.
|
|
@@ -6088,13 +6183,22 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
6088
6183
|
item?: HTMLElement;
|
|
6089
6184
|
}
|
|
6090
6185
|
|
|
6186
|
+
/**
|
|
6187
|
+
* Event object of the NotificationListGroupItem#close event.
|
|
6188
|
+
*/
|
|
6091
6189
|
export type NotificationListGroupItem$CloseEvent = Event<
|
|
6092
6190
|
NotificationListGroupItem$CloseEventParameters,
|
|
6093
6191
|
NotificationListGroupItem
|
|
6094
6192
|
>;
|
|
6095
6193
|
|
|
6194
|
+
/**
|
|
6195
|
+
* Parameters of the NotificationListGroupItem#toggle event.
|
|
6196
|
+
*/
|
|
6096
6197
|
export interface NotificationListGroupItem$ToggleEventParameters {}
|
|
6097
6198
|
|
|
6199
|
+
/**
|
|
6200
|
+
* Event object of the NotificationListGroupItem#toggle event.
|
|
6201
|
+
*/
|
|
6098
6202
|
export type NotificationListGroupItem$ToggleEvent = Event<
|
|
6099
6203
|
NotificationListGroupItem$ToggleEventParameters,
|
|
6100
6204
|
NotificationListGroupItem
|
|
@@ -6766,7 +6870,11 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6766
6870
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
6767
6871
|
): this;
|
|
6768
6872
|
}
|
|
6769
|
-
|
|
6873
|
+
/**
|
|
6874
|
+
* Describes the settings that can be provided to the NotificationListItem constructor.
|
|
6875
|
+
*
|
|
6876
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
6877
|
+
*/
|
|
6770
6878
|
export interface $NotificationListItemSettings extends $WebComponentSettings {
|
|
6771
6879
|
/**
|
|
6772
6880
|
* Defines if a busy indicator would be displayed over the item.
|
|
@@ -6859,6 +6967,9 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6859
6967
|
close?: (oEvent: NotificationListItem$CloseEvent) => void;
|
|
6860
6968
|
}
|
|
6861
6969
|
|
|
6970
|
+
/**
|
|
6971
|
+
* Parameters of the NotificationListItem#close event.
|
|
6972
|
+
*/
|
|
6862
6973
|
export interface NotificationListItem$CloseEventParameters {
|
|
6863
6974
|
/**
|
|
6864
6975
|
* the closed item.
|
|
@@ -6866,6 +6977,9 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6866
6977
|
item?: HTMLElement;
|
|
6867
6978
|
}
|
|
6868
6979
|
|
|
6980
|
+
/**
|
|
6981
|
+
* Event object of the NotificationListItem#close event.
|
|
6982
|
+
*/
|
|
6869
6983
|
export type NotificationListItem$CloseEvent = Event<
|
|
6870
6984
|
NotificationListItem$CloseEventParameters,
|
|
6871
6985
|
NotificationListItem
|
|
@@ -7294,7 +7408,11 @@ declare module "sap/ui/webc/fiori/Page" {
|
|
|
7294
7408
|
sWidth: CSSSize
|
|
7295
7409
|
): this;
|
|
7296
7410
|
}
|
|
7297
|
-
|
|
7411
|
+
/**
|
|
7412
|
+
* Describes the settings that can be provided to the Page constructor.
|
|
7413
|
+
*
|
|
7414
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7415
|
+
*/
|
|
7298
7416
|
export interface $PageSettings extends $WebComponentSettings {
|
|
7299
7417
|
/**
|
|
7300
7418
|
* Defines the background color of the `sap.ui.webc.fiori.Page`.
|
|
@@ -7527,7 +7645,11 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
|
|
|
7527
7645
|
vItem: int | string | IProductSwitchItem
|
|
7528
7646
|
): IProductSwitchItem | null;
|
|
7529
7647
|
}
|
|
7530
|
-
|
|
7648
|
+
/**
|
|
7649
|
+
* Describes the settings that can be provided to the ProductSwitch constructor.
|
|
7650
|
+
*
|
|
7651
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7652
|
+
*/
|
|
7531
7653
|
export interface $ProductSwitchSettings extends $WebComponentSettings {
|
|
7532
7654
|
/**
|
|
7533
7655
|
* Defines the items of the `sap.ui.webc.fiori.ProductSwitch`.
|
|
@@ -7893,7 +8015,11 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
|
|
|
7893
8015
|
sTitleText?: string
|
|
7894
8016
|
): this;
|
|
7895
8017
|
}
|
|
7896
|
-
|
|
8018
|
+
/**
|
|
8019
|
+
* Describes the settings that can be provided to the ProductSwitchItem constructor.
|
|
8020
|
+
*
|
|
8021
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8022
|
+
*/
|
|
7897
8023
|
export interface $ProductSwitchItemSettings extends $WebComponentSettings {
|
|
7898
8024
|
/**
|
|
7899
8025
|
* Defines the icon to be displayed as a graphical element within the component.
|
|
@@ -7942,8 +8068,14 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
|
|
|
7942
8068
|
click?: (oEvent: Event) => void;
|
|
7943
8069
|
}
|
|
7944
8070
|
|
|
8071
|
+
/**
|
|
8072
|
+
* Parameters of the ProductSwitchItem#click event.
|
|
8073
|
+
*/
|
|
7945
8074
|
export interface ProductSwitchItem$ClickEventParameters {}
|
|
7946
8075
|
|
|
8076
|
+
/**
|
|
8077
|
+
* Event object of the ProductSwitchItem#click event.
|
|
8078
|
+
*/
|
|
7947
8079
|
export type ProductSwitchItem$ClickEvent = Event<
|
|
7948
8080
|
ProductSwitchItem$ClickEventParameters,
|
|
7949
8081
|
ProductSwitchItem
|
|
@@ -9192,7 +9324,11 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9192
9324
|
oStartButton: IButton
|
|
9193
9325
|
): this;
|
|
9194
9326
|
}
|
|
9195
|
-
|
|
9327
|
+
/**
|
|
9328
|
+
* Describes the settings that can be provided to the ShellBar constructor.
|
|
9329
|
+
*
|
|
9330
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
9331
|
+
*/
|
|
9196
9332
|
export interface $ShellBarSettings extends $WebComponentSettings {
|
|
9197
9333
|
/**
|
|
9198
9334
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -9353,6 +9489,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9353
9489
|
profileClick?: (oEvent: ShellBar$ProfileClickEvent) => void;
|
|
9354
9490
|
}
|
|
9355
9491
|
|
|
9492
|
+
/**
|
|
9493
|
+
* Parameters of the ShellBar#coPilotClick event.
|
|
9494
|
+
*/
|
|
9356
9495
|
export interface ShellBar$CoPilotClickEventParameters {
|
|
9357
9496
|
/**
|
|
9358
9497
|
* dom ref of the activated element
|
|
@@ -9360,11 +9499,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9360
9499
|
targetRef?: HTMLElement;
|
|
9361
9500
|
}
|
|
9362
9501
|
|
|
9502
|
+
/**
|
|
9503
|
+
* Event object of the ShellBar#coPilotClick event.
|
|
9504
|
+
*/
|
|
9363
9505
|
export type ShellBar$CoPilotClickEvent = Event<
|
|
9364
9506
|
ShellBar$CoPilotClickEventParameters,
|
|
9365
9507
|
ShellBar
|
|
9366
9508
|
>;
|
|
9367
9509
|
|
|
9510
|
+
/**
|
|
9511
|
+
* Parameters of the ShellBar#logoClick event.
|
|
9512
|
+
*/
|
|
9368
9513
|
export interface ShellBar$LogoClickEventParameters {
|
|
9369
9514
|
/**
|
|
9370
9515
|
* dom ref of the activated element
|
|
@@ -9372,11 +9517,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9372
9517
|
targetRef?: HTMLElement;
|
|
9373
9518
|
}
|
|
9374
9519
|
|
|
9520
|
+
/**
|
|
9521
|
+
* Event object of the ShellBar#logoClick event.
|
|
9522
|
+
*/
|
|
9375
9523
|
export type ShellBar$LogoClickEvent = Event<
|
|
9376
9524
|
ShellBar$LogoClickEventParameters,
|
|
9377
9525
|
ShellBar
|
|
9378
9526
|
>;
|
|
9379
9527
|
|
|
9528
|
+
/**
|
|
9529
|
+
* Parameters of the ShellBar#menuItemClick event.
|
|
9530
|
+
*/
|
|
9380
9531
|
export interface ShellBar$MenuItemClickEventParameters {
|
|
9381
9532
|
/**
|
|
9382
9533
|
* DOM ref of the activated list item
|
|
@@ -9384,11 +9535,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9384
9535
|
item?: HTMLElement;
|
|
9385
9536
|
}
|
|
9386
9537
|
|
|
9538
|
+
/**
|
|
9539
|
+
* Event object of the ShellBar#menuItemClick event.
|
|
9540
|
+
*/
|
|
9387
9541
|
export type ShellBar$MenuItemClickEvent = Event<
|
|
9388
9542
|
ShellBar$MenuItemClickEventParameters,
|
|
9389
9543
|
ShellBar
|
|
9390
9544
|
>;
|
|
9391
9545
|
|
|
9546
|
+
/**
|
|
9547
|
+
* Parameters of the ShellBar#notificationsClick event.
|
|
9548
|
+
*/
|
|
9392
9549
|
export interface ShellBar$NotificationsClickEventParameters {
|
|
9393
9550
|
/**
|
|
9394
9551
|
* dom ref of the activated element
|
|
@@ -9396,11 +9553,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9396
9553
|
targetRef?: HTMLElement;
|
|
9397
9554
|
}
|
|
9398
9555
|
|
|
9556
|
+
/**
|
|
9557
|
+
* Event object of the ShellBar#notificationsClick event.
|
|
9558
|
+
*/
|
|
9399
9559
|
export type ShellBar$NotificationsClickEvent = Event<
|
|
9400
9560
|
ShellBar$NotificationsClickEventParameters,
|
|
9401
9561
|
ShellBar
|
|
9402
9562
|
>;
|
|
9403
9563
|
|
|
9564
|
+
/**
|
|
9565
|
+
* Parameters of the ShellBar#productSwitchClick event.
|
|
9566
|
+
*/
|
|
9404
9567
|
export interface ShellBar$ProductSwitchClickEventParameters {
|
|
9405
9568
|
/**
|
|
9406
9569
|
* dom ref of the activated element
|
|
@@ -9408,11 +9571,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9408
9571
|
targetRef?: HTMLElement;
|
|
9409
9572
|
}
|
|
9410
9573
|
|
|
9574
|
+
/**
|
|
9575
|
+
* Event object of the ShellBar#productSwitchClick event.
|
|
9576
|
+
*/
|
|
9411
9577
|
export type ShellBar$ProductSwitchClickEvent = Event<
|
|
9412
9578
|
ShellBar$ProductSwitchClickEventParameters,
|
|
9413
9579
|
ShellBar
|
|
9414
9580
|
>;
|
|
9415
9581
|
|
|
9582
|
+
/**
|
|
9583
|
+
* Parameters of the ShellBar#profileClick event.
|
|
9584
|
+
*/
|
|
9416
9585
|
export interface ShellBar$ProfileClickEventParameters {
|
|
9417
9586
|
/**
|
|
9418
9587
|
* dom ref of the activated element
|
|
@@ -9420,6 +9589,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9420
9589
|
targetRef?: HTMLElement;
|
|
9421
9590
|
}
|
|
9422
9591
|
|
|
9592
|
+
/**
|
|
9593
|
+
* Event object of the ShellBar#profileClick event.
|
|
9594
|
+
*/
|
|
9423
9595
|
export type ShellBar$ProfileClickEvent = Event<
|
|
9424
9596
|
ShellBar$ProfileClickEventParameters,
|
|
9425
9597
|
ShellBar
|
|
@@ -9683,7 +9855,11 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9683
9855
|
sText?: string
|
|
9684
9856
|
): this;
|
|
9685
9857
|
}
|
|
9686
|
-
|
|
9858
|
+
/**
|
|
9859
|
+
* Describes the settings that can be provided to the ShellBarItem constructor.
|
|
9860
|
+
*
|
|
9861
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
9862
|
+
*/
|
|
9687
9863
|
export interface $ShellBarItemSettings extends $WebComponentSettings {
|
|
9688
9864
|
/**
|
|
9689
9865
|
* Defines the count displayed in the top-right corner.
|
|
@@ -9708,6 +9884,9 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9708
9884
|
click?: (oEvent: ShellBarItem$ClickEvent) => void;
|
|
9709
9885
|
}
|
|
9710
9886
|
|
|
9887
|
+
/**
|
|
9888
|
+
* Parameters of the ShellBarItem#click event.
|
|
9889
|
+
*/
|
|
9711
9890
|
export interface ShellBarItem$ClickEventParameters {
|
|
9712
9891
|
/**
|
|
9713
9892
|
* DOM ref of the clicked element
|
|
@@ -9715,6 +9894,9 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9715
9894
|
targetRef?: HTMLElement;
|
|
9716
9895
|
}
|
|
9717
9896
|
|
|
9897
|
+
/**
|
|
9898
|
+
* Event object of the ShellBarItem#click event.
|
|
9899
|
+
*/
|
|
9718
9900
|
export type ShellBarItem$ClickEvent = Event<
|
|
9719
9901
|
ShellBarItem$ClickEventParameters,
|
|
9720
9902
|
ShellBarItem
|
|
@@ -10185,7 +10367,11 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
10185
10367
|
bCollapsed?: boolean
|
|
10186
10368
|
): this;
|
|
10187
10369
|
}
|
|
10188
|
-
|
|
10370
|
+
/**
|
|
10371
|
+
* Describes the settings that can be provided to the SideNavigation constructor.
|
|
10372
|
+
*
|
|
10373
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10374
|
+
*/
|
|
10189
10375
|
export interface $SideNavigationSettings extends $WebComponentSettings {
|
|
10190
10376
|
/**
|
|
10191
10377
|
* Defines whether the `sap.ui.webc.fiori.SideNavigation` is expanded or collapsed.
|
|
@@ -10232,6 +10418,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
10232
10418
|
selectionChange?: (oEvent: SideNavigation$SelectionChangeEvent) => void;
|
|
10233
10419
|
}
|
|
10234
10420
|
|
|
10421
|
+
/**
|
|
10422
|
+
* Parameters of the SideNavigation#selectionChange event.
|
|
10423
|
+
*/
|
|
10235
10424
|
export interface SideNavigation$SelectionChangeEventParameters {
|
|
10236
10425
|
/**
|
|
10237
10426
|
* the clicked item.
|
|
@@ -10239,6 +10428,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
10239
10428
|
item?: ISideNavigationItem | ISideNavigationSubItem;
|
|
10240
10429
|
}
|
|
10241
10430
|
|
|
10431
|
+
/**
|
|
10432
|
+
* Event object of the SideNavigation#selectionChange event.
|
|
10433
|
+
*/
|
|
10242
10434
|
export type SideNavigation$SelectionChangeEvent = Event<
|
|
10243
10435
|
SideNavigation$SelectionChangeEventParameters,
|
|
10244
10436
|
SideNavigation
|
|
@@ -10659,7 +10851,11 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
10659
10851
|
bWholeItemToggleable?: boolean
|
|
10660
10852
|
): this;
|
|
10661
10853
|
}
|
|
10662
|
-
|
|
10854
|
+
/**
|
|
10855
|
+
* Describes the settings that can be provided to the SideNavigationItem constructor.
|
|
10856
|
+
*
|
|
10857
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10858
|
+
*/
|
|
10663
10859
|
export interface $SideNavigationItemSettings extends $WebComponentSettings {
|
|
10664
10860
|
/**
|
|
10665
10861
|
* Defines if the item is expanded
|
|
@@ -10709,8 +10905,14 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
10709
10905
|
click?: (oEvent: Event) => void;
|
|
10710
10906
|
}
|
|
10711
10907
|
|
|
10908
|
+
/**
|
|
10909
|
+
* Parameters of the SideNavigationItem#click event.
|
|
10910
|
+
*/
|
|
10712
10911
|
export interface SideNavigationItem$ClickEventParameters {}
|
|
10713
10912
|
|
|
10913
|
+
/**
|
|
10914
|
+
* Event object of the SideNavigationItem#click event.
|
|
10915
|
+
*/
|
|
10714
10916
|
export type SideNavigationItem$ClickEvent = Event<
|
|
10715
10917
|
SideNavigationItem$ClickEventParameters,
|
|
10716
10918
|
SideNavigationItem
|
|
@@ -10984,7 +11186,11 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
10984
11186
|
sText?: string
|
|
10985
11187
|
): this;
|
|
10986
11188
|
}
|
|
10987
|
-
|
|
11189
|
+
/**
|
|
11190
|
+
* Describes the settings that can be provided to the SideNavigationSubItem constructor.
|
|
11191
|
+
*
|
|
11192
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
11193
|
+
*/
|
|
10988
11194
|
export interface $SideNavigationSubItemSettings
|
|
10989
11195
|
extends $WebComponentSettings {
|
|
10990
11196
|
/**
|
|
@@ -11013,8 +11219,14 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
11013
11219
|
click?: (oEvent: Event) => void;
|
|
11014
11220
|
}
|
|
11015
11221
|
|
|
11222
|
+
/**
|
|
11223
|
+
* Parameters of the SideNavigationSubItem#click event.
|
|
11224
|
+
*/
|
|
11016
11225
|
export interface SideNavigationSubItem$ClickEventParameters {}
|
|
11017
11226
|
|
|
11227
|
+
/**
|
|
11228
|
+
* Event object of the SideNavigationSubItem#click event.
|
|
11229
|
+
*/
|
|
11018
11230
|
export type SideNavigationSubItem$ClickEvent = Event<
|
|
11019
11231
|
SideNavigationSubItem$ClickEventParameters,
|
|
11020
11232
|
SideNavigationSubItem
|
|
@@ -11164,7 +11376,11 @@ declare module "sap/ui/webc/fiori/SortItem" {
|
|
|
11164
11376
|
sText?: string
|
|
11165
11377
|
): this;
|
|
11166
11378
|
}
|
|
11167
|
-
|
|
11379
|
+
/**
|
|
11380
|
+
* Describes the settings that can be provided to the SortItem constructor.
|
|
11381
|
+
*
|
|
11382
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
11383
|
+
*/
|
|
11168
11384
|
export interface $SortItemSettings extends $WebComponentSettings {
|
|
11169
11385
|
/**
|
|
11170
11386
|
* Defines if the component is selected.
|
|
@@ -11465,7 +11681,11 @@ declare module "sap/ui/webc/fiori/Timeline" {
|
|
|
11465
11681
|
sWidth: CSSSize
|
|
11466
11682
|
): this;
|
|
11467
11683
|
}
|
|
11468
|
-
|
|
11684
|
+
/**
|
|
11685
|
+
* Describes the settings that can be provided to the Timeline constructor.
|
|
11686
|
+
*
|
|
11687
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
11688
|
+
*/
|
|
11469
11689
|
export interface $TimelineSettings extends $WebComponentSettings {
|
|
11470
11690
|
/**
|
|
11471
11691
|
* Defines the accessible ARIA name of the component.
|
|
@@ -11915,7 +12135,11 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
|
|
|
11915
12135
|
sTitleText?: string
|
|
11916
12136
|
): this;
|
|
11917
12137
|
}
|
|
11918
|
-
|
|
12138
|
+
/**
|
|
12139
|
+
* Describes the settings that can be provided to the TimelineItem constructor.
|
|
12140
|
+
*
|
|
12141
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
12142
|
+
*/
|
|
11919
12143
|
export interface $TimelineItemSettings extends $WebComponentSettings {
|
|
11920
12144
|
/**
|
|
11921
12145
|
* Defines the icon to be displayed as graphical element within the `sap.ui.webc.fiori.TimelineItem`. SAP-icons
|
|
@@ -11960,8 +12184,14 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
|
|
|
11960
12184
|
nameClick?: (oEvent: Event) => void;
|
|
11961
12185
|
}
|
|
11962
12186
|
|
|
12187
|
+
/**
|
|
12188
|
+
* Parameters of the TimelineItem#nameClick event.
|
|
12189
|
+
*/
|
|
11963
12190
|
export interface TimelineItem$NameClickEventParameters {}
|
|
11964
12191
|
|
|
12192
|
+
/**
|
|
12193
|
+
* Event object of the TimelineItem#nameClick event.
|
|
12194
|
+
*/
|
|
11965
12195
|
export type TimelineItem$NameClickEvent = Event<
|
|
11966
12196
|
TimelineItem$NameClickEventParameters,
|
|
11967
12197
|
TimelineItem
|
|
@@ -12680,7 +12910,11 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12680
12910
|
sWidth: CSSSize
|
|
12681
12911
|
): this;
|
|
12682
12912
|
}
|
|
12683
|
-
|
|
12913
|
+
/**
|
|
12914
|
+
* Describes the settings that can be provided to the UploadCollection constructor.
|
|
12915
|
+
*
|
|
12916
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
12917
|
+
*/
|
|
12684
12918
|
export interface $UploadCollectionSettings extends $WebComponentSettings {
|
|
12685
12919
|
/**
|
|
12686
12920
|
* Defines the accessible ARIA name of the component.
|
|
@@ -12765,6 +12999,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12765
12999
|
selectionChange?: (oEvent: UploadCollection$SelectionChangeEvent) => void;
|
|
12766
13000
|
}
|
|
12767
13001
|
|
|
13002
|
+
/**
|
|
13003
|
+
* Parameters of the UploadCollection#drop event.
|
|
13004
|
+
*/
|
|
12768
13005
|
export interface UploadCollection$DropEventParameters {
|
|
12769
13006
|
/**
|
|
12770
13007
|
* The `drop` event operation data.
|
|
@@ -12772,11 +13009,17 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12772
13009
|
dataTransfer?: DataTransfer;
|
|
12773
13010
|
}
|
|
12774
13011
|
|
|
13012
|
+
/**
|
|
13013
|
+
* Event object of the UploadCollection#drop event.
|
|
13014
|
+
*/
|
|
12775
13015
|
export type UploadCollection$DropEvent = Event<
|
|
12776
13016
|
UploadCollection$DropEventParameters,
|
|
12777
13017
|
UploadCollection
|
|
12778
13018
|
>;
|
|
12779
13019
|
|
|
13020
|
+
/**
|
|
13021
|
+
* Parameters of the UploadCollection#itemDelete event.
|
|
13022
|
+
*/
|
|
12780
13023
|
export interface UploadCollection$ItemDeleteEventParameters {
|
|
12781
13024
|
/**
|
|
12782
13025
|
* The `sap.ui.webc.fiori.UploadCollectionItem` which was deleted.
|
|
@@ -12784,11 +13027,17 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12784
13027
|
item?: HTMLElement;
|
|
12785
13028
|
}
|
|
12786
13029
|
|
|
13030
|
+
/**
|
|
13031
|
+
* Event object of the UploadCollection#itemDelete event.
|
|
13032
|
+
*/
|
|
12787
13033
|
export type UploadCollection$ItemDeleteEvent = Event<
|
|
12788
13034
|
UploadCollection$ItemDeleteEventParameters,
|
|
12789
13035
|
UploadCollection
|
|
12790
13036
|
>;
|
|
12791
13037
|
|
|
13038
|
+
/**
|
|
13039
|
+
* Parameters of the UploadCollection#selectionChange event.
|
|
13040
|
+
*/
|
|
12792
13041
|
export interface UploadCollection$SelectionChangeEventParameters {
|
|
12793
13042
|
/**
|
|
12794
13043
|
* An array of the selected items.
|
|
@@ -12796,6 +13045,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12796
13045
|
selectedItems?: any[];
|
|
12797
13046
|
}
|
|
12798
13047
|
|
|
13048
|
+
/**
|
|
13049
|
+
* Event object of the UploadCollection#selectionChange event.
|
|
13050
|
+
*/
|
|
12799
13051
|
export type UploadCollection$SelectionChangeEvent = Event<
|
|
12800
13052
|
UploadCollection$SelectionChangeEventParameters,
|
|
12801
13053
|
UploadCollection
|
|
@@ -13862,7 +14114,11 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
|
|
|
13862
14114
|
sUploadState?: UploadState | keyof typeof UploadState
|
|
13863
14115
|
): this;
|
|
13864
14116
|
}
|
|
13865
|
-
|
|
14117
|
+
/**
|
|
14118
|
+
* Describes the settings that can be provided to the UploadCollectionItem constructor.
|
|
14119
|
+
*
|
|
14120
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
14121
|
+
*/
|
|
13866
14122
|
export interface $UploadCollectionItemSettings extends $WebComponentSettings {
|
|
13867
14123
|
/**
|
|
13868
14124
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -14011,36 +14267,66 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
|
|
|
14011
14267
|
terminate?: (oEvent: Event) => void;
|
|
14012
14268
|
}
|
|
14013
14269
|
|
|
14270
|
+
/**
|
|
14271
|
+
* Parameters of the UploadCollectionItem#detailClick event.
|
|
14272
|
+
*/
|
|
14014
14273
|
export interface UploadCollectionItem$DetailClickEventParameters {}
|
|
14015
14274
|
|
|
14275
|
+
/**
|
|
14276
|
+
* Event object of the UploadCollectionItem#detailClick event.
|
|
14277
|
+
*/
|
|
14016
14278
|
export type UploadCollectionItem$DetailClickEvent = Event<
|
|
14017
14279
|
UploadCollectionItem$DetailClickEventParameters,
|
|
14018
14280
|
UploadCollectionItem
|
|
14019
14281
|
>;
|
|
14020
14282
|
|
|
14283
|
+
/**
|
|
14284
|
+
* Parameters of the UploadCollectionItem#fileNameClick event.
|
|
14285
|
+
*/
|
|
14021
14286
|
export interface UploadCollectionItem$FileNameClickEventParameters {}
|
|
14022
14287
|
|
|
14288
|
+
/**
|
|
14289
|
+
* Event object of the UploadCollectionItem#fileNameClick event.
|
|
14290
|
+
*/
|
|
14023
14291
|
export type UploadCollectionItem$FileNameClickEvent = Event<
|
|
14024
14292
|
UploadCollectionItem$FileNameClickEventParameters,
|
|
14025
14293
|
UploadCollectionItem
|
|
14026
14294
|
>;
|
|
14027
14295
|
|
|
14296
|
+
/**
|
|
14297
|
+
* Parameters of the UploadCollectionItem#rename event.
|
|
14298
|
+
*/
|
|
14028
14299
|
export interface UploadCollectionItem$RenameEventParameters {}
|
|
14029
14300
|
|
|
14301
|
+
/**
|
|
14302
|
+
* Event object of the UploadCollectionItem#rename event.
|
|
14303
|
+
*/
|
|
14030
14304
|
export type UploadCollectionItem$RenameEvent = Event<
|
|
14031
14305
|
UploadCollectionItem$RenameEventParameters,
|
|
14032
14306
|
UploadCollectionItem
|
|
14033
14307
|
>;
|
|
14034
14308
|
|
|
14309
|
+
/**
|
|
14310
|
+
* Parameters of the UploadCollectionItem#retry event.
|
|
14311
|
+
*/
|
|
14035
14312
|
export interface UploadCollectionItem$RetryEventParameters {}
|
|
14036
14313
|
|
|
14314
|
+
/**
|
|
14315
|
+
* Event object of the UploadCollectionItem#retry event.
|
|
14316
|
+
*/
|
|
14037
14317
|
export type UploadCollectionItem$RetryEvent = Event<
|
|
14038
14318
|
UploadCollectionItem$RetryEventParameters,
|
|
14039
14319
|
UploadCollectionItem
|
|
14040
14320
|
>;
|
|
14041
14321
|
|
|
14322
|
+
/**
|
|
14323
|
+
* Parameters of the UploadCollectionItem#terminate event.
|
|
14324
|
+
*/
|
|
14042
14325
|
export interface UploadCollectionItem$TerminateEventParameters {}
|
|
14043
14326
|
|
|
14327
|
+
/**
|
|
14328
|
+
* Event object of the UploadCollectionItem#terminate event.
|
|
14329
|
+
*/
|
|
14044
14330
|
export type UploadCollectionItem$TerminateEvent = Event<
|
|
14045
14331
|
UploadCollectionItem$TerminateEventParameters,
|
|
14046
14332
|
UploadCollectionItem
|
|
@@ -14594,7 +14880,11 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14594
14880
|
*/
|
|
14595
14881
|
show(): void;
|
|
14596
14882
|
}
|
|
14597
|
-
|
|
14883
|
+
/**
|
|
14884
|
+
* Describes the settings that can be provided to the ViewSettingsDialog constructor.
|
|
14885
|
+
*
|
|
14886
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
14887
|
+
*/
|
|
14598
14888
|
export interface $ViewSettingsDialogSettings extends $WebComponentSettings {
|
|
14599
14889
|
/**
|
|
14600
14890
|
* Defines the initial sort order.
|
|
@@ -14629,13 +14919,22 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14629
14919
|
confirm?: (oEvent: ViewSettingsDialog$ConfirmEvent) => void;
|
|
14630
14920
|
}
|
|
14631
14921
|
|
|
14922
|
+
/**
|
|
14923
|
+
* Parameters of the ViewSettingsDialog#beforeOpen event.
|
|
14924
|
+
*/
|
|
14632
14925
|
export interface ViewSettingsDialog$BeforeOpenEventParameters {}
|
|
14633
14926
|
|
|
14927
|
+
/**
|
|
14928
|
+
* Event object of the ViewSettingsDialog#beforeOpen event.
|
|
14929
|
+
*/
|
|
14634
14930
|
export type ViewSettingsDialog$BeforeOpenEvent = Event<
|
|
14635
14931
|
ViewSettingsDialog$BeforeOpenEventParameters,
|
|
14636
14932
|
ViewSettingsDialog
|
|
14637
14933
|
>;
|
|
14638
14934
|
|
|
14935
|
+
/**
|
|
14936
|
+
* Parameters of the ViewSettingsDialog#cancel event.
|
|
14937
|
+
*/
|
|
14639
14938
|
export interface ViewSettingsDialog$CancelEventParameters {
|
|
14640
14939
|
/**
|
|
14641
14940
|
* The current sort order selected.
|
|
@@ -14663,11 +14962,17 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14663
14962
|
filters?: any[];
|
|
14664
14963
|
}
|
|
14665
14964
|
|
|
14965
|
+
/**
|
|
14966
|
+
* Event object of the ViewSettingsDialog#cancel event.
|
|
14967
|
+
*/
|
|
14666
14968
|
export type ViewSettingsDialog$CancelEvent = Event<
|
|
14667
14969
|
ViewSettingsDialog$CancelEventParameters,
|
|
14668
14970
|
ViewSettingsDialog
|
|
14669
14971
|
>;
|
|
14670
14972
|
|
|
14973
|
+
/**
|
|
14974
|
+
* Parameters of the ViewSettingsDialog#confirm event.
|
|
14975
|
+
*/
|
|
14671
14976
|
export interface ViewSettingsDialog$ConfirmEventParameters {
|
|
14672
14977
|
/**
|
|
14673
14978
|
* The current sort order selected.
|
|
@@ -14695,6 +15000,9 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14695
15000
|
filters?: any[];
|
|
14696
15001
|
}
|
|
14697
15002
|
|
|
15003
|
+
/**
|
|
15004
|
+
* Event object of the ViewSettingsDialog#confirm event.
|
|
15005
|
+
*/
|
|
14698
15006
|
export type ViewSettingsDialog$ConfirmEvent = Event<
|
|
14699
15007
|
ViewSettingsDialog$ConfirmEventParameters,
|
|
14700
15008
|
ViewSettingsDialog
|
|
@@ -15075,7 +15383,11 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
15075
15383
|
sHeight: CSSSize
|
|
15076
15384
|
): this;
|
|
15077
15385
|
}
|
|
15078
|
-
|
|
15386
|
+
/**
|
|
15387
|
+
* Describes the settings that can be provided to the Wizard constructor.
|
|
15388
|
+
*
|
|
15389
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
15390
|
+
*/
|
|
15079
15391
|
export interface $WizardSettings extends $WebComponentSettings {
|
|
15080
15392
|
/**
|
|
15081
15393
|
* Defines how the content of the `sap.ui.webc.fiori.Wizard` would be visualized.
|
|
@@ -15108,6 +15420,9 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
15108
15420
|
stepChange?: (oEvent: Wizard$StepChangeEvent) => void;
|
|
15109
15421
|
}
|
|
15110
15422
|
|
|
15423
|
+
/**
|
|
15424
|
+
* Parameters of the Wizard#stepChange event.
|
|
15425
|
+
*/
|
|
15111
15426
|
export interface Wizard$StepChangeEventParameters {
|
|
15112
15427
|
/**
|
|
15113
15428
|
* The new step.
|
|
@@ -15125,6 +15440,9 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
15125
15440
|
changeWithClick?: boolean;
|
|
15126
15441
|
}
|
|
15127
15442
|
|
|
15443
|
+
/**
|
|
15444
|
+
* Event object of the Wizard#stepChange event.
|
|
15445
|
+
*/
|
|
15128
15446
|
export type Wizard$StepChangeEvent = Event<
|
|
15129
15447
|
Wizard$StepChangeEventParameters,
|
|
15130
15448
|
Wizard
|
|
@@ -15538,7 +15856,11 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
15538
15856
|
sTitleText?: string
|
|
15539
15857
|
): this;
|
|
15540
15858
|
}
|
|
15541
|
-
|
|
15859
|
+
/**
|
|
15860
|
+
* Describes the settings that can be provided to the WizardStep constructor.
|
|
15861
|
+
*
|
|
15862
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
15863
|
+
*/
|
|
15542
15864
|
export interface $WizardStepSettings extends $WebComponentSettings {
|
|
15543
15865
|
/**
|
|
15544
15866
|
* When `branching` is enabled a dashed line would be displayed after the step, meant to indicate that the
|