@openui5/types 1.122.1 → 1.123.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/sap.f.d.ts +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- 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 +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- 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 +123 -23
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/webc/fiori/library" {
|
|
4
4
|
/**
|
|
@@ -1333,7 +1333,11 @@ declare module "sap/ui/webc/fiori/Bar" {
|
|
|
1333
1333
|
sWidth: CSSSize
|
|
1334
1334
|
): this;
|
|
1335
1335
|
}
|
|
1336
|
-
|
|
1336
|
+
/**
|
|
1337
|
+
* Describes the settings that can be provided to the Bar constructor.
|
|
1338
|
+
*
|
|
1339
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
1340
|
+
*/
|
|
1337
1341
|
export interface $BarSettings extends $WebComponentSettings {
|
|
1338
1342
|
/**
|
|
1339
1343
|
* Defines the component's design.
|
|
@@ -1629,7 +1633,11 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1629
1633
|
*/
|
|
1630
1634
|
show(): void;
|
|
1631
1635
|
}
|
|
1632
|
-
|
|
1636
|
+
/**
|
|
1637
|
+
* Describes the settings that can be provided to the BarcodeScannerDialog constructor.
|
|
1638
|
+
*
|
|
1639
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
1640
|
+
*/
|
|
1633
1641
|
export interface $BarcodeScannerDialogSettings extends $WebComponentSettings {
|
|
1634
1642
|
/**
|
|
1635
1643
|
* Fires when the scan fails with error.
|
|
@@ -1642,6 +1650,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1642
1650
|
scanSuccess?: (oEvent: BarcodeScannerDialog$ScanSuccessEvent) => void;
|
|
1643
1651
|
}
|
|
1644
1652
|
|
|
1653
|
+
/**
|
|
1654
|
+
* Parameters of the BarcodeScannerDialog#scanError event.
|
|
1655
|
+
*/
|
|
1645
1656
|
export interface BarcodeScannerDialog$ScanErrorEventParameters {
|
|
1646
1657
|
/**
|
|
1647
1658
|
* the error message
|
|
@@ -1649,11 +1660,17 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1649
1660
|
message?: string;
|
|
1650
1661
|
}
|
|
1651
1662
|
|
|
1663
|
+
/**
|
|
1664
|
+
* Event object of the BarcodeScannerDialog#scanError event.
|
|
1665
|
+
*/
|
|
1652
1666
|
export type BarcodeScannerDialog$ScanErrorEvent = Event<
|
|
1653
1667
|
BarcodeScannerDialog$ScanErrorEventParameters,
|
|
1654
1668
|
BarcodeScannerDialog
|
|
1655
1669
|
>;
|
|
1656
1670
|
|
|
1671
|
+
/**
|
|
1672
|
+
* Parameters of the BarcodeScannerDialog#scanSuccess event.
|
|
1673
|
+
*/
|
|
1657
1674
|
export interface BarcodeScannerDialog$ScanSuccessEventParameters {
|
|
1658
1675
|
/**
|
|
1659
1676
|
* the scan result as string
|
|
@@ -1666,6 +1683,9 @@ declare module "sap/ui/webc/fiori/BarcodeScannerDialog" {
|
|
|
1666
1683
|
rawBytes?: object;
|
|
1667
1684
|
}
|
|
1668
1685
|
|
|
1686
|
+
/**
|
|
1687
|
+
* Event object of the BarcodeScannerDialog#scanSuccess event.
|
|
1688
|
+
*/
|
|
1669
1689
|
export type BarcodeScannerDialog$ScanSuccessEvent = Event<
|
|
1670
1690
|
BarcodeScannerDialog$ScanSuccessEventParameters,
|
|
1671
1691
|
BarcodeScannerDialog
|
|
@@ -2307,7 +2327,11 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2307
2327
|
*/
|
|
2308
2328
|
toggleContents(): void;
|
|
2309
2329
|
}
|
|
2310
|
-
|
|
2330
|
+
/**
|
|
2331
|
+
* Describes the settings that can be provided to the DynamicSideContent constructor.
|
|
2332
|
+
*
|
|
2333
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
2334
|
+
*/
|
|
2311
2335
|
export interface $DynamicSideContentSettings extends $WebComponentSettings {
|
|
2312
2336
|
/**
|
|
2313
2337
|
* Defines whether the component is in equal split mode. In this mode, the side and the main content take
|
|
@@ -2396,6 +2420,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2396
2420
|
layoutChange?: (oEvent: DynamicSideContent$LayoutChangeEvent) => void;
|
|
2397
2421
|
}
|
|
2398
2422
|
|
|
2423
|
+
/**
|
|
2424
|
+
* Parameters of the DynamicSideContent#layoutChange event.
|
|
2425
|
+
*/
|
|
2399
2426
|
export interface DynamicSideContent$LayoutChangeEventParameters {
|
|
2400
2427
|
/**
|
|
2401
2428
|
* the current breakpoint.
|
|
@@ -2418,6 +2445,9 @@ declare module "sap/ui/webc/fiori/DynamicSideContent" {
|
|
|
2418
2445
|
sideContentVisible?: boolean;
|
|
2419
2446
|
}
|
|
2420
2447
|
|
|
2448
|
+
/**
|
|
2449
|
+
* Event object of the DynamicSideContent#layoutChange event.
|
|
2450
|
+
*/
|
|
2421
2451
|
export type DynamicSideContent$LayoutChangeEvent = Event<
|
|
2422
2452
|
DynamicSideContent$LayoutChangeEventParameters,
|
|
2423
2453
|
DynamicSideContent
|
|
@@ -2647,7 +2677,11 @@ declare module "sap/ui/webc/fiori/FilterItem" {
|
|
|
2647
2677
|
sText?: string
|
|
2648
2678
|
): this;
|
|
2649
2679
|
}
|
|
2650
|
-
|
|
2680
|
+
/**
|
|
2681
|
+
* Describes the settings that can be provided to the FilterItem constructor.
|
|
2682
|
+
*
|
|
2683
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
2684
|
+
*/
|
|
2651
2685
|
export interface $FilterItemSettings extends $WebComponentSettings {
|
|
2652
2686
|
/**
|
|
2653
2687
|
* Defines the additional text of the component.
|
|
@@ -2815,7 +2849,11 @@ declare module "sap/ui/webc/fiori/FilterItemOption" {
|
|
|
2815
2849
|
sText?: string
|
|
2816
2850
|
): this;
|
|
2817
2851
|
}
|
|
2818
|
-
|
|
2852
|
+
/**
|
|
2853
|
+
* Describes the settings that can be provided to the FilterItemOption constructor.
|
|
2854
|
+
*
|
|
2855
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
2856
|
+
*/
|
|
2819
2857
|
export interface $FilterItemOptionSettings extends $WebComponentSettings {
|
|
2820
2858
|
/**
|
|
2821
2859
|
* Defines if the component is selected.
|
|
@@ -3351,7 +3389,11 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3351
3389
|
sWidth: CSSSize
|
|
3352
3390
|
): this;
|
|
3353
3391
|
}
|
|
3354
|
-
|
|
3392
|
+
/**
|
|
3393
|
+
* Describes the settings that can be provided to the FlexibleColumnLayout constructor.
|
|
3394
|
+
*
|
|
3395
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
3396
|
+
*/
|
|
3355
3397
|
export interface $FlexibleColumnLayoutSettings extends $WebComponentSettings {
|
|
3356
3398
|
/**
|
|
3357
3399
|
* An object of strings that defines additional accessibility roles for further customization.
|
|
@@ -3442,6 +3484,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3442
3484
|
layoutChange?: (oEvent: FlexibleColumnLayout$LayoutChangeEvent) => void;
|
|
3443
3485
|
}
|
|
3444
3486
|
|
|
3487
|
+
/**
|
|
3488
|
+
* Parameters of the FlexibleColumnLayout#layoutChange event.
|
|
3489
|
+
*/
|
|
3445
3490
|
export interface FlexibleColumnLayout$LayoutChangeEventParameters {
|
|
3446
3491
|
/**
|
|
3447
3492
|
* The current layout
|
|
@@ -3479,6 +3524,9 @@ declare module "sap/ui/webc/fiori/FlexibleColumnLayout" {
|
|
|
3479
3524
|
resize?: boolean;
|
|
3480
3525
|
}
|
|
3481
3526
|
|
|
3527
|
+
/**
|
|
3528
|
+
* Event object of the FlexibleColumnLayout#layoutChange event.
|
|
3529
|
+
*/
|
|
3482
3530
|
export type FlexibleColumnLayout$LayoutChangeEvent = Event<
|
|
3483
3531
|
FlexibleColumnLayout$LayoutChangeEventParameters,
|
|
3484
3532
|
FlexibleColumnLayout
|
|
@@ -3909,7 +3957,11 @@ declare module "sap/ui/webc/fiori/IllustratedMessage" {
|
|
|
3909
3957
|
sTitleText?: string
|
|
3910
3958
|
): this;
|
|
3911
3959
|
}
|
|
3912
|
-
|
|
3960
|
+
/**
|
|
3961
|
+
* Describes the settings that can be provided to the IllustratedMessage constructor.
|
|
3962
|
+
*
|
|
3963
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
3964
|
+
*/
|
|
3913
3965
|
export interface $IllustratedMessageSettings extends $WebComponentSettings {
|
|
3914
3966
|
name?:
|
|
3915
3967
|
| (IllustrationMessageType | keyof typeof IllustrationMessageType)
|
|
@@ -4602,7 +4654,11 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4602
4654
|
bShowAllThumbnails?: boolean
|
|
4603
4655
|
): this;
|
|
4604
4656
|
}
|
|
4605
|
-
|
|
4657
|
+
/**
|
|
4658
|
+
* Describes the settings that can be provided to the MediaGallery constructor.
|
|
4659
|
+
*
|
|
4660
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
4661
|
+
*/
|
|
4606
4662
|
export interface $MediaGallerySettings extends $WebComponentSettings {
|
|
4607
4663
|
/**
|
|
4608
4664
|
* If enabled, a `display-area-click` event is fired when the user clicks or taps on the display area.
|
|
@@ -4693,20 +4749,35 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4693
4749
|
selectionChange?: (oEvent: MediaGallery$SelectionChangeEvent) => void;
|
|
4694
4750
|
}
|
|
4695
4751
|
|
|
4752
|
+
/**
|
|
4753
|
+
* Parameters of the MediaGallery#displayAreaClick event.
|
|
4754
|
+
*/
|
|
4696
4755
|
export interface MediaGallery$DisplayAreaClickEventParameters {}
|
|
4697
4756
|
|
|
4757
|
+
/**
|
|
4758
|
+
* Event object of the MediaGallery#displayAreaClick event.
|
|
4759
|
+
*/
|
|
4698
4760
|
export type MediaGallery$DisplayAreaClickEvent = Event<
|
|
4699
4761
|
MediaGallery$DisplayAreaClickEventParameters,
|
|
4700
4762
|
MediaGallery
|
|
4701
4763
|
>;
|
|
4702
4764
|
|
|
4765
|
+
/**
|
|
4766
|
+
* Parameters of the MediaGallery#overflowClick event.
|
|
4767
|
+
*/
|
|
4703
4768
|
export interface MediaGallery$OverflowClickEventParameters {}
|
|
4704
4769
|
|
|
4770
|
+
/**
|
|
4771
|
+
* Event object of the MediaGallery#overflowClick event.
|
|
4772
|
+
*/
|
|
4705
4773
|
export type MediaGallery$OverflowClickEvent = Event<
|
|
4706
4774
|
MediaGallery$OverflowClickEventParameters,
|
|
4707
4775
|
MediaGallery
|
|
4708
4776
|
>;
|
|
4709
4777
|
|
|
4778
|
+
/**
|
|
4779
|
+
* Parameters of the MediaGallery#selectionChange event.
|
|
4780
|
+
*/
|
|
4710
4781
|
export interface MediaGallery$SelectionChangeEventParameters {
|
|
4711
4782
|
/**
|
|
4712
4783
|
* the selected item.
|
|
@@ -4714,6 +4785,9 @@ declare module "sap/ui/webc/fiori/MediaGallery" {
|
|
|
4714
4785
|
item?: HTMLElement;
|
|
4715
4786
|
}
|
|
4716
4787
|
|
|
4788
|
+
/**
|
|
4789
|
+
* Event object of the MediaGallery#selectionChange event.
|
|
4790
|
+
*/
|
|
4717
4791
|
export type MediaGallery$SelectionChangeEvent = Event<
|
|
4718
4792
|
MediaGallery$SelectionChangeEventParameters,
|
|
4719
4793
|
MediaGallery
|
|
@@ -4970,7 +5044,11 @@ declare module "sap/ui/webc/fiori/MediaGalleryItem" {
|
|
|
4970
5044
|
oThumbnail: Control
|
|
4971
5045
|
): this;
|
|
4972
5046
|
}
|
|
4973
|
-
|
|
5047
|
+
/**
|
|
5048
|
+
* Describes the settings that can be provided to the MediaGalleryItem constructor.
|
|
5049
|
+
*
|
|
5050
|
+
* @experimental (since 1.99.0) - This control is experimental and its API might change significantly.
|
|
5051
|
+
*/
|
|
4974
5052
|
export interface $MediaGalleryItemSettings extends $WebComponentSettings {
|
|
4975
5053
|
/**
|
|
4976
5054
|
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
@@ -5301,7 +5379,11 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5301
5379
|
sText?: string
|
|
5302
5380
|
): this;
|
|
5303
5381
|
}
|
|
5304
|
-
|
|
5382
|
+
/**
|
|
5383
|
+
* Describes the settings that can be provided to the NotificationAction constructor.
|
|
5384
|
+
*
|
|
5385
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
5386
|
+
*/
|
|
5305
5387
|
export interface $NotificationActionSettings extends $WebComponentSettings {
|
|
5306
5388
|
/**
|
|
5307
5389
|
* Defines the action design.
|
|
@@ -5336,6 +5418,9 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5336
5418
|
click?: (oEvent: NotificationAction$ClickEvent) => void;
|
|
5337
5419
|
}
|
|
5338
5420
|
|
|
5421
|
+
/**
|
|
5422
|
+
* Parameters of the NotificationAction#click event.
|
|
5423
|
+
*/
|
|
5339
5424
|
export interface NotificationAction$ClickEventParameters {
|
|
5340
5425
|
/**
|
|
5341
5426
|
* DOM ref of the clicked element
|
|
@@ -5343,6 +5428,9 @@ declare module "sap/ui/webc/fiori/NotificationAction" {
|
|
|
5343
5428
|
targetRef?: HTMLElement;
|
|
5344
5429
|
}
|
|
5345
5430
|
|
|
5431
|
+
/**
|
|
5432
|
+
* Event object of the NotificationAction#click event.
|
|
5433
|
+
*/
|
|
5346
5434
|
export type NotificationAction$ClickEvent = Event<
|
|
5347
5435
|
NotificationAction$ClickEventParameters,
|
|
5348
5436
|
NotificationAction
|
|
@@ -6044,7 +6132,11 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
6044
6132
|
sTitleText?: string
|
|
6045
6133
|
): this;
|
|
6046
6134
|
}
|
|
6047
|
-
|
|
6135
|
+
/**
|
|
6136
|
+
* Describes the settings that can be provided to the NotificationListGroupItem constructor.
|
|
6137
|
+
*
|
|
6138
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
6139
|
+
*/
|
|
6048
6140
|
export interface $NotificationListGroupItemSettings
|
|
6049
6141
|
extends $WebComponentSettings {
|
|
6050
6142
|
/**
|
|
@@ -6129,6 +6221,9 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
6129
6221
|
toggle?: (oEvent: Event) => void;
|
|
6130
6222
|
}
|
|
6131
6223
|
|
|
6224
|
+
/**
|
|
6225
|
+
* Parameters of the NotificationListGroupItem#close event.
|
|
6226
|
+
*/
|
|
6132
6227
|
export interface NotificationListGroupItem$CloseEventParameters {
|
|
6133
6228
|
/**
|
|
6134
6229
|
* the closed item.
|
|
@@ -6136,13 +6231,22 @@ declare module "sap/ui/webc/fiori/NotificationListGroupItem" {
|
|
|
6136
6231
|
item?: HTMLElement;
|
|
6137
6232
|
}
|
|
6138
6233
|
|
|
6234
|
+
/**
|
|
6235
|
+
* Event object of the NotificationListGroupItem#close event.
|
|
6236
|
+
*/
|
|
6139
6237
|
export type NotificationListGroupItem$CloseEvent = Event<
|
|
6140
6238
|
NotificationListGroupItem$CloseEventParameters,
|
|
6141
6239
|
NotificationListGroupItem
|
|
6142
6240
|
>;
|
|
6143
6241
|
|
|
6242
|
+
/**
|
|
6243
|
+
* Parameters of the NotificationListGroupItem#toggle event.
|
|
6244
|
+
*/
|
|
6144
6245
|
export interface NotificationListGroupItem$ToggleEventParameters {}
|
|
6145
6246
|
|
|
6247
|
+
/**
|
|
6248
|
+
* Event object of the NotificationListGroupItem#toggle event.
|
|
6249
|
+
*/
|
|
6146
6250
|
export type NotificationListGroupItem$ToggleEvent = Event<
|
|
6147
6251
|
NotificationListGroupItem$ToggleEventParameters,
|
|
6148
6252
|
NotificationListGroupItem
|
|
@@ -6814,7 +6918,11 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6814
6918
|
sWrappingType?: WrappingType | keyof typeof WrappingType
|
|
6815
6919
|
): this;
|
|
6816
6920
|
}
|
|
6817
|
-
|
|
6921
|
+
/**
|
|
6922
|
+
* Describes the settings that can be provided to the NotificationListItem constructor.
|
|
6923
|
+
*
|
|
6924
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
6925
|
+
*/
|
|
6818
6926
|
export interface $NotificationListItemSettings extends $WebComponentSettings {
|
|
6819
6927
|
/**
|
|
6820
6928
|
* Defines if a busy indicator would be displayed over the item.
|
|
@@ -6907,6 +7015,9 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6907
7015
|
close?: (oEvent: NotificationListItem$CloseEvent) => void;
|
|
6908
7016
|
}
|
|
6909
7017
|
|
|
7018
|
+
/**
|
|
7019
|
+
* Parameters of the NotificationListItem#close event.
|
|
7020
|
+
*/
|
|
6910
7021
|
export interface NotificationListItem$CloseEventParameters {
|
|
6911
7022
|
/**
|
|
6912
7023
|
* the closed item.
|
|
@@ -6914,6 +7025,9 @@ declare module "sap/ui/webc/fiori/NotificationListItem" {
|
|
|
6914
7025
|
item?: HTMLElement;
|
|
6915
7026
|
}
|
|
6916
7027
|
|
|
7028
|
+
/**
|
|
7029
|
+
* Event object of the NotificationListItem#close event.
|
|
7030
|
+
*/
|
|
6917
7031
|
export type NotificationListItem$CloseEvent = Event<
|
|
6918
7032
|
NotificationListItem$CloseEventParameters,
|
|
6919
7033
|
NotificationListItem
|
|
@@ -7342,7 +7456,11 @@ declare module "sap/ui/webc/fiori/Page" {
|
|
|
7342
7456
|
sWidth: CSSSize
|
|
7343
7457
|
): this;
|
|
7344
7458
|
}
|
|
7345
|
-
|
|
7459
|
+
/**
|
|
7460
|
+
* Describes the settings that can be provided to the Page constructor.
|
|
7461
|
+
*
|
|
7462
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7463
|
+
*/
|
|
7346
7464
|
export interface $PageSettings extends $WebComponentSettings {
|
|
7347
7465
|
/**
|
|
7348
7466
|
* Defines the background color of the `sap.ui.webc.fiori.Page`.
|
|
@@ -7575,7 +7693,11 @@ declare module "sap/ui/webc/fiori/ProductSwitch" {
|
|
|
7575
7693
|
vItem: int | string | IProductSwitchItem
|
|
7576
7694
|
): IProductSwitchItem | null;
|
|
7577
7695
|
}
|
|
7578
|
-
|
|
7696
|
+
/**
|
|
7697
|
+
* Describes the settings that can be provided to the ProductSwitch constructor.
|
|
7698
|
+
*
|
|
7699
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
7700
|
+
*/
|
|
7579
7701
|
export interface $ProductSwitchSettings extends $WebComponentSettings {
|
|
7580
7702
|
/**
|
|
7581
7703
|
* Defines the items of the `sap.ui.webc.fiori.ProductSwitch`.
|
|
@@ -7941,7 +8063,11 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
|
|
|
7941
8063
|
sTitleText?: string
|
|
7942
8064
|
): this;
|
|
7943
8065
|
}
|
|
7944
|
-
|
|
8066
|
+
/**
|
|
8067
|
+
* Describes the settings that can be provided to the ProductSwitchItem constructor.
|
|
8068
|
+
*
|
|
8069
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
8070
|
+
*/
|
|
7945
8071
|
export interface $ProductSwitchItemSettings extends $WebComponentSettings {
|
|
7946
8072
|
/**
|
|
7947
8073
|
* Defines the icon to be displayed as a graphical element within the component.
|
|
@@ -7990,8 +8116,14 @@ declare module "sap/ui/webc/fiori/ProductSwitchItem" {
|
|
|
7990
8116
|
click?: (oEvent: Event) => void;
|
|
7991
8117
|
}
|
|
7992
8118
|
|
|
8119
|
+
/**
|
|
8120
|
+
* Parameters of the ProductSwitchItem#click event.
|
|
8121
|
+
*/
|
|
7993
8122
|
export interface ProductSwitchItem$ClickEventParameters {}
|
|
7994
8123
|
|
|
8124
|
+
/**
|
|
8125
|
+
* Event object of the ProductSwitchItem#click event.
|
|
8126
|
+
*/
|
|
7995
8127
|
export type ProductSwitchItem$ClickEvent = Event<
|
|
7996
8128
|
ProductSwitchItem$ClickEventParameters,
|
|
7997
8129
|
ProductSwitchItem
|
|
@@ -9240,7 +9372,11 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9240
9372
|
oStartButton: IButton
|
|
9241
9373
|
): this;
|
|
9242
9374
|
}
|
|
9243
|
-
|
|
9375
|
+
/**
|
|
9376
|
+
* Describes the settings that can be provided to the ShellBar constructor.
|
|
9377
|
+
*
|
|
9378
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
9379
|
+
*/
|
|
9244
9380
|
export interface $ShellBarSettings extends $WebComponentSettings {
|
|
9245
9381
|
/**
|
|
9246
9382
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -9401,6 +9537,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9401
9537
|
profileClick?: (oEvent: ShellBar$ProfileClickEvent) => void;
|
|
9402
9538
|
}
|
|
9403
9539
|
|
|
9540
|
+
/**
|
|
9541
|
+
* Parameters of the ShellBar#coPilotClick event.
|
|
9542
|
+
*/
|
|
9404
9543
|
export interface ShellBar$CoPilotClickEventParameters {
|
|
9405
9544
|
/**
|
|
9406
9545
|
* dom ref of the activated element
|
|
@@ -9408,11 +9547,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9408
9547
|
targetRef?: HTMLElement;
|
|
9409
9548
|
}
|
|
9410
9549
|
|
|
9550
|
+
/**
|
|
9551
|
+
* Event object of the ShellBar#coPilotClick event.
|
|
9552
|
+
*/
|
|
9411
9553
|
export type ShellBar$CoPilotClickEvent = Event<
|
|
9412
9554
|
ShellBar$CoPilotClickEventParameters,
|
|
9413
9555
|
ShellBar
|
|
9414
9556
|
>;
|
|
9415
9557
|
|
|
9558
|
+
/**
|
|
9559
|
+
* Parameters of the ShellBar#logoClick event.
|
|
9560
|
+
*/
|
|
9416
9561
|
export interface ShellBar$LogoClickEventParameters {
|
|
9417
9562
|
/**
|
|
9418
9563
|
* dom ref of the activated element
|
|
@@ -9420,11 +9565,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9420
9565
|
targetRef?: HTMLElement;
|
|
9421
9566
|
}
|
|
9422
9567
|
|
|
9568
|
+
/**
|
|
9569
|
+
* Event object of the ShellBar#logoClick event.
|
|
9570
|
+
*/
|
|
9423
9571
|
export type ShellBar$LogoClickEvent = Event<
|
|
9424
9572
|
ShellBar$LogoClickEventParameters,
|
|
9425
9573
|
ShellBar
|
|
9426
9574
|
>;
|
|
9427
9575
|
|
|
9576
|
+
/**
|
|
9577
|
+
* Parameters of the ShellBar#menuItemClick event.
|
|
9578
|
+
*/
|
|
9428
9579
|
export interface ShellBar$MenuItemClickEventParameters {
|
|
9429
9580
|
/**
|
|
9430
9581
|
* DOM ref of the activated list item
|
|
@@ -9432,11 +9583,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9432
9583
|
item?: HTMLElement;
|
|
9433
9584
|
}
|
|
9434
9585
|
|
|
9586
|
+
/**
|
|
9587
|
+
* Event object of the ShellBar#menuItemClick event.
|
|
9588
|
+
*/
|
|
9435
9589
|
export type ShellBar$MenuItemClickEvent = Event<
|
|
9436
9590
|
ShellBar$MenuItemClickEventParameters,
|
|
9437
9591
|
ShellBar
|
|
9438
9592
|
>;
|
|
9439
9593
|
|
|
9594
|
+
/**
|
|
9595
|
+
* Parameters of the ShellBar#notificationsClick event.
|
|
9596
|
+
*/
|
|
9440
9597
|
export interface ShellBar$NotificationsClickEventParameters {
|
|
9441
9598
|
/**
|
|
9442
9599
|
* dom ref of the activated element
|
|
@@ -9444,11 +9601,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9444
9601
|
targetRef?: HTMLElement;
|
|
9445
9602
|
}
|
|
9446
9603
|
|
|
9604
|
+
/**
|
|
9605
|
+
* Event object of the ShellBar#notificationsClick event.
|
|
9606
|
+
*/
|
|
9447
9607
|
export type ShellBar$NotificationsClickEvent = Event<
|
|
9448
9608
|
ShellBar$NotificationsClickEventParameters,
|
|
9449
9609
|
ShellBar
|
|
9450
9610
|
>;
|
|
9451
9611
|
|
|
9612
|
+
/**
|
|
9613
|
+
* Parameters of the ShellBar#productSwitchClick event.
|
|
9614
|
+
*/
|
|
9452
9615
|
export interface ShellBar$ProductSwitchClickEventParameters {
|
|
9453
9616
|
/**
|
|
9454
9617
|
* dom ref of the activated element
|
|
@@ -9456,11 +9619,17 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9456
9619
|
targetRef?: HTMLElement;
|
|
9457
9620
|
}
|
|
9458
9621
|
|
|
9622
|
+
/**
|
|
9623
|
+
* Event object of the ShellBar#productSwitchClick event.
|
|
9624
|
+
*/
|
|
9459
9625
|
export type ShellBar$ProductSwitchClickEvent = Event<
|
|
9460
9626
|
ShellBar$ProductSwitchClickEventParameters,
|
|
9461
9627
|
ShellBar
|
|
9462
9628
|
>;
|
|
9463
9629
|
|
|
9630
|
+
/**
|
|
9631
|
+
* Parameters of the ShellBar#profileClick event.
|
|
9632
|
+
*/
|
|
9464
9633
|
export interface ShellBar$ProfileClickEventParameters {
|
|
9465
9634
|
/**
|
|
9466
9635
|
* dom ref of the activated element
|
|
@@ -9468,6 +9637,9 @@ declare module "sap/ui/webc/fiori/ShellBar" {
|
|
|
9468
9637
|
targetRef?: HTMLElement;
|
|
9469
9638
|
}
|
|
9470
9639
|
|
|
9640
|
+
/**
|
|
9641
|
+
* Event object of the ShellBar#profileClick event.
|
|
9642
|
+
*/
|
|
9471
9643
|
export type ShellBar$ProfileClickEvent = Event<
|
|
9472
9644
|
ShellBar$ProfileClickEventParameters,
|
|
9473
9645
|
ShellBar
|
|
@@ -9731,7 +9903,11 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9731
9903
|
sText?: string
|
|
9732
9904
|
): this;
|
|
9733
9905
|
}
|
|
9734
|
-
|
|
9906
|
+
/**
|
|
9907
|
+
* Describes the settings that can be provided to the ShellBarItem constructor.
|
|
9908
|
+
*
|
|
9909
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
9910
|
+
*/
|
|
9735
9911
|
export interface $ShellBarItemSettings extends $WebComponentSettings {
|
|
9736
9912
|
/**
|
|
9737
9913
|
* Defines the count displayed in the top-right corner.
|
|
@@ -9756,6 +9932,9 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9756
9932
|
click?: (oEvent: ShellBarItem$ClickEvent) => void;
|
|
9757
9933
|
}
|
|
9758
9934
|
|
|
9935
|
+
/**
|
|
9936
|
+
* Parameters of the ShellBarItem#click event.
|
|
9937
|
+
*/
|
|
9759
9938
|
export interface ShellBarItem$ClickEventParameters {
|
|
9760
9939
|
/**
|
|
9761
9940
|
* DOM ref of the clicked element
|
|
@@ -9763,6 +9942,9 @@ declare module "sap/ui/webc/fiori/ShellBarItem" {
|
|
|
9763
9942
|
targetRef?: HTMLElement;
|
|
9764
9943
|
}
|
|
9765
9944
|
|
|
9945
|
+
/**
|
|
9946
|
+
* Event object of the ShellBarItem#click event.
|
|
9947
|
+
*/
|
|
9766
9948
|
export type ShellBarItem$ClickEvent = Event<
|
|
9767
9949
|
ShellBarItem$ClickEventParameters,
|
|
9768
9950
|
ShellBarItem
|
|
@@ -10233,7 +10415,11 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
10233
10415
|
bCollapsed?: boolean
|
|
10234
10416
|
): this;
|
|
10235
10417
|
}
|
|
10236
|
-
|
|
10418
|
+
/**
|
|
10419
|
+
* Describes the settings that can be provided to the SideNavigation constructor.
|
|
10420
|
+
*
|
|
10421
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10422
|
+
*/
|
|
10237
10423
|
export interface $SideNavigationSettings extends $WebComponentSettings {
|
|
10238
10424
|
/**
|
|
10239
10425
|
* Defines whether the `sap.ui.webc.fiori.SideNavigation` is expanded or collapsed.
|
|
@@ -10280,6 +10466,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
10280
10466
|
selectionChange?: (oEvent: SideNavigation$SelectionChangeEvent) => void;
|
|
10281
10467
|
}
|
|
10282
10468
|
|
|
10469
|
+
/**
|
|
10470
|
+
* Parameters of the SideNavigation#selectionChange event.
|
|
10471
|
+
*/
|
|
10283
10472
|
export interface SideNavigation$SelectionChangeEventParameters {
|
|
10284
10473
|
/**
|
|
10285
10474
|
* the clicked item.
|
|
@@ -10287,6 +10476,9 @@ declare module "sap/ui/webc/fiori/SideNavigation" {
|
|
|
10287
10476
|
item?: ISideNavigationItem | ISideNavigationSubItem;
|
|
10288
10477
|
}
|
|
10289
10478
|
|
|
10479
|
+
/**
|
|
10480
|
+
* Event object of the SideNavigation#selectionChange event.
|
|
10481
|
+
*/
|
|
10290
10482
|
export type SideNavigation$SelectionChangeEvent = Event<
|
|
10291
10483
|
SideNavigation$SelectionChangeEventParameters,
|
|
10292
10484
|
SideNavigation
|
|
@@ -10707,7 +10899,11 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
10707
10899
|
bWholeItemToggleable?: boolean
|
|
10708
10900
|
): this;
|
|
10709
10901
|
}
|
|
10710
|
-
|
|
10902
|
+
/**
|
|
10903
|
+
* Describes the settings that can be provided to the SideNavigationItem constructor.
|
|
10904
|
+
*
|
|
10905
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
10906
|
+
*/
|
|
10711
10907
|
export interface $SideNavigationItemSettings extends $WebComponentSettings {
|
|
10712
10908
|
/**
|
|
10713
10909
|
* Defines if the item is expanded
|
|
@@ -10757,8 +10953,14 @@ declare module "sap/ui/webc/fiori/SideNavigationItem" {
|
|
|
10757
10953
|
click?: (oEvent: Event) => void;
|
|
10758
10954
|
}
|
|
10759
10955
|
|
|
10956
|
+
/**
|
|
10957
|
+
* Parameters of the SideNavigationItem#click event.
|
|
10958
|
+
*/
|
|
10760
10959
|
export interface SideNavigationItem$ClickEventParameters {}
|
|
10761
10960
|
|
|
10961
|
+
/**
|
|
10962
|
+
* Event object of the SideNavigationItem#click event.
|
|
10963
|
+
*/
|
|
10762
10964
|
export type SideNavigationItem$ClickEvent = Event<
|
|
10763
10965
|
SideNavigationItem$ClickEventParameters,
|
|
10764
10966
|
SideNavigationItem
|
|
@@ -11032,7 +11234,11 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
11032
11234
|
sText?: string
|
|
11033
11235
|
): this;
|
|
11034
11236
|
}
|
|
11035
|
-
|
|
11237
|
+
/**
|
|
11238
|
+
* Describes the settings that can be provided to the SideNavigationSubItem constructor.
|
|
11239
|
+
*
|
|
11240
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
11241
|
+
*/
|
|
11036
11242
|
export interface $SideNavigationSubItemSettings
|
|
11037
11243
|
extends $WebComponentSettings {
|
|
11038
11244
|
/**
|
|
@@ -11061,8 +11267,14 @@ declare module "sap/ui/webc/fiori/SideNavigationSubItem" {
|
|
|
11061
11267
|
click?: (oEvent: Event) => void;
|
|
11062
11268
|
}
|
|
11063
11269
|
|
|
11270
|
+
/**
|
|
11271
|
+
* Parameters of the SideNavigationSubItem#click event.
|
|
11272
|
+
*/
|
|
11064
11273
|
export interface SideNavigationSubItem$ClickEventParameters {}
|
|
11065
11274
|
|
|
11275
|
+
/**
|
|
11276
|
+
* Event object of the SideNavigationSubItem#click event.
|
|
11277
|
+
*/
|
|
11066
11278
|
export type SideNavigationSubItem$ClickEvent = Event<
|
|
11067
11279
|
SideNavigationSubItem$ClickEventParameters,
|
|
11068
11280
|
SideNavigationSubItem
|
|
@@ -11212,7 +11424,11 @@ declare module "sap/ui/webc/fiori/SortItem" {
|
|
|
11212
11424
|
sText?: string
|
|
11213
11425
|
): this;
|
|
11214
11426
|
}
|
|
11215
|
-
|
|
11427
|
+
/**
|
|
11428
|
+
* Describes the settings that can be provided to the SortItem constructor.
|
|
11429
|
+
*
|
|
11430
|
+
* @experimental (since 1.97.0) - This control is experimental and its API might change significantly.
|
|
11431
|
+
*/
|
|
11216
11432
|
export interface $SortItemSettings extends $WebComponentSettings {
|
|
11217
11433
|
/**
|
|
11218
11434
|
* Defines if the component is selected.
|
|
@@ -11513,7 +11729,11 @@ declare module "sap/ui/webc/fiori/Timeline" {
|
|
|
11513
11729
|
sWidth: CSSSize
|
|
11514
11730
|
): this;
|
|
11515
11731
|
}
|
|
11516
|
-
|
|
11732
|
+
/**
|
|
11733
|
+
* Describes the settings that can be provided to the Timeline constructor.
|
|
11734
|
+
*
|
|
11735
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
11736
|
+
*/
|
|
11517
11737
|
export interface $TimelineSettings extends $WebComponentSettings {
|
|
11518
11738
|
/**
|
|
11519
11739
|
* Defines the accessible ARIA name of the component.
|
|
@@ -11963,7 +12183,11 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
|
|
|
11963
12183
|
sTitleText?: string
|
|
11964
12184
|
): this;
|
|
11965
12185
|
}
|
|
11966
|
-
|
|
12186
|
+
/**
|
|
12187
|
+
* Describes the settings that can be provided to the TimelineItem constructor.
|
|
12188
|
+
*
|
|
12189
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
12190
|
+
*/
|
|
11967
12191
|
export interface $TimelineItemSettings extends $WebComponentSettings {
|
|
11968
12192
|
/**
|
|
11969
12193
|
* Defines the icon to be displayed as graphical element within the `sap.ui.webc.fiori.TimelineItem`. SAP-icons
|
|
@@ -12008,8 +12232,14 @@ declare module "sap/ui/webc/fiori/TimelineItem" {
|
|
|
12008
12232
|
nameClick?: (oEvent: Event) => void;
|
|
12009
12233
|
}
|
|
12010
12234
|
|
|
12235
|
+
/**
|
|
12236
|
+
* Parameters of the TimelineItem#nameClick event.
|
|
12237
|
+
*/
|
|
12011
12238
|
export interface TimelineItem$NameClickEventParameters {}
|
|
12012
12239
|
|
|
12240
|
+
/**
|
|
12241
|
+
* Event object of the TimelineItem#nameClick event.
|
|
12242
|
+
*/
|
|
12013
12243
|
export type TimelineItem$NameClickEvent = Event<
|
|
12014
12244
|
TimelineItem$NameClickEventParameters,
|
|
12015
12245
|
TimelineItem
|
|
@@ -12728,7 +12958,11 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12728
12958
|
sWidth: CSSSize
|
|
12729
12959
|
): this;
|
|
12730
12960
|
}
|
|
12731
|
-
|
|
12961
|
+
/**
|
|
12962
|
+
* Describes the settings that can be provided to the UploadCollection constructor.
|
|
12963
|
+
*
|
|
12964
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
12965
|
+
*/
|
|
12732
12966
|
export interface $UploadCollectionSettings extends $WebComponentSettings {
|
|
12733
12967
|
/**
|
|
12734
12968
|
* Defines the accessible ARIA name of the component.
|
|
@@ -12813,6 +13047,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12813
13047
|
selectionChange?: (oEvent: UploadCollection$SelectionChangeEvent) => void;
|
|
12814
13048
|
}
|
|
12815
13049
|
|
|
13050
|
+
/**
|
|
13051
|
+
* Parameters of the UploadCollection#drop event.
|
|
13052
|
+
*/
|
|
12816
13053
|
export interface UploadCollection$DropEventParameters {
|
|
12817
13054
|
/**
|
|
12818
13055
|
* The `drop` event operation data.
|
|
@@ -12820,11 +13057,17 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12820
13057
|
dataTransfer?: DataTransfer;
|
|
12821
13058
|
}
|
|
12822
13059
|
|
|
13060
|
+
/**
|
|
13061
|
+
* Event object of the UploadCollection#drop event.
|
|
13062
|
+
*/
|
|
12823
13063
|
export type UploadCollection$DropEvent = Event<
|
|
12824
13064
|
UploadCollection$DropEventParameters,
|
|
12825
13065
|
UploadCollection
|
|
12826
13066
|
>;
|
|
12827
13067
|
|
|
13068
|
+
/**
|
|
13069
|
+
* Parameters of the UploadCollection#itemDelete event.
|
|
13070
|
+
*/
|
|
12828
13071
|
export interface UploadCollection$ItemDeleteEventParameters {
|
|
12829
13072
|
/**
|
|
12830
13073
|
* The `sap.ui.webc.fiori.UploadCollectionItem` which was deleted.
|
|
@@ -12832,11 +13075,17 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12832
13075
|
item?: HTMLElement;
|
|
12833
13076
|
}
|
|
12834
13077
|
|
|
13078
|
+
/**
|
|
13079
|
+
* Event object of the UploadCollection#itemDelete event.
|
|
13080
|
+
*/
|
|
12835
13081
|
export type UploadCollection$ItemDeleteEvent = Event<
|
|
12836
13082
|
UploadCollection$ItemDeleteEventParameters,
|
|
12837
13083
|
UploadCollection
|
|
12838
13084
|
>;
|
|
12839
13085
|
|
|
13086
|
+
/**
|
|
13087
|
+
* Parameters of the UploadCollection#selectionChange event.
|
|
13088
|
+
*/
|
|
12840
13089
|
export interface UploadCollection$SelectionChangeEventParameters {
|
|
12841
13090
|
/**
|
|
12842
13091
|
* An array of the selected items.
|
|
@@ -12844,6 +13093,9 @@ declare module "sap/ui/webc/fiori/UploadCollection" {
|
|
|
12844
13093
|
selectedItems?: any[];
|
|
12845
13094
|
}
|
|
12846
13095
|
|
|
13096
|
+
/**
|
|
13097
|
+
* Event object of the UploadCollection#selectionChange event.
|
|
13098
|
+
*/
|
|
12847
13099
|
export type UploadCollection$SelectionChangeEvent = Event<
|
|
12848
13100
|
UploadCollection$SelectionChangeEventParameters,
|
|
12849
13101
|
UploadCollection
|
|
@@ -13910,7 +14162,11 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
|
|
|
13910
14162
|
sUploadState?: UploadState | keyof typeof UploadState
|
|
13911
14163
|
): this;
|
|
13912
14164
|
}
|
|
13913
|
-
|
|
14165
|
+
/**
|
|
14166
|
+
* Describes the settings that can be provided to the UploadCollectionItem constructor.
|
|
14167
|
+
*
|
|
14168
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
14169
|
+
*/
|
|
13914
14170
|
export interface $UploadCollectionItemSettings extends $WebComponentSettings {
|
|
13915
14171
|
/**
|
|
13916
14172
|
* An object of strings that defines several additional accessibility attribute values for customization
|
|
@@ -14059,36 +14315,66 @@ declare module "sap/ui/webc/fiori/UploadCollectionItem" {
|
|
|
14059
14315
|
terminate?: (oEvent: Event) => void;
|
|
14060
14316
|
}
|
|
14061
14317
|
|
|
14318
|
+
/**
|
|
14319
|
+
* Parameters of the UploadCollectionItem#detailClick event.
|
|
14320
|
+
*/
|
|
14062
14321
|
export interface UploadCollectionItem$DetailClickEventParameters {}
|
|
14063
14322
|
|
|
14323
|
+
/**
|
|
14324
|
+
* Event object of the UploadCollectionItem#detailClick event.
|
|
14325
|
+
*/
|
|
14064
14326
|
export type UploadCollectionItem$DetailClickEvent = Event<
|
|
14065
14327
|
UploadCollectionItem$DetailClickEventParameters,
|
|
14066
14328
|
UploadCollectionItem
|
|
14067
14329
|
>;
|
|
14068
14330
|
|
|
14331
|
+
/**
|
|
14332
|
+
* Parameters of the UploadCollectionItem#fileNameClick event.
|
|
14333
|
+
*/
|
|
14069
14334
|
export interface UploadCollectionItem$FileNameClickEventParameters {}
|
|
14070
14335
|
|
|
14336
|
+
/**
|
|
14337
|
+
* Event object of the UploadCollectionItem#fileNameClick event.
|
|
14338
|
+
*/
|
|
14071
14339
|
export type UploadCollectionItem$FileNameClickEvent = Event<
|
|
14072
14340
|
UploadCollectionItem$FileNameClickEventParameters,
|
|
14073
14341
|
UploadCollectionItem
|
|
14074
14342
|
>;
|
|
14075
14343
|
|
|
14344
|
+
/**
|
|
14345
|
+
* Parameters of the UploadCollectionItem#rename event.
|
|
14346
|
+
*/
|
|
14076
14347
|
export interface UploadCollectionItem$RenameEventParameters {}
|
|
14077
14348
|
|
|
14349
|
+
/**
|
|
14350
|
+
* Event object of the UploadCollectionItem#rename event.
|
|
14351
|
+
*/
|
|
14078
14352
|
export type UploadCollectionItem$RenameEvent = Event<
|
|
14079
14353
|
UploadCollectionItem$RenameEventParameters,
|
|
14080
14354
|
UploadCollectionItem
|
|
14081
14355
|
>;
|
|
14082
14356
|
|
|
14357
|
+
/**
|
|
14358
|
+
* Parameters of the UploadCollectionItem#retry event.
|
|
14359
|
+
*/
|
|
14083
14360
|
export interface UploadCollectionItem$RetryEventParameters {}
|
|
14084
14361
|
|
|
14362
|
+
/**
|
|
14363
|
+
* Event object of the UploadCollectionItem#retry event.
|
|
14364
|
+
*/
|
|
14085
14365
|
export type UploadCollectionItem$RetryEvent = Event<
|
|
14086
14366
|
UploadCollectionItem$RetryEventParameters,
|
|
14087
14367
|
UploadCollectionItem
|
|
14088
14368
|
>;
|
|
14089
14369
|
|
|
14370
|
+
/**
|
|
14371
|
+
* Parameters of the UploadCollectionItem#terminate event.
|
|
14372
|
+
*/
|
|
14090
14373
|
export interface UploadCollectionItem$TerminateEventParameters {}
|
|
14091
14374
|
|
|
14375
|
+
/**
|
|
14376
|
+
* Event object of the UploadCollectionItem#terminate event.
|
|
14377
|
+
*/
|
|
14092
14378
|
export type UploadCollectionItem$TerminateEvent = Event<
|
|
14093
14379
|
UploadCollectionItem$TerminateEventParameters,
|
|
14094
14380
|
UploadCollectionItem
|
|
@@ -14642,7 +14928,11 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14642
14928
|
*/
|
|
14643
14929
|
show(): void;
|
|
14644
14930
|
}
|
|
14645
|
-
|
|
14931
|
+
/**
|
|
14932
|
+
* Describes the settings that can be provided to the ViewSettingsDialog constructor.
|
|
14933
|
+
*
|
|
14934
|
+
* @experimental (since 1.95.0) - This control is experimental and its API might change significantly.
|
|
14935
|
+
*/
|
|
14646
14936
|
export interface $ViewSettingsDialogSettings extends $WebComponentSettings {
|
|
14647
14937
|
/**
|
|
14648
14938
|
* Defines the initial sort order.
|
|
@@ -14677,13 +14967,22 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14677
14967
|
confirm?: (oEvent: ViewSettingsDialog$ConfirmEvent) => void;
|
|
14678
14968
|
}
|
|
14679
14969
|
|
|
14970
|
+
/**
|
|
14971
|
+
* Parameters of the ViewSettingsDialog#beforeOpen event.
|
|
14972
|
+
*/
|
|
14680
14973
|
export interface ViewSettingsDialog$BeforeOpenEventParameters {}
|
|
14681
14974
|
|
|
14975
|
+
/**
|
|
14976
|
+
* Event object of the ViewSettingsDialog#beforeOpen event.
|
|
14977
|
+
*/
|
|
14682
14978
|
export type ViewSettingsDialog$BeforeOpenEvent = Event<
|
|
14683
14979
|
ViewSettingsDialog$BeforeOpenEventParameters,
|
|
14684
14980
|
ViewSettingsDialog
|
|
14685
14981
|
>;
|
|
14686
14982
|
|
|
14983
|
+
/**
|
|
14984
|
+
* Parameters of the ViewSettingsDialog#cancel event.
|
|
14985
|
+
*/
|
|
14687
14986
|
export interface ViewSettingsDialog$CancelEventParameters {
|
|
14688
14987
|
/**
|
|
14689
14988
|
* The current sort order selected.
|
|
@@ -14711,11 +15010,17 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14711
15010
|
filters?: any[];
|
|
14712
15011
|
}
|
|
14713
15012
|
|
|
15013
|
+
/**
|
|
15014
|
+
* Event object of the ViewSettingsDialog#cancel event.
|
|
15015
|
+
*/
|
|
14714
15016
|
export type ViewSettingsDialog$CancelEvent = Event<
|
|
14715
15017
|
ViewSettingsDialog$CancelEventParameters,
|
|
14716
15018
|
ViewSettingsDialog
|
|
14717
15019
|
>;
|
|
14718
15020
|
|
|
15021
|
+
/**
|
|
15022
|
+
* Parameters of the ViewSettingsDialog#confirm event.
|
|
15023
|
+
*/
|
|
14719
15024
|
export interface ViewSettingsDialog$ConfirmEventParameters {
|
|
14720
15025
|
/**
|
|
14721
15026
|
* The current sort order selected.
|
|
@@ -14743,6 +15048,9 @@ declare module "sap/ui/webc/fiori/ViewSettingsDialog" {
|
|
|
14743
15048
|
filters?: any[];
|
|
14744
15049
|
}
|
|
14745
15050
|
|
|
15051
|
+
/**
|
|
15052
|
+
* Event object of the ViewSettingsDialog#confirm event.
|
|
15053
|
+
*/
|
|
14746
15054
|
export type ViewSettingsDialog$ConfirmEvent = Event<
|
|
14747
15055
|
ViewSettingsDialog$ConfirmEventParameters,
|
|
14748
15056
|
ViewSettingsDialog
|
|
@@ -15123,7 +15431,11 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
15123
15431
|
sHeight: CSSSize
|
|
15124
15432
|
): this;
|
|
15125
15433
|
}
|
|
15126
|
-
|
|
15434
|
+
/**
|
|
15435
|
+
* Describes the settings that can be provided to the Wizard constructor.
|
|
15436
|
+
*
|
|
15437
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
15438
|
+
*/
|
|
15127
15439
|
export interface $WizardSettings extends $WebComponentSettings {
|
|
15128
15440
|
/**
|
|
15129
15441
|
* Defines how the content of the `sap.ui.webc.fiori.Wizard` would be visualized.
|
|
@@ -15156,6 +15468,9 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
15156
15468
|
stepChange?: (oEvent: Wizard$StepChangeEvent) => void;
|
|
15157
15469
|
}
|
|
15158
15470
|
|
|
15471
|
+
/**
|
|
15472
|
+
* Parameters of the Wizard#stepChange event.
|
|
15473
|
+
*/
|
|
15159
15474
|
export interface Wizard$StepChangeEventParameters {
|
|
15160
15475
|
/**
|
|
15161
15476
|
* The new step.
|
|
@@ -15173,6 +15488,9 @@ declare module "sap/ui/webc/fiori/Wizard" {
|
|
|
15173
15488
|
changeWithClick?: boolean;
|
|
15174
15489
|
}
|
|
15175
15490
|
|
|
15491
|
+
/**
|
|
15492
|
+
* Event object of the Wizard#stepChange event.
|
|
15493
|
+
*/
|
|
15176
15494
|
export type Wizard$StepChangeEvent = Event<
|
|
15177
15495
|
Wizard$StepChangeEventParameters,
|
|
15178
15496
|
Wizard
|
|
@@ -15586,7 +15904,11 @@ declare module "sap/ui/webc/fiori/WizardStep" {
|
|
|
15586
15904
|
sTitleText?: string
|
|
15587
15905
|
): this;
|
|
15588
15906
|
}
|
|
15589
|
-
|
|
15907
|
+
/**
|
|
15908
|
+
* Describes the settings that can be provided to the WizardStep constructor.
|
|
15909
|
+
*
|
|
15910
|
+
* @experimental (since 1.92.0) - This control is experimental and its API might change significantly.
|
|
15911
|
+
*/
|
|
15590
15912
|
export interface $WizardStepSettings extends $WebComponentSettings {
|
|
15591
15913
|
/**
|
|
15592
15914
|
* When `branching` is enabled a dashed line would be displayed after the step, meant to indicate that the
|