@openui5/types 1.143.1 → 1.145.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/index.d.ts +1 -1
- package/types/sap.f.d.ts +4 -4
- package/types/sap.m.d.ts +326 -79
- package/types/sap.tnt.d.ts +19 -7
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +3469 -306
- package/types/sap.ui.core.d.ts +757 -261
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +9 -5
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +18 -18
- package/types/sap.ui.mdc.d.ts +482 -116
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +3 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +7 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +164 -4
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +3 -1
- package/types/sap.ui.webc.fiori.d.ts +31 -1
- package/types/sap.ui.webc.main.d.ts +70 -1
- package/types/sap.uxap.d.ts +18 -8
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/f/library" {
|
|
4
4
|
export interface IShellBar {
|
|
@@ -1778,7 +1778,7 @@ declare module "sap/m/library" {
|
|
|
1778
1778
|
*/
|
|
1779
1779
|
L = "L",
|
|
1780
1780
|
/**
|
|
1781
|
-
* Small: Recommended for smaller controls, such as {@link sap.m.Switch} or {@link sap.m.
|
|
1781
|
+
* Small: Recommended for smaller controls, such as {@link sap.m.Switch} or {@link sap.m.CheckBox}. If there
|
|
1782
1782
|
* is limited space, only the label is wrapped. The input control is always right-aligned horizontally and
|
|
1783
1783
|
* middle-aligned vertically.
|
|
1784
1784
|
*/
|
|
@@ -3996,6 +3996,12 @@ declare module "sap/m/library" {
|
|
|
3996
3996
|
* @since 1.54
|
|
3997
3997
|
*/
|
|
3998
3998
|
export enum TimePickerMaskMode {
|
|
3999
|
+
/**
|
|
4000
|
+
* The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
|
|
4001
|
+
* fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
|
|
4002
|
+
* may lead to unpredictable behavior.
|
|
4003
|
+
*/
|
|
4004
|
+
Enforce = "Enforce",
|
|
3999
4005
|
/**
|
|
4000
4006
|
* The mask is disabled for the `sap.m.TimePicker`.
|
|
4001
4007
|
*/
|
|
@@ -4157,7 +4163,7 @@ declare module "sap/m/library" {
|
|
|
4157
4163
|
Uploading = "Uploading",
|
|
4158
4164
|
}
|
|
4159
4165
|
/**
|
|
4160
|
-
* Type of the upload {@link sap.m.UploadSetItem}.
|
|
4166
|
+
* Type of the upload {@link sap.m.upload.UploadSetItem}.
|
|
4161
4167
|
*
|
|
4162
4168
|
* This enum is part of the 'sap/m/library' module export and must be accessed by the property 'UploadType'.
|
|
4163
4169
|
*/
|
|
@@ -4539,6 +4545,20 @@ declare module "sap/m/library" {
|
|
|
4539
4545
|
* @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
|
|
4540
4546
|
*/
|
|
4541
4547
|
getVerticalScrolling?(): boolean;
|
|
4548
|
+
/**
|
|
4549
|
+
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
|
|
4550
|
+
* the popup is closed
|
|
4551
|
+
*
|
|
4552
|
+
* @since 1.145
|
|
4553
|
+
*
|
|
4554
|
+
* @returns A Promise that is fullfilled if the panel is ready to be closed
|
|
4555
|
+
*/
|
|
4556
|
+
onBeforeClose?(
|
|
4557
|
+
/**
|
|
4558
|
+
* reason for closing the container
|
|
4559
|
+
*/
|
|
4560
|
+
sReason: string
|
|
4561
|
+
): Promise<any>;
|
|
4542
4562
|
/**
|
|
4543
4563
|
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
|
|
4544
4564
|
* reset on the panel
|
|
@@ -4671,7 +4691,7 @@ declare module "sap/m/library" {
|
|
|
4671
4691
|
*/
|
|
4672
4692
|
L = "L",
|
|
4673
4693
|
/**
|
|
4674
|
-
* Small: Recommended for smaller controls, such as {@link sap.m.Switch} or {@link sap.m.
|
|
4694
|
+
* Small: Recommended for smaller controls, such as {@link sap.m.Switch} or {@link sap.m.CheckBox}. If there
|
|
4675
4695
|
* is limited space, only the label is wrapped. The input control is always right-aligned horizontally and
|
|
4676
4696
|
* middle-aligned vertically.
|
|
4677
4697
|
*/
|
|
@@ -14767,7 +14787,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14767
14787
|
* The last selected color in the ColorPalette.
|
|
14768
14788
|
*
|
|
14769
14789
|
* @since 1.122
|
|
14770
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14771
14790
|
*
|
|
14772
14791
|
* @returns Value of property `selectedColor`
|
|
14773
14792
|
*/
|
|
@@ -14811,7 +14830,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14811
14830
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
14812
14831
|
*
|
|
14813
14832
|
* @since 1.122
|
|
14814
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14815
14833
|
*
|
|
14816
14834
|
* @returns Reference to `this` in order to allow method chaining
|
|
14817
14835
|
*/
|
|
@@ -14835,7 +14853,6 @@ declare module "sap/m/ColorPalette" {
|
|
|
14835
14853
|
* The last selected color in the ColorPalette.
|
|
14836
14854
|
*
|
|
14837
14855
|
* @since 1.122
|
|
14838
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
14839
14856
|
*/
|
|
14840
14857
|
selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
14841
14858
|
|
|
@@ -15223,7 +15240,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15223
15240
|
* The last selected color in the ColorPalette.
|
|
15224
15241
|
*
|
|
15225
15242
|
* @since 1.122
|
|
15226
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15227
15243
|
*
|
|
15228
15244
|
* @returns Value of property `selectedColor`
|
|
15229
15245
|
*/
|
|
@@ -15356,7 +15372,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15356
15372
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
15357
15373
|
*
|
|
15358
15374
|
* @since 1.122
|
|
15359
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15360
15375
|
*
|
|
15361
15376
|
* @returns Reference to `this` in order to allow method chaining
|
|
15362
15377
|
*/
|
|
@@ -15442,7 +15457,6 @@ declare module "sap/m/ColorPalettePopover" {
|
|
|
15442
15457
|
* The last selected color in the ColorPalette.
|
|
15443
15458
|
*
|
|
15444
15459
|
* @since 1.122
|
|
15445
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
15446
15460
|
*/
|
|
15447
15461
|
selectedColor?: CSSColor | PropertyBindingInfo | `{${string}}`;
|
|
15448
15462
|
|
|
@@ -19298,8 +19312,9 @@ declare module "sap/m/DatePicker" {
|
|
|
19298
19312
|
* binding the `value` property by using types
|
|
19299
19313
|
* ```javascript
|
|
19300
19314
|
*
|
|
19315
|
+
* // UI5Date imported from sap/ui/core/date/UI5Date
|
|
19301
19316
|
* new sap.ui.model.json.JSONModel({
|
|
19302
|
-
* date:
|
|
19317
|
+
* date: UI5Date.getInstance(2022,10,10,10,10,10)
|
|
19303
19318
|
* });
|
|
19304
19319
|
*
|
|
19305
19320
|
* new sap.m.DatePicker({
|
|
@@ -22164,7 +22179,10 @@ declare module "sap/m/DateTimePicker" {
|
|
|
22164
22179
|
* binding the `value` property by using types
|
|
22165
22180
|
* ```javascript
|
|
22166
22181
|
*
|
|
22167
|
-
*
|
|
22182
|
+
* // UI5Date imported from sap/ui/core/date/UI5Date
|
|
22183
|
+
* new sap.ui.model.json.JSONModel({
|
|
22184
|
+
* date: UI5Date.getInstance(2022,10,10,12,10,10)
|
|
22185
|
+
* });
|
|
22168
22186
|
*
|
|
22169
22187
|
* new sap.m.DateTimePicker({
|
|
22170
22188
|
* value: {
|
|
@@ -39792,6 +39810,10 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
39792
39810
|
* and the available space of its parent container. Some of the structural elements are displayed differently
|
|
39793
39811
|
* or are omitted in the different breakpoint sizes (XS, S, M, L).
|
|
39794
39812
|
*
|
|
39813
|
+
* **Note:** When using automatic sizing (see {@link #getIllustrationSize illustrationSize} property), ensure
|
|
39814
|
+
* the parent container has a constrained width (for example, an explicit `width`, a `max-width`, or a width
|
|
39815
|
+
* inherited from its parent). Containers without width constraints can cause flickering during resize operations.
|
|
39816
|
+
*
|
|
39795
39817
|
* @since 1.98
|
|
39796
39818
|
*/
|
|
39797
39819
|
export default class IllustratedMessage extends Control {
|
|
@@ -39960,7 +39982,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
39960
39982
|
*
|
|
39961
39983
|
* Default value is `false`.
|
|
39962
39984
|
*
|
|
39963
|
-
* @
|
|
39985
|
+
* @since 1.138
|
|
39964
39986
|
*
|
|
39965
39987
|
* @returns Value of property `decorative`
|
|
39966
39988
|
*/
|
|
@@ -40042,6 +40064,13 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
40042
40064
|
* As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
|
|
40043
40065
|
* displayed differently on the different breakpoints/illustration sizes.
|
|
40044
40066
|
*
|
|
40067
|
+
* When set to `Auto` (default), the illustration size is determined by the available space in the parent
|
|
40068
|
+
* container.
|
|
40069
|
+
*
|
|
40070
|
+
* **Note:** Auto sizing requires the parent container to have a width constraint — for example, an explicit
|
|
40071
|
+
* `width`, a `max-width`, or a width inherited from its parent. Containers without width constraints may
|
|
40072
|
+
* cause flickering during resize operations.
|
|
40073
|
+
*
|
|
40045
40074
|
* Default value is `Auto`.
|
|
40046
40075
|
*
|
|
40047
40076
|
* @since 1.98
|
|
@@ -40317,6 +40346,13 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
40317
40346
|
* As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
|
|
40318
40347
|
* displayed differently on the different breakpoints/illustration sizes.
|
|
40319
40348
|
*
|
|
40349
|
+
* When set to `Auto` (default), the illustration size is determined by the available space in the parent
|
|
40350
|
+
* container.
|
|
40351
|
+
*
|
|
40352
|
+
* **Note:** Auto sizing requires the parent container to have a width constraint — for example, an explicit
|
|
40353
|
+
* `width`, a `max-width`, or a width inherited from its parent. Containers without width constraints may
|
|
40354
|
+
* cause flickering during resize operations.
|
|
40355
|
+
*
|
|
40320
40356
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40321
40357
|
*
|
|
40322
40358
|
* Default value is `Auto`.
|
|
@@ -40464,6 +40500,13 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
40464
40500
|
* As `IllustratedMessage` adapts itself around the `Illustration`, the other elements of the control are
|
|
40465
40501
|
* displayed differently on the different breakpoints/illustration sizes.
|
|
40466
40502
|
*
|
|
40503
|
+
* When set to `Auto` (default), the illustration size is determined by the available space in the parent
|
|
40504
|
+
* container.
|
|
40505
|
+
*
|
|
40506
|
+
* **Note:** Auto sizing requires the parent container to have a width constraint — for example, an explicit
|
|
40507
|
+
* `width`, a `max-width`, or a width inherited from its parent. Containers without width constraints may
|
|
40508
|
+
* cause flickering during resize operations.
|
|
40509
|
+
*
|
|
40467
40510
|
* @since 1.98
|
|
40468
40511
|
*/
|
|
40469
40512
|
illustrationSize?:
|
|
@@ -40530,7 +40573,7 @@ declare module "sap/m/IllustratedMessage" {
|
|
|
40530
40573
|
* When set to true, the attributes `role="presentation"` and `aria-hidden="true"` are applied to the SVG
|
|
40531
40574
|
* element.
|
|
40532
40575
|
*
|
|
40533
|
-
* @
|
|
40576
|
+
* @since 1.138
|
|
40534
40577
|
*/
|
|
40535
40578
|
decorative?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
40536
40579
|
|
|
@@ -41140,7 +41183,7 @@ declare module "sap/m/Illustration" {
|
|
|
41140
41183
|
*
|
|
41141
41184
|
* Default value is `false`.
|
|
41142
41185
|
*
|
|
41143
|
-
* @
|
|
41186
|
+
* @since 1.138
|
|
41144
41187
|
*
|
|
41145
41188
|
* @returns Value of property `decorative`
|
|
41146
41189
|
*/
|
|
@@ -41226,7 +41269,7 @@ declare module "sap/m/Illustration" {
|
|
|
41226
41269
|
*
|
|
41227
41270
|
* Default value is `false`.
|
|
41228
41271
|
*
|
|
41229
|
-
* @
|
|
41272
|
+
* @since 1.138
|
|
41230
41273
|
*
|
|
41231
41274
|
* @returns Reference to `this` in order to allow method chaining
|
|
41232
41275
|
*/
|
|
@@ -41316,7 +41359,7 @@ declare module "sap/m/Illustration" {
|
|
|
41316
41359
|
/**
|
|
41317
41360
|
* Defines whether the illustration is decorative.
|
|
41318
41361
|
*
|
|
41319
|
-
* @
|
|
41362
|
+
* @since 1.138
|
|
41320
41363
|
*/
|
|
41321
41364
|
decorative?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
41322
41365
|
|
|
@@ -52154,7 +52197,8 @@ declare module "sap/m/ListBase" {
|
|
|
52154
52197
|
* will let the table scroll to the top.
|
|
52155
52198
|
* - A transparent toolbar design is not supported for sticky bars. The toolbar will automatically get
|
|
52156
52199
|
* an intransparent background color.
|
|
52157
|
-
* - This feature supports only the default height of the toolbar control.
|
|
52200
|
+
* - This feature supports only the default height of the toolbar control and the column headers.
|
|
52201
|
+
* - When sticky group headers are enabled, wrapping in the column headers is not supported.
|
|
52158
52202
|
*
|
|
52159
52203
|
* @since 1.58
|
|
52160
52204
|
*
|
|
@@ -52896,7 +52940,8 @@ declare module "sap/m/ListBase" {
|
|
|
52896
52940
|
* will let the table scroll to the top.
|
|
52897
52941
|
* - A transparent toolbar design is not supported for sticky bars. The toolbar will automatically get
|
|
52898
52942
|
* an intransparent background color.
|
|
52899
|
-
* - This feature supports only the default height of the toolbar control.
|
|
52943
|
+
* - This feature supports only the default height of the toolbar control and the column headers.
|
|
52944
|
+
* - When sticky group headers are enabled, wrapping in the column headers is not supported.
|
|
52900
52945
|
*
|
|
52901
52946
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
52902
52947
|
*
|
|
@@ -53184,7 +53229,8 @@ declare module "sap/m/ListBase" {
|
|
|
53184
53229
|
* will let the table scroll to the top.
|
|
53185
53230
|
* - A transparent toolbar design is not supported for sticky bars. The toolbar will automatically get
|
|
53186
53231
|
* an intransparent background color.
|
|
53187
|
-
* - This feature supports only the default height of the toolbar control.
|
|
53232
|
+
* - This feature supports only the default height of the toolbar control and the column headers.
|
|
53233
|
+
* - When sticky group headers are enabled, wrapping in the column headers is not supported.
|
|
53188
53234
|
*
|
|
53189
53235
|
* @since 1.58
|
|
53190
53236
|
*/
|
|
@@ -56070,7 +56116,7 @@ declare module "sap/m/Menu" {
|
|
|
56070
56116
|
/**
|
|
56071
56117
|
* Returns an array containing the selected menu items. **Note:** Only items with `selected` property set
|
|
56072
56118
|
* that are members of `MenuItemGroup` with `ItemSelectionMode` property set to {@link sap.ui.core.ItemSelectionMode.SingleSelect }
|
|
56073
|
-
* or {@link sap.ui.
|
|
56119
|
+
* or {@link sap.ui.core.ItemSelectionMode.MultiSelect}> are taken into account.
|
|
56074
56120
|
*
|
|
56075
56121
|
* @since 1.127.0
|
|
56076
56122
|
*
|
|
@@ -57429,7 +57475,7 @@ declare module "sap/m/MenuItem" {
|
|
|
57429
57475
|
*
|
|
57430
57476
|
* Determines whether the `MenuItem` is selected. A selected `MenuItem` has a check mark rendered at its
|
|
57431
57477
|
* end. **Note: ** selection functionality works only if the menu item is a member of `MenuItemGroup` with
|
|
57432
|
-
* `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect} or {@link sap.ui.
|
|
57478
|
+
* `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect} or {@link sap.ui.core.ItemSelectionMode.MultiSelect}.
|
|
57433
57479
|
*
|
|
57434
57480
|
* Default value is `false`.
|
|
57435
57481
|
*
|
|
@@ -57807,7 +57853,7 @@ declare module "sap/m/MenuItem" {
|
|
|
57807
57853
|
/**
|
|
57808
57854
|
* Determines whether the `MenuItem` is selected. A selected `MenuItem` has a check mark rendered at its
|
|
57809
57855
|
* end. **Note: ** selection functionality works only if the menu item is a member of `MenuItemGroup` with
|
|
57810
|
-
* `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect} or {@link sap.ui.
|
|
57856
|
+
* `itemSelectionMode` set to {@link sap.ui.core.ItemSelectionMode.SingleSelect} or {@link sap.ui.core.ItemSelectionMode.MultiSelect}.
|
|
57811
57857
|
*
|
|
57812
57858
|
* @since 1.127.0
|
|
57813
57859
|
*/
|
|
@@ -58189,7 +58235,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58189
58235
|
*/
|
|
58190
58236
|
alert(
|
|
58191
58237
|
/**
|
|
58192
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58238
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58193
58239
|
* since version 1.30.4.
|
|
58194
58240
|
*/
|
|
58195
58241
|
vMessage: string,
|
|
@@ -58318,7 +58364,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58318
58364
|
*/
|
|
58319
58365
|
confirm(
|
|
58320
58366
|
/**
|
|
58321
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58367
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58322
58368
|
* since version 1.30.4.
|
|
58323
58369
|
*/
|
|
58324
58370
|
vMessage: string,
|
|
@@ -58444,7 +58490,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58444
58490
|
*/
|
|
58445
58491
|
error(
|
|
58446
58492
|
/**
|
|
58447
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58493
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58448
58494
|
* since version 1.30.4.
|
|
58449
58495
|
*/
|
|
58450
58496
|
vMessage: string,
|
|
@@ -58567,7 +58613,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58567
58613
|
*/
|
|
58568
58614
|
information(
|
|
58569
58615
|
/**
|
|
58570
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58616
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58571
58617
|
* since version 1.30.4.
|
|
58572
58618
|
*/
|
|
58573
58619
|
vMessage: string,
|
|
@@ -58695,7 +58741,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58695
58741
|
*/
|
|
58696
58742
|
show(
|
|
58697
58743
|
/**
|
|
58698
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58744
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58699
58745
|
* since version 1.30.4.
|
|
58700
58746
|
*/
|
|
58701
58747
|
vMessage: string,
|
|
@@ -58822,7 +58868,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58822
58868
|
*/
|
|
58823
58869
|
success(
|
|
58824
58870
|
/**
|
|
58825
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58871
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58826
58872
|
* since version 1.30.4.
|
|
58827
58873
|
*/
|
|
58828
58874
|
vMessage: string,
|
|
@@ -58945,7 +58991,7 @@ declare module "sap/m/MessageBox" {
|
|
|
58945
58991
|
*/
|
|
58946
58992
|
warning(
|
|
58947
58993
|
/**
|
|
58948
|
-
* Message to be displayed in the alert dialog. The usage of sap.core.Control as vMessage is deprecated
|
|
58994
|
+
* Message to be displayed in the alert dialog. The usage of sap.ui.core.Control as vMessage is deprecated
|
|
58949
58995
|
* since version 1.30.4.
|
|
58950
58996
|
*/
|
|
58951
58997
|
vMessage: string,
|
|
@@ -75574,8 +75620,6 @@ declare module "sap/m/OverflowToolbar" {
|
|
|
75574
75620
|
|
|
75575
75621
|
import { IBar } from "sap/m/library";
|
|
75576
75622
|
|
|
75577
|
-
import Control from "sap/ui/core/Control";
|
|
75578
|
-
|
|
75579
75623
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
75580
75624
|
|
|
75581
75625
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
@@ -75732,22 +75776,6 @@ declare module "sap/m/OverflowToolbar" {
|
|
|
75732
75776
|
* @since 1.40
|
|
75733
75777
|
*/
|
|
75734
75778
|
closeOverflow(): void;
|
|
75735
|
-
/**
|
|
75736
|
-
* This method is a hook for the RenderManager that gets called during the rendering of child Controls.
|
|
75737
|
-
* It allows to add, remove and update existing accessibility attributes (ARIA) of those controls.
|
|
75738
|
-
*
|
|
75739
|
-
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
75740
|
-
*/
|
|
75741
|
-
enhanceAccessibilityState(
|
|
75742
|
-
/**
|
|
75743
|
-
* The Control that gets rendered by the RenderManager
|
|
75744
|
-
*/
|
|
75745
|
-
oElement: Control,
|
|
75746
|
-
/**
|
|
75747
|
-
* The mapping of "aria-" prefixed attributes
|
|
75748
|
-
*/
|
|
75749
|
-
mAriaProps: object
|
|
75750
|
-
): void;
|
|
75751
75779
|
/**
|
|
75752
75780
|
* Gets current value of property {@link #getAsyncMode asyncMode}.
|
|
75753
75781
|
*
|
|
@@ -77337,6 +77365,8 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77337
77365
|
|
|
77338
77366
|
import { p13n, P13nPopupMode } from "sap/m/library";
|
|
77339
77367
|
|
|
77368
|
+
import Event from "sap/ui/base/Event";
|
|
77369
|
+
|
|
77340
77370
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
77341
77371
|
|
|
77342
77372
|
import { CSSSize } from "sap/ui/core/library";
|
|
@@ -77346,8 +77376,6 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77346
77376
|
AggregationBindingInfo,
|
|
77347
77377
|
} from "sap/ui/base/ManagedObject";
|
|
77348
77378
|
|
|
77349
|
-
import Event from "sap/ui/base/Event";
|
|
77350
|
-
|
|
77351
77379
|
/**
|
|
77352
77380
|
* This control can be used to show personalization-related content in different popup controls.
|
|
77353
77381
|
*
|
|
@@ -77491,6 +77519,53 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77491
77519
|
*/
|
|
77492
77520
|
oListener?: object
|
|
77493
77521
|
): this;
|
|
77522
|
+
/**
|
|
77523
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.p13n.Popup`.
|
|
77524
|
+
*
|
|
77525
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
77526
|
+
* otherwise it will be bound to this `sap.m.p13n.Popup` itself.
|
|
77527
|
+
*
|
|
77528
|
+
* This event is fired after the dialog has been opened.
|
|
77529
|
+
*
|
|
77530
|
+
*
|
|
77531
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
77532
|
+
*/
|
|
77533
|
+
attachOpen(
|
|
77534
|
+
/**
|
|
77535
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
77536
|
+
* object when firing the event
|
|
77537
|
+
*/
|
|
77538
|
+
oData: object,
|
|
77539
|
+
/**
|
|
77540
|
+
* The function to be called when the event occurs
|
|
77541
|
+
*/
|
|
77542
|
+
fnFunction: (p1: Event) => void,
|
|
77543
|
+
/**
|
|
77544
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.Popup` itself
|
|
77545
|
+
*/
|
|
77546
|
+
oListener?: object
|
|
77547
|
+
): this;
|
|
77548
|
+
/**
|
|
77549
|
+
* Attaches event handler `fnFunction` to the {@link #event:open open} event of this `sap.m.p13n.Popup`.
|
|
77550
|
+
*
|
|
77551
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
77552
|
+
* otherwise it will be bound to this `sap.m.p13n.Popup` itself.
|
|
77553
|
+
*
|
|
77554
|
+
* This event is fired after the dialog has been opened.
|
|
77555
|
+
*
|
|
77556
|
+
*
|
|
77557
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
77558
|
+
*/
|
|
77559
|
+
attachOpen(
|
|
77560
|
+
/**
|
|
77561
|
+
* The function to be called when the event occurs
|
|
77562
|
+
*/
|
|
77563
|
+
fnFunction: (p1: Event) => void,
|
|
77564
|
+
/**
|
|
77565
|
+
* Context object to call the event handler with. Defaults to this `sap.m.p13n.Popup` itself
|
|
77566
|
+
*/
|
|
77567
|
+
oListener?: object
|
|
77568
|
+
): this;
|
|
77494
77569
|
/**
|
|
77495
77570
|
* Destroys all the additionalButtons in the aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
77496
77571
|
*
|
|
@@ -77523,6 +77598,24 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77523
77598
|
*/
|
|
77524
77599
|
oListener?: object
|
|
77525
77600
|
): this;
|
|
77601
|
+
/**
|
|
77602
|
+
* Detaches event handler `fnFunction` from the {@link #event:open open} event of this `sap.m.p13n.Popup`.
|
|
77603
|
+
*
|
|
77604
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
77605
|
+
*
|
|
77606
|
+
*
|
|
77607
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
77608
|
+
*/
|
|
77609
|
+
detachOpen(
|
|
77610
|
+
/**
|
|
77611
|
+
* The function to be called, when the event occurs
|
|
77612
|
+
*/
|
|
77613
|
+
fnFunction: (p1: Event) => void,
|
|
77614
|
+
/**
|
|
77615
|
+
* Context object on which the given function had to be called
|
|
77616
|
+
*/
|
|
77617
|
+
oListener?: object
|
|
77618
|
+
): this;
|
|
77526
77619
|
/**
|
|
77527
77620
|
* Fires event {@link #event:close close} to attached listeners.
|
|
77528
77621
|
*
|
|
@@ -77536,6 +77629,19 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77536
77629
|
*/
|
|
77537
77630
|
mParameters?: Popup$CloseEventParameters
|
|
77538
77631
|
): this;
|
|
77632
|
+
/**
|
|
77633
|
+
* Fires event {@link #event:open open} to attached listeners.
|
|
77634
|
+
*
|
|
77635
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
77636
|
+
*
|
|
77637
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
77638
|
+
*/
|
|
77639
|
+
fireOpen(
|
|
77640
|
+
/**
|
|
77641
|
+
* Parameters to pass along with the event
|
|
77642
|
+
*/
|
|
77643
|
+
mParameters?: object
|
|
77644
|
+
): this;
|
|
77539
77645
|
/**
|
|
77540
77646
|
* Gets content of aggregation {@link #getAdditionalButtons additionalButtons}.
|
|
77541
77647
|
*
|
|
@@ -77810,6 +77916,11 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77810
77916
|
| AggregationBindingInfo
|
|
77811
77917
|
| `{${string}}`;
|
|
77812
77918
|
|
|
77919
|
+
/**
|
|
77920
|
+
* This event is fired after the dialog has been opened.
|
|
77921
|
+
*/
|
|
77922
|
+
open?: (oEvent: Event) => void;
|
|
77923
|
+
|
|
77813
77924
|
/**
|
|
77814
77925
|
* This event is fired after the dialog has been closed.
|
|
77815
77926
|
*/
|
|
@@ -77830,6 +77941,16 @@ declare module "sap/m/p13n/Popup" {
|
|
|
77830
77941
|
* Event object of the Popup#close event.
|
|
77831
77942
|
*/
|
|
77832
77943
|
export type Popup$CloseEvent = Event<Popup$CloseEventParameters, Popup>;
|
|
77944
|
+
|
|
77945
|
+
/**
|
|
77946
|
+
* Parameters of the Popup#open event.
|
|
77947
|
+
*/
|
|
77948
|
+
export interface Popup$OpenEventParameters {}
|
|
77949
|
+
|
|
77950
|
+
/**
|
|
77951
|
+
* Event object of the Popup#open event.
|
|
77952
|
+
*/
|
|
77953
|
+
export type Popup$OpenEvent = Event<Popup$OpenEventParameters, Popup>;
|
|
77833
77954
|
}
|
|
77834
77955
|
|
|
77835
77956
|
declare module "sap/m/p13n/QueryPanel" {
|
|
@@ -86128,7 +86249,7 @@ declare module "sap/m/Page" {
|
|
|
86128
86249
|
*
|
|
86129
86250
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
86130
86251
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
86131
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
86252
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
86132
86253
|
*/
|
|
86133
86254
|
getCustomHeader(): IBar;
|
|
86134
86255
|
/**
|
|
@@ -86955,7 +87076,7 @@ declare module "sap/m/Page" {
|
|
|
86955
87076
|
/**
|
|
86956
87077
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
86957
87078
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
86958
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
87079
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
86959
87080
|
*/
|
|
86960
87081
|
customHeader?: IBar;
|
|
86961
87082
|
|
|
@@ -89124,6 +89245,11 @@ declare module "sap/m/PDFViewer" {
|
|
|
89124
89245
|
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
89125
89246
|
* URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
89126
89247
|
*
|
|
89248
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
89249
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
89250
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
89251
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
89252
|
+
*
|
|
89127
89253
|
*
|
|
89128
89254
|
* @returns Value of property `source`
|
|
89129
89255
|
*/
|
|
@@ -89373,6 +89499,11 @@ declare module "sap/m/PDFViewer" {
|
|
|
89373
89499
|
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
89374
89500
|
* URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
89375
89501
|
*
|
|
89502
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
89503
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
89504
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
89505
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
89506
|
+
*
|
|
89376
89507
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
89377
89508
|
*
|
|
89378
89509
|
*
|
|
@@ -89440,6 +89571,11 @@ declare module "sap/m/PDFViewer" {
|
|
|
89440
89571
|
* Specifies the path to the PDF file to display. Can be set to a relative or an absolute path.
|
|
89441
89572
|
* Optionally, this property can also be set to a data URI path or a blob URL, provided that this data
|
|
89442
89573
|
* URI or blob URL is allowed in advance. For more information about URL filtering, see {@link https://ui5.sap.com/#/topic/91f3768f6f4d1014b6dd926db0e91070 URLList Validator Filtering}.
|
|
89574
|
+
*
|
|
89575
|
+
* Source Validation: When the source is set, the PDFViewer automatically validates the resource using a
|
|
89576
|
+
* GET request to ensure it exists and is accessible. This validation:
|
|
89577
|
+
* - Prevents loading invalid or non-existent PDF files
|
|
89578
|
+
* - If validation fails, error content is displayed instead of attempting PDF load
|
|
89443
89579
|
*/
|
|
89444
89580
|
source?: URI | PropertyBindingInfo | `{${string}}`;
|
|
89445
89581
|
|
|
@@ -97353,7 +97489,7 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
97353
97489
|
* The following controls support this plugin:
|
|
97354
97490
|
* - {@link sap.ui.mdc.Table MDC Table}
|
|
97355
97491
|
* - {@link sap.m.Table Responsive Table}
|
|
97356
|
-
* - {@link sap.
|
|
97492
|
+
* - {@link sap.ui.table.Table Grid Table}
|
|
97357
97493
|
* - {@link sap.ui.table.TreeTable Tree Table}
|
|
97358
97494
|
*
|
|
97359
97495
|
* Consider the following before using the plugin:
|
|
@@ -99156,6 +99292,8 @@ declare module "sap/m/plugins/UploadSetwithTable" {
|
|
|
99156
99292
|
}
|
|
99157
99293
|
/**
|
|
99158
99294
|
* This property type is used to define the file name validation configuration. Object is passed to {@link sap.m.plugins.UploadSetwithTable fileNameValidationConfig property}
|
|
99295
|
+
*
|
|
99296
|
+
* @since 1.136
|
|
99159
99297
|
*/
|
|
99160
99298
|
export type FilenameValidationConfig = {
|
|
99161
99299
|
/**
|
|
@@ -104246,7 +104384,8 @@ declare module "sap/m/QuickViewPage" {
|
|
|
104246
104384
|
|
|
104247
104385
|
/**
|
|
104248
104386
|
* QuickViewPage consists of a page header, an avatar, an object name with short description, and an object
|
|
104249
|
-
* information divided in groups. The control uses the sap.
|
|
104387
|
+
* information divided in groups. The control uses the sap.ui.layout.form.SimpleForm control to display
|
|
104388
|
+
* information.
|
|
104250
104389
|
*
|
|
104251
104390
|
* @since 1.28.11
|
|
104252
104391
|
*/
|
|
@@ -104839,14 +104978,12 @@ declare module "sap/m/RadioButton" {
|
|
|
104839
104978
|
* - When the options are mutually exclusive e.g. ON/OFF. Use a {@link sap.m.Switch switch} instead.
|
|
104840
104979
|
* - Avoid using horizontally aligned radio buttons as they will be cut off on phones.
|
|
104841
104980
|
*
|
|
104842
|
-
* **Note:** The order in which the RadioButtons will be
|
|
104843
|
-
*
|
|
104844
|
-
* will receive when added to specific group.
|
|
104981
|
+
* **Note:** The order in which the RadioButtons will be traversed with keyboard arrow keys is determined
|
|
104982
|
+
* based on their order in the document.
|
|
104845
104983
|
*
|
|
104846
|
-
* **Example:** If three buttons
|
|
104847
|
-
*
|
|
104848
|
-
*
|
|
104849
|
-
* will be `button1, button3, button2`.
|
|
104984
|
+
* **Example:** If there are three buttons of the same group (`button1, button2, button3`) initially and
|
|
104985
|
+
* then a new button `button4` is added on the second position, the order will be `button1, button4, button2,
|
|
104986
|
+
* button3`.
|
|
104850
104987
|
*/
|
|
104851
104988
|
export default class RadioButton
|
|
104852
104989
|
extends Control
|
|
@@ -110265,7 +110402,11 @@ declare module "sap/m/SearchField" {
|
|
|
110265
110402
|
|
|
110266
110403
|
import { IShellBar } from "sap/f/library";
|
|
110267
110404
|
|
|
110268
|
-
import {
|
|
110405
|
+
import {
|
|
110406
|
+
IToolbarInteractiveControl,
|
|
110407
|
+
IOverflowToolbarContent,
|
|
110408
|
+
OverflowToolbarConfig,
|
|
110409
|
+
} from "sap/m/library";
|
|
110269
110410
|
|
|
110270
110411
|
import SuggestionItem from "sap/m/SuggestionItem";
|
|
110271
110412
|
|
|
@@ -110296,11 +110437,16 @@ declare module "sap/m/SearchField" {
|
|
|
110296
110437
|
*/
|
|
110297
110438
|
export default class SearchField
|
|
110298
110439
|
extends Control
|
|
110299
|
-
implements
|
|
110440
|
+
implements
|
|
110441
|
+
IFormContent,
|
|
110442
|
+
IShellBar,
|
|
110443
|
+
IToolbarInteractiveControl,
|
|
110444
|
+
IOverflowToolbarContent
|
|
110300
110445
|
{
|
|
110301
110446
|
__implements__sap_ui_core_IFormContent: boolean;
|
|
110302
110447
|
__implements__sap_f_IShellBar: boolean;
|
|
110303
110448
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
110449
|
+
__implements__sap_m_IOverflowToolbarContent: boolean;
|
|
110304
110450
|
/**
|
|
110305
110451
|
* Constructor for a new SearchField.
|
|
110306
110452
|
*
|
|
@@ -110803,6 +110949,14 @@ declare module "sap/m/SearchField" {
|
|
|
110803
110949
|
* @returns Value of property `maxLength`
|
|
110804
110950
|
*/
|
|
110805
110951
|
getMaxLength(): int;
|
|
110952
|
+
/**
|
|
110953
|
+
* Enables the `sap.m.SearchField` to be used inside sap.m.OverflowToolbar. Required by the {@link sap.m.IOverflowToolbarContent }
|
|
110954
|
+
* interface.
|
|
110955
|
+
*
|
|
110956
|
+
*
|
|
110957
|
+
* @returns Configuration information for the `sap.m.IOverflowToolbarContent` interface.
|
|
110958
|
+
*/
|
|
110959
|
+
getOverflowToolbarConfig(): OverflowToolbarConfig;
|
|
110806
110960
|
/**
|
|
110807
110961
|
* Gets current value of property {@link #getPlaceholder placeholder}.
|
|
110808
110962
|
*
|
|
@@ -112445,6 +112599,21 @@ declare module "sap/m/SegmentedButton" {
|
|
|
112445
112599
|
* Reference to the item, that has been selected.
|
|
112446
112600
|
*/
|
|
112447
112601
|
item?: SegmentedButtonItem;
|
|
112602
|
+
|
|
112603
|
+
/**
|
|
112604
|
+
* Reference to the previously selected item (if any).
|
|
112605
|
+
*/
|
|
112606
|
+
previousItem?: SegmentedButtonItem;
|
|
112607
|
+
|
|
112608
|
+
/**
|
|
112609
|
+
* Key of the selected item (if any).
|
|
112610
|
+
*/
|
|
112611
|
+
selectedKey?: string;
|
|
112612
|
+
|
|
112613
|
+
/**
|
|
112614
|
+
* Key of the previously selected item (if any).
|
|
112615
|
+
*/
|
|
112616
|
+
previousKey?: string;
|
|
112448
112617
|
}
|
|
112449
112618
|
|
|
112450
112619
|
/**
|
|
@@ -130496,6 +130665,11 @@ declare module "sap/m/SinglePlanningCalendar" {
|
|
|
130496
130665
|
* All appointments with changed selected state.
|
|
130497
130666
|
*/
|
|
130498
130667
|
appointments?: CalendarAppointment[];
|
|
130668
|
+
|
|
130669
|
+
/**
|
|
130670
|
+
* The original browser event.
|
|
130671
|
+
*/
|
|
130672
|
+
originalEvent?: object;
|
|
130499
130673
|
}
|
|
130500
130674
|
|
|
130501
130675
|
/**
|
|
@@ -135805,7 +135979,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
135805
135979
|
/**
|
|
135806
135980
|
* Gets current value of property {@link #getIcon icon}.
|
|
135807
135981
|
*
|
|
135808
|
-
* Defines the list item icon.
|
|
135982
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
135983
|
+
* options, use the `avatar` aggregation.
|
|
135809
135984
|
*
|
|
135810
135985
|
*
|
|
135811
135986
|
* @returns Value of property `icon`
|
|
@@ -136016,7 +136191,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
136016
136191
|
/**
|
|
136017
136192
|
* Sets a new value for property {@link #getIcon icon}.
|
|
136018
136193
|
*
|
|
136019
|
-
* Defines the list item icon.
|
|
136194
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136195
|
+
* options, use the `avatar` aggregation.
|
|
136020
136196
|
*
|
|
136021
136197
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
136022
136198
|
*
|
|
@@ -136251,7 +136427,8 @@ declare module "sap/m/StandardListItem" {
|
|
|
136251
136427
|
description?: string | PropertyBindingInfo;
|
|
136252
136428
|
|
|
136253
136429
|
/**
|
|
136254
|
-
* Defines the list item icon.
|
|
136430
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
136431
|
+
* options, use the `avatar` aggregation.
|
|
136255
136432
|
*/
|
|
136256
136433
|
icon?: URI | PropertyBindingInfo | `{${string}}`;
|
|
136257
136434
|
|
|
@@ -150641,7 +150818,8 @@ declare module "sap/m/TimePicker" {
|
|
|
150641
150818
|
* binding the `value` property by using types
|
|
150642
150819
|
* ```javascript
|
|
150643
150820
|
*
|
|
150644
|
-
*
|
|
150821
|
+
* // UI5Date imported from sap/ui/core/date/UI5Date
|
|
150822
|
+
* new sap.ui.model.json.JSONModel({date: UI5Date.getInstance(2022,10,10,10,15,10)});
|
|
150645
150823
|
*
|
|
150646
150824
|
* new sap.m.TimePicker({
|
|
150647
150825
|
* value: {
|
|
@@ -151546,6 +151724,22 @@ declare module "sap/m/TimePicker" {
|
|
|
151546
151724
|
* @returns Reference to `this` for method chaining
|
|
151547
151725
|
*/
|
|
151548
151726
|
setSupport2400(bSupport2400: boolean): this;
|
|
151727
|
+
/**
|
|
151728
|
+
* Sets a new value for property {@link #getTitle title}.
|
|
151729
|
+
*
|
|
151730
|
+
* Displays the text of the general picker label and is read by screen readers. It is visible only on phone.
|
|
151731
|
+
*
|
|
151732
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
151733
|
+
*
|
|
151734
|
+
*
|
|
151735
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
151736
|
+
*/
|
|
151737
|
+
setTitle(
|
|
151738
|
+
/**
|
|
151739
|
+
* New value for property `title`
|
|
151740
|
+
*/
|
|
151741
|
+
sTitle?: string
|
|
151742
|
+
): this;
|
|
151549
151743
|
}
|
|
151550
151744
|
/**
|
|
151551
151745
|
* Describes the settings that can be provided to the TimePicker constructor.
|
|
@@ -152515,6 +152709,7 @@ declare module "sap/m/Title" {
|
|
|
152515
152709
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
152516
152710
|
|
|
152517
152711
|
import {
|
|
152712
|
+
ITitle,
|
|
152518
152713
|
IShrinkable,
|
|
152519
152714
|
AccessibilityInfo,
|
|
152520
152715
|
ITitleContent,
|
|
@@ -152563,8 +152758,9 @@ declare module "sap/m/Title" {
|
|
|
152563
152758
|
*/
|
|
152564
152759
|
export default class Title
|
|
152565
152760
|
extends Control
|
|
152566
|
-
implements IShrinkable, IToolbarInteractiveControl
|
|
152761
|
+
implements ITitle, IShrinkable, IToolbarInteractiveControl
|
|
152567
152762
|
{
|
|
152763
|
+
__implements__sap_ui_core_ITitle: boolean;
|
|
152568
152764
|
__implements__sap_ui_core_IShrinkable: boolean;
|
|
152569
152765
|
__implements__sap_m_IToolbarInteractiveControl: boolean;
|
|
152570
152766
|
/**
|
|
@@ -155355,14 +155551,17 @@ declare module "sap/m/Tokenizer" {
|
|
|
155355
155551
|
declare module "sap/m/Toolbar" {
|
|
155356
155552
|
import { default as Control, $ControlSettings } from "sap/ui/core/Control";
|
|
155357
155553
|
|
|
155358
|
-
import {
|
|
155554
|
+
import {
|
|
155555
|
+
Toolbar as Toolbar1,
|
|
155556
|
+
ID,
|
|
155557
|
+
CSSSize,
|
|
155558
|
+
ITitle,
|
|
155559
|
+
} from "sap/ui/core/library";
|
|
155359
155560
|
|
|
155360
155561
|
import { IBar, ToolbarDesign, ToolbarStyle } from "sap/m/library";
|
|
155361
155562
|
|
|
155362
155563
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
155363
155564
|
|
|
155364
|
-
import Title from "sap/m/Title";
|
|
155365
|
-
|
|
155366
155565
|
import {
|
|
155367
155566
|
PropertyBindingInfo,
|
|
155368
155567
|
AggregationBindingInfo,
|
|
@@ -155705,21 +155904,23 @@ declare module "sap/m/Toolbar" {
|
|
|
155705
155904
|
*/
|
|
155706
155905
|
getStyle(): ToolbarStyle;
|
|
155707
155906
|
/**
|
|
155708
|
-
* Returns the first
|
|
155907
|
+
* Returns the first visible control inside the toolbar that implements the {@link sap.ui.core.ITitle} interface.
|
|
155709
155908
|
*
|
|
155710
155909
|
* @since 1.44
|
|
155711
155910
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
155712
155911
|
*
|
|
155713
|
-
* @returns The
|
|
155912
|
+
* @returns The visible control implementing {@link sap.ui.core.ITitle}, or `undefined` if none exists.
|
|
155714
155913
|
*/
|
|
155715
|
-
getTitleControl():
|
|
155914
|
+
getTitleControl(): ITitle | undefined;
|
|
155716
155915
|
/**
|
|
155717
|
-
* Returns the first
|
|
155916
|
+
* Returns the ID of the first visible control inside the toolbar that implements the {@link sap.ui.core.ITitle }
|
|
155917
|
+
* interface.
|
|
155718
155918
|
*
|
|
155719
155919
|
* @since 1.28
|
|
155720
155920
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
155721
155921
|
*
|
|
155722
|
-
* @returns The
|
|
155922
|
+
* @returns The ID of the visible control implementing {@link sap.ui.core.ITitle}, or an empty string if
|
|
155923
|
+
* none exists.
|
|
155723
155924
|
*/
|
|
155724
155925
|
getTitleId(): ID;
|
|
155725
155926
|
/**
|
|
@@ -157368,8 +157569,7 @@ declare module "sap/m/upload/FilePreviewDialog" {
|
|
|
157368
157569
|
* Overview:
|
|
157369
157570
|
*
|
|
157370
157571
|
* Dialog with a carousel to preview files uploaded using the UploadSetwithTable control. This Element should
|
|
157371
|
-
* only be used within the {@link sap.m.
|
|
157372
|
-
* Plugin as an association.
|
|
157572
|
+
* only be used within the {@link sap.m.plugins.UploadSetwithTable UploadSetwithTable} Plugin as an association.
|
|
157373
157573
|
*
|
|
157374
157574
|
* Supported File Types for Preview:
|
|
157375
157575
|
*
|
|
@@ -169984,7 +170184,7 @@ declare module "sap/m/VariantManagement" {
|
|
|
169984
170184
|
*/
|
|
169985
170185
|
getShowSaveAs(): boolean;
|
|
169986
170186
|
/**
|
|
169987
|
-
* Retrieves for the controls {@link sap.ui.comp.SmartVariantManagement} and {@link sap.ui.fl.variants.VariantManagement }
|
|
170187
|
+
* Retrieves for the controls {@link sap.ui.comp.smartvariants.SmartVariantManagement} and {@link sap.ui.fl.variants.VariantManagement }
|
|
169988
170188
|
* the Standard variant. For all other scenarios the first visible variant will be returned, or `null`
|
|
169989
170189
|
* if there are none.
|
|
169990
170190
|
*
|
|
@@ -174064,6 +174264,53 @@ declare namespace sap {
|
|
|
174064
174264
|
* @since 1.4
|
|
174065
174265
|
*/
|
|
174066
174266
|
namespace m {
|
|
174267
|
+
/**
|
|
174268
|
+
* Helper Class for implementing additional contexts of the Bar. e.g. in sap.m.Dialog
|
|
174269
|
+
*
|
|
174270
|
+
* @ui5-protected DO NOT USE IN APPLICATIONS (only for related classes in the framework)
|
|
174271
|
+
*/
|
|
174272
|
+
class BarInAnyContentEnabler
|
|
174273
|
+
extends /* was: sap.m.BarInPageEnabler */ Object
|
|
174274
|
+
{
|
|
174275
|
+
/**
|
|
174276
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
174277
|
+
*/
|
|
174278
|
+
protected constructor();
|
|
174279
|
+
|
|
174280
|
+
/**
|
|
174281
|
+
* Creates a new subclass of class sap.m.BarInAnyContentEnabler with name `sClassName` and enriches it with
|
|
174282
|
+
* the information contained in `oClassInfo`.
|
|
174283
|
+
*
|
|
174284
|
+
* `oClassInfo` might contain the same kind of information as described in {@link sap.m.BarInPageEnabler.extend}.
|
|
174285
|
+
*
|
|
174286
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
174287
|
+
*
|
|
174288
|
+
* @returns Created class / constructor function
|
|
174289
|
+
*/
|
|
174290
|
+
static extend<T extends Record<string, unknown>>(
|
|
174291
|
+
/**
|
|
174292
|
+
* Name of the class being created
|
|
174293
|
+
*/
|
|
174294
|
+
sClassName: string,
|
|
174295
|
+
/**
|
|
174296
|
+
* Object literal with information about the class
|
|
174297
|
+
*/
|
|
174298
|
+
oClassInfo?: ClassInfo<T, BarInAnyContentEnabler>,
|
|
174299
|
+
/**
|
|
174300
|
+
* Constructor function for the metadata object; if not given, it defaults to the metadata implementation
|
|
174301
|
+
* used by this class
|
|
174302
|
+
*/
|
|
174303
|
+
FNMetaImpl?: Function
|
|
174304
|
+
): Function;
|
|
174305
|
+
/**
|
|
174306
|
+
* Returns a metadata object for class sap.m.BarInAnyContentEnabler.
|
|
174307
|
+
*
|
|
174308
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
174309
|
+
*
|
|
174310
|
+
* @returns Metadata object describing this class
|
|
174311
|
+
*/
|
|
174312
|
+
static getMetadata(): import("sap/ui/base/Metadata").default;
|
|
174313
|
+
}
|
|
174067
174314
|
/**
|
|
174068
174315
|
* The public facade of the {@link sap.m.SelectionDetailsItem} element.
|
|
174069
174316
|
*
|