@sapui5/ts-types 1.136.2 → 1.138.0

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 (70) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -1
  3. package/types/sap.apf.d.ts +30 -3
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.cux.home.d.ts +263 -63
  8. package/types/sap.esh.search.ui.d.ts +71 -1
  9. package/types/sap.f.d.ts +1 -1
  10. package/types/sap.fe.ariba.d.ts +3 -0
  11. package/types/sap.fe.base.d.ts +1 -1
  12. package/types/sap.fe.controls.d.ts +1 -1
  13. package/types/sap.fe.core.d.ts +46 -6
  14. package/types/sap.fe.ina.d.ts +1 -1
  15. package/types/sap.fe.macros.d.ts +222 -65
  16. package/types/sap.fe.navigation.d.ts +1 -1
  17. package/types/sap.fe.placeholder.d.ts +1 -1
  18. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  19. package/types/sap.fe.templates.d.ts +1 -1
  20. package/types/sap.fe.test.d.ts +4 -3
  21. package/types/sap.fe.tools.d.ts +1 -1
  22. package/types/sap.feedback.ui.d.ts +1 -1
  23. package/types/sap.gantt.d.ts +1 -1
  24. package/types/sap.insights.d.ts +1 -1
  25. package/types/sap.m.d.ts +1216 -543
  26. package/types/sap.makit.d.ts +1 -1
  27. package/types/sap.me.d.ts +1 -1
  28. package/types/sap.ndc.d.ts +1 -1
  29. package/types/sap.ovp.d.ts +1 -1
  30. package/types/sap.rules.ui.d.ts +1 -1
  31. package/types/sap.sac.df.d.ts +34 -1
  32. package/types/sap.suite.ui.commons.d.ts +2 -2
  33. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  34. package/types/sap.suite.ui.microchart.d.ts +1 -1
  35. package/types/sap.tnt.d.ts +103 -16
  36. package/types/sap.ui.codeeditor.d.ts +1 -1
  37. package/types/sap.ui.commons.d.ts +1 -1
  38. package/types/sap.ui.comp.d.ts +70 -9
  39. package/types/sap.ui.core.d.ts +59 -50
  40. package/types/sap.ui.dt.d.ts +1 -1
  41. package/types/sap.ui.export.d.ts +216 -167
  42. package/types/sap.ui.fl.d.ts +3 -7
  43. package/types/sap.ui.generic.app.d.ts +1 -1
  44. package/types/sap.ui.generic.template.d.ts +1 -1
  45. package/types/sap.ui.integration.d.ts +44 -24
  46. package/types/sap.ui.layout.d.ts +1 -1
  47. package/types/{mdc-1.136.0-d.ts → sap.ui.mdc.d.ts} +597 -293
  48. package/types/sap.ui.richtexteditor.d.ts +21 -17
  49. package/types/sap.ui.rta.d.ts +1 -1
  50. package/types/sap.ui.suite.d.ts +1 -1
  51. package/types/sap.ui.support.d.ts +1 -1
  52. package/types/sap.ui.table.d.ts +1 -1
  53. package/types/sap.ui.testrecorder.d.ts +1 -1
  54. package/types/sap.ui.unified.d.ts +9 -1
  55. package/types/sap.ui.ux3.d.ts +1 -1
  56. package/types/sap.ui.vbm.d.ts +65 -29
  57. package/types/sap.ui.vk.d.ts +387 -100
  58. package/types/sap.ui.vtm.d.ts +7 -4
  59. package/types/sap.ui.webc.common.d.ts +1 -1
  60. package/types/sap.ui.webc.fiori.d.ts +1 -1
  61. package/types/sap.ui.webc.main.d.ts +1 -1
  62. package/types/sap.uiext.inbox.d.ts +1 -1
  63. package/types/sap.ushell.d.ts +55 -30
  64. package/types/sap.ushell_abap.d.ts +1 -1
  65. package/types/sap.uxap.d.ts +1 -1
  66. package/types/sap.viz.d.ts +1 -1
  67. package/types/sap.webanalytics.core.d.ts +1 -1
  68. package/types/sap.zen.commons.d.ts +1 -1
  69. package/types/sap.zen.crosstab.d.ts +1 -1
  70. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -6,6 +6,55 @@ declare namespace sap {
6
6
  * Library containing the building blocks for SAP Fiori elements.
7
7
  */
8
8
  namespace macros {
9
+ namespace form {
10
+ /**
11
+ * Describes the settings that can be provided to the FormElement constructor.
12
+ */
13
+ interface $FormElementSettings
14
+ extends sap.ui.layout.form.$FormElementSettings {
15
+ /**
16
+ * Defines the path of the context used in the current page or block.
17
+ * This setting is defined by the framework.
18
+ */
19
+ contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
20
+
21
+ /**
22
+ * Label shown for the field. If not set, the label from the annotations will be shown.
23
+ */
24
+ label?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
25
+
26
+ /**
27
+ * Defines the relative path of the property in the metamodel, based on the current contextPath.
28
+ */
29
+ metaPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
30
+
31
+ /**
32
+ * If set to false, the FormElement is not rendered.
33
+ */
34
+ visible?:
35
+ | boolean
36
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
37
+ | `{${string}}`;
38
+
39
+ /**
40
+ * Optional aggregation of controls that should be displayed inside the FormElement.
41
+ * If not set, a default Field building block will be rendered
42
+ */
43
+ fields?:
44
+ | sap.ui.core.Control[]
45
+ | sap.ui.core.Control
46
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
47
+ | `{${string}}`;
48
+ }
49
+
50
+ /**
51
+ * Building block used to create a form element based on the metadata provided by OData V4.
52
+ *
53
+ * @since 1.90.0
54
+ */
55
+ class FormElement extends sap.ui.layout.form.FormElement {}
56
+ }
57
+
9
58
  namespace chart {
10
59
  /**
11
60
  * Describes the settings that can be provided to the Action constructor.
@@ -1068,6 +1117,9 @@ declare namespace sap {
1068
1117
  getFilters(): object;
1069
1118
  /**
1070
1119
  * Get the selection variant from the filter bar.
1120
+ * Note: This method returns all the filter values that are set in the filter bar, including the text from
1121
+ * the search field (with $search as the property name). However, it doesn't return any filter field condition
1122
+ * that uses a custom operator.
1071
1123
  *
1072
1124
  *
1073
1125
  * @returns A promise which resolves with a {@link sap.fe.navigation.SelectionVariant }
@@ -1145,6 +1197,8 @@ declare namespace sap {
1145
1197
  /**
1146
1198
  * Sets {@link sap.fe.navigation.SelectionVariant } to the filter bar. Note: setSelectionVariant will clear
1147
1199
  * existing filters and then apply the SelectionVariant values.
1200
+ * Note: This method cannot set the search field text or any filter field condition that relies on a custom
1201
+ * operator.
1148
1202
  *
1149
1203
  *
1150
1204
  * @returns A promise for asynchronous handling
@@ -1454,6 +1508,14 @@ declare namespace sap {
1454
1508
  | string
1455
1509
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
1456
1510
 
1511
+ /**
1512
+ * Displays the AI Icon on the action button.
1513
+ */
1514
+ isAIOperation?:
1515
+ | boolean
1516
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1517
+ | `{${string}}`;
1518
+
1457
1519
  /**
1458
1520
  * Unique identifier of the action
1459
1521
  */
@@ -1615,6 +1677,14 @@ declare namespace sap {
1615
1677
  | string
1616
1678
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
1617
1679
 
1680
+ /**
1681
+ * Displays the AI Icon on the action button.
1682
+ */
1683
+ isAIOperation?:
1684
+ | boolean
1685
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1686
+ | `{${string}}`;
1687
+
1618
1688
  /**
1619
1689
  * Unique identifier of the action to overridden.
1620
1690
  */
@@ -1667,6 +1737,12 @@ declare namespace sap {
1667
1737
  */
1668
1738
  anchor?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1669
1739
 
1740
+ /**
1741
+ * The column availability
1742
+ * Allowed values are `Default`, `Adaptation`, `Hidden`
1743
+ */
1744
+ availability?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1745
+
1670
1746
  /**
1671
1747
  * The text that will be displayed for this column header
1672
1748
  */
@@ -1705,6 +1781,19 @@ declare namespace sap {
1705
1781
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1706
1782
  | `{${string}}`;
1707
1783
 
1784
+ /**
1785
+ * Determines if the information in the column is required.
1786
+ */
1787
+ required?:
1788
+ | boolean
1789
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1790
+ | `{${string}}`;
1791
+
1792
+ /**
1793
+ * Determines the text displayed for the column tooltip
1794
+ */
1795
+ tooltip?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1796
+
1708
1797
  /**
1709
1798
  * Determines the column's width.
1710
1799
  * Allowed values are 'auto', 'value', and 'inherit', according to {@link sap.ui.core.CSSSize }
@@ -1770,6 +1859,12 @@ declare namespace sap {
1770
1859
  */
1771
1860
  interface $ColumnOverrideSettings
1772
1861
  extends sap.fe.macros.controls.$BuildingBlockObjectPropertySettings {
1862
+ /**
1863
+ * The column availability
1864
+ * Allowed values are `Default`, `Adaptation`, `Hidden``
1865
+ */
1866
+ availability?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
1867
+
1773
1868
  /**
1774
1869
  * Aligns the header as well as the content horizontally
1775
1870
  */
@@ -1902,6 +1997,15 @@ declare namespace sap {
1902
1997
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1903
1998
  | `{${string}}`;
1904
1999
 
2000
+ /**
2001
+ * Determines whether the number of fixed columns can be configured in the Column Settings dialog.
2002
+ * This property doesn't apply for responsive tables
2003
+ */
2004
+ disableColumnFreeze?:
2005
+ | boolean
2006
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2007
+ | `{${string}}`;
2008
+
1905
2009
  /**
1906
2010
  * Controls if the copy functionality of the table is disabled or not.
1907
2011
  */
@@ -2121,6 +2225,14 @@ declare namespace sap {
2121
2225
  | string
2122
2226
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
2123
2227
 
2228
+ /**
2229
+ * Defines the number of records to be initially requested from the back end.
2230
+ */
2231
+ threshold?:
2232
+ | int
2233
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2234
+ | `{${string}}`;
2235
+
2124
2236
  /**
2125
2237
  * Defines the type of table that will be used by the building block to render the data.
2126
2238
  * Allowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.
@@ -2300,6 +2412,15 @@ declare namespace sap {
2300
2412
  | sap.ui.base.ManagedObject.PropertyBindingInfo
2301
2413
  | `{${string}}`;
2302
2414
 
2415
+ /**
2416
+ * Determines whether the number of fixed columns can be configured in the Column Settings dialog.
2417
+ * This property doesn't apply for responsive tables
2418
+ */
2419
+ disableColumnFreeze?:
2420
+ | boolean
2421
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2422
+ | `{${string}}`;
2423
+
2303
2424
  /**
2304
2425
  * Controls if the copy functionality of the table is disabled or not.
2305
2426
  */
@@ -2554,6 +2675,14 @@ declare namespace sap {
2554
2675
  | string
2555
2676
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
2556
2677
 
2678
+ /**
2679
+ * Defines the number of records to be initially requested from the back end.
2680
+ */
2681
+ threshold?:
2682
+ | int
2683
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2684
+ | `{${string}}`;
2685
+
2557
2686
  /**
2558
2687
  * Defines the type of table that will be used by the building block to render the data. This setting is
2559
2688
  * defined by the framework.
@@ -2877,6 +3006,13 @@ declare namespace sap {
2877
3006
  type?: /* was: sap.ui.core.message.MessageType */ any;
2878
3007
  }
2879
3008
  ): Promise<string>;
3009
+ /**
3010
+ * Get the count of the row binding of the table.
3011
+ *
3012
+ *
3013
+ * @returns The count of the row binding
3014
+ */
3015
+ getCount(): number | undefined;
2880
3016
  /**
2881
3017
  * Get the variant management applied to the table.
2882
3018
  *
@@ -3157,6 +3293,13 @@ declare namespace sap {
3157
3293
  type?: /* was: sap.ui.core.message.MessageType */ any;
3158
3294
  }
3159
3295
  ): Promise<string>;
3296
+ /**
3297
+ * Get the count of the row binding of the table.
3298
+ *
3299
+ *
3300
+ * @returns The count of the row binding
3301
+ */
3302
+ getCount(): number | undefined;
3160
3303
  /**
3161
3304
  * Get the variant management applied to the table.
3162
3305
  *
@@ -3673,7 +3816,7 @@ declare namespace sap {
3673
3816
  contextPath?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3674
3817
 
3675
3818
  /**
3676
- * Property added to be able to add data / items to the multi value field via a different model
3819
+ * Property added to be able to add data / items to the multi-input field using a different model
3677
3820
  */
3678
3821
  items?:
3679
3822
  | any
@@ -3950,47 +4093,6 @@ declare namespace sap {
3950
4093
  title?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3951
4094
  }
3952
4095
 
3953
- /**
3954
- * Describes the settings that can be provided to the FormElement constructor.
3955
- */
3956
- interface $FormElementSettings extends sap.ui.core.$ControlSettings {
3957
- /**
3958
- * Defines the path of the context used in the current page or block.
3959
- * This setting is defined by the framework.
3960
- */
3961
- contextPath?:
3962
- | sap.ui.model.Context
3963
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3964
- | `{${string}}`;
3965
-
3966
- /**
3967
- * Label shown for the field. If not set, the label from the annotations will be shown.
3968
- */
3969
- label?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
3970
-
3971
- /**
3972
- * Defines the relative path of the property in the metamodel, based on the current contextPath.
3973
- */
3974
- metaPath?:
3975
- | sap.ui.model.Context
3976
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3977
- | `{${string}}`;
3978
-
3979
- /**
3980
- * If set to false, the FormElement is not rendered.
3981
- */
3982
- visible?:
3983
- | boolean
3984
- | sap.ui.base.ManagedObject.PropertyBindingInfo
3985
- | `{${string}}`;
3986
-
3987
- /**
3988
- * Optional aggregation of controls that should be displayed inside the FormElement.
3989
- * If not set, a default Field building block will be rendered
3990
- */
3991
- fields?: sap.ui.core.Control;
3992
- }
3993
-
3994
4096
  /**
3995
4097
  * Describes the settings that can be provided to the Table constructor.
3996
4098
  */
@@ -4025,6 +4127,15 @@ declare namespace sap {
4025
4127
  | sap.ui.base.ManagedObject.PropertyBindingInfo
4026
4128
  | `{${string}}`;
4027
4129
 
4130
+ /**
4131
+ * Determines whether the number of fixed columns can be configured in the Column Settings dialog.
4132
+ * This property doesn't apply for responsive tables
4133
+ */
4134
+ disableColumnFreeze?:
4135
+ | boolean
4136
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4137
+ | `{${string}}`;
4138
+
4028
4139
  /**
4029
4140
  * Controls if the copy functionality of the table is disabled or not.
4030
4141
  */
@@ -4240,6 +4351,14 @@ declare namespace sap {
4240
4351
  */
4241
4352
  selectionMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
4242
4353
 
4354
+ /**
4355
+ * Defines the number of records to be initially requested from the back end.
4356
+ */
4357
+ threshold?:
4358
+ | int
4359
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4360
+ | `{${string}}`;
4361
+
4243
4362
  /**
4244
4363
  * Defines the type of table that will be used by the building block to render the data.
4245
4364
  * Allowed values are `GridTable`, `ResponsiveTable` and `AnalyticalTable`.
@@ -4348,6 +4467,15 @@ declare namespace sap {
4348
4467
  | sap.ui.base.ManagedObject.PropertyBindingInfo
4349
4468
  | `{${string}}`;
4350
4469
 
4470
+ /**
4471
+ * Determines whether the number of fixed columns can be configured in the Column Settings dialog.
4472
+ * This property doesn't apply for responsive tables
4473
+ */
4474
+ disableColumnFreeze?:
4475
+ | boolean
4476
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4477
+ | `{${string}}`;
4478
+
4351
4479
  /**
4352
4480
  * Controls if the copy functionality of the table is disabled or not.
4353
4481
  */
@@ -4594,6 +4722,14 @@ declare namespace sap {
4594
4722
  */
4595
4723
  selectionMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
4596
4724
 
4725
+ /**
4726
+ * Defines the number of records to be initially requested from the back end.
4727
+ */
4728
+ threshold?:
4729
+ | int
4730
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
4731
+ | `{${string}}`;
4732
+
4597
4733
  /**
4598
4734
  * Defines the type of table that will be used by the building block to render the data. This setting is
4599
4735
  * defined by the framework.
@@ -4709,11 +4845,6 @@ declare namespace sap {
4709
4845
  */
4710
4846
  interface FilterBar$SearchEventParameters {}
4711
4847
 
4712
- /**
4713
- * Parameters of the FormElement#change event.
4714
- */
4715
- interface FormElement$ChangeEventParameters {}
4716
-
4717
4848
  /**
4718
4849
  * Parameters of the Table#beforeRebindTable event.
4719
4850
  */
@@ -4949,7 +5080,7 @@ declare namespace sap {
4949
5080
  setVariantManagement(): string;
4950
5081
  }
4951
5082
  /**
4952
- * API to add parameters to the collection binding infos.
5083
+ * API to add parameters to the collection binding info.
4953
5084
  */
4954
5085
  class CollectionBindingInfo {
4955
5086
  /**
@@ -4979,6 +5110,27 @@ declare namespace sap {
4979
5110
  */
4980
5111
  sorter: sap.ui.model.Sorter
4981
5112
  ): void;
5113
+ /**
5114
+ * Attach the events to the table binding.
5115
+ */
5116
+ attachEvent(
5117
+ /**
5118
+ * The event ID to attach the callback to
5119
+ */
5120
+ eventId: string,
5121
+ /**
5122
+ * The callback function to be executed when the event is triggered
5123
+ */
5124
+ callback: Function,
5125
+ /**
5126
+ * The listener object that will be used as the context for the callback function
5127
+ */
5128
+ listener?: object,
5129
+ /**
5130
+ * Data that will be passed to the callback function when the event is triggered
5131
+ */
5132
+ data?: object
5133
+ ): void;
4982
5134
  /**
4983
5135
  * Retrieve the 'serialized' binding info, useful if you want to create your own binding
4984
5136
  *
@@ -5393,6 +5545,9 @@ declare namespace sap {
5393
5545
  getFilters(): object;
5394
5546
  /**
5395
5547
  * Get the selection variant from the filter bar.
5548
+ * Note: This method returns all the filter values that are set in the filter bar, including the text from
5549
+ * the search field (with $search as the property name). However, it doesn't return any filter field condition
5550
+ * that uses a custom operator.
5396
5551
  *
5397
5552
  *
5398
5553
  * @returns A promise which resolves with a {@link sap.fe.navigation.SelectionVariant }
@@ -5470,6 +5625,8 @@ declare namespace sap {
5470
5625
  /**
5471
5626
  * Sets {@link sap.fe.navigation.SelectionVariant } to the filter bar. Note: setSelectionVariant will clear
5472
5627
  * existing filters and then apply the SelectionVariant values.
5628
+ * Note: This method cannot set the search field text or any filter field condition that relies on a custom
5629
+ * operator.
5473
5630
  *
5474
5631
  *
5475
5632
  * @returns A promise for asynchronous handling
@@ -5508,12 +5665,6 @@ declare namespace sap {
5508
5665
  * ```
5509
5666
  */
5510
5667
  class Form extends sap.ui.core.Control {}
5511
- /**
5512
- * Building block used to create a form element based on the metadata provided by OData V4.
5513
- *
5514
- * @since 1.90.0
5515
- */
5516
- class FormElement extends sap.ui.core.Control {}
5517
5668
  /**
5518
5669
  * Building block used to create a table based on the metadata provided by OData V4.
5519
5670
  *
@@ -5534,7 +5685,7 @@ declare namespace sap {
5534
5685
  * <macros:Table id="MyTable" metaPath="@com.sap.vocabularies.UI.v1.LineItem" />
5535
5686
  * ```
5536
5687
  *
5537
- * {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/table Overview of Table Building Blocks}
5688
+ * {@link demo:sap/fe/core/fpmExplorer/index.html#/buildingBlocks/table/tableDefault Overview of Table Building Blocks}
5538
5689
  */
5539
5690
  class Table extends sap.fe.macros.MacroAPI {
5540
5691
  /**
@@ -5568,6 +5719,13 @@ declare namespace sap {
5568
5719
  type?: /* was: sap.ui.core.message.MessageType */ any;
5569
5720
  }
5570
5721
  ): Promise<string>;
5722
+ /**
5723
+ * Get the count of the row binding of the table.
5724
+ *
5725
+ *
5726
+ * @returns The count of the row binding
5727
+ */
5728
+ getCount(): number | undefined;
5571
5729
  /**
5572
5730
  * Get the variant management applied to the table.
5573
5731
  *
@@ -5735,6 +5893,13 @@ declare namespace sap {
5735
5893
  type?: /* was: sap.ui.core.message.MessageType */ any;
5736
5894
  }
5737
5895
  ): Promise<string>;
5896
+ /**
5897
+ * Get the count of the row binding of the table.
5898
+ *
5899
+ *
5900
+ * @returns The count of the row binding
5901
+ */
5902
+ getCount(): number | undefined;
5738
5903
  /**
5739
5904
  * Get the variant management applied to the table.
5740
5905
  *
@@ -5931,14 +6096,6 @@ declare namespace sap {
5931
6096
  FilterBar
5932
6097
  >;
5933
6098
 
5934
- /**
5935
- * Event object of the FormElement#change event.
5936
- */
5937
- type FormElement$ChangeEvent = sap.ui.base.Event<
5938
- FormElement$ChangeEventParameters,
5939
- FormElement
5940
- >;
5941
-
5942
6099
  /**
5943
6100
  * Event object of the Table#beforeRebindTable event.
5944
6101
  */
@@ -6022,7 +6179,7 @@ declare namespace sap {
6022
6179
 
6023
6180
  "sap/fe/macros/form/Form.block": undefined;
6024
6181
 
6025
- "sap/fe/macros/form/FormElement.block": undefined;
6182
+ "sap/fe/macros/FormElement": undefined;
6026
6183
 
6027
6184
  "sap/fe/macros/KPITag": undefined;
6028
6185
 
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  interface IUI5DefineDependencyNames {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace fe {
@@ -768,6 +768,7 @@ declare namespace sap {
768
768
  iCheckFilterAdaptation(): object;
769
769
  /**
770
770
  * Checks a filter field. If `vConditionValues` is `undefined`, the current condition values are ignored.
771
+ * Only the value of the field itself is considered, i.e. text arrangements are not part of the check.
771
772
  *
772
773
  *
773
774
  * @returns The result of the {@link sap.ui.test.Opa5#waitFor} function, to be used for chained statements
@@ -3616,7 +3617,7 @@ declare namespace sap {
3616
3617
  * ```javascript
3617
3618
  * .run(mSettings, Journey1, Journey2, ...)```
3618
3619
  */
3619
- _vJourneys: Array<() => void> | string[]
3620
+ _vJourneys: Array<Function> | string[]
3620
3621
  ): object;
3621
3622
  /**
3622
3623
  * Executes the journeys in the given order.
@@ -3634,7 +3635,7 @@ declare namespace sap {
3634
3635
  * ```javascript
3635
3636
  * .run(mSettings, Journey1, Journey2, ...)```
3636
3637
  */
3637
- _vJourneys: Array<() => void> | string[]
3638
+ _vJourneys: Array<Function> | string[]
3638
3639
  ): object;
3639
3640
  }
3640
3641
  /**
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,3 +1,3 @@
1
- // For Library Version: 1.136.0
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {}
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.136.1
1
+ // For Library Version: 1.138.0
2
2
 
3
3
  declare namespace sap {
4
4
  /**