@openui5/ts-types 1.120.27 → 1.120.28
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 +75 -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.core.d.ts +1 -1
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +1 -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 +1 -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 +1 -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 +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.120.
|
|
1
|
+
// For Library Version: 1.120.28
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -27475,6 +27475,14 @@ declare namespace sap {
|
|
|
27475
27475
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27476
27476
|
| `{${string}}`;
|
|
27477
27477
|
|
|
27478
|
+
/**
|
|
27479
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
27480
|
+
*/
|
|
27481
|
+
disableStyleAttribute?:
|
|
27482
|
+
| boolean
|
|
27483
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27484
|
+
| `{${string}}`;
|
|
27485
|
+
|
|
27478
27486
|
/**
|
|
27479
27487
|
* Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
|
|
27480
27488
|
*
|
|
@@ -27872,6 +27880,14 @@ declare namespace sap {
|
|
|
27872
27880
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27873
27881
|
| `{${string}}`;
|
|
27874
27882
|
|
|
27883
|
+
/**
|
|
27884
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
27885
|
+
*/
|
|
27886
|
+
disableStyleAttribute?:
|
|
27887
|
+
| boolean
|
|
27888
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
27889
|
+
| `{${string}}`;
|
|
27890
|
+
|
|
27875
27891
|
/**
|
|
27876
27892
|
* List of `sap.m.Link` controls that will be used to replace the placeholders in the text. Placeholders
|
|
27877
27893
|
* are replaced according to their indexes. The placeholder with index %%0 will be replaced by the first
|
|
@@ -68175,6 +68191,17 @@ declare namespace sap {
|
|
|
68175
68191
|
* @returns Value of property `convertLinksToAnchorTags`
|
|
68176
68192
|
*/
|
|
68177
68193
|
getConvertLinksToAnchorTags(): sap.m.LinkConversion;
|
|
68194
|
+
/**
|
|
68195
|
+
* Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
68196
|
+
*
|
|
68197
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
68198
|
+
*
|
|
68199
|
+
* Default value is `false`.
|
|
68200
|
+
*
|
|
68201
|
+
*
|
|
68202
|
+
* @returns Value of property `disableStyleAttribute`
|
|
68203
|
+
*/
|
|
68204
|
+
getDisableStyleAttribute(): boolean;
|
|
68178
68205
|
/**
|
|
68179
68206
|
* Gets current value of property {@link #getIcon icon}.
|
|
68180
68207
|
*
|
|
@@ -68457,6 +68484,24 @@ declare namespace sap {
|
|
|
68457
68484
|
*/
|
|
68458
68485
|
sConvertLinksToAnchorTags?: sap.m.LinkConversion
|
|
68459
68486
|
): this;
|
|
68487
|
+
/**
|
|
68488
|
+
* Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
68489
|
+
*
|
|
68490
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
68491
|
+
*
|
|
68492
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
68493
|
+
*
|
|
68494
|
+
* Default value is `false`.
|
|
68495
|
+
*
|
|
68496
|
+
*
|
|
68497
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
68498
|
+
*/
|
|
68499
|
+
setDisableStyleAttribute(
|
|
68500
|
+
/**
|
|
68501
|
+
* New value for property `disableStyleAttribute`
|
|
68502
|
+
*/
|
|
68503
|
+
bDisableStyleAttribute?: boolean
|
|
68504
|
+
): this;
|
|
68460
68505
|
/**
|
|
68461
68506
|
* Sets a new value for property {@link #getIcon icon}.
|
|
68462
68507
|
*
|
|
@@ -70003,6 +70048,17 @@ declare namespace sap {
|
|
|
70003
70048
|
* @returns Value of property `convertLinksToAnchorTags`
|
|
70004
70049
|
*/
|
|
70005
70050
|
getConvertLinksToAnchorTags(): sap.m.LinkConversion;
|
|
70051
|
+
/**
|
|
70052
|
+
* Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
70053
|
+
*
|
|
70054
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
70055
|
+
*
|
|
70056
|
+
* Default value is `false`.
|
|
70057
|
+
*
|
|
70058
|
+
*
|
|
70059
|
+
* @returns Value of property `disableStyleAttribute`
|
|
70060
|
+
*/
|
|
70061
|
+
getDisableStyleAttribute(): boolean;
|
|
70006
70062
|
/**
|
|
70007
70063
|
* Gets current value of property {@link #getHeight height}.
|
|
70008
70064
|
*
|
|
@@ -70187,6 +70243,24 @@ declare namespace sap {
|
|
|
70187
70243
|
*/
|
|
70188
70244
|
sConvertLinksToAnchorTags?: sap.m.LinkConversion
|
|
70189
70245
|
): this;
|
|
70246
|
+
/**
|
|
70247
|
+
* Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
70248
|
+
*
|
|
70249
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
70250
|
+
*
|
|
70251
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
70252
|
+
*
|
|
70253
|
+
* Default value is `false`.
|
|
70254
|
+
*
|
|
70255
|
+
*
|
|
70256
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
70257
|
+
*/
|
|
70258
|
+
setDisableStyleAttribute(
|
|
70259
|
+
/**
|
|
70260
|
+
* New value for property `disableStyleAttribute`
|
|
70261
|
+
*/
|
|
70262
|
+
bDisableStyleAttribute?: boolean
|
|
70263
|
+
): this;
|
|
70190
70264
|
/**
|
|
70191
70265
|
* Sets a new value for property {@link #getHeight height}.
|
|
70192
70266
|
*
|
package/types/sap.tnt.d.ts
CHANGED
package/types/sap.ui.core.d.ts
CHANGED
package/types/sap.ui.dt.d.ts
CHANGED
package/types/sap.ui.fl.d.ts
CHANGED
package/types/sap.ui.layout.d.ts
CHANGED
package/types/sap.ui.mdc.d.ts
CHANGED
package/types/sap.ui.rta.d.ts
CHANGED
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
package/types/sap.ui.ux3.d.ts
CHANGED
package/types/sap.uxap.d.ts
CHANGED