@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
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.120.
|
|
1
|
+
// For Library Version: 1.120.13
|
|
2
2
|
|
|
3
3
|
declare module "sap/tnt/library" {
|
|
4
4
|
/**
|
|
@@ -371,7 +371,9 @@ declare module "sap/tnt/InfoLabel" {
|
|
|
371
371
|
*/
|
|
372
372
|
unbindText(): this;
|
|
373
373
|
}
|
|
374
|
-
|
|
374
|
+
/**
|
|
375
|
+
* Describes the settings that can be provided to the InfoLabel constructor.
|
|
376
|
+
*/
|
|
375
377
|
export interface $InfoLabelSettings extends $ControlSettings {
|
|
376
378
|
/**
|
|
377
379
|
* Specifies the text inside the `InfoLabel` control.
|
|
@@ -835,7 +837,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
835
837
|
sWidth: CSSSize
|
|
836
838
|
): this;
|
|
837
839
|
}
|
|
838
|
-
|
|
840
|
+
/**
|
|
841
|
+
* Describes the settings that can be provided to the NavigationList constructor.
|
|
842
|
+
*/
|
|
839
843
|
export interface $NavigationListSettings extends $ControlSettings {
|
|
840
844
|
/**
|
|
841
845
|
* Specifies the width of the control.
|
|
@@ -886,6 +890,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
886
890
|
itemSelect?: (oEvent: NavigationList$ItemSelectEvent) => void;
|
|
887
891
|
}
|
|
888
892
|
|
|
893
|
+
/**
|
|
894
|
+
* Parameters of the NavigationList#itemSelect event.
|
|
895
|
+
*/
|
|
889
896
|
export interface NavigationList$ItemSelectEventParameters {
|
|
890
897
|
/**
|
|
891
898
|
* The selected item.
|
|
@@ -893,6 +900,9 @@ declare module "sap/tnt/NavigationList" {
|
|
|
893
900
|
item?: Item;
|
|
894
901
|
}
|
|
895
902
|
|
|
903
|
+
/**
|
|
904
|
+
* Event object of the NavigationList#itemSelect event.
|
|
905
|
+
*/
|
|
896
906
|
export type NavigationList$ItemSelectEvent = Event<
|
|
897
907
|
NavigationList$ItemSelectEventParameters,
|
|
898
908
|
NavigationList
|
|
@@ -1359,7 +1369,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1359
1369
|
bVisible?: boolean
|
|
1360
1370
|
): this;
|
|
1361
1371
|
}
|
|
1362
|
-
|
|
1372
|
+
/**
|
|
1373
|
+
* Describes the settings that can be provided to the NavigationListItem constructor.
|
|
1374
|
+
*/
|
|
1363
1375
|
export interface $NavigationListItemSettings extends $ItemSettings {
|
|
1364
1376
|
/**
|
|
1365
1377
|
* Specifies the icon for the item.
|
|
@@ -1422,6 +1434,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1422
1434
|
select?: (oEvent: NavigationListItem$SelectEvent) => void;
|
|
1423
1435
|
}
|
|
1424
1436
|
|
|
1437
|
+
/**
|
|
1438
|
+
* Parameters of the NavigationListItem#select event.
|
|
1439
|
+
*/
|
|
1425
1440
|
export interface NavigationListItem$SelectEventParameters {
|
|
1426
1441
|
/**
|
|
1427
1442
|
* The selected item.
|
|
@@ -1429,6 +1444,9 @@ declare module "sap/tnt/NavigationListItem" {
|
|
|
1429
1444
|
item?: Item;
|
|
1430
1445
|
}
|
|
1431
1446
|
|
|
1447
|
+
/**
|
|
1448
|
+
* Event object of the NavigationListItem#select event.
|
|
1449
|
+
*/
|
|
1432
1450
|
export type NavigationListItem$SelectEvent = Event<
|
|
1433
1451
|
NavigationListItem$SelectEventParameters,
|
|
1434
1452
|
NavigationListItem
|
|
@@ -1831,7 +1849,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1831
1849
|
*/
|
|
1832
1850
|
unbindItem(): this;
|
|
1833
1851
|
}
|
|
1834
|
-
|
|
1852
|
+
/**
|
|
1853
|
+
* Describes the settings that can be provided to the SideNavigation constructor.
|
|
1854
|
+
*/
|
|
1835
1855
|
export interface $SideNavigationSettings extends $ControlSettings {
|
|
1836
1856
|
/**
|
|
1837
1857
|
* Specifies the width of the control.
|
|
@@ -1892,6 +1912,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1892
1912
|
itemSelect?: (oEvent: SideNavigation$ItemSelectEvent) => void;
|
|
1893
1913
|
}
|
|
1894
1914
|
|
|
1915
|
+
/**
|
|
1916
|
+
* Parameters of the SideNavigation#itemSelect event.
|
|
1917
|
+
*/
|
|
1895
1918
|
export interface SideNavigation$ItemSelectEventParameters {
|
|
1896
1919
|
/**
|
|
1897
1920
|
* The selected item.
|
|
@@ -1899,6 +1922,9 @@ declare module "sap/tnt/SideNavigation" {
|
|
|
1899
1922
|
item?: Item;
|
|
1900
1923
|
}
|
|
1901
1924
|
|
|
1925
|
+
/**
|
|
1926
|
+
* Event object of the SideNavigation#itemSelect event.
|
|
1927
|
+
*/
|
|
1902
1928
|
export type SideNavigation$ItemSelectEvent = Event<
|
|
1903
1929
|
SideNavigation$ItemSelectEventParameters,
|
|
1904
1930
|
SideNavigation
|
|
@@ -2026,7 +2052,9 @@ declare module "sap/tnt/ToolHeader" {
|
|
|
2026
2052
|
*/
|
|
2027
2053
|
static getMetadata(): ElementMetadata;
|
|
2028
2054
|
}
|
|
2029
|
-
|
|
2055
|
+
/**
|
|
2056
|
+
* Describes the settings that can be provided to the ToolHeader constructor.
|
|
2057
|
+
*/
|
|
2030
2058
|
export interface $ToolHeaderSettings extends $OverflowToolbarSettings {}
|
|
2031
2059
|
}
|
|
2032
2060
|
|
|
@@ -2111,7 +2139,9 @@ declare module "sap/tnt/ToolHeaderUtilitySeparator" {
|
|
|
2111
2139
|
*/
|
|
2112
2140
|
static getMetadata(): ElementMetadata;
|
|
2113
2141
|
}
|
|
2114
|
-
|
|
2142
|
+
/**
|
|
2143
|
+
* Describes the settings that can be provided to the ToolHeaderUtilitySeparator constructor.
|
|
2144
|
+
*/
|
|
2115
2145
|
export interface $ToolHeaderUtilitySeparatorSettings
|
|
2116
2146
|
extends $ControlSettings {}
|
|
2117
2147
|
}
|
|
@@ -2426,7 +2456,9 @@ declare module "sap/tnt/ToolPage" {
|
|
|
2426
2456
|
*/
|
|
2427
2457
|
toggleSideContentMode(): this;
|
|
2428
2458
|
}
|
|
2429
|
-
|
|
2459
|
+
/**
|
|
2460
|
+
* Describes the settings that can be provided to the ToolPage constructor.
|
|
2461
|
+
*/
|
|
2430
2462
|
export interface $ToolPageSettings extends $ControlSettings {
|
|
2431
2463
|
/**
|
|
2432
2464
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
@@ -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/codeeditor/library" {}
|
|
4
4
|
|
|
@@ -611,7 +611,9 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
611
611
|
sWidth?: CSSSize
|
|
612
612
|
): this;
|
|
613
613
|
}
|
|
614
|
-
|
|
614
|
+
/**
|
|
615
|
+
* Describes the settings that can be provided to the CodeEditor constructor.
|
|
616
|
+
*/
|
|
615
617
|
export interface $CodeEditorSettings extends $ControlSettings {
|
|
616
618
|
/**
|
|
617
619
|
* The value displayed in the code editor.
|
|
@@ -697,6 +699,9 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
697
699
|
change?: (oEvent: CodeEditor$ChangeEvent) => void;
|
|
698
700
|
}
|
|
699
701
|
|
|
702
|
+
/**
|
|
703
|
+
* Parameters of the CodeEditor#change event.
|
|
704
|
+
*/
|
|
700
705
|
export interface CodeEditor$ChangeEventParameters {
|
|
701
706
|
/**
|
|
702
707
|
* The current value of the code editor.
|
|
@@ -709,11 +714,17 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
709
714
|
oldValue?: string;
|
|
710
715
|
}
|
|
711
716
|
|
|
717
|
+
/**
|
|
718
|
+
* Event object of the CodeEditor#change event.
|
|
719
|
+
*/
|
|
712
720
|
export type CodeEditor$ChangeEvent = Event<
|
|
713
721
|
CodeEditor$ChangeEventParameters,
|
|
714
722
|
CodeEditor
|
|
715
723
|
>;
|
|
716
724
|
|
|
725
|
+
/**
|
|
726
|
+
* Parameters of the CodeEditor#liveChange event.
|
|
727
|
+
*/
|
|
717
728
|
export interface CodeEditor$LiveChangeEventParameters {
|
|
718
729
|
/**
|
|
719
730
|
* The current value of the code editor.
|
|
@@ -726,6 +737,9 @@ declare module "sap/ui/codeeditor/CodeEditor" {
|
|
|
726
737
|
editorEvent?: object;
|
|
727
738
|
}
|
|
728
739
|
|
|
740
|
+
/**
|
|
741
|
+
* Event object of the CodeEditor#liveChange event.
|
|
742
|
+
*/
|
|
729
743
|
export type CodeEditor$LiveChangeEvent = Event<
|
|
730
744
|
CodeEditor$LiveChangeEventParameters,
|
|
731
745
|
CodeEditor
|