@sapui5/ts-types 1.105.2 → 1.106.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.
Files changed (64) hide show
  1. package/package.json +1 -1
  2. package/types/sap.apf.d.ts +1 -1
  3. package/types/sap.ca.ui.d.ts +1 -1
  4. package/types/sap.chart.d.ts +1 -1
  5. package/types/sap.collaboration.d.ts +25 -25
  6. package/types/sap.esh.search.ui.d.ts +111 -1
  7. package/types/sap.f.d.ts +80 -4
  8. package/types/sap.fe.common.d.ts +1 -1
  9. package/types/sap.fe.core.d.ts +4 -4
  10. package/types/sap.fe.macros.d.ts +23 -95
  11. package/types/sap.fe.navigation.d.ts +1 -1
  12. package/types/sap.fe.templates.d.ts +1 -1
  13. package/types/sap.fe.test.d.ts +17 -3
  14. package/types/sap.feedback.ui.d.ts +1 -1
  15. package/types/sap.gantt.d.ts +153 -4
  16. package/types/sap.insights.d.ts +1 -1
  17. package/types/sap.landvisz.d.ts +1 -1
  18. package/types/sap.m.d.ts +387 -103
  19. package/types/sap.makit.d.ts +1 -1
  20. package/types/sap.me.d.ts +1 -1
  21. package/types/sap.ndc.d.ts +1 -1
  22. package/types/sap.ovp.d.ts +1 -1
  23. package/types/sap.rules.ui.d.ts +1 -1
  24. package/types/sap.sac.df.d.ts +39 -1
  25. package/types/sap.sac.grid.d.ts +1 -1
  26. package/types/sap.suite.ui.commons.d.ts +25 -11
  27. package/types/sap.suite.ui.generic.template.d.ts +17 -3
  28. package/types/sap.suite.ui.microchart.d.ts +13 -13
  29. package/types/sap.tnt.d.ts +3 -3
  30. package/types/sap.ui.codeeditor.d.ts +1 -1
  31. package/types/sap.ui.commons.d.ts +31 -31
  32. package/types/sap.ui.comp.d.ts +110 -36
  33. package/types/sap.ui.core.d.ts +426 -225
  34. package/types/sap.ui.dt.d.ts +1 -1
  35. package/types/sap.ui.export.d.ts +3 -3
  36. package/types/sap.ui.fl.d.ts +3 -3
  37. package/types/sap.ui.generic.app.d.ts +6 -2
  38. package/types/sap.ui.generic.template.d.ts +1 -1
  39. package/types/sap.ui.integration.d.ts +64 -33
  40. package/types/sap.ui.layout.d.ts +7 -7
  41. package/types/sap.ui.mdc.d.ts +3 -1
  42. package/types/sap.ui.richtexteditor.d.ts +2 -2
  43. package/types/sap.ui.rta.d.ts +3 -1
  44. package/types/sap.ui.suite.d.ts +5 -5
  45. package/types/sap.ui.support.d.ts +1 -1
  46. package/types/sap.ui.table.d.ts +26 -8
  47. package/types/sap.ui.testrecorder.d.ts +1 -1
  48. package/types/sap.ui.unified.d.ts +16 -16
  49. package/types/sap.ui.ux3.d.ts +11 -11
  50. package/types/sap.ui.vbm.d.ts +3 -3
  51. package/types/sap.ui.vk.d.ts +44 -6
  52. package/types/sap.ui.vtm.d.ts +2 -2
  53. package/types/sap.ui.webc.common.d.ts +1 -1
  54. package/types/sap.ui.webc.fiori.d.ts +31 -28
  55. package/types/sap.ui.webc.main.d.ts +132 -104
  56. package/types/sap.uiext.inbox.d.ts +1 -1
  57. package/types/sap.ushell.d.ts +7 -3
  58. package/types/sap.ushell_abap.d.ts +1 -1
  59. package/types/sap.uxap.d.ts +41 -1
  60. package/types/sap.viz.d.ts +1 -1
  61. package/types/sap.webanalytics.core.d.ts +2 -6
  62. package/types/sap.zen.commons.d.ts +1 -1
  63. package/types/sap.zen.crosstab.d.ts +1 -1
  64. package/types/sap.zen.dsh.d.ts +1 -1
package/types/sap.m.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.105.1
1
+ // For Library Version: 1.106.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -9803,6 +9803,36 @@ declare namespace sap {
9803
9803
  | sap.ui.base.ManagedObject.PropertyBindingInfo
9804
9804
  | `{${string}}`;
9805
9805
 
9806
+ /**
9807
+ * @EXPERIMENTAL (since 1.106)
9808
+ *
9809
+ * Enables CloudFile picker feature to upload files from cloud.
9810
+ */
9811
+ cloudFilePickerEnabled?:
9812
+ | boolean
9813
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
9814
+ | `{${string}}`;
9815
+
9816
+ /**
9817
+ * @EXPERIMENTAL (since 1.106)
9818
+ *
9819
+ * Url of the FileShare OData V4 service supplied for CloudFile picker control.
9820
+ */
9821
+ cloudFilePickerServiceUrl?:
9822
+ | sap.ui.core.URI
9823
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
9824
+ | `{${string}}`;
9825
+
9826
+ /**
9827
+ * @EXPERIMENTAL (since 1.106)
9828
+ *
9829
+ * The text of the CloudFile picker button. The default text is "Upload from cloud" (translated to the respective
9830
+ * language).
9831
+ */
9832
+ cloudFilePickerButtonText?:
9833
+ | string
9834
+ | sap.ui.base.ManagedObject.PropertyBindingInfo;
9835
+
9806
9836
  /**
9807
9837
  * Items representing files that have already been uploaded.
9808
9838
  */
@@ -12363,6 +12393,43 @@ declare namespace sap {
12363
12393
  item?: sap.m.upload.UploadSetItem;
12364
12394
  }
12365
12395
  ): this;
12396
+ /**
12397
+ * @EXPERIMENTAL (since 1.106)
12398
+ *
12399
+ * Gets current value of property {@link #getCloudFilePickerButtonText cloudFilePickerButtonText}.
12400
+ *
12401
+ * The text of the CloudFile picker button. The default text is "Upload from cloud" (translated to the respective
12402
+ * language).
12403
+ *
12404
+ * Default value is `empty string`.
12405
+ *
12406
+ * @returns Value of property `cloudFilePickerButtonText`
12407
+ */
12408
+ getCloudFilePickerButtonText(): string;
12409
+ /**
12410
+ * @EXPERIMENTAL (since 1.106)
12411
+ *
12412
+ * Gets current value of property {@link #getCloudFilePickerEnabled cloudFilePickerEnabled}.
12413
+ *
12414
+ * Enables CloudFile picker feature to upload files from cloud.
12415
+ *
12416
+ * Default value is `false`.
12417
+ *
12418
+ * @returns Value of property `cloudFilePickerEnabled`
12419
+ */
12420
+ getCloudFilePickerEnabled(): boolean;
12421
+ /**
12422
+ * @EXPERIMENTAL (since 1.106)
12423
+ *
12424
+ * Gets current value of property {@link #getCloudFilePickerServiceUrl cloudFilePickerServiceUrl}.
12425
+ *
12426
+ * Url of the FileShare OData V4 service supplied for CloudFile picker control.
12427
+ *
12428
+ * Default value is `empty string`.
12429
+ *
12430
+ * @returns Value of property `cloudFilePickerServiceUrl`
12431
+ */
12432
+ getCloudFilePickerServiceUrl(): sap.ui.core.URI;
12366
12433
  /**
12367
12434
  * Returns an instance of the default `sap.ui.unified.FileUploader` used for adding files using the operating
12368
12435
  * system's open file dialog, so that it can be customized, for example made invisible or assigned a different
@@ -12782,6 +12849,64 @@ declare namespace sap {
12782
12849
  * @returns this to allow method chaining
12783
12850
  */
