@openui5/ts-types-esm 1.104.0 → 1.105.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +202 -52
- 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 +216 -46
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +42 -624
- 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 +48 -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 +213 -17
- package/types/sap.ui.webc.main.d.ts +523 -63
- 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.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -5553,7 +5553,7 @@ declare module "sap/m/Avatar" {
|
|
|
5553
5553
|
* Instance of the `LightBox` control or undefined
|
|
5554
5554
|
*/
|
|
5555
5555
|
oLightBox: LightBox | undefined
|
|
5556
|
-
):
|
|
5556
|
+
): this;
|
|
5557
5557
|
/**
|
|
5558
5558
|
* Sets a new value for property {@link #getDisplayShape displayShape}.
|
|
5559
5559
|
*
|
|
@@ -8256,6 +8256,7 @@ declare module "sap/m/Button" {
|
|
|
8256
8256
|
|
|
8257
8257
|
import {
|
|
8258
8258
|
IFormContent,
|
|
8259
|
+
IAccessKeySupport,
|
|
8259
8260
|
ID,
|
|
8260
8261
|
URI,
|
|
8261
8262
|
aria,
|
|
@@ -8291,8 +8292,11 @@ declare module "sap/m/Button" {
|
|
|
8291
8292
|
* it and it changes its style to provide visual feedback to the user that it is pressed or hovered over
|
|
8292
8293
|
* with the mouse cursor. A disabled `Button` appears inactive and cannot be pressed.
|
|
8293
8294
|
*/
|
|
8294
|
-
export default class Button
|
|
8295
|
+
export default class Button
|
|
8296
|
+
extends Control
|
|
8297
|
+
implements IFormContent, IAccessKeySupport {
|
|
8295
8298
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
8299
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
8296
8300
|
/**
|
|
8297
8301
|
* Constructor for a new `Button`.
|
|
8298
8302
|
*
|
|
@@ -10057,6 +10061,7 @@ declare module "sap/m/CheckBox" {
|
|
|
10057
10061
|
import {
|
|
10058
10062
|
IFormContent,
|
|
10059
10063
|
ISemanticFormContent,
|
|
10064
|
+
IAccessKeySupport,
|
|
10060
10065
|
ID,
|
|
10061
10066
|
TextAlign,
|
|
10062
10067
|
TextDirection,
|
|
@@ -10106,9 +10111,10 @@ declare module "sap/m/CheckBox" {
|
|
|
10106
10111
|
*/
|
|
10107
10112
|
export default class CheckBox
|
|
10108
10113
|
extends Control
|
|
10109
|
-
implements IFormContent, ISemanticFormContent {
|
|
10114
|
+
implements IFormContent, ISemanticFormContent, IAccessKeySupport {
|
|
10110
10115
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
10111
10116
|
__implements__sap_ui_core_ISemanticFormContent: boolean;
|
|
10117
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
10112
10118
|
/**
|
|
10113
10119
|
* Constructor for a new `CheckBox`.
|
|
10114
10120
|
*
|
|
@@ -18094,6 +18100,12 @@ declare module "sap/m/DateTimePicker" {
|
|
|
18094
18100
|
* @returns Current accessibility state of the control
|
|
18095
18101
|
*/
|
|
18096
18102
|
getAccessibilityInfo(): object;
|
|
18103
|
+
/**
|
|
18104
|
+
* @SINCE 1.102
|
|
18105
|
+
*
|
|
18106
|
+
* This method should not be used because it could produce unpredictable results. Use `getValue()` instead.
|
|
18107
|
+
*/
|
|
18108
|
+
getDateValue(): object;
|
|
18097
18109
|
/**
|
|
18098
18110
|
* Apply the correct icon to the used Date control
|
|
18099
18111
|
*/
|
|
@@ -18152,9 +18164,8 @@ declare module "sap/m/DateTimePicker" {
|
|
|
18152
18164
|
* Gets current value of property {@link #getTimezone timezone}.
|
|
18153
18165
|
*
|
|
18154
18166
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
18155
|
-
* property string is treated as if it is formatted in this timezone.
|
|
18156
|
-
*
|
|
18157
|
-
* it is adjusted when the `timezone` changes.
|
|
18167
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
18168
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
18158
18169
|
*
|
|
18159
18170
|
* @returns Value of property `timezone`
|
|
18160
18171
|
*/
|
|
@@ -18241,9 +18252,8 @@ declare module "sap/m/DateTimePicker" {
|
|
|
18241
18252
|
* Sets a new value for property {@link #getTimezone timezone}.
|
|
18242
18253
|
*
|
|
18243
18254
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
18244
|
-
* property string is treated as if it is formatted in this timezone.
|
|
18245
|
-
*
|
|
18246
|
-
* it is adjusted when the `timezone` changes.
|
|
18255
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
18256
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
18247
18257
|
*
|
|
18248
18258
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
18249
18259
|
*
|
|
@@ -18292,9 +18302,8 @@ declare module "sap/m/DateTimePicker" {
|
|
|
18292
18302
|
* @SINCE 1.99
|
|
18293
18303
|
*
|
|
18294
18304
|
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
18295
|
-
* property string is treated as if it is formatted in this timezone.
|
|
18296
|
-
*
|
|
18297
|
-
* it is adjusted when the `timezone` changes.
|
|
18305
|
+
* property string is treated as if it is formatted in this timezone. The `dateValue` property should not
|
|
18306
|
+
* be used as this could lead to an unpredictable results. Use `getValue()` instead.
|
|
18298
18307
|
*/
|
|
18299
18308
|
timezone?: string | PropertyBindingInfo;
|
|
18300
18309
|
}
|
|
@@ -18665,8 +18674,10 @@ declare module "sap/m/Dialog" {
|
|
|
18665
18674
|
): this;
|
|
18666
18675
|
/**
|
|
18667
18676
|
* Close the dialog.
|
|
18677
|
+
*
|
|
18678
|
+
* @returns `this` to allow method chaining
|
|
18668
18679
|
*/
|
|
18669
|
-
close():
|
|
18680
|
+
close(): this;
|
|
18670
18681
|
/**
|
|
18671
18682
|
* @SINCE 1.15.1
|
|
18672
18683
|
*
|
|
@@ -19226,8 +19237,10 @@ declare module "sap/m/Dialog" {
|
|
|
19226
19237
|
isOpen(): boolean;
|
|
19227
19238
|
/**
|
|
19228
19239
|
* Open the dialog.
|
|
19240
|
+
*
|
|
19241
|
+
* @returns `this` to allow method chaining
|
|
19229
19242
|
*/
|
|
19230
|
-
open():
|
|
19243
|
+
open(): this;
|
|
19231
19244
|
/**
|
|
19232
19245
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
19233
19246
|
*
|
|
@@ -21070,6 +21083,26 @@ declare module "sap/m/DynamicDateRange" {
|
|
|
21070
21083
|
* @returns Value of property `formatter`
|
|
21071
21084
|
*/
|
|
21072
21085
|
getFormatter(): object;
|
|
21086
|
+
/**
|
|
21087
|
+
* @SINCE 1.105
|
|
21088
|
+
*
|
|
21089
|
+
* Gets current value of property {@link #getHideInput hideInput}.
|
|
21090
|
+
*
|
|
21091
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
21092
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
21093
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
21094
|
+
* must be provided as parameter.
|
|
21095
|
+
*
|
|
21096
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
21097
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
21098
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
21099
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
21100
|
+
*
|
|
21101
|
+
* Default value is `false`.
|
|
21102
|
+
*
|
|
21103
|
+
* @returns Value of property `hideInput`
|
|
21104
|
+
*/
|
|
21105
|
+
getHideInput(): boolean;
|
|
21073
21106
|
/**
|
|
21074
21107
|
* Returns the DOMNode Id to be used for the "labelFor" attribute of the label.
|
|
21075
21108
|
*
|
|
@@ -21180,7 +21213,34 @@ declare module "sap/m/DynamicDateRange" {
|
|
|
21180
21213
|
*
|
|
21181
21214
|
* Opens the value help dialog.
|
|
21182
21215
|
*/
|
|
21183
|
-
open(
|
|
21216
|
+
open(
|
|
21217
|
+
/**
|
|
21218
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
21219
|
+
* control.
|
|
21220
|
+
*/
|
|
21221
|
+
oDomRef: HTMLElement
|
|
21222
|
+
): void;
|
|
21223
|
+
/**
|
|
21224
|
+
* @SINCE 1.105
|
|
21225
|
+
*
|
|
21226
|
+
* Opens the value help popover. The popover is positioned relatively to the control given as `oDomRef`
|
|
21227
|
+
* parameter on tablet or desktop and is full screen on phone. Therefore the control parameter is only used
|
|
21228
|
+
* on tablet or desktop and is ignored on phone.
|
|
21229
|
+
*
|
|
21230
|
+
* Note: use this method to open the value help popover only when the `hideInput` property is set to `true`.
|
|
21231
|
+
* Please consider opening of the value help popover by another control only in scenarios that comply with
|
|
21232
|
+
* Fiori guidelines. For example, opening the value help popover by another popover is not recommended.
|
|
21233
|
+
* The application developer should implement the following accessibility attributes to the opening control:
|
|
21234
|
+
* a text or tooltip that describes the action (example: "Open Dynamic Date Range"), and aria-haspopup attribute
|
|
21235
|
+
* with value of `true`.
|
|
21236
|
+
*/
|
|
21237
|
+
openBy(
|
|
21238
|
+
/**
|
|
21239
|
+
* DOM reference of the opening control. On tablet or desktop, the popover is positioned relatively to this
|
|
21240
|
+
* control.
|
|
21241
|
+
*/
|
|
21242
|
+
oDomRef: HTMLElement
|
|
21243
|
+
): void;
|
|
21184
21244
|
/**
|
|
21185
21245
|
* @SINCE 1.92
|
|
21186
21246
|
*
|
|
@@ -21300,6 +21360,33 @@ declare module "sap/m/DynamicDateRange" {
|
|
|
21300
21360
|
*/
|
|
21301
21361
|
oFormatter: object
|
|
21302
21362
|
): this;
|
|
21363
|
+
/**
|
|
21364
|
+
* @SINCE 1.105
|
|
21365
|
+
*
|
|
21366
|
+
* Sets a new value for property {@link #getHideInput hideInput}.
|
|
21367
|
+
*
|
|
21368
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
21369
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
21370
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
21371
|
+
* must be provided as parameter.
|
|
21372
|
+
*
|
|
21373
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
21374
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
21375
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
21376
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
21377
|
+
*
|
|
21378
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
21379
|
+
*
|
|
21380
|
+
* Default value is `false`.
|
|
21381
|
+
*
|
|
21382
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
21383
|
+
*/
|
|
21384
|
+
setHideInput(
|
|
21385
|
+
/**
|
|
21386
|
+
* New value for property `hideInput`
|
|
21387
|
+
*/
|
|
21388
|
+
bHideInput?: boolean
|
|
21389
|
+
): this;
|
|
21303
21390
|
/**
|
|
21304
21391
|
* @SINCE 1.92
|
|
21305
21392
|
*
|
|
@@ -21551,6 +21638,21 @@ declare module "sap/m/DynamicDateRange" {
|
|
|
21551
21638
|
*/
|
|
21552
21639
|
options?: string[] | PropertyBindingInfo | `{${string}}`;
|
|
21553
21640
|
|
|
21641
|
+
/**
|
|
21642
|
+
* @SINCE 1.105
|
|
21643
|
+
*
|
|
21644
|
+
* Determines whether the input field of the control is hidden or visible. When set to `true`, the input
|
|
21645
|
+
* field becomes invisible and there is no way to open the value help popover. In that case it can be opened
|
|
21646
|
+
* by another control through calling of control's `openBy` method, and the opening control's DOM reference
|
|
21647
|
+
* must be provided as parameter.
|
|
21648
|
+
*
|
|
21649
|
+
* Note: Since the Dynamic Date Range is not responsible for accessibility attributes of the control which
|
|
21650
|
+
* opens its popover, those attributes should be added by the application developer. The following is recommended
|
|
21651
|
+
* to be added to the opening control: a text or tooltip that describes the action (example: "Open Dynamic
|
|
21652
|
+
* Date Range"), and also aria-haspopup attribute with value of `true`.
|
|
21653
|
+
*/
|
|
21654
|
+
hideInput?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
21655
|
+
|
|
21554
21656
|
/**
|
|
21555
21657
|
* @SINCE 1.92
|
|
21556
21658
|
*
|
|
@@ -21635,6 +21737,17 @@ declare module "sap/m/DynamicDateUtil" {
|
|
|
21635
21737
|
*/
|
|
21636
21738
|
aOptionKeys: any[]
|
|
21637
21739
|
): object[];
|
|
21740
|
+
/**
|
|
21741
|
+
* Returns a date in machine timezone setting, removing the offset added by the application configuration.
|
|
21742
|
+
*
|
|
21743
|
+
* @returns A local JS date with removed offset
|
|
21744
|
+
*/
|
|
21745
|
+
removeTimezoneOffset(
|
|
21746
|
+
/**
|
|
21747
|
+
* A local JS date with added offset
|
|
21748
|
+
*/
|
|
21749
|
+
oDate: Date
|
|
21750
|
+
): Date;
|
|
21638
21751
|
/**
|
|
21639
21752
|
* Calculates a date range from a provided object in the format of the DynamicDateRange's value.
|
|
21640
21753
|
*
|
|
@@ -23511,7 +23624,7 @@ declare module "sap/m/FacetFilterList" {
|
|
|
23511
23624
|
*
|
|
23512
23625
|
* @returns Object with the selected keys
|
|
23513
23626
|
*/
|
|
23514
|
-
getSelectedKeys():
|
|
23627
|
+
getSelectedKeys(): Record<string, string>;
|
|
23515
23628
|
/**
|
|
23516
23629
|
* Gets current value of property {@link #getSequence sequence}.
|
|
23517
23630
|
*
|
|
@@ -23720,9 +23833,9 @@ declare module "sap/m/FacetFilterList" {
|
|
|
23720
23833
|
*
|
|
23721
23834
|
* Used to pre-select FacetFilterItems, such as when restoring FacetFilterList selections from a variant.
|
|
23722
23835
|
* Keys are cached separately from the actual FacetFilterItems so that they remain even when the physical
|
|
23723
|
-
* items are removed by filtering or sorting. If
|
|
23724
|
-
* all
|
|
23725
|
-
* All other items in the list will be deselected.
|
|
23836
|
+
* items are removed by filtering or sorting. If oKeys is `undefined`, `null`, or {} (empty object) then
|
|
23837
|
+
* all items will be deselected. After this method completes, only those items with matching keys will be
|
|
23838
|
+
* selected. All other items in the list will be deselected.
|
|
23726
23839
|
*/
|
|
23727
23840
|
setSelectedKeys(
|
|
23728
23841
|
/**
|
|
@@ -23732,7 +23845,7 @@ declare module "sap/m/FacetFilterList" {
|
|
|
23732
23845
|
* or FacetFilter summary bar is displayed. If no property value is set then the property key is used for
|
|
23733
23846
|
* the text.
|
|
23734
23847
|
*/
|
|
23735
|
-
oKeys:
|
|
23848
|
+
oKeys: Record<string, string>
|
|
23736
23849
|
): void;
|
|
23737
23850
|
/**
|
|
23738
23851
|
* Sets a new value for property {@link #getSequence sequence}.
|
|
@@ -31505,9 +31618,15 @@ declare module "sap/m/IconTabBar" {
|
|
|
31505
31618
|
*/
|
|
31506
31619
|
getShowOverflowSelectList(): boolean;
|
|
31507
31620
|
/**
|
|
31508
|
-
*
|
|
31621
|
+
* @deprecated (since 1.15.0) - Regarding to changes of this control this property is not needed anymore.
|
|
31509
31622
|
*
|
|
31510
|
-
*
|
|
31623
|
+
* Gets current value of property {@link #getShowSelection showSelection}.
|
|
31624
|
+
*
|
|
31625
|
+
* Defines whether the current selection should be visualized.
|
|
31626
|
+
*
|
|
31627
|
+
* Default value is `true`.
|
|
31628
|
+
*
|
|
31629
|
+
* @returns Value of property `showSelection`
|
|
31511
31630
|
*/
|
|
31512
31631
|
getShowSelection(): boolean;
|
|
31513
31632
|
/**
|
|
@@ -35644,7 +35763,7 @@ declare module "sap/m/Image" {
|
|
|
35644
35763
|
* Instance of the `LightBox` control or undefined
|
|
35645
35764
|
*/
|
|
35646
35765
|
oLightBox: LightBox | undefined
|
|
35647
|
-
):
|
|
35766
|
+
): this;
|
|
35648
35767
|
/**
|
|
35649
35768
|
* Sets a new value for property {@link #getHeight height}.
|
|
35650
35769
|
*
|
|
@@ -36185,6 +36304,8 @@ declare module "sap/m/ImageContent" {
|
|
|
36185
36304
|
declare module "sap/m/Input" {
|
|
36186
36305
|
import { default as InputBase, $InputBaseSettings } from "sap/m/InputBase";
|
|
36187
36306
|
|
|
36307
|
+
import { IAccessKeySupport, CSSSize, ID, URI } from "sap/ui/core/library";
|
|
36308
|
+
|
|
36188
36309
|
import Column from "sap/m/Column";
|
|
36189
36310
|
|
|
36190
36311
|
import Item from "sap/ui/core/Item";
|
|
@@ -36202,8 +36323,6 @@ declare module "sap/m/Input" {
|
|
|
36202
36323
|
|
|
36203
36324
|
import ListBase from "sap/m/ListBase";
|
|
36204
36325
|
|
|
36205
|
-
import { CSSSize, ID, URI } from "sap/ui/core/library";
|
|
36206
|
-
|
|
36207
36326
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
36208
36327
|
|
|
36209
36328
|
import { InputTextFormatMode, InputType } from "sap/m/library";
|
|
@@ -36268,7 +36387,8 @@ declare module "sap/m/Input" {
|
|
|
36268
36387
|
* - If a `selectedKey` is bound and the user types before the data is loaded, the user's input will
|
|
36269
36388
|
* be overwritten by the binding update.
|
|
36270
36389
|
*/
|
|
36271
|
-
export default class Input extends InputBase {
|
|
36390
|
+
export default class Input extends InputBase implements IAccessKeySupport {
|
|
36391
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
36272
36392
|
/**
|
|
36273
36393
|
* Constructor for a new `Input`.
|
|
36274
36394
|
*
|
|
@@ -36378,7 +36498,7 @@ declare module "sap/m/Input" {
|
|
|
36378
36498
|
*
|
|
36379
36499
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
36380
36500
|
*
|
|
36381
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
36501
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
36382
36502
|
*
|
|
36383
36503
|
* @returns Reference to `this` in order to allow method chaining
|
|
36384
36504
|
*/
|
|
@@ -36405,7 +36525,7 @@ declare module "sap/m/Input" {
|
|
|
36405
36525
|
*
|
|
36406
36526
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
36407
36527
|
*
|
|
36408
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
36528
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
36409
36529
|
*
|
|
36410
36530
|
* @returns Reference to `this` in order to allow method chaining
|
|
36411
36531
|
*/
|
|
@@ -38456,7 +38576,7 @@ declare module "sap/m/Input" {
|
|
|
38456
38576
|
/**
|
|
38457
38577
|
* Fired when the value of the input is changed by user interaction - each keystroke, delete, paste, etc.
|
|
38458
38578
|
*
|
|
38459
|
-
* **Note:** Browsing autocomplete suggestions does not
|
|
38579
|
+
* **Note:** Browsing autocomplete suggestions does not fire the event.
|
|
38460
38580
|
*/
|
|
38461
38581
|
liveChange?: (oEvent: Event) => void;
|
|
38462
38582
|
|
|
@@ -40534,6 +40654,7 @@ declare module "sap/m/Label" {
|
|
|
40534
40654
|
import {
|
|
40535
40655
|
Label as Label1,
|
|
40536
40656
|
IShrinkable,
|
|
40657
|
+
IAccessKeySupport,
|
|
40537
40658
|
ID,
|
|
40538
40659
|
TextAlign,
|
|
40539
40660
|
TextDirection,
|
|
@@ -40572,9 +40693,10 @@ declare module "sap/m/Label" {
|
|
|
40572
40693
|
*/
|
|
40573
40694
|
export default class Label
|
|
40574
40695
|
extends Control
|
|
40575
|
-
implements Label1, IShrinkable, IOverflowToolbarContent {
|
|
40696
|
+
implements Label1, IShrinkable, IAccessKeySupport, IOverflowToolbarContent {
|
|
40576
40697
|
__implements__sap_ui_core_Label: boolean;
|
|
40577
40698
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
40699
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
40578
40700
|
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
40579
40701
|
/**
|
|
40580
40702
|
* Constructor for a new Label.
|
|
@@ -41565,6 +41687,7 @@ declare module "sap/m/Link" {
|
|
|
41565
41687
|
IShrinkable,
|
|
41566
41688
|
IFormContent,
|
|
41567
41689
|
ITitleContent,
|
|
41690
|
+
IAccessKeySupport,
|
|
41568
41691
|
ID,
|
|
41569
41692
|
aria,
|
|
41570
41693
|
URI,
|
|
@@ -41607,10 +41730,11 @@ declare module "sap/m/Link" {
|
|
|
41607
41730
|
*/
|
|
41608
41731
|
export default class Link
|
|
41609
41732
|
extends Control
|
|
41610
|
-
implements IShrinkable, IFormContent, ITitleContent {
|
|
41733
|
+
implements IShrinkable, IFormContent, ITitleContent, IAccessKeySupport {
|
|
41611
41734
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
41612
41735
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
41613
41736
|
__implements__sap_ui_core_ITitleContent: boolean;
|
|
41737
|
+
__implements__sap_ui_core_IAccessKeySupport: boolean;
|
|
41614
41738
|
/**
|
|
41615
41739
|
* Constructor for a new `Link`.
|
|
41616
41740
|
*
|
|
@@ -43513,6 +43637,20 @@ declare module "sap/m/ListBase" {
|
|
|
43513
43637
|
*/
|
|
43514
43638
|
oListener?: object
|
|
43515
43639
|
): this;
|
|
43640
|
+
/**
|
|
43641
|
+
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
43642
|
+
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
43643
|
+
*/
|
|
43644
|
+
enhanceAccessibilityState(
|
|
43645
|
+
/**
|
|
43646
|
+
* The Control that gets rendered by the RenderManager
|
|
43647
|
+
*/
|
|
43648
|
+
oElement: Control,
|
|
43649
|
+
/**
|
|
43650
|
+
* The mapping of "aria-" prefixed attributes
|
|
43651
|
+
*/
|
|
43652
|
+
mAriaProps: object
|
|
43653
|
+
): void;
|
|
43516
43654
|
/**
|
|
43517
43655
|
* @SINCE 1.54
|
|
43518
43656
|
*
|
|
@@ -43826,7 +43964,11 @@ declare module "sap/m/ListBase" {
|
|
|
43826
43964
|
* Returns growing information as object with "actual" and "total" keys. Note: This function returns "null"
|
|
43827
43965
|
* if "growing" feature is disabled.
|
|
43828
43966
|
*/
|
|
43829
|
-
getGrowingInfo():
|
|
43967
|
+
getGrowingInfo(): {
|
|
43968
|
+
actual: int;
|
|
43969
|
+
|
|
43970
|
+
total: int;
|
|
43971
|
+
} | null;
|
|
43830
43972
|
/**
|
|
43831
43973
|
* @SINCE 1.16.0
|
|
43832
43974
|
*
|
|
@@ -55345,7 +55487,7 @@ declare module "sap/m/NavContainer" {
|
|
|
55345
55487
|
/**
|
|
55346
55488
|
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
55347
55489
|
*/
|
|
55348
|
-
vPageIdOrControl: string,
|
|
55490
|
+
vPageIdOrControl: string | Control,
|
|
55349
55491
|
/**
|
|
55350
55492
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right),
|
|
55351
55493
|
* "baseSlide", "fade", "flip", and "show" and the names of any registered custom transitions.
|
|
@@ -64305,20 +64447,20 @@ declare module "sap/m/p13n/BasePanel" {
|
|
|
64305
64447
|
}
|
|
64306
64448
|
|
|
64307
64449
|
declare module "sap/m/p13n/Engine" {
|
|
64308
|
-
import Metadata from "sap/ui/base/Metadata";
|
|
64309
|
-
|
|
64310
64450
|
import Control from "sap/ui/core/Control";
|
|
64311
64451
|
|
|
64452
|
+
import Metadata from "sap/ui/base/Metadata";
|
|
64453
|
+
|
|
64312
64454
|
/**
|
|
64313
64455
|
* @SINCE 1.104
|
|
64314
64456
|
* @EXPERIMENTAL (since 1.104)
|
|
64315
64457
|
*
|
|
64316
|
-
* The `Engine` offers personalization
|
|
64458
|
+
* The `Engine` offers personalization capabilities by registering a control instance for modification such
|
|
64317
64459
|
* as:
|
|
64318
64460
|
*
|
|
64319
64461
|
*
|
|
64320
64462
|
* - `sap.m.p13n.Popup` initialization
|
|
64321
|
-
* - Storing personalization states by
|
|
64463
|
+
* - Storing personalization states by choosing the desired persistence layer
|
|
64322
64464
|
* - State appliance considering the persistence layer
|
|
64323
64465
|
*
|
|
64324
64466
|
* The Engine should be used whenever personalization should be enabled by considering a certain persistence
|
|
@@ -64336,7 +64478,7 @@ declare module "sap/m/p13n/Engine" {
|
|
|
64336
64478
|
*
|
|
64337
64479
|
*
|
|
64338
64480
|
* - {@link sap.m.p13n.modification.FlexModificationHandler FlexModificationHandler}: Can be used in combination
|
|
64339
|
-
* with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl`
|
|
64481
|
+
* with `sap.ui.fl.variants.VariantManagement` to persist state in variant using `sap.ui.fl` capabilities.
|
|
64340
64482
|
*
|
|
64341
64483
|
* - {@link sap.m.p13n.modification.LocalStorageModificationHandler LocalStorageModificationHandler}:
|
|
64342
64484
|
* can be used to store personalization state in the local storage
|
|
@@ -64385,7 +64527,7 @@ declare module "sap/m/p13n/Engine" {
|
|
|
64385
64527
|
/**
|
|
64386
64528
|
* The registered control instance
|
|
64387
64529
|
*/
|
|
64388
|
-
oControl:
|
|
64530
|
+
oControl: Control,
|
|
64389
64531
|
/**
|
|
64390
64532
|
* The state object
|
|
64391
64533
|
*/
|
|
@@ -64419,13 +64561,13 @@ declare module "sap/m/p13n/Engine" {
|
|
|
64419
64561
|
/**
|
|
64420
64562
|
* The registered control instance
|
|
64421
64563
|
*/
|
|
64422
|
-
oControl:
|
|
64564
|
+
oControl: Control
|
|
64423
64565
|
): void;
|
|
64424
64566
|
/**
|
|
64425
64567
|
* @EXPERIMENTAL (since 1.104)
|
|
64426
64568
|
*
|
|
64427
64569
|
* Removes a previously attached state change event handler from the `StateHandlerRegistry` class. The passed
|
|
64428
|
-
* parameters must match those used for registration with {@link Engine#attachStateChange} beforehand.
|
|
64570
|
+
* parameters must match those used for registration with {@link sap.m.p13n.Engine#attachStateChange} beforehand.
|
|
64429
64571
|
*
|
|
64430
64572
|
* @returns Returns `this` to allow method chaining
|
|
64431
64573
|
*/
|
|
@@ -64443,9 +64585,9 @@ declare module "sap/m/p13n/Engine" {
|
|
|
64443
64585
|
*/
|
|
64444
64586
|
register(
|
|
64445
64587
|
/**
|
|
64446
|
-
* The control
|
|
64588
|
+
* The control instance to be registered for adaptation
|
|
64447
64589
|
*/
|
|
64448
|
-
oControl:
|
|
64590
|
+
oControl: Control,
|
|
64449
64591
|
/**
|
|
64450
64592
|
* The config object providing key value pairs of keys and `sap.m.p13n.*Controller` classes.
|
|
64451
64593
|
*/
|
|
@@ -64462,13 +64604,15 @@ declare module "sap/m/p13n/Engine" {
|
|
|
64462
64604
|
/**
|
|
64463
64605
|
* The according control instance.
|
|
64464
64606
|
*/
|
|
64465
|
-
oControl:
|
|
64607
|
+
oControl: Control,
|
|
64466
64608
|
/**
|
|
64467
64609
|
* The key for the affected config.
|
|
64468
64610
|
*/
|
|
64469
64611
|
aKeys: string
|
|
64470
64612
|
): Promise<any>;
|
|
64471
64613
|
/**
|
|
64614
|
+
* @EXPERIMENTAL (since 1.104)
|
|
64615
|
+
*
|
|
64472
64616
|
* Retrieves the externalized state for a given control instance, after all necessary changes have been
|
|
64473
64617
|
* applied (e.g. modification handler appliance). After the returned Promise has been resolved, the returned
|
|
64474
64618
|
* State is in sync with the according state object of the control.
|
|
@@ -64509,7 +64653,7 @@ declare module "sap/m/p13n/Engine" {
|
|
|
64509
64653
|
* The source control to be used by the `sap.m.p13n.Popup` control (only necessary in case the mode is set
|
|
64510
64654
|
* to `ResponsivePopover`)
|
|
64511
64655
|
*/
|
|
64512
|
-
source?:
|
|
64656
|
+
source?: Control;
|
|
64513
64657
|
/**
|
|
64514
64658
|
* The mode to be used by the `sap.m.p13n.Popup` control
|
|
64515
64659
|
*/
|
|
@@ -77538,8 +77682,8 @@ declare module "sap/m/PlanningCalendar" {
|
|
|
77538
77682
|
/**
|
|
77539
77683
|
* the width to be set to the PlanningCalendar
|
|
77540
77684
|
*/
|
|
77541
|
-
sWidth:
|
|
77542
|
-
):
|
|
77685
|
+
sWidth: CSSSize
|
|
77686
|
+
): this;
|
|
77543
77687
|
}
|
|
77544
77688
|
/**
|
|
77545
77689
|
* A comparison function for appointments.
|
|
@@ -88009,6 +88153,10 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
88009
88153
|
|
|
88010
88154
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
88011
88155
|
|
|
88156
|
+
import Popover from "sap/m/Popover";
|
|
88157
|
+
|
|
88158
|
+
import Dialog from "sap/m/Dialog";
|
|
88159
|
+
|
|
88012
88160
|
import {
|
|
88013
88161
|
PropertyBindingInfo,
|
|
88014
88162
|
AggregationBindingInfo,
|
|
@@ -88729,10 +88877,10 @@ declare module "sap/m/ResponsivePopover" {
|
|
|
88729
88877
|
openBy(
|
|
88730
88878
|
/**
|
|
88731
88879
|
* When this control is displayed on tablet or desktop, the ResponsivePopover is positioned relative to
|
|
88732
|
-
* this control.
|
|
88880
|
+
* this UI5 control or DOM element.
|
|
88733
88881
|
*/
|
|
88734
|
-
oParent:
|
|
88735
|
-
):
|
|
88882
|
+
oParent: Control | HTMLElement
|
|
88883
|
+
): Popover | Dialog;
|
|
88736
88884
|
/**
|
|
88737
88885
|
* Removes all the controls in the association named {@link #getAriaDescribedBy ariaDescribedBy}.
|
|
88738
88886
|
*
|
|
@@ -129597,7 +129745,7 @@ declare module "sap/m/upload/UploadSet" {
|
|
|
129597
129745
|
/**
|
|
129598
129746
|
* The UploadSetItem to update with a new version. This parameter is mandatory.
|
|
129599
129747
|
*/
|
|
129600
|
-
item:
|
|
129748
|
+
item: UploadSetItem
|
|
129601
129749
|
): this;
|
|
129602
129750
|
/**
|
|
129603
129751
|
* Attaches all necessary handlers to the given uploader instance, so that the progress and status of the
|
|
@@ -141012,6 +141160,8 @@ declare namespace sap {
|
|
|
141012
141160
|
|
|
141013
141161
|
"sap/m/Table": undefined;
|
|
141014
141162
|
|
|
141163
|
+
"sap/m/table/Util": undefined;
|
|
141164
|
+
|
|
141015
141165
|
"sap/m/TablePersoController": undefined;
|
|
141016
141166
|
|
|
141017
141167
|
"sap/m/TablePersoDialog": undefined;
|
package/types/sap.tnt.d.ts
CHANGED