@openui5/ts-types 1.116.0 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +160 -63
- package/types/sap.m.d.ts +2259 -806
- package/types/sap.tnt.d.ts +13 -4
- package/types/sap.ui.codeeditor.d.ts +9 -3
- package/types/sap.ui.commons.d.ts +297 -116
- package/types/sap.ui.core.d.ts +976 -286
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +25 -10
- package/types/sap.ui.integration.d.ts +90 -23
- package/types/sap.ui.layout.d.ts +93 -30
- package/types/sap.ui.mdc.d.ts +6507 -6291
- 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 +149 -43
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +265 -103
- package/types/sap.ui.ux3.d.ts +300 -120
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +170 -68
- package/types/sap.ui.webc.main.d.ts +495 -198
- package/types/sap.uxap.d.ts +51 -21
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.117.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -970,6 +970,13 @@ declare namespace sap {
|
|
|
970
970
|
*/
|
|
971
971
|
iTitleMaxLines?: int
|
|
972
972
|
): this;
|
|
973
|
+
/**
|
|
974
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
975
|
+
*
|
|
976
|
+
*
|
|
977
|
+
* @returns If the icon should be shown.
|
|
978
|
+
*/
|
|
979
|
+
shouldShowIcon(): boolean;
|
|
973
980
|
}
|
|
974
981
|
/**
|
|
975
982
|
* @since 1.64
|
|
@@ -1787,9 +1794,15 @@ declare namespace sap {
|
|
|
1787
1794
|
End = "End",
|
|
1788
1795
|
}
|
|
1789
1796
|
|
|
1790
|
-
type Header$PressEvent = sap.ui.base.Event<
|
|
1797
|
+
type Header$PressEvent = sap.ui.base.Event<
|
|
1798
|
+
Header$PressEventParameters,
|
|
1799
|
+
Header
|
|
1800
|
+
>;
|
|
1791
1801
|
|
|
1792
|
-
type NumericHeader$PressEvent = sap.ui.base.Event<
|
|
1802
|
+
type NumericHeader$PressEvent = sap.ui.base.Event<
|
|
1803
|
+
NumericHeader$PressEventParameters,
|
|
1804
|
+
NumericHeader
|
|
1805
|
+
>;
|
|
1793
1806
|
}
|
|
1794
1807
|
|
|
1795
1808
|
namespace dnd {
|
|
@@ -10464,7 +10477,7 @@ declare namespace sap {
|
|
|
10464
10477
|
*/
|
|
10465
10478
|
getPreserveHeaderStateOnScroll(): boolean;
|
|
10466
10479
|
/**
|
|
10467
|
-
* Returns the `sap.ui.core.ScrollEnablement` delegate which is used with this control.
|
|
10480
|
+
* Returns the `sap.ui.core.delegate.ScrollEnablement` delegate which is used with this control.
|
|
10468
10481
|
*
|
|
10469
10482
|
* @returns The scroll delegate instance
|
|
10470
10483
|
*/
|
|
@@ -18667,10 +18680,10 @@ declare namespace sap {
|
|
|
18667
18680
|
* - [Enter] - set the expanded side panel width to the default value defined in `sidePanelWidth` property
|
|
18668
18681
|
*
|
|
18669
18682
|
* - [Shift]+[F10] or [Context menu] - show the resize context menu
|
|
18670
|
-
* - [Arrow Left] / [Arrow Right] - increase/decrease the width of the expanded
|
|
18671
|
-
* step
|
|
18672
|
-
* - [Shift] + [Arrow Left]
|
|
18673
|
-
* the larger step
|
|
18683
|
+
* - [Arrow Left] or [Arrow Up] / [Arrow Right] or [Arrow Down] - increase/decrease the width of the expanded
|
|
18684
|
+
* side panel with the regular step
|
|
18685
|
+
* - [Shift] + [Arrow Left] or [Shift] + [Arrow Up] / [Shift] + [Arrow Right] or [Shift] + [Arrow Down]
|
|
18686
|
+
* - increase/decrease the width of the expanded side panel with the larger step
|
|
18674
18687
|
*/
|
|
18675
18688
|
class SidePanel extends sap.ui.core.Control {
|
|
18676
18689
|
/**
|
|
@@ -19676,61 +19689,145 @@ declare namespace sap {
|
|
|
19676
19689
|
*/
|
|
19677
19690
|
type IllustratedMessageType = sap.m.IllustratedMessageType;
|
|
19678
19691
|
|
|
19679
|
-
type AvatarGroup$PressEvent = sap.ui.base.Event<
|
|
19680
|
-
|
|
19681
|
-
|
|
19682
|
-
|
|
19683
|
-
|
|
19684
|
-
|
|
19685
|
-
|
|
19686
|
-
|
|
19687
|
-
|
|
19688
|
-
|
|
19689
|
-
type
|
|
19690
|
-
|
|
19691
|
-
|
|
19692
|
-
|
|
19693
|
-
|
|
19694
|
-
|
|
19695
|
-
|
|
19696
|
-
|
|
19697
|
-
|
|
19698
|
-
|
|
19699
|
-
type FlexibleColumnLayout$
|
|
19700
|
-
|
|
19701
|
-
|
|
19702
|
-
|
|
19703
|
-
|
|
19704
|
-
|
|
19705
|
-
|
|
19706
|
-
|
|
19707
|
-
|
|
19708
|
-
|
|
19709
|
-
type
|
|
19710
|
-
|
|
19711
|
-
|
|
19712
|
-
|
|
19713
|
-
|
|
19714
|
-
|
|
19715
|
-
|
|
19716
|
-
|
|
19717
|
-
|
|
19718
|
-
|
|
19719
|
-
type
|
|
19720
|
-
|
|
19721
|
-
|
|
19722
|
-
|
|
19723
|
-
|
|
19724
|
-
|
|
19725
|
-
|
|
19726
|
-
|
|
19727
|
-
|
|
19728
|
-
|
|
19729
|
-
type
|
|
19730
|
-
|
|
19731
|
-
|
|
19732
|
-
|
|
19733
|
-
|
|
19692
|
+
type AvatarGroup$PressEvent = sap.ui.base.Event<
|
|
19693
|
+
AvatarGroup$PressEventParameters,
|
|
19694
|
+
AvatarGroup
|
|
19695
|
+
>;
|
|
19696
|
+
|
|
19697
|
+
type DynamicPage$PinnedStateChangeEvent = sap.ui.base.Event<
|
|
19698
|
+
DynamicPage$PinnedStateChangeEventParameters,
|
|
19699
|
+
DynamicPage
|
|
19700
|
+
>;
|
|
19701
|
+
|
|
19702
|
+
type DynamicPageTitle$StateChangeEvent = sap.ui.base.Event<
|
|
19703
|
+
DynamicPageTitle$StateChangeEventParameters,
|
|
19704
|
+
DynamicPageTitle
|
|
19705
|
+
>;
|
|
19706
|
+
|
|
19707
|
+
type FlexibleColumnLayout$AfterBeginColumnNavigateEvent = sap.ui.base.Event<
|
|
19708
|
+
FlexibleColumnLayout$AfterBeginColumnNavigateEventParameters,
|
|
19709
|
+
FlexibleColumnLayout
|
|
19710
|
+
>;
|
|
19711
|
+
|
|
19712
|
+
type FlexibleColumnLayout$AfterEndColumnNavigateEvent = sap.ui.base.Event<
|
|
19713
|
+
FlexibleColumnLayout$AfterEndColumnNavigateEventParameters,
|
|
19714
|
+
FlexibleColumnLayout
|
|
19715
|
+
>;
|
|
19716
|
+
|
|
19717
|
+
type FlexibleColumnLayout$AfterMidColumnNavigateEvent = sap.ui.base.Event<
|
|
19718
|
+
FlexibleColumnLayout$AfterMidColumnNavigateEventParameters,
|
|
19719
|
+
FlexibleColumnLayout
|
|
19720
|
+
>;
|
|
19721
|
+
|
|
19722
|
+
type FlexibleColumnLayout$BeginColumnNavigateEvent = sap.ui.base.Event<
|
|
19723
|
+
FlexibleColumnLayout$BeginColumnNavigateEventParameters,
|
|
19724
|
+
FlexibleColumnLayout
|
|
19725
|
+
>;
|
|
19726
|
+
|
|
19727
|
+
type FlexibleColumnLayout$ColumnResizeEvent = sap.ui.base.Event<
|
|
19728
|
+
FlexibleColumnLayout$ColumnResizeEventParameters,
|
|
19729
|
+
FlexibleColumnLayout
|
|
19730
|
+
>;
|
|
19731
|
+
|
|
19732
|
+
type FlexibleColumnLayout$EndColumnNavigateEvent = sap.ui.base.Event<
|
|
19733
|
+
FlexibleColumnLayout$EndColumnNavigateEventParameters,
|
|
19734
|
+
FlexibleColumnLayout
|
|
19735
|
+
>;
|
|
19736
|
+
|
|
19737
|
+
type FlexibleColumnLayout$MidColumnNavigateEvent = sap.ui.base.Event<
|
|
19738
|
+
FlexibleColumnLayout$MidColumnNavigateEventParameters,
|
|
19739
|
+
FlexibleColumnLayout
|
|
19740
|
+
>;
|
|
19741
|
+
|
|
19742
|
+
type FlexibleColumnLayout$StateChangeEvent = sap.ui.base.Event<
|
|
19743
|
+
FlexibleColumnLayout$StateChangeEventParameters,
|
|
19744
|
+
FlexibleColumnLayout
|
|
19745
|
+
>;
|
|
19746
|
+
|
|
19747
|
+
type GridContainer$BorderReachedEvent = sap.ui.base.Event<
|
|
19748
|
+
GridContainer$BorderReachedEventParameters,
|
|
19749
|
+
GridContainer
|
|
19750
|
+
>;
|
|
19751
|
+
|
|
19752
|
+
type GridContainer$ColumnsChangeEvent = sap.ui.base.Event<
|
|
19753
|
+
GridContainer$ColumnsChangeEventParameters,
|
|
19754
|
+
GridContainer
|
|
19755
|
+
>;
|
|
19756
|
+
|
|
19757
|
+
type GridContainer$LayoutChangeEvent = sap.ui.base.Event<
|
|
19758
|
+
GridContainer$LayoutChangeEventParameters,
|
|
19759
|
+
GridContainer
|
|
19760
|
+
>;
|
|
19761
|
+
|
|
19762
|
+
type GridList$BorderReachedEvent = sap.ui.base.Event<
|
|
19763
|
+
GridList$BorderReachedEventParameters,
|
|
19764
|
+
GridList
|
|
19765
|
+
>;
|
|
19766
|
+
|
|
19767
|
+
type ProductSwitch$ChangeEvent = sap.ui.base.Event<
|
|
19768
|
+
ProductSwitch$ChangeEventParameters,
|
|
19769
|
+
ProductSwitch
|
|
19770
|
+
>;
|
|
19771
|
+
|
|
19772
|
+
type SearchManager$LiveChangeEvent = sap.ui.base.Event<
|
|
19773
|
+
SearchManager$LiveChangeEventParameters,
|
|
19774
|
+
SearchManager
|
|
19775
|
+
>;
|
|
19776
|
+
|
|
19777
|
+
type SearchManager$SearchEvent = sap.ui.base.Event<
|
|
19778
|
+
SearchManager$SearchEventParameters,
|
|
19779
|
+
SearchManager
|
|
19780
|
+
>;
|
|
19781
|
+
|
|
19782
|
+
type SearchManager$SuggestEvent = sap.ui.base.Event<
|
|
19783
|
+
SearchManager$SuggestEventParameters,
|
|
19784
|
+
SearchManager
|
|
19785
|
+
>;
|
|
19786
|
+
|
|
19787
|
+
type ShellBar$AvatarPressedEvent = sap.ui.base.Event<
|
|
19788
|
+
ShellBar$AvatarPressedEventParameters,
|
|
19789
|
+
ShellBar
|
|
19790
|
+
>;
|
|
19791
|
+
|
|
19792
|
+
type ShellBar$CopilotPressedEvent = sap.ui.base.Event<
|
|
19793
|
+
ShellBar$CopilotPressedEventParameters,
|
|
19794
|
+
ShellBar
|
|
19795
|
+
>;
|
|
19796
|
+
|
|
19797
|
+
type ShellBar$HomeIconPressedEvent = sap.ui.base.Event<
|
|
19798
|
+
ShellBar$HomeIconPressedEventParameters,
|
|
19799
|
+
ShellBar
|
|
19800
|
+
>;
|
|
19801
|
+
|
|
19802
|
+
type ShellBar$MenuButtonPressedEvent = sap.ui.base.Event<
|
|
19803
|
+
ShellBar$MenuButtonPressedEventParameters,
|
|
19804
|
+
ShellBar
|
|
19805
|
+
>;
|
|
19806
|
+
|
|
19807
|
+
type ShellBar$NavButtonPressedEvent = sap.ui.base.Event<
|
|
19808
|
+
ShellBar$NavButtonPressedEventParameters,
|
|
19809
|
+
ShellBar
|
|
19810
|
+
>;
|
|
19811
|
+
|
|
19812
|
+
type ShellBar$NotificationsPressedEvent = sap.ui.base.Event<
|
|
19813
|
+
ShellBar$NotificationsPressedEventParameters,
|
|
19814
|
+
ShellBar
|
|
19815
|
+
>;
|
|
19816
|
+
|
|
19817
|
+
type ShellBar$ProductSwitcherPressedEvent = sap.ui.base.Event<
|
|
19818
|
+
ShellBar$ProductSwitcherPressedEventParameters,
|
|
19819
|
+
ShellBar
|
|
19820
|
+
>;
|
|
19821
|
+
|
|
19822
|
+
type ShellBar$SearchButtonPressedEvent = sap.ui.base.Event<
|
|
19823
|
+
ShellBar$SearchButtonPressedEventParameters,
|
|
19824
|
+
ShellBar
|
|
19825
|
+
>;
|
|
19826
|
+
|
|
19827
|
+
type SidePanel$ToggleEvent = sap.ui.base.Event<
|
|
19828
|
+
SidePanel$ToggleEventParameters,
|
|
19829
|
+
SidePanel
|
|
19830
|
+
>;
|
|
19734
19831
|
}
|
|
19735
19832
|
|
|
19736
19833
|
namespace tnt {
|