12784
12851
  selectAll(): this;
12852
+ /**
12853
+ * @EXPERIMENTAL (since 1.106)
12854
+ *
12855
+ * Sets a new value for property {@link #getCloudFilePickerButtonText cloudFilePickerButtonText}.
12856
+ *
12857
+ * The text of the CloudFile picker button. The default text is "Upload from cloud" (translated to the respective
12858
+ * language).
12859
+ *
12860
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12861
+ *
12862
+ * Default value is `empty string`.
12863
+ *
12864
+ * @returns Reference to `this` in order to allow method chaining
12865
+ */
12866
+ setCloudFilePickerButtonText(
12867
+ /**
12868
+ * New value for property `cloudFilePickerButtonText`
12869
+ */
12870
+ sCloudFilePickerButtonText?: string
12871
+ ): this;
12872
+ /**
12873
+ * @EXPERIMENTAL (since 1.106)
12874
+ *
12875
+ * Sets a new value for property {@link #getCloudFilePickerEnabled cloudFilePickerEnabled}.
12876
+ *
12877
+ * Enables CloudFile picker feature to upload files from cloud.
12878
+ *
12879
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12880
+ *
12881
+ * Default value is `false`.
12882
+ *
12883
+ * @returns Reference to `this` in order to allow method chaining
12884
+ */
12885
+ setCloudFilePickerEnabled(
12886
+ /**
12887
+ * New value for property `cloudFilePickerEnabled`
12888
+ */
12889
+ bCloudFilePickerEnabled?: boolean
12890
+ ): this;
12891
+ /**
12892
+ * @EXPERIMENTAL (since 1.106)
12893
+ *
12894
+ * Sets a new value for property {@link #getCloudFilePickerServiceUrl cloudFilePickerServiceUrl}.
12895
+ *
12896
+ * Url of the FileShare OData V4 service supplied for CloudFile picker control.
12897
+ *
12898
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12899
+ *
12900
+ * Default value is `empty string`.
12901
+ *
12902
+ * @returns Reference to `this` in order to allow method chaining
12903
+ */
12904
+ setCloudFilePickerServiceUrl(
12905
+ /**
12906
+ * New value for property `cloudFilePickerServiceUrl`
12907
+ */
12908
+ sCloudFilePickerServiceUrl?: sap.ui.core.URI
12909
+ ): this;
12785
12910
  /**
12786
12911
  * Sets a new value for property {@link #getDragDropDescription dragDropDescription}.
12787
12912
  *
@@ -18319,10 +18444,7 @@ declare namespace sap {
18319
18444
  *
18320
18445
  * Background color of the GenericTile. Only applicable for IconMode.
18321
18446
  */
18322
- backgroundColor?:
18323
- | sap.ui.core.CSSColor
18324
- | sap.ui.base.ManagedObject.PropertyBindingInfo
18325
- | `{${string}}`;
18447
+ backgroundColor?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
18326
18448
 
18327
18449
  /**
18328
18450
  * @SINCE 1.95
@@ -18346,6 +18468,17 @@ declare namespace sap {
18346
18468
  | sap.ui.base.ManagedObject.PropertyBindingInfo
18347
18469
  | `{${string}}`;
18348
18470
 
18471
+ /**
18472
+ * @SINCE 1.106
18473
+ * @EXPERIMENTAL (since 1.106)
18474
+ *
18475
+ * The Tile rerenders on theme change.
18476
+ */
18477
+ renderOnThemeChange?:
18478
+ | boolean
18479
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
18480
+ | `{${string}}`;
18481
+
18349
18482
  /**
18350
18483
  * The content of the tile.
18351
18484
  */
@@ -19145,6 +19278,13 @@ declare namespace sap {
19145
19278
  | sap.m.Button
19146
19279
  | sap.ui.base.ManagedObject.AggregationBindingInfo
19147
19280
  | `{${string}}`;
19281
+
19282
+ /**
19283
+ * @SINCE 1.106.0
19284
+ *
19285
+ * Association to controls / IDs which label those controls (see WAI-ARIA attribute aria-labelledBy).
19286
+ */
19287
+ illustrationAriaLabelledBy?: Array<sap.ui.core.Control | string>;
19148
19288
  }
19149
19289
 
