@sapui5/ts-types 1.140.0 → 1.141.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.apf.d.ts +1 -1
- package/types/sap.ca.ui.d.ts +1 -1
- package/types/sap.chart.d.ts +1 -1
- package/types/sap.collaboration.d.ts +1 -1
- package/types/sap.esh.search.ui.d.ts +2792 -1
- package/types/sap.f.d.ts +43 -2
- package/types/sap.fe.ariba.d.ts +1 -1
- package/types/sap.fe.base.d.ts +1 -1
- package/types/sap.fe.controls.d.ts +1 -1
- package/types/sap.fe.core.d.ts +78 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +371 -42
- package/types/sap.fe.navigation.d.ts +13 -15
- package/types/sap.fe.placeholder.d.ts +1 -1
- package/types/sap.fe.plugins.managecache.d.ts +1 -1
- package/types/sap.fe.templates.d.ts +1 -1
- package/types/sap.fe.test.d.ts +1 -1
- package/types/sap.fe.tools.d.ts +1 -1
- package/types/sap.feedback.ui.d.ts +1 -1
- package/types/sap.gantt.d.ts +7 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/sap.m.d.ts +70 -8
- package/types/sap.makit.d.ts +1 -1
- package/types/sap.me.d.ts +1 -1
- package/types/sap.ndc.d.ts +1 -1
- package/types/sap.ovp.d.ts +1 -1
- package/types/sap.rules.ui.d.ts +1 -1
- package/types/sap.sac.df.d.ts +20 -5
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +41 -5
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- 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.comp.d.ts +1 -1
- package/types/sap.ui.core.d.ts +129 -66
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.generic.app.d.ts +1 -1
- package/types/sap.ui.generic.template.d.ts +1 -1
- package/types/sap.ui.integration.d.ts +1 -1
- package/types/sap.ui.layout.d.ts +5102 -5062
- package/types/sap.ui.mdc.d.ts +4 -4
- package/types/sap.ui.richtexteditor.d.ts +307 -9
- 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 +18 -4
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +53 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +141 -1
- package/types/sap.ui.vtm.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.uiext.inbox.d.ts +1 -1
- package/types/sap.ushell.d.ts +32 -3
- package/types/sap.ushell_abap.d.ts +5 -1
- package/types/sap.uxap.d.ts +1 -1
- package/types/sap.viz.d.ts +1 -1
- package/types/sap.webanalytics.core.d.ts +1 -1
- package/types/sap.zen.commons.d.ts +1 -1
- package/types/sap.zen.crosstab.d.ts +1 -1
- package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.f.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.141.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -306,6 +306,16 @@ declare namespace sap {
|
|
|
306
306
|
| sap.m.AvatarImageFitType
|
|
307
307
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
308
308
|
| `{${string}}`;
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* Defines a status-colored, non-interactive message icon in the icon area.
|
|
312
|
+
*
|
|
313
|
+
* @since 1.141
|
|
314
|
+
*/
|
|
315
|
+
iconState?:
|
|
316
|
+
| sap.ui.core.ValueState
|
|
317
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
318
|
+
| `{${string}}`;
|
|
309
319
|
}
|
|
310
320
|
|
|
311
321
|
/**
|
|
@@ -1499,6 +1509,18 @@ declare namespace sap {
|
|
|
1499
1509
|
* @returns Value of property `iconSrc`
|
|
1500
1510
|
*/
|
|
1501
1511
|
getIconSrc(): sap.ui.core.URI;
|
|
1512
|
+
/**
|
|
1513
|
+
* Gets current value of property {@link #getIconState iconState}.
|
|
1514
|
+
*
|
|
1515
|
+
* Defines a status-colored, non-interactive message icon in the icon area.
|
|
1516
|
+
*
|
|
1517
|
+
* Default value is `None`.
|
|
1518
|
+
*
|
|
1519
|
+
* @since 1.141
|
|
1520
|
+
*
|
|
1521
|
+
* @returns Value of property `iconState`
|
|
1522
|
+
*/
|
|
1523
|
+
getIconState(): sap.ui.core.ValueState;
|
|
1502
1524
|
/**
|
|
1503
1525
|
* Gets current value of property {@link #getIconVisible iconVisible}.
|
|
1504
1526
|
*
|
|
@@ -1698,6 +1720,25 @@ declare namespace sap {
|
|
|
1698
1720
|
*/
|
|
1699
1721
|
sIconSrc?: sap.ui.core.URI
|
|
1700
1722
|
): this;
|
|
1723
|
+
/**
|
|
1724
|
+
* Sets a new value for property {@link #getIconState iconState}.
|
|
1725
|
+
*
|
|
1726
|
+
* Defines a status-colored, non-interactive message icon in the icon area.
|
|
1727
|
+
*
|
|
1728
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1729
|
+
*
|
|
1730
|
+
* Default value is `None`.
|
|
1731
|
+
*
|
|
1732
|
+
* @since 1.141
|
|
1733
|
+
*
|
|
1734
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
1735
|
+
*/
|
|
1736
|
+
setIconState(
|
|
1737
|
+
/**
|
|
1738
|
+
* New value for property `iconState`
|
|
1739
|
+
*/
|
|
1740
|
+
sIconState?: sap.ui.core.ValueState
|
|
1741
|
+
): this;
|
|
1701
1742
|
/**
|
|
1702
1743
|
* Sets a new value for property {@link #getIconVisible iconVisible}.
|
|
1703
1744
|
*
|
|
@@ -22616,7 +22657,7 @@ declare namespace sap {
|
|
|
22616
22657
|
*
|
|
22617
22658
|
* Each layout has a default predefined ratio for the three columns, depending on device size. Based on
|
|
22618
22659
|
* the device and layout, some columns are hidden. For more information, refer to the ratios (in %) for
|
|
22619
|
-
* each value, listed below: (
|
|
22660
|
+
* each value, listed below: (hyphen "-" means non-accessible columns).
|
|
22620
22661
|
*
|
|
22621
22662
|
* **Notes:**
|
|
22622
22663
|
* - The user is allowed to customize the default ratio by dragging the column separators to resize the
|
package/types/sap.fe.ariba.d.ts
CHANGED
package/types/sap.fe.base.d.ts
CHANGED
package/types/sap.fe.core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.141.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -64,6 +64,81 @@ declare namespace sap {
|
|
|
64
64
|
*/
|
|
65
65
|
class BaseControllerExtension extends sap.ui.core.mvc
|
|
66
66
|
.ControllerExtension {}
|
|
67
|
+
/**
|
|
68
|
+
* A controller extension to handle collaborative draft scenarios.
|
|
69
|
+
*
|
|
70
|
+
* @since 1.141.0
|
|
71
|
+
* @experimental As of version 1.141.0.
|
|
72
|
+
*/
|
|
73
|
+
class CollaborativeDraft extends sap.fe.core.controllerextensions
|
|
74
|
+
.BaseControllerExtension {
|
|
75
|
+
/**
|
|
76
|
+
* Sends a notification to other users that new contexts have been created by the current user.
|
|
77
|
+
* This notification must be sent after the new contexts have been created successfully in the back-end.
|
|
78
|
+
*
|
|
79
|
+
*
|
|
80
|
+
* @since 1.141.0
|
|
81
|
+
* @experimental As of version 1.141.0.
|
|
82
|
+
*/
|
|
83
|
+
sendContextsCreated(
|
|
84
|
+
/**
|
|
85
|
+
* The array of newly created contexts
|
|
86
|
+
*/
|
|
87
|
+
contexts: sap.ui.model.odata.v4.Context[]
|
|
88
|
+
): void;
|
|
89
|
+
/**
|
|
90
|
+
* Sends a notification to other users that contexts have been deleted by the current user.
|
|
91
|
+
* This notification must be sent after the contexts have been deleted successfully in the back-end.
|
|
92
|
+
*
|
|
93
|
+
*
|
|
94
|
+
* @since 1.141.0
|
|
95
|
+
* @experimental As of version 1.141.0.
|
|
96
|
+
*/
|
|
97
|
+
sendContextsDeleted(
|
|
98
|
+
/**
|
|
99
|
+
* The array of deleted contexts
|
|
100
|
+
*/
|
|
101
|
+
contexts: sap.ui.model.odata.v4.Context[]
|
|
102
|
+
): void;
|
|
103
|
+
/**
|
|
104
|
+
* Sends a notification to other users that a property has been locked or unlocked by the current user.
|
|
105
|
+
*
|
|
106
|
+
* @since 1.141.0
|
|
107
|
+
* @experimental As of version 1.141.0.
|
|
108
|
+
*/
|
|
109
|
+
sendLockChange(
|
|
110
|
+
/**
|
|
111
|
+
* The context for the property
|
|
112
|
+
*/
|
|
113
|
+
context: sap.ui.model.odata.v4.Context,
|
|
114
|
+
/**
|
|
115
|
+
* The name of the property
|
|
116
|
+
*/
|
|
117
|
+
propertyName: string,
|
|
118
|
+
/**
|
|
119
|
+
* True if the property is locked, false if it is unlocked
|
|
120
|
+
*/
|
|
121
|
+
isLocked: boolean
|
|
122
|
+
): void;
|
|
123
|
+
/**
|
|
124
|
+
* Sends a notification to other users that property values have been changed by the current user.
|
|
125
|
+
* This notification must be sent after the changes have been sent successfully to the back-end.
|
|
126
|
+
*
|
|
127
|
+
*
|
|
128
|
+
* @since 1.141.0
|
|
129
|
+
* @experimental As of version 1.141.0.
|
|
130
|
+
*/
|
|
131
|
+
sendPropertyValuesChange(
|
|
132
|
+
/**
|
|
133
|
+
* The context for the properties
|
|
134
|
+
*/
|
|
135
|
+
context: sap.ui.model.odata.v4.Context,
|
|
136
|
+
/**
|
|
137
|
+
* The property name or the array of property names
|
|
138
|
+
*/
|
|
139
|
+
propertyNames: string | string[]
|
|
140
|
+
): void;
|
|
141
|
+
}
|
|
67
142
|
/**
|
|
68
143
|
* A controller extension offering hooks into the edit flow of the application
|
|
69
144
|
*
|
|
@@ -1609,6 +1684,8 @@ declare namespace sap {
|
|
|
1609
1684
|
|
|
1610
1685
|
"sap/fe/core/controllerextensions/BaseControllerExtension": undefined;
|
|
1611
1686
|
|
|
1687
|
+
"sap/fe/core/controllerextensions/CollaborativeDraft": undefined;
|
|
1688
|
+
|
|
1612
1689
|
"sap/fe/core/controllerextensions/EditFlow": undefined;
|
|
1613
1690
|
|
|
1614
1691
|
"sap/fe/core/controllerextensions/IntentBasedNavigation": undefined;
|
package/types/sap.fe.ina.d.ts
CHANGED