@openui5/sap.ui.mdc 1.141.2 → 1.143.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 (189) hide show
  1. package/README.md +2 -2
  2. package/REUSE.toml +39 -1
  3. package/THIRDPARTY.txt +36 -3
  4. package/package.json +4 -4
  5. package/src/sap/ui/mdc/.library +1 -1
  6. package/src/sap/ui/mdc/ActionToolbar.js +89 -63
  7. package/src/sap/ui/mdc/Chart.js +1 -1
  8. package/src/sap/ui/mdc/Control.js +1 -1
  9. package/src/sap/ui/mdc/DefaultTypeMap.js +1 -1
  10. package/src/sap/ui/mdc/Element.js +1 -1
  11. package/src/sap/ui/mdc/Field.js +31 -8
  12. package/src/sap/ui/mdc/FilterBar.js +1 -1
  13. package/src/sap/ui/mdc/FilterField.js +11 -11
  14. package/src/sap/ui/mdc/Geomap.js +571 -0
  15. package/src/sap/ui/mdc/GeomapDelegate.js +285 -0
  16. package/src/sap/ui/mdc/GeomapRenderer.js +76 -0
  17. package/src/sap/ui/mdc/Link.js +1 -1
  18. package/src/sap/ui/mdc/MultiValueField.js +7 -7
  19. package/src/sap/ui/mdc/Table.js +141 -116
  20. package/src/sap/ui/mdc/TableDelegate.js +3 -2
  21. package/src/sap/ui/mdc/ValueHelp.js +1 -1
  22. package/src/sap/ui/mdc/ValueHelpDelegate.js +4 -1
  23. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +1 -1
  24. package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +1 -1
  25. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +1 -1
  26. package/src/sap/ui/mdc/chart/PropertyHelper.js +1 -1
  27. package/src/sap/ui/mdc/chart/ToolbarControlFactory.js +1 -1
  28. package/src/sap/ui/mdc/chart/Util.js +5 -2
  29. package/src/sap/ui/mdc/condition/Condition.js +1 -1
  30. package/src/sap/ui/mdc/condition/ConditionConverter.js +1 -1
  31. package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
  32. package/src/sap/ui/mdc/condition/FilterConverter.js +1 -1
  33. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +1 -1
  34. package/src/sap/ui/mdc/condition/Operator.js +1 -1
  35. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +1 -1
  36. package/src/sap/ui/mdc/condition/RangeOperator.js +1 -1
  37. package/src/sap/ui/mdc/designtime/geomap/Geomap.designtime.js +23 -0
  38. package/src/sap/ui/mdc/enums/GeomapControlPosition.js +46 -0
  39. package/src/sap/ui/mdc/enums/TableActionPosition.js +123 -0
  40. package/src/sap/ui/mdc/enums/TablePopinDisplay.js +36 -0
  41. package/src/sap/ui/mdc/field/ConditionType.js +1 -1
  42. package/src/sap/ui/mdc/field/ConditionTypeMixin.js +1 -1
  43. package/src/sap/ui/mdc/field/ConditionsType.js +1 -1
  44. package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
  45. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +1 -1
  46. package/src/sap/ui/mdc/field/FieldBase.js +137 -66
  47. package/src/sap/ui/mdc/field/FieldInfoBase.js +1 -1
  48. package/src/sap/ui/mdc/field/FieldInput.js +1 -1
  49. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
  50. package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
  51. package/src/sap/ui/mdc/field/FieldSelect.js +7 -1
  52. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
  53. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +22 -0
  54. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +1 -1
  55. package/src/sap/ui/mdc/field/TokenDisplay.js +1 -1
  56. package/src/sap/ui/mdc/field/TokenizerDisplay.js +1 -1
  57. package/src/sap/ui/mdc/field/content/ContentFactory.js +3 -0
  58. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +35 -1
  59. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +3 -0
  60. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +1 -1
  61. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +1 -1
  62. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +1 -1
  63. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +1 -1
  64. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +1 -1
  65. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +1 -1
  66. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +1 -1
  67. package/src/sap/ui/mdc/flexibility/SortFlex.js +12 -5
  68. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +17 -11
  69. package/src/sap/ui/mdc/flexibility/actiontoolbar/CombineAction.js +1 -1
  70. package/src/sap/ui/mdc/flexibility/actiontoolbar/SplitAction.js +1 -1
  71. package/src/sap/ui/mdc/flexibility/helpers/getAffectedSorter.js +25 -0
  72. package/src/sap/ui/mdc/geomap/Item.js +48 -0
  73. package/src/sap/ui/mdc/geomap/PropertyHelper.js +70 -0
  74. package/src/sap/ui/mdc/library.js +19 -4
  75. package/src/sap/ui/mdc/link/Factory.js +1 -1
  76. package/src/sap/ui/mdc/link/LinkItem.js +1 -1
  77. package/src/sap/ui/mdc/link/Panel.js +1 -1
  78. package/src/sap/ui/mdc/link/PanelItem.js +1 -1
  79. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
  80. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
  81. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
  82. package/src/sap/ui/mdc/messagebundle.properties +15 -1
  83. package/src/sap/ui/mdc/messagebundle_ar.properties +8 -0
  84. package/src/sap/ui/mdc/messagebundle_bg.properties +8 -0
  85. package/src/sap/ui/mdc/messagebundle_ca.properties +8 -0
  86. package/src/sap/ui/mdc/messagebundle_cnr.properties +8 -0
  87. package/src/sap/ui/mdc/messagebundle_cs.properties +8 -0
  88. package/src/sap/ui/mdc/messagebundle_cy.properties +9 -1
  89. package/src/sap/ui/mdc/messagebundle_da.properties +8 -0
  90. package/src/sap/ui/mdc/messagebundle_de.properties +10 -2
  91. package/src/sap/ui/mdc/messagebundle_el.properties +9 -1
  92. package/src/sap/ui/mdc/messagebundle_en.properties +9 -1
  93. package/src/sap/ui/mdc/messagebundle_en_GB.properties +9 -1
  94. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +12 -1
  95. package/src/sap/ui/mdc/messagebundle_es.properties +10 -2
  96. package/src/sap/ui/mdc/messagebundle_es_MX.properties +8 -0
  97. package/src/sap/ui/mdc/messagebundle_et.properties +8 -0
  98. package/src/sap/ui/mdc/messagebundle_fi.properties +8 -0
  99. package/src/sap/ui/mdc/messagebundle_fr.properties +11 -3
  100. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +8 -0
  101. package/src/sap/ui/mdc/messagebundle_hi.properties +8 -0
  102. package/src/sap/ui/mdc/messagebundle_hr.properties +9 -1
  103. package/src/sap/ui/mdc/messagebundle_hu.properties +8 -0
  104. package/src/sap/ui/mdc/messagebundle_id.properties +11 -3
  105. package/src/sap/ui/mdc/messagebundle_it.properties +8 -0
  106. package/src/sap/ui/mdc/messagebundle_iw.properties +8 -0
  107. package/src/sap/ui/mdc/messagebundle_ja.properties +9 -1
  108. package/src/sap/ui/mdc/messagebundle_kk.properties +9 -1
  109. package/src/sap/ui/mdc/messagebundle_ko.properties +8 -0
  110. package/src/sap/ui/mdc/messagebundle_lt.properties +8 -0
  111. package/src/sap/ui/mdc/messagebundle_lv.properties +8 -0
  112. package/src/sap/ui/mdc/messagebundle_mk.properties +8 -0
  113. package/src/sap/ui/mdc/messagebundle_ms.properties +9 -1
  114. package/src/sap/ui/mdc/messagebundle_nl.properties +8 -0
  115. package/src/sap/ui/mdc/messagebundle_no.properties +8 -0
  116. package/src/sap/ui/mdc/messagebundle_pl.properties +8 -0
  117. package/src/sap/ui/mdc/messagebundle_pt.properties +9 -1
  118. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +8 -0
  119. package/src/sap/ui/mdc/messagebundle_ro.properties +9 -1
  120. package/src/sap/ui/mdc/messagebundle_ru.properties +9 -1
  121. package/src/sap/ui/mdc/messagebundle_sh.properties +8 -0
  122. package/src/sap/ui/mdc/messagebundle_sk.properties +8 -0
  123. package/src/sap/ui/mdc/messagebundle_sl.properties +9 -1
  124. package/src/sap/ui/mdc/messagebundle_sr.properties +8 -0
  125. package/src/sap/ui/mdc/messagebundle_sv.properties +8 -0
  126. package/src/sap/ui/mdc/messagebundle_th.properties +8 -0
  127. package/src/sap/ui/mdc/messagebundle_tr.properties +9 -1
  128. package/src/sap/ui/mdc/messagebundle_uk.properties +8 -0
  129. package/src/sap/ui/mdc/messagebundle_vi.properties +11 -3
  130. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +9 -1
  131. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +8 -0
  132. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +1 -1
  133. package/src/sap/ui/mdc/mixin/DelegateMixin.js +1 -1
  134. package/src/sap/ui/mdc/mixin/FilterBarLayoutMixin.js +1 -1
  135. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +1 -1
  136. package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
  137. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +1 -1
  138. package/src/sap/ui/mdc/odata/TypeMap.js +1 -1
  139. package/src/sap/ui/mdc/odata/v4/GeomapDelegate.js +60 -0
  140. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +53 -2
  141. package/src/sap/ui/mdc/odata/v4/TypeMap.js +1 -1
  142. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +16 -0
  143. package/src/sap/ui/mdc/p13n/PropertyHelper.js +1 -1
  144. package/src/sap/ui/mdc/p13n/StateUtil.js +1 -1
  145. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +3 -0
  146. package/src/sap/ui/mdc/p13n/subcontroller/ColumnFreezeController.js +1 -1
  147. package/src/sap/ui/mdc/p13n/subcontroller/ShowDetailsController.js +1 -1
  148. package/src/sap/ui/mdc/rules/Table.support.js +149 -118
  149. package/src/sap/ui/mdc/table/ActionLayoutData.js +47 -0
  150. package/src/sap/ui/mdc/table/Column.js +40 -186
  151. package/src/sap/ui/mdc/table/ColumnSettings.js +1 -1
  152. package/src/sap/ui/mdc/table/CreationRow.js +1 -1
  153. package/src/sap/ui/mdc/table/DragDropConfig.js +1 -1
  154. package/src/sap/ui/mdc/table/GridTableType.js +35 -21
  155. package/src/sap/ui/mdc/table/ODataV4PropertyHelper.js +1 -1
  156. package/src/sap/ui/mdc/table/PropertyHelper.js +1 -1
  157. package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +1 -1
  158. package/src/sap/ui/mdc/table/ResponsiveTableType.js +97 -14
  159. package/src/sap/ui/mdc/table/RowActionItem.js +1 -1
  160. package/src/sap/ui/mdc/table/RowSettings.js +1 -1
  161. package/src/sap/ui/mdc/table/TableSettings.js +34 -7
  162. package/src/sap/ui/mdc/table/TableTypeBase.js +38 -7
  163. package/src/sap/ui/mdc/table/utils/Personalization.js +1 -1
  164. package/src/sap/ui/mdc/themes/base/Geomap.less +50 -0
  165. package/src/sap/ui/mdc/ushell/SemanticObjectMapping.js +1 -1
  166. package/src/sap/ui/mdc/ushell/SemanticObjectMappingItem.js +1 -1
  167. package/src/sap/ui/mdc/ushell/SemanticObjectUnavailableAction.js +1 -1
  168. package/src/sap/ui/mdc/util/InfoBar.js +1 -1
  169. package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
  170. package/src/sap/ui/mdc/util/PropertyHelper.js +1 -1
  171. package/src/sap/ui/mdc/util/PropertyHelperUtil.js +1 -1
  172. package/src/sap/ui/mdc/valuehelp/Dialog.js +2 -2
  173. package/src/sap/ui/mdc/valuehelp/FilterBar.js +22 -3
  174. package/src/sap/ui/mdc/valuehelp/Popover.js +1 -1
  175. package/src/sap/ui/mdc/valuehelp/base/Container.js +1 -1
  176. package/src/sap/ui/mdc/valuehelp/base/Content.js +1 -1
  177. package/src/sap/ui/mdc/valuehelp/base/DefineConditionPanel.js +140 -26
  178. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +1 -1
  179. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +4 -3
  180. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +1 -1
  181. package/src/sap/ui/mdc/valuehelp/content/Bool.js +1 -1
  182. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +1 -1
  183. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +1 -1
  184. package/src/sap/ui/mdc/valuehelp/content/FixedListItem.js +1 -1
  185. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +1 -1
  186. package/src/sap/ui/mdc/valuehelp/content/MTable.js +7 -5
  187. package/test/sap/ui/mdc/testutils/opa/filterbar/Actions.js +36 -0
  188. package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +20 -3
  189. package/test/sap/ui/mdc/testutils/opa/valueHelp/Actions.js +33 -1
