@openui5/ts-types 1.120.26 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/ts-types",
3
- "version": "1.120.26",
3
+ "version": "1.120.28",
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.120.26
1
+ // For Library Version: 1.120.28
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.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -14962,6 +14962,11 @@ declare namespace sap {
14962
14962
  */
14963
14963
  uploader?: sap.m.upload.Uploader;
14964
14964
 
14965
+ /**
14966
+ * An illustrated message is displayed when no data is loaded or provided
14967
+ */
14968
+ illustratedMessage?: sap.m.IllustratedMessage;
14969
+
14965
14970
  /**
14966
14971
  * This event is fired when a new file is added to the set of items to be uploaded.
14967
14972
  */
@@ -18674,6 +18679,13 @@ declare namespace sap {
18674
18679
  * @returns Reference to `this` in order to allow method chaining
18675
18680
  */
18676
18681
  destroyHeaderFields(): this;
18682
+ /**
18683
+ * Destroys the illustratedMessage in the aggregation {@link #getIllustratedMessage illustratedMessage}.
18684
+ *
18685
+ *
18686
+ * @returns Reference to `this` in order to allow method chaining
18687
+ */
18688
+ destroyIllustratedMessage(): this;
18677
18689
  /**
18678
18690
  * Destroys all the incompleteItems in the aggregation {@link #getIncompleteItems incompleteItems}.
18679
18691
  *
@@ -19405,6 +19417,12 @@ declare namespace sap {
19405
19417
  * @returns Value of property `httpRequestMethod`
19406
19418
  */
19407
19419
  getHttpRequestMethod(): sap.m.upload.UploaderHttpRequestMethod;
19420
+ /**
19421
+ * Gets content of aggregation {@link #getIllustratedMessage illustratedMessage}.
19422
+ *
19423
+ * An illustrated message is displayed when no data is loaded or provided
19424
+ */
19425
+ getIllustratedMessage(): sap.m.IllustratedMessage;
19408
19426
  /**
19409
19427
  * Gets content of aggregation {@link #getIncompleteItems incompleteItems}.
19410
19428
  *
@@ -19954,6 +19972,18 @@ declare namespace sap {
19954
19972
  */
19955
19973
  sHttpRequestMethod?: sap.m.upload.UploaderHttpRequestMethod
19956
19974
  ): this;
19975
+ /**
19976
+ * Sets the aggregated {@link #getIllustratedMessage illustratedMessage}.
19977
+ *
19978
+ *
19979
+ * @returns Reference to `this` in order to allow method chaining
19980
+ */
19981
+ setIllustratedMessage(
19982
+ /**
19983
+ * The illustratedMessage to set
19984
+ */
19985
+ oIllustratedMessage: sap.m.IllustratedMessage
19986
+ ): this;
19957
19987
  /**
19958
19988
  * Sets a new value for property {@link #getInstantUpload instantUpload}.
19959
19989
  *
@@ -24462,6 +24492,9 @@ declare namespace sap {
24462
24492
 
24463
24493
  /**
24464
24494
  * Association to controls / ids which label this control (see WAI-ARIA attribute aria-labelledby).
24495
+ *
24496
+ * **Note:**The aria-labelledby attribute will not be rendered when there are less than two interactive
24497
+ * elements inside the Bar (for example, one Button).
24465
24498
  */
24466
24499
  ariaLabelledBy?: Array<sap.ui.core.Control | string>;
24467
24500
  }
