@sapui5/ts-types 1.131.1 → 1.132.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 +7 -7
- 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.cux.home.d.ts +8 -0
- package/types/sap.esh.search.ui.d.ts +38 -1
- package/types/sap.f.d.ts +95 -187
- 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 +1 -1
- package/types/sap.fe.ina.d.ts +1 -1
- package/types/sap.fe.macros.d.ts +108 -101
- package/types/sap.fe.navigation.d.ts +1 -1
- 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 +1 -1
- package/types/sap.insights.d.ts +1 -1
- package/types/{mobile-1.131.0-d.ts → sap.m.d.ts} +390 -47
- 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 +7 -2
- package/types/sap.rules.ui.d.ts +84 -1
- package/types/sap.sac.df.d.ts +978 -623
- package/types/sap.suite.ui.commons.d.ts +1 -1
- package/types/sap.suite.ui.generic.template.d.ts +7 -7
- package/types/sap.suite.ui.microchart.d.ts +1 -1
- package/types/{tnt-1.131.0-d.ts → sap.tnt.d.ts} +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/{commons-1.131.0-d.ts → sap.ui.commons.d.ts} +1 -1
- package/types/sap.ui.comp.d.ts +59 -5
- package/types/{core-1.131.0-d.ts → sap.ui.core.d.ts} +363 -282
- package/types/{dt-1.131.0-d.ts → sap.ui.dt.d.ts} +1 -1
- package/types/sap.ui.export.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +7 -1
- package/types/sap.ui.generic.app.d.ts +5 -11
- 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 +1 -1
- package/types/{mdc-1.131.0-d.ts → sap.ui.mdc.d.ts} +330 -229
- package/types/sap.ui.richtexteditor.d.ts +1 -1
- package/types/sap.ui.rta.d.ts +3 -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 +13 -1
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +25 -15
- package/types/{ux3-1.131.0-d.ts → sap.ui.ux3.d.ts} +1 -1
- package/types/sap.ui.vbm.d.ts +1 -1
- package/types/sap.ui.vk.d.ts +100 -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 +5 -1
- package/types/sap.ushell_abap.d.ts +1 -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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.132.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace suite {
|
|
@@ -215,8 +215,8 @@ declare namespace sap {
|
|
|
215
215
|
*/
|
|
216
216
|
message: string;
|
|
217
217
|
/**
|
|
218
|
-
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success,
|
|
219
|
-
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
218
|
+
* indicates type of message (sap.ui.core.message.MessageType) whether it's sap.ui.core.message.MessageType.Success,
|
|
219
|
+
* sap.ui.core.message.MessageType.Warning, sap.ui.core.message.MessageType.Error or sap.ui.core.message.MessageType.Information.
|
|
220
220
|
*/
|
|
221
221
|
type: string;
|
|
222
222
|
},
|
|
@@ -1977,8 +1977,8 @@ declare namespace sap {
|
|
|
1977
1977
|
*/
|
|
1978
1978
|
message: string;
|
|
1979
1979
|
/**
|
|
1980
|
-
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success,
|
|
1981
|
-
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
1980
|
+
* indicates type of message (sap.ui.core.message.MessageType) whether it's sap.ui.core.message.MessageType.Success,
|
|
1981
|
+
* sap.ui.core.message.MessageType.Warning, sap.ui.core.message.MessageType.Error or sap.ui.core.message.MessageType.Information.
|
|
1982
1982
|
*/
|
|
1983
1983
|
type: string;
|
|
1984
1984
|
},
|
|
@@ -2988,8 +2988,8 @@ declare namespace sap {
|
|
|
2988
2988
|
*/
|
|
2989
2989
|
message: string;
|
|
2990
2990
|
/**
|
|
2991
|
-
* indicates type of message (sap.ui.core.MessageType) whether it's sap.ui.core.MessageType.Success,
|
|
2992
|
-
* sap.ui.core.MessageType.Error or sap.ui.core.MessageType.Information.
|
|
2991
|
+
* indicates type of message (sap.ui.core.message.MessageType) whether it's sap.ui.core.message.MessageType.Success,
|
|
2992
|
+
* sap.ui.core.message.MessageType.Warning, sap.ui.core.message.MessageType.Error or sap.ui.core.message.MessageType.Information.
|
|
2993
2993
|
*/
|
|
2994
2994
|
type: string;
|
|
2995
2995
|
},
|
package/types/sap.ui.comp.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.132.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -13837,6 +13837,16 @@ declare namespace sap {
|
|
|
13837
13837
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
13838
13838
|
| `{${string}}`;
|
|
13839
13839
|
|
|
13840
|
+
/**
|
|
13841
|
+
* Controls if the title is taken from the label of the main property or from the label of the value list.
|
|
13842
|
+
*
|
|
13843
|
+
* @since 1.132
|
|
13844
|
+
*/
|
|
13845
|
+
valueHelpTitleSource?:
|
|
13846
|
+
| sap.ui.comp.smartfield.ValueHelpTitleSource
|
|
13847
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
13848
|
+
| `{${string}}`;
|
|
13849
|
+
|
|
13840
13850
|
/**
|
|
13841
13851
|
* Optional configuration for `SmartField`.
|
|
13842
13852
|
*
|
|
@@ -16637,6 +16647,18 @@ declare namespace sap {
|
|
|
16637
16647
|
* @returns Value of property `value`
|
|
16638
16648
|
*/
|
|
16639
16649
|
getValue(): any;
|
|
16650
|
+
/**
|
|
16651
|
+
* Gets current value of property {@link #getValueHelpTitleSource valueHelpTitleSource}.
|
|
16652
|
+
*
|
|
16653
|
+
* Controls if the title is taken from the label of the main property or from the label of the value list.
|
|
16654
|
+
*
|
|
16655
|
+
* Default value is `Property`.
|
|
16656
|
+
*
|
|
16657
|
+
* @since 1.132
|
|
16658
|
+
*
|
|
16659
|
+
* @returns Value of property `valueHelpTitleSource`
|
|
16660
|
+
*/
|
|
16661
|
+
getValueHelpTitleSource(): sap.ui.comp.smartfield.ValueHelpTitleSource;
|
|
16640
16662
|
/**
|
|
16641
16663
|
* Gets current value of property {@link #getValueState valueState}.
|
|
16642
16664
|
*
|
|
@@ -17589,6 +17611,25 @@ declare namespace sap {
|
|
|
17589
17611
|
*/
|
|
17590
17612
|
oValue?: any
|
|
17591
17613
|
): this;
|
|
17614
|
+
/**
|
|
17615
|
+
* Sets a new value for property {@link #getValueHelpTitleSource valueHelpTitleSource}.
|
|
17616
|
+
*
|
|
17617
|
+
* Controls if the title is taken from the label of the main property or from the label of the value list.
|
|
17618
|
+
*
|
|
17619
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
17620
|
+
*
|
|
17621
|
+
* Default value is `Property`.
|
|
17622
|
+
*
|
|
17623
|
+
* @since 1.132
|
|
17624
|
+
*
|
|
17625
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
17626
|
+
*/
|
|
17627
|
+
setValueHelpTitleSource(
|
|
17628
|
+
/**
|
|
17629
|
+
* New value for property `valueHelpTitleSource`
|
|
17630
|
+
*/
|
|
17631
|
+
sValueHelpTitleSource?: sap.ui.comp.smartfield.ValueHelpTitleSource
|
|
17632
|
+
): this;
|
|
17592
17633
|
/**
|
|
17593
17634
|
* Setter for property `valueState`. Default value is `None`.
|
|
17594
17635
|
*
|
|
@@ -17880,6 +17921,23 @@ declare namespace sap {
|
|
|
17880
17921
|
*/
|
|
17881
17922
|
ValueListWarning = "ValueListWarning",
|
|
17882
17923
|
}
|
|
17924
|
+
/**
|
|
17925
|
+
* Provides information about the ValueHelpTitleSource of the field
|
|
17926
|
+
*
|
|
17927
|
+
* This enum is part of the 'sap/ui/comp/library' module export and must be accessed by the property 'smartfield.ValueHelpTitleSource'.
|
|
17928
|
+
*
|
|
17929
|
+
* @since 1.132
|
|
17930
|
+
*/
|
|
17931
|
+
enum ValueHelpTitleSource {
|
|
17932
|
+
/**
|
|
17933
|
+
* `SmartField` with Property ValueHelpTitleSource
|
|
17934
|
+
*/
|
|
17935
|
+
Property = "Property",
|
|
17936
|
+
/**
|
|
17937
|
+
* `SmartField` with ValueList ValueHelpTitleSource
|
|
17938
|
+
*/
|
|
17939
|
+
ValueList = "ValueList",
|
|
17940
|
+
}
|
|
17883
17941
|
|
|
17884
17942
|
type checkValuesValidityInfo = {
|
|
17885
17943
|
/**
|
|
@@ -18366,7 +18424,6 @@ declare namespace sap {
|
|
|
18366
18424
|
* Indicates if the analytical parameters (SelectionVariant) must be taken into consideration.
|
|
18367
18425
|
*
|
|
18368
18426
|
* @since 1.42.0
|
|
18369
|
-
* @experimental (since 1.42.0) - This property is NOT stable yet. Use at your own risk.
|
|
18370
18427
|
*/
|
|
18371
18428
|
considerAnalyticalParameters?:
|
|
18372
18429
|
| boolean
|
|
@@ -20162,7 +20219,6 @@ declare namespace sap {
|
|
|
20162
20219
|
/**
|
|
20163
20220
|
* Returns the binding paths for the parameters.
|
|
20164
20221
|
*
|
|
20165
|
-
* @experimental (since 1.42.0) - The API is NOT stable yet. Use at your own risk.
|
|
20166
20222
|
*
|
|
20167
20223
|
* @returns Binding path of the parameters
|
|
20168
20224
|
*/
|
|
@@ -20191,7 +20247,6 @@ declare namespace sap {
|
|
|
20191
20247
|
* Default value is `false`.
|
|
20192
20248
|
*
|
|
20193
20249
|
* @since 1.42.0
|
|
20194
|
-
* @experimental (since 1.42.0) - This property is NOT stable yet. Use at your own risk.
|
|
20195
20250
|
*
|
|
20196
20251
|
* @returns Value of property `considerAnalyticalParameters`
|
|
20197
20252
|
*/
|
|
@@ -20734,7 +20789,6 @@ declare namespace sap {
|
|
|
20734
20789
|
* Default value is `false`.
|
|
20735
20790
|
*
|
|
20736
20791
|
* @since 1.42.0
|
|
20737
|
-
* @experimental (since 1.42.0) - This property is NOT stable yet. Use at your own risk.
|
|
20738
20792
|
*
|
|
20739
20793
|
* @returns Reference to `this` in order to allow method chaining
|
|
20740
20794
|
*/
|