19150
19290
  interface $IllustrationSettings extends sap.ui.core.$ControlSettings {
@@ -19168,6 +19308,13 @@ declare namespace sap {
19168
19308
  * Defines which illustration type should be used when building the Symbol ID.
19169
19309
  */
19170
19310
  type?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
19311
+
19312
+ /**
19313
+ * @SINCE 1.106.0
19314
+ *
19315
+ * Association to controls / IDs which label those controls (see WAI-ARIA attribute aria-labelledBy).
19316
+ */
19317
+ ariaLabelledBy?: Array<sap.ui.core.Control | string>;
19171
19318
  }
19172
19319
 
19173
19320
  interface $ImageSettings extends sap.ui.core.$ControlSettings {
@@ -19424,7 +19571,8 @@ declare namespace sap {
19424
19571
  /**
19425
19572
  * Maximum number of characters. Value '0' means the feature is switched off. This parameter is not compatible
19426
19573
  * with the input type `sap.m.InputType.Number`. If the input type is set to `Number`, the `maxLength` value
19427
- * is ignored.
19574
+ * is ignored. If the `maxLength` is set after there is already a longer value, this value will not get
19575
+ * truncated. The `maxLength` property has effect only when the value is modified by user interaction.
19428
19576
  */
19429
19577
  maxLength?:
19430
19578
  | int
@@ -31531,7 +31679,9 @@ declare namespace sap {
31531
31679
  *
31532
31680
  * This association is used only when the `enableBranching` property of the Wizard is set to true. Use the
31533
31681
  * association to store the next steps that are about to come after the current. If this is going to be
31534
- * a final step - leave this association empty.
31682
+ * a final step - leave this association empty. **NOTE:** The association needs to be set prior the step
31683
+ * is shown. Dynamical addition of subsequent steps is not supported use case especially when the current
31684
+ * step is final (the association was empty before the step was displayed).
31535
31685
  */
31536
31686
  subsequentSteps?: Array<sap.m.WizardStep | string>;
31537
31687
 
@@ -32248,8 +32398,7 @@ declare namespace sap {
32248
32398
  */
32249
32399
  addLightBoxInstance(
32250
32400
  /**
32251
- * Dialog to be added to instance manager. Dialog which doesn't inherit from sap.m.Dialog can also be added
32252
- * as long as it has a close method.
32401
+ * LightBox to be added to instance manager.
32253
32402
  */
32254
32403
  oLightBox: sap.m.LightBox
32255
32404
  ): this;
@@ -32301,7 +32450,7 @@ declare namespace sap {
32301
32450
  */
32302
32451
  getOpenDialogs(): sap.ui.core.Control[];
32303
32452
  /**
32304
- * Gets all of the open LightBoxes. If there's no dialog open, an empty array is returned.
32453
+ * Gets all of the open LightBoxes. If there's no LightBox open, an empty array is returned.
32305
32454
  *
32306
32455
  * @returns The opened LightBoxes.
32307
32456
  */
@@ -32410,20 +32559,18 @@ declare namespace sap {
32410
32559
  /**
32411
32560
  * Removes control from predefined dialog category in instance manager.
32412
32561
  *
32413
- * @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
32414
- * of the removed popover.
32562
+ * @returns The removed dialog, or `null` if the dialog isn't managed.
32415
32563
  */
32416
32564
  removeDialogInstance(
32417
32565
  /**
32418
32566
  * to be removed from instance manager.
32419
32567
  */
32420
32568
  oDialog: sap.ui.core.Control
32421
- ): sap.ui.core.Control;
32569
+ ): sap.ui.core.Control | null;
32422
32570
  /**
32423
32571
  * Removes a managed instance from the given category.
32424
32572
  *
32425
- * @returns The removed instance or `null`. If the instance isn't managed, this method returns `null` instead
32426
- * of the instance object.
32573
+ * @returns The removed instance, or `null` if the instance isn't managed.
32427
32574
  */
32428
32575
  removeInstance(
32429
32576
  /**
@@ -32438,8 +32585,7 @@ declare namespace sap {
32438
32585
  /**
32439
32586
  * Removes control from predefined lightbox category in instance manager.
32440
32587
  *
32441
- * @returns The removed popover or `null`. If the LightBox isn't managed, this method returns `null` instead
32442
- * of the removed LightBox.
32588
+ * @returns The removed LightBox, or `null` if the LightBox isn't managed.
32443
32589
  */
32444
32590
  removeLightBoxInstance(
32445
32591
  /**
@@ -32450,8 +32596,7 @@ declare namespace sap {
32450
32596
  /**
32451
32597
  * Removes control from predefined popover category in instance manager.
32452
32598
  *
32453
- * @returns The removed popover or `null`. If the popover isn't managed, this method returns `null` instead
32454
- * of the removed popover.
32599
+ * @returns The removed popover, or `null` if the popover isn't managed.
32455
32600
  */
32456
32601
  removePopoverInstance(
32457
32602
  /**
@@ -35480,7 +35625,7 @@ declare namespace sap {
35480
35625
  * The ariaDescribedBy to be removed or its index or ID
35481
35626
  */
35482
35627
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
35483
- ): sap.ui.core.ID;
35628
+ ): sap.ui.core.ID | null;
35484
35629
  /**
35485
35630
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
35486
35631
  *
@@ -35491,7 +35636,7 @@ declare namespace sap {
35491
35636
  * The ariaLabelledBy to be removed or its index or ID
35492
35637
  */
35493
35638
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
35494
- ): sap.ui.core.ID;
35639
+ ): sap.ui.core.ID | null;
35495
35640
  /**
35496
35641
  * @SINCE 1.99.0
35497
35642
  *
@@ -36312,7 +36457,7 @@ declare namespace sap {
36312
36457
  * The ariaLabelledBy to be removed or its index or ID
36313
36458
  */
36314
36459
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
36315
- ): sap.ui.core.ID;
36460
+ ): sap.ui.core.ID | null;
36316
36461
  /**
36317
36462
  * Removes a contentLeft from the aggregation {@link #getContentLeft contentLeft}.
36318
36463
  *
@@ -36773,7 +36918,7 @@ declare namespace sap {
36773
36918
  * The ariaLabelledBy to be removed or its index or ID
36774
36919
  */
36775
36920
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
36776
- ): sap.ui.core.ID;
36921
+ ): sap.ui.core.ID | null;
36777
36922
  /**
36778
36923
  * @SINCE 1.34
36779
36924
  *
@@ -37151,7 +37296,7 @@ declare namespace sap {
37151
37296
  * The ariaLabelledBy to be removed or its index or ID
37152
37297
  */
37153
37298
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
37154
- ): sap.ui.core.ID;
37299
+ ): sap.ui.core.ID | null;
37155
37300
  /**
37156
37301
  * Shows the text for the cancel button.
37157
37302
  *
@@ -37503,7 +37648,7 @@ declare namespace sap {
37503
37648
  * The ariaLabelledBy to be removed or its index or ID
37504
37649
  */
37505
37650
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
37506
- ): sap.ui.core.ID;
37651
+ ): sap.ui.core.ID | null;
37507
37652
  /**
37508
37653
  * Sets a new value for property {@link #getCustomIcon customIcon}.
37509
37654
  *
@@ -38097,7 +38242,7 @@ declare namespace sap {
38097
38242
  * The ariaDescribedBy to be removed or its index or ID
38098
38243
  */
38099
38244
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
38100
- ): sap.ui.core.ID;
38245
+ ): sap.ui.core.ID | null;
38101
38246
  /**
38102
38247
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
38103
38248
  *
@@ -38108,7 +38253,7 @@ declare namespace sap {
38108
38253
  * The ariaLabelledBy to be removed or its index or ID
38109
38254
  */
38110
38255
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
38111
- ): sap.ui.core.ID;
38256
+ ): sap.ui.core.ID | null;
38112
38257
  /**
38113
38258
  * Sets a new value for property {@link #getActiveIcon activeIcon}.
38114
38259
  *
@@ -39627,7 +39772,7 @@ declare namespace sap {
39627
39772
  * The ariaDescribedBy to be removed or its index or ID
39628
39773
  */
39629
39774
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
39630
- ): sap.ui.core.ID;
39775
+ ): sap.ui.core.ID | null;
39631
39776
  /**
39632
39777
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
39633
39778
  *
@@ -39638,7 +39783,7 @@ declare namespace sap {
39638
39783
  * The ariaLabelledBy to be removed or its index or ID
39639
39784
  */
39640
39785
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
39641
- ): sap.ui.core.ID;
39786
+ ): sap.ui.core.ID | null;
39642
39787
  /**
39643
39788
  * Sets a new value for property {@link #getActiveHandling activeHandling}.
39644
39789
  *
@@ -40830,7 +40975,7 @@ declare namespace sap {
40830
40975
  /**
40831
40976
  * @SINCE 1.98.0
40832
40977
  *
40833
- * Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
40978
+ * Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association headerMenu`,
40834
40979
  * or null.
40835
40980
  */
40836
40981
  getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