@@ -27442,6 +27475,14 @@ declare namespace sap {
27442
27475
  | sap.ui.base.ManagedObject.PropertyBindingInfo
27443
27476
  | `{${string}}`;
27444
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
+
27445
27486
  /**
27446
27487
  * Contains {@link sap.m.FeedListItemAction elements} that are displayed in the action sheet.
27447
27488
  *
@@ -27839,6 +27880,14 @@ declare namespace sap {
27839
27880
  | sap.ui.base.ManagedObject.PropertyBindingInfo
27840
27881
  | `{${string}}`;
27841
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
+
27842
27891
  /**
27843
27892
  * List of `sap.m.Link` controls that will be used to replace the placeholders in the text. Placeholders
27844
27893
  * are replaced according to their indexes. The placeholder with index %%0 will be replaced by the first
@@ -68142,6 +68191,17 @@ declare namespace sap {
68142
68191
  * @returns Value of property `convertLinksToAnchorTags`
68143
68192
  */
68144
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;
68145
68205
  /**
68146
68206
  * Gets current value of property {@link #getIcon icon}.
68147
68207
  *
@@ -68424,6 +68484,24 @@ declare namespace sap {
68424
68484
  */
68425
68485
  sConvertLinksToAnchorTags?: sap.m.LinkConversion
68426
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;
68427
68505
  /**
68428
68506
  * Sets a new value for property {@link #getIcon icon}.
68429
68507
  *
@@ -69970,6 +70048,17 @@ declare namespace sap {
69970
70048
  * @returns Value of property `convertLinksToAnchorTags`
69971
70049
  */
69972
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;
69973
70062
  /**
69974
70063
  * Gets current value of property {@link #getHeight height}.
69975
70064
  *
@@ -70154,6 +70243,24 @@ declare namespace sap {
70154
70243
  */
70155
70244
  sConvertLinksToAnchorTags?: sap.m.LinkConversion
70156
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;
70157
70264
  /**
70158
70265
  * Sets a new value for property {@link #getHeight height}.
70159
70266
  *
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -280,7 +280,7 @@ declare namespace sap {
280
280
  }
281
281
  }
282
282
 
283
- // For Library Version: 1.120.26
283
+ // For Library Version: 1.120.28
284
284
 
285
285
  declare module "sap/base/assert" {
286
286
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
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.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare module "sap/ui/rta/api/startAdaptation" {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.120.26
1
+ // For Library Version: 1.120.28
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1116,6 +1116,9 @@ declare namespace sap {
1116
1116
 
1117
1117
  /**
1118
1118
  * The list of Subsections.
1119
+ *
1120
+ * Note: If multiple subsections are used, it is highly recommended to set a title for the section for accessibility
1121
+ * reasons.
1119
1122
  */
1120
1123
  subSections?:
1121
1124
  | sap.uxap.ObjectPageSubSection[]
@@ -1168,6 +1171,22 @@ declare namespace sap {
1168
1171
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1169
1172
  | `{${string}}`;
1170
1173
 
1174
+ /**
1175
+ * Defines the actual visibility of the title of `ObjectPageSectionBase`.
1176
+ *
1177
+ * **Note:** This property is read-only. The `ObjectPageSectionBase` updates it, according to internal rules,
1178
+ * based on UX specifications. You can only read the value of `titleVisible` property and use it in your
1179
+ * binding to determine the aria-levels of the inner Controls.
1180
+ *
1181
+ * **Note:** This is a downported feature introduced in version 1.121.0
1182
+ *
1183
+ * @since 1.120.27
1184
+ */
1185
+ titleVisible?:
1186
+ | boolean
1187
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1188
+ | `{${string}}`;
1189
+
1171
1190
  /**
1172
1191
  * Invisible ObjectPageSectionBase are not rendered
1173
1192
  */
@@ -7005,6 +7024,9 @@ declare namespace sap {
7005
7024
  * Gets content of aggregation {@link #getSubSections subSections}.
7006
7025
  *
7007
7026
  * The list of Subsections.
7027
+ *
7028
+ * Note: If multiple subsections are used, it is highly recommended to set a title for the section for accessibility
7029
+ * reasons.
7008
7030
  */
7009
7031
  getSubSections(): sap.uxap.ObjectPageSubSection[];
7010
7032
  /**
@@ -7305,6 +7327,24 @@ declare namespace sap {
7305
7327
  * @returns Value of property `titleLevel`
7306
7328
  */
7307
7329
  getTitleLevel(): sap.ui.core.TitleLevel;
7330
+ /**
7331
+ * Gets current value of property {@link #getTitleVisible titleVisible}.
7332
+ *
7333
+ * Defines the actual visibility of the title of `ObjectPageSectionBase`.
7334
+ *
7335
+ * **Note:** This property is read-only. The `ObjectPageSectionBase` updates it, according to internal rules,
7336
+ * based on UX specifications. You can only read the value of `titleVisible` property and use it in your
7337
+ * binding to determine the aria-levels of the inner Controls.
7338
+ *
7339
+ * **Note:** This is a downported feature introduced in version 1.121.0
7340
+ *
7341
+ * Default value is `true`.
7342
+ *
7343
+ * @since 1.120.27
7344
+ *
7345
+ * @returns Value of property `titleVisible`
7346
+ */
7347
+ getTitleVisible(): boolean;
7308
7348
  /**
7309
7349
  * Gets current value of property {@link #getVisible visible}.
7310
7350
  *
@@ -7392,6 +7432,12 @@ declare namespace sap {
7392
7432
  */
7393
7433
  sTitleLevel?: sap.ui.core.TitleLevel
7394
7434
  ): this;
7435
+ /**
7436
+ * Sets title visibility
7437
+ *
7438
+ * @ui5-protected Do not call from applications (only from related classes in the framework)
7439
+ */
7440
+ setTitleVisible(bVisible: boolean): void;
7395
7441
  /**
7396
7442
  * Sets a new value for property {@link #getVisible visible}.
7397
7443
  *