@openui5/ts-types 1.102.2 → 1.104.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 +320 -24
- package/types/sap.m.d.ts +2388 -334
- package/types/sap.tnt.d.ts +5 -5
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +36 -36
- package/types/sap.ui.core.d.ts +384 -111
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +43 -64
- package/types/sap.ui.layout.d.ts +33 -41
- package/types/sap.ui.mdc.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +9 -9
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +115 -35
- package/types/sap.ui.ux3.d.ts +43 -43
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +30 -30
- package/types/sap.ui.webc.main.d.ts +49 -49
- package/types/sap.uxap.d.ts +13 -13
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.104.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -514,6 +514,20 @@ declare namespace sap {
|
|
|
514
514
|
*/
|
|
515
515
|
oListener?: object
|
|
516
516
|
): this;
|
|
517
|
+
/**
|
|
518
|
+
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
519
|
+
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
520
|
+
*/
|
|
521
|
+
enhanceAccessibilityState(
|
|
522
|
+
/**
|
|
523
|
+
* The Control that gets rendered by the RenderManager
|
|
524
|
+
*/
|
|
525
|
+
oElement: sap.ui.core.Control,
|
|
526
|
+
/**
|
|
527
|
+
* The mapping of "aria-" prefixed attributes
|
|
528
|
+
*/
|
|
529
|
+
mAriaProps: object
|
|
530
|
+
): void;
|
|
517
531
|
/**
|
|
518
532
|
* Fires event {@link #event:press press} to attached listeners.
|
|
519
533
|
*
|
|
@@ -969,6 +983,20 @@ declare namespace sap {
|
|
|
969
983
|
*/
|
|
970
984
|
oListener?: object
|
|
971
985
|
): this;
|
|
986
|
+
/**
|
|
987
|
+
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
988
|
+
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
989
|
+
*/
|
|
990
|
+
enhanceAccessibilityState(
|
|
991
|
+
/**
|
|
992
|
+
* The Control that gets rendered by the RenderManager
|
|
993
|
+
*/
|
|
994
|
+
oElement: sap.ui.core.Control,
|
|
995
|
+
/**
|
|
996
|
+
* The mapping of "aria-" prefixed attributes
|
|
997
|
+
*/
|
|
998
|
+
mAriaProps: object
|
|
999
|
+
): void;
|
|
972
1000
|
/**
|
|
973
1001
|
* Fires event {@link #event:press press} to attached listeners.
|
|
974
1002
|
*
|
|
@@ -1163,7 +1191,7 @@ declare namespace sap {
|
|
|
1163
1191
|
* The sideIndicator to remove or its index or id
|
|
1164
1192
|
*/
|
|
1165
1193
|
vSideIndicator: int | string | sap.f.cards.NumericSideIndicator
|
|
1166
|
-
): sap.f.cards.NumericSideIndicator;
|
|
1194
|
+
): sap.f.cards.NumericSideIndicator | null;
|
|
1167
1195
|
/**
|
|
1168
1196
|
* Sets a new value for property {@link #getDetails details}.
|
|
1169
1197
|
*
|
|
@@ -5802,7 +5830,7 @@ declare namespace sap {
|
|
|
5802
5830
|
* The customShareAction to remove or its index or id
|
|
5803
5831
|
*/
|
|
5804
5832
|
vCustomShareAction: int | string | sap.m.Button
|
|
5805
|
-
): sap.m.Button;
|
|
5833
|
+
): sap.m.Button | null;
|
|
5806
5834
|
/**
|
|
5807
5835
|
* Removes a footerCustomAction from the aggregation {@link #getFooterCustomActions footerCustomActions}.
|
|
5808
5836
|
*
|
|
@@ -5813,7 +5841,7 @@ declare namespace sap {
|
|
|
5813
5841
|
* The footerCustomAction to remove or its index or id
|
|
5814
5842
|
*/
|
|
5815
5843
|
vFooterCustomAction: int | string | sap.m.Button
|
|
5816
|
-
): sap.m.Button;
|
|
5844
|
+
): sap.m.Button | null;
|
|
5817
5845
|
/**
|
|
5818
5846
|
* Removes a headerContent from the aggregation {@link #getHeaderContent headerContent}.
|
|
5819
5847
|
*
|
|
@@ -5824,7 +5852,7 @@ declare namespace sap {
|
|
|
5824
5852
|
* The headerContent to remove or its index or id
|
|
5825
5853
|
*/
|
|
5826
5854
|
vHeaderContent: int | string | sap.ui.core.Control
|
|
5827
|
-
): sap.ui.core.Control;
|
|
5855
|
+
): sap.ui.core.Control | null;
|
|
5828
5856
|
/**
|
|
5829
5857
|
* @SINCE 1.52
|
|
5830
5858
|
*
|
|
@@ -5837,7 +5865,7 @@ declare namespace sap {
|
|
|
5837
5865
|
* The titleContent to remove or its index or id
|
|
5838
5866
|
*/
|
|
5839
5867
|
vTitleContent: int | string | sap.ui.core.Control
|
|
5840
|
-
): sap.ui.core.Control;
|
|
5868
|
+
): sap.ui.core.Control | null;
|
|
5841
5869
|
/**
|
|
5842
5870
|
* Removes a titleCustomIconAction from the aggregation {@link #getTitleCustomIconActions titleCustomIconActions}.
|
|
5843
5871
|
*
|
|
@@ -5848,7 +5876,7 @@ declare namespace sap {
|
|
|
5848
5876
|
* The titleCustomIconAction to remove or its index or id
|
|
5849
5877
|
*/
|
|
5850
5878
|
vTitleCustomIconAction: int | string | sap.m.OverflowToolbarButton
|
|
5851
|
-
): sap.m.OverflowToolbarButton;
|
|
5879
|
+
): sap.m.OverflowToolbarButton | null;
|
|
5852
5880
|
/**
|
|
5853
5881
|
* Removes a titleCustomTextAction from the aggregation {@link #getTitleCustomTextActions titleCustomTextActions}.
|
|
5854
5882
|
*
|
|
@@ -5859,7 +5887,7 @@ declare namespace sap {
|
|
|
5859
5887
|
* The titleCustomTextAction to remove or its index or id
|
|
5860
5888
|
*/
|
|
5861
5889
|
vTitleCustomTextAction: int | string | sap.m.Button
|
|
5862
|
-
): sap.m.Button;
|
|
5890
|
+
): sap.m.Button | null;
|
|
5863
5891
|
/**
|
|
5864
5892
|
* Removes a titleExpandedContent from the aggregation {@link #getTitleExpandedContent titleExpandedContent}.
|
|
5865
5893
|
*
|
|
@@ -5870,7 +5898,7 @@ declare namespace sap {
|
|
|
5870
5898
|
* The titleExpandedContent to remove or its index or id
|
|
5871
5899
|
*/
|
|
5872
5900
|
vTitleExpandedContent: int | string | sap.ui.core.Control
|
|
5873
|
-
): sap.ui.core.Control;
|
|
5901
|
+
): sap.ui.core.Control | null;
|
|
5874
5902
|
/**
|
|
5875
5903
|
* Removes a titleSnappedContent from the aggregation {@link #getTitleSnappedContent titleSnappedContent}.
|
|
5876
5904
|
*
|
|
@@ -5881,7 +5909,7 @@ declare namespace sap {
|
|
|
5881
5909
|
* The titleSnappedContent to remove or its index or id
|
|
5882
5910
|
*/
|
|
5883
5911
|
vTitleSnappedContent: int | string | sap.ui.core.Control
|
|
5884
|
-
): sap.ui.core.Control;
|
|
5912
|
+
): sap.ui.core.Control | null;
|
|
5885
5913
|
/**
|
|
5886
5914
|
* Sets the aggregated {@link #getAddAction addAction}.
|
|
5887
5915
|
*
|
|
@@ -6852,6 +6880,32 @@ declare namespace sap {
|
|
|
6852
6880
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6853
6881
|
| `{${string}}`;
|
|
6854
6882
|
|
|
6883
|
+
/**
|
|
6884
|
+
* @SINCE 1.103
|
|
6885
|
+
*
|
|
6886
|
+
* Specifies a custom display size for each avatar.
|
|
6887
|
+
*
|
|
6888
|
+
* **Notes:**
|
|
6889
|
+
* - Supports only `px` and code>rem values.
|
|
6890
|
+
* - It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
|
|
6891
|
+
*/
|
|
6892
|
+
avatarCustomDisplaySize?:
|
|
6893
|
+
| sap.ui.core.AbsoluteCSSSize
|
|
6894
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6895
|
+
| `{${string}}`;
|
|
6896
|
+
|
|
6897
|
+
/**
|
|
6898
|
+
* @SINCE 1.103
|
|
6899
|
+
*
|
|
6900
|
+
* Specifies a custom font size for each avatar.
|
|
6901
|
+
*
|
|
6902
|
+
* **Note:** It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
|
|
6903
|
+
*/
|
|
6904
|
+
avatarCustomFontSize?:
|
|
6905
|
+
| sap.ui.core.AbsoluteCSSSize
|
|
6906
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
6907
|
+
| `{${string}}`;
|
|
6908
|
+
|
|
6855
6909
|
/**
|
|
6856
6910
|
* The `AvatarGroupItems` contained by the control.
|
|
6857
6911
|
*/
|
|
@@ -7651,6 +7705,46 @@ declare namespace sap {
|
|
|
7651
7705
|
* If not set, a predefined text is used.
|
|
7652
7706
|
*/
|
|
7653
7707
|
lastColumnLabel?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7708
|
+
|
|
7709
|
+
/**
|
|
7710
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7711
|
+
* control.
|
|
7712
|
+
*
|
|
7713
|
+
* If not set, a predefined text is used.
|
|
7714
|
+
*/
|
|
7715
|
+
firstColumnBackArrowLabel?:
|
|
7716
|
+
| string
|
|
7717
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7718
|
+
|
|
7719
|
+
/**
|
|
7720
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7721
|
+
* control.
|
|
7722
|
+
*
|
|
7723
|
+
* If not set, a predefined text is used.
|
|
7724
|
+
*/
|
|
7725
|
+
middleColumnForwardArrowLabel?:
|
|
7726
|
+
| string
|
|
7727
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7728
|
+
|
|
7729
|
+
/**
|
|
7730
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7731
|
+
* control.
|
|
7732
|
+
*
|
|
7733
|
+
* If not set, a predefined text is used.
|
|
7734
|
+
*/
|
|
7735
|
+
middleColumnBackArrowLabel?:
|
|
7736
|
+
| string
|
|
7737
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7738
|
+
|
|
7739
|
+
/**
|
|
7740
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
7741
|
+
* control.
|
|
7742
|
+
*
|
|
7743
|
+
* If not set, a predefined text is used.
|
|
7744
|
+
*/
|
|
7745
|
+
lastColumnForwardArrowLabel?:
|
|
7746
|
+
| string
|
|
7747
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
7654
7748
|
}
|
|
7655
7749
|
|
|
7656
7750
|
interface $GridContainerSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -7951,6 +8045,9 @@ declare namespace sap {
|
|
|
7951
8045
|
|
|
7952
8046
|
/**
|
|
7953
8047
|
* Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
|
|
8048
|
+
*
|
|
8049
|
+
* **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
|
|
8050
|
+
* change} event of `sap.f.ProductSwitch`.
|
|
7954
8051
|
*/
|
|
7955
8052
|
targetSrc?:
|
|
7956
8053
|
| sap.ui.core.URI
|
|
@@ -8503,6 +8600,36 @@ declare namespace sap {
|
|
|
8503
8600
|
avatarsDisplayed?: int;
|
|
8504
8601
|
}
|
|
8505
8602
|
): this;
|
|
8603
|
+
/**
|
|
8604
|
+
* @SINCE 1.103
|
|
8605
|
+
*
|
|
8606
|
+
* Gets current value of property {@link #getAvatarCustomDisplaySize avatarCustomDisplaySize}.
|
|
8607
|
+
*
|
|
8608
|
+
* Specifies a custom display size for each avatar.
|
|
8609
|
+
*
|
|
8610
|
+
* **Notes:**
|
|
8611
|
+
* - Supports only `px` and code>rem values.
|
|
8612
|
+
* - It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
|
|
8613
|
+
*
|
|
8614
|
+
* Default value is `"3rem"`.
|
|
8615
|
+
*
|
|
8616
|
+
* @returns Value of property `avatarCustomDisplaySize`
|
|
8617
|
+
*/
|
|
8618
|
+
getAvatarCustomDisplaySize(): sap.ui.core.AbsoluteCSSSize;
|
|
8619
|
+
/**
|
|
8620
|
+
* @SINCE 1.103
|
|
8621
|
+
*
|
|
8622
|
+
* Gets current value of property {@link #getAvatarCustomFontSize avatarCustomFontSize}.
|
|
8623
|
+
*
|
|
8624
|
+
* Specifies a custom font size for each avatar.
|
|
8625
|
+
*
|
|
8626
|
+
* **Note:** It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
|
|
8627
|
+
*
|
|
8628
|
+
* Default value is `"1.125rem"`.
|
|
8629
|
+
*
|
|
8630
|
+
* @returns Value of property `avatarCustomFontSize`
|
|
8631
|
+
*/
|
|
8632
|
+
getAvatarCustomFontSize(): sap.ui.core.AbsoluteCSSSize;
|
|
8506
8633
|
/**
|
|
8507
8634
|
* Gets current value of property {@link #getAvatarDisplaySize avatarDisplaySize}.
|
|
8508
8635
|
*
|
|
@@ -8576,7 +8703,51 @@ declare namespace sap {
|
|
|
8576
8703
|
* The item to remove or its index or id
|
|
8577
8704
|
*/
|
|
8578
8705
|
vItem: int | string | sap.f.AvatarGroupItem
|
|
8579
|
-
): sap.f.AvatarGroupItem;
|
|
8706
|
+
): sap.f.AvatarGroupItem | null;
|
|
8707
|
+
/**
|
|
8708
|
+
* @SINCE 1.103
|
|
8709
|
+
*
|
|
8710
|
+
* Sets a new value for property {@link #getAvatarCustomDisplaySize avatarCustomDisplaySize}.
|
|
8711
|
+
*
|
|
8712
|
+
* Specifies a custom display size for each avatar.
|
|
8713
|
+
*
|
|
8714
|
+
* **Notes:**
|
|
8715
|
+
* - Supports only `px` and code>rem values.
|
|
8716
|
+
* - It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
|
|
8717
|
+
*
|
|
8718
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8719
|
+
*
|
|
8720
|
+
* Default value is `"3rem"`.
|
|
8721
|
+
*
|
|
8722
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8723
|
+
*/
|
|
8724
|
+
setAvatarCustomDisplaySize(
|
|
8725
|
+
/**
|
|
8726
|
+
* New value for property `avatarCustomDisplaySize`
|
|
8727
|
+
*/
|
|
8728
|
+
sAvatarCustomDisplaySize?: sap.ui.core.AbsoluteCSSSize
|
|
8729
|
+
): this;
|
|
8730
|
+
/**
|
|
8731
|
+
* @SINCE 1.103
|
|
8732
|
+
*
|
|
8733
|
+
* Sets a new value for property {@link #getAvatarCustomFontSize avatarCustomFontSize}.
|
|
8734
|
+
*
|
|
8735
|
+
* Specifies a custom font size for each avatar.
|
|
8736
|
+
*
|
|
8737
|
+
* **Note:** It takes effect only if the `avatarDisplaySize` property is set to `Custom`.
|
|
8738
|
+
*
|
|
8739
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8740
|
+
*
|
|
8741
|
+
* Default value is `"1.125rem"`.
|
|
8742
|
+
*
|
|
8743
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
8744
|
+
*/
|
|
8745
|
+
setAvatarCustomFontSize(
|
|
8746
|
+
/**
|
|
8747
|
+
* New value for property `avatarCustomFontSize`
|
|
8748
|
+
*/
|
|
8749
|
+
sAvatarCustomFontSize?: sap.ui.core.AbsoluteCSSSize
|
|
8750
|
+
): this;
|
|
8580
8751
|
/**
|
|
8581
8752
|
* Sets a new value for property {@link #getAvatarDisplaySize avatarDisplaySize}.
|
|
8582
8753
|
*
|
|
@@ -10250,7 +10421,7 @@ declare namespace sap {
|
|
|
10250
10421
|
* The content to remove or its index or id
|
|
10251
10422
|
*/
|
|
10252
10423
|
vContent: int | string | sap.ui.core.Control
|
|
10253
|
-
): sap.ui.core.Control;
|
|
10424
|
+
): sap.ui.core.Control | null;
|
|
10254
10425
|
/**
|
|
10255
10426
|
* @SINCE 1.58
|
|
10256
10427
|
*
|
|
@@ -10977,7 +11148,7 @@ declare namespace sap {
|
|
|
10977
11148
|
* The action to remove or its index or id
|
|
10978
11149
|
*/
|
|
10979
11150
|
vAction: int | string | sap.ui.core.Control
|
|
10980
|
-
): sap.ui.core.Control;
|
|
11151
|
+
): sap.ui.core.Control | null;
|
|
10981
11152
|
/**
|
|
10982
11153
|
* Removes all the controls from the aggregation {@link #getActions actions}.
|
|
10983
11154
|
*
|
|
@@ -11055,7 +11226,7 @@ declare namespace sap {
|
|
|
11055
11226
|
* The content to remove or its index or id
|
|
11056
11227
|
*/
|
|
11057
11228
|
vContent: int | string | sap.ui.core.Control
|
|
11058
|
-
): sap.ui.core.Control;
|
|
11229
|
+
): sap.ui.core.Control | null;
|
|
11059
11230
|
/**
|
|
11060
11231
|
* Removes a expandedContent from the aggregation {@link #getExpandedContent expandedContent}.
|
|
11061
11232
|
*
|
|
@@ -11066,7 +11237,7 @@ declare namespace sap {
|
|
|
11066
11237
|
* The expandedContent to remove or its index or id
|
|
11067
11238
|
*/
|
|
11068
11239
|
vExpandedContent: int | string | sap.ui.core.Control
|
|
11069
|
-
): sap.ui.core.Control;
|
|
11240
|
+
): sap.ui.core.Control | null;
|
|
11070
11241
|
/**
|
|
11071
11242
|
* @SINCE 1.52
|
|
11072
11243
|
*
|
|
@@ -11079,7 +11250,7 @@ declare namespace sap {
|
|
|
11079
11250
|
* The navigationAction to remove or its index or id
|
|
11080
11251
|
*/
|
|
11081
11252
|
vNavigationAction: int | string | sap.m.Button
|
|
11082
|
-
): sap.m.Button;
|
|
11253
|
+
): sap.m.Button | null;
|
|
11083
11254
|
/**
|
|
11084
11255
|
* Removes a snappedContent from the aggregation {@link #getSnappedContent snappedContent}.
|
|
11085
11256
|
*
|
|
@@ -11090,7 +11261,7 @@ declare namespace sap {
|
|
|
11090
11261
|
* The snappedContent to remove or its index or id
|
|
11091
11262
|
*/
|
|
11092
11263
|
vSnappedContent: int | string | sap.ui.core.Control
|
|
11093
|
-
): sap.ui.core.Control;
|
|
11264
|
+
): sap.ui.core.Control | null;
|
|
11094
11265
|
/**
|
|
11095
11266
|
* @SINCE 1.54
|
|
11096
11267
|
*
|
|
@@ -12779,7 +12950,7 @@ declare namespace sap {
|
|
|
12779
12950
|
* The beginColumnPage to remove or its index or id
|
|
12780
12951
|
*/
|
|
12781
12952
|
vBeginColumnPage: int | string | sap.ui.core.Control
|
|
12782
|
-
): sap.ui.core.Control;
|
|
12953
|
+
): sap.ui.core.Control | null;
|
|
12783
12954
|
/**
|
|
12784
12955
|
* Removes a endColumnPage from the aggregation {@link #getEndColumnPages endColumnPages}.
|
|
12785
12956
|
*
|
|
@@ -12790,7 +12961,7 @@ declare namespace sap {
|
|
|
12790
12961
|
* The endColumnPage to remove or its index or id
|
|
12791
12962
|
*/
|
|
12792
12963
|
vEndColumnPage: int | string | sap.ui.core.Control
|
|
12793
|
-
): sap.ui.core.Control;
|
|
12964
|
+
): sap.ui.core.Control | null;
|
|
12794
12965
|
/**
|
|
12795
12966
|
* Removes a midColumnPage from the aggregation {@link #getMidColumnPages midColumnPages}.
|
|
12796
12967
|
*
|
|
@@ -12801,7 +12972,7 @@ declare namespace sap {
|
|
|
12801
12972
|
* The midColumnPage to remove or its index or id
|
|
12802
12973
|
*/
|
|
12803
12974
|
vMidColumnPage: int | string | sap.ui.core.Control
|
|
12804
|
-
): sap.ui.core.Control;
|
|
12975
|
+
): sap.ui.core.Control | null;
|
|
12805
12976
|
/**
|
|
12806
12977
|
* @SINCE 1.76
|
|
12807
12978
|
*
|
|
@@ -13372,6 +13543,17 @@ declare namespace sap {
|
|
|
13372
13543
|
* @returns Metadata object describing this class
|
|
13373
13544
|
*/
|
|
13374
13545
|
static getMetadata(): sap.ui.core.ElementMetadata;
|
|
13546
|
+
/**
|
|
13547
|
+
* Gets current value of property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13548
|
+
*
|
|
13549
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13550
|
+
* control.
|
|
13551
|
+
*
|
|
13552
|
+
* If not set, a predefined text is used.
|
|
13553
|
+
*
|
|
13554
|
+
* @returns Value of property `firstColumnBackArrowLabel`
|
|
13555
|
+
*/
|
|
13556
|
+
getFirstColumnBackArrowLabel(): string;
|
|
13375
13557
|
/**
|
|
13376
13558
|
* Gets current value of property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13377
13559
|
*
|
|
@@ -13383,6 +13565,17 @@ declare namespace sap {
|
|
|
13383
13565
|
* @returns Value of property `firstColumnLabel`
|
|
13384
13566
|
*/
|
|
13385
13567
|
getFirstColumnLabel(): string;
|
|
13568
|
+
/**
|
|
13569
|
+
* Gets current value of property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13570
|
+
*
|
|
13571
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13572
|
+
* control.
|
|
13573
|
+
*
|
|
13574
|
+
* If not set, a predefined text is used.
|
|
13575
|
+
*
|
|
13576
|
+
* @returns Value of property `lastColumnForwardArrowLabel`
|
|
13577
|
+
*/
|
|
13578
|
+
getLastColumnForwardArrowLabel(): string;
|
|
13386
13579
|
/**
|
|
13387
13580
|
* Gets current value of property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13388
13581
|
*
|
|
@@ -13394,6 +13587,28 @@ declare namespace sap {
|
|
|
13394
13587
|
* @returns Value of property `lastColumnLabel`
|
|
13395
13588
|
*/
|
|
13396
13589
|
getLastColumnLabel(): string;
|
|
13590
|
+
/**
|
|
13591
|
+
* Gets current value of property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13592
|
+
*
|
|
13593
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13594
|
+
* control.
|
|
13595
|
+
*
|
|
13596
|
+
* If not set, a predefined text is used.
|
|
13597
|
+
*
|
|
13598
|
+
* @returns Value of property `middleColumnBackArrowLabel`
|
|
13599
|
+
*/
|
|
13600
|
+
getMiddleColumnBackArrowLabel(): string;
|
|
13601
|
+
/**
|
|
13602
|
+
* Gets current value of property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13603
|
+
*
|
|
13604
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13605
|
+
* control.
|
|
13606
|
+
*
|
|
13607
|
+
* If not set, a predefined text is used.
|
|
13608
|
+
*
|
|
13609
|
+
* @returns Value of property `middleColumnForwardArrowLabel`
|
|
13610
|
+
*/
|
|
13611
|
+
getMiddleColumnForwardArrowLabel(): string;
|
|
13397
13612
|
/**
|
|
13398
13613
|
* Gets current value of property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13399
13614
|
*
|
|
@@ -13405,6 +13620,24 @@ declare namespace sap {
|
|
|
13405
13620
|
* @returns Value of property `middleColumnLabel`
|
|
13406
13621
|
*/
|
|
13407
13622
|
getMiddleColumnLabel(): string;
|
|
13623
|
+
/**
|
|
13624
|
+
* Sets a new value for property {@link #getFirstColumnBackArrowLabel firstColumnBackArrowLabel}.
|
|
13625
|
+
*
|
|
13626
|
+
* Text that describes the landmark of the back arrow of the first column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13627
|
+
* control.
|
|
13628
|
+
*
|
|
13629
|
+
* If not set, a predefined text is used.
|
|
13630
|
+
*
|
|
13631
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13632
|
+
*
|
|
13633
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13634
|
+
*/
|
|
13635
|
+
setFirstColumnBackArrowLabel(
|
|
13636
|
+
/**
|
|
13637
|
+
* New value for property `firstColumnBackArrowLabel`
|
|
13638
|
+
*/
|
|
13639
|
+
sFirstColumnBackArrowLabel?: string
|
|
13640
|
+
): this;
|
|
13408
13641
|
/**
|
|
13409
13642
|
* Sets a new value for property {@link #getFirstColumnLabel firstColumnLabel}.
|
|
13410
13643
|
*
|
|
@@ -13423,6 +13656,24 @@ declare namespace sap {
|
|
|
13423
13656
|
*/
|
|
13424
13657
|
sFirstColumnLabel?: string
|
|
13425
13658
|
): this;
|
|
13659
|
+
/**
|
|
13660
|
+
* Sets a new value for property {@link #getLastColumnForwardArrowLabel lastColumnForwardArrowLabel}.
|
|
13661
|
+
*
|
|
13662
|
+
* Text that describes the landmark of forward arrow of the last column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13663
|
+
* control.
|
|
13664
|
+
*
|
|
13665
|
+
* If not set, a predefined text is used.
|
|
13666
|
+
*
|
|
13667
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13668
|
+
*
|
|
13669
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13670
|
+
*/
|
|
13671
|
+
setLastColumnForwardArrowLabel(
|
|
13672
|
+
/**
|
|
13673
|
+
* New value for property `lastColumnForwardArrowLabel`
|
|
13674
|
+
*/
|
|
13675
|
+
sLastColumnForwardArrowLabel?: string
|
|
13676
|
+
): this;
|
|
13426
13677
|
/**
|
|
13427
13678
|
* Sets a new value for property {@link #getLastColumnLabel lastColumnLabel}.
|
|
13428
13679
|
*
|
|
@@ -13441,6 +13692,42 @@ declare namespace sap {
|
|
|
13441
13692
|
*/
|
|
13442
13693
|
sLastColumnLabel?: string
|
|
13443
13694
|
): this;
|
|
13695
|
+
/**
|
|
13696
|
+
* Sets a new value for property {@link #getMiddleColumnBackArrowLabel middleColumnBackArrowLabel}.
|
|
13697
|
+
*
|
|
13698
|
+
* Text that describes the landmark of back arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13699
|
+
* control.
|
|
13700
|
+
*
|
|
13701
|
+
* If not set, a predefined text is used.
|
|
13702
|
+
*
|
|
13703
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13704
|
+
*
|
|
13705
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13706
|
+
*/
|
|
13707
|
+
setMiddleColumnBackArrowLabel(
|
|
13708
|
+
/**
|
|
13709
|
+
* New value for property `middleColumnBackArrowLabel`
|
|
13710
|
+
*/
|
|
13711
|
+
sMiddleColumnBackArrowLabel?: string
|
|
13712
|
+
): this;
|
|
13713
|
+
/**
|
|
13714
|
+
* Sets a new value for property {@link #getMiddleColumnForwardArrowLabel middleColumnForwardArrowLabel}.
|
|
13715
|
+
*
|
|
13716
|
+
* Text that describes the landmark of forward arrow of the middle column in the corresponding `sap.f.FlexibleColumnLayout`
|
|
13717
|
+
* control.
|
|
13718
|
+
*
|
|
13719
|
+
* If not set, a predefined text is used.
|
|
13720
|
+
*
|
|
13721
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
13722
|
+
*
|
|
13723
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
13724
|
+
*/
|
|
13725
|
+
setMiddleColumnForwardArrowLabel(
|
|
13726
|
+
/**
|
|
13727
|
+
* New value for property `middleColumnForwardArrowLabel`
|
|
13728
|
+
*/
|
|
13729
|
+
sMiddleColumnForwardArrowLabel?: string
|
|
13730
|
+
): this;
|
|
13444
13731
|
/**
|
|
13445
13732
|
* Sets a new value for property {@link #getMiddleColumnLabel middleColumnLabel}.
|
|
13446
13733
|
*
|
|
@@ -13721,6 +14008,9 @@ declare namespace sap {
|
|
|
13721
14008
|
* drag and drop. The difference is that the `{@link sap.f.dnd.GridDropInfo}` will provide a drop indicator,
|
|
13722
14009
|
* which mimics the size of the dragged item and shows the potential drop position inside the grid.
|
|
13723
14010
|
*
|
|
14011
|
+
* Drag and drop is enabled via keyboard using `Ctrl` + arrow keys (Windows) and `Control` + arrow keys
|
|
14012
|
+
* (Mac OS).
|
|
14013
|
+
*
|
|
13724
14014
|
* Keyboard Navigation:: `GridContainer` provides support for two-dimensional keyboard navigation through
|
|
13725
14015
|
* its contained controls. Navigating up/down or left/right using the arrow keys follows the configurable
|
|
13726
14016
|
* two-dimensional grid mesh. This provides stable navigation paths in the cases when there are items of
|
|
@@ -15366,7 +15656,7 @@ declare namespace sap {
|
|
|
15366
15656
|
* The content to remove or its index or id
|
|
15367
15657
|
*/
|
|
15368
15658
|
vContent: int | string | sap.ui.core.Control
|
|
15369
|
-
): sap.ui.core.Control;
|
|
15659
|
+
): sap.ui.core.Control | null;
|
|
15370
15660
|
/**
|
|
15371
15661
|
* Unbinds aggregation {@link #getContent content} from model data.
|
|
15372
15662
|
*
|
|
@@ -15770,7 +16060,7 @@ declare namespace sap {
|
|
|
15770
16060
|
* The item to remove or its index or id
|
|
15771
16061
|
*/
|
|
15772
16062
|
vItem: int | string | sap.f.ProductSwitchItem
|
|
15773
|
-
): sap.f.ProductSwitchItem;
|
|
16063
|
+
): sap.f.ProductSwitchItem | null;
|
|
15774
16064
|
/**
|
|
15775
16065
|
* Sets the `selectedItem` association.
|
|
15776
16066
|
*
|
|
@@ -15887,6 +16177,9 @@ declare namespace sap {
|
|
|
15887
16177
|
*
|
|
15888
16178
|
* Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
|
|
15889
16179
|
*
|
|
16180
|
+
* **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
|
|
16181
|
+
* change} event of `sap.f.ProductSwitch`.
|
|
16182
|
+
*
|
|
15890
16183
|
* @returns Value of property `targetSrc`
|
|
15891
16184
|
*/
|
|
15892
16185
|
getTargetSrc(): sap.ui.core.URI;
|
|
@@ -15952,6 +16245,9 @@ declare namespace sap {
|
|
|
15952
16245
|
*
|
|
15953
16246
|
* Defines the `ProductSwitchItem` target URI. Supports standard hyperlink behavior.
|
|
15954
16247
|
*
|
|
16248
|
+
* **Note:** Redirection is handled via application logic, by subscribing to the {@link sap.f.ProductSwitch#event:change
|
|
16249
|
+
* change} event of `sap.f.ProductSwitch`.
|
|
16250
|
+
*
|
|
15955
16251
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15956
16252
|
*
|
|
15957
16253
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -16427,7 +16723,7 @@ declare namespace sap {
|
|
|
16427
16723
|
* The suggestionItem to remove or its index or id
|
|
16428
16724
|
*/
|
|
16429
16725
|
vSuggestionItem: int | string | sap.m.SuggestionItem
|
|
16430
|
-
): sap.m.SuggestionItem;
|
|
16726
|
+
): sap.m.SuggestionItem | null;
|
|
16431
16727
|
/**
|
|
16432
16728
|
* Sets a new value for property {@link #getEnabled enabled}.
|
|
16433
16729
|
*
|
|
@@ -17515,7 +17811,7 @@ declare namespace sap {
|
|
|
17515
17811
|
* The additionalContent to remove or its index or id
|
|
17516
17812
|
*/
|
|
17517
17813
|
vAdditionalContent: int | string | sap.f.IShellBar
|
|
17518
|
-
): sap.f.IShellBar;
|
|
17814
|
+
): sap.f.IShellBar | null;
|
|
17519
17815
|
/**
|
|
17520
17816
|
* Removes all the controls from the aggregation {@link #getAdditionalContent additionalContent}.
|
|
17521
17817
|
*
|