@@ -101,7 +101,7 @@ sap.ui.define([
101
101
  * @implements sap.ui.core.IFormContent, sap.ui.core.ISemanticFormContent, sap.m.IOverflowToolbarContent, sap.ui.core.ILabelable
102
102
  *
103
103
  * @author SAP SE
104
- * @version 1.141.2
104
+ * @version 1.143.0
105
105
  *
106
106
  * @constructor
107
107
  * @alias sap.ui.mdc.field.FieldBase
@@ -118,7 +118,13 @@ sap.ui.define([
118
118
  */
119
119
  const FieldBase = Control.extend("sap.ui.mdc.field.FieldBase", /* @lends sap.ui.mdc.field.FieldBase.prototype */ {
120
120
  metadata: {
121
- interfaces: ["sap.ui.core.IFormContent", "sap.ui.core.ISemanticFormContent", "sap.m.IOverflowToolbarContent", "sap.ui.core.ILabelable"],
121
+ interfaces: [
122
+ "sap.ui.core.IFormContent",
123
+ "sap.ui.core.ISemanticFormContent",
124
+ "sap.m.IOverflowToolbarContent",
125
+ "sap.ui.core.ILabelable",
126
+ "sap.m.IToolbarInteractiveControl"
127
+ ],
122
128
  designtime: "sap/ui/mdc/designtime/field/FieldBase.designtime",
123
129
  library: "sap.ui.mdc",
124
130
  properties: {
@@ -136,7 +142,7 @@ sap.ui.define([
136
142
  },
137
143
 
138
144
  /**
139
- * The constraints of the type specified in <code>dataType</code>.
145
+ * The constraints of the type specified in {@link #setDataType dataType}.
140
146
  */
141
147
  dataTypeConstraints: {
142
148
  type: "object",
@@ -145,7 +151,7 @@ sap.ui.define([
145
151
  },
146
152
 
147
153
  /**
148
- * The format options of the type specified in <code>dataType</code>.
154
+ * The format options of the type specified in {@link #setDataType dataType}.
149
155
  */
150
156
  dataTypeFormatOptions: {
151
157
  type: "object",
@@ -217,7 +223,7 @@ sap.ui.define([
217
223
  * Visualizes the validation state of the control, for example, <code>Error</code>, <code>Warning</code> or <code>Success</code>.
218
224
  *
219
225
  * <b>Note:</b> The visualization of the <code>ValueState</code> property is handled by the inner rendered control.
220
- * If a control is set (using <code>content</code>, <code>contentEdit</code>, or <code>contentDisplay</code>), this control needs to support
226
+ * If a control is set (using {@link #setContent content}, {@link #setContentEdit contentEdit}, or {@link #setContentDisplay contentDisplay}), this control needs to support
221
227
  * the <code>valueState</code> behavior, otherwise <code>valueState</code> is not visualized.
222
228
  */
223
229
  valueState: {
@@ -251,7 +257,7 @@ sap.ui.define([
251
257
  *
252
258
  * This property is only used for single-value fields.
253
259
  *
254
- * <b>Note</b> If the data type used doesn't support multiple lines, an error is thrown.
260
+ * <b>Note:</b> If the data type used doesn't support multiple lines, an error is thrown.
255
261
  */
256
262
  multipleLines: {
257
263
  type: "boolean",
@@ -264,7 +270,7 @@ sap.ui.define([
264
270
  *
265
271
  * The default value of -1 indicates that an unlimited number of conditions can be defined.
266
272
  *
267
- * <b>Note</b> If the data type used doesn't support multiple conditions, an error is thrown.
273
+ * <b>Note:</b> If the data type used doesn't support multiple conditions, an error is thrown.
268
274
  */
269
275
  maxConditions: {
270
276
  type: "int",
@@ -278,8 +284,8 @@ sap.ui.define([
278
284
  * These should be bound to a {@link sap.ui.mdc.FilterBar FilterBar} using the corresponding <code>propertyPath</code>.
279
285
  *
280
286
  * <b>Note:</b> For {@link sap.ui.mdc.FilterField FilterField} controls, the <code>conditions</code> property is used to bind
281
- * {@link sap.ui.mdc.FilterField FilterField} to its parent {@link @link sap.ui.mdc.FilterBar FilterBar}.</br>
282
- * If this property is not explicitly configured, the {@link @link sap.ui.mdc.FilterBar FilterBar} sets a default binding.
287
+ * {@link sap.ui.mdc.FilterField FilterField} to its parent {@link sap.ui.mdc.FilterBar FilterBar}.</br>
288
+ * If this property is not explicitly configured, the {@link sap.ui.mdc.FilterBar FilterBar} sets a default binding.
283
289
  * For example, for a {@link sap.ui.mdc.FilterField FilterField} control inside a {@link sap.ui.mdc.FilterBar FilterBar} control, the binding looks like this:</br>
284
290
  * <code>conditions="{$filters>/conditions/propertyPath}"</code> with the following data:
285
291
  * <ul>
@@ -337,11 +343,11 @@ sap.ui.define([
337
343
  /**
338
344
  * If set, an empty <code>Field</code> renders an empty indicator in display mode.
339
345
  *
340
- * This property only takes effect if <code>editMode</code> is set to <code>Display</code>.
346
+ * This property only takes effect if {@link #setEditMode editMode} is set to <code>Display</code>.
341
347
  *
342
- * <b>Note</b> Empty means the <code>Field</code> holds no value. If an empty string is a valid value,
343
- * the <code>Field</code> might show nothing, depending on the <code>display</code> settings and assigned description
344
- * or <code>ValueHelp</code>.
348
+ * <b>Note:</b> Empty means the <code>Field</code> holds no value. If an empty string is a valid value,
349
+ * the <code>Field</code> might show nothing, depending on the {@link #setDisplay display} settings and assigned description
350
+ * or {@link #setValueHelp ValueHelp}.
345
351
  *
346
352
  * @since 1.85.0
347
353
  */
@@ -388,7 +394,7 @@ sap.ui.define([
388
394
  /**
389
395
  * Optional content that can be rendered.
390
396
  *
391
- * Per default, depending on <code>editMode</code>, <code>multipleLines</code> and the used data type, a content control is rendered. For simple string types, a {@link sap.m.Text Text}
397
+ * Per default, depending on {@link #getEditMode editMode}, {@link #getMultipleLines multipleLines} and the used data type, a content control is rendered. For simple string types, a {@link sap.m.Text Text}
392
398
  * control is rendered in display mode and a {@link sap.m.Input Input} control in edit mode. If a control is assigned in the <code>content</code> aggregation, this will be
393
399
  * rendered instead.
394
400
  *
@@ -408,9 +414,9 @@ sap.ui.define([
408
414
  },
409
415
 
410
416
  /**
411
- * Optional content to be rendered if the <code>editMode</code> property is not set to <code>Display</code>.
417
+ * Optional content to be rendered if the {@link #getEditMode editMode} property is not set to <code>Display</code>.
412
418
  *
413
- * Per default, depending on <code>multipleLines</code> and the used data type, a content control is rendered in edit mode. For simple string types, an {@link sap.m.Input Input}
419
+ * Per default, depending on {@link #getMultipleLines multipleLines} and the used data type, a content control is rendered in edit mode. For simple string types, an {@link sap.m.Input Input}
414
420
  * control is rendered in edit mode. If a control is assigned in the <code>contentEdit</code> aggregation, this will be rendered instead.
415
421
  *
416
422
  * <b>Note:</b> If a control is assigned to the <code>content</code> aggregation, this one is ignored.
@@ -433,9 +439,9 @@ sap.ui.define([
433
439
  },
434
440
 
435
441
  /**
436
- * Optional content to be rendered if the <code>editMode</code> property is set to <code>Display</code>.
442
+ * Optional content to be rendered if the {@link #getEditMode editMode} property is set to <code>Display</code>.
437
443
  *
438
- * Per default, depending on <code>multipleLines</code> and the used data type, a content control is rendered in display mode. For simple string types, a {@link sap.m.Text Text}
444
+ * Per default, depending on {@link #getMultipleLines multipleLines} and the used data type, a content control is rendered in display mode. For simple string types, a {@link sap.m.Text Text}
439
445
  * control is rendered in display mode. If a control is assigned in the <code>contentDisplay</code> aggregation, this will be rendered instead.
440
446
  *
441
447
  * <b>Note:</b> If a control is assigned to the <code>content</code> aggregation, this one is ignored.
@@ -486,7 +492,7 @@ sap.ui.define([
486
492
  * <b>Note:</b> If the field is inside of a table, do not set the <code>ValueHelp</code> instance as <code>dependent</code>
487
493
  * to the field. If you do, every field instance in every table row gets a clone of it.
488
494
  * Put the <code>ValueHelp</code> instance e.g. as dependent on the table or page.
489
- * The <code>FieldHelp</code> instance must be somewhere in the control tree, otherwise there might
495
+ * The <code>ValueHelp</code> instance must be somewhere in the control tree, otherwise there might
490
496
  * be rendering or update issues.
491
497
  *
492
498
  * <b>Note:</b> For <code>Boolean</code> fields, no <code>ValueHelp</code> should be added, but a default <code>ValueHelp</code> used instead.
@@ -500,12 +506,12 @@ sap.ui.define([
500
506
  /**
501
507
  * Optional <code>ValueHelp</code>.
502
508
  *
503
- * This is an association that allows the usage of one <code>ValueHelp</code> instance for multiple fields.
509
+ * This is an association that allows the usage of one {@link sap.ui.mdc.ValueHelp ValueHelp} instance for multiple fields.
504
510
  *
505
- * <b>Note:</b> If the field is inside of a table, do not set the <code>ValueHelp</code> instance as <code>dependent</code>
511
+ * <b>Note:</b> If the field is inside of a table, do not set the {@link sap.ui.mdc.ValueHelp ValueHelp} instance as {@link sap.ui.core.Element#addDependent dependent}
506
512
  * to the field. If you do, every field instance in every table row gets a clone of it.
507
- * Put the <code>ValueHelp</code> instance e.g. as dependent on the table or page.
508
- * The <code>ValueHelp</code> instance must be somewhere in the control tree, otherwise there might
513
+ * Put the {@link sap.ui.mdc.ValueHelp ValueHelp} instance e.g. as {@link sap.ui.core.Element#addDependent dependent} on the table or page.
514
+ * The {@link sap.ui.mdc.ValueHelp ValueHelp} instance must be somewhere in the control tree, otherwise there might
509
515
  * be rendering or update issues.
510
516
  *
511
517
  * <b>Note:</b> For <code>Boolean</code> fields, no <code>ValueHelp</code> should be added, but a default <code>ValueHelp</code> used instead.
@@ -524,7 +530,7 @@ sap.ui.define([
524
530
  /**
525
531
  * This event is fired when the value of the field is changed, for example, each time a key is pressed.
526
532
  *
527
- * <b>Note</b> This event is only triggered if the used content control has a <code>liveChange</code> event.
533
+ * <b>Note:</b> This event is only triggered if the used content control has a <code>liveChange</code> event.
528
534
  */
529
535
  liveChange: {
530
536
  parameters: {
@@ -534,12 +540,12 @@ sap.ui.define([
534
540
  value: { type: "string" },
535
541
 
536
542
  /**
537
- * Indicates that the ESC key triggered the event
543
+ * Indicates that the <kbd>ESC</kbd> key triggered the event
538
544
  */
539
545
  escPressed: { type: "boolean" },
540
546
 
541
547
  /**
542
- * The value of the input before pressing ESC key
548
+ * The value of the input before pressing <kbd>ESC</kbd> key
543
549
  */
544
550
  previousValue: { type: "string" }
545
551
  }
@@ -552,7 +558,7 @@ sap.ui.define([
552
558
  * This event is fired when the user presses <kbd>Enter</kbd>.
553
559
  * It allows the application to implement some submit logic.
554
560
  *
555
- * <b>Note</b> This event is only triggered if the field is editable.
561
+ * <b>Note:</b> This event is only triggered if the field is editable.
556
562
  *
557
563
  * @since 1.82.0
558
564
  */
@@ -631,7 +637,12 @@ sap.ui.define([
631
637
  "contentEdit",
632
638
  "contentDisplay"
633
639
  ],
634
- associations: ["fieldHelp", "valueHelp", "ariaLabelledBy"]
640
+ associations: [
641
+ /** @deprecated As of version 1.114 */
642
+ "fieldHelp",
643
+ "valueHelp",
644
+ "ariaLabelledBy"
645
+ ]
635
646
  });
636
647
 
637
648
  this.attachEvent("modelContextChange", this.handleModelContextChange, this);
@@ -1311,7 +1322,7 @@ sap.ui.define([
1311
1322
  };
1312
1323
 
1313
1324
  /**
1314
- * Handler of the <code>ModelContextChange</code> event.
1325
+ * Handler of the {@link sap.ui.base.ManagedObject#event:modelContextChange modelContextChange} event.
1315
1326
  * @param {object} oEvent event
1316
1327
  * @protected
1317
1328
  */
@@ -1412,7 +1423,13 @@ sap.ui.define([
1412
1423
  this.getContentFactory().updateConditionType();
1413
1424
  }
1414
1425
 
1415
- if ((oChanges.name === "fieldHelp" || oChanges.name === "valueHelp") && oChanges.ids) {
1426
+ if (oChanges.name === "valueHelp" && oChanges.ids) {
1427
+ _valueHelpChanged.call(this, oChanges.ids, oChanges.mutation);
1428
+ this.getContentFactory().updateConditionType();
1429
+ }
1430
+
1431
+ /** @deprecated As of version 1.114 */
1432
+ if (oChanges.name === "fieldHelp" && oChanges.ids) {
1416
1433
  _valueHelpChanged.call(this, oChanges.ids, oChanges.mutation);
1417
1434
  this.getContentFactory().updateConditionType();
1418
1435
  }
@@ -1688,7 +1705,7 @@ sap.ui.define([
1688
1705
  * Registers invalidations event that is fired when width of the control is changed.
1689
1706
  *
1690
1707
  * @protected
1691
- * @returns {object} Configuration information for the <code>sap.m.IOverflowToolbarContent</code> interface.
1708
+ * @returns {object} Configuration information for the {@link sap.m.IOverflowToolbarContent} interface.
1692
1709
  */
1693
1710
  FieldBase.prototype.getOverflowToolbarConfig = function() {
1694
1711
  return {
@@ -1703,6 +1720,25 @@ sap.ui.define([
1703
1720
  };
1704
1721
  };
1705
1722
 
1723
+ /**
1724
+ * Returns whether the control is interactive or not.
1725
+ *
1726
+ * @returns {boolean} Whether it is an interactive Control
1727
+ * @private
1728
+ */
1729
+ FieldBase.prototype._getToolbarInteractive = function() {
1730
+ let bHasInteractiveContent = false;
1731
+
1732
+ const aContent = this.getCurrentContent();
1733
+ if (aContent.length > 0) {
1734
+ bHasInteractiveContent = aContent.reduce((bInteractive, oContent) => {
1735
+ return bInteractive || oContent._getToolbarInteractive?.();
1736
+ }, bHasInteractiveContent);
1737
+ }
1738
+
1739
+ return bHasInteractiveContent;
1740
+ };
1741
+
1706
1742
  /*
1707
1743
  * If Field is inside of a Form use Forms aria logic for label
1708
1744
  */
@@ -1805,10 +1841,10 @@ sap.ui.define([
1805
1841
  }
1806
1842
 
1807
1843
  /**
1808
- * Assigns a <code>Label</code> control to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField}, or {@link sap.ui.mdc.FilterField FilterField} controls.
1844
+ * Assigns a {@link sap.m.Label Label} control to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField}, or {@link sap.ui.mdc.FilterField FilterField} controls.
1809
1845
  *
1810
1846
  * The text of the label is taken from the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField}, or {@link sap.ui.mdc.FilterField FilterField} controls.
1811
- * The <code>labelFor</code> association is set to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField}, or {@link sap.ui.mdc.FilterField FilterField} control.
1847
+ * The {@link sap.m.Label#setLabelFor labelFor} association is set to the {@link sap.ui.mdc.Field Field}, {@link sap.ui.mdc.MultiValueField MultiValueField}, or {@link sap.ui.mdc.FilterField FilterField} control.
1812
1848
  *
1813
1849
  * @param {sap.ui.core.Label} oLabel Label control
1814
1850
  * @returns {this} Reference to <code>this</code> to allow method chaining
@@ -2104,6 +2140,9 @@ sap.ui.define([
2104
2140
 
2105
2141
  };
2106
2142
 
2143
+ /**
2144
+ * @this {sap.ui.mdc.field.FieldBase}
2145
+ */
2107
2146
  function _createInternalContent() {
2108
2147
 
2109
2148
  if (this.isFieldDestroyed()) {
@@ -2415,7 +2454,7 @@ sap.ui.define([
2415
2454
  * Resets invalid input information.
2416
2455
  *
2417
2456
  * Might be called if Binding changes or field is initialized.
2418
- * @param {boolean} bRemoveUIMessage If set to <code>true</code> the <code>ValueState</code> and <code>ValueStateText</code> is removed
2457
+ * @param {boolean} bRemoveUIMessage If set to <code>true</code> the {@link #getValueState ValueState} and {@link #getValueStateText ValueStateText} is removed
2419
2458
  * @protected
2420
2459
  */
2421
2460
  FieldBase.prototype.resetInvalidInput = function(bRemoveUIMessage) {
@@ -2886,13 +2925,20 @@ sap.ui.define([
2886
2925
  }
2887
2926
  }
2888
2927
 
2889
- // TODO: remove this function and replace by getValueHelp once FieldHelp association is completetly removed.
2928
+ /**
2929
+ * @deprecated As of 1.114.0, together with `fieldHelp` association
2930
+ * @ui5-transform-hint replace-call getValueHelp
2931
+ * @private
2932
+ */
2890
2933
  FieldBase.prototype._getValueHelp = function() {
2891
2934
 
2892
2935
  return this.getValueHelp() || (this.getFieldHelp && this.getFieldHelp()); // as getFieldHelp not exist in legacy-free UI5
2893
2936
 
2894
2937
  };
2895
2938
 
2939
+ /**
2940
+ * @this {sap.ui.mdc.field.FieldBase}
2941
+ */
2896
2942
  function _getValueHelp() {
2897
2943
 
2898
2944
  let sId = this._getValueHelp();
@@ -3173,6 +3219,9 @@ sap.ui.define([
3173
3219
 
3174
3220
  if (!bError) {
3175
3221
  this.setProperty("conditions", aConditions, true); // do not invalidate whole field
3222
+ if (this.shouldFireValidationSuccessOnConditionUpdate(aConditions)) {
3223
+ _fireValidationSuccessForContent.call(this, oContent);
3224
+ }
3176
3225
  }
3177
3226
 
3178
3227
  if (!FilterOperatorUtil.compareConditionsArray(aConditions, aConditionsOld)) { // update only if real change
@@ -3181,26 +3230,8 @@ sap.ui.define([
3181
3230
  _triggerChange.call(this, aConditions, true);
3182
3231
  }
3183
3232
  } else if (bChangeAfterError) { // last valid value choosen again
3233
+ _fireValidationSuccessForContent.call(this, oContent);
3184
3234
  _triggerChange.call(this, aConditions, true);
3185
-
3186
- if (oContent) { // fire validation success on content directly, as triggered only after ENTER or Focusout. (As we don't know the internal content behaviour we cannot just fake ENTER or Focusout)
3187
- for (const sProperty in oContent.getMetadata().getAllProperties()) {
3188
- if (oContent.getBindingPath(sProperty) === "/conditions") {
3189
- const oBinding = oContent.getBinding(sProperty);
3190
- const oType = oBinding?.getType();
3191
- if (oType instanceof ConditionsType) {
3192
- oContent.fireValidationSuccess({
3193
- element: oContent,
3194
- property: sProperty,
3195
- type: oType,
3196
- newValue: oContent.getDOMValue?.(),
3197
- oldValue: oContent.getProperty(sProperty)
3198
- }, false, true); // bAllowPreventDefault, bEnableEventBubbling
3199
- break;
3200
- }
3201
- }
3202
- }
3203
- }
3204
3235
  }
3205
3236
  }
3206
3237
 
@@ -4003,8 +4034,8 @@ sap.ui.define([
4003
4034
 
4004
4035
  /**
4005
4036
  * Returns whether the given property value is initial and has not been explicitly set or no binding exist.
4006
- * Even after setting the default value or setting null/undefined (which also causes the default value to be set),
4007
- * the property is no longer initial. A property can be reset to initial state by calling <code>resetProperty(sPropertyName)</code>.
4037
+ * Even after setting the default value or setting <code>null</code>/<code>undefined</code> (which also causes the default value to be set),
4038
+ * the property is no longer initial. A property can be reset to initial state by calling <code>{@link sap.ui.base.ManagedObject#resetProperty resetProperty}(sPropertyName)</code>.
4008
4039
  *
4009
4040
  * @param {string} sPropertyName the name of the property
4010
4041
  * @returns {boolean} true if the property is initial
@@ -4040,11 +4071,11 @@ sap.ui.define([
4040
4071
  * Returns the user interaction state of the control.
4041
4072
  *
4042
4073
  * If the user starts typing or navigates via arrow keys in a value help,
4043
- * the shown value might be updated. But as long as the user has not left the field or pressed the Enter key,
4074
+ * the shown value might be updated. But as long as the user has not left the field or pressed the <kbd>Enter</kbd> key,
4044
4075
  * the current user input will not be validated or updated or an event fired.
4045
4076
  *
4046
4077
  * As long as the user is interacting with the field, this function returns <code>true</code>.
4047
- * If the user interaction has been completed because the user has left the field, pressed the Enter key,
4078
+ * If the user interaction has been completed because the user has left the field, pressed the <kbd>Enter</kbd> key,
4048
4079
  * or chosen a value from the value help, the function returns <code>false</code>.
4049
4080
  * @returns {boolean} <code>true</code> if there is a pending user input
4050
4081
  * @protected
@@ -4059,9 +4090,9 @@ sap.ui.define([
4059
4090
  /**
4060
4091
  * Returns the configuration for the additional data type.
4061
4092
  *
4062
- * For a {@link sap.ui.mdc.Field Field}, the data type is determined from the binding of the <code>additionalValue</code>.
4063
- * For a {@link sap.ui.mdc.MultiValueField MultiValueField}, the data type is determined from the binding of the <code>description</code> of an item.
4064
- * For a {@link sap.ui.mdc.FilterField FilterField}, the data type is provided via the <code>additionalDataType</code> property.
4093
+ * For a {@link sap.ui.mdc.Field Field}, the data type is determined from the binding of the {@link sap.ui.mdc.Field#getAdditionalValue additionalValue}.
4094
+ * For a {@link sap.ui.mdc.MultiValueField MultiValueField}, the data type is determined from the binding of the {@link sap.ui.mdc.field.MultiValueFieldItem#getDescription description} of an item.
4095
+ * For a {@link sap.ui.mdc.FilterField FilterField}, the data type is provided via the {@link sap.ui.mdc.FilterField#getAdditionalDataType additionalDataType} property.
4065
4096
  *
4066
4097
  * @returns {sap.ui.model.Type|object} Type instance of a configuration object
4067
4098
  * @protected
@@ -4076,7 +4107,7 @@ sap.ui.define([
4076
4107
  /**
4077
4108
  * Allows fields to wait for async formatting result processing
4078
4109
  *
4079
- * @returns {undefined|Promise} returns a promise waiting for ongoing formatting
4110
+ * @returns {undefined|Promise} returns a <code>Promise</code> waiting for ongoing formatting
4080
4111
  * @protected
4081
4112
  * @since 1.126.0
4082
4113
  */
@@ -4108,7 +4139,7 @@ sap.ui.define([
4108
4139
  }
4109
4140
 
4110
4141
  /**
4111
- * Creates parameter for a <code>ParseError</code>, <code>ValidationError</code> or <code>ValidationSuccess</code>
4142
+ * Creates parameter for a {@link sap.ui.base.ManagedObject#event:ParseError ParseError}, {@link sap.ui.base.ManagedObject#event:ValidationError ValidationError} or {@link sap.ui.base.ManagedObject#event:ValidationSuccess ValidationSuccess}
4112
4143
  * event based on the corresponding event fired on the inner control.
4113
4144
  *
4114
4145
  * The basic implementation just adds the element and error information. The <code>property</code> and
@@ -4139,7 +4170,47 @@ sap.ui.define([
4139
4170
  };
4140
4171
 
4141
4172
  /**
4142
- * Sets the ValueState for content controls
4173
+ * Checks if a condition update needs to fire a {@link sap.ui.base.ManagedObject#event:ValidationSuccess ValidationSuccess} event.
4174
+ *
4175
+ * This is required in {@link sap.ui.mdc.field.Field Field} if the condition update doesn't lead to an update of the
4176
+ * {@link sap.ui.mdc.field.Field#setValue value} property. (If only description or payload is changed.)
4177
+ *
4178
+ * @param {sap.ui.mdc.condition.ConditionObject[]} aConditions Current conditions
4179
+ * @returns {boolean} <code>true</code> if the {@link sap.ui.base.ManagedObject#event:ValidationSuccess ValidationSuccess} event is fired
4180
+ * @protected
4181
+ * @since 1.142.0
4182
+ */
4183
+ FieldBase.prototype.shouldFireValidationSuccessOnConditionUpdate = function (aConditions) {
4184
+
4185
+ return false;
4186
+
4187
+ };
4188
+
4189
+ function _fireValidationSuccessForContent(oContent) {
4190
+
4191
+ if (oContent) { // fire validation success on content directly, as triggered only after ENTER or Focusout. (As we don't know the internal content behaviour we cannot just fake ENTER or Focusout)
4192
+ for (const sProperty in oContent.getMetadata().getAllProperties()) {
4193
+ if (oContent.getBindingPath(sProperty) === "/conditions") {
4194
+ const oBinding = oContent.getBinding(sProperty);
4195
+ const oType = oBinding?.getType();
4196
+ if (oType instanceof ConditionsType) {
4197
+ oContent.fireValidationSuccess({
4198
+ element: oContent,
4199
+ property: sProperty,
4200
+ type: oType,
4201
+ newValue: oContent.getDOMValue?.(),
4202
+ oldValue: oContent.getProperty(sProperty)
4203
+ }, false, true); // bAllowPreventDefault, bEnableEventBubbling
4204
+ break;
4205
+ }
4206
+ }
4207
+ }
4208
+ }
4209
+
4210
+ }
4211
+
4212
+ /**
4213
+ * Sets the <code>ValueState</code> for content controls
4143
4214
  *
4144
4215
  * @param {string} sContentId Id of the content control
4145
4216
  * @param {sap.ui.core.ValueState} sValueState value state
@@ -4158,7 +4229,7 @@ sap.ui.define([
4158
4229
  };
4159
4230
 
4160
4231
  /**
4161
- * Gets the ValueState for content controls
4232
+ * Gets the <code>ValueState</code> for content controls
4162
4233
  *
4163
4234
  * @param {string} sContentId Id of the content control or Id of the field itself
4164
4235
  * @returns {object} value state information for content control
@@ -4193,7 +4264,7 @@ sap.ui.define([
4193
4264
  };
4194
4265
 
4195
4266
  /**
4196
- * Resets the ValueState for content controls
4267
+ * Resets the <code>ValueState</code> for content controls
4197
4268
  *
4198
4269
  * @protected
4199
4270
  * @since 1.138.0
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * A <code>FieldInfoBase</code> element is a base class that shows any kind of information related to the <code>Field</code> control, for example, navigation targets or contact details.
32
32
  * This is the basis for link-features. If the link is pressed a popover might be opened.
33
33
  * @extends sap.ui.mdc.Element
34
- * @version 1.141.2
34
+ * @version 1.143.0
35
35
  * @constructor
36
36
  * @since 1.54.0
37
37
  * @public
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  * The <code>FieldInput</code> control is used to render an input field inside a control based on {@link sap.ui.mdc.field.FieldBase FieldBase}.
25
25
  * It enhances the {@link sap.m.Input Input} control to add ARIA attributes and other {@link sap.ui.mdc.field.FieldBase FieldBase}-specific logic.
26
26
  * @extends sap.m.Input
27
- * @version 1.141.2
27
+ * @version 1.143.0
28
28
  * @constructor
29
29
  * @abstract
30
30
  * @private
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @class Functions uses in <code>FieldInputRenderer</code> and <code>FieldMultiInputRenderer</code> to adjust aria attributes.
17
17
  *
18
18
  * @author SAP SE
19
- * @version 1.141.2
19
+ * @version 1.143.0
20
20
  * @since 1.86.0
21
21
  * @alias sap.ui.mdc.field.FieldInputRenderUtil
22
22
  *
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * The <code>FieldMultiInput</code> control is used to render a multi-input field inside a control based on {@link sap.ui.mdc.field.FieldBase FieldBase}.
32
32
  * It enhances the {@link sap.m.MultiInput MultiInput} control to add ARIA attributes and other {@link sap.ui.mdc.field.FieldBase FieldBase}-specific logic.
33
33
  * @extends sap.m.MultiInput
34
- * @version 1.141.2
34
+ * @version 1.143.0
35
35
  * @constructor
36
36
  * @abstract
37
37
  * @private
@@ -31,7 +31,7 @@ sap.ui.define([
31
31
  * The <code>FieldSelect</code> control is used to render an select field inside a control based on {@link sap.ui.mdc.field.FieldBase FieldBase}.
32
32
  * It enhances the {@link sap.m.Select Select} control to allow {@link sap.ui.mdc.field.FieldBase FieldBase}-specific ValueHelp logic.
33
33
  * @extends sap.m.Input
34
- * @version 1.141.2
34
+ * @version 1.143.0
35
35
  * @constructor
36
36
  * @abstract
37
37
  * @private
@@ -145,6 +145,9 @@ sap.ui.define([
145
145
 
146
146
  function _formatConditions(aConditions) {
147
147
 
148
+ /**
149
+ * @type {sap.ui.mdc.field.FieldBase}
150
+ */
148
151
  const oField = this.getParent();
149
152
 
150
153
  if (!oField?.isA("sap.ui.mdc.field.FieldBase")) { // called from generic tests
@@ -438,6 +441,9 @@ sap.ui.define([
438
441
 
439
442
  function _getValueHelp() {
440
443
 
444
+ /**
445
+ * @type {sap.ui.mdc.field.FieldBase}
446
+ */
441
447
  const oField = this.getParent();
442
448
  let sId = oField?._getValueHelp();
443
449
  let oValueHelp;
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.mdc.valuehelp.content.FixedListItem
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.141.2
26
+ * @version 1.143.0
27
27
  *
28
28
  * @private
29
29
  * @ui5-restricted sap.fe
@@ -38,11 +38,33 @@ sap.ui.define([
38
38
  * @param {sap.ui.mdc.MultiValueField} oMultiValueField Current <code>MultiValueField</code> control to determine binding information to update the values of the related model
39
39
  * @public
40
40
  * @experimental
41
+ * @deprecated As of version 1.142, replaced by {@link module:sap/ui/mdc/field/MultiValueFieldDelegate.updateItemsFromConditions updateItemsFromConditions}.
41
42
  */
42
43
  MultiValueFieldDelegate.updateItems = function(oPayload, aConditions, oMultiValueField) {
43
44
 
44
45
  };
45
46
 
47
+
48
+ /**
49
+ * Implements the model-specific logic to update items after conditions have been updated.
50
+ *
51
+ * Items can be removed, updated, or added.
52
+ * Use the binding information of the <code>MultiValueField</code> control to update the data in the related model.
53
+ *
54
+ * @param {sap.ui.mdc.MultiValueField} oMultiValueField Current <code>MultiValueField</code> control to determine binding information to update the values of the related model
55
+ * @param {sap.ui.mdc.condition.ConditionObject[]} aConditions Current conditions of the <code>MultiValueField</code> control
56
+ * @public
57
+ * @experimental
58
+ * @since 1.142
59
+ */
60
+ MultiValueFieldDelegate.updateItemsFromConditions = function(oMultiValueField, aConditions) {
61
+ /**
62
+ * @deprecated As of version 1.142
63
+ */
64
+ this.updateItems.apply(this, [oMultiValueField.getPayload(), aConditions, oMultiValueField]);
65
+ };
66
+
67
+
46
68
  MultiValueFieldDelegate.indexOfCondition = function(oMultiValueField, oValueHelp, oCondition, aConditions) {
47
69
 
48
70
  // as all conditions belongs to items and therefore get state "Validated" compare conditions from manual user input with validated conditions
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * Base type for <code>MultiValueFieldItem</code> control.
21
21
  * The {@link sap.ui.mdc.MultiValueField MultiValueField} holds its values as items. The <code>MultiValueFieldItem</code> element defines these items.
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.141.2
23
+ * @version 1.143.0
24
24
  * @constructor
25
25
  * @since 1.93.0
26
26
  * @public
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * The <code>TokenDisplay</code> control is used to render a field inside a control based on {@link sap.ui.mdc.field.FieldBase FieldBase}.
23
23
  * It enhances the {@link sap.m.Token Token} control to add ARIA attributes and other {@link sap.ui.mdc.field.FieldBase FieldBase}-specific logic.
24
24
  * @extends sap.m.Token
25
- * @version 1.141.2
25
+ * @version 1.143.0
26
26
  * @constructor
27
27
  * @abstract
28
28
  * @private
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * It enhances the {@link sap.m.Tokenizer Tokenizer} control to support display only tokens.
30
30
  * @extends sap.m.Tokenizer
31
31
  * @implements sap.ui.core.ILabelable
32
- * @version 1.141.2
32
+ * @version 1.143.0
33
33
  * @constructor
34
34
  * @abstract
35
35
  *
@@ -324,6 +324,9 @@ sap.ui.define([
324
324
  return sEditMode === FieldEditMode.Editable;
325
325
  };
326
326
 
327
+ /**
328
+ * @returns {sap.ui.mdc.field.FieldBase}
329
+ */
327
330
  ContentFactory.prototype.getField = function() {
328
331
  return this._oField;
329
332
  };