@openui5/ts-types 1.108.40 → 1.108.41
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 +36 -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.108.
|
|
1
|
+
// For Library Version: 1.108.41
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -18016,6 +18016,14 @@ declare namespace sap {
|
|
|
18016
18016
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18017
18017
|
| `{${string}}`;
|
|
18018
18018
|
|
|
18019
|
+
/**
|
|
18020
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
18021
|
+
*/
|
|
18022
|
+
disableStyleAttribute?:
|
|
18023
|
+
| boolean
|
|
18024
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
18025
|
+
| `{${string}}`;
|
|
18026
|
+
|
|
18019
18027
|
/**
|
|
18020
18028
|
* @SINCE 1.52.0
|
|
18021
18029
|
*
|
|
@@ -52774,6 +52782,16 @@ declare namespace sap {
|
|
|
52774
52782
|
* @returns Value of property `convertLinksToAnchorTags`
|
|
52775
52783
|
*/
|
|
52776
52784
|
getConvertLinksToAnchorTags(): sap.m.LinkConversion;
|
|
52785
|
+
/**
|
|
52786
|
+
* Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
52787
|
+
*
|
|
52788
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
52789
|
+
*
|
|
52790
|
+
* Default value is `false`.
|
|
52791
|
+
*
|
|
52792
|
+
* @returns Value of property `disableStyleAttribute`
|
|
52793
|
+
*/
|
|
52794
|
+
getDisableStyleAttribute(): boolean;
|
|
52777
52795
|
/**
|
|
52778
52796
|
* Gets current value of property {@link #getIcon icon}.
|
|
52779
52797
|
*
|
|
@@ -53046,6 +53064,23 @@ declare namespace sap {
|
|
|
53046
53064
|
*/
|
|
53047
53065
|
sConvertLinksToAnchorTags?: sap.m.LinkConversion
|
|
53048
53066
|
): this;
|
|
53067
|
+
/**
|
|
53068
|
+
* Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
53069
|
+
*
|
|
53070
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
53071
|
+
*
|
|
53072
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
53073
|
+
*
|
|
53074
|
+
* Default value is `false`.
|
|
53075
|
+
*
|
|
53076
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
53077
|
+
*/
|
|
53078
|
+
setDisableStyleAttribute(
|
|
53079
|
+
/**
|
|
53080
|
+
* New value for property `disableStyleAttribute`
|
|
53081
|
+
*/
|
|
53082
|
+
bDisableStyleAttribute?: boolean
|
|
53083
|
+
): this;
|
|
53049
53084
|
/**
|
|
53050
53085
|
* Sets a new value for property {@link #getIcon icon}.
|
|
53051
53086
|
*
|
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