@openui5/types 1.122.0 → 1.123.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 +435 -98
- package/types/sap.m.d.ts +3961 -399
- 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
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -564,7 +564,9 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
564
564
|
*/
|
|
565
565
|
unbindText(): this;
|
|
566
566
|
}
|
|
567
|
-
|
|
567
|
+
/**
|
|
568
|
+
* Describes the settings that can be provided to the InfoLabel constructor.
|
|
569
|
+
*/
|
|
568
570
|
export interface $InfoLabelSettings extends $ControlSettings {
|
|
569
571
|
/**
|
|
570
572
|
* Specifies the text inside the `InfoLabel` control.
|
|
@@ -1030,7 +1032,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
1030
1032
|
sWidth: CSSSize
|
|
1031
1033
|
): this;
|
|
1032
1034
|
}
|
|
1033
|
-
|
|
1035
|
+
/**
|
|
1036
|
+
* Describes the settings that can be provided to the NavigationList constructor.
|
|
1037
|
+
*/
|
|
1034
1038
|
export interface $NavigationListSettings extends $ControlSettings {
|
|
1035
1039
|
/**
|
|
1036
1040
|
* Specifies the width of the control.
|
|
@@ -1081,6 +1085,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
1081
1085
|
itemSelect?: (oEvent: NavigationList$ItemSelectEvent) => void;
|
|
1082
1086
|
}
|
|
1083
1087
|
|
|
1088
|
+
/**
|
|
1089
|
+
* Parameters of the NavigationList#itemSelect event.
|
|
1090
|
+
*/
|
|
1084
1091
|
export interface NavigationList$ItemSelectEventParameters {
|
|
1085
1092
|
/**
|
|
1086
1093
|
* The selected item.
|
|
@@ -1088,6 +1095,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
1088
1095
|
item?: Item;
|
|
1089
1096
|
}
|
|
1090
1097
|
|
|
1098
|
+
/**
|
|
1099
|
+
* Event object of the NavigationList#itemSelect event.
|
|
1100
|
+
*/
|
|
1091
1101
|
export type NavigationList$ItemSelectEvent = Event<
|
|
1092
1102
|
NavigationList$ItemSelectEventParameters,
|
|
1093
1103
|
NavigationList
|
|
@@ -1260,7 +1270,9 @@ declare module "sap/tnt/NavigationListGroup" {
|
|
|
1260
1270
|
vItem: int | string | NavigationListItem
|
|
1261
1271
|
): NavigationListItem | null;
|
|
1262
1272
|
}
|
|
1263
|
-
|
|
1273
|
+
/**
|
|
1274
|
+
* Describes the settings that can be provided to the NavigationListGroup constructor.
|
|
1275
|
+
*/
|
|
1264
1276
|
export interface $NavigationListGroupSettings
|
|
1265
1277
|
extends $NavigationListItemBaseSettings {
|
|
1266
1278
|
/**
|
|
@@ -1677,7 +1689,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1677
1689
|
bVisible?: boolean
|
|
1678
1690
|
): this;
|
|
1679
1691
|
}
|
|
1680
|
-
|
|
1692
|
+
/**
|
|
1693
|
+
* Describes the settings that can be provided to the NavigationListItem constructor.
|
|
1694
|
+
*/
|
|
1681
1695
|
export interface $NavigationListItemSettings
|
|
1682
1696
|
extends $NavigationListItemBaseSettings {
|
|
1683
1697
|
/**
|
|
@@ -1732,6 +1746,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1732
1746
|
select?: (oEvent: NavigationListItem$SelectEvent) => void;
|
|
1733
1747
|
}
|
|
1734
1748
|
|
|
1749
|
+
/**
|
|
1750
|
+
* Parameters of the NavigationListItem#select event.
|
|
1751
|
+
*/
|
|
1735
1752
|
export interface NavigationListItem$SelectEventParameters {
|
|
1736
1753
|
/**
|
|
1737
1754
|
* The selected item.
|
|
@@ -1739,6 +1756,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1739
1756
|
item?: Item;
|
|
1740
1757
|
}
|
|
1741
1758
|
|
|
1759
|
+
/**
|
|
1760
|
+
* Event object of the NavigationListItem#select event.
|
|
1761
|
+
*/
|
|
1742
1762
|
export type NavigationListItem$SelectEvent = Event<
|
|
1743
1763
|
NavigationListItem$SelectEventParameters,
|
|
1744
1764
|
NavigationListItem
|
|
@@ -1921,7 +1941,9 @@ declare module "sap/tnt/NavigationListItemBase" {
|
|
|
1921
1941
|
bVisible?: boolean
|
|
1922
1942
|
): this;
|
|
1923
1943
|
}
|
|
1924
|
-
|
|
1944
|
+
/**
|
|
1945
|
+
* Describes the settings that can be provided to the NavigationListItemBase constructor.
|
|
1946
|
+
*/
|
|
1925
1947
|
export interface $NavigationListItemBaseSettings extends $ItemSettings {
|
|
1926
1948
|
/**
|
|
1927
1949
|
* Specifies if the item is expanded.
|
|
@@ -2340,7 +2362,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2340
2362
|
*/
|
|
2341
2363
|
unbindItem(): this;
|
|
2342
2364
|
}
|
|
2343
|
-
|
|
2365
|
+
/**
|
|
2366
|
+
* Describes the settings that can be provided to the SideNavigation constructor.
|
|
2367
|
+
*/
|
|
2344
2368
|
export interface $SideNavigationSettings extends $ControlSettings {
|
|
2345
2369
|
/**
|
|
2346
2370
|
* Specifies the width of the control.
|
|
@@ -2401,6 +2425,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2401
2425
|
itemSelect?: (oEvent: SideNavigation$ItemSelectEvent) => void;
|
|
2402
2426
|
}
|
|
2403
2427
|
|
|
2428
|
+
/**
|
|
2429
|
+
* Parameters of the SideNavigation#itemSelect event.
|
|
2430
|
+
*/
|
|
2404
2431
|
export interface SideNavigation$ItemSelectEventParameters {
|
|
2405
2432
|
/**
|
|
2406
2433
|
* The selected item.
|
|
@@ -2408,6 +2435,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
2408
2435
|
item?: Item;
|
|
2409
2436
|
}
|
|
2410
2437
|
|
|
2438
|
+
/**
|
|
2439
|
+
* Event object of the SideNavigation#itemSelect event.
|
|
2440
|
+
*/
|
|
2411
2441
|
export type SideNavigation$ItemSelectEvent = Event<
|
|
2412
2442
|
SideNavigation$ItemSelectEventParameters,
|
|
2413
2443
|
SideNavigation
|
|
@@ -2535,7 +2565,9 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
2535
2565
|
*/
|
|
2536
2566
|
static getMetadata(): ElementMetadata;
|
|
2537
2567
|
}
|
|
2538
|
-
|
|
2568
|
+
/**
|
|
2569
|
+
* Describes the settings that can be provided to the ToolHeader constructor.
|
|
2570
|
+
*/
|
|
2539
2571
|
export interface $ToolHeaderSettings extends $OverflowToolbarSettings {}
|
|
2540
2572
|
}
|
|
2541
2573
|
|
|
@@ -2620,7 +2652,9 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
|
|
|
2620
2652
|
*/
|
|
2621
2653
|
static getMetadata(): ElementMetadata;
|
|
2622
2654
|
}
|
|
2623
|
-
|
|
2655
|
+
/**
|
|
2656
|
+
* Describes the settings that can be provided to the ToolHeaderUtilitySeparator constructor.
|
|
2657
|
+
*/
|
|
2624
2658
|
export interface $ToolHeaderUtilitySeparatorSettings
|
|
2625
2659
|
extends $ControlSettings {}
|
|
2626
2660
|
}
|
|
@@ -2935,7 +2969,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2935
2969
|
*/
|
|
2936
2970
|
toggleSideContentMode(): this;
|
|
2937
2971
|
}
|
|
2938
|
-
|
|
2972
|
+
/**
|
|
2973
|
+
* Describes the settings that can be provided to the ToolPage constructor.
|
|
2974
|
+
*/
|
|
2939
2975
|
export interface $ToolPageSettings extends $ControlSettings {
|
|
2940
2976
|
/**
|
|
2941
2977
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/codeeditor/library" {}
|
|
4
4
|
|
|
@@ -615,7 +615,9 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
615
615
|
sWidth?: CSSSize
|
|
616
616
|
): this;
|
|
617
617
|
}
|
|
618
|
-
|
|
618
|
+
/**
|
|
619
|
+
* Describes the settings that can be provided to the CodeEditor constructor.
|
|
620
|
+
*/
|
|
619
621
|
export interface $CodeEditorSettings extends $ControlSettings {
|
|
620
622
|
/**
|
|
621
623
|
* The value displayed in the code editor.
|
|
@@ -701,6 +703,9 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
701
703
|
change?: (oEvent: CodeEditor$ChangeEvent) => void;
|
|
702
704
|
}
|
|
703
705
|
|
|
706
|
+
/**
|
|
707
|
+
* Parameters of the CodeEditor#change event.
|
|
708
|
+
*/
|
|
704
709
|
export interface CodeEditor$ChangeEventParameters {
|
|
705
710
|
/**
|
|
706
711
|
* The current value of the code editor.
|
|
@@ -713,11 +718,17 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
713
718
|
oldValue?: string;
|
|
714
719
|
}
|
|
715
720
|
|
|
721
|
+
/**
|
|
722
|
+
* Event object of the CodeEditor#change event.
|
|
723
|
+
*/
|
|
716
724
|
export type CodeEditor$ChangeEvent = Event<
|
|
717
725
|
CodeEditor$ChangeEventParameters,
|
|
718
726
|
CodeEditor
|
|
719
727
|
>;
|
|
720
728
|
|
|
729
|
+
/**
|
|
730
|
+
* Parameters of the CodeEditor#liveChange event.
|
|
731
|
+
*/
|
|
721
732
|
export interface CodeEditor$LiveChangeEventParameters {
|
|
722
733
|
/**
|
|
723
734
|
* The current value of the code editor.
|
|
@@ -730,6 +741,9 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
730
741
|
editorEvent?: object;
|
|
731
742
|
}
|
|
732
743
|
|
|
744
|
+
/**
|
|
745
|
+
* Event object of the CodeEditor#liveChange event.
|
|
746
|
+
*/
|
|
733
747
|
export type CodeEditor$LiveChangeEvent = Event<
|
|
734
748
|
CodeEditor$LiveChangeEventParameters,
|
|
735
749
|
CodeEditor
|