@openui5/ts-types 1.144.0 → 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/sap.f.d.ts +1 -1
- package/types/sap.m.d.ts +29 -12
- package/types/sap.tnt.d.ts +19 -11
- 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 +140 -97
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +5 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +1 -1
- package/types/sap.ui.mdc.d.ts +356 -49
- 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 +5 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +42 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +18 -8
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.145.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/m/p13n/Engine" {
|
|
4
4
|
/**
|
|
@@ -253,6 +253,20 @@ declare namespace sap {
|
|
|
253
253
|
* @returns The enablement of the vertical scrolling enablement for the `sap.m.p13n.Popup`.
|
|
254
254
|
*/
|
|
255
255
|
getVerticalScrolling?(): boolean;
|
|
256
|
+
/**
|
|
257
|
+
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that is called before
|
|
258
|
+
* the popup is closed
|
|
259
|
+
*
|
|
260
|
+
* @since 1.145
|
|
261
|
+
*
|
|
262
|
+
* @returns A Promise that is fullfilled if the panel is ready to be closed
|
|
263
|
+
*/
|
|
264
|
+
onBeforeClose?(
|
|
265
|
+
/**
|
|
266
|
+
* reason for closing the container
|
|
267
|
+
*/
|
|
268
|
+
sReason: string
|
|
269
|
+
): Promise<any>;
|
|
256
270
|
/**
|
|
257
271
|
* Optional hook that will be executed when the panel is used by a `sap.m.p13n.Popup` that may trigger a
|
|
258
272
|
* reset on the panel
|
|
@@ -28220,7 +28234,6 @@ declare namespace sap {
|
|
|
28220
28234
|
* The last selected color in the ColorPalette.
|
|
28221
28235
|
*
|
|
28222
28236
|
* @since 1.122
|
|
28223
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
28224
28237
|
*/
|
|
28225
28238
|
selectedColor?:
|
|
28226
28239
|
| sap.ui.core.CSSColor
|
|
@@ -28267,7 +28280,6 @@ declare namespace sap {
|
|
|
28267
28280
|
* The last selected color in the ColorPalette.
|
|
28268
28281
|
*
|
|
28269
28282
|
* @since 1.122
|
|
28270
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
28271
28283
|
*/
|
|
28272
28284
|
selectedColor?:
|
|
28273
28285
|
| sap.ui.core.CSSColor
|
|
@@ -37946,7 +37958,7 @@ declare namespace sap {
|
|
|
37946
37958
|
/**
|
|
37947
37959
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
37948
37960
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
37949
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
37961
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
37950
37962
|
*/
|
|
37951
37963
|
customHeader?: sap.m.IBar;
|
|
37952
37964
|
|
|
@@ -42845,7 +42857,8 @@ declare namespace sap {
|
|
|
42845
42857
|
description?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
42846
42858
|
|
|
42847
42859
|
/**
|
|
42848
|
-
* Defines the list item icon.
|
|
42860
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
42861
|
+
* options, use the `avatar` aggregation.
|
|
42849
42862
|
*/
|
|
42850
42863
|
icon?:
|
|
42851
42864
|
| sap.ui.core.URI
|
|
@@ -60904,7 +60917,6 @@ declare namespace sap {
|
|
|
60904
60917
|
* The last selected color in the ColorPalette.
|
|
60905
60918
|
*
|
|
60906
60919
|
* @since 1.122
|
|
60907
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
60908
60920
|
*
|
|
60909
60921
|
* @returns Value of property `selectedColor`
|
|
60910
60922
|
*/
|
|
@@ -60948,7 +60960,6 @@ declare namespace sap {
|
|
|
60948
60960
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
60949
60961
|
*
|
|
60950
60962
|
* @since 1.122
|
|
60951
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
60952
60963
|
*
|
|
60953
60964
|
* @returns Reference to `this` in order to allow method chaining
|
|
60954
60965
|
*/
|
|
@@ -61234,7 +61245,6 @@ declare namespace sap {
|
|
|
61234
61245
|
* The last selected color in the ColorPalette.
|
|
61235
61246
|
*
|
|
61236
61247
|
* @since 1.122
|
|
61237
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
61238
61248
|
*
|
|
61239
61249
|
* @returns Value of property `selectedColor`
|
|
61240
61250
|
*/
|
|
@@ -61365,7 +61375,6 @@ declare namespace sap {
|
|
|
61365
61375
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
61366
61376
|
*
|
|
61367
61377
|
* @since 1.122
|
|
61368
|
-
* @experimental As of version 1.122. this property is in a beta state.
|
|
61369
61378
|
*
|
|
61370
61379
|
* @returns Reference to `this` in order to allow method chaining
|
|
61371
61380
|
*/
|
|
@@ -114571,7 +114580,7 @@ declare namespace sap {
|
|
|
114571
114580
|
*
|
|
114572
114581
|
* The (optional) custom header of this page. Use this aggregation only when a custom header is constructed
|
|
114573
114582
|
* where the default header consisting of title text + nav button is not sufficient. If this aggregation
|
|
114574
|
-
* is set, the simple properties "title", "showNavButton", "
|
|
114583
|
+
* is set, the simple properties "title", "showNavButton", "navButtonText" and "icon" are not used.
|
|
114575
114584
|
*/
|
|
114576
114585
|
getCustomHeader(): sap.m.IBar;
|
|
114577
114586
|
/**
|
|
@@ -142971,7 +142980,8 @@ declare namespace sap {
|
|
|
142971
142980
|
/**
|
|
142972
142981
|
* Gets current value of property {@link #getIcon icon}.
|
|
142973
142982
|
*
|
|
142974
|
-
* Defines the list item icon.
|
|
142983
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
142984
|
+
* options, use the `avatar` aggregation.
|
|
142975
142985
|
*
|
|
142976
142986
|
*
|
|
142977
142987
|
* @returns Value of property `icon`
|
|
@@ -143182,7 +143192,8 @@ declare namespace sap {
|
|
|
143182
143192
|
/**
|
|
143183
143193
|
* Sets a new value for property {@link #getIcon icon}.
|
|
143184
143194
|
*
|
|
143185
|
-
* Defines the list item icon.
|
|
143195
|
+
* Defines the list item icon. **Note:** The icon is decorative. For more advanced use cases and configuration
|
|
143196
|
+
* options, use the `avatar` aggregation.
|
|
143186
143197
|
*
|
|
143187
143198
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
143188
143199
|
*
|
|
@@ -169390,6 +169401,12 @@ declare namespace sap {
|
|
|
169390
169401
|
* @since 1.54
|
|
169391
169402
|
*/
|
|
169392
169403
|
enum TimePickerMaskMode {
|
|
169404
|
+
/**
|
|
169405
|
+
* The mask will always be enforced for any time patterns. **Note:** The mask functions correctly only with
|
|
169406
|
+
* fixed-length time formats. Using the `Enforce` value with time formats that do not have a fixed length
|
|
169407
|
+
* may lead to unpredictable behavior.
|
|
169408
|
+
*/
|
|
169409
|
+
Enforce = "Enforce",
|
|
169393
169410
|
/**
|
|
169394
169411
|
* The mask is disabled for the `sap.m.TimePicker`.
|
|
169395
169412
|
*/
|
package/types/sap.tnt.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.145.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -175,6 +175,8 @@ declare namespace sap {
|
|
|
175
175
|
extends sap.tnt.$NavigationListItemBaseSettings {
|
|
176
176
|
/**
|
|
177
177
|
* Specifies the icon for the item.
|
|
178
|
+
*
|
|
179
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
178
180
|
*/
|
|
179
181
|
icon?:
|
|
180
182
|
| sap.ui.core.URI
|
|
@@ -236,8 +238,8 @@ declare namespace sap {
|
|
|
236
238
|
target?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
237
239
|
|
|
238
240
|
/**
|
|
239
|
-
* Specifies if the item has a special design.
|
|
240
|
-
* sub-items
|
|
241
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
242
|
+
* sub-items cannot be added.
|
|
241
243
|
*
|
|
242
244
|
* @since 1.133.0
|
|
243
245
|
* @experimental Behavior might change.
|
|
@@ -417,8 +419,9 @@ declare namespace sap {
|
|
|
417
419
|
interface $ToolPageSettings extends sap.ui.core.$ControlSettings {
|
|
418
420
|
/**
|
|
419
421
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
420
|
-
* **Note:** By default, on small screens, the side content is collapsed to provide
|
|
421
|
-
* content. On larger screens, it is expanded. This
|
|
422
|
+
* **Note:** By default, on mobile phone devices and small screens, the side content is collapsed to provide
|
|
423
|
+
* more space for the main content. On larger screens, excluding mobile phone devices, it is expanded. This
|
|
424
|
+
* behavior can be overridden by setting this property.
|
|
422
425
|
*/
|
|
423
426
|
sideExpanded?:
|
|
424
427
|
| boolean
|
|
@@ -1727,8 +1730,8 @@ declare namespace sap {
|
|
|
1727
1730
|
/**
|
|
1728
1731
|
* Gets current value of property {@link #getDesign design}.
|
|
1729
1732
|
*
|
|
1730
|
-
* Specifies if the item has a special design.
|
|
1731
|
-
* sub-items
|
|
1733
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
1734
|
+
* sub-items cannot be added.
|
|
1732
1735
|
*
|
|
1733
1736
|
* Default value is `Default`.
|
|
1734
1737
|
*
|
|
@@ -1753,6 +1756,8 @@ declare namespace sap {
|
|
|
1753
1756
|
*
|
|
1754
1757
|
* Specifies the icon for the item.
|
|
1755
1758
|
*
|
|
1759
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1760
|
+
*
|
|
1756
1761
|
* Default value is `empty string`.
|
|
1757
1762
|
*
|
|
1758
1763
|
*
|
|
@@ -1892,8 +1897,8 @@ declare namespace sap {
|
|
|
1892
1897
|
/**
|
|
1893
1898
|
* Sets a new value for property {@link #getDesign design}.
|
|
1894
1899
|
*
|
|
1895
|
-
* Specifies if the item has a special design.
|
|
1896
|
-
* sub-items
|
|
1900
|
+
* Specifies if the item has a special design. **Note:** If the `design` property is not set to `NavigationListItemDesign.Default`,
|
|
1901
|
+
* sub-items cannot be added.
|
|
1897
1902
|
*
|
|
1898
1903
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1899
1904
|
*
|
|
@@ -1932,6 +1937,8 @@ declare namespace sap {
|
|
|
1932
1937
|
*
|
|
1933
1938
|
* Specifies the icon for the item.
|
|
1934
1939
|
*
|
|
1940
|
+
* **Note:** By design, icons on second-level (child) navigation items are not rendered.
|
|
1941
|
+
*
|
|
1935
1942
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1936
1943
|
*
|
|
1937
1944
|
* Default value is `empty string`.
|
|
@@ -3102,8 +3109,9 @@ declare namespace sap {
|
|
|
3102
3109
|
* Gets current value of property {@link #getSideExpanded sideExpanded}.
|
|
3103
3110
|
*
|
|
3104
3111
|
* Indicates if the side menu is expanded. Overrides the `expanded` property of the `sideContent` aggregation.
|
|
3105
|
-
* *Note:** By default, on small screens, the side content is collapsed to provide
|
|
3106
|
-
* content. On larger screens, it is expanded. This
|
|
3112
|
+
* *Note:** By default, on mobile phone devices and small screens, the side content is collapsed to provide
|
|
3113
|
+
* more space for the main content. On larger screens, excluding mobile phone devices, it is expanded. This
|
|
3114
|
+
* behavior can be overridden by setting this property.
|
|
3107
3115
|
*
|
|
3108
3116
|
* Default value is `true`.
|
|
3109
3117
|
*
|