@openui5/ts-types 1.99.0 → 1.100.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 +1 -1
- package/types/sap.m.d.ts +462 -86
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +771 -470
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +21 -3
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +9 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +6 -12
- package/types/sap.ui.table.d.ts +2 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +245 -225
- package/types/sap.ui.webc.main.d.ts +963 -595
- package/types/sap.uxap.d.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.100.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -55,7 +55,7 @@ declare namespace sap {
|
|
|
55
55
|
* @SINCE 1.92.0
|
|
56
56
|
* @EXPERIMENTAL (since 1.92.0)
|
|
57
57
|
*
|
|
58
|
-
* Interface for components that may be used inside a `ui5-color-palette`
|
|
58
|
+
* Interface for components that may be used inside a `ui5-color-palette` or `ui5-color-palette-popover`
|
|
59
59
|
*/
|
|
60
60
|
interface IColorPaletteItem {
|
|
61
61
|
__implements__sap_ui_webc_main_IColorPaletteItem: boolean;
|
|
@@ -289,7 +289,12 @@ declare namespace sap {
|
|
|
289
289
|
* being defined with the following CSS: ` ui5-avatar:not(:defined) { visibility: hidden;
|
|
290
290
|
* } `
|
|
291
291
|
*/
|
|
292
|
-
|
|
292
|
+
image?: sap.ui.core.Control;
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* Fired when the user clicks the control
|
|
296
|
+
*/
|
|
297
|
+
click?: (oEvent: sap.ui.base.Event) => void;
|
|
293
298
|
}
|
|
294
299
|
|
|
295
300
|
interface $AvatarGroupSettings
|
|
@@ -527,7 +532,7 @@ declare namespace sap {
|
|
|
527
532
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
528
533
|
|
|
529
534
|
/**
|
|
530
|
-
*
|
|
535
|
+
* Defines the accessible aria name of the component.
|
|
531
536
|
*/
|
|
532
537
|
accessibleName?:
|
|
533
538
|
| string
|
|
@@ -553,10 +558,10 @@ declare namespace sap {
|
|
|
553
558
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
554
559
|
|
|
555
560
|
/**
|
|
556
|
-
* Defines whether the
|
|
557
|
-
*
|
|
561
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
562
|
+
* the tab chain.
|
|
558
563
|
*/
|
|
559
|
-
|
|
564
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
560
565
|
|
|
561
566
|
/**
|
|
562
567
|
* Defines the icon to be displayed as graphical element within the component. The SAP-icons font provides
|
|
@@ -865,7 +870,7 @@ declare namespace sap {
|
|
|
865
870
|
interface $CheckBoxSettings
|
|
866
871
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
867
872
|
/**
|
|
868
|
-
*
|
|
873
|
+
* Defines the accessible aria name of the component.
|
|
869
874
|
*/
|
|
870
875
|
accessibleName?:
|
|
871
876
|
| string
|
|
@@ -880,11 +885,10 @@ declare namespace sap {
|
|
|
880
885
|
checked?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
881
886
|
|
|
882
887
|
/**
|
|
883
|
-
* Defines whether the
|
|
884
|
-
*
|
|
885
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
888
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
889
|
+
* the tab chain.
|
|
886
890
|
*/
|
|
887
|
-
|
|
891
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
888
892
|
|
|
889
893
|
/**
|
|
890
894
|
* Defines whether the component is displayed as partially checked.
|
|
@@ -1032,9 +1036,9 @@ declare namespace sap {
|
|
|
1032
1036
|
/**
|
|
1033
1037
|
* Defines the content of the component.
|
|
1034
1038
|
*/
|
|
1035
|
-
|
|
1036
|
-
| sap.ui.
|
|
1037
|
-
| sap.ui.
|
|
1039
|
+
colors?:
|
|
1040
|
+
| sap.ui.webc.main.IColorPaletteItem[]
|
|
1041
|
+
| sap.ui.webc.main.IColorPaletteItem
|
|
1038
1042
|
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
1039
1043
|
|
|
1040
1044
|
/**
|
|
@@ -1063,18 +1067,17 @@ declare namespace sap {
|
|
|
1063
1067
|
interface $ComboBoxSettings
|
|
1064
1068
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
1065
1069
|
/**
|
|
1066
|
-
*
|
|
1070
|
+
* Defines the accessible aria name of the component.
|
|
1067
1071
|
*/
|
|
1068
1072
|
accessibleName?:
|
|
1069
1073
|
| string
|
|
1070
1074
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1071
1075
|
|
|
1072
1076
|
/**
|
|
1073
|
-
* Defines whether the
|
|
1074
|
-
*
|
|
1075
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
1077
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
1078
|
+
* the tab chain.
|
|
1076
1079
|
*/
|
|
1077
|
-
|
|
1080
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1078
1081
|
|
|
1079
1082
|
/**
|
|
1080
1083
|
* Defines the filter type of the component. Available options are: `StartsWithPerTerm`, `StartsWith` and
|
|
@@ -1250,9 +1253,10 @@ declare namespace sap {
|
|
|
1250
1253
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1251
1254
|
|
|
1252
1255
|
/**
|
|
1253
|
-
*
|
|
1256
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
1257
|
+
* the tab chain.
|
|
1254
1258
|
*/
|
|
1255
|
-
|
|
1259
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1256
1260
|
|
|
1257
1261
|
/**
|
|
1258
1262
|
* Determines the format, displayed in the input field.
|
|
@@ -1397,9 +1401,10 @@ declare namespace sap {
|
|
|
1397
1401
|
delimiter?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1398
1402
|
|
|
1399
1403
|
/**
|
|
1400
|
-
*
|
|
1404
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
1405
|
+
* the tab chain.
|
|
1401
1406
|
*/
|
|
1402
|
-
|
|
1407
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1403
1408
|
|
|
1404
1409
|
/**
|
|
1405
1410
|
* Determines the format, displayed in the input field.
|
|
@@ -1538,9 +1543,10 @@ declare namespace sap {
|
|
|
1538
1543
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1539
1544
|
|
|
1540
1545
|
/**
|
|
1541
|
-
*
|
|
1546
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
1547
|
+
* the tab chain.
|
|
1542
1548
|
*/
|
|
1543
|
-
|
|
1549
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1544
1550
|
|
|
1545
1551
|
/**
|
|
1546
1552
|
* Determines the format, displayed in the input field.
|
|
@@ -1701,9 +1707,9 @@ declare namespace sap {
|
|
|
1701
1707
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1702
1708
|
|
|
1703
1709
|
/**
|
|
1704
|
-
*
|
|
1710
|
+
* Indicates if the element is open
|
|
1705
1711
|
*/
|
|
1706
|
-
|
|
1712
|
+
open?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1707
1713
|
|
|
1708
1714
|
/**
|
|
1709
1715
|
* Defines if the focus should be returned to the previously focused element, when the popup closes.
|
|
@@ -1768,6 +1774,11 @@ declare namespace sap {
|
|
|
1768
1774
|
*/
|
|
1769
1775
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
1770
1776
|
|
|
1777
|
+
/**
|
|
1778
|
+
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
1779
|
+
*/
|
|
1780
|
+
initialFocus?: sap.ui.core.Control | string;
|
|
1781
|
+
|
|
1771
1782
|
/**
|
|
1772
1783
|
* Fired after the component is closed. **This event does not bubble.**
|
|
1773
1784
|
*/
|
|
@@ -1802,11 +1813,10 @@ declare namespace sap {
|
|
|
1802
1813
|
accept?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1803
1814
|
|
|
1804
1815
|
/**
|
|
1805
|
-
* Defines whether the
|
|
1806
|
-
*
|
|
1807
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
1816
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
1817
|
+
* the tab chain.
|
|
1808
1818
|
*/
|
|
1809
|
-
|
|
1819
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1810
1820
|
|
|
1811
1821
|
/**
|
|
1812
1822
|
* If set to "true", the input field of component will not be rendered. Only the default slot that is passed
|
|
@@ -1996,18 +2006,17 @@ declare namespace sap {
|
|
|
1996
2006
|
interface $InputSettings
|
|
1997
2007
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
1998
2008
|
/**
|
|
1999
|
-
*
|
|
2009
|
+
* Defines the accessible aria name of the component.
|
|
2000
2010
|
*/
|
|
2001
2011
|
accessibleName?:
|
|
2002
2012
|
| string
|
|
2003
2013
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2004
2014
|
|
|
2005
2015
|
/**
|
|
2006
|
-
* Defines whether the
|
|
2007
|
-
*
|
|
2008
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
2016
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
2017
|
+
* the tab chain.
|
|
2009
2018
|
*/
|
|
2010
|
-
|
|
2019
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2011
2020
|
|
|
2012
2021
|
/**
|
|
2013
2022
|
* Sets the maximum number of characters available in the input field.
|
|
@@ -2225,6 +2234,13 @@ declare namespace sap {
|
|
|
2225
2234
|
| object
|
|
2226
2235
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2227
2236
|
|
|
2237
|
+
/**
|
|
2238
|
+
* Defines the accessible aria name of the component.
|
|
2239
|
+
*/
|
|
2240
|
+
accessibleName?:
|
|
2241
|
+
| string
|
|
2242
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2243
|
+
|
|
2228
2244
|
/**
|
|
2229
2245
|
* Defines the component design.
|
|
2230
2246
|
*
|
|
@@ -2235,11 +2251,10 @@ declare namespace sap {
|
|
|
2235
2251
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2236
2252
|
|
|
2237
2253
|
/**
|
|
2238
|
-
* Defines whether the
|
|
2239
|
-
*
|
|
2240
|
-
* **Note:** When disabled, the click event cannot be triggered by the user.
|
|
2254
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
2255
|
+
* the tab chain.
|
|
2241
2256
|
*/
|
|
2242
|
-
|
|
2257
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2243
2258
|
|
|
2244
2259
|
/**
|
|
2245
2260
|
* Defines the component href.
|
|
@@ -2535,11 +2550,10 @@ declare namespace sap {
|
|
|
2535
2550
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2536
2551
|
|
|
2537
2552
|
/**
|
|
2538
|
-
* Defines whether the
|
|
2539
|
-
*
|
|
2540
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
2553
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
2554
|
+
* the tab chain.
|
|
2541
2555
|
*/
|
|
2542
|
-
|
|
2556
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2543
2557
|
|
|
2544
2558
|
/**
|
|
2545
2559
|
* Defines the filter type of the component. Available options are: `StartsWithPerTerm`, `StartsWith`, `Contains`
|
|
@@ -2660,18 +2674,17 @@ declare namespace sap {
|
|
|
2660
2674
|
interface $MultiInputSettings
|
|
2661
2675
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
2662
2676
|
/**
|
|
2663
|
-
*
|
|
2677
|
+
* Defines the accessible aria name of the component.
|
|
2664
2678
|
*/
|
|
2665
2679
|
accessibleName?:
|
|
2666
2680
|
| string
|
|
2667
2681
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2668
2682
|
|
|
2669
2683
|
/**
|
|
2670
|
-
* Defines whether the
|
|
2671
|
-
*
|
|
2672
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
2684
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
2685
|
+
* the tab chain.
|
|
2673
2686
|
*/
|
|
2674
|
-
|
|
2687
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2675
2688
|
|
|
2676
2689
|
/**
|
|
2677
2690
|
* Sets the maximum number of characters available in the input field.
|
|
@@ -2846,11 +2859,10 @@ declare namespace sap {
|
|
|
2846
2859
|
interface $OptionSettings
|
|
2847
2860
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
2848
2861
|
/**
|
|
2849
|
-
* Defines whether the
|
|
2850
|
-
*
|
|
2851
|
-
* **Note:** A disabled component is noninteractive.
|
|
2862
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
2863
|
+
* the tab chain.
|
|
2852
2864
|
*/
|
|
2853
|
-
|
|
2865
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
2854
2866
|
|
|
2855
2867
|
/**
|
|
2856
2868
|
* Defines the `icon` source URI.
|
|
@@ -2880,7 +2892,7 @@ declare namespace sap {
|
|
|
2880
2892
|
interface $PanelSettings
|
|
2881
2893
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
2882
2894
|
/**
|
|
2883
|
-
*
|
|
2895
|
+
* Defines the accessible aria name of the component.
|
|
2884
2896
|
*/
|
|
2885
2897
|
accessibleName?:
|
|
2886
2898
|
| string
|
|
@@ -3020,17 +3032,17 @@ declare namespace sap {
|
|
|
3020
3032
|
| sap.ui.webc.main.PopoverHorizontalAlign
|
|
3021
3033
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3022
3034
|
|
|
3023
|
-
/**
|
|
3024
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
3025
|
-
*/
|
|
3026
|
-
initialFocus?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3027
|
-
|
|
3028
3035
|
/**
|
|
3029
3036
|
* Defines whether the component should close when clicking/tapping outside of the popover. If enabled,
|
|
3030
3037
|
* it blocks any interaction with the background.
|
|
3031
3038
|
*/
|
|
3032
3039
|
modal?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3033
3040
|
|
|
3041
|
+
/**
|
|
3042
|
+
* Indicates if the element is open
|
|
3043
|
+
*/
|
|
3044
|
+
open?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3045
|
+
|
|
3034
3046
|
/**
|
|
3035
3047
|
* Determines on which side the component is placed at.
|
|
3036
3048
|
*
|
|
@@ -3095,11 +3107,21 @@ declare namespace sap {
|
|
|
3095
3107
|
| sap.ui.core.Control
|
|
3096
3108
|
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
3097
3109
|
|
|
3110
|
+
/**
|
|
3111
|
+
* Defines the opener id of the element that the popover is shown at
|
|
3112
|
+
*/
|
|
3113
|
+
opener?: sap.ui.core.Control | string;
|
|
3114
|
+
|
|
3098
3115
|
/**
|
|
3099
3116
|
* Receives id(or many ids) of the controls that label this control.
|
|
3100
3117
|
*/
|
|
3101
3118
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
3102
3119
|
|
|
3120
|
+
/**
|
|
3121
|
+
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
3122
|
+
*/
|
|
3123
|
+
initialFocus?: sap.ui.core.Control | string;
|
|
3124
|
+
|
|
3103
3125
|
/**
|
|
3104
3126
|
* Fired after the component is closed. **This event does not bubble.**
|
|
3105
3127
|
*/
|
|
@@ -3125,11 +3147,6 @@ declare namespace sap {
|
|
|
3125
3147
|
|
|
3126
3148
|
interface $ProgressIndicatorSettings
|
|
3127
3149
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3128
|
-
/**
|
|
3129
|
-
* Defines whether component is in disabled state.
|
|
3130
|
-
*/
|
|
3131
|
-
disabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3132
|
-
|
|
3133
3150
|
/**
|
|
3134
3151
|
* Specifies the text value to be displayed in the bar.
|
|
3135
3152
|
*
|
|
@@ -3139,6 +3156,12 @@ declare namespace sap {
|
|
|
3139
3156
|
*/
|
|
3140
3157
|
displayValue?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3141
3158
|
|
|
3159
|
+
/**
|
|
3160
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3161
|
+
* the tab chain.
|
|
3162
|
+
*/
|
|
3163
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3164
|
+
|
|
3142
3165
|
/**
|
|
3143
3166
|
* Defines whether the component value is shown.
|
|
3144
3167
|
*/
|
|
@@ -3185,11 +3208,10 @@ declare namespace sap {
|
|
|
3185
3208
|
checked?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3186
3209
|
|
|
3187
3210
|
/**
|
|
3188
|
-
* Defines whether the
|
|
3189
|
-
*
|
|
3190
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
3211
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3212
|
+
* the tab chain.
|
|
3191
3213
|
*/
|
|
3192
|
-
|
|
3214
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3193
3215
|
|
|
3194
3216
|
/**
|
|
3195
3217
|
* Defines the name of the component. Radio buttons with the same `name` will form a radio button group.
|
|
@@ -3268,9 +3290,10 @@ declare namespace sap {
|
|
|
3268
3290
|
interface $RangeSliderSettings
|
|
3269
3291
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3270
3292
|
/**
|
|
3271
|
-
* Defines whether the
|
|
3293
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3294
|
+
* the tab chain.
|
|
3272
3295
|
*/
|
|
3273
|
-
|
|
3296
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3274
3297
|
|
|
3275
3298
|
/**
|
|
3276
3299
|
* Defines end point of a selection - position of a second handle on the slider.
|
|
@@ -3345,20 +3368,17 @@ declare namespace sap {
|
|
|
3345
3368
|
interface $RatingIndicatorSettings
|
|
3346
3369
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3347
3370
|
/**
|
|
3348
|
-
*
|
|
3371
|
+
* Defines the accessible aria name of the component.
|
|
3349
3372
|
*/
|
|
3350
3373
|
accessibleName?:
|
|
3351
3374
|
| string
|
|
3352
3375
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3353
3376
|
|
|
3354
3377
|
/**
|
|
3355
|
-
* Defines whether the
|
|
3356
|
-
*
|
|
3357
|
-
*
|
|
3358
|
-
*
|
|
3359
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
3378
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3379
|
+
* the tab chain.
|
|
3360
3380
|
*/
|
|
3361
|
-
|
|
3381
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3362
3382
|
|
|
3363
3383
|
/**
|
|
3364
3384
|
* The number of displayed rating symbols.
|
|
@@ -3382,6 +3402,13 @@ declare namespace sap {
|
|
|
3382
3402
|
*/
|
|
3383
3403
|
value?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3384
3404
|
|
|
3405
|
+
/**
|
|
3406
|
+
* Defines the width of the control
|
|
3407
|
+
*/
|
|
3408
|
+
width?:
|
|
3409
|
+
| sap.ui.core.CSSSize
|
|
3410
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3411
|
+
|
|
3385
3412
|
/**
|
|
3386
3413
|
* The event is fired when the value changes.
|
|
3387
3414
|
*/
|
|
@@ -3436,17 +3463,17 @@ declare namespace sap {
|
|
|
3436
3463
|
| sap.ui.webc.main.PopoverHorizontalAlign
|
|
3437
3464
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3438
3465
|
|
|
3439
|
-
/**
|
|
3440
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
3441
|
-
*/
|
|
3442
|
-
initialFocus?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3443
|
-
|
|
3444
3466
|
/**
|
|
3445
3467
|
* Defines whether the component should close when clicking/tapping outside of the popover. If enabled,
|
|
3446
3468
|
* it blocks any interaction with the background.
|
|
3447
3469
|
*/
|
|
3448
3470
|
modal?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3449
3471
|
|
|
3472
|
+
/**
|
|
3473
|
+
* Indicates if the element is open
|
|
3474
|
+
*/
|
|
3475
|
+
open?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3476
|
+
|
|
3450
3477
|
/**
|
|
3451
3478
|
* Determines on which side the component is placed at.
|
|
3452
3479
|
*
|
|
@@ -3504,11 +3531,21 @@ declare namespace sap {
|
|
|
3504
3531
|
| sap.ui.core.Control
|
|
3505
3532
|
| sap.ui.base.ManagedObject.AggregationBindingInfo;
|
|
3506
3533
|
|
|
3534
|
+
/**
|
|
3535
|
+
* Defines the opener id of the element that the popover is shown at
|
|
3536
|
+
*/
|
|
3537
|
+
opener?: sap.ui.core.Control | string;
|
|
3538
|
+
|
|
3507
3539
|
/**
|
|
3508
3540
|
* Receives id(or many ids) of the controls that label this control.
|
|
3509
3541
|
*/
|
|
3510
3542
|
ariaLabelledBy?: Array<sap.ui.core.Control | string>;
|
|
3511
3543
|
|
|
3544
|
+
/**
|
|
3545
|
+
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
3546
|
+
*/
|
|
3547
|
+
initialFocus?: sap.ui.core.Control | string;
|
|
3548
|
+
|
|
3512
3549
|
/**
|
|
3513
3550
|
* Fired after the component is closed. **This event does not bubble.**
|
|
3514
3551
|
*/
|
|
@@ -3535,12 +3572,19 @@ declare namespace sap {
|
|
|
3535
3572
|
interface $SegmentedButtonSettings
|
|
3536
3573
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3537
3574
|
/**
|
|
3538
|
-
*
|
|
3575
|
+
* Defines the accessible aria name of the component.
|
|
3539
3576
|
*/
|
|
3540
3577
|
accessibleName?:
|
|
3541
3578
|
| string
|
|
3542
3579
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3543
3580
|
|
|
3581
|
+
/**
|
|
3582
|
+
* Defines the width of the control
|
|
3583
|
+
*/
|
|
3584
|
+
width?:
|
|
3585
|
+
| sap.ui.core.CSSSize
|
|
3586
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3587
|
+
|
|
3544
3588
|
/**
|
|
3545
3589
|
* Defines the items of `sap.ui.webc.main.SegmentedButton`.
|
|
3546
3590
|
*
|
|
@@ -3587,7 +3631,7 @@ declare namespace sap {
|
|
|
3587
3631
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3588
3632
|
|
|
3589
3633
|
/**
|
|
3590
|
-
*
|
|
3634
|
+
* Defines the accessible aria name of the component.
|
|
3591
3635
|
*/
|
|
3592
3636
|
accessibleName?:
|
|
3593
3637
|
| string
|
|
@@ -3601,10 +3645,10 @@ declare namespace sap {
|
|
|
3601
3645
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3602
3646
|
|
|
3603
3647
|
/**
|
|
3604
|
-
* Defines whether the
|
|
3605
|
-
*
|
|
3648
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3649
|
+
* the tab chain.
|
|
3606
3650
|
*/
|
|
3607
|
-
|
|
3651
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3608
3652
|
|
|
3609
3653
|
/**
|
|
3610
3654
|
* Defines the icon to be displayed as graphical element within the component. The SAP-icons font provides
|
|
@@ -3652,18 +3696,17 @@ declare namespace sap {
|
|
|
3652
3696
|
interface $SelectSettings
|
|
3653
3697
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3654
3698
|
/**
|
|
3655
|
-
*
|
|
3699
|
+
* Defines the accessible aria name of the component.
|
|
3656
3700
|
*/
|
|
3657
3701
|
accessibleName?:
|
|
3658
3702
|
| string
|
|
3659
3703
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3660
3704
|
|
|
3661
3705
|
/**
|
|
3662
|
-
* Defines whether the
|
|
3663
|
-
*
|
|
3664
|
-
* **Note:** A disabled component is noninteractive.
|
|
3706
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3707
|
+
* the tab chain.
|
|
3665
3708
|
*/
|
|
3666
|
-
|
|
3709
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3667
3710
|
|
|
3668
3711
|
/**
|
|
3669
3712
|
* Determines the name with which the component will be submitted in an HTML form. The value of the component
|
|
@@ -3745,9 +3788,10 @@ declare namespace sap {
|
|
|
3745
3788
|
interface $SliderSettings
|
|
3746
3789
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3747
3790
|
/**
|
|
3748
|
-
* Defines whether the
|
|
3791
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3792
|
+
* the tab chain.
|
|
3749
3793
|
*/
|
|
3750
|
-
|
|
3794
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3751
3795
|
|
|
3752
3796
|
/**
|
|
3753
3797
|
* Displays a label with a value on every N-th step.
|
|
@@ -3817,7 +3861,7 @@ declare namespace sap {
|
|
|
3817
3861
|
interface $SplitButtonSettings
|
|
3818
3862
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3819
3863
|
/**
|
|
3820
|
-
*
|
|
3864
|
+
* Defines the accessible aria name of the component.
|
|
3821
3865
|
*/
|
|
3822
3866
|
accessibleName?:
|
|
3823
3867
|
| string
|
|
@@ -3848,10 +3892,10 @@ declare namespace sap {
|
|
|
3848
3892
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3849
3893
|
|
|
3850
3894
|
/**
|
|
3851
|
-
* Defines whether the
|
|
3852
|
-
*
|
|
3895
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
3896
|
+
* the tab chain.
|
|
3853
3897
|
*/
|
|
3854
|
-
|
|
3898
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3855
3899
|
|
|
3856
3900
|
/**
|
|
3857
3901
|
* Defines the icon to be displayed as graphical element within the component. The SAP-icons font provides
|
|
@@ -3961,16 +4005,17 @@ declare namespace sap {
|
|
|
3961
4005
|
interface $StepInputSettings
|
|
3962
4006
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
3963
4007
|
/**
|
|
3964
|
-
*
|
|
4008
|
+
* Defines the accessible aria name of the component.
|
|
3965
4009
|
*/
|
|
3966
4010
|
accessibleName?:
|
|
3967
4011
|
| string
|
|
3968
4012
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3969
4013
|
|
|
3970
4014
|
/**
|
|
3971
|
-
*
|
|
4015
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
4016
|
+
* the tab chain.
|
|
3972
4017
|
*/
|
|
3973
|
-
|
|
4018
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
3974
4019
|
|
|
3975
4020
|
/**
|
|
3976
4021
|
* Defines a maximum value of the component.
|
|
@@ -4143,6 +4188,13 @@ declare namespace sap {
|
|
|
4143
4188
|
|
|
4144
4189
|
interface $SwitchSettings
|
|
4145
4190
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
4191
|
+
/**
|
|
4192
|
+
* Sets the accessible aria name of the component.
|
|
4193
|
+
*/
|
|
4194
|
+
accessibleName?:
|
|
4195
|
+
| string
|
|
4196
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4197
|
+
|
|
4146
4198
|
/**
|
|
4147
4199
|
* Defines if the component is checked.
|
|
4148
4200
|
*
|
|
@@ -4161,11 +4213,10 @@ declare namespace sap {
|
|
|
4161
4213
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4162
4214
|
|
|
4163
4215
|
/**
|
|
4164
|
-
* Defines whether the
|
|
4165
|
-
*
|
|
4166
|
-
* **Note:** A disabled component is noninteractive.
|
|
4216
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
4217
|
+
* the tab chain.
|
|
4167
4218
|
*/
|
|
4168
|
-
|
|
4219
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4169
4220
|
|
|
4170
4221
|
/**
|
|
4171
4222
|
* Defines the text, displayed when the component is not checked.
|
|
@@ -4185,6 +4236,13 @@ declare namespace sap {
|
|
|
4185
4236
|
*/
|
|
4186
4237
|
textOn?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4187
4238
|
|
|
4239
|
+
/**
|
|
4240
|
+
* Defines the width of the control
|
|
4241
|
+
*/
|
|
4242
|
+
width?:
|
|
4243
|
+
| sap.ui.core.CSSSize
|
|
4244
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4245
|
+
|
|
4188
4246
|
/**
|
|
4189
4247
|
* Receives id(or many ids) of the controls that label this control.
|
|
4190
4248
|
*/
|
|
@@ -4226,9 +4284,10 @@ declare namespace sap {
|
|
|
4226
4284
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4227
4285
|
|
|
4228
4286
|
/**
|
|
4229
|
-
*
|
|
4287
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
4288
|
+
* the tab chain.
|
|
4230
4289
|
*/
|
|
4231
|
-
|
|
4290
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4232
4291
|
|
|
4233
4292
|
/**
|
|
4234
4293
|
* Defines the icon source URI to be displayed as graphical element within the component. The SAP-icons
|
|
@@ -4607,18 +4666,17 @@ declare namespace sap {
|
|
|
4607
4666
|
interface $TextAreaSettings
|
|
4608
4667
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
4609
4668
|
/**
|
|
4610
|
-
*
|
|
4669
|
+
* Defines the accessible aria name of the component.
|
|
4611
4670
|
*/
|
|
4612
4671
|
accessibleName?:
|
|
4613
4672
|
| string
|
|
4614
4673
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4615
4674
|
|
|
4616
4675
|
/**
|
|
4617
|
-
*
|
|
4618
|
-
*
|
|
4619
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
4676
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
4677
|
+
* the tab chain.
|
|
4620
4678
|
*/
|
|
4621
|
-
|
|
4679
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4622
4680
|
|
|
4623
4681
|
/**
|
|
4624
4682
|
* Enables the component to automatically grow and shrink dynamically with its content.
|
|
@@ -4752,9 +4810,10 @@ declare namespace sap {
|
|
|
4752
4810
|
interface $TimePickerSettings
|
|
4753
4811
|
extends sap.ui.webc.common.$WebComponentSettings {
|
|
4754
4812
|
/**
|
|
4755
|
-
*
|
|
4813
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
4814
|
+
* the tab chain.
|
|
4756
4815
|
*/
|
|
4757
|
-
|
|
4816
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4758
4817
|
|
|
4759
4818
|
/**
|
|
4760
4819
|
* Determines the format, displayed in the input field.
|
|
@@ -4939,7 +4998,7 @@ declare namespace sap {
|
|
|
4939
4998
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4940
4999
|
|
|
4941
5000
|
/**
|
|
4942
|
-
*
|
|
5001
|
+
* Defines the accessible aria name of the component.
|
|
4943
5002
|
*/
|
|
4944
5003
|
accessibleName?:
|
|
4945
5004
|
| string
|
|
@@ -4965,10 +5024,10 @@ declare namespace sap {
|
|
|
4965
5024
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4966
5025
|
|
|
4967
5026
|
/**
|
|
4968
|
-
* Defines whether the
|
|
4969
|
-
*
|
|
5027
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
5028
|
+
* the tab chain.
|
|
4970
5029
|
*/
|
|
4971
|
-
|
|
5030
|
+
enabled?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
4972
5031
|
|
|
4973
5032
|
/**
|
|
4974
5033
|
* Defines the icon to be displayed as graphical element within the component. The SAP-icons font provides
|
|
@@ -5314,9 +5373,74 @@ declare namespace sap {
|
|
|
5314
5373
|
*/
|
|
5315
5374
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
5316
5375
|
/**
|
|
5317
|
-
*
|
|
5376
|
+
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.main.Avatar`.
|
|
5377
|
+
*
|
|
5378
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5379
|
+
* otherwise it will be bound to this `sap.ui.webc.main.Avatar` itself.
|
|
5380
|
+
*
|
|
5381
|
+
* Fired when the user clicks the control
|
|
5318
5382
|
*/
|
|
5319
|
-
|
|
5383
|
+
attachClick(
|
|
5384
|
+
/**
|
|
5385
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
5386
|
+
* object when firing the event
|
|
5387
|
+
*/
|
|
5388
|
+
oData: object,
|
|
5389
|
+
/**
|
|
5390
|
+
* The function to be called when the event occurs
|
|
5391
|
+
*/
|
|
5392
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
5393
|
+
/**
|
|
5394
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.webc.main.Avatar` itself
|
|
5395
|
+
*/
|
|
5396
|
+
oListener?: object
|
|
5397
|
+
): this;
|
|
5398
|
+
/**
|
|
5399
|
+
* Attaches event handler `fnFunction` to the {@link #event:click click} event of this `sap.ui.webc.main.Avatar`.
|
|
5400
|
+
*
|
|
5401
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
5402
|
+
* otherwise it will be bound to this `sap.ui.webc.main.Avatar` itself.
|
|
5403
|
+
*
|
|
5404
|
+
* Fired when the user clicks the control
|
|
5405
|
+
*/
|
|
5406
|
+
attachClick(
|
|
5407
|
+
/**
|
|
5408
|
+
* The function to be called when the event occurs
|
|
5409
|
+
*/
|
|
5410
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
5411
|
+
/**
|
|
5412
|
+
* Context object to call the event handler with. Defaults to this `sap.ui.webc.main.Avatar` itself
|
|
5413
|
+
*/
|
|
5414
|
+
oListener?: object
|
|
5415
|
+
): this;
|
|
5416
|
+
/**
|
|
5417
|
+
* Destroys the image in the aggregation {@link #getImage image}.
|
|
5418
|
+
*/
|
|
5419
|
+
destroyImage(): this;
|
|
5420
|
+
/**
|
|
5421
|
+
* Detaches event handler `fnFunction` from the {@link #event:click click} event of this `sap.ui.webc.main.Avatar`.
|
|
5422
|
+
*
|
|
5423
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
5424
|
+
*/
|
|
5425
|
+
detachClick(
|
|
5426
|
+
/**
|
|
5427
|
+
* The function to be called, when the event occurs
|
|
5428
|
+
*/
|
|
5429
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
5430
|
+
/**
|
|
5431
|
+
* Context object on which the given function had to be called
|
|
5432
|
+
*/
|
|
5433
|
+
oListener?: object
|
|
5434
|
+
): this;
|
|
5435
|
+
/**
|
|
5436
|
+
* Fires event {@link #event:click click} to attached listeners.
|
|
5437
|
+
*/
|
|
5438
|
+
fireClick(
|
|
5439
|
+
/**
|
|
5440
|
+
* Parameters to pass along with the event
|
|
5441
|
+
*/
|
|
5442
|
+
mParameters?: object
|
|
5443
|
+
): this;
|
|
5320
5444
|
/**
|
|
5321
5445
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
5322
5446
|
*
|
|
@@ -5347,16 +5471,6 @@ declare namespace sap {
|
|
|
5347
5471
|
* Default value is `Accent6`.
|
|
5348
5472
|
*/
|
|
5349
5473
|
getColorScheme(): sap.ui.webc.main.AvatarColorScheme;
|
|
5350
|
-
/**
|
|
5351
|
-
* Gets content of aggregation {@link #getContent content}.
|
|
5352
|
-
*
|
|
5353
|
-
* Receives the desired `<img>` tag
|
|
5354
|
-
*
|
|
5355
|
-
* **Note:** If you experience flickering of the provided image, you can hide the component until it is
|
|
5356
|
-
* being defined with the following CSS: ` ui5-avatar:not(:defined) { visibility: hidden;
|
|
5357
|
-
* } `
|
|
5358
|
-
*/
|
|
5359
|
-
getContent(): sap.ui.core.Control;
|
|
5360
5474
|
/**
|
|
5361
5475
|
* Gets current value of property {@link #getIcon icon}.
|
|
5362
5476
|
*
|
|
@@ -5375,6 +5489,16 @@ declare namespace sap {
|
|
|
5375
5489
|
* Default value is `empty string`.
|
|
5376
5490
|
*/
|
|
5377
5491
|
getIcon(): string;
|
|
5492
|
+
/**
|
|
5493
|
+
* Gets content of aggregation {@link #getImage image}.
|
|
5494
|
+
*
|
|
5495
|
+
* Receives the desired `<img>` tag
|
|
5496
|
+
*
|
|
5497
|
+
* **Note:** If you experience flickering of the provided image, you can hide the component until it is
|
|
5498
|
+
* being defined with the following CSS: ` ui5-avatar:not(:defined) { visibility: hidden;
|
|
5499
|
+
* } `
|
|
5500
|
+
*/
|
|
5501
|
+
getImage(): sap.ui.core.Control;
|
|
5378
5502
|
/**
|
|
5379
5503
|
* Gets current value of property {@link #getInitials initials}.
|
|
5380
5504
|
*
|
|
@@ -5463,15 +5587,6 @@ declare namespace sap {
|
|
|
5463
5587
|
*/
|
|
5464
5588
|
sColorScheme?: sap.ui.webc.main.AvatarColorScheme
|
|
5465
5589
|
): this;
|
|
5466
|
-
/**
|
|
5467
|
-
* Sets the aggregated {@link #getContent content}.
|
|
5468
|
-
*/
|
|
5469
|
-
setContent(
|
|
5470
|
-
/**
|
|
5471
|
-
* The content to set
|
|
5472
|
-
*/
|
|
5473
|
-
oContent: sap.ui.core.Control
|
|
5474
|
-
): this;
|
|
5475
5590
|
/**
|
|
5476
5591
|
* Sets a new value for property {@link #getIcon icon}.
|
|
5477
5592
|
*
|
|
@@ -5497,6 +5612,15 @@ declare namespace sap {
|
|
|
5497
5612
|
*/
|
|
5498
5613
|
sIcon?: string
|
|
5499
5614
|
): this;
|
|
5615
|
+
/**
|
|
5616
|
+
* Sets the aggregated {@link #getImage image}.
|
|
5617
|
+
*/
|
|
5618
|
+
setImage(
|
|
5619
|
+
/**
|
|
5620
|
+
* The image to set
|
|
5621
|
+
*/
|
|
5622
|
+
oImage: sap.ui.core.Control
|
|
5623
|
+
): this;
|
|
5500
5624
|
/**
|
|
5501
5625
|
* Sets a new value for property {@link #getInitials initials}.
|
|
5502
5626
|
*
|
|
@@ -6899,8 +7023,9 @@ declare namespace sap {
|
|
|
6899
7023
|
*/
|
|
6900
7024
|
class Button
|
|
6901
7025
|
extends sap.ui.webc.common.WebComponent
|
|
6902
|
-
implements sap.ui.webc.main.IButton {
|
|
7026
|
+
implements sap.ui.webc.main.IButton, sap.ui.core.IFormContent {
|
|
6903
7027
|
__implements__sap_ui_webc_main_IButton: boolean;
|
|
7028
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
6904
7029
|
/**
|
|
6905
7030
|
* Constructor for a new `Button`.
|
|
6906
7031
|
*
|
|
@@ -7064,7 +7189,7 @@ declare namespace sap {
|
|
|
7064
7189
|
/**
|
|
7065
7190
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
7066
7191
|
*
|
|
7067
|
-
*
|
|
7192
|
+
* Defines the accessible aria name of the component.
|
|
7068
7193
|
*/
|
|
7069
7194
|
getAccessibleName(): string;
|
|
7070
7195
|
/**
|
|
@@ -7093,14 +7218,14 @@ declare namespace sap {
|
|
|
7093
7218
|
*/
|
|
7094
7219
|
getDesign(): sap.ui.webc.main.ButtonDesign;
|
|
7095
7220
|
/**
|
|
7096
|
-
* Gets current value of property {@link #
|
|
7221
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
7097
7222
|
*
|
|
7098
|
-
* Defines whether the
|
|
7099
|
-
*
|
|
7223
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
7224
|
+
* the tab chain.
|
|
7100
7225
|
*
|
|
7101
|
-
* Default value is `
|
|
7226
|
+
* Default value is `true`.
|
|
7102
7227
|
*/
|
|
7103
|
-
|
|
7228
|
+
getEnabled(): boolean;
|
|
7104
7229
|
/**
|
|
7105
7230
|
* Gets current value of property {@link #getIcon icon}.
|
|
7106
7231
|
*
|
|
@@ -7200,7 +7325,7 @@ declare namespace sap {
|
|
|
7200
7325
|
/**
|
|
7201
7326
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
7202
7327
|
*
|
|
7203
|
-
*
|
|
7328
|
+
* Defines the accessible aria name of the component.
|
|
7204
7329
|
*
|
|
7205
7330
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7206
7331
|
*/
|
|
@@ -7238,20 +7363,20 @@ declare namespace sap {
|
|
|
7238
7363
|
sDesign?: sap.ui.webc.main.ButtonDesign
|
|
7239
7364
|
): this;
|
|
7240
7365
|
/**
|
|
7241
|
-
* Sets a new value for property {@link #
|
|
7366
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
7242
7367
|
*
|
|
7243
|
-
* Defines whether the
|
|
7244
|
-
*
|
|
7368
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
7369
|
+
* the tab chain.
|
|
7245
7370
|
*
|
|
7246
7371
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
7247
7372
|
*
|
|
7248
|
-
* Default value is `
|
|
7373
|
+
* Default value is `true`.
|
|
7249
7374
|
*/
|
|
7250
|
-
|
|
7375
|
+
setEnabled(
|
|
7251
7376
|
/**
|
|
7252
|
-
* New value for property `
|
|
7377
|
+
* New value for property `enabled`
|
|
7253
7378
|
*/
|
|
7254
|
-
|
|
7379
|
+
bEnabled?: boolean
|
|
7255
7380
|
): this;
|
|
7256
7381
|
/**
|
|
7257
7382
|
* Sets a new value for property {@link #getIcon icon}.
|
|
@@ -9141,7 +9266,7 @@ declare namespace sap {
|
|
|
9141
9266
|
/**
|
|
9142
9267
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
9143
9268
|
*
|
|
9144
|
-
*
|
|
9269
|
+
* Defines the accessible aria name of the component.
|
|
9145
9270
|
*
|
|
9146
9271
|
* Default value is `empty string`.
|
|
9147
9272
|
*/
|
|
@@ -9163,15 +9288,14 @@ declare namespace sap {
|
|
|
9163
9288
|
*/
|
|
9164
9289
|
getChecked(): boolean;
|
|
9165
9290
|
/**
|
|
9166
|
-
* Gets current value of property {@link #
|
|
9291
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
9167
9292
|
*
|
|
9168
|
-
* Defines whether the
|
|
9293
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
9294
|
+
* the tab chain.
|
|
9169
9295
|
*
|
|
9170
|
-
*
|
|
9171
|
-
*
|
|
9172
|
-
* Default value is `false`.
|
|
9296
|
+
* Default value is `true`.
|
|
9173
9297
|
*/
|
|
9174
|
-
|
|
9298
|
+
getEnabled(): boolean;
|
|
9175
9299
|
/**
|
|
9176
9300
|
* Gets current value of property {@link #getIndeterminate indeterminate}.
|
|
9177
9301
|
*
|
|
@@ -9271,7 +9395,7 @@ declare namespace sap {
|
|
|
9271
9395
|
/**
|
|
9272
9396
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
9273
9397
|
*
|
|
9274
|
-
*
|
|
9398
|
+
* Defines the accessible aria name of the component.
|
|
9275
9399
|
*
|
|
9276
9400
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9277
9401
|
*
|
|
@@ -9302,21 +9426,20 @@ declare namespace sap {
|
|
|
9302
9426
|
bChecked?: boolean
|
|
9303
9427
|
): this;
|
|
9304
9428
|
/**
|
|
9305
|
-
* Sets a new value for property {@link #
|
|
9429
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
9306
9430
|
*
|
|
9307
|
-
* Defines whether the
|
|
9308
|
-
*
|
|
9309
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
9431
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
9432
|
+
* the tab chain.
|
|
9310
9433
|
*
|
|
9311
9434
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9312
9435
|
*
|
|
9313
|
-
* Default value is `
|
|
9436
|
+
* Default value is `true`.
|
|
9314
9437
|
*/
|
|
9315
|
-
|
|
9438
|
+
setEnabled(
|
|
9316
9439
|
/**
|
|
9317
|
-
* New value for property `
|
|
9440
|
+
* New value for property `enabled`
|
|
9318
9441
|
*/
|
|
9319
|
-
|
|
9442
|
+
bEnabled?: boolean
|
|
9320
9443
|
): this;
|
|
9321
9444
|
/**
|
|
9322
9445
|
* Sets a new value for property {@link #getIndeterminate indeterminate}.
|
|
@@ -9819,13 +9942,13 @@ declare namespace sap {
|
|
|
9819
9942
|
*/
|
|
9820
9943
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
9821
9944
|
/**
|
|
9822
|
-
* Adds some
|
|
9945
|
+
* Adds some color to the aggregation {@link #getColors colors}.
|
|
9823
9946
|
*/
|
|
9824
|
-
|
|
9947
|
+
addColor(
|
|
9825
9948
|
/**
|
|
9826
|
-
* The
|
|
9949
|
+
* The color to add; if empty, nothing is inserted
|
|
9827
9950
|
*/
|
|
9828
|
-
|
|
9951
|
+
oColor: sap.ui.webc.main.IColorPaletteItem
|
|
9829
9952
|
): this;
|
|
9830
9953
|
/**
|
|
9831
9954
|
* Attaches event handler `fnFunction` to the {@link #event:itemClick itemClick} event of this `sap.ui.webc.main.ColorPalettePopover`.
|
|
@@ -9871,9 +9994,9 @@ declare namespace sap {
|
|
|
9871
9994
|
oListener?: object
|
|
9872
9995
|
): this;
|
|
9873
9996
|
/**
|
|
9874
|
-
* Destroys all the
|
|
9997
|
+
* Destroys all the colors in the aggregation {@link #getColors colors}.
|
|
9875
9998
|
*/
|
|
9876
|
-
|
|
9999
|
+
destroyColors(): this;
|
|
9877
10000
|
/**
|
|
9878
10001
|
* Detaches event handler `fnFunction` from the {@link #event:itemClick itemClick} event of this `sap.ui.webc.main.ColorPalettePopover`.
|
|
9879
10002
|
*
|
|
@@ -9904,11 +10027,11 @@ declare namespace sap {
|
|
|
9904
10027
|
}
|
|
9905
10028
|
): this;
|
|
9906
10029
|
/**
|
|
9907
|
-
* Gets content of aggregation {@link #
|
|
10030
|
+
* Gets content of aggregation {@link #getColors colors}.
|
|
9908
10031
|
*
|
|
9909
10032
|
* Defines the content of the component.
|
|
9910
10033
|
*/
|
|
9911
|
-
|
|
10034
|
+
getColors(): sap.ui.webc.main.IColorPaletteItem[];
|
|
9912
10035
|
/**
|
|
9913
10036
|
* Gets current value of property {@link #getDefaultColor defaultColor}.
|
|
9914
10037
|
*
|
|
@@ -9942,27 +10065,27 @@ declare namespace sap {
|
|
|
9942
10065
|
*/
|
|
9943
10066
|
getShowRecentColors(): boolean;
|
|
9944
10067
|
/**
|
|
9945
|
-
* Checks for the provided `sap.ui.
|
|
9946
|
-
* its index if found or -1 otherwise.
|
|
10068
|
+
* Checks for the provided `sap.ui.webc.main.IColorPaletteItem` in the aggregation {@link #getColors colors}.
|
|
10069
|
+
* and returns its index if found or -1 otherwise.
|
|
9947
10070
|
*/
|
|
9948
|
-
|
|
10071
|
+
indexOfColor(
|
|
9949
10072
|
/**
|
|
9950
|
-
* The
|
|
10073
|
+
* The color whose index is looked for
|
|
9951
10074
|
*/
|
|
9952
|
-
|
|
10075
|
+
oColor: sap.ui.webc.main.IColorPaletteItem
|
|
9953
10076
|
): int;
|
|
9954
10077
|
/**
|
|
9955
|
-
* Inserts a
|
|
10078
|
+
* Inserts a color into the aggregation {@link #getColors colors}.
|
|
9956
10079
|
*/
|
|
9957
|
-
|
|
10080
|
+
insertColor(
|
|
9958
10081
|
/**
|
|
9959
|
-
* The
|
|
10082
|
+
* The color to insert; if empty, nothing is inserted
|
|
9960
10083
|
*/
|
|
9961
|
-
|
|
10084
|
+
oColor: sap.ui.webc.main.IColorPaletteItem,
|
|
9962
10085
|
/**
|
|
9963
|
-
* The `0`-based index the
|
|
9964
|
-
*
|
|
9965
|
-
*
|
|
10086
|
+
* The `0`-based index the color should be inserted at; for a negative value of `iIndex`, the color is inserted
|
|
10087
|
+
* at position 0; for a value greater than the current size of the aggregation, the color is inserted at
|
|
10088
|
+
* the last position
|
|
9966
10089
|
*/
|
|
9967
10090
|
iIndex: int
|
|
9968
10091
|
): this;
|
|
@@ -9977,20 +10100,20 @@ declare namespace sap {
|
|
|
9977
10100
|
opener: HTMLElement
|
|
9978
10101
|
): void;
|
|
9979
10102
|
/**
|
|
9980
|
-
* Removes all the controls from the aggregation {@link #
|
|
10103
|
+
* Removes all the controls from the aggregation {@link #getColors colors}.
|
|
9981
10104
|
*
|
|
9982
10105
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
9983
10106
|
*/
|
|
9984
|
-
|
|
10107
|
+
removeAllColors(): sap.ui.webc.main.IColorPaletteItem[];
|
|
9985
10108
|
/**
|
|
9986
|
-
* Removes a
|
|
10109
|
+
* Removes a color from the aggregation {@link #getColors colors}.
|
|
9987
10110
|
*/
|
|
9988
|
-
|
|
10111
|
+
removeColor(
|
|
9989
10112
|
/**
|
|
9990
|
-
* The
|
|
10113
|
+
* The color to remove or its index or id
|
|
9991
10114
|
*/
|
|
9992
|
-
|
|
9993
|
-
): sap.ui.
|
|
10115
|
+
vColor: int | string | sap.ui.webc.main.IColorPaletteItem
|
|
10116
|
+
): sap.ui.webc.main.IColorPaletteItem;
|
|
9994
10117
|
/**
|
|
9995
10118
|
* Sets a new value for property {@link #getDefaultColor defaultColor}.
|
|
9996
10119
|
*
|
|
@@ -10256,7 +10379,10 @@ declare namespace sap {
|
|
|
10256
10379
|
* - [END] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker,
|
|
10257
10380
|
* selects the last item.
|
|
10258
10381
|
*/
|
|
10259
|
-
class ComboBox
|
|
10382
|
+
class ComboBox
|
|
10383
|
+
extends sap.ui.webc.common.WebComponent
|
|
10384
|
+
implements sap.ui.core.IFormContent {
|
|
10385
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
10260
10386
|
/**
|
|
10261
10387
|
* Constructor for a new `ComboBox`.
|
|
10262
10388
|
*
|
|
@@ -10549,7 +10675,7 @@ declare namespace sap {
|
|
|
10549
10675
|
/**
|
|
10550
10676
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
10551
10677
|
*
|
|
10552
|
-
*
|
|
10678
|
+
* Defines the accessible aria name of the component.
|
|
10553
10679
|
*/
|
|
10554
10680
|
getAccessibleName(): string;
|
|
10555
10681
|
/**
|
|
@@ -10558,15 +10684,14 @@ declare namespace sap {
|
|
|
10558
10684
|
*/
|
|
10559
10685
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
10560
10686
|
/**
|
|
10561
|
-
* Gets current value of property {@link #
|
|
10687
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
10562
10688
|
*
|
|
10563
|
-
* Defines whether the
|
|
10689
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
10690
|
+
* the tab chain.
|
|
10564
10691
|
*
|
|
10565
|
-
*
|
|
10566
|
-
*
|
|
10567
|
-
* Default value is `false`.
|
|
10692
|
+
* Default value is `true`.
|
|
10568
10693
|
*/
|
|
10569
|
-
|
|
10694
|
+
getEnabled(): boolean;
|
|
10570
10695
|
/**
|
|
10571
10696
|
* Gets current value of property {@link #getFilter filter}.
|
|
10572
10697
|
*
|
|
@@ -10719,7 +10844,7 @@ declare namespace sap {
|
|
|
10719
10844
|
/**
|
|
10720
10845
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
10721
10846
|
*
|
|
10722
|
-
*
|
|
10847
|
+
* Defines the accessible aria name of the component.
|
|
10723
10848
|
*
|
|
10724
10849
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10725
10850
|
*/
|
|
@@ -10730,21 +10855,20 @@ declare namespace sap {
|
|
|
10730
10855
|
sAccessibleName: string
|
|
10731
10856
|
): this;
|
|
10732
10857
|
/**
|
|
10733
|
-
* Sets a new value for property {@link #
|
|
10858
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
10734
10859
|
*
|
|
10735
|
-
* Defines whether the
|
|
10736
|
-
*
|
|
10737
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
10860
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
10861
|
+
* the tab chain.
|
|
10738
10862
|
*
|
|
10739
10863
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10740
10864
|
*
|
|
10741
|
-
* Default value is `
|
|
10865
|
+
* Default value is `true`.
|
|
10742
10866
|
*/
|
|
10743
|
-
|
|
10867
|
+
setEnabled(
|
|
10744
10868
|
/**
|
|
10745
|
-
* New value for property `
|
|
10869
|
+
* New value for property `enabled`
|
|
10746
10870
|
*/
|
|
10747
|
-
|
|
10871
|
+
bEnabled?: boolean
|
|
10748
10872
|
): this;
|
|
10749
10873
|
/**
|
|
10750
10874
|
* Sets a new value for property {@link #getFilter filter}.
|
|
@@ -11446,7 +11570,10 @@ declare namespace sap {
|
|
|
11446
11570
|
* }
|
|
11447
11571
|
* </script>```
|
|
11448
11572
|
*/
|
|
11449
|
-
class DatePicker
|
|
11573
|
+
class DatePicker
|
|
11574
|
+
extends sap.ui.webc.common.WebComponent
|
|
11575
|
+
implements sap.ui.core.IFormContent {
|
|
11576
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
11450
11577
|
/**
|
|
11451
11578
|
* Constructor for a new `DatePicker`.
|
|
11452
11579
|
*
|
|
@@ -11696,13 +11823,14 @@ declare namespace sap {
|
|
|
11696
11823
|
*/
|
|
11697
11824
|
getDateValue(): void;
|
|
11698
11825
|
/**
|
|
11699
|
-
* Gets current value of property {@link #
|
|
11826
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
11700
11827
|
*
|
|
11701
|
-
*
|
|
11828
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
11829
|
+
* the tab chain.
|
|
11702
11830
|
*
|
|
11703
|
-
* Default value is `
|
|
11831
|
+
* Default value is `true`.
|
|
11704
11832
|
*/
|
|
11705
|
-
|
|
11833
|
+
getEnabled(): boolean;
|
|
11706
11834
|
/**
|
|
11707
11835
|
* Gets current value of property {@link #getFormatPattern formatPattern}.
|
|
11708
11836
|
*
|
|
@@ -11891,19 +12019,20 @@ declare namespace sap {
|
|
|
11891
12019
|
sAccessibleName: string
|
|
11892
12020
|
): this;
|
|
11893
12021
|
/**
|
|
11894
|
-
* Sets a new value for property {@link #
|
|
12022
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
11895
12023
|
*
|
|
11896
|
-
*
|
|
12024
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
12025
|
+
* the tab chain.
|
|
11897
12026
|
*
|
|
11898
12027
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11899
12028
|
*
|
|
11900
|
-
* Default value is `
|
|
12029
|
+
* Default value is `true`.
|
|
11901
12030
|
*/
|
|
11902
|
-
|
|
12031
|
+
setEnabled(
|
|
11903
12032
|
/**
|
|
11904
|
-
* New value for property `
|
|
12033
|
+
* New value for property `enabled`
|
|
11905
12034
|
*/
|
|
11906
|
-
|
|
12035
|
+
bEnabled?: boolean
|
|
11907
12036
|
): this;
|
|
11908
12037
|
/**
|
|
11909
12038
|
* Sets a new value for property {@link #getFormatPattern formatPattern}.
|
|
@@ -12162,7 +12291,10 @@ declare namespace sap {
|
|
|
12162
12291
|
* - [SHIFT] + [PAGEUP] - Increments the corresponding month by one
|
|
12163
12292
|
* - [SHIFT] + [CTRL] + [PAGEUP] - Increments the corresponding year by one
|
|
12164
12293
|
*/
|
|
12165
|
-
class DateRangePicker
|
|
12294
|
+
class DateRangePicker
|
|
12295
|
+
extends sap.ui.webc.common.WebComponent
|
|
12296
|
+
implements sap.ui.core.IFormContent {
|
|
12297
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
12166
12298
|
/**
|
|
12167
12299
|
* Constructor for a new `DateRangePicker`.
|
|
12168
12300
|
*
|
|
@@ -12425,13 +12557,14 @@ declare namespace sap {
|
|
|
12425
12557
|
*/
|
|
12426
12558
|
getDelimiter(): string;
|
|
12427
12559
|
/**
|
|
12428
|
-
* Gets current value of property {@link #
|
|
12560
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
12429
12561
|
*
|
|
12430
|
-
*
|
|
12562
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
12563
|
+
* the tab chain.
|
|
12431
12564
|
*
|
|
12432
|
-
* Default value is `
|
|
12565
|
+
* Default value is `true`.
|
|
12433
12566
|
*/
|
|
12434
|
-
|
|
12567
|
+
getEnabled(): boolean;
|
|
12435
12568
|
/**
|
|
12436
12569
|
* Returns the end date of the currently selected range as JavaScript Date instance.
|
|
12437
12570
|
*/
|
|
@@ -12642,19 +12775,20 @@ declare namespace sap {
|
|
|
12642
12775
|
sDelimiter: string
|
|
12643
12776
|
): this;
|
|
12644
12777
|
/**
|
|
12645
|
-
* Sets a new value for property {@link #
|
|
12778
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
12646
12779
|
*
|
|
12647
|
-
*
|
|
12780
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
12781
|
+
* the tab chain.
|
|
12648
12782
|
*
|
|
12649
12783
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
12650
12784
|
*
|
|
12651
|
-
* Default value is `
|
|
12785
|
+
* Default value is `true`.
|
|
12652
12786
|
*/
|
|
12653
|
-
|
|
12787
|
+
setEnabled(
|
|
12654
12788
|
/**
|
|
12655
|
-
* New value for property `
|
|
12789
|
+
* New value for property `enabled`
|
|
12656
12790
|
*/
|
|
12657
|
-
|
|
12791
|
+
bEnabled?: boolean
|
|
12658
12792
|
): this;
|
|
12659
12793
|
/**
|
|
12660
12794
|
* Sets a new value for property {@link #getFormatPattern formatPattern}.
|
|
@@ -12947,7 +13081,10 @@ declare namespace sap {
|
|
|
12947
13081
|
* The `DateTimePicker` is responsive and fully adapts to all devices. For larger screens, such as tablet
|
|
12948
13082
|
* or desktop, it is displayed as a popover, while on phone devices, it is displayed full screen.
|
|
12949
13083
|
*/
|
|
12950
|
-
class DateTimePicker
|
|
13084
|
+
class DateTimePicker
|
|
13085
|
+
extends sap.ui.webc.common.WebComponent
|
|
13086
|
+
implements sap.ui.core.IFormContent {
|
|
13087
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
12951
13088
|
/**
|
|
12952
13089
|
* Constructor for a new `DateTimePicker`.
|
|
12953
13090
|
*
|
|
@@ -13197,13 +13334,14 @@ declare namespace sap {
|
|
|
13197
13334
|
*/
|
|
13198
13335
|
getDateValue(): void;
|
|
13199
13336
|
/**
|
|
13200
|
-
* Gets current value of property {@link #
|
|
13337
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
13201
13338
|
*
|
|
13202
|
-
*
|
|
13339
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
13340
|
+
* the tab chain.
|
|
13203
13341
|
*
|
|
13204
|
-
* Default value is `
|
|
13342
|
+
* Default value is `true`.
|
|
13205
13343
|
*/
|
|
13206
|
-
|
|
13344
|
+
getEnabled(): boolean;
|
|
13207
13345
|
/**
|
|
13208
13346
|
* Gets current value of property {@link #getFormatPattern formatPattern}.
|
|
13209
13347
|
*
|
|
@@ -13392,19 +13530,20 @@ declare namespace sap {
|
|
|
13392
13530
|
sAccessibleName: string
|
|
13393
13531
|
): this;
|
|
13394
13532
|
/**
|
|
13395
|
-
* Sets a new value for property {@link #
|
|
13533
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
13396
13534
|
*
|
|
13397
|
-
*
|
|
13535
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
13536
|
+
* the tab chain.
|
|
13398
13537
|
*
|
|
13399
13538
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13400
13539
|
*
|
|
13401
|
-
* Default value is `
|
|
13540
|
+
* Default value is `true`.
|
|
13402
13541
|
*/
|
|
13403
|
-
|
|
13542
|
+
setEnabled(
|
|
13404
13543
|
/**
|
|
13405
|
-
* New value for property `
|
|
13544
|
+
* New value for property `enabled`
|
|
13406
13545
|
*/
|
|
13407
|
-
|
|
13546
|
+
bEnabled?: boolean
|
|
13408
13547
|
): this;
|
|
13409
13548
|
/**
|
|
13410
13549
|
* Sets a new value for property {@link #getFormatPattern formatPattern}.
|
|
@@ -13661,6 +13800,15 @@ declare namespace sap {
|
|
|
13661
13800
|
* Responsive Behavior: The `stretch` property can be used to stretch the `sap.ui.webc.main.Dialog` on full
|
|
13662
13801
|
* screen.
|
|
13663
13802
|
*
|
|
13803
|
+
* CSS Shadow Parts:
|
|
13804
|
+
*
|
|
13805
|
+
* CSS Shadow Parts
|
|
13806
|
+
* allow developers to style elements inside the Shadow DOM.
|
|
13807
|
+
* The `sap.ui.webc.main.Dialog` exposes the following CSS Shadow Parts:
|
|
13808
|
+
* - header - Used to style the header of the component
|
|
13809
|
+
* - content - Used to style the content of the component
|
|
13810
|
+
* - footer - Used to style the footer of the component
|
|
13811
|
+
*
|
|
13664
13812
|
* **Note:** We don't recommend nesting popup-like components (`sap.ui.webc.main.Dialog`, `sap.ui.webc.main.Popover`)
|
|
13665
13813
|
* inside `sap.ui.webc.main.Dialog`. Ideally you should create all popups on the same level inside your
|
|
13666
13814
|
* HTML page and just open them from one another, rather than nesting them.
|
|
@@ -14118,13 +14266,18 @@ declare namespace sap {
|
|
|
14118
14266
|
*/
|
|
14119
14267
|
getHeight(): sap.ui.core.CSSSize;
|
|
14120
14268
|
/**
|
|
14121
|
-
*
|
|
14269
|
+
* ID of the element which is the current target of the association {@link #getInitialFocus initialFocus},
|
|
14270
|
+
* or `null`.
|
|
14271
|
+
*/
|
|
14272
|
+
getInitialFocus(): sap.ui.core.ID;
|
|
14273
|
+
/**
|
|
14274
|
+
* Gets current value of property {@link #getOpen open}.
|
|
14122
14275
|
*
|
|
14123
|
-
*
|
|
14276
|
+
* Indicates if the element is open
|
|
14124
14277
|
*
|
|
14125
|
-
* Default value is `
|
|
14278
|
+
* Default value is `false`.
|
|
14126
14279
|
*/
|
|
14127
|
-
|
|
14280
|
+
getOpen(): boolean;
|
|
14128
14281
|
/**
|
|
14129
14282
|
* Gets current value of property {@link #getPreventFocusRestore preventFocusRestore}.
|
|
14130
14283
|
*
|
|
@@ -14363,19 +14516,29 @@ declare namespace sap {
|
|
|
14363
14516
|
sHeight?: sap.ui.core.CSSSize
|
|
14364
14517
|
): this;
|
|
14365
14518
|
/**
|
|
14366
|
-
* Sets
|
|
14519
|
+
* Sets the associated {@link #getInitialFocus initialFocus}.
|
|
14520
|
+
*/
|
|
14521
|
+
setInitialFocus(
|
|
14522
|
+
/**
|
|
14523
|
+
* ID of an element which becomes the new target of this initialFocus association; alternatively, an element
|
|
14524
|
+
* instance may be given
|
|
14525
|
+
*/
|
|
14526
|
+
oInitialFocus: sap.ui.core.ID | sap.ui.core.Control
|
|
14527
|
+
): this;
|
|
14528
|
+
/**
|
|
14529
|
+
* Sets a new value for property {@link #getOpen open}.
|
|
14367
14530
|
*
|
|
14368
|
-
*
|
|
14531
|
+
* Indicates if the element is open
|
|
14369
14532
|
*
|
|
14370
14533
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14371
14534
|
*
|
|
14372
|
-
* Default value is `
|
|
14535
|
+
* Default value is `false`.
|
|
14373
14536
|
*/
|
|
14374
|
-
|
|
14537
|
+
setOpen(
|
|
14375
14538
|
/**
|
|
14376
|
-
* New value for property `
|
|
14539
|
+
* New value for property `open`
|
|
14377
14540
|
*/
|
|
14378
|
-
|
|
14541
|
+
bOpen?: boolean
|
|
14379
14542
|
): this;
|
|
14380
14543
|
/**
|
|
14381
14544
|
* Sets a new value for property {@link #getPreventFocusRestore preventFocusRestore}.
|
|
@@ -14467,7 +14630,10 @@ declare namespace sap {
|
|
|
14467
14630
|
* And, similar to all input based components, the FileUploader supports "valueState", "placeholder", "name",
|
|
14468
14631
|
* and "disabled" properties.
|
|
14469
14632
|
*/
|
|
14470
|
-
class FileUploader
|
|
14633
|
+
class FileUploader
|
|
14634
|
+
extends sap.ui.webc.common.WebComponent
|
|
14635
|
+
implements sap.ui.core.IFormContent {
|
|
14636
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
14471
14637
|
/**
|
|
14472
14638
|
* Constructor for a new `FileUploader`.
|
|
14473
14639
|
*
|
|
@@ -14630,15 +14796,14 @@ declare namespace sap {
|
|
|
14630
14796
|
*/
|
|
14631
14797
|
getContent(): sap.ui.core.Control[];
|
|
14632
14798
|
/**
|
|
14633
|
-
* Gets current value of property {@link #
|
|
14634
|
-
*
|
|
14635
|
-
* Defines whether the component is in disabled state.
|
|
14799
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
14636
14800
|
*
|
|
14637
|
-
*
|
|
14801
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
14802
|
+
* the tab chain.
|
|
14638
14803
|
*
|
|
14639
|
-
* Default value is `
|
|
14804
|
+
* Default value is `true`.
|
|
14640
14805
|
*/
|
|
14641
|
-
|
|
14806
|
+
getEnabled(): boolean;
|
|
14642
14807
|
/**
|
|
14643
14808
|
* Returns the fileList of all selected files.
|
|
14644
14809
|
*/
|
|
@@ -14781,21 +14946,20 @@ declare namespace sap {
|
|
|
14781
14946
|
sAccept?: string
|
|
14782
14947
|
): this;
|
|
14783
14948
|
/**
|
|
14784
|
-
* Sets a new value for property {@link #
|
|
14949
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
14785
14950
|
*
|
|
14786
|
-
* Defines whether the
|
|
14787
|
-
*
|
|
14788
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
14951
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
14952
|
+
* the tab chain.
|
|
14789
14953
|
*
|
|
14790
14954
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14791
14955
|
*
|
|
14792
|
-
* Default value is `
|
|
14956
|
+
* Default value is `true`.
|
|
14793
14957
|
*/
|
|
14794
|
-
|
|
14958
|
+
setEnabled(
|
|
14795
14959
|
/**
|
|
14796
|
-
* New value for property `
|
|
14960
|
+
* New value for property `enabled`
|
|
14797
14961
|
*/
|
|
14798
|
-
|
|
14962
|
+
bEnabled?: boolean
|
|
14799
14963
|
): this;
|
|
14800
14964
|
/**
|
|
14801
14965
|
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
@@ -15097,9 +15261,8 @@ declare namespace sap {
|
|
|
15097
15261
|
*/
|
|
15098
15262
|
class Icon
|
|
15099
15263
|
extends sap.ui.webc.common.WebComponent
|
|
15100
|
-
implements sap.ui.webc.main.IIcon
|
|
15264
|
+
implements sap.ui.webc.main.IIcon {
|
|
15101
15265
|
__implements__sap_ui_webc_main_IIcon: boolean;
|
|
15102
|
-
__implements__sap_ui_core_IFormContent: boolean;
|
|
15103
15266
|
/**
|
|
15104
15267
|
* Constructor for a new `Icon`.
|
|
15105
15268
|
*
|
|
@@ -15475,8 +15638,6 @@ declare namespace sap {
|
|
|
15475
15638
|
*
|
|
15476
15639
|
*
|
|
15477
15640
|
*
|
|
15478
|
-
* - [F4], [ALT]+[UP], or [ALT]+[DOWN] - Opens value help if available, same as clicking the value help
|
|
15479
|
-
* icon. (Does not open suggestion list.)
|
|
15480
15641
|
* - [ESC] - Closes the suggestion list, if open. If closed or not enabled, cancels changes and reverts
|
|
15481
15642
|
* to the value which the Input field had when it got the focus.
|
|
15482
15643
|
* - [ENTER] or [RETURN] - If suggestion list is open takes over the current matching item and closes
|
|
@@ -15494,8 +15655,9 @@ declare namespace sap {
|
|
|
15494
15655
|
*/
|
|
15495
15656
|
class Input
|
|
15496
15657
|
extends sap.ui.webc.common.WebComponent
|
|
15497
|
-
implements sap.ui.webc.main.IInput {
|
|
15658
|
+
implements sap.ui.webc.main.IInput, sap.ui.core.IFormContent {
|
|
15498
15659
|
__implements__sap_ui_webc_main_IInput: boolean;
|
|
15660
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
15499
15661
|
/**
|
|
15500
15662
|
* Constructor for a new `Input`.
|
|
15501
15663
|
*
|
|
@@ -15874,7 +16036,7 @@ declare namespace sap {
|
|
|
15874
16036
|
/**
|
|
15875
16037
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
15876
16038
|
*
|
|
15877
|
-
*
|
|
16039
|
+
* Defines the accessible aria name of the component.
|
|
15878
16040
|
*/
|
|
15879
16041
|
getAccessibleName(): string;
|
|
15880
16042
|
/**
|
|
@@ -15883,15 +16045,14 @@ declare namespace sap {
|
|
|
15883
16045
|
*/
|
|
15884
16046
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
15885
16047
|
/**
|
|
15886
|
-
* Gets current value of property {@link #
|
|
15887
|
-
*
|
|
15888
|
-
* Defines whether the component is in disabled state.
|
|
16048
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
15889
16049
|
*
|
|
15890
|
-
*
|
|
16050
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
16051
|
+
* the tab chain.
|
|
15891
16052
|
*
|
|
15892
|
-
* Default value is `
|
|
16053
|
+
* Default value is `true`.
|
|
15893
16054
|
*/
|
|
15894
|
-
|
|
16055
|
+
getEnabled(): boolean;
|
|
15895
16056
|
/**
|
|
15896
16057
|
* Gets content of aggregation {@link #getIcon icon}.
|
|
15897
16058
|
*
|
|
@@ -16127,7 +16288,7 @@ declare namespace sap {
|
|
|
16127
16288
|
/**
|
|
16128
16289
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
16129
16290
|
*
|
|
16130
|
-
*
|
|
16291
|
+
* Defines the accessible aria name of the component.
|
|
16131
16292
|
*
|
|
16132
16293
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16133
16294
|
*/
|
|
@@ -16138,21 +16299,20 @@ declare namespace sap {
|
|
|
16138
16299
|
sAccessibleName: string
|
|
16139
16300
|
): this;
|
|
16140
16301
|
/**
|
|
16141
|
-
* Sets a new value for property {@link #
|
|
16142
|
-
*
|
|
16143
|
-
* Defines whether the component is in disabled state.
|
|
16302
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
16144
16303
|
*
|
|
16145
|
-
*
|
|
16304
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
16305
|
+
* the tab chain.
|
|
16146
16306
|
*
|
|
16147
16307
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16148
16308
|
*
|
|
16149
|
-
* Default value is `
|
|
16309
|
+
* Default value is `true`.
|
|
16150
16310
|
*/
|
|
16151
|
-
|
|
16311
|
+
setEnabled(
|
|
16152
16312
|
/**
|
|
16153
|
-
* New value for property `
|
|
16313
|
+
* New value for property `enabled`
|
|
16154
16314
|
*/
|
|
16155
|
-
|
|
16315
|
+
bEnabled?: boolean
|
|
16156
16316
|
): this;
|
|
16157
16317
|
/**
|
|
16158
16318
|
* Sets a new value for property {@link #getMaxlength maxlength}.
|
|
@@ -16755,6 +16915,14 @@ declare namespace sap {
|
|
|
16755
16915
|
* Default value is `{}`.
|
|
16756
16916
|
*/
|
|
16757
16917
|
getAccessibilityAttributes(): object;
|
|
16918
|
+
/**
|
|
16919
|
+
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
16920
|
+
*
|
|
16921
|
+
* Defines the accessible aria name of the component.
|
|
16922
|
+
*
|
|
16923
|
+
* Default value is `empty string`.
|
|
16924
|
+
*/
|
|
16925
|
+
getAccessibleName(): string;
|
|
16758
16926
|
/**
|
|
16759
16927
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
16760
16928
|
* ariaLabelledBy}.
|
|
@@ -16771,15 +16939,14 @@ declare namespace sap {
|
|
|
16771
16939
|
*/
|
|
16772
16940
|
getDesign(): sap.ui.webc.main.LinkDesign;
|
|
16773
16941
|
/**
|
|
16774
|
-
* Gets current value of property {@link #
|
|
16775
|
-
*
|
|
16776
|
-
* Defines whether the component is disabled.
|
|
16942
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
16777
16943
|
*
|
|
16778
|
-
*
|
|
16944
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
16945
|
+
* the tab chain.
|
|
16779
16946
|
*
|
|
16780
|
-
* Default value is `
|
|
16947
|
+
* Default value is `true`.
|
|
16781
16948
|
*/
|
|
16782
|
-
|
|
16949
|
+
getEnabled(): boolean;
|
|
16783
16950
|
/**
|
|
16784
16951
|
* Gets current value of property {@link #getHref href}.
|
|
16785
16952
|
*
|
|
@@ -16872,6 +17039,21 @@ declare namespace sap {
|
|
|
16872
17039
|
*/
|
|
16873
17040
|
oAccessibilityAttributes?: object
|
|
16874
17041
|
): this;
|
|
17042
|
+
/**
|
|
17043
|
+
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
17044
|
+
*
|
|
17045
|
+
* Defines the accessible aria name of the component.
|
|
17046
|
+
*
|
|
17047
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17048
|
+
*
|
|
17049
|
+
* Default value is `empty string`.
|
|
17050
|
+
*/
|
|
17051
|
+
setAccessibleName(
|
|
17052
|
+
/**
|
|
17053
|
+
* New value for property `accessibleName`
|
|
17054
|
+
*/
|
|
17055
|
+
sAccessibleName?: string
|
|
17056
|
+
): this;
|
|
16875
17057
|
/**
|
|
16876
17058
|
* Sets a new value for property {@link #getDesign design}.
|
|
16877
17059
|
*
|
|
@@ -16890,21 +17072,20 @@ declare namespace sap {
|
|
|
16890
17072
|
sDesign?: sap.ui.webc.main.LinkDesign
|
|
16891
17073
|
): this;
|
|
16892
17074
|
/**
|
|
16893
|
-
* Sets a new value for property {@link #
|
|
17075
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
16894
17076
|
*
|
|
16895
|
-
* Defines whether the
|
|
16896
|
-
*
|
|
16897
|
-
* **Note:** When disabled, the click event cannot be triggered by the user.
|
|
17077
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
17078
|
+
* the tab chain.
|
|
16898
17079
|
*
|
|
16899
17080
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
16900
17081
|
*
|
|
16901
|
-
* Default value is `
|
|
17082
|
+
* Default value is `true`.
|
|
16902
17083
|
*/
|
|
16903
|
-
|
|
17084
|
+
setEnabled(
|
|
16904
17085
|
/**
|
|
16905
|
-
* New value for property `
|
|
17086
|
+
* New value for property `enabled`
|
|
16906
17087
|
*/
|
|
16907
|
-
|
|
17088
|
+
bEnabled?: boolean
|
|
16908
17089
|
): this;
|
|
16909
17090
|
/**
|
|
16910
17091
|
* Sets a new value for property {@link #getHref href}.
|
|
@@ -18363,7 +18544,10 @@ declare namespace sap {
|
|
|
18363
18544
|
* The `sap.ui.webc.main.MultiComboBox` exposes the following CSS Shadow Parts:
|
|
18364
18545
|
* - token-{index} - Used to style each token(where `token-0` corresponds to the first item)
|
|
18365
18546
|
*/
|
|
18366
|
-
class MultiComboBox
|
|
18547
|
+
class MultiComboBox
|
|
18548
|
+
extends sap.ui.webc.common.WebComponent
|
|
18549
|
+
implements sap.ui.core.IFormContent {
|
|
18550
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
18367
18551
|
/**
|
|
18368
18552
|
* Constructor for a new `MultiComboBox`.
|
|
18369
18553
|
*
|
|
@@ -18714,15 +18898,14 @@ declare namespace sap {
|
|
|
18714
18898
|
*/
|
|
18715
18899
|
getAllowCustomValues(): boolean;
|
|
18716
18900
|
/**
|
|
18717
|
-
* Gets current value of property {@link #
|
|
18718
|
-
*
|
|
18719
|
-
* Defines whether the component is in disabled state.
|
|
18901
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
18720
18902
|
*
|
|
18721
|
-
*
|
|
18903
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
18904
|
+
* the tab chain.
|
|
18722
18905
|
*
|
|
18723
|
-
* Default value is `
|
|
18906
|
+
* Default value is `true`.
|
|
18724
18907
|
*/
|
|
18725
|
-
|
|
18908
|
+
getEnabled(): boolean;
|
|
18726
18909
|
/**
|
|
18727
18910
|
* Gets current value of property {@link #getFilter filter}.
|
|
18728
18911
|
*
|
|
@@ -18873,21 +19056,20 @@ declare namespace sap {
|
|
|
18873
19056
|
bAllowCustomValues?: boolean
|
|
18874
19057
|
): this;
|
|
18875
19058
|
/**
|
|
18876
|
-
* Sets a new value for property {@link #
|
|
18877
|
-
*
|
|
18878
|
-
* Defines whether the component is in disabled state.
|
|
19059
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
18879
19060
|
*
|
|
18880
|
-
*
|
|
19061
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
19062
|
+
* the tab chain.
|
|
18881
19063
|
*
|
|
18882
19064
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18883
19065
|
*
|
|
18884
|
-
* Default value is `
|
|
19066
|
+
* Default value is `true`.
|
|
18885
19067
|
*/
|
|
18886
|
-
|
|
19068
|
+
setEnabled(
|
|
18887
19069
|
/**
|
|
18888
|
-
* New value for property `
|
|
19070
|
+
* New value for property `enabled`
|
|
18889
19071
|
*/
|
|
18890
|
-
|
|
19072
|
+
bEnabled?: boolean
|
|
18891
19073
|
): this;
|
|
18892
19074
|
/**
|
|
18893
19075
|
* Sets a new value for property {@link #getFilter filter}.
|
|
@@ -19181,7 +19363,13 @@ declare namespace sap {
|
|
|
19181
19363
|
* - Type a value in the input and press enter or focus out the input field (`change` event is fired)
|
|
19182
19364
|
* Select a value from the suggestion list (`suggestion-item-select` event is fired)
|
|
19183
19365
|
*/
|
|
19184
|
-
class MultiInput
|
|
19366
|
+
class MultiInput
|
|
19367
|
+
extends sap.ui.webc.common.WebComponent
|
|
19368
|
+
implements
|
|
19369
|
+
sap.ui.core.IFormContent,
|
|
19370
|
+
sap.ui.core.ISemanticFormContent {
|
|
19371
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
19372
|
+
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
19185
19373
|
/**
|
|
19186
19374
|
* Constructor for a new `MultiInput`.
|
|
19187
19375
|
*
|
|
@@ -19713,7 +19901,7 @@ declare namespace sap {
|
|
|
19713
19901
|
/**
|
|
19714
19902
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
19715
19903
|
*
|
|
19716
|
-
*
|
|
19904
|
+
* Defines the accessible aria name of the component.
|
|
19717
19905
|
*/
|
|
19718
19906
|
getAccessibleName(): string;
|
|
19719
19907
|
/**
|
|
@@ -19722,15 +19910,14 @@ declare namespace sap {
|
|
|
19722
19910
|
*/
|
|
19723
19911
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
19724
19912
|
/**
|
|
19725
|
-
* Gets current value of property {@link #
|
|
19913
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
19726
19914
|
*
|
|
19727
|
-
* Defines whether the
|
|
19915
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
19916
|
+
* the tab chain.
|
|
19728
19917
|
*
|
|
19729
|
-
*
|
|
19730
|
-
*
|
|
19731
|
-
* Default value is `false`.
|
|
19918
|
+
* Default value is `true`.
|
|
19732
19919
|
*/
|
|
19733
|
-
|
|
19920
|
+
getEnabled(): boolean;
|
|
19734
19921
|
/**
|
|
19735
19922
|
* Gets content of aggregation {@link #getIcon icon}.
|
|
19736
19923
|
*
|
|
@@ -20021,7 +20208,7 @@ declare namespace sap {
|
|
|
20021
20208
|
/**
|
|
20022
20209
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
20023
20210
|
*
|
|
20024
|
-
*
|
|
20211
|
+
* Defines the accessible aria name of the component.
|
|
20025
20212
|
*
|
|
20026
20213
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20027
20214
|
*/
|
|
@@ -20032,21 +20219,20 @@ declare namespace sap {
|
|
|
20032
20219
|
sAccessibleName: string
|
|
20033
20220
|
): this;
|
|
20034
20221
|
/**
|
|
20035
|
-
* Sets a new value for property {@link #
|
|
20222
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
20036
20223
|
*
|
|
20037
|
-
* Defines whether the
|
|
20038
|
-
*
|
|
20039
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
20224
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
20225
|
+
* the tab chain.
|
|
20040
20226
|
*
|
|
20041
20227
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20042
20228
|
*
|
|
20043
|
-
* Default value is `
|
|
20229
|
+
* Default value is `true`.
|
|
20044
20230
|
*/
|
|
20045
|
-
|
|
20231
|
+
setEnabled(
|
|
20046
20232
|
/**
|
|
20047
|
-
* New value for property `
|
|
20233
|
+
* New value for property `enabled`
|
|
20048
20234
|
*/
|
|
20049
|
-
|
|
20235
|
+
bEnabled?: boolean
|
|
20050
20236
|
): this;
|
|
20051
20237
|
/**
|
|
20052
20238
|
* Sets a new value for property {@link #getMaxlength maxlength}.
|
|
@@ -20340,15 +20526,14 @@ declare namespace sap {
|
|
|
20340
20526
|
*/
|
|
20341
20527
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
20342
20528
|
/**
|
|
20343
|
-
* Gets current value of property {@link #
|
|
20344
|
-
*
|
|
20345
|
-
* Defines whether the component is in disabled state.
|
|
20529
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
20346
20530
|
*
|
|
20347
|
-
*
|
|
20531
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
20532
|
+
* the tab chain.
|
|
20348
20533
|
*
|
|
20349
|
-
* Default value is `
|
|
20534
|
+
* Default value is `true`.
|
|
20350
20535
|
*/
|
|
20351
|
-
|
|
20536
|
+
getEnabled(): boolean;
|
|
20352
20537
|
/**
|
|
20353
20538
|
* Gets current value of property {@link #getIcon icon}.
|
|
20354
20539
|
*
|
|
@@ -20382,21 +20567,20 @@ declare namespace sap {
|
|
|
20382
20567
|
*/
|
|
20383
20568
|
getValue(): string;
|
|
20384
20569
|
/**
|
|
20385
|
-
* Sets a new value for property {@link #
|
|
20386
|
-
*
|
|
20387
|
-
* Defines whether the component is in disabled state.
|
|
20570
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
20388
20571
|
*
|
|
20389
|
-
*
|
|
20572
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
20573
|
+
* the tab chain.
|
|
20390
20574
|
*
|
|
20391
20575
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20392
20576
|
*
|
|
20393
|
-
* Default value is `
|
|
20577
|
+
* Default value is `true`.
|
|
20394
20578
|
*/
|
|
20395
|
-
|
|
20579
|
+
setEnabled(
|
|
20396
20580
|
/**
|
|
20397
|
-
* New value for property `
|
|
20581
|
+
* New value for property `enabled`
|
|
20398
20582
|
*/
|
|
20399
|
-
|
|
20583
|
+
bEnabled?: boolean
|
|
20400
20584
|
): this;
|
|
20401
20585
|
/**
|
|
20402
20586
|
* Sets a new value for property {@link #getIcon icon}.
|
|
@@ -20652,7 +20836,7 @@ declare namespace sap {
|
|
|
20652
20836
|
/**
|
|
20653
20837
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
20654
20838
|
*
|
|
20655
|
-
*
|
|
20839
|
+
* Defines the accessible aria name of the component.
|
|
20656
20840
|
*
|
|
20657
20841
|
* Default value is `empty string`.
|
|
20658
20842
|
*/
|
|
@@ -20821,7 +21005,7 @@ declare namespace sap {
|
|
|
20821
21005
|
/**
|
|
20822
21006
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
20823
21007
|
*
|
|
20824
|
-
*
|
|
21008
|
+
* Defines the accessible aria name of the component.
|
|
20825
21009
|
*
|
|
20826
21010
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
20827
21011
|
*
|
|
@@ -20976,6 +21160,15 @@ declare namespace sap {
|
|
|
20976
21160
|
*
|
|
20977
21161
|
* **Note:** The `sap.ui.webc.main.Popover` is closed when the user clicks or taps outside the popover or
|
|
20978
21162
|
* selects an action within the popover. You can prevent this with the `modal` property.
|
|
21163
|
+
*
|
|
21164
|
+
* CSS Shadow Parts:
|
|
21165
|
+
*
|
|
21166
|
+
* CSS Shadow Parts
|
|
21167
|
+
* allow developers to style elements inside the Shadow DOM.
|
|
21168
|
+
* The `sap.ui.webc.main.Popover` exposes the following CSS Shadow Parts:
|
|
21169
|
+
* - header - Used to style the header of the component
|
|
21170
|
+
* - content - Used to style the content of the component
|
|
21171
|
+
* - footer - Used to style the footer of the component
|
|
20979
21172
|
*/
|
|
20980
21173
|
class Popover extends sap.ui.webc.common.WebComponent {
|
|
20981
21174
|
/**
|
|
@@ -21451,13 +21644,10 @@ declare namespace sap {
|
|
|
21451
21644
|
*/
|
|
21452
21645
|
getHorizontalAlign(): sap.ui.webc.main.PopoverHorizontalAlign;
|
|
21453
21646
|
/**
|
|
21454
|
-
*
|
|
21455
|
-
*
|
|
21456
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
21457
|
-
*
|
|
21458
|
-
* Default value is `empty string`.
|
|
21647
|
+
* ID of the element which is the current target of the association {@link #getInitialFocus initialFocus},
|
|
21648
|
+
* or `null`.
|
|
21459
21649
|
*/
|
|
21460
|
-
getInitialFocus():
|
|
21650
|
+
getInitialFocus(): sap.ui.core.ID;
|
|
21461
21651
|
/**
|
|
21462
21652
|
* Gets current value of property {@link #getModal modal}.
|
|
21463
21653
|
*
|
|
@@ -21466,7 +21656,19 @@ declare namespace sap {
|
|
|
21466
21656
|
*
|
|
21467
21657
|
* Default value is `false`.
|
|
21468
21658
|
*/
|
|
21469
|
-
getModal(): boolean;
|
|
21659
|
+
getModal(): boolean;
|
|
21660
|
+
/**
|
|
21661
|
+
* Gets current value of property {@link #getOpen open}.
|
|
21662
|
+
*
|
|
21663
|
+
* Indicates if the element is open
|
|
21664
|
+
*
|
|
21665
|
+
* Default value is `false`.
|
|
21666
|
+
*/
|
|
21667
|
+
getOpen(): boolean;
|
|
21668
|
+
/**
|
|
21669
|
+
* ID of the element which is the current target of the association {@link #getOpener opener}, or `null`.
|
|
21670
|
+
*/
|
|
21671
|
+
getOpener(): sap.ui.core.ID;
|
|
21470
21672
|
/**
|
|
21471
21673
|
* Gets current value of property {@link #getPlacementType placementType}.
|
|
21472
21674
|
*
|
|
@@ -21758,19 +21960,14 @@ declare namespace sap {
|
|
|
21758
21960
|
sHorizontalAlign?: sap.ui.webc.main.PopoverHorizontalAlign
|
|
21759
21961
|
): this;
|
|
21760
21962
|
/**
|
|
21761
|
-
* Sets
|
|
21762
|
-
*
|
|
21763
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
21764
|
-
*
|
|
21765
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
21766
|
-
*
|
|
21767
|
-
* Default value is `empty string`.
|
|
21963
|
+
* Sets the associated {@link #getInitialFocus initialFocus}.
|
|
21768
21964
|
*/
|
|
21769
21965
|
setInitialFocus(
|
|
21770
21966
|
/**
|
|
21771
|
-
*
|
|
21967
|
+
* ID of an element which becomes the new target of this initialFocus association; alternatively, an element
|
|
21968
|
+
* instance may be given
|
|
21772
21969
|
*/
|
|
21773
|
-
|
|
21970
|
+
oInitialFocus: sap.ui.core.ID | sap.ui.core.Control
|
|
21774
21971
|
): this;
|
|
21775
21972
|
/**
|
|
21776
21973
|
* Sets a new value for property {@link #getModal modal}.
|
|
@@ -21788,6 +21985,31 @@ declare namespace sap {
|
|
|
21788
21985
|
*/
|
|
21789
21986
|
bModal?: boolean
|
|
21790
21987
|
): this;
|
|
21988
|
+
/**
|
|
21989
|
+
* Sets a new value for property {@link #getOpen open}.
|
|
21990
|
+
*
|
|
21991
|
+
* Indicates if the element is open
|
|
21992
|
+
*
|
|
21993
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
21994
|
+
*
|
|
21995
|
+
* Default value is `false`.
|
|
21996
|
+
*/
|
|
21997
|
+
setOpen(
|
|
21998
|
+
/**
|
|
21999
|
+
* New value for property `open`
|
|
22000
|
+
*/
|
|
22001
|
+
bOpen?: boolean
|
|
22002
|
+
): this;
|
|
22003
|
+
/**
|
|
22004
|
+
* Sets the associated {@link #getOpener opener}.
|
|
22005
|
+
*/
|
|
22006
|
+
setOpener(
|
|
22007
|
+
/**
|
|
22008
|
+
* ID of an element which becomes the new target of this opener association; alternatively, an element instance
|
|
22009
|
+
* may be given
|
|
22010
|
+
*/
|
|
22011
|
+
oOpener: sap.ui.core.ID | sap.ui.core.Control
|
|
22012
|
+
): this;
|
|
21791
22013
|
/**
|
|
21792
22014
|
* Sets a new value for property {@link #getPlacementType placementType}.
|
|
21793
22015
|
*
|
|
@@ -21882,7 +22104,10 @@ declare namespace sap {
|
|
|
21882
22104
|
* Responsive Behavior: You can change the size of the Progress Indicator by changing its `width` or `height`
|
|
21883
22105
|
* CSS properties.
|
|
21884
22106
|
*/
|
|
21885
|
-
class ProgressIndicator
|
|
22107
|
+
class ProgressIndicator
|
|
22108
|
+
extends sap.ui.webc.common.WebComponent
|
|
22109
|
+
implements sap.ui.core.IFormContent {
|
|
22110
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
21886
22111
|
/**
|
|
21887
22112
|
* Constructor for a new `ProgressIndicator`.
|
|
21888
22113
|
*
|
|
@@ -21939,14 +22164,6 @@ declare namespace sap {
|
|
|
21939
22164
|
* Returns a metadata object for class sap.ui.webc.main.ProgressIndicator.
|
|
21940
22165
|
*/
|
|
21941
22166
|
static getMetadata(): sap.ui.webc.common.WebComponentMetadata;
|
|
21942
|
-
/**
|
|
21943
|
-
* Gets current value of property {@link #getDisabled disabled}.
|
|
21944
|
-
*
|
|
21945
|
-
* Defines whether component is in disabled state.
|
|
21946
|
-
*
|
|
21947
|
-
* Default value is `false`.
|
|
21948
|
-
*/
|
|
21949
|
-
getDisabled(): boolean;
|
|
21950
22167
|
/**
|
|
21951
22168
|
* Gets current value of property {@link #getDisplayValue displayValue}.
|
|
21952
22169
|
*
|
|
@@ -21957,6 +22174,15 @@ declare namespace sap {
|
|
|
21957
22174
|
* - If `hideValue` property is `true` both the `displayValue` and `value` property values are not shown.
|
|
21958
22175
|
*/
|
|
21959
22176
|
getDisplayValue(): string;
|
|
22177
|
+
/**
|
|
22178
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
22179
|
+
*
|
|
22180
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
22181
|
+
* the tab chain.
|
|
22182
|
+
*
|
|
22183
|
+
* Default value is `true`.
|
|
22184
|
+
*/
|
|
22185
|
+
getEnabled(): boolean;
|
|
21960
22186
|
/**
|
|
21961
22187
|
* Gets current value of property {@link #getHideValue hideValue}.
|
|
21962
22188
|
*
|
|
@@ -21997,21 +22223,6 @@ declare namespace sap {
|
|
|
21997
22223
|
* Defines the width of the control
|
|
21998
22224
|
*/
|
|
21999
22225
|
getWidth(): sap.ui.core.CSSSize;
|
|
22000
|
-
/**
|
|
22001
|
-
* Sets a new value for property {@link #getDisabled disabled}.
|
|
22002
|
-
*
|
|
22003
|
-
* Defines whether component is in disabled state.
|
|
22004
|
-
*
|
|
22005
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22006
|
-
*
|
|
22007
|
-
* Default value is `false`.
|
|
22008
|
-
*/
|
|
22009
|
-
setDisabled(
|
|
22010
|
-
/**
|
|
22011
|
-
* New value for property `disabled`
|
|
22012
|
-
*/
|
|
22013
|
-
bDisabled?: boolean
|
|
22014
|
-
): this;
|
|
22015
22226
|
/**
|
|
22016
22227
|
* Sets a new value for property {@link #getDisplayValue displayValue}.
|
|
22017
22228
|
*
|
|
@@ -22030,6 +22241,22 @@ declare namespace sap {
|
|
|
22030
22241
|
*/
|
|
22031
22242
|
sDisplayValue: string
|
|
22032
22243
|
): this;
|
|
22244
|
+
/**
|
|
22245
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
22246
|
+
*
|
|
22247
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
22248
|
+
* the tab chain.
|
|
22249
|
+
*
|
|
22250
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22251
|
+
*
|
|
22252
|
+
* Default value is `true`.
|
|
22253
|
+
*/
|
|
22254
|
+
setEnabled(
|
|
22255
|
+
/**
|
|
22256
|
+
* New value for property `enabled`
|
|
22257
|
+
*/
|
|
22258
|
+
bEnabled?: boolean
|
|
22259
|
+
): this;
|
|
22033
22260
|
/**
|
|
22034
22261
|
* Sets a new value for property {@link #getHideValue hideValue}.
|
|
22035
22262
|
*
|
|
@@ -22272,15 +22499,14 @@ declare namespace sap {
|
|
|
22272
22499
|
*/
|
|
22273
22500
|
getChecked(): boolean;
|
|
22274
22501
|
/**
|
|
22275
|
-
* Gets current value of property {@link #
|
|
22276
|
-
*
|
|
22277
|
-
* Defines whether the component is disabled.
|
|
22502
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
22278
22503
|
*
|
|
22279
|
-
*
|
|
22504
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
22505
|
+
* the tab chain.
|
|
22280
22506
|
*
|
|
22281
|
-
* Default value is `
|
|
22507
|
+
* Default value is `true`.
|
|
22282
22508
|
*/
|
|
22283
|
-
|
|
22509
|
+
getEnabled(): boolean;
|
|
22284
22510
|
/**
|
|
22285
22511
|
* Gets current value of property {@link #getName name}.
|
|
22286
22512
|
*
|
|
@@ -22390,21 +22616,20 @@ declare namespace sap {
|
|
|
22390
22616
|
bChecked?: boolean
|
|
22391
22617
|
): this;
|
|
22392
22618
|
/**
|
|
22393
|
-
* Sets a new value for property {@link #
|
|
22394
|
-
*
|
|
22395
|
-
* Defines whether the component is disabled.
|
|
22619
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
22396
22620
|
*
|
|
22397
|
-
*
|
|
22621
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
22622
|
+
* the tab chain.
|
|
22398
22623
|
*
|
|
22399
22624
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22400
22625
|
*
|
|
22401
|
-
* Default value is `
|
|
22626
|
+
* Default value is `true`.
|
|
22402
22627
|
*/
|
|
22403
|
-
|
|
22628
|
+
setEnabled(
|
|
22404
22629
|
/**
|
|
22405
|
-
* New value for property `
|
|
22630
|
+
* New value for property `enabled`
|
|
22406
22631
|
*/
|
|
22407
|
-
|
|
22632
|
+
bEnabled?: boolean
|
|
22408
22633
|
): this;
|
|
22409
22634
|
/**
|
|
22410
22635
|
* Sets a new value for property {@link #getName name}.
|
|
@@ -22761,13 +22986,14 @@ declare namespace sap {
|
|
|
22761
22986
|
mParameters?: object
|
|
22762
22987
|
): this;
|
|
22763
22988
|
/**
|
|
22764
|
-
* Gets current value of property {@link #
|
|
22989
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
22765
22990
|
*
|
|
22766
|
-
* Defines whether the
|
|
22991
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
22992
|
+
* the tab chain.
|
|
22767
22993
|
*
|
|
22768
|
-
* Default value is `
|
|
22994
|
+
* Default value is `true`.
|
|
22769
22995
|
*/
|
|
22770
|
-
|
|
22996
|
+
getEnabled(): boolean;
|
|
22771
22997
|
/**
|
|
22772
22998
|
* Gets current value of property {@link #getEndValue endValue}.
|
|
22773
22999
|
*
|
|
@@ -22853,19 +23079,20 @@ declare namespace sap {
|
|
|
22853
23079
|
*/
|
|
22854
23080
|
getWidth(): sap.ui.core.CSSSize;
|
|
22855
23081
|
/**
|
|
22856
|
-
* Sets a new value for property {@link #
|
|
23082
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
22857
23083
|
*
|
|
22858
|
-
* Defines whether the
|
|
23084
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
23085
|
+
* the tab chain.
|
|
22859
23086
|
*
|
|
22860
23087
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
22861
23088
|
*
|
|
22862
|
-
* Default value is `
|
|
23089
|
+
* Default value is `true`.
|
|
22863
23090
|
*/
|
|
22864
|
-
|
|
23091
|
+
setEnabled(
|
|
22865
23092
|
/**
|
|
22866
|
-
* New value for property `
|
|
23093
|
+
* New value for property `enabled`
|
|
22867
23094
|
*/
|
|
22868
|
-
|
|
23095
|
+
bEnabled?: boolean
|
|
22869
23096
|
): this;
|
|
22870
23097
|
/**
|
|
22871
23098
|
* Sets a new value for property {@link #getEndValue endValue}.
|
|
@@ -23044,7 +23271,10 @@ declare namespace sap {
|
|
|
23044
23271
|
* - Any number - Changes value to the corresponding number. If typed number is larger than the number
|
|
23045
23272
|
* of values, sets the highest value.
|
|
23046
23273
|
*/
|
|
23047
|
-
class RatingIndicator
|
|
23274
|
+
class RatingIndicator
|
|
23275
|
+
extends sap.ui.webc.common.WebComponent
|
|
23276
|
+
implements sap.ui.core.IFormContent {
|
|
23277
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
23048
23278
|
/**
|
|
23049
23279
|
* Constructor for a new `RatingIndicator`.
|
|
23050
23280
|
*
|
|
@@ -23169,21 +23399,18 @@ declare namespace sap {
|
|
|
23169
23399
|
/**
|
|
23170
23400
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
23171
23401
|
*
|
|
23172
|
-
*
|
|
23402
|
+
* Defines the accessible aria name of the component.
|
|
23173
23403
|
*/
|
|
23174
23404
|
getAccessibleName(): string;
|
|
23175
23405
|
/**
|
|
23176
|
-
* Gets current value of property {@link #
|
|
23177
|
-
*
|
|
23178
|
-
* Defines whether the component is disabled.
|
|
23179
|
-
*
|
|
23180
|
-
*
|
|
23406
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
23181
23407
|
*
|
|
23182
|
-
*
|
|
23408
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
23409
|
+
* the tab chain.
|
|
23183
23410
|
*
|
|
23184
|
-
* Default value is `
|
|
23411
|
+
* Default value is `true`.
|
|
23185
23412
|
*/
|
|
23186
|
-
|
|
23413
|
+
getEnabled(): boolean;
|
|
23187
23414
|
/**
|
|
23188
23415
|
* Gets current value of property {@link #getMax max}.
|
|
23189
23416
|
*
|
|
@@ -23215,10 +23442,16 @@ declare namespace sap {
|
|
|
23215
23442
|
* Default value is `0`.
|
|
23216
23443
|
*/
|
|
23217
23444
|
getValue(): float;
|
|
23445
|
+
/**
|
|
23446
|
+
* Gets current value of property {@link #getWidth width}.
|
|
23447
|
+
*
|
|
23448
|
+
* Defines the width of the control
|
|
23449
|
+
*/
|
|
23450
|
+
getWidth(): sap.ui.core.CSSSize;
|
|
23218
23451
|
/**
|
|
23219
23452
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
23220
23453
|
*
|
|
23221
|
-
*
|
|
23454
|
+
* Defines the accessible aria name of the component.
|
|
23222
23455
|
*
|
|
23223
23456
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23224
23457
|
*/
|
|
@@ -23229,23 +23462,20 @@ declare namespace sap {
|
|
|
23229
23462
|
sAccessibleName: string
|
|
23230
23463
|
): this;
|
|
23231
23464
|
/**
|
|
23232
|
-
* Sets a new value for property {@link #
|
|
23465
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
23233
23466
|
*
|
|
23234
|
-
* Defines whether the
|
|
23235
|
-
*
|
|
23236
|
-
*
|
|
23237
|
-
*
|
|
23238
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
23467
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
23468
|
+
* the tab chain.
|
|
23239
23469
|
*
|
|
23240
23470
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23241
23471
|
*
|
|
23242
|
-
* Default value is `
|
|
23472
|
+
* Default value is `true`.
|
|
23243
23473
|
*/
|
|
23244
|
-
|
|
23474
|
+
setEnabled(
|
|
23245
23475
|
/**
|
|
23246
|
-
* New value for property `
|
|
23476
|
+
* New value for property `enabled`
|
|
23247
23477
|
*/
|
|
23248
|
-
|
|
23478
|
+
bEnabled?: boolean
|
|
23249
23479
|
): this;
|
|
23250
23480
|
/**
|
|
23251
23481
|
* Sets a new value for property {@link #getMax max}.
|
|
@@ -23299,6 +23529,19 @@ declare namespace sap {
|
|
|
23299
23529
|
*/
|
|
23300
23530
|
fValue?: float
|
|
23301
23531
|
): this;
|
|
23532
|
+
/**
|
|
23533
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
23534
|
+
*
|
|
23535
|
+
* Defines the width of the control
|
|
23536
|
+
*
|
|
23537
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
23538
|
+
*/
|
|
23539
|
+
setWidth(
|
|
23540
|
+
/**
|
|
23541
|
+
* New value for property `width`
|
|
23542
|
+
*/
|
|
23543
|
+
sWidth?: sap.ui.core.CSSSize
|
|
23544
|
+
): this;
|
|
23302
23545
|
}
|
|
23303
23546
|
/**
|
|
23304
23547
|
* @SINCE 1.92.0
|
|
@@ -23308,6 +23551,15 @@ declare namespace sap {
|
|
|
23308
23551
|
* phone it acts as a Dialog. The component improves tremendously the user experience on mobile.
|
|
23309
23552
|
*
|
|
23310
23553
|
* Usage: Use it when you want to make sure that all the content is visible on any device.
|
|
23554
|
+
*
|
|
23555
|
+
* CSS Shadow Parts:
|
|
23556
|
+
*
|
|
23557
|
+
* CSS Shadow Parts
|
|
23558
|
+
* allow developers to style elements inside the Shadow DOM.
|
|
23559
|
+
* The `sap.ui.webc.main.ResponsivePopover` exposes the following CSS Shadow Parts:
|
|
23560
|
+
* - header - Used to style the header of the component
|
|
23561
|
+
* - content - Used to style the content of the component
|
|
23562
|
+
* - footer - Used to style the footer of the component
|
|
23311
23563
|
*/
|
|
23312
23564
|
class ResponsivePopover extends sap.ui.webc.common.WebComponent {
|
|
23313
23565
|
/**
|
|
@@ -23785,13 +24037,10 @@ declare namespace sap {
|
|
|
23785
24037
|
*/
|
|
23786
24038
|
getHorizontalAlign(): sap.ui.webc.main.PopoverHorizontalAlign;
|
|
23787
24039
|
/**
|
|
23788
|
-
*
|
|
23789
|
-
*
|
|
23790
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
23791
|
-
*
|
|
23792
|
-
* Default value is `empty string`.
|
|
24040
|
+
* ID of the element which is the current target of the association {@link #getInitialFocus initialFocus},
|
|
24041
|
+
* or `null`.
|
|
23793
24042
|
*/
|
|
23794
|
-
getInitialFocus():
|
|
24043
|
+
getInitialFocus(): sap.ui.core.ID;
|
|
23795
24044
|
/**
|
|
23796
24045
|
* Gets current value of property {@link #getModal modal}.
|
|
23797
24046
|
*
|
|
@@ -23801,6 +24050,18 @@ declare namespace sap {
|
|
|
23801
24050
|
* Default value is `false`.
|
|
23802
24051
|
*/
|
|
23803
24052
|
getModal(): boolean;
|
|
24053
|
+
/**
|
|
24054
|
+
* Gets current value of property {@link #getOpen open}.
|
|
24055
|
+
*
|
|
24056
|
+
* Indicates if the element is open
|
|
24057
|
+
*
|
|
24058
|
+
* Default value is `false`.
|
|
24059
|
+
*/
|
|
24060
|
+
getOpen(): boolean;
|
|
24061
|
+
/**
|
|
24062
|
+
* ID of the element which is the current target of the association {@link #getOpener opener}, or `null`.
|
|
24063
|
+
*/
|
|
24064
|
+
getOpener(): sap.ui.core.ID;
|
|
23804
24065
|
/**
|
|
23805
24066
|
* Gets current value of property {@link #getPlacementType placementType}.
|
|
23806
24067
|
*
|
|
@@ -24073,19 +24334,14 @@ declare namespace sap {
|
|
|
24073
24334
|
sHorizontalAlign?: sap.ui.webc.main.PopoverHorizontalAlign
|
|
24074
24335
|
): this;
|
|
24075
24336
|
/**
|
|
24076
|
-
* Sets
|
|
24077
|
-
*
|
|
24078
|
-
* Defines the ID of the HTML Element, which will get the initial focus.
|
|
24079
|
-
*
|
|
24080
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24081
|
-
*
|
|
24082
|
-
* Default value is `empty string`.
|
|
24337
|
+
* Sets the associated {@link #getInitialFocus initialFocus}.
|
|
24083
24338
|
*/
|
|
24084
24339
|
setInitialFocus(
|
|
24085
24340
|
/**
|
|
24086
|
-
*
|
|
24341
|
+
* ID of an element which becomes the new target of this initialFocus association; alternatively, an element
|
|
24342
|
+
* instance may be given
|
|
24087
24343
|
*/
|
|
24088
|
-
|
|
24344
|
+
oInitialFocus: sap.ui.core.ID | sap.ui.core.Control
|
|
24089
24345
|
): this;
|
|
24090
24346
|
/**
|
|
24091
24347
|
* Sets a new value for property {@link #getModal modal}.
|
|
@@ -24103,6 +24359,31 @@ declare namespace sap {
|
|
|
24103
24359
|
*/
|
|
24104
24360
|
bModal?: boolean
|
|
24105
24361
|
): this;
|
|
24362
|
+
/**
|
|
24363
|
+
* Sets a new value for property {@link #getOpen open}.
|
|
24364
|
+
*
|
|
24365
|
+
* Indicates if the element is open
|
|
24366
|
+
*
|
|
24367
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24368
|
+
*
|
|
24369
|
+
* Default value is `false`.
|
|
24370
|
+
*/
|
|
24371
|
+
setOpen(
|
|
24372
|
+
/**
|
|
24373
|
+
* New value for property `open`
|
|
24374
|
+
*/
|
|
24375
|
+
bOpen?: boolean
|
|
24376
|
+
): this;
|
|
24377
|
+
/**
|
|
24378
|
+
* Sets the associated {@link #getOpener opener}.
|
|
24379
|
+
*/
|
|
24380
|
+
setOpener(
|
|
24381
|
+
/**
|
|
24382
|
+
* ID of an element which becomes the new target of this opener association; alternatively, an element instance
|
|
24383
|
+
* may be given
|
|
24384
|
+
*/
|
|
24385
|
+
oOpener: sap.ui.core.ID | sap.ui.core.Control
|
|
24386
|
+
): this;
|
|
24106
24387
|
/**
|
|
24107
24388
|
* Sets a new value for property {@link #getPlacementType placementType}.
|
|
24108
24389
|
*
|
|
@@ -24335,7 +24616,7 @@ declare namespace sap {
|
|
|
24335
24616
|
/**
|
|
24336
24617
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
24337
24618
|
*
|
|
24338
|
-
*
|
|
24619
|
+
* Defines the accessible aria name of the component.
|
|
24339
24620
|
*/
|
|
24340
24621
|
getAccessibleName(): string;
|
|
24341
24622
|
/**
|
|
@@ -24357,6 +24638,12 @@ declare namespace sap {
|
|
|
24357
24638
|
* Returns the currently selected item.
|
|
24358
24639
|
*/
|
|
24359
24640
|
getSelectedItem(): void;
|
|
24641
|
+
/**
|
|
24642
|
+
* Gets current value of property {@link #getWidth width}.
|
|
24643
|
+
*
|
|
24644
|
+
* Defines the width of the control
|
|
24645
|
+
*/
|
|
24646
|
+
getWidth(): sap.ui.core.CSSSize;
|
|
24360
24647
|
/**
|
|
24361
24648
|
* Checks for the provided `sap.ui.webc.main.ISegmentedButtonItem` in the aggregation {@link #getItems items}.
|
|
24362
24649
|
* and returns its index if found or -1 otherwise.
|
|
@@ -24400,7 +24687,7 @@ declare namespace sap {
|
|
|
24400
24687
|
/**
|
|
24401
24688
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
24402
24689
|
*
|
|
24403
|
-
*
|
|
24690
|
+
* Defines the accessible aria name of the component.
|
|
24404
24691
|
*
|
|
24405
24692
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24406
24693
|
*/
|
|
@@ -24410,6 +24697,19 @@ declare namespace sap {
|
|
|
24410
24697
|
*/
|
|
24411
24698
|
sAccessibleName: string
|
|
24412
24699
|
): this;
|
|
24700
|
+
/**
|
|
24701
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
24702
|
+
*
|
|
24703
|
+
* Defines the width of the control
|
|
24704
|
+
*
|
|
24705
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24706
|
+
*/
|
|
24707
|
+
setWidth(
|
|
24708
|
+
/**
|
|
24709
|
+
* New value for property `width`
|
|
24710
|
+
*/
|
|
24711
|
+
sWidth?: sap.ui.core.CSSSize
|
|
24712
|
+
): this;
|
|
24413
24713
|
}
|
|
24414
24714
|
/**
|
|
24415
24715
|
* @SINCE 1.95.0
|
|
@@ -24593,7 +24893,7 @@ declare namespace sap {
|
|
|
24593
24893
|
/**
|
|
24594
24894
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
24595
24895
|
*
|
|
24596
|
-
*
|
|
24896
|
+
* Defines the accessible aria name of the component.
|
|
24597
24897
|
*/
|
|
24598
24898
|
getAccessibleName(): string;
|
|
24599
24899
|
/**
|
|
@@ -24610,14 +24910,14 @@ declare namespace sap {
|
|
|
24610
24910
|
*/
|
|
24611
24911
|
getDesign(): sap.ui.webc.main.ButtonDesign;
|
|
24612
24912
|
/**
|
|
24613
|
-
* Gets current value of property {@link #
|
|
24913
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
24614
24914
|
*
|
|
24615
|
-
* Defines whether the
|
|
24616
|
-
*
|
|
24915
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
24916
|
+
* the tab chain.
|
|
24617
24917
|
*
|
|
24618
|
-
* Default value is `
|
|
24918
|
+
* Default value is `true`.
|
|
24619
24919
|
*/
|
|
24620
|
-
|
|
24920
|
+
getEnabled(): boolean;
|
|
24621
24921
|
/**
|
|
24622
24922
|
* Gets current value of property {@link #getIcon icon}.
|
|
24623
24923
|
*
|
|
@@ -24712,7 +25012,7 @@ declare namespace sap {
|
|
|
24712
25012
|
/**
|
|
24713
25013
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
24714
25014
|
*
|
|
24715
|
-
*
|
|
25015
|
+
* Defines the accessible aria name of the component.
|
|
24716
25016
|
*
|
|
24717
25017
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24718
25018
|
*/
|
|
@@ -24738,20 +25038,20 @@ declare namespace sap {
|
|
|
24738
25038
|
sDesign?: sap.ui.webc.main.ButtonDesign
|
|
24739
25039
|
): this;
|
|
24740
25040
|
/**
|
|
24741
|
-
* Sets a new value for property {@link #
|
|
25041
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
24742
25042
|
*
|
|
24743
|
-
* Defines whether the
|
|
24744
|
-
*
|
|
25043
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
25044
|
+
* the tab chain.
|
|
24745
25045
|
*
|
|
24746
25046
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
24747
25047
|
*
|
|
24748
|
-
* Default value is `
|
|
25048
|
+
* Default value is `true`.
|
|
24749
25049
|
*/
|
|
24750
|
-
|
|
25050
|
+
setEnabled(
|
|
24751
25051
|
/**
|
|
24752
|
-
* New value for property `
|
|
25052
|
+
* New value for property `enabled`
|
|
24753
25053
|
*/
|
|
24754
|
-
|
|
25054
|
+
bEnabled?: boolean
|
|
24755
25055
|
): this;
|
|
24756
25056
|
/**
|
|
24757
25057
|
* Sets a new value for property {@link #getIcon icon}.
|
|
@@ -24853,7 +25153,10 @@ declare namespace sap {
|
|
|
24853
25153
|
* - [HOME] - Navigates to first option
|
|
24854
25154
|
* - [END] - Navigates to the last option
|
|
24855
25155
|
*/
|
|
24856
|
-
class Select
|
|
25156
|
+
class Select
|
|
25157
|
+
extends sap.ui.webc.common.WebComponent
|
|
25158
|
+
implements sap.ui.core.IFormContent {
|
|
25159
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
24857
25160
|
/**
|
|
24858
25161
|
* Constructor for a new `Select`.
|
|
24859
25162
|
*
|
|
@@ -25005,7 +25308,7 @@ declare namespace sap {
|
|
|
25005
25308
|
/**
|
|
25006
25309
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
25007
25310
|
*
|
|
25008
|
-
*
|
|
25311
|
+
* Defines the accessible aria name of the component.
|
|
25009
25312
|
*/
|
|
25010
25313
|
getAccessibleName(): string;
|
|
25011
25314
|
/**
|
|
@@ -25014,15 +25317,14 @@ declare namespace sap {
|
|
|
25014
25317
|
*/
|
|
25015
25318
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
25016
25319
|
/**
|
|
25017
|
-
* Gets current value of property {@link #
|
|
25320
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
25018
25321
|
*
|
|
25019
|
-
* Defines whether the
|
|
25322
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
25323
|
+
* the tab chain.
|
|
25020
25324
|
*
|
|
25021
|
-
*
|
|
25022
|
-
*
|
|
25023
|
-
* Default value is `false`.
|
|
25325
|
+
* Default value is `true`.
|
|
25024
25326
|
*/
|
|
25025
|
-
|
|
25327
|
+
getEnabled(): boolean;
|
|
25026
25328
|
/**
|
|
25027
25329
|
* Gets current value of property {@link #getName name}.
|
|
25028
25330
|
*
|
|
@@ -25154,7 +25456,7 @@ declare namespace sap {
|
|
|
25154
25456
|
/**
|
|
25155
25457
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
25156
25458
|
*
|
|
25157
|
-
*
|
|
25459
|
+
* Defines the accessible aria name of the component.
|
|
25158
25460
|
*
|
|
25159
25461
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25160
25462
|
*/
|
|
@@ -25165,21 +25467,20 @@ declare namespace sap {
|
|
|
25165
25467
|
sAccessibleName: string
|
|
25166
25468
|
): this;
|
|
25167
25469
|
/**
|
|
25168
|
-
* Sets a new value for property {@link #
|
|
25169
|
-
*
|
|
25170
|
-
* Defines whether the component is in disabled state.
|
|
25470
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
25171
25471
|
*
|
|
25172
|
-
*
|
|
25472
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
25473
|
+
* the tab chain.
|
|
25173
25474
|
*
|
|
25174
25475
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25175
25476
|
*
|
|
25176
|
-
* Default value is `
|
|
25477
|
+
* Default value is `true`.
|
|
25177
25478
|
*/
|
|
25178
|
-
|
|
25479
|
+
setEnabled(
|
|
25179
25480
|
/**
|
|
25180
|
-
* New value for property `
|
|
25481
|
+
* New value for property `enabled`
|
|
25181
25482
|
*/
|
|
25182
|
-
|
|
25483
|
+
bEnabled?: boolean
|
|
25183
25484
|
): this;
|
|
25184
25485
|
/**
|
|
25185
25486
|
* Sets a new value for property {@link #getName name}.
|
|
@@ -25328,7 +25629,10 @@ declare namespace sap {
|
|
|
25328
25629
|
* - `Page Down` - Same as `Left or Down + Ctrl/Cmd`;
|
|
25329
25630
|
* - `Escape` - Resets the value property after interaction, to the position prior the component's focusing;
|
|
25330
25631
|
*/
|
|
25331
|
-
class Slider
|
|
25632
|
+
class Slider
|
|
25633
|
+
extends sap.ui.webc.common.WebComponent
|
|
25634
|
+
implements sap.ui.core.IFormContent {
|
|
25635
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
25332
25636
|
/**
|
|
25333
25637
|
* Constructor for a new `Slider`.
|
|
25334
25638
|
*
|
|
@@ -25516,13 +25820,14 @@ declare namespace sap {
|
|
|
25516
25820
|
mParameters?: object
|
|
25517
25821
|
): this;
|
|
25518
25822
|
/**
|
|
25519
|
-
* Gets current value of property {@link #
|
|
25823
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
25520
25824
|
*
|
|
25521
|
-
* Defines whether the
|
|
25825
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
25826
|
+
* the tab chain.
|
|
25522
25827
|
*
|
|
25523
|
-
* Default value is `
|
|
25828
|
+
* Default value is `true`.
|
|
25524
25829
|
*/
|
|
25525
|
-
|
|
25830
|
+
getEnabled(): boolean;
|
|
25526
25831
|
/**
|
|
25527
25832
|
* Gets current value of property {@link #getLabelInterval labelInterval}.
|
|
25528
25833
|
*
|
|
@@ -25596,19 +25901,20 @@ declare namespace sap {
|
|
|
25596
25901
|
*/
|
|
25597
25902
|
getWidth(): sap.ui.core.CSSSize;
|
|
25598
25903
|
/**
|
|
25599
|
-
* Sets a new value for property {@link #
|
|
25904
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
25600
25905
|
*
|
|
25601
|
-
* Defines whether the
|
|
25906
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
25907
|
+
* the tab chain.
|
|
25602
25908
|
*
|
|
25603
25909
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
25604
25910
|
*
|
|
25605
|
-
* Default value is `
|
|
25911
|
+
* Default value is `true`.
|
|
25606
25912
|
*/
|
|
25607
|
-
|
|
25913
|
+
setEnabled(
|
|
25608
25914
|
/**
|
|
25609
|
-
* New value for property `
|
|
25915
|
+
* New value for property `enabled`
|
|
25610
25916
|
*/
|
|
25611
|
-
|
|
25917
|
+
bEnabled?: boolean
|
|
25612
25918
|
): this;
|
|
25613
25919
|
/**
|
|
25614
25920
|
* Sets a new value for property {@link #getLabelInterval labelInterval}.
|
|
@@ -25962,7 +26268,7 @@ declare namespace sap {
|
|
|
25962
26268
|
/**
|
|
25963
26269
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
25964
26270
|
*
|
|
25965
|
-
*
|
|
26271
|
+
* Defines the accessible aria name of the component.
|
|
25966
26272
|
*/
|
|
25967
26273
|
getAccessibleName(): string;
|
|
25968
26274
|
/**
|
|
@@ -25994,14 +26300,14 @@ declare namespace sap {
|
|
|
25994
26300
|
*/
|
|
25995
26301
|
getDesign(): sap.ui.webc.main.ButtonDesign;
|
|
25996
26302
|
/**
|
|
25997
|
-
* Gets current value of property {@link #
|
|
26303
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
25998
26304
|
*
|
|
25999
|
-
* Defines whether the
|
|
26000
|
-
*
|
|
26305
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
26306
|
+
* the tab chain.
|
|
26001
26307
|
*
|
|
26002
|
-
* Default value is `
|
|
26308
|
+
* Default value is `true`.
|
|
26003
26309
|
*/
|
|
26004
|
-
|
|
26310
|
+
getEnabled(): boolean;
|
|
26005
26311
|
/**
|
|
26006
26312
|
* Gets current value of property {@link #getIcon icon}.
|
|
26007
26313
|
*
|
|
@@ -26026,7 +26332,7 @@ declare namespace sap {
|
|
|
26026
26332
|
/**
|
|
26027
26333
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
26028
26334
|
*
|
|
26029
|
-
*
|
|
26335
|
+
* Defines the accessible aria name of the component.
|
|
26030
26336
|
*
|
|
26031
26337
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26032
26338
|
*/
|
|
@@ -26079,20 +26385,20 @@ declare namespace sap {
|
|
|
26079
26385
|
sDesign?: sap.ui.webc.main.ButtonDesign
|
|
26080
26386
|
): this;
|
|
26081
26387
|
/**
|
|
26082
|
-
* Sets a new value for property {@link #
|
|
26388
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
26083
26389
|
*
|
|
26084
|
-
* Defines whether the
|
|
26085
|
-
*
|
|
26390
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
26391
|
+
* the tab chain.
|
|
26086
26392
|
*
|
|
26087
26393
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26088
26394
|
*
|
|
26089
|
-
* Default value is `
|
|
26395
|
+
* Default value is `true`.
|
|
26090
26396
|
*/
|
|
26091
|
-
|
|
26397
|
+
setEnabled(
|
|
26092
26398
|
/**
|
|
26093
|
-
* New value for property `
|
|
26399
|
+
* New value for property `enabled`
|
|
26094
26400
|
*/
|
|
26095
|
-
|
|
26401
|
+
bEnabled?: boolean
|
|
26096
26402
|
): this;
|
|
26097
26403
|
/**
|
|
26098
26404
|
* Sets a new value for property {@link #getIcon icon}.
|
|
@@ -26546,7 +26852,10 @@ declare namespace sap {
|
|
|
26546
26852
|
* this case, use the regular `sap.ui.webc.main.Input` instead.
|
|
26547
26853
|
* - To enter dates and times. In this case, use date/time related components instead.
|
|
26548
26854
|
*/
|
|
26549
|
-
class StepInput
|
|
26855
|
+
class StepInput
|
|
26856
|
+
extends sap.ui.webc.common.WebComponent
|
|
26857
|
+
implements sap.ui.core.IFormContent {
|
|
26858
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
26550
26859
|
/**
|
|
26551
26860
|
* Constructor for a new `StepInput`.
|
|
26552
26861
|
*
|
|
@@ -26680,7 +26989,7 @@ declare namespace sap {
|
|
|
26680
26989
|
/**
|
|
26681
26990
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
26682
26991
|
*
|
|
26683
|
-
*
|
|
26992
|
+
* Defines the accessible aria name of the component.
|
|
26684
26993
|
*/
|
|
26685
26994
|
getAccessibleName(): string;
|
|
26686
26995
|
/**
|
|
@@ -26689,13 +26998,14 @@ declare namespace sap {
|
|
|
26689
26998
|
*/
|
|
26690
26999
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
26691
27000
|
/**
|
|
26692
|
-
* Gets current value of property {@link #
|
|
27001
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
26693
27002
|
*
|
|
26694
|
-
*
|
|
27003
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
27004
|
+
* the tab chain.
|
|
26695
27005
|
*
|
|
26696
|
-
* Default value is `
|
|
27006
|
+
* Default value is `true`.
|
|
26697
27007
|
*/
|
|
26698
|
-
|
|
27008
|
+
getEnabled(): boolean;
|
|
26699
27009
|
/**
|
|
26700
27010
|
* Gets current value of property {@link #getMax max}.
|
|
26701
27011
|
*
|
|
@@ -26824,7 +27134,7 @@ declare namespace sap {
|
|
|
26824
27134
|
/**
|
|
26825
27135
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
26826
27136
|
*
|
|
26827
|
-
*
|
|
27137
|
+
* Defines the accessible aria name of the component.
|
|
26828
27138
|
*
|
|
26829
27139
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26830
27140
|
*/
|
|
@@ -26835,19 +27145,20 @@ declare namespace sap {
|
|
|
26835
27145
|
sAccessibleName: string
|
|
26836
27146
|
): this;
|
|
26837
27147
|
/**
|
|
26838
|
-
* Sets a new value for property {@link #
|
|
27148
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
26839
27149
|
*
|
|
26840
|
-
*
|
|
27150
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
27151
|
+
* the tab chain.
|
|
26841
27152
|
*
|
|
26842
27153
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
26843
27154
|
*
|
|
26844
|
-
* Default value is `
|
|
27155
|
+
* Default value is `true`.
|
|
26845
27156
|
*/
|
|
26846
|
-
|
|
27157
|
+
setEnabled(
|
|
26847
27158
|
/**
|
|
26848
|
-
* New value for property `
|
|
27159
|
+
* New value for property `enabled`
|
|
26849
27160
|
*/
|
|
26850
|
-
|
|
27161
|
+
bEnabled?: boolean
|
|
26851
27162
|
): this;
|
|
26852
27163
|
/**
|
|
26853
27164
|
* Sets a new value for property {@link #getMax max}.
|
|
@@ -27421,7 +27732,10 @@ declare namespace sap {
|
|
|
27421
27732
|
* - text-off - Used to style the `textOff` property text
|
|
27422
27733
|
* - handle - Used to style the handle of the switch
|
|
27423
27734
|
*/
|
|
27424
|
-
class Switch
|
|
27735
|
+
class Switch
|
|
27736
|
+
extends sap.ui.webc.common.WebComponent
|
|
27737
|
+
implements sap.ui.core.IFormContent {
|
|
27738
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
27425
27739
|
/**
|
|
27426
27740
|
* Constructor for a new `Switch`.
|
|
27427
27741
|
*
|
|
@@ -27552,6 +27866,12 @@ declare namespace sap {
|
|
|
27552
27866
|
*/
|
|
27553
27867
|
mParameters?: object
|
|
27554
27868
|
): this;
|
|
27869
|
+
/**
|
|
27870
|
+
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
27871
|
+
*
|
|
27872
|
+
* Sets the accessible aria name of the component.
|
|
27873
|
+
*/
|
|
27874
|
+
getAccessibleName(): string;
|
|
27555
27875
|
/**
|
|
27556
27876
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
27557
27877
|
* ariaLabelledBy}.
|
|
@@ -27579,15 +27899,14 @@ declare namespace sap {
|
|
|
27579
27899
|
*/
|
|
27580
27900
|
getDesign(): sap.ui.webc.main.SwitchDesign;
|
|
27581
27901
|
/**
|
|
27582
|
-
* Gets current value of property {@link #
|
|
27902
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
27583
27903
|
*
|
|
27584
|
-
* Defines whether the
|
|
27904
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
27905
|
+
* the tab chain.
|
|
27585
27906
|
*
|
|
27586
|
-
*
|
|
27587
|
-
*
|
|
27588
|
-
* Default value is `false`.
|
|
27907
|
+
* Default value is `true`.
|
|
27589
27908
|
*/
|
|
27590
|
-
|
|
27909
|
+
getEnabled(): boolean;
|
|
27591
27910
|
/**
|
|
27592
27911
|
* Gets current value of property {@link #getTextOff textOff}.
|
|
27593
27912
|
*
|
|
@@ -27612,6 +27931,12 @@ declare namespace sap {
|
|
|
27612
27931
|
* Default value is `empty string`.
|
|
27613
27932
|
*/
|
|
27614
27933
|
getTextOn(): string;
|
|
27934
|
+
/**
|
|
27935
|
+
* Gets current value of property {@link #getWidth width}.
|
|
27936
|
+
*
|
|
27937
|
+
* Defines the width of the control
|
|
27938
|
+
*/
|
|
27939
|
+
getWidth(): sap.ui.core.CSSSize;
|
|
27615
27940
|
/**
|
|
27616
27941
|
* Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
|
|
27617
27942
|
*/
|
|
@@ -27625,6 +27950,19 @@ declare namespace sap {
|
|
|
27625
27950
|
*/
|
|
27626
27951
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
27627
27952
|
): sap.ui.core.ID;
|
|
27953
|
+
/**
|
|
27954
|
+
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
27955
|
+
*
|
|
27956
|
+
* Sets the accessible aria name of the component.
|
|
27957
|
+
*
|
|
27958
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27959
|
+
*/
|
|
27960
|
+
setAccessibleName(
|
|
27961
|
+
/**
|
|
27962
|
+
* New value for property `accessibleName`
|
|
27963
|
+
*/
|
|
27964
|
+
sAccessibleName: string
|
|
27965
|
+
): this;
|
|
27628
27966
|
/**
|
|
27629
27967
|
* Sets a new value for property {@link #getChecked checked}.
|
|
27630
27968
|
*
|
|
@@ -27661,21 +27999,20 @@ declare namespace sap {
|
|
|
27661
27999
|
sDesign?: sap.ui.webc.main.SwitchDesign
|
|
27662
28000
|
): this;
|
|
27663
28001
|
/**
|
|
27664
|
-
* Sets a new value for property {@link #
|
|
27665
|
-
*
|
|
27666
|
-
* Defines whether the component is disabled.
|
|
28002
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
27667
28003
|
*
|
|
27668
|
-
*
|
|
28004
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
28005
|
+
* the tab chain.
|
|
27669
28006
|
*
|
|
27670
28007
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27671
28008
|
*
|
|
27672
|
-
* Default value is `
|
|
28009
|
+
* Default value is `true`.
|
|
27673
28010
|
*/
|
|
27674
|
-
|
|
28011
|
+
setEnabled(
|
|
27675
28012
|
/**
|
|
27676
|
-
* New value for property `
|
|
28013
|
+
* New value for property `enabled`
|
|
27677
28014
|
*/
|
|
27678
|
-
|
|
28015
|
+
bEnabled?: boolean
|
|
27679
28016
|
): this;
|
|
27680
28017
|
/**
|
|
27681
28018
|
* Sets a new value for property {@link #getTextOff textOff}.
|
|
@@ -27715,6 +28052,19 @@ declare namespace sap {
|
|
|
27715
28052
|
*/
|
|
27716
28053
|
sTextOn?: string
|
|
27717
28054
|
): this;
|
|
28055
|
+
/**
|
|
28056
|
+
* Sets a new value for property {@link #getWidth width}.
|
|
28057
|
+
*
|
|
28058
|
+
* Defines the width of the control
|
|
28059
|
+
*
|
|
28060
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
28061
|
+
*/
|
|
28062
|
+
setWidth(
|
|
28063
|
+
/**
|
|
28064
|
+
* New value for property `width`
|
|
28065
|
+
*/
|
|
28066
|
+
sWidth?: sap.ui.core.CSSSize
|
|
28067
|
+
): this;
|
|
27718
28068
|
}
|
|
27719
28069
|
/**
|
|
27720
28070
|
* @SINCE 1.92.0
|
|
@@ -27833,13 +28183,14 @@ declare namespace sap {
|
|
|
27833
28183
|
*/
|
|
27834
28184
|
getDesign(): sap.ui.webc.main.SemanticColor;
|
|
27835
28185
|
/**
|
|
27836
|
-
* Gets current value of property {@link #
|
|
28186
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
27837
28187
|
*
|
|
27838
|
-
*
|
|
28188
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
28189
|
+
* the tab chain.
|
|
27839
28190
|
*
|
|
27840
|
-
* Default value is `
|
|
28191
|
+
* Default value is `true`.
|
|
27841
28192
|
*/
|
|
27842
|
-
|
|
28193
|
+
getEnabled(): boolean;
|
|
27843
28194
|
/**
|
|
27844
28195
|
* Gets current value of property {@link #getIcon icon}.
|
|
27845
28196
|
*
|
|
@@ -27954,19 +28305,20 @@ declare namespace sap {
|
|
|
27954
28305
|
sDesign?: sap.ui.webc.main.SemanticColor
|
|
27955
28306
|
): this;
|
|
27956
28307
|
/**
|
|
27957
|
-
* Sets a new value for property {@link #
|
|
28308
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
27958
28309
|
*
|
|
27959
|
-
*
|
|
28310
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
28311
|
+
* the tab chain.
|
|
27960
28312
|
*
|
|
27961
28313
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
27962
28314
|
*
|
|
27963
|
-
* Default value is `
|
|
28315
|
+
* Default value is `true`.
|
|
27964
28316
|
*/
|
|
27965
|
-
|
|
28317
|
+
setEnabled(
|
|
27966
28318
|
/**
|
|
27967
|
-
* New value for property `
|
|
28319
|
+
* New value for property `enabled`
|
|
27968
28320
|
*/
|
|
27969
|
-
|
|
28321
|
+
bEnabled?: boolean
|
|
27970
28322
|
): this;
|
|
27971
28323
|
/**
|
|
27972
28324
|
* Sets a new value for property {@link #getIcon icon}.
|
|
@@ -28031,6 +28383,13 @@ declare namespace sap {
|
|
|
28031
28383
|
* - `sap.ui.webc.main.Tab` - contains all the information on an item (text and icon)
|
|
28032
28384
|
* - `sap.ui.webc.main.TabSeparator` - used to separate tabs with a vertical line
|
|
28033
28385
|
*
|
|
28386
|
+
* CSS Shadow Parts:
|
|
28387
|
+
*
|
|
28388
|
+
* CSS Shadow Parts
|
|
28389
|
+
* allow developers to style elements inside the Shadow DOM.
|
|
28390
|
+
* The `sap.ui.webc.main.TabContainer` exposes the following CSS Shadow Parts:
|
|
28391
|
+
* - content - Used to style the content of the component
|
|
28392
|
+
*
|
|
28034
28393
|
* Keyboard Handling:
|
|
28035
28394
|
*/
|
|
28036
28395
|
class TabContainer extends sap.ui.webc.common.WebComponent {
|
|
@@ -30064,7 +30423,10 @@ declare namespace sap {
|
|
|
30064
30423
|
* The `sap.ui.webc.main.TextArea` exposes the following CSS Shadow Parts:
|
|
30065
30424
|
* - textarea - Used to style the native textarea
|
|
30066
30425
|
*/
|
|
30067
|
-
class TextArea
|
|
30426
|
+
class TextArea
|
|
30427
|
+
extends sap.ui.webc.common.WebComponent
|
|
30428
|
+
implements sap.ui.core.IFormContent {
|
|
30429
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
30068
30430
|
/**
|
|
30069
30431
|
* Constructor for a new `TextArea`.
|
|
30070
30432
|
*
|
|
@@ -30263,7 +30625,7 @@ declare namespace sap {
|
|
|
30263
30625
|
/**
|
|
30264
30626
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
30265
30627
|
*
|
|
30266
|
-
*
|
|
30628
|
+
* Defines the accessible aria name of the component.
|
|
30267
30629
|
*/
|
|
30268
30630
|
getAccessibleName(): string;
|
|
30269
30631
|
/**
|
|
@@ -30272,15 +30634,14 @@ declare namespace sap {
|
|
|
30272
30634
|
*/
|
|
30273
30635
|
getAriaLabelledBy(): sap.ui.core.ID[];
|
|
30274
30636
|
/**
|
|
30275
|
-
* Gets current value of property {@link #
|
|
30276
|
-
*
|
|
30277
|
-
* Indicates whether the user can interact with the component or not.
|
|
30637
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
30278
30638
|
*
|
|
30279
|
-
*
|
|
30639
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
30640
|
+
* the tab chain.
|
|
30280
30641
|
*
|
|
30281
|
-
* Default value is `
|
|
30642
|
+
* Default value is `true`.
|
|
30282
30643
|
*/
|
|
30283
|
-
|
|
30644
|
+
getEnabled(): boolean;
|
|
30284
30645
|
/**
|
|
30285
30646
|
* Gets current value of property {@link #getGrowing growing}.
|
|
30286
30647
|
*
|
|
@@ -30436,7 +30797,7 @@ declare namespace sap {
|
|
|
30436
30797
|
/**
|
|
30437
30798
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
30438
30799
|
*
|
|
30439
|
-
*
|
|
30800
|
+
* Defines the accessible aria name of the component.
|
|
30440
30801
|
*
|
|
30441
30802
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30442
30803
|
*/
|
|
@@ -30447,21 +30808,20 @@ declare namespace sap {
|
|
|
30447
30808
|
sAccessibleName: string
|
|
30448
30809
|
): this;
|
|
30449
30810
|
/**
|
|
30450
|
-
* Sets a new value for property {@link #
|
|
30811
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
30451
30812
|
*
|
|
30452
|
-
*
|
|
30453
|
-
*
|
|
30454
|
-
* **Note:** A disabled component is completely noninteractive.
|
|
30813
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
30814
|
+
* the tab chain.
|
|
30455
30815
|
*
|
|
30456
30816
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30457
30817
|
*
|
|
30458
|
-
* Default value is `
|
|
30818
|
+
* Default value is `true`.
|
|
30459
30819
|
*/
|
|
30460
|
-
|
|
30820
|
+
setEnabled(
|
|
30461
30821
|
/**
|
|
30462
|
-
* New value for property `
|
|
30822
|
+
* New value for property `enabled`
|
|
30463
30823
|
*/
|
|
30464
|
-
|
|
30824
|
+
bEnabled?: boolean
|
|
30465
30825
|
): this;
|
|
30466
30826
|
/**
|
|
30467
30827
|
* Sets a new value for property {@link #getGrowing growing}.
|
|
@@ -30751,7 +31111,10 @@ declare namespace sap {
|
|
|
30751
31111
|
* - [PAGEUP] If focus is on one of the selection lists: Move focus to the first entry of this list.
|
|
30752
31112
|
* - [PAGEDOWN] If focus is on one of the selection lists: Move focus to the last entry of this list.
|
|
30753
31113
|
*/
|
|
30754
|
-
class TimePicker
|
|
31114
|
+
class TimePicker
|
|
31115
|
+
extends sap.ui.webc.common.WebComponent
|
|
31116
|
+
implements sap.ui.core.IFormContent {
|
|
31117
|
+
__implements__sap_ui_core_IFormContent: boolean;
|
|
30755
31118
|
/**
|
|
30756
31119
|
* Constructor for a new `TimePicker`.
|
|
30757
31120
|
*
|
|
@@ -30959,13 +31322,14 @@ declare namespace sap {
|
|
|
30959
31322
|
*/
|
|
30960
31323
|
getDateValue(): void;
|
|
30961
31324
|
/**
|
|
30962
|
-
* Gets current value of property {@link #
|
|
31325
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
30963
31326
|
*
|
|
30964
|
-
*
|
|
31327
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
31328
|
+
* the tab chain.
|
|
30965
31329
|
*
|
|
30966
|
-
* Default value is `
|
|
31330
|
+
* Default value is `true`.
|
|
30967
31331
|
*/
|
|
30968
|
-
|
|
31332
|
+
getEnabled(): boolean;
|
|
30969
31333
|
/**
|
|
30970
31334
|
* Gets current value of property {@link #getFormatPattern formatPattern}.
|
|
30971
31335
|
*
|
|
@@ -31061,19 +31425,20 @@ declare namespace sap {
|
|
|
31061
31425
|
*/
|
|
31062
31426
|
openPicker(): void;
|
|
31063
31427
|
/**
|
|
31064
|
-
* Sets a new value for property {@link #
|
|
31428
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
31065
31429
|
*
|
|
31066
|
-
*
|
|
31430
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
31431
|
+
* the tab chain.
|
|
31067
31432
|
*
|
|
31068
31433
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31069
31434
|
*
|
|
31070
|
-
* Default value is `
|
|
31435
|
+
* Default value is `true`.
|
|
31071
31436
|
*/
|
|
31072
|
-
|
|
31437
|
+
setEnabled(
|
|
31073
31438
|
/**
|
|
31074
|
-
* New value for property `
|
|
31439
|
+
* New value for property `enabled`
|
|
31075
31440
|
*/
|
|
31076
|
-
|
|
31441
|
+
bEnabled?: boolean
|
|
31077
31442
|
): this;
|
|
31078
31443
|
/**
|
|
31079
31444
|
* Sets a new value for property {@link #getFormatPattern formatPattern}.
|
|
@@ -31756,7 +32121,7 @@ declare namespace sap {
|
|
|
31756
32121
|
/**
|
|
31757
32122
|
* Gets current value of property {@link #getAccessibleName accessibleName}.
|
|
31758
32123
|
*
|
|
31759
|
-
*
|
|
32124
|
+
* Defines the accessible aria name of the component.
|
|
31760
32125
|
*/
|
|
31761
32126
|
getAccessibleName(): string;
|
|
31762
32127
|
/**
|
|
@@ -31785,14 +32150,14 @@ declare namespace sap {
|
|
|
31785
32150
|
*/
|
|
31786
32151
|
getDesign(): sap.ui.webc.main.ButtonDesign;
|
|
31787
32152
|
/**
|
|
31788
|
-
* Gets current value of property {@link #
|
|
32153
|
+
* Gets current value of property {@link #getEnabled enabled}.
|
|
31789
32154
|
*
|
|
31790
|
-
* Defines whether the
|
|
31791
|
-
*
|
|
32155
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
32156
|
+
* the tab chain.
|
|
31792
32157
|
*
|
|
31793
|
-
* Default value is `
|
|
32158
|
+
* Default value is `true`.
|
|
31794
32159
|
*/
|
|
31795
|
-
|
|
32160
|
+
getEnabled(): boolean;
|
|
31796
32161
|
/**
|
|
31797
32162
|
* Gets current value of property {@link #getIcon icon}.
|
|
31798
32163
|
*
|
|
@@ -31891,7 +32256,7 @@ declare namespace sap {
|
|
|
31891
32256
|
/**
|
|
31892
32257
|
* Sets a new value for property {@link #getAccessibleName accessibleName}.
|
|
31893
32258
|
*
|
|
31894
|
-
*
|
|
32259
|
+
* Defines the accessible aria name of the component.
|
|
31895
32260
|
*
|
|
31896
32261
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31897
32262
|
*/
|
|
@@ -31929,20 +32294,20 @@ declare namespace sap {
|
|
|
31929
32294
|
sDesign?: sap.ui.webc.main.ButtonDesign
|
|
31930
32295
|
): this;
|
|
31931
32296
|
/**
|
|
31932
|
-
* Sets a new value for property {@link #
|
|
32297
|
+
* Sets a new value for property {@link #getEnabled enabled}.
|
|
31933
32298
|
*
|
|
31934
|
-
* Defines whether the
|
|
31935
|
-
*
|
|
32299
|
+
* Defines whether the control is enabled. A disabled control can't be interacted with, and it is not in
|
|
32300
|
+
* the tab chain.
|
|
31936
32301
|
*
|
|
31937
32302
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
31938
32303
|
*
|
|
31939
|
-
* Default value is `
|
|
32304
|
+
* Default value is `true`.
|
|
31940
32305
|
*/
|
|
31941
|
-
|
|
32306
|
+
setEnabled(
|
|
31942
32307
|
/**
|
|
31943
|
-
* New value for property `
|
|
32308
|
+
* New value for property `enabled`
|
|
31944
32309
|
*/
|
|
31945
|
-
|
|
32310
|
+
bEnabled?: boolean
|
|
31946
32311
|
): this;
|
|
31947
32312
|
/**
|
|
31948
32313
|
* Sets a new value for property {@link #getIcon icon}.
|
|
@@ -32727,6 +33092,9 @@ declare namespace sap {
|
|
|
32727
33092
|
): this;
|
|
32728
33093
|
/**
|
|
32729
33094
|
* Fires event {@link #event:itemClick itemClick} to attached listeners.
|
|
33095
|
+
*
|
|
33096
|
+
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
33097
|
+
* event object. The return value of this method indicates whether the default action should be executed.
|
|
32730
33098
|
*/
|
|
32731
33099
|
fireItemClick(
|
|
32732
33100
|
/**
|
|
@@ -32738,7 +33106,7 @@ declare namespace sap {
|
|
|
32738
33106
|
*/
|
|
32739
33107
|
item?: HTMLElement;
|
|
32740
33108
|
}
|
|
32741
|
-
):
|
|
33109
|
+
): boolean;
|
|
32742
33110
|
/**
|
|
32743
33111
|
* Fires event {@link #event:itemDelete itemDelete} to attached listeners.
|
|
32744
33112
|
*/
|