@@ -42480,7 +42625,7 @@ declare namespace sap {
42480
42625
  *
42481
42626
  * @returns The list instance object or `null`.
42482
42627
  */
42483
- getList(): sap.m.List;
42628
+ getList(): sap.m.List | null;
42484
42629
  /**
42485
42630
  * Gets current value of property {@link #getOpen open}.
42486
42631
  *
@@ -44422,14 +44567,14 @@ declare namespace sap {
44422
44567
  *
44423
44568
  * Removes a `specialDate` from the aggregation `specialDates`.
44424
44569
  *
44425
- * @returns The removed `specialDate` or null
44570
+ * @returns The removed `specialDate` or `null`
44426
44571
  */
44427
44572
  removeSpecialDate(
44428
44573
  /**
44429
- * The `specialDate` to remove or its index or id
44574
+ * The `specialDate` to remove or its index or ID
44430
44575
  */
44431
44576
  oSpecialDate: sap.ui.unified.DateTypeRange
44432
- ): sap.ui.unified.DateTypeRange;
44577
+ ): sap.ui.unified.DateTypeRange | null;
44433
44578
  /**
44434
44579
  * Sets the displayFormat of the DatePicker.
44435
44580
  *
@@ -45647,7 +45792,7 @@ declare namespace sap {
45647
45792
  * The ariaLabelledBy to be removed or its index or ID
45648
45793
  */
45649
45794
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
45650
- ): sap.ui.core.ID;
45795
+ ): sap.ui.core.ID | null;
45651
45796
  /**
45652
45797
  * Sets a new value for property {@link #getDateValue dateValue}.
45653
45798
  *
@@ -47171,7 +47316,7 @@ declare namespace sap {
47171
47316
  * The ariaDescribedBy to be removed or its index or ID
47172
47317
  */
47173
47318
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
47174
- ): sap.ui.core.ID;
47319
+ ): sap.ui.core.ID | null;
47175
47320
  /**
47176
47321
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
47177
47322
  *
@@ -47182,7 +47327,7 @@ declare namespace sap {
47182
47327
  * The ariaLabelledBy to be removed or its index or ID
47183
47328
  */
47184
47329
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
47185
- ): sap.ui.core.ID;
47330
+ ): sap.ui.core.ID | null;
47186
47331
  /**
47187
47332
  * @SINCE 1.21.1
47188
47333
  *
@@ -48766,7 +48911,7 @@ declare namespace sap {
48766
48911
  * The ariaDescribedBy to be removed or its index or ID
48767
48912
  */
48768
48913
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
48769
- ): sap.ui.core.ID;
48914
+ ): sap.ui.core.ID | null;
48770
48915
  /**
48771
48916
  * @SINCE 1.92
48772
48917
  *
@@ -48779,7 +48924,7 @@ declare namespace sap {
48779
48924
  * The ariaLabelledBy to be removed or its index or ID
48780
48925
  */
48781
48926
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
48782
- ): sap.ui.core.ID;
48927
+ ): sap.ui.core.ID | null;
48783
48928
  /**
48784
48929
  * @SINCE 1.92
48785
48930
  *
@@ -54431,7 +54576,7 @@ declare namespace sap {
54431
54576
  * The ariaLabelledBy to be removed or its index or ID
54432
54577
  */
54433
54578
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
54434
- ): sap.ui.core.ID;
54579
+ ): sap.ui.core.ID | null;
54435
54580
  /**
54436
54581
  * Sets a new value for property {@link #getDesign design}.
54437
54582
  *
@@ -54811,9 +54956,11 @@ declare namespace sap {
54811
54956
  *
54812
54957
  * Background color of the GenericTile. Only applicable for IconMode.
54813
54958
  *
54959
+ * Default value is `...see text or source`.
54960
+ *
54814
54961
  * @returns Value of property `backgroundColor`
54815
54962
  */
54816
- getBackgroundColor(): sap.ui.core.CSSColor;
54963
+ getBackgroundColor(): string;
54817
54964
  /**
54818
54965
  * Gets current value of property {@link #getBackgroundImage backgroundImage}.
54819
54966
  *
@@ -54942,6 +55089,19 @@ declare namespace sap {
54942
55089
  * @returns Value of property `pressEnabled`
54943
55090
  */
54944
55091
  getPressEnabled(): boolean;
55092
+ /**
55093
+ * @SINCE 1.106
55094
+ * @EXPERIMENTAL (since 1.106)
55095
+ *
55096
+ * Gets current value of property {@link #getRenderOnThemeChange renderOnThemeChange}.
55097
+ *
55098
+ * The Tile rerenders on theme change.
55099
+ *
55100
+ * Default value is `false`.
55101
+ *
55102
+ * @returns Value of property `renderOnThemeChange`
55103
+ */
55104
+ getRenderOnThemeChange(): boolean;
54945
55105
  /**
54946
55106
  * @SINCE 1.46.0
54947
55107
  *
@@ -55270,13 +55430,15 @@ declare namespace sap {
55270
55430
  *
55271
55431
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
55272
55432
  *
55433
+ * Default value is `...see text or source`.
55434
+ *
55273
55435
  * @returns Reference to `this` in order to allow method chaining
55274
55436
  */
55275
55437
  setBackgroundColor(
55276
55438
  /**
55277
55439
  * New value for property `backgroundColor`
55278
55440
  */
55279
- sBackgroundColor: sap.ui.core.CSSColor
55441
+ sBackgroundColor?: string
55280
55442
  ): this;
55281
55443
  /**
55282
55444
  * Sets a new value for property {@link #getBackgroundImage backgroundImage}.
@@ -55471,6 +55633,26 @@ declare namespace sap {
55471
55633
  */
55472
55634
  value: boolean
55473
55635
  ): void;
55636
+ /**
55637
+ * @SINCE 1.106
55638
+ * @EXPERIMENTAL (since 1.106)
55639
+ *
55640
+ * Sets a new value for property {@link #getRenderOnThemeChange renderOnThemeChange}.
55641
+ *
55642
+ * The Tile rerenders on theme change.
55643
+ *
55644
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
55645
+ *
55646
+ * Default value is `false`.
55647
+ *
55648
+ * @returns Reference to `this` in order to allow method chaining
55649
+ */
55650
+ setRenderOnThemeChange(
55651
+ /**
55652
+ * New value for property `renderOnThemeChange`
55653
+ */
55654
+ bRenderOnThemeChange?: boolean
55655
+ ): this;
55474
55656
  /**
55475
55657
  * @SINCE 1.46.0
55476
55658
  *
@@ -56517,7 +56699,7 @@ declare namespace sap {
56517
56699
  * The ariaLabelledBy to be removed or its index or ID
56518
56700
  */
56519
56701
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
56520
- ): sap.ui.core.ID;
56702
+ ): sap.ui.core.ID | null;
56521
56703
  /**
56522
56704
  * Removes a content from the aggregation {@link #getContent content}.
56523
56705
  *
@@ -59010,6 +59192,19 @@ declare namespace sap {
59010
59192
  */
59011
59193
  oAdditionalContent: sap.m.Button
59012
59194
  ): this;
59195
+ /**
59196
+ * @SINCE 1.106.0
59197
+ *
59198
+ * Adds some illustrationAriaLabelledBy into the association {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
59199
+ *
59200
+ * @returns Reference to `this` in order to allow method chaining
59201
+ */
59202
+ addIllustrationAriaLabelledBy(
59203
+ /**
59204
+ * The illustrationAriaLabelledBy to add; if empty, nothing is inserted
59205
+ */
59206
+ vIllustrationAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
59207
+ ): this;
59013
59208
  /**
59014
59209
  * @SINCE 1.98
59015
59210
  *
@@ -59091,6 +59286,13 @@ declare namespace sap {
59091
59286
  * @returns Value of property `enableVerticalResponsiveness`
59092
59287
  */
