@openui5/ts-types 1.104.0 → 1.105.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 +197 -47
- 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 +195 -43
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1117 -5
- package/types/sap.ui.integration.d.ts +59 -7
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +3 -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 +1 -1
- package/types/sap.ui.table.d.ts +1 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +51 -4
- 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 +209 -16
- package/types/sap.ui.webc.main.d.ts +524 -62
- package/types/sap.uxap.d.ts +1 -1
package/package.json
CHANGED
package/types/sap.f.d.ts
CHANGED
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.105.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -591,12 +591,12 @@ declare namespace sap {
|
|
|
591
591
|
* @SINCE 1.104
|
|
592
592
|
* @EXPERIMENTAL (since 1.104)
|
|
593
593
|
*
|
|
594
|
-
* The `Engine` offers personalization
|
|
594
|
+
* The `Engine` offers personalization capabilities by registering a control instance for modification such
|
|
595
595
|
* as:
|
|
596
596
|
*
|
|
597
597
|
*
|
|
598
598
|
* - `sap.m.p13n.Popup` initialization
|
|
599
|
-
* - Storing personalization states by
|
|
599
|
+
* - Storing personalization states by choosing the desired persistence layer
|
|
600
600
|
* - State appliance considering the persistence layer
|
|
601
601
|
*
|
|
602
602
|
* The Engine should be used whenever personalization should be enabled by considering a certain persistence
|
|
@@ -614,7 +614,7 @@ declare namespace sap {
|
|
|
614
614
|
*
|
|
615
615
|
*
|
|
616
616
|
* - {@link sap.m.p13n.modification.FlexModificationHandler FlexModificationHandler}: Can be used in combination
|
|
617
|
-
* with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl`
|
|
617
|
+
* with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl` capabilities.
|
|
618
618
|
*
|
|
619
619
|
* - {@link sap.m.p13n.modification.LocalStorageModificationHandler LocalStorageModificationHandler}:
|
|
620
620
|
* can be used to store personalization state in the local storage
|
|
@@ -663,7 +663,7 @@ declare namespace sap {
|
|
|
663
663
|
/**
|
|
664
664
|
* The registered control instance
|
|
665
665
|
*/
|
|
666
|
-
oControl:
|
|
666
|
+
oControl: sap.ui.core.Control,
|
|
667
667
|
/**
|
|
668
668
|
* The state object
|
|
669
669
|
*/
|
|
@@ -697,13 +697,13 @@ declare namespace sap {
|
|
|
697
697
|
/**
|
|
698
698
|
* The registered control instance
|
|
699
699
|
*/
|
|
700
|
-
oControl:
|
|
700
|
+
oControl: sap.ui.core.Control
|
|
701
701
|
): void;
|
|
702
702
|
/**
|
|
703
703
|
* @EXPERIMENTAL (since 1.104)
|
|
704
704
|
*
|
|
705
705
|
* Removes a previously attached state change event handler from the `StateHandlerRegistry` class. The passed
|
|
706
|
-
* parameters must match those used for registration with {@link Engine#attachStateChange} beforehand.
|
|
706
|
+
* parameters must match those used for registration with {@link sap.m.p13n.Engine#attachStateChange} beforehand.
|
|
707
707
|
*
|
|
708
708
|
* @returns Returns `this` to allow method chaining
|
|
709
709
|
*/
|
|
@@ -721,9 +721,9 @@ declare namespace sap {
|
|
|
721
721
|
*/
|
|
722
722
|
register(
|
|
723
723
|
/**
|
|
724
|
-
* The control
|
|
724
|
+
* The control instance to be registered for adaptation
|
|
725
725
|
*/
|
|
726
|
-
oControl:
|
|
726
|
+
oControl: sap.ui.core.Control,
|
|
727
727
|
/**
|
|
728
728
|
* The config object providing key value pairs of keys and `sap.m.p13n.*Controller` classes.
|
|
729
729
|
*/
|
|
@@ -740,13 +740,15 @@ declare namespace sap {
|
|
|
740
740
|
/**
|
|
741
741
|
* The according control instance.
|
|
742
742
|
*/
|
|
743
|
-
oControl:
|
|
743
|
+
oControl: sap.ui.core.Control,
|
|
744
744
|
/**
|
|
745
745
|
* The key for the affected config.
|
|
746
746
|
*/
|
|
747
747
|
aKeys: string
|
|
748
748
|
): Promise<any>;
|
|
749
749
|
/**
|
|
750
|
+
* @EXPERIMENTAL (since 1.104)
|
|
751
|
+
*
|
|
750
752
|
* Retrieves the externalized state for a given control instance, after all necessary changes have been
|
|
751
753
|
* applied (e.g. modification handler appliance). After the returned Promise has been resolved, the returned
|
|
752
754
|
* State is in sync with the according state object of the control.
|
|
@@ -787,7 +789,7 @@ declare namespace sap {
|
|
|
787
789
|
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary in case the mode is set
|
|
788
790
|
* to `ResponsivePopover`)
|
|
789
791
|
*/
|
|
790
|
-
source?:
|
|
792
|
+
source?: sap.ui.core.Control;
|
|
791
793
|
/**
|
|
792
794
|
* The mode to be used by the `sap.m.p13n.Popup` control
|
|
793
795
|
*/
|
|
@@ -12703,7 +12705,7 @@ declare namespace sap {
|
|
|
12703
12705
|
/**
|
|
12704
12706
|
* The UploadSetItem to update with a new version. This parameter is mandatory.
|
|
12705
12707
|
*/
|
|
12706
|
-
item:
|
|
12708
|
+
item: sap.m.upload.UploadSetItem
|
|
12707
12709
|
): this;
|
|
12708
12710
|
/**
|
|
12709
12711
|
* Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
|
|
@@ -16418,9 +16420,8 @@ declare namespace sap {
|
|
|
16418
16420
|
* @SINCE 1.99
|
|
16419
16421
|
*
|
|
16420
16422
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
16421
|
-
* property string is treated as if it is formatted in this timezone.
|
|
16422
|
-
*
|
|
16423
|
-
* it is adjusted when the `timezone` changes.
|
|
16423
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
16424
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
16424
16425
|
*/
|
|
16425
16426
|
timezone?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16426
16427
|
}
|
|
@@ -16923,6 +16924,24 @@ declare namespace sap {
|
|
|
16923
16924
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16924
16925
|
| `{${string}}`;
|
|
16925
16926
|
|
|
16927
|
+
/**
|
|
16928
|
+
* @SINCE 1.105
|
|
16929
|
+
*
|
|
16930
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
16931
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
16932
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
16933
|
+
* must be provided as parameter.
|
|
16934
|
+
*
|
|
16935
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
16936
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
16937
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
16938
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
16939
|
+
*/
|
|
16940
|
+
hideInput?:
|
|
16941
|
+
| boolean
|
|
16942
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
16943
|
+
| `{${string}}`;
|
|
16944
|
+
|
|
16926
16945
|
/**
|
|
16927
16946
|
* @SINCE 1.92
|
|
16928
16947
|
*
|
|
@@ -19699,7 +19718,7 @@ declare namespace sap {
|
|
|
19699
19718
|
/**
|
|
19700
19719
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
19701
19720
|
*
|
|
19702
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
19721
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
19703
19722
|
*/
|
|
19704
19723
|
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
19705
19724
|
|
|
@@ -31592,6 +31611,17 @@ declare namespace sap {
|
|
|
31592
31611
|
*/
|
|
31593
31612
|
aOptionKeys: any[]
|
|
31594
31613
|
): object[];
|
|
31614
|
+
/**
|
|
31615
|
+
* Returns a date in machine timezone setting, removing the offset added by the application configuration.
|
|
31616
|
+
*
|
|
31617
|
+
* @returns A local JS date with removed offset
|
|
31618
|
+
*/
|
|
31619
|
+
removeTimezoneOffset(
|
|
31620
|
+
/**
|
|
31621
|
+
* A local JS date with added offset
|
|
31622
|
+
*/
|
|
31623
|
+
oDate: Date
|
|
31624
|
+
): Date;
|
|
31595
31625
|
/**
|
|
31596
31626
|
* Calculates a date range from a provided object in the format of the DynamicDateRange's value.
|
|
31597
31627
|
*
|
|
@@ -35621,7 +35651,7 @@ declare namespace sap {
|
|
|
35621
35651
|
* Instance of the `LightBox` control or undefined
|
|
35622
35652
|
*/
|
|
35623
35653
|
oLightBox: sap.m.LightBox | undefined
|
|
35624
|
-
):
|
|
35654
|
+
): this;
|
|
35625
35655
|
/**
|
|
35626
35656
|
* Sets a new value for property {@link #getDisplayShape displayShape}.
|
|
35627
35657
|
*
|
|
@@ -37661,8 +37691,9 @@ declare namespace sap {
|
|
|
37661
37691
|
*/
|
|
37662
37692
|
class Button
|
|
37663
37693
|
extends sap.ui.core.Control
|
|
37664
|
-
implements sap.ui.core.IFormContent {
|
|
37694
|
+
implements sap.ui.core.IFormContent, sap.ui.core.IAccessKeySupport {
|
|
37665
37695
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
37696
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
37666
37697
|
/**
|
|
37667
37698
|
* Constructor for a new `Button`.
|
|
37668
37699
|
*
|
|
@@ -39201,9 +39232,13 @@ declare namespace sap {
|
|
|
39201
39232
|
*/
|
|
39202
39233
|
class CheckBox
|
|
39203
39234
|
extends sap.ui.core.Control
|
|
39204
|
-
implements
|
|
39235
|
+
implements
|
|
39236
|
+
sap.ui.core.IFormContent,
|
|
39237
|
+
sap.ui.core.ISemanticFormContent,
|
|
39238
|
+
sap.ui.core.IAccessKeySupport {
|
|
39205
39239
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
39206
39240
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
39241
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
39207
39242
|
/**
|
|
39208
39243
|
* Constructor for a new `CheckBox`.
|
|
39209
39244
|
*
|
|
@@ -46020,6 +46055,12 @@ declare namespace sap {
|
|
|
46020
46055
|
* @returns Current accessibility state of the control
|
|
46021
46056
|
*/
|
|
46022
46057
|
getAccessibilityInfo(): object;
|
|
46058
|
+
/**
|
|
46059
|
+
* @SINCE 1.102
|
|
46060
|
+
*
|
|
46061
|
+
* This method should not be used because it could produce unpredictable results. Use `getValue()` instead.
|
|
46062
|
+
*/
|
|
46063
|
+
getDateValue(): object;
|
|
46023
46064
|
/**
|
|
46024
46065
|
* Apply the correct icon to the used Date control
|
|
46025
46066
|
*/
|
|
@@ -46078,9 +46119,8 @@ declare namespace sap {
|
|
|
46078
46119
|
* Gets current value of property {@link #getTimezone timezone}.
|
|
46079
46120
|
*
|
|
46080
46121
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
46081
|
-
* property string is treated as if it is formatted in this timezone.
|
|
46082
|
-
*
|
|
46083
|
-
* it is adjusted when the `timezone` changes.
|
|
46122
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
46123
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
46084
46124
|
*
|
|
46085
46125
|
* @returns Value of property `timezone`
|
|
46086
46126
|
*/
|
|
@@ -46167,9 +46207,8 @@ declare namespace sap {
|
|
|
46167
46207
|
* Sets a new value for property {@link #getTimezone timezone}.
|
|
46168
46208
|
*
|
|
46169
46209
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
46170
|
-
* property string is treated as if it is formatted in this timezone.
|
|
46171
|
-
*
|
|
46172
|
-
* it is adjusted when the `timezone` changes.
|
|
46210
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
46211
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
46173
46212
|
*
|
|
46174
46213
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
46175
46214
|
*
|
|
@@ -46525,8 +46564,10 @@ declare namespace sap {
|
|
|
46525
46564
|
): this;
|
|
46526
46565
|
/**
|
|
46527
46566
|
* Close the dialog.
|
|
46567
|
+
*
|
|
46568
|
+
* @returns `this` to allow method chaining
|
|
46528
46569
|
*/
|
|
46529
|
-
close():
|
|
46570
|
+
close(): this;
|
|
46530
46571
|
/**
|
|
46531
46572
|
* @SINCE 1.15.1
|
|
46532
46573
|
*
|
|
@@ -47086,8 +47127,10 @@ declare namespace sap {
|
|
|
47086
47127
|
isOpen(): boolean;
|
|
47087
47128
|
/**
|
|
47088
47129
|
* Open the dialog.
|
|
47130
|
+
*
|
|
47131
|
+
* @returns `this` to allow method chaining
|
|
47089
47132
|
*/
|
|
47090
|
-
open():
|
|
47133
|
+
open(): this;
|
|
47091
47134
|
/**
|
|
47092
47135
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
47093
47136
|
*
|
|
@@ -48537,6 +48580,26 @@ declare namespace sap {
|
|
|
48537
48580
|
* @returns Value of property `formatter`
|
|
48538
48581
|
*/
|
|
48539
48582
|
getFormatter(): object;
|
|
48583
|
+
/**
|
|
48584
|
+
* @SINCE 1.105
|
|
48585
|
+
*
|
|
48586
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
48587
|
+
*
|
|
48588
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
48589
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
48590
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
48591
|
+
* must be provided as parameter.
|
|
48592
|
+
*
|
|
48593
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
48594
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
48595
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
48596
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
48597
|
+
*
|
|
48598
|
+
* Default value is `false`.
|
|
48599
|
+
*
|
|
48600
|
+
* @returns Value of property `hideInput`
|
|
48601
|
+
*/
|
|
48602
|
+
getHideInput(): boolean;
|
|
48540
48603
|
/**
|
|
48541
48604
|
* Returns the DOMNode Id to be used for the "labelFor" attribute of the label.
|
|
48542
48605
|
*
|
|
@@ -48647,7 +48710,34 @@ declare namespace sap {
|
|
|
48647
48710
|
*
|
|
48648
48711
|
* Opens the value help dialog.
|
|
48649
48712
|
*/
|
|
48650
|
-
open(
|
|
48713
|
+
open(
|
|
48714
|
+
/**
|
|
48715
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
48716
|
+
* control.
|
|
48717
|
+
*/
|
|
48718
|
+
oDomRef: HTMLElement
|
|
48719
|
+
): void;
|
|
48720
|
+
/**
|
|
48721
|
+
* @SINCE 1.105
|
|
48722
|
+
*
|
|
48723
|
+
* Opens the value help popover. The popover is positioned relatively to the control given as `oDomRef`
|
|
48724
|
+
* parameter on tablet or desktop and is full screen on phone. Therefore the control parameter is only used
|
|
48725
|
+
* on tablet or desktop and is ignored on phone.
|
|
48726
|
+
*
|
|
48727
|
+
* Note: use this method to open the value help popover only when the `hideInput` property is set to `true`.
|
|
48728
|
+
* Please consider opening of the value help popover by another control only in scenarios that comply with
|
|
48729
|
+
* Fiori guidelines. For example, opening the value help popover by another popover is not recommended.
|
|
48730
|
+
* The application developer should implement the following accessibility attributes to the opening control:
|
|
48731
|
+
* a text or tooltip that describes the action (example: "Open Dynamic Date Range"), and aria-haspopup attribute
|
|
48732
|
+
* with value of `true`.
|
|
48733
|
+
*/
|
|
48734
|
+
openBy(
|
|
48735
|
+
/**
|
|
48736
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
48737
|
+
* control.
|
|
48738
|
+
*/
|
|
48739
|
+
oDomRef: HTMLElement
|
|
48740
|
+
): void;
|
|
48651
48741
|
/**
|
|
48652
48742
|
* @SINCE 1.92
|
|
48653
48743
|
*
|
|
@@ -48767,6 +48857,33 @@ declare namespace sap {
|
|
|
48767
48857
|
*/
|
|
48768
48858
|
oFormatter: object
|
|
48769
48859
|
): this;
|
|
48860
|
+
/**
|
|
48861
|
+
* @SINCE 1.105
|
|
48862
|
+
*
|
|
48863
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
48864
|
+
*
|
|
48865
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
48866
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
48867
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
48868
|
+
* must be provided as parameter.
|
|
48869
|
+
*
|
|
48870
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
48871
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
48872
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
48873
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
48874
|
+
*
|
|
48875
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48876
|
+
*
|
|
48877
|
+
* Default value is `false`.
|
|
48878
|
+
*
|
|
48879
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
48880
|
+
*/
|
|
48881
|
+
setHideInput(
|
|
48882
|
+
/**
|
|
48883
|
+
* New value for property `hideInput`
|
|
48884
|
+
*/
|
|
48885
|
+
bHideInput?: boolean
|
|
48886
|
+
): this;
|
|
48770
48887
|
/**
|
|
48771
48888
|
* @SINCE 1.92
|
|
48772
48889
|
*
|
|
@@ -50536,7 +50653,7 @@ declare namespace sap {
|
|
|
50536
50653
|
*
|
|
50537
50654
|
* @returns Object with the selected keys
|
|
50538
50655
|
*/
|
|
50539
|
-
getSelectedKeys():
|
|
50656
|
+
getSelectedKeys(): Record<string, string>;
|
|
50540
50657
|
/**
|
|
50541
50658
|
* Gets current value of property {@link #getSequence sequence}.
|
|
50542
50659
|
*
|
|
@@ -50745,9 +50862,9 @@ declare namespace sap {
|
|
|
50745
50862
|
*
|
|
50746
50863
|
* Used to pre-select FacetFilterItems, such as when restoring FacetFilterList selections from a variant.
|
|
50747
50864
|
* Keys are cached separately from the actual FacetFilterItems so that they remain even when the physical
|
|
50748
|
-
* items are removed by filtering or sorting. If
|
|
50749
|
-
* all
|
|
50750
|
-
* All other items in the list will be deselected.
|
|
50865
|
+
* items are removed by filtering or sorting. If oKeys is `undefined`, `null`, or {} (empty object) then
|
|
50866
|
+
* all items will be deselected. After this method completes, only those items with matching keys will be
|
|
50867
|
+
* selected. All other items in the list will be deselected.
|
|
50751
50868
|
*/
|
|
50752
50869
|
setSelectedKeys(
|
|
50753
50870
|
/**
|
|
@@ -50757,7 +50874,7 @@ declare namespace sap {
|
|
|
50757
50874
|
* or FacetFilter summary bar is displayed. If no property value is set then the property key is used for
|
|
50758
50875
|
* the text.
|
|
50759
50876
|
*/
|
|
50760
|
-
oKeys:
|
|
50877
|
+
oKeys: Record<string, string>
|
|
50761
50878
|
): void;
|
|
50762
50879
|
/**
|
|
50763
50880
|
* Sets a new value for property {@link #getSequence sequence}.
|
|
@@ -57078,9 +57195,15 @@ declare namespace sap {
|
|
|
57078
57195
|
*/
|
|
57079
57196
|
getShowOverflowSelectList(): boolean;
|
|
57080
57197
|
/**
|
|
57081
|
-
*
|
|
57198
|
+
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
57082
57199
|
*
|
|
57083
|
-
*
|
|
57200
|
+
* Gets current value of property {@link #getShowSelection showSelection}.
|
|
57201
|
+
*
|
|
57202
|
+
* Defines whether the current selection should be visualized.
|
|
57203
|
+
*
|
|
57204
|
+
* Default value is `true`.
|
|
57205
|
+
*
|
|
57206
|
+
* @returns Value of property `showSelection`
|
|
57084
57207
|
*/
|
|
57085
57208
|
getShowSelection(): boolean;
|
|
57086
57209
|
/**
|
|
@@ -60272,7 +60395,7 @@ declare namespace sap {
|
|
|
60272
60395
|
* Instance of the `LightBox` control or undefined
|
|
60273
60396
|
*/
|
|
60274
60397
|
oLightBox: sap.m.LightBox | undefined
|
|
60275
|
-
):
|
|
60398
|
+
): this;
|
|
60276
60399
|
/**
|
|
60277
60400
|
* Sets a new value for property {@link #getHeight height}.
|
|
60278
60401
|
*
|
|
@@ -60646,7 +60769,10 @@ declare namespace sap {
|
|
|
60646
60769
|
* - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
|
|
60647
60770
|
* be overwritten by the binding update.
|
|
60648
60771
|
*/
|
|
60649
|
-
class Input
|
|
60772
|
+
class Input
|
|
60773
|
+
extends sap.m.InputBase
|
|
60774
|
+
implements sap.ui.core.IAccessKeySupport {
|
|
60775
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
60650
60776
|
/**
|
|
60651
60777
|
* Constructor for a new `Input`.
|
|
60652
60778
|
*
|
|
@@ -60756,7 +60882,7 @@ declare namespace sap {
|
|
|
60756
60882
|
*
|
|
60757
60883
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
60758
60884
|
*
|
|
60759
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
60885
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
60760
60886
|
*
|
|
60761
60887
|
* @returns Reference to `this` in order to allow method chaining
|
|
60762
60888
|
*/
|
|
@@ -60783,7 +60909,7 @@ declare namespace sap {
|
|
|
60783
60909
|
*
|
|
60784
60910
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
60785
60911
|
*
|
|
60786
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
60912
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
60787
60913
|
*
|
|
60788
60914
|
* @returns Reference to `this` in order to allow method chaining
|
|
60789
60915
|
*/
|
|
@@ -63663,9 +63789,11 @@ declare namespace sap {
|
|
|
63663
63789
|
implements
|
|
63664
63790
|
sap.ui.core.Label,
|
|
63665
63791
|
sap.ui.core.IShrinkable,
|
|
63792
|
+
sap.ui.core.IAccessKeySupport,
|
|
63666
63793
|
sap.m.IOverflowToolbarContent {
|
|
63667
63794
|
__implements__sap_ui_core_Label: boolean;
|
|
63668
63795
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
63796
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
63669
63797
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
63670
63798
|
/**
|
|
63671
63799
|
* Constructor for a new Label.
|
|
@@ -64518,10 +64646,12 @@ declare namespace sap {
|
|
|
64518
64646
|
implements
|
|
64519
64647
|
sap.ui.core.IShrinkable,
|
|
64520
64648
|
sap.ui.core.IFormContent,
|
|
64521
|
-
sap.ui.core.ITitleContent
|
|
64649
|
+
sap.ui.core.ITitleContent,
|
|
64650
|
+
sap.ui.core.IAccessKeySupport {
|
|
64522
64651
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
64523
64652
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
64524
64653
|
__implements__sap_ui_core_ITitleContent: boolean;
|
|
64654
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
64525
64655
|
/**
|
|
64526
64656
|
* Constructor for a new `Link`.
|
|
64527
64657
|
*
|
|
@@ -66207,6 +66337,20 @@ declare namespace sap {
|
|
|
66207
66337
|
*/
|
|
66208
66338
|
oListener?: object
|
|
66209
66339
|
): this;
|
|
66340
|
+
/**
|
|
66341
|
+
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
66342
|
+
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
66343
|
+
*/
|
|
66344
|
+
enhanceAccessibilityState(
|
|
66345
|
+
/**
|
|
66346
|
+
* The Control that gets rendered by the RenderManager
|
|
66347
|
+
*/
|
|
66348
|
+
oElement: sap.ui.core.Control,
|
|
66349
|
+
/**
|
|
66350
|
+
* The mapping of "aria-" prefixed attributes
|
|
66351
|
+
*/
|
|
66352
|
+
mAriaProps: object
|
|
66353
|
+
): void;
|
|
66210
66354
|
/**
|
|
66211
66355
|
* @SINCE 1.54
|
|
66212
66356
|
*
|
|
@@ -66518,7 +66662,11 @@ declare namespace sap {
|
|
|
66518
66662
|
* Returns growing information as object with "actual" and "total" keys. Note: This function returns "null"
|
|
66519
66663
|
* if "growing" feature is disabled.
|
|
66520
66664
|
*/
|
|
66521
|
-
getGrowingInfo():
|
|
66665
|
+
getGrowingInfo(): {
|
|
66666
|
+
actual: int;
|
|
66667
|
+
|
|
66668
|
+
total: int;
|
|
66669
|
+
} | null;
|
|
66522
66670
|
/**
|
|
66523
66671
|
* @SINCE 1.16.0
|
|
66524
66672
|
*
|
|
@@ -75572,7 +75720,7 @@ declare namespace sap {
|
|
|
75572
75720
|
/**
|
|
75573
75721
|
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
75574
75722
|
*/
|
|
75575
|
-
vPageIdOrControl: string,
|
|
75723
|
+
vPageIdOrControl: string | sap.ui.core.Control,
|
|
75576
75724
|
/**
|
|
75577
75725
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right),
|
|
75578
75726
|
* "baseSlide", "fade", "flip", and "show" and the names of any registered custom transitions.
|
|
@@ -92803,8 +92951,8 @@ declare namespace sap {
|
|
|
92803
92951
|
/**
|
|
92804
92952
|
* the width to be set to the PlanningCalendar
|
|
92805
92953
|
*/
|
|
92806
|
-
sWidth:
|
|
92807
|
-
):
|
|
92954
|
+
sWidth: sap.ui.core.CSSSize
|
|
92955
|
+
): this;
|
|
92808
92956
|
}
|
|
92809
92957
|
/**
|
|
92810
92958
|
* @SINCE 1.50
|
|
@@ -101234,10 +101382,10 @@ declare namespace sap {
|
|
|
101234
101382
|
openBy(
|
|
101235
101383
|
/**
|
|
101236
101384
|
* When this control is displayed on tablet or desktop, the ResponsivePopover is positioned relative to
|
|
101237
|
-
* this control.
|
|
101385
|
+
* this UI5 control or DOM element.
|
|
101238
101386
|
*/
|
|
101239
|
-
oParent:
|
|
101240
|
-
):
|
|
101387
|
+
oParent: sap.ui.core.Control | HTMLElement
|
|
101388
|
+
): sap.m.Popover | sap.m.Dialog;
|
|
101241
101389
|
/**
|
|
101242
101390
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
101243
101391
|
*
|
|
@@ -138972,6 +139120,8 @@ declare namespace sap {
|
|
|
138972
139120
|
|
|
138973
139121
|
"sap/m/Table": undefined;
|
|
138974
139122
|
|
|
139123
|
+
"sap/m/table/Util": undefined;
|
|
139124
|
+
|
|
138975
139125
|
"sap/m/TablePersoController": undefined;
|
|
138976
139126
|
|
|
138977
139127
|
"sap/m/TablePersoDialog": undefined;
|
package/types/sap.tnt.d.ts
CHANGED