@openui5/ts-types 1.130.5 → 1.130.7

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.130.5",
3
+ "version": "1.130.7",
4
4
  "description": "OpenUI5 TypeScript Definitions",
5
5
  "homepage": "https://openui5.org",
6
6
  "author": "SAP SE (https://www.sap.com)",
package/types/sap.f.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  /**
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -28758,6 +28758,14 @@ declare namespace sap {
28758
28758
  | sap.ui.base.ManagedObject.PropertyBindingInfo
28759
28759
  | `{${string}}`;
28760
28760
 
28761
+ /**
28762
+ * Disables rendering of the `style` attribute in the `FormattedText`.
28763
+ */
28764
+ disableStyleAttribute?:
28765
+ | boolean
28766
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
28767
+ | `{${string}}`;
28768
+
28761
28769
  /**
28762
28770
  * Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
28763
28771
  *
@@ -29155,6 +29163,14 @@ declare namespace sap {
29155
29163
  | sap.ui.base.ManagedObject.PropertyBindingInfo
29156
29164
  | `{${string}}`;
29157
29165
 
29166
+ /**
29167
+ * Disables rendering of the `style` attribute in the `FormattedText`.
29168
+ */
29169
+ disableStyleAttribute?:
29170
+ | boolean
29171
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
29172
+ | `{${string}}`;
29173
+
29158
29174
  /**
29159
29175
  * List of `sap.m.Link` controls that will be used to replace the placeholders in the text. Placeholders
29160
29176
  * are replaced according to their indexes. The placeholder with index %%0 will be replaced by the first
@@ -71153,6 +71169,17 @@ declare namespace sap {
71153
71169
  * @returns Value of property `convertLinksToAnchorTags`
71154
71170
  */
71155
71171
  getConvertLinksToAnchorTags(): sap.m.LinkConversion;
71172
+ /**
71173
+ * Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
71174
+ *
71175
+ * Disables rendering of the `style` attribute in the `FormattedText`.
71176
+ *
71177
+ * Default value is `false`.
71178
+ *
71179
+ *
71180
+ * @returns Value of property `disableStyleAttribute`
71181
+ */
71182
+ getDisableStyleAttribute(): boolean;
71156
71183
  /**
71157
71184
  * Gets current value of property {@link #getIcon icon}.
71158
71185
  *
@@ -71435,6 +71462,24 @@ declare namespace sap {
71435
71462
  */
71436
71463
  sConvertLinksToAnchorTags?: sap.m.LinkConversion
71437
71464
  ): this;
71465
+ /**
71466
+ * Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
71467
+ *
71468
+ * Disables rendering of the `style` attribute in the `FormattedText`.
71469
+ *
71470
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
71471
+ *
71472
+ * Default value is `false`.
71473
+ *
71474
+ *
71475
+ * @returns Reference to `this` in order to allow method chaining
71476
+ */
71477
+ setDisableStyleAttribute(
71478
+ /**
71479
+ * New value for property `disableStyleAttribute`
71480
+ */
71481
+ bDisableStyleAttribute?: boolean
71482
+ ): this;
71438
71483
  /**
71439
71484
  * Sets a new value for property {@link #getIcon icon}.
71440
71485
  *
@@ -72981,6 +73026,17 @@ declare namespace sap {
72981
73026
  * @returns Value of property `convertLinksToAnchorTags`
72982
73027
  */
72983
73028
  getConvertLinksToAnchorTags(): sap.m.LinkConversion;
73029
+ /**
73030
+ * Gets current value of property {@link #getDisableStyleAttribute disableStyleAttribute}.
73031
+ *
73032
+ * Disables rendering of the `style` attribute in the `FormattedText`.
73033
+ *
73034
+ * Default value is `false`.
73035
+ *
73036
+ *
73037
+ * @returns Value of property `disableStyleAttribute`
73038
+ */
73039
+ getDisableStyleAttribute(): boolean;
72984
73040
  /**
72985
73041
  * Gets current value of property {@link #getHeight height}.
72986
73042
  *
@@ -73165,6 +73221,24 @@ declare namespace sap {
73165
73221
  */
73166
73222
  sConvertLinksToAnchorTags?: sap.m.LinkConversion
73167
73223
  ): this;
73224
+ /**
73225
+ * Sets a new value for property {@link #getDisableStyleAttribute disableStyleAttribute}.
73226
+ *
73227
+ * Disables rendering of the `style` attribute in the `FormattedText`.
73228
+ *
73229
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
73230
+ *
73231
+ * Default value is `false`.
73232
+ *
73233
+ *
73234
+ * @returns Reference to `this` in order to allow method chaining
73235
+ */
73236
+ setDisableStyleAttribute(
73237
+ /**
73238
+ * New value for property `disableStyleAttribute`
73239
+ */
73240
+ bDisableStyleAttribute?: boolean
73241
+ ): this;
73168
73242
  /**
73169
73243
  * Sets a new value for property {@link #getHeight height}.
73170
73244
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -279,7 +279,7 @@ declare namespace sap {
279
279
  "sap/ui/thirdparty/qunit-2": undefined;
280
280
  }
281
281
  }
282
- // For Library Version: 1.130.5
282
+ // For Library Version: 1.130.7
283
283
 
284
284
  declare module "sap/base/assert" {
285
285
  /**
@@ -60499,10 +60499,7 @@ declare namespace sap {
60499
60499
  * - `properties` could be an array containing the property names which should be included in the new
60500
60500
  * entry. Other properties defined in the entity type won't be included.
60501
60501
  * - `properties` could be an object which includes the desired properties and the corresponding values
60502
- * which should be used for the created entry. If `properties` is not specified, all properties in
60503
- * the entity type will be included in the created entry.
60504
- *
60505
- * If there are no values specified, the properties will have `undefined` values.
60502
+ * which should be used for the created entry.
60506
60503
  *
60507
60504
  * The `properties` can be modified via property bindings relative to the returned context instance.
60508
60505
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare module "sap/ui/mdc/AggregationBaseDelegate" {
4
4
  import BaseDelegate from "sap/ui/mdc/BaseDelegate";
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.130.5
1
+ // For Library Version: 1.130.7
2
2
 
3
3
  declare namespace sap {
4
4
  /**