59093
59288
  getEnableVerticalResponsiveness(): boolean;
59289
+ /**
59290
+ * @SINCE 1.106.0
59291
+ *
59292
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getIllustrationAriaLabelledBy
59293
+ * illustrationAriaLabelledBy}.
59294
+ */
59295
+ getIllustrationAriaLabelledBy(): sap.ui.core.ID[];
59094
59296
  /**
59095
59297
  * @SINCE 1.98
59096
59298
  *
@@ -59197,6 +59399,28 @@ declare namespace sap {
59197
59399
  * @returns An array of the removed elements (might be empty)
59198
59400
  */
59199
59401
  removeAllAdditionalContent(): sap.m.Button[];
59402
+ /**
59403
+ * @SINCE 1.106.0
59404
+ *
59405
+ * Removes all the controls in the association named {@link #getIllustrationAriaLabelledBy illustrationAriaLabelledBy}.
59406
+ *
59407
+ * @returns An array of the removed elements (might be empty)
59408
+ */
59409
+ removeAllIllustrationAriaLabelledBy(): sap.ui.core.ID[];
59410
+ /**
59411
+ * @SINCE 1.106.0
59412
+ *
59413
+ * Removes an illustrationAriaLabelledBy from the association named {@link #getIllustrationAriaLabelledBy
59414
+ * illustrationAriaLabelledBy}.
59415
+ *
59416
+ * @returns The removed illustrationAriaLabelledBy or `null`
59417
+ */
59418
+ removeIllustrationAriaLabelledBy(
59419
+ /**
59420
+ * The illustrationAriaLabelledBy to be removed or its index or ID
59421
+ */
59422
+ vIllustrationAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
59423
+ ): sap.ui.core.ID | null;
59200
59424
  /**
59201
59425
  * @SINCE 1.98
59202
59426
  *
@@ -59375,6 +59599,26 @@ declare namespace sap {
59375
59599
  * @returns Metadata object describing this class
59376
59600
  */
59377
59601
  static getMetadata(): sap.ui.core.ElementMetadata;
59602
+ /**
59603
+ * @SINCE 1.106.0
59604
+ *
59605
+ * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
59606
+ *
59607
+ * @returns Reference to `this` in order to allow method chaining
59608
+ */
59609
+ addAriaLabelledBy(
59610
+ /**
59611
+ * The ariaLabelledBy to add; if empty, nothing is inserted
59612
+ */
59613
+ vAriaLabelledBy: sap.ui.core.ID | sap.ui.core.Control
59614
+ ): this;
59615
+ /**
59616
+ * @SINCE 1.106.0
59617
+ *
59618
+ * Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
59619
+ * ariaLabelledBy}.
59620
+ */
59621
+ getAriaLabelledBy(): sap.ui.core.ID[];
59378
59622
  /**
59379
59623
  * @SINCE 1.98
59380
59624
  *
@@ -59405,6 +59649,27 @@ declare namespace sap {
59405
59649
  * @returns Value of property `type`
59406
59650
  */
59407
59651
  getType(): string;
59652
+ /**
59653
+ * @SINCE 1.106.0
59654
+ *
59655
+ * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
59656
+ *
59657
+ * @returns An array of the removed elements (might be empty)
59658
+ */
59659
+ removeAllAriaLabelledBy(): sap.ui.core.ID[];
59660
+ /**
59661
+ * @SINCE 1.106.0
59662
+ *
59663
+ * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
59664
+ *
59665
+ * @returns The removed ariaLabelledBy or `null`
59666
+ */
59667
+ removeAriaLabelledBy(
59668
+ /**
59669
+ * The ariaLabelledBy to be removed or its index or ID
59670
+ */
59671
+ vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
59672
+ ): sap.ui.core.ID | null;
59408
59673
  /**
59409
59674
  * @SINCE 1.98
59410
59675
  *
@@ -60187,7 +60452,7 @@ declare namespace sap {
60187
60452
  * The ariaDescribedBy to be removed or its index or ID
60188
60453
  */
60189
60454
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
60190
- ): sap.ui.core.ID;
60455
+ ): sap.ui.core.ID | null;
60191
60456
  /**
60192
60457
  * @SINCE 1.79
60193
60458
  *
@@ -60200,7 +60465,7 @@ declare namespace sap {
60200
60465
  * The ariaDetails to be removed or its index or ID
60201
60466
  */
60202
60467
  vAriaDetails: int | sap.ui.core.ID | sap.ui.core.Control
60203
- ): sap.ui.core.ID;
60468
+ ): sap.ui.core.ID | null;
60204
60469
  /**
60205
60470
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
60206
60471
  *
@@ -60211,7 +60476,7 @@ declare namespace sap {
60211
60476
  * The ariaLabelledBy to be removed or its index or ID
60212
60477
  */
60213
60478
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
60214
- ): sap.ui.core.ID;
60479
+ ): sap.ui.core.ID | null;
60215
60480
  /**
60216
60481
  * Sets a new value for property {@link #getActiveSrc activeSrc}.
60217
60482
  *
@@ -61524,7 +61789,8 @@ declare namespace sap {
61524
61789
  *
61525
61790
  * Maximum number of characters. Value '0' means the feature is switched off. This parameter is not compatible
61526
61791
  * with the input type `sap.m.InputType.Number`. If the input type is set to `Number`, the `maxLength` value
61527
- * is ignored.
61792
+ * is ignored. If the `maxLength` is set after there is already a longer value, this value will not get
61793
+ * truncated. The `maxLength` property has effect only when the value is modified by user interaction.
61528
61794
  *
61529
61795
  * Default value is `0`.
61530
61796
  *
@@ -62271,7 +62537,8 @@ declare namespace sap {
62271
62537
  *
62272
62538
  * Maximum number of characters. Value '0' means the feature is switched off. This parameter is not compatible
62273
62539
  * with the input type `sap.m.InputType.Number`. If the input type is set to `Number`, the `maxLength` value
62274
- * is ignored.
62540
+ * is ignored. If the `maxLength` is set after there is already a longer value, this value will not get
62541
+ * truncated. The `maxLength` property has effect only when the value is modified by user interaction.
62275
62542
  *
62276
62543
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
62277
62544
  *
@@ -63265,7 +63532,7 @@ declare namespace sap {
63265
63532
  * The ariaDescribedBy to be removed or its index or ID
63266
63533
  */
63267
63534
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
63268
- ): sap.ui.core.ID;
63535
+ ): sap.ui.core.ID | null;
63269
63536
  /**
63270
63537
  * @SINCE 1.27.0
63271
63538
  *
@@ -63278,7 +63545,7 @@ declare namespace sap {
63278
63545
  * The ariaLabelledBy to be removed or its index or ID
63279
63546
  */
63280
63547
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
63281
- ): sap.ui.core.ID;
63548
+ ): sap.ui.core.ID | null;
63282
63549
  /**
63283
63550
  * @SINCE 1.22.1
63284
63551
  *
@@ -64257,7 +64524,7 @@ declare namespace sap {
64257
64524
  *
64258
64525
  * Additional Information:
64259
64526
  *
64260
- * Check out the API Reference.
64527
+ * Check out the {@link sap.m.LightBoxItem API Reference}.
64261
64528
  */
64262
64529
  class LightBox
64263
64530
  extends sap.ui.core.Control
@@ -65056,7 +65323,7 @@ declare namespace sap {
65056
65323
  * The ariaDescribedBy to be removed or its index or ID
65057
65324
  */
65058
65325
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
65059
- ): sap.ui.core.ID;
65326
+ ): sap.ui.core.ID | null;
65060
65327
  /**
65061
65328
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
65062
65329
  *
@@ -65067,7 +65334,7 @@ declare namespace sap {
65067
65334
  * The ariaLabelledBy to be removed or its index or ID
65068
65335
  */
65069
65336
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
65070
- ): sap.ui.core.ID;
65337
+ ): sap.ui.core.ID | null;
65071
65338
  /**
65072
65339
  * @SINCE 1.104.0
65073
65340
  *
@@ -67040,7 +67307,7 @@ declare namespace sap {
67040
67307
  * The ariaLabelledBy to be removed or its index or ID
67041
67308
  */
67042
67309
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
67043
- ): sap.ui.core.ID;
67310
+ ): sap.ui.core.ID | null;
67044
67311
  /**
67045
67312
  * Removes a item from the aggregation {@link #getItems items}.
67046
67313
  *
@@ -68200,7 +68467,7 @@ declare namespace sap {
68200
68467
  * The ariaLabelledBy to be removed or its index or ID
68201
68468
  */
68202
68469
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
68203
- ): sap.ui.core.ID;
68470
+ ): sap.ui.core.ID | null;
68204
68471
  /**
68205
68472
  * Sets a new value for property {@link #getCounter counter}.
68206
68473
  *
@@ -69639,7 +69906,7 @@ declare namespace sap {
69639
69906
  * The ariaDescribedBy to be removed or its index or ID
69640
69907
  */
69641
69908
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
69642
- ): sap.ui.core.ID;
69909
+ ): sap.ui.core.ID | null;
69643
69910
  /**
69644
69911
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
69645
69912
  *
@@ -69650,7 +69917,7 @@ declare namespace sap {
69650
69917
  * The ariaLabelledBy to be removed or its index or ID
69651
69918
  */
69652
69919
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
69653
- ): sap.ui.core.ID;
69920
+ ): sap.ui.core.ID | null;
69654
69921
  /**
69655
69922
  * Sets a new value for property {@link #getActiveIcon activeIcon}.
69656
69923
  *
@@ -71116,7 +71383,7 @@ declare namespace sap {
71116
71383
  * The ariaDescribedBy to be removed or its index or ID
71117
71384
  */
71118
71385
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
71119
- ): sap.ui.core.ID;
71386
+ ): sap.ui.core.ID | null;
71120
71387
  /**
71121
71388
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
71122
71389
  *
@@ -71127,7 +71394,7 @@ declare namespace sap {
71127
71394
  * The ariaLabelledBy to be removed or its index or ID
71128
71395
  */
71129
71396
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
71130
- ): sap.ui.core.ID;
71397
+ ): sap.ui.core.ID | null;
71131
71398
  /**
71132
71399
  * @SINCE 1.54
71133
71400
  *
@@ -79220,7 +79487,7 @@ declare namespace sap {
79220
79487
  * The ariaDescribedBy to be removed or its index or ID
79221
79488
  */
79222
79489
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
79223
- ): sap.ui.core.ID;
79490
+ ): sap.ui.core.ID | null;
79224
79491
  /**
79225
79492
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
79226
79493
  *
@@ -79231,7 +79498,7 @@ declare namespace sap {
79231
79498
  * The ariaLabelledBy to be removed or its index or ID
79232
79499
  */
79233
79500
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
79234
- ): sap.ui.core.ID;
79501
+ ): sap.ui.core.ID | null;
79235
79502
  /**
79236
79503
  * Removes a attribute from the aggregation {@link #getAttributes attributes}.
79237
79504
  *
@@ -80109,7 +80376,7 @@ declare namespace sap {
80109
80376
  * The ariaLabelledBy to be removed or its index or ID
80110
80377
  */
80111
80378
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
80112
- ): sap.ui.core.ID;
80379
+ ): sap.ui.core.ID | null;
80113
80380
  /**
80114
80381
  * @deprecated (since 1.24.0) - There is no replacement for the moment.
80115
80382
  *
@@ -81163,7 +81430,7 @@ declare namespace sap {
81163
81430
  * The ariaDescribedBy to be removed or its index or ID
81164
81431
  */
81165
81432
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
81166
- ): sap.ui.core.ID;
81433
+ ): sap.ui.core.ID | null;
81167
81434
  /**
81168
81435
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
81169
81436
  *
@@ -81174,7 +81441,7 @@ declare namespace sap {
81174
81441
  * The ariaLabelledBy to be removed or its index or ID
81175
81442
  */
81176
81443
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
81177
- ): sap.ui.core.ID;
81444
+ ): sap.ui.core.ID | null;
81178
81445
  /**
81179
81446
  * Sets a new value for property {@link #getAdditionalInfo additionalInfo}.
81180
81447
  *
@@ -81569,7 +81836,7 @@ declare namespace sap {
81569
81836
  * The ariaDescribedBy to be removed or its index or ID
81570
81837
  */
81571
81838
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
81572
- ): sap.ui.core.ID;
81839
+ ): sap.ui.core.ID | null;
81573
81840
  /**
81574
81841
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
81575
81842
  *
@@ -81580,7 +81847,7 @@ declare namespace sap {
81580
81847
  * The ariaLabelledBy to be removed or its index or ID
81581
81848
  */
81582
81849
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
81583
- ): sap.ui.core.ID;
81850
+ ): sap.ui.core.ID | null;
81584
81851
  /**
81585
81852
  * @SINCE 1.86
81586
81853
  *
@@ -82054,7 +82321,7 @@ declare namespace sap {
82054
82321
  * The ariaDescribedBy to be removed or its index or ID
82055
82322
  */
82056
82323
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
82057
- ): sap.ui.core.ID;
82324
+ ): sap.ui.core.ID | null;
82058
82325
  /**
82059
82326
  * @SINCE 1.54
82060
82327
  *
@@ -92449,7 +92716,7 @@ declare namespace sap {
92449
92716
  * The ariaLabelledBy to be removed or its index or ID
92450
92717
  */
92451
92718
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
92452
- ): sap.ui.core.ID;
92719
+ ): sap.ui.core.ID | null;
92453
92720
  /**
92454
92721
  * Removes a row from the aggregation {@link #getRows rows}.
92455
92722
  *
@@ -95684,7 +95951,7 @@ declare namespace sap {
95684
95951
  * The ariaDescribedBy to be removed or its index or ID
95685
95952
  */
95686
95953
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
95687
- ): sap.ui.core.ID;
95954
+ ): sap.ui.core.ID | null;
95688
95955
  /**
95689
95956
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
95690
95957
  *
@@ -95695,7 +95962,7 @@ declare namespace sap {
95695
95962
  * The ariaLabelledBy to be removed or its index or ID
95696
95963
  */
95697
95964
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
95698
- ): sap.ui.core.ID;
95965
+ ): sap.ui.core.ID | null;
95699
95966
  /**
95700
95967
  * Removes a content from the aggregation {@link #getContent content}.
95701
95968
  *
@@ -96393,7 +96660,7 @@ declare namespace sap {
96393
96660
  * The ariaDescribedBy to be removed or its index or ID
96394
96661
  */
96395
96662
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
96396
- ): sap.ui.core.ID;
96663
+ ): sap.ui.core.ID | null;
96397
96664
  /**
96398
96665
  * @SINCE 1.69
96399
96666
  *
@@ -96406,7 +96673,7 @@ declare namespace sap {
96406
96673
  * The ariaLabelledBy to be removed or its index or ID
96407
96674
  */
96408
96675
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
96409
- ): sap.ui.core.ID;
96676
+ ): sap.ui.core.ID | null;
96410
96677
  /**
96411
96678
  * @SINCE 1.73
96412
96679
  *
@@ -99161,7 +99428,7 @@ declare namespace sap {
99161
99428
  * The ariaDescribedBy to be removed or its index or ID
99162
99429
  */
99163
99430
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
99164
- ): sap.ui.core.ID;
99431
+ ): sap.ui.core.ID | null;
99165
99432
  /**
99166
99433
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
99167
99434
  *
@@ -99172,7 +99439,7 @@ declare namespace sap {
99172
99439
  * The ariaLabelledBy to be removed or its index or ID
99173
99440
  */
99174
99441
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
99175
- ): sap.ui.core.ID;
99442
+ ): sap.ui.core.ID | null;
99176
99443
  /**
99177
99444
  * Sets a new value for property {@link #getActiveHandling activeHandling}.
99178
99445
  *
@@ -99755,7 +100022,7 @@ declare namespace sap {
99755
100022
  * The ariaDescribedBy to be removed or its index or ID
99756
100023
  */
99757
100024
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
99758
- ): sap.ui.core.ID;
100025
+ ): sap.ui.core.ID | null;
99759
100026
  /**
99760
100027
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
99761
100028
  *
@@ -99766,7 +100033,7 @@ declare namespace sap {
99766
100033
  * The ariaLabelledBy to be removed or its index or ID
99767
100034
  */
99768
100035
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
99769
- ): sap.ui.core.ID;
100036
+ ): sap.ui.core.ID | null;
99770
100037
  /**
99771
100038
  * Removes a radio button from the group.
99772
100039
  *
@@ -100477,7 +100744,7 @@ declare namespace sap {
100477
100744
  * The ariaDescribedBy to be removed or its index or ID
100478
100745
  */
100479
100746
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
100480
- ): sap.ui.core.ID;
100747
+ ): sap.ui.core.ID | null;
100481
100748
  /**
100482
100749
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
100483
100750
  *
@@ -100488,7 +100755,7 @@ declare namespace sap {
100488
100755
  * The ariaLabelledBy to be removed or its index or ID
100489
100756
  */
100490
100757
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
100491
- ): sap.ui.core.ID;
100758
+ ): sap.ui.core.ID | null;
100492
100759
  /**
100493
100760
  * @SINCE 1.50.0
100494
100761
  *
@@ -101416,7 +101683,7 @@ declare namespace sap {
101416
101683
  * The ariaDescribedBy to be removed or its index or ID
101417
101684
  */
101418
101685
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
101419
- ): sap.ui.core.ID;
101686
+ ): sap.ui.core.ID | null;
101420
101687
  /**
101421
101688
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
101422
101689
  *
@@ -101427,7 +101694,7 @@ declare namespace sap {
101427
101694
  * The ariaLabelledBy to be removed or its index or ID
101428
101695
  */
101429
101696
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
101430
- ): sap.ui.core.ID;
101697
+ ): sap.ui.core.ID | null;
101431
101698
  /**
101432
101699
  * Removes a content from the aggregation {@link #getContent content}.
101433
101700
  *
@@ -102939,7 +103206,7 @@ declare namespace sap {
102939
103206
  * The ariaDescribedBy to be removed or its index or ID
102940
103207
  */
102941
103208
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
102942
- ): sap.ui.core.ID;
103209
+ ): sap.ui.core.ID | null;
102943
103210
  /**
102944
103211
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
102945
103212
  *
@@ -102950,7 +103217,7 @@ declare namespace sap {
102950
103217
  * The ariaLabelledBy to be removed or its index or ID
102951
103218
  */
102952
103219
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
102953
- ): sap.ui.core.ID;
103220
+ ): sap.ui.core.ID | null;
102954
103221
  /**
102955
103222
  * @SINCE 1.34
102956
103223
  *
@@ -103782,7 +104049,7 @@ declare namespace sap {
103782
104049
  * The ariaDescribedBy to be removed or its index or ID
103783
104050
  */
103784
104051
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
103785
- ): sap.ui.core.ID;
104052
+ ): sap.ui.core.ID | null;
103786
104053
  /**
103787
104054
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
103788
104055
  *
@@ -103793,7 +104060,7 @@ declare namespace sap {
103793
104060
  * The ariaLabelledBy to be removed or its index or ID
103794
104061
  */
103795
104062
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
103796
- ): sap.ui.core.ID;
104063
+ ): sap.ui.core.ID | null;
103797
104064
  /**
103798
104065
  * @deprecated (since 1.28.0) - replaced by `items` aggregation
103799
104066
  *
@@ -104609,14 +104876,14 @@ declare namespace sap {
104609
104876
  *
104610
104877
  * **Note: ** If duplicate keys exist, the first item matching the key is returned.
104611
104878
  *
104612
- * @returns The `sap.ui.core.Item` instance or `null` if thre is no such item
104879
+ * @returns The `sap.ui.core.Item` instance or `null` if there is no such item
104613
104880
  */
104614
104881
  getItemByKey(
104615
104882
  /**
104616
104883
  * An item key that specifies the item to be retrieved.
104617
104884
  */
104618
104885
  sKey: string
104619
- ): sap.ui.core.Item;
104886
+ ): sap.ui.core.Item | null;
104620
104887
  /**
104621
104888
  * Gets aggregation `items`.
104622
104889
  *
@@ -104905,7 +105172,7 @@ declare namespace sap {
104905
105172
  * The ariaLabelledBy to be removed or its index or ID
104906
105173
  */
104907
105174
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
104908
- ): sap.ui.core.ID;
105175
+ ): sap.ui.core.ID | null;
104909
105176
  /**
104910
105177
  * Removes an item from the aggregation named `items`.
104911
105178
  *
@@ -108744,7 +109011,7 @@ declare namespace sap {
108744
109011
  * The ariaLabelledBy to be removed or its index or ID
108745
109012
  */
108746
109013
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
108747
- ): sap.ui.core.ID;
109014
+ ): sap.ui.core.ID | null;
108748
109015
  /**
108749
109016
  * Removes an item from the aggregation named `items`.
108750
109017
  *
@@ -110593,16 +110860,16 @@ declare namespace sap {
110593
110860
  /**
110594
110861
  * @SINCE 1.75
110595
110862
  *
110596
- * Finds the view object by given key
110863
+ * Finds the view object by given key.
110597
110864
  *
110598
- * @returns the view object which matched the given `sKey`, or null if there is no such view
110865
+ * @returns the view object which matched the given `sKey`, or `null` if there is no such view
110599
110866
  */
110600
110867
  getViewByKey(
110601
110868
  /**
110602
110869
  * The key of the view
110603
110870
  */
110604
110871
  sKey: string
110605
- ): sap.m.SinglePlanningCalendarView;
110872
+ ): sap.m.SinglePlanningCalendarView | null;
110606
110873
  /**
110607
110874
  * Gets content of aggregation {@link #getViews views}.
110608
110875
  *
@@ -112143,7 +112410,7 @@ declare namespace sap {
112143
112410
  * The ariaLabelledBy to be removed or its index or ID
112144
112411
  */
112145
112412
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
112146
- ): sap.ui.core.ID;
112413
+ ): sap.ui.core.ID | null;
112147
112414
  /**
112148
112415
  * @SINCE 1.56
112149
112416
  *
@@ -115896,7 +116163,7 @@ declare namespace sap {
115896
116163
  * The ariaDescribedBy to be removed or its index or ID
115897
116164
  */
115898
116165
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
115899
- ): sap.ui.core.ID;
116166
+ ): sap.ui.core.ID | null;
115900
116167
  /**
115901
116168
  * Sets a new value for property {@link #getActiveIcon activeIcon}.
115902
116169
  *
@@ -116649,7 +116916,7 @@ declare namespace sap {
116649
116916
  * The ariaDescribedBy to be removed or its index or ID
116650
116917
  */
116651
116918
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
116652
- ): sap.ui.core.ID;
116919
+ ): sap.ui.core.ID | null;
116653
116920
  /**
116654
116921
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
116655
116922
  *
@@ -116660,7 +116927,7 @@ declare namespace sap {
116660
116927
  * The ariaLabelledBy to be removed or its index or ID
116661
116928
  */
116662
116929
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
116663
- ): sap.ui.core.ID;
116930
+ ): sap.ui.core.ID | null;
116664
116931
  /**
116665
116932
  * @SINCE 1.54
116666
116933
  *
@@ -117379,7 +117646,7 @@ declare namespace sap {
117379
117646
  * The ariaLabelledBy to be removed or its index or ID
117380
117647
  */
117381
117648
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
117382
- ): sap.ui.core.ID;
117649
+ ): sap.ui.core.ID | null;
117383
117650
  /**
117384
117651
  * Sets a new value for property {@link #getCustomTextOff customTextOff}.
117385
117652
  *
@@ -119576,7 +119843,7 @@ declare namespace sap {
119576
119843
  * The table to be removed or its index or ID
119577
119844
  */
119578
119845
  vTable: int | sap.ui.core.ID | sap.m.Table
119579
- ): sap.ui.core.ID;
119846
+ ): sap.ui.core.ID | null;
119580
119847
  /**
119581
119848
  * Persist the personalizations
119582
119849
  */
@@ -125903,7 +126170,7 @@ declare namespace sap {
125903
126170
  * The ariaDescribedBy to be removed or its index or ID
125904
126171
  */
125905
126172
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
125906
- ): sap.ui.core.ID;
126173
+ ): sap.ui.core.ID | null;
125907
126174
  /**
125908
126175
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
125909
126176
  *
@@ -125914,7 +126181,7 @@ declare namespace sap {
125914
126181
  * The ariaLabelledBy to be removed or its index or ID
125915
126182
  */
125916
126183
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
125917
- ): sap.ui.core.ID;
126184
+ ): sap.ui.core.ID | null;
125918
126185
  /**
125919
126186
  * Sets a new value for property {@link #getEditable editable}.
125920
126187
  *
@@ -126626,7 +126893,7 @@ declare namespace sap {
126626
126893
  * The ariaDescribedBy to be removed or its index or ID
126627
126894
  */
126628
126895
  vAriaDescribedBy: int | sap.ui.core.ID | sap.ui.core.Control
126629
- ): sap.ui.core.ID;
126896
+ ): sap.ui.core.ID | null;
126630
126897
  /**
126631
126898
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
126632
126899
  *
@@ -126637,7 +126904,7 @@ declare namespace sap {
126637
126904
  * The ariaLabelledBy to be removed or its index or ID
126638
126905
  */
126639
126906
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
126640
- ): sap.ui.core.ID;
126907
+ ): sap.ui.core.ID | null;
126641
126908
  /**
126642
126909
  * Removes a token from the aggregation {@link #getTokens tokens}.
126643
126910
  *
@@ -127174,7 +127441,7 @@ declare namespace sap {
127174
127441
  * The ariaLabelledBy to be removed or its index or ID
127175
127442
  */
127176
127443
  vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
127177
- ): sap.ui.core.ID;
127444
+ ): sap.ui.core.ID | null;
127178
127445
  /**
127179
127446
  * Removes a content from the aggregation {@link #getContent content}.
127180
127447
  *
@@ -134552,6 +134819,14 @@ declare namespace sap {
134552
134819
  * control. Also, in order to achieve the target Fiori design, the `sapUiNoContentPadding` class needs to
134553
134820
  * be added to the {@link sap.f.DynamicPage} as well as `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`
134554
134821
  * to the `sap.m.Wizard`.
134822
+ *
134823
+ * **Note:** The `sap.m.Wizard` control does not support runtime (dynamic) changes to the available paths
134824
+ * (when branching is used) or additional steps being added after the last step. What is meant by runtime
134825
+ * (dynamic) changes to the available paths: If the `sap.m.Wizard` is set as branching, and the available
134826
+ * paths are:
134827
+ * - A -> B -> C
134828
+ * - A -> B -> D Changing the `subsequentSteps` association of step C to point to step D (creating
134829
+ * A -> B -> C -> D path) is not supported.
134555
134830
  */
134556
134831
  class Wizard
134557
134832
  extends sap.ui.core.Control
@@ -135571,7 +135846,7 @@ declare namespace sap {
135571
135846
  * The subsequentStep to be removed or its index or ID
135572
135847
  */
135573
135848
  vSubsequentStep: int | sap.ui.core.ID | sap.m.WizardStep
135574
- ): sap.ui.core.ID;
135849
+ ): sap.ui.core.ID | null;
135575
135850
  /**
135576
135851
  * Sets a new value for property {@link #getIcon icon}.
135577
135852
  *
@@ -136903,6 +137178,15 @@ declare namespace sap {
136903
137178
  * DOM element.
136904
137179
  */
136905
137180
  Image = "Image",
137181
+ /**
137182
+ * @EXPERIMENTAL (since 1.106)
137183
+ *
137184
+ * The image is rendered with 'div' tag, containing the inline 'svg' **Note:** Please, be aware that this
137185
+ * feature works under the Browser's Cross-Origin Resource Sharing (CORS) policy. This means that a web
137186
+ * application using those APIs can only request resources from the same origin the application was loaded
137187
+ * from unless the response from other origins includes the right CORS headers.
137188
+ */
137189
+ InlineSvg = "InlineSvg",
136906
137190
  }
136907
137191
  /**
136908
137192
  * @SINCE 1.44.0