@openui5/ts-types 1.133.0 → 1.133.1
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.133.
|
|
1
|
+
// For Library Version: 1.133.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -28962,6 +28962,14 @@ declare namespace sap {
|
|
|
28962
28962
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28963
28963
|
| `{${string}}`;
|
|
28964
28964
|
|
|
28965
|
+
/**
|
|
28966
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
28967
|
+
*/
|
|
28968
|
+
disableStyleAttribute?:
|
|
28969
|
+
| boolean
|
|
28970
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
28971
|
+
| `{${string}}`;
|
|
28972
|
+
|
|
28965
28973
|
/**
|
|
28966
28974
|
* Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
|
|
28967
28975
|
*
|
|
@@ -29359,6 +29367,14 @@ declare namespace sap {
|
|
|
29359
29367
|
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
29360
29368
|
| `{${string}}`;
|
|
29361
29369
|
|
|
29370
|
+
/**
|
|
29371
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
29372
|
+
*/
|
|
29373
|
+
disableStyleAttribute?:
|
|
29374
|
+
| boolean
|
|
29375
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo
|
|
29376
|
+
| `{${string}}`;
|
|
29377
|
+
|
|
29362
29378
|
/**
|
|
29363
29379
|
* List of `sap.m.Link` controls that will be used to replace the placeholders in the text. Placeholders
|
|
29364
29380
|
* are replaced according to their indexes. The placeholder with index %%0 will be replaced by the first
|
|
@@ -71682,6 +71698,17 @@ declare namespace sap {
|
|
|
71682
71698
|
* @returns Value of property `convertLinksToAnchorTags`
|
|
71683
71699
|
*/
|
|
71684
71700
|
getConvertLinksToAnchorTags(): sap.m.LinkConversion;
|
|
71701
|
+
/**
|
|
71702
|
+
* Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
71703
|
+
*
|
|
71704
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
71705
|
+
*
|
|
71706
|
+
* Default value is `false`.
|
|
71707
|
+
*
|
|
71708
|
+
*
|
|
71709
|
+
* @returns Value of property `disableStyleAttribute`
|
|
71710
|
+
*/
|
|
71711
|
+
getDisableStyleAttribute(): boolean;
|
|
71685
71712
|
/**
|
|
71686
71713
|
* Gets current value of property {@link #getIcon icon}.
|
|
71687
71714
|
*
|
|
@@ -71964,6 +71991,24 @@ declare namespace sap {
|
|
|
71964
71991
|
*/
|
|
71965
71992
|
sConvertLinksToAnchorTags?: sap.m.LinkConversion
|
|
71966
71993
|
): this;
|
|
71994
|
+
/**
|
|
71995
|
+
* Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
71996
|
+
*
|
|
71997
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
71998
|
+
*
|
|
71999
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
72000
|
+
*
|
|
72001
|
+
* Default value is `false`.
|
|
72002
|
+
*
|
|
72003
|
+
*
|
|
72004
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
72005
|
+
*/
|
|
72006
|
+
setDisableStyleAttribute(
|
|
72007
|
+
/**
|
|
72008
|
+
* New value for property `disableStyleAttribute`
|
|
72009
|
+
*/
|
|
72010
|
+
bDisableStyleAttribute?: boolean
|
|
72011
|
+
): this;
|
|
71967
72012
|
/**
|
|
71968
72013
|
* Sets a new value for property {@link #getIcon icon}.
|
|
71969
72014
|
*
|
|
@@ -73520,6 +73565,17 @@ declare namespace sap {
|
|
|
73520
73565
|
* @returns Value of property `convertLinksToAnchorTags`
|
|
73521
73566
|
*/
|
|
73522
73567
|
getConvertLinksToAnchorTags(): sap.m.LinkConversion;
|
|
73568
|
+
/**
|
|
73569
|
+
* Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
73570
|
+
*
|
|
73571
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
73572
|
+
*
|
|
73573
|
+
* Default value is `false`.
|
|
73574
|
+
*
|
|
73575
|
+
*
|
|
73576
|
+
* @returns Value of property `disableStyleAttribute`
|
|
73577
|
+
*/
|
|
73578
|
+
getDisableStyleAttribute(): boolean;
|
|
73523
73579
|
/**
|
|
73524
73580
|
* Gets current value of property {@link #getHeight height}.
|
|
73525
73581
|
*
|
|
@@ -73704,6 +73760,24 @@ declare namespace sap {
|
|
|
73704
73760
|
*/
|
|
73705
73761
|
sConvertLinksToAnchorTags?: sap.m.LinkConversion
|
|
73706
73762
|
): this;
|
|
73763
|
+
/**
|
|
73764
|
+
* Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
|
|
73765
|
+
*
|
|
73766
|
+
* Disables rendering of the `style` attribute in the `FormattedText`.
|
|
73767
|
+
*
|
|
73768
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
73769
|
+
*
|
|
73770
|
+
* Default value is `false`.
|
|
73771
|
+
*
|
|
73772
|
+
*
|
|
73773
|
+
* @returns Reference to `this` in order to allow method chaining
|
|
73774
|
+
*/
|
|
73775
|
+
setDisableStyleAttribute(
|
|
73776
|
+
/**
|
|
73777
|
+
* New value for property `disableStyleAttribute`
|
|
73778
|
+
*/
|
|
73779
|
+
bDisableStyleAttribute?: boolean
|
|
73780
|
+
): this;
|
|
73707
73781
|
/**
|
|
73708
73782
|
* Sets a new value for property {@link #getHeight height}.
|
|
73709
73783
|
*
|
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