@openui5/ts-types 1.120.10 → 1.121.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 +124 -45
- package/types/sap.m.d.ts +2023 -300
- package/types/sap.tnt.d.ts +601 -116
- package/types/sap.ui.codeeditor.d.ts +10 -6
- package/types/sap.ui.commons.d.ts +86 -8
- package/types/sap.ui.core.d.ts +471 -186
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +91 -68
- package/types/sap.ui.integration.d.ts +51 -4
- package/types/sap.ui.layout.d.ts +221 -26
- package/types/sap.ui.mdc.d.ts +1517 -788
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +28 -4
- package/types/sap.ui.table.d.ts +57 -7
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +157 -54
- package/types/sap.ui.ux3.d.ts +30 -12
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +49 -1
- package/types/sap.ui.webc.main.d.ts +144 -9
- package/types/sap.uxap.d.ts +55 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -380,12 +380,16 @@ declare namespace sap {
|
|
|
380
380
|
mParameters?: sap.ui.codeeditor.CodeEditor$LiveChangeEventParameters
|
|
381
381
|
): this;
|
|
382
382
|
/**
|
|
383
|
-
*
|
|
383
|
+
* Returns the internal instance of the third-party Ace code editor.
|
|
384
384
|
*
|
|
385
|
+
* **Note:** This control is based on third-party open-source software, and there might be incompatible
|
|
386
|
+
* changes introduced by the code owner in their future releases.
|
|
385
387
|
*
|
|
386
|
-
* @
|
|
388
|
+
* @since 1.121
|
|
389
|
+
*
|
|
390
|
+
* @returns the internal third-party Ace code editor instance
|
|
387
391
|
*/
|
|
388
|
-
|
|
392
|
+
getAceEditor(): object;
|
|
389
393
|
/**
|
|
390
394
|
* Gets current value of property {@link #getColorTheme colorTheme}.
|
|
391
395
|
*
|
|
@@ -537,8 +541,8 @@ declare namespace sap {
|
|
|
537
541
|
/**
|
|
538
542
|
* Pretty-prints the content of the editor.
|
|
539
543
|
*
|
|
540
|
-
* **Note:** Works well
|
|
541
|
-
*
|
|
544
|
+
* **Note:** Works well for PHP. For other editor types (modes), the content might not be formatted well.
|
|
545
|
+
* In such cases it is recommended to use your own formatting.
|
|
542
546
|
*
|
|
543
547
|
* @since 1.54.1
|
|
544
548
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.121.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -16,6 +16,9 @@ declare namespace sap {
|
|
|
16
16
|
/**
|
|
17
17
|
* Value set for the background design of areas
|
|
18
18
|
*
|
|
19
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
20
|
+
* 'enums.AreaDesign'.
|
|
21
|
+
*
|
|
19
22
|
* @deprecated (since 1.38)
|
|
20
23
|
*/
|
|
21
24
|
enum AreaDesign {
|
|
@@ -35,6 +38,9 @@ declare namespace sap {
|
|
|
35
38
|
/**
|
|
36
39
|
* Value set for the border design of areas
|
|
37
40
|
*
|
|
41
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
42
|
+
* 'enums.BorderDesign'.
|
|
43
|
+
*
|
|
38
44
|
* @deprecated (since 1.38)
|
|
39
45
|
*/
|
|
40
46
|
enum BorderDesign {
|
|
@@ -50,6 +56,9 @@ declare namespace sap {
|
|
|
50
56
|
/**
|
|
51
57
|
* Orientation of a UI element
|
|
52
58
|
*
|
|
59
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
60
|
+
* 'enums.Orientation'.
|
|
61
|
+
*
|
|
53
62
|
* @deprecated (since 1.38)
|
|
54
63
|
*/
|
|
55
64
|
enum Orientation {
|
|
@@ -3991,6 +4000,9 @@ declare namespace sap {
|
|
|
3991
4000
|
/**
|
|
3992
4001
|
* Background design (i.e. color), e.g. of a layout cell.
|
|
3993
4002
|
*
|
|
4003
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4004
|
+
* 'layout.BackgroundDesign'.
|
|
4005
|
+
*
|
|
3994
4006
|
* @deprecated (since 1.38)
|
|
3995
4007
|
*/
|
|
3996
4008
|
enum BackgroundDesign {
|
|
@@ -4026,6 +4038,9 @@ declare namespace sap {
|
|
|
4026
4038
|
/**
|
|
4027
4039
|
* The type (=position) of a BorderLayoutArea
|
|
4028
4040
|
*
|
|
4041
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4042
|
+
* 'layout.BorderLayoutAreaTypes'.
|
|
4043
|
+
*
|
|
4029
4044
|
* @deprecated (since 1.38)
|
|
4030
4045
|
*/
|
|
4031
4046
|
enum BorderLayoutAreaTypes {
|
|
@@ -4054,6 +4069,9 @@ declare namespace sap {
|
|
|
4054
4069
|
* Horizontal alignment, e.g. of a layout cell's content within the cell's borders. Note that some values
|
|
4055
4070
|
* depend on the current locale's writing direction while others do not.
|
|
4056
4071
|
*
|
|
4072
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4073
|
+
* 'layout.HAlign'.
|
|
4074
|
+
*
|
|
4057
4075
|
* @deprecated (since 1.38)
|
|
4058
4076
|
*/
|
|
4059
4077
|
enum HAlign {
|
|
@@ -4083,6 +4101,9 @@ declare namespace sap {
|
|
|
4083
4101
|
* include a padding of 2px at the top and bottom, and differ only in the presence of a 4px padding towards
|
|
4084
4102
|
* the beginning or end of a line, in the current locale's writing direction.
|
|
4085
4103
|
*
|
|
4104
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4105
|
+
* 'layout.Padding'.
|
|
4106
|
+
*
|
|
4086
4107
|
* @deprecated (since 1.38)
|
|
4087
4108
|
*/
|
|
4088
4109
|
enum Padding {
|
|
@@ -4113,6 +4134,9 @@ declare namespace sap {
|
|
|
4113
4134
|
* Separation, e.g. of a layout cell from its neighbor, via a vertical gutter of defined width, with or
|
|
4114
4135
|
* without a vertical line in its middle.
|
|
4115
4136
|
*
|
|
4137
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4138
|
+
* 'layout.Separation'.
|
|
4139
|
+
*
|
|
4116
4140
|
* @deprecated (since 1.38)
|
|
4117
4141
|
*/
|
|
4118
4142
|
enum Separation {
|
|
@@ -4148,6 +4172,9 @@ declare namespace sap {
|
|
|
4148
4172
|
/**
|
|
4149
4173
|
* Vertical alignment, e.g. of a layout cell's content within the cell's borders.
|
|
4150
4174
|
*
|
|
4175
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
4176
|
+
* 'layout.VAlign'.
|
|
4177
|
+
*
|
|
4151
4178
|
* @deprecated (since 1.38)
|
|
4152
4179
|
*/
|
|
4153
4180
|
enum VAlign {
|
|
@@ -4173,6 +4200,9 @@ declare namespace sap {
|
|
|
4173
4200
|
* Each action is represented as a button in the message box. The values of this enumeration are used for
|
|
4174
4201
|
* both, specifying the set of allowed actions as well as reporting back the user choice.
|
|
4175
4202
|
*
|
|
4203
|
+
* This enum is part of the 'sap/ui/commons/MessageBox' module export and must be accessed by the property
|
|
4204
|
+
* 'Action'.
|
|
4205
|
+
*
|
|
4176
4206
|
* @deprecated (since 1.38)
|
|
4177
4207
|
*/
|
|
4178
4208
|
enum Action {
|
|
@@ -4212,6 +4242,9 @@ declare namespace sap {
|
|
|
4212
4242
|
/**
|
|
4213
4243
|
* Enumeration of the pre-defined icons that can be used in a MessageBox.
|
|
4214
4244
|
*
|
|
4245
|
+
* This enum is part of the 'sap/ui/commons/MessageBox' module export and must be accessed by the property
|
|
4246
|
+
* 'Icon'.
|
|
4247
|
+
*
|
|
4215
4248
|
* @deprecated (since 1.38)
|
|
4216
4249
|
*/
|
|
4217
4250
|
enum Icon {
|
|
@@ -11989,7 +12022,7 @@ declare namespace sap {
|
|
|
11989
12022
|
/**
|
|
11990
12023
|
* ID of the element which is the current target of the association {@link #getListBox listBox}, or `null`.
|
|
11991
12024
|
*/
|
|
11992
|
-
getListBox(): sap.ui.core.ID;
|
|
12025
|
+
getListBox(): sap.ui.core.ID | null;
|
|
11993
12026
|
/**
|
|
11994
12027
|
* Gets current value of property {@link #getMaxPopupItems maxPopupItems}.
|
|
11995
12028
|
*
|
|
@@ -12657,7 +12690,7 @@ declare namespace sap {
|
|
|
12657
12690
|
* ID of the element which is the current target of the association {@link #getDefaultButton defaultButton},
|
|
12658
12691
|
* or `null`.
|
|
12659
12692
|
*/
|
|
12660
|
-
getDefaultButton(): sap.ui.core.ID;
|
|
12693
|
+
getDefaultButton(): sap.ui.core.ID | null;
|
|
12661
12694
|
/**
|
|
12662
12695
|
* Determines whether the dialog is currently enabled or not.
|
|
12663
12696
|
*
|
|
@@ -12694,7 +12727,7 @@ declare namespace sap {
|
|
|
12694
12727
|
* ID of the element which is the current target of the association {@link #getInitialFocus initialFocus},
|
|
12695
12728
|
* or `null`.
|
|
12696
12729
|
*/
|
|
12697
|
-
getInitialFocus(): sap.ui.core.ID;
|
|
12730
|
+
getInitialFocus(): sap.ui.core.ID | null;
|
|
12698
12731
|
/**
|
|
12699
12732
|
* Gets current value of property {@link #getKeepInWindow keepInWindow}.
|
|
12700
12733
|
*
|
|
@@ -15342,7 +15375,7 @@ declare namespace sap {
|
|
|
15342
15375
|
/**
|
|
15343
15376
|
* ID of the element which is the current target of the association {@link #getLabelFor labelFor}, or `null`.
|
|
15344
15377
|
*/
|
|
15345
|
-
getLabelFor(): sap.ui.core.ID;
|
|
15378
|
+
getLabelFor(): sap.ui.core.ID | null;
|
|
15346
15379
|
/**
|
|
15347
15380
|
* Gets current value of property {@link #getRequired required}.
|
|
15348
15381
|
*
|
|
@@ -21274,7 +21307,7 @@ declare namespace sap {
|
|
|
21274
21307
|
* ID of the element which is the current target of the association {@link #getDefaultContent defaultContent},
|
|
21275
21308
|
* or `null`.
|
|
21276
21309
|
*/
|
|
21277
|
-
getDefaultContent(): sap.ui.core.ID;
|
|
21310
|
+
getDefaultContent(): sap.ui.core.ID | null;
|
|
21278
21311
|
/**
|
|
21279
21312
|
* Gets current value of property {@link #getHeight height}.
|
|
21280
21313
|
*
|
|
@@ -21479,7 +21512,7 @@ declare namespace sap {
|
|
|
21479
21512
|
/**
|
|
21480
21513
|
* ID of the element which is the current target of the association {@link #getContent content}, or `null`.
|
|
21481
21514
|
*/
|
|
21482
|
-
getContent(): sap.ui.core.ID;
|
|
21515
|
+
getContent(): sap.ui.core.ID | null;
|
|
21483
21516
|
/**
|
|
21484
21517
|
* Gets current value of property {@link #getHeight height}.
|
|
21485
21518
|
*
|
|
@@ -24782,7 +24815,7 @@ declare namespace sap {
|
|
|
24782
24815
|
* ID of the element which is the current target of the association {@link #getSelectedButton selectedButton},
|
|
24783
24816
|
* or `null`.
|
|
24784
24817
|
*/
|
|
24785
|
-
getSelectedButton(): sap.ui.core.ID;
|
|
24818
|
+
getSelectedButton(): sap.ui.core.ID | null;
|
|
24786
24819
|
/**
|
|
24787
24820
|
* Checks for the provided `sap.ui.commons.Button` in the aggregation {@link #getButtons buttons}. and returns
|
|
24788
24821
|
* its index if found or -1 otherwise.
|
|
@@ -30593,6 +30626,9 @@ declare namespace sap {
|
|
|
30593
30626
|
/**
|
|
30594
30627
|
* different styles for a button.
|
|
30595
30628
|
*
|
|
30629
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30630
|
+
* 'ButtonStyle'.
|
|
30631
|
+
*
|
|
30596
30632
|
* @deprecated (since 1.38)
|
|
30597
30633
|
*/
|
|
30598
30634
|
enum ButtonStyle {
|
|
@@ -30616,6 +30652,9 @@ declare namespace sap {
|
|
|
30616
30652
|
/**
|
|
30617
30653
|
* Enumeration of possible HorizontalDivider height settings.
|
|
30618
30654
|
*
|
|
30655
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30656
|
+
* 'HorizontalDividerHeight'.
|
|
30657
|
+
*
|
|
30619
30658
|
* @deprecated (since 1.38)
|
|
30620
30659
|
*/
|
|
30621
30660
|
enum HorizontalDividerHeight {
|
|
@@ -30639,6 +30678,9 @@ declare namespace sap {
|
|
|
30639
30678
|
/**
|
|
30640
30679
|
* Enumeration of possible HorizontalDivider types.
|
|
30641
30680
|
*
|
|
30681
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30682
|
+
* 'HorizontalDividerType'.
|
|
30683
|
+
*
|
|
30642
30684
|
* @deprecated (since 1.38)
|
|
30643
30685
|
*/
|
|
30644
30686
|
enum HorizontalDividerType {
|
|
@@ -30654,6 +30696,9 @@ declare namespace sap {
|
|
|
30654
30696
|
/**
|
|
30655
30697
|
* Available label display modes.
|
|
30656
30698
|
*
|
|
30699
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30700
|
+
* 'LabelDesign'.
|
|
30701
|
+
*
|
|
30657
30702
|
* @deprecated (since 1.38)
|
|
30658
30703
|
*/
|
|
30659
30704
|
enum LabelDesign {
|
|
@@ -30669,6 +30714,9 @@ declare namespace sap {
|
|
|
30669
30714
|
/**
|
|
30670
30715
|
* Determines the visual design of a MenuBar. The feature might be not supported by all themes.
|
|
30671
30716
|
*
|
|
30717
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30718
|
+
* 'MenuBarDesign'.
|
|
30719
|
+
*
|
|
30672
30720
|
* @deprecated (since 1.38)
|
|
30673
30721
|
*/
|
|
30674
30722
|
enum MenuBarDesign {
|
|
@@ -30684,6 +30732,9 @@ declare namespace sap {
|
|
|
30684
30732
|
/**
|
|
30685
30733
|
* [Enter description for MessageType]
|
|
30686
30734
|
*
|
|
30735
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30736
|
+
* 'MessageType'.
|
|
30737
|
+
*
|
|
30687
30738
|
* @deprecated (since 1.38)
|
|
30688
30739
|
*/
|
|
30689
30740
|
enum MessageType {
|
|
@@ -30703,6 +30754,9 @@ declare namespace sap {
|
|
|
30703
30754
|
/**
|
|
30704
30755
|
* Distinct paginator event types
|
|
30705
30756
|
*
|
|
30757
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30758
|
+
* 'PaginatorEvent'.
|
|
30759
|
+
*
|
|
30706
30760
|
* @deprecated (since 1.38)
|
|
30707
30761
|
*/
|
|
30708
30762
|
enum PaginatorEvent {
|
|
@@ -30730,6 +30784,9 @@ declare namespace sap {
|
|
|
30730
30784
|
/**
|
|
30731
30785
|
* Possible values for the visualization of float values in the RatingIndicator Control.
|
|
30732
30786
|
*
|
|
30787
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30788
|
+
* 'RatingIndicatorVisualMode'.
|
|
30789
|
+
*
|
|
30733
30790
|
* @deprecated (since 1.38)
|
|
30734
30791
|
*/
|
|
30735
30792
|
enum RatingIndicatorVisualMode {
|
|
@@ -30749,6 +30806,9 @@ declare namespace sap {
|
|
|
30749
30806
|
/**
|
|
30750
30807
|
* Determines the visual design of a RowRepeater.
|
|
30751
30808
|
*
|
|
30809
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30810
|
+
* 'RowRepeaterDesign'.
|
|
30811
|
+
*
|
|
30752
30812
|
* @deprecated (since 1.38)
|
|
30753
30813
|
*/
|
|
30754
30814
|
enum RowRepeaterDesign {
|
|
@@ -30768,6 +30828,9 @@ declare namespace sap {
|
|
|
30768
30828
|
/**
|
|
30769
30829
|
* Semantic Colors of a text.
|
|
30770
30830
|
*
|
|
30831
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30832
|
+
* 'TextViewColor'.
|
|
30833
|
+
*
|
|
30771
30834
|
* @deprecated (since 1.38)
|
|
30772
30835
|
*/
|
|
30773
30836
|
enum TextViewColor {
|
|
@@ -30791,6 +30854,9 @@ declare namespace sap {
|
|
|
30791
30854
|
/**
|
|
30792
30855
|
* Designs for TextView.
|
|
30793
30856
|
*
|
|
30857
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30858
|
+
* 'TextViewDesign'.
|
|
30859
|
+
*
|
|
30794
30860
|
* @deprecated (since 1.38)
|
|
30795
30861
|
*/
|
|
30796
30862
|
enum TextViewDesign {
|
|
@@ -30846,6 +30912,9 @@ declare namespace sap {
|
|
|
30846
30912
|
/**
|
|
30847
30913
|
* Determines the visual design of a Toolbar.
|
|
30848
30914
|
*
|
|
30915
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30916
|
+
* 'ToolbarDesign'.
|
|
30917
|
+
*
|
|
30849
30918
|
* @deprecated (since 1.38)
|
|
30850
30919
|
*/
|
|
30851
30920
|
enum ToolbarDesign {
|
|
@@ -30867,6 +30936,9 @@ declare namespace sap {
|
|
|
30867
30936
|
/**
|
|
30868
30937
|
* Design of the Toolbar Separator.
|
|
30869
30938
|
*
|
|
30939
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30940
|
+
* 'ToolbarSeparatorDesign'.
|
|
30941
|
+
*
|
|
30870
30942
|
* @deprecated (since 1.38)
|
|
30871
30943
|
*/
|
|
30872
30944
|
enum ToolbarSeparatorDesign {
|
|
@@ -30882,6 +30954,9 @@ declare namespace sap {
|
|
|
30882
30954
|
/**
|
|
30883
30955
|
* Selection mode of the tree
|
|
30884
30956
|
*
|
|
30957
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30958
|
+
* 'TreeSelectionMode'.
|
|
30959
|
+
*
|
|
30885
30960
|
* @deprecated (since 1.38)
|
|
30886
30961
|
*/
|
|
30887
30962
|
enum TreeSelectionMode {
|
|
@@ -30905,6 +30980,9 @@ declare namespace sap {
|
|
|
30905
30980
|
/**
|
|
30906
30981
|
* States for TriStateCheckBox
|
|
30907
30982
|
*
|
|
30983
|
+
* This enum is part of the 'sap/ui/commons/library' module export and must be accessed by the property
|
|
30984
|
+
* 'TriStateCheckBoxState'.
|
|
30985
|
+
*
|
|
30908
30986
|
* @since 1.7.2
|
|
30909
30987
|
* @deprecated (since 1.38)
|
|
30910
30988
|
*/
|