@openui5/sap.ui.mdc 1.113.0 → 1.115.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 (269) hide show
  1. package/.reuse/dep5 +0 -5
  2. package/README.md +22 -9
  3. package/THIRDPARTY.txt +1 -7
  4. package/package.json +4 -4
  5. package/src/sap/ui/mdc/.library +1 -1
  6. package/src/sap/ui/mdc/ActionToolbar.js +5 -7
  7. package/src/sap/ui/mdc/AggregationBaseDelegate.js +5 -5
  8. package/src/sap/ui/mdc/BaseDelegate.js +49 -14
  9. package/src/sap/ui/mdc/Chart.js +147 -179
  10. package/src/sap/ui/mdc/ChartDelegate.js +404 -514
  11. package/src/sap/ui/mdc/ChartRenderer.js +11 -11
  12. package/src/sap/ui/mdc/Control.js +4 -4
  13. package/src/sap/ui/mdc/DefaultTypeMap.js +84 -0
  14. package/src/sap/ui/mdc/Element.js +4 -4
  15. package/src/sap/ui/mdc/Field.js +98 -96
  16. package/src/sap/ui/mdc/FilterBar.js +33 -56
  17. package/src/sap/ui/mdc/FilterBarDelegate.js +36 -69
  18. package/src/sap/ui/mdc/FilterField.js +93 -47
  19. package/src/sap/ui/mdc/Link.js +83 -82
  20. package/src/sap/ui/mdc/LinkDelegate.js +29 -48
  21. package/src/sap/ui/mdc/MultiValueField.js +34 -30
  22. package/src/sap/ui/mdc/Table.js +182 -193
  23. package/src/sap/ui/mdc/TableDelegate.js +244 -33
  24. package/src/sap/ui/mdc/ValueHelp.js +67 -50
  25. package/src/sap/ui/mdc/ValueHelpDelegate.js +57 -89
  26. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +4 -12
  27. package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +192 -197
  28. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +10 -20
  29. package/src/sap/ui/mdc/chart/ChartToolbar.js +50 -50
  30. package/src/sap/ui/mdc/chart/ChartTypeButton.js +23 -27
  31. package/src/sap/ui/mdc/chart/DrillBreadcrumbs.js +10 -10
  32. package/src/sap/ui/mdc/chart/DrillStackHandler.js +14 -14
  33. package/src/sap/ui/mdc/chart/Item.js +30 -17
  34. package/src/sap/ui/mdc/chart/PropertyHelper.js +10 -10
  35. package/src/sap/ui/mdc/chart/SelectionDetailsActions.js +23 -15
  36. package/src/sap/ui/mdc/condition/Condition.js +11 -23
  37. package/src/sap/ui/mdc/condition/ConditionConverter.js +8 -8
  38. package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
  39. package/src/sap/ui/mdc/condition/FilterConverter.js +2 -2
  40. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +771 -123
  41. package/src/sap/ui/mdc/condition/Operator.js +52 -50
  42. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +14 -14
  43. package/src/sap/ui/mdc/condition/RangeOperator.js +3 -5
  44. package/src/sap/ui/mdc/designtime/table/Table.designtime.js +2 -2
  45. package/src/sap/ui/mdc/enum/ActionToolbarActionAlignment.js +5 -9
  46. package/src/sap/ui/mdc/enum/BaseType.js +15 -20
  47. package/src/sap/ui/mdc/enum/ConditionValidated.js +5 -9
  48. package/src/sap/ui/mdc/enum/ContentMode.js +1 -0
  49. package/src/sap/ui/mdc/enum/EditMode.js +7 -19
  50. package/src/sap/ui/mdc/enum/FieldDisplay.js +12 -18
  51. package/src/sap/ui/mdc/enum/FilterBarValidationStatus.js +3 -1
  52. package/src/sap/ui/mdc/enum/LinkType.js +40 -0
  53. package/src/sap/ui/mdc/enum/OperatorOverwrite.js +4 -2
  54. package/src/sap/ui/mdc/enum/OperatorValueType.js +47 -0
  55. package/src/sap/ui/mdc/enum/PersistenceMode.js +36 -36
  56. package/src/sap/ui/mdc/enum/ProcessingStrategy.js +3 -1
  57. package/src/sap/ui/mdc/enum/PropagationReason.js +1 -1
  58. package/src/sap/ui/mdc/enum/ReasonMode.js +1 -0
  59. package/src/sap/ui/mdc/enum/SelectType.js +1 -0
  60. package/src/sap/ui/mdc/enums/ActionToolbarActionAlignment.js +31 -0
  61. package/src/sap/ui/mdc/enums/BaseType.js +72 -0
  62. package/src/sap/ui/mdc/enums/ChartItemRoleType.js +61 -0
  63. package/src/sap/ui/mdc/enums/ChartItemType.js +31 -0
  64. package/src/sap/ui/mdc/enums/ChartP13nMode.js +48 -0
  65. package/src/sap/ui/mdc/enums/ChartToolbarActionType.js +49 -0
  66. package/src/sap/ui/mdc/enums/ConditionValidated.js +43 -0
  67. package/src/sap/ui/mdc/enums/ContentMode.js +74 -0
  68. package/src/sap/ui/mdc/enums/FieldDisplay.js +49 -0
  69. package/src/sap/ui/mdc/enums/FieldEditMode.js +55 -0
  70. package/src/sap/ui/mdc/enums/FilterBarP13nMode.js +36 -0
  71. package/src/sap/ui/mdc/enums/FilterBarValidationStatus.js +56 -0
  72. package/src/sap/ui/mdc/enums/LinkType.js +38 -0
  73. package/src/sap/ui/mdc/enums/OperatorOverwrite.js +34 -0
  74. package/src/sap/ui/mdc/enums/OperatorValueType.js +44 -0
  75. package/src/sap/ui/mdc/enums/PersistenceMode.js +44 -0
  76. package/src/sap/ui/mdc/enums/ProcessingStrategy.js +39 -0
  77. package/src/sap/ui/mdc/enums/ReasonMode.js +53 -0
  78. package/src/sap/ui/mdc/enums/TableGrowingMode.js +42 -0
  79. package/src/sap/ui/mdc/enums/TableMultiSelectMode.js +35 -0
  80. package/src/sap/ui/mdc/enums/TableP13nMode.js +54 -0
  81. package/src/sap/ui/mdc/enums/TableRowAction.js +30 -0
  82. package/src/sap/ui/mdc/enums/TableRowCountMode.js +36 -0
  83. package/src/sap/ui/mdc/enums/TableSelectionMode.js +45 -0
  84. package/src/sap/ui/mdc/enums/TableType.js +43 -0
  85. package/src/sap/ui/mdc/enums/ValueHelpPropagationReason.js +41 -0
  86. package/src/sap/ui/mdc/enums/ValueHelpSelectionType.js +46 -0
  87. package/src/sap/ui/mdc/field/ConditionType.js +120 -88
  88. package/src/sap/ui/mdc/field/ConditionsType.js +149 -44
  89. package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
  90. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +15 -17
  91. package/src/sap/ui/mdc/field/FieldBase.js +512 -323
  92. package/src/sap/ui/mdc/field/FieldBaseDelegate.js +31 -114
  93. package/src/sap/ui/mdc/field/FieldBaseRenderer.js +4 -4
  94. package/src/sap/ui/mdc/field/FieldInfoBase.js +23 -21
  95. package/src/sap/ui/mdc/field/FieldInput.js +1 -1
  96. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
  97. package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
  98. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +8 -29
  99. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +2 -7
  100. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +2 -6
  101. package/src/sap/ui/mdc/field/TokenDisplay.js +1 -1
  102. package/src/sap/ui/mdc/field/TokenizerDisplay.js +2 -1
  103. package/src/sap/ui/mdc/field/TokenizerDisplayRenderer.js +0 -4
  104. package/src/sap/ui/mdc/field/content/BooleanContent.js +2 -2
  105. package/src/sap/ui/mdc/field/content/ContentFactory.js +47 -35
  106. package/src/sap/ui/mdc/field/content/DateContent.js +49 -43
  107. package/src/sap/ui/mdc/field/content/DateTimeContent.js +2 -2
  108. package/src/sap/ui/mdc/field/content/DefaultContent.js +8 -8
  109. package/src/sap/ui/mdc/field/content/LinkContent.js +10 -6
  110. package/src/sap/ui/mdc/field/content/SearchContent.js +4 -4
  111. package/src/sap/ui/mdc/field/content/TimeContent.js +2 -2
  112. package/src/sap/ui/mdc/field/content/UnitContent.js +19 -11
  113. package/src/sap/ui/mdc/field/splitValue.js +45 -0
  114. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +109 -218
  115. package/src/sap/ui/mdc/filterbar/IFilterContainer.js +22 -19
  116. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +6 -7
  117. package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +2 -4
  118. package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +3 -7
  119. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +52 -41
  120. package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +2 -4
  121. package/src/sap/ui/mdc/filterbar/p13n/FilterGroupLayout.js +1 -3
  122. package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +4 -2
  123. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +14 -21
  124. package/src/sap/ui/mdc/filterbar/vh/FilterBarDelegate.js +1 -1
  125. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +1 -1
  126. package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +2 -38
  127. package/src/sap/ui/mdc/flexibility/ColumnFlex.js +3 -3
  128. package/src/sap/ui/mdc/flexibility/ConditionFlex.js +11 -6
  129. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +1 -1
  130. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +2 -2
  131. package/src/sap/ui/mdc/flexibility/GroupFlex.js +11 -2
  132. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +25 -9
  133. package/src/sap/ui/mdc/flexibility/SortFlex.js +11 -1
  134. package/src/sap/ui/mdc/flexibility/Util.js +2 -2
  135. package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +7 -4
  136. package/src/sap/ui/mdc/library.js +178 -84
  137. package/src/sap/ui/mdc/link/ContactDetails.js +1 -1
  138. package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +1 -1
  139. package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +1 -1
  140. package/src/sap/ui/mdc/link/ContactDetailsItem.js +1 -1
  141. package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +1 -1
  142. package/src/sap/ui/mdc/link/Factory.js +1 -1
  143. package/src/sap/ui/mdc/link/FakeFlpConnector.js +1 -1
  144. package/src/sap/ui/mdc/link/LinkItem.js +26 -5
  145. package/src/sap/ui/mdc/link/Panel.js +1 -1
  146. package/src/sap/ui/mdc/link/PanelItem.js +1 -1
  147. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
  148. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
  149. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
  150. package/src/sap/ui/mdc/messagebundle.properties +9 -0
  151. package/src/sap/ui/mdc/messagebundle_ar.properties +7 -1
  152. package/src/sap/ui/mdc/messagebundle_bg.properties +19 -13
  153. package/src/sap/ui/mdc/messagebundle_ca.properties +6 -0
  154. package/src/sap/ui/mdc/messagebundle_cs.properties +6 -0
  155. package/src/sap/ui/mdc/messagebundle_cy.properties +6 -0
  156. package/src/sap/ui/mdc/messagebundle_da.properties +6 -0
  157. package/src/sap/ui/mdc/messagebundle_de.properties +6 -0
  158. package/src/sap/ui/mdc/messagebundle_el.properties +13 -7
  159. package/src/sap/ui/mdc/messagebundle_en.properties +6 -0
  160. package/src/sap/ui/mdc/messagebundle_en_GB.properties +6 -0
  161. package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +6 -0
  162. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +6 -0
  163. package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +6 -0
  164. package/src/sap/ui/mdc/messagebundle_es.properties +6 -0
  165. package/src/sap/ui/mdc/messagebundle_es_MX.properties +6 -0
  166. package/src/sap/ui/mdc/messagebundle_et.properties +6 -0
  167. package/src/sap/ui/mdc/messagebundle_fi.properties +7 -1
  168. package/src/sap/ui/mdc/messagebundle_fr.properties +6 -0
  169. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +10 -4
  170. package/src/sap/ui/mdc/messagebundle_hi.properties +6 -0
  171. package/src/sap/ui/mdc/messagebundle_hr.properties +15 -9
  172. package/src/sap/ui/mdc/messagebundle_hu.properties +8 -2
  173. package/src/sap/ui/mdc/messagebundle_id.properties +6 -0
  174. package/src/sap/ui/mdc/messagebundle_it.properties +10 -4
  175. package/src/sap/ui/mdc/messagebundle_iw.properties +6 -0
  176. package/src/sap/ui/mdc/messagebundle_ja.properties +14 -8
  177. package/src/sap/ui/mdc/messagebundle_kk.properties +16 -10
  178. package/src/sap/ui/mdc/messagebundle_ko.properties +9 -3
  179. package/src/sap/ui/mdc/messagebundle_lt.properties +6 -0
  180. package/src/sap/ui/mdc/messagebundle_lv.properties +6 -0
  181. package/src/sap/ui/mdc/messagebundle_ms.properties +9 -3
  182. package/src/sap/ui/mdc/messagebundle_nl.properties +7 -1
  183. package/src/sap/ui/mdc/messagebundle_no.properties +6 -0
  184. package/src/sap/ui/mdc/messagebundle_pl.properties +8 -2
  185. package/src/sap/ui/mdc/messagebundle_pt.properties +6 -0
  186. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +6 -0
  187. package/src/sap/ui/mdc/messagebundle_ro.properties +6 -0
  188. package/src/sap/ui/mdc/messagebundle_ru.properties +6 -0
  189. package/src/sap/ui/mdc/messagebundle_sh.properties +6 -0
  190. package/src/sap/ui/mdc/messagebundle_sk.properties +8 -2
  191. package/src/sap/ui/mdc/messagebundle_sl.properties +6 -0
  192. package/src/sap/ui/mdc/messagebundle_sv.properties +6 -0
  193. package/src/sap/ui/mdc/messagebundle_th.properties +19 -13
  194. package/src/sap/ui/mdc/messagebundle_tr.properties +6 -0
  195. package/src/sap/ui/mdc/messagebundle_uk.properties +7 -1
  196. package/src/sap/ui/mdc/messagebundle_vi.properties +6 -0
  197. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +7 -1
  198. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +6 -0
  199. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +1 -1
  200. package/src/sap/ui/mdc/mixin/DelegateMixin.js +33 -14
  201. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +3 -5
  202. package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
  203. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +1 -1
  204. package/src/sap/ui/mdc/odata/TypeMap.js +155 -0
  205. package/src/sap/ui/mdc/odata/TypeUtil.js +42 -1
  206. package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +17 -11
  207. package/src/sap/ui/mdc/odata/v4/FieldBaseDelegate.js +5 -50
  208. package/src/sap/ui/mdc/odata/v4/ODataMetaModelUtil.js +1 -1
  209. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +156 -44
  210. package/src/sap/ui/mdc/odata/v4/TypeMap.js +70 -0
  211. package/src/sap/ui/mdc/odata/v4/TypeUtil.js +2 -1
  212. package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +8 -9
  213. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +380 -390
  214. package/src/sap/ui/mdc/p13n/PropertyHelper.js +1 -1
  215. package/src/sap/ui/mdc/p13n/StateUtil.js +6 -19
  216. package/src/sap/ui/mdc/p13n/UIManager.js +1 -1
  217. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +43 -34
  218. package/src/sap/ui/mdc/p13n/panels/FilterPanel.js +3 -4
  219. package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +1 -1
  220. package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +4 -6
  221. package/src/sap/ui/mdc/table/Column.js +45 -17
  222. package/src/sap/ui/mdc/table/ColumnSettings.js +2 -5
  223. package/src/sap/ui/mdc/table/CreationRow.js +4 -6
  224. package/src/sap/ui/mdc/table/GridTableType.js +31 -115
  225. package/src/sap/ui/mdc/table/PropertyHelper.js +56 -11
  226. package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +2 -5
  227. package/src/sap/ui/mdc/table/ResponsiveTableType.js +13 -84
  228. package/src/sap/ui/mdc/table/RowActionItem.js +9 -14
  229. package/src/sap/ui/mdc/table/RowSettings.js +2 -5
  230. package/src/sap/ui/mdc/table/TableSettings.js +23 -19
  231. package/src/sap/ui/mdc/table/TableTypeBase.js +43 -15
  232. package/src/sap/ui/mdc/table/TreeTableType.js +12 -32
  233. package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +2 -5
  234. package/src/sap/ui/mdc/table/menu/Item.js +1 -1
  235. package/src/sap/ui/mdc/table/menu/QuickActionContainer.js +3 -3
  236. package/src/sap/ui/mdc/table/utils/Personalization.js +4 -4
  237. package/src/sap/ui/mdc/themes/base/ValueHelpDialog.less +6 -6
  238. package/src/sap/ui/mdc/util/DateUtil.js +15 -11
  239. package/src/sap/ui/mdc/util/FilterUtil.js +44 -19
  240. package/src/sap/ui/mdc/util/IdentifierUtil.js +0 -1
  241. package/src/sap/ui/mdc/util/InfoBar.js +1 -2
  242. package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
  243. package/src/sap/ui/mdc/util/PropertyHelper.js +15 -8
  244. package/src/sap/ui/mdc/util/TypeMap.js +377 -0
  245. package/src/sap/ui/mdc/util/TypeUtil.js +35 -2
  246. package/src/sap/ui/mdc/util/mapVersions.js +225 -0
  247. package/src/sap/ui/mdc/valuehelp/Dialog.js +52 -33
  248. package/src/sap/ui/mdc/valuehelp/Popover.js +33 -35
  249. package/src/sap/ui/mdc/valuehelp/base/Container.js +193 -62
  250. package/src/sap/ui/mdc/valuehelp/base/Content.js +134 -57
  251. package/src/sap/ui/mdc/{field → valuehelp/base}/DefineConditionPanel.js +426 -197
  252. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +2 -2
  253. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +140 -47
  254. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +11 -9
  255. package/src/sap/ui/mdc/valuehelp/content/Bool.js +11 -20
  256. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +26 -32
  257. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +14 -17
  258. package/src/sap/ui/mdc/valuehelp/content/FixedListItem.js +60 -0
  259. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +194 -199
  260. package/src/sap/ui/mdc/valuehelp/content/MTable.js +48 -51
  261. package/test/sap/ui/mdc/testutils/opa/chart/AssertionsViz.js +4 -4
  262. package/test/sap/ui/mdc/testutils/opa/field/Actions.js +1 -1
  263. package/test/sap/ui/mdc/testutils/opa/field/Assertions.js +3 -3
  264. package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +4 -2
  265. package/test/sap/ui/mdc/testutils/opa/filterfield/Assertions.js +1 -1
  266. package/test/sap/ui/mdc/testutils/opa/table/Actions.js +41 -70
  267. package/test/sap/ui/mdc/testutils/opa/valueHelp/doWait.js +1 -1
  268. package/src/sap/ui/mdc/designtime/p13n/PersistenceProvider.designtime.js +0 -21
  269. package/src/sap/ui/mdc/util/FormatUtil.js +0 -82
@@ -9,9 +9,9 @@
9
9
  // ---------------------------------------------------------------------------------------
10
10
 
11
11
  sap.ui.define([
12
- 'sap/ui/mdc/BaseDelegate', 'sap/ui/mdc/odata/TypeUtil'/* TODO: FieldBase & Field currently expect odata types in default delegate! */, 'sap/ui/model/FormatException', 'sap/ui/mdc/condition/Condition', 'sap/ui/mdc/enum/ConditionValidated'
12
+ 'sap/ui/mdc/BaseDelegate', 'sap/ui/mdc/DefaultTypeMap', 'sap/ui/model/FormatException', 'sap/ui/mdc/condition/Condition', 'sap/ui/mdc/enums/ConditionValidated'
13
13
  ], function(
14
- BaseDelegate, TypeUtil, FormatException, Condition, ConditionValidated
14
+ BaseDelegate, DefaultTypeMap, FormatException, Condition, ConditionValidated
15
15
  ) {
16
16
  "use strict";
17
17
 
@@ -21,116 +21,64 @@ sap.ui.define([
21
21
  *
22
22
  * @namespace
23
23
  * @author SAP SE
24
- * @private
25
- * @ui5-restricted sap.fe
26
- * @MDC_PUBLIC_CANDIDATE
27
- * @experimental As of version 1.72
24
+ * @public
28
25
  * @since 1.72.0
29
26
  * @extends module:sap/ui/mdc/BaseDelegate
30
27
  * @alias module:sap/ui/mdc/field/FieldBaseDelegate
31
28
  */
32
29
  var FieldBaseDelegate = Object.assign({}, BaseDelegate);
33
30
 
31
+ FieldBaseDelegate.getTypeMap = function () {
32
+ return DefaultTypeMap;
33
+ };
34
+
34
35
  /**
35
36
  * Provides the possibility to convey custom data in conditions.
36
37
  * This enables an application to enhance conditions with data relevant for combined key or outparameter scenarios.
37
38
  *
38
- * @param {object} oPayload Payload for delegate
39
+ * @param {sap.ui.mdc.field.FieldBase} oField <code>Field</code> control instance
39
40
  * @param {sap.ui.core.Control} [oControl] Instance of the calling control
40
41
  * @param {any[]} aValues key, description pair for the condition which is to be created.
41
42
  * @returns {undefined|object} Optionally returns a serializeable object to be stored in the condition payload field.
42
- * @private
43
- * @ui5-restricted sap.fe
44
- * @MDC_PUBLIC_CANDIDATE
43
+ * @public
45
44
  * @since 1.107.0
46
45
  */
47
- FieldBaseDelegate.createConditionPayload = function (oPayload, oControl, aValues) {
46
+ FieldBaseDelegate.createConditionPayload = function (oField, oControl, aValues) {
48
47
  return undefined;
49
48
  };
50
49
 
51
50
  /**
52
51
  * Enables applications to control condition updates based on <code>value</code> / <code>additionalvalue</code> property changes.
53
52
  *
54
- * <b>Note:</b> Use with care! Custom implementations of this method may lead to intransparency as a field's condition may then differ from the state of the <code>value</code> / <code>additionalvalue</code> properties. Please also avoid expensive operations!
53
+ * <b>Note:</b> Use with care! Custom implementations of this method may lead to intransparency as a field's condition may then differ from the state of the <code>value</code> / <code>additionalvalue</code> properties.
54
+ * Please also avoid expensive operations, as this can delay the rendering of the output!
55
55
  *
56
- * @param {object} oPayload Payload for delegate
56
+ * @param {sap.ui.mdc.field.FieldBase} oField <code>Field</code> control instance
57
57
  * @param {sap.ui.core.Control} [oControl] Instance of the calling control
58
58
  * @param {any[]} aValues key, description pair for the condition which is to be created.
59
59
  * @param {undefined|sap.ui.mdc.condition.ConditionObject} oCurrentCondition currently available condition before the property change
60
60
  * @returns {undefined|sap.ui.mdc.condition.ConditionObject} Returns a condition object to be set on the control
61
- * @private
62
- * @ui5-restricted sap.fe
63
- * @MDC_PUBLIC_CANDIDATE
61
+ * @public
64
62
  * @since 1.107.0
65
63
  */
66
- FieldBaseDelegate.createCondition = function (oPayload, oControl, aValues, oCurrentCondition) {
67
- var oNextCondition = Condition.createItemCondition(aValues[0], aValues[1], undefined, undefined, this.createConditionPayload(oPayload, oControl, aValues));
64
+ FieldBaseDelegate.createCondition = function (oField, oControl, aValues, oCurrentCondition) {
65
+ var oNextCondition = Condition.createItemCondition(aValues[0], aValues[1], undefined, undefined, this.createConditionPayload(oField, oControl, aValues));
68
66
  oNextCondition.validated = ConditionValidated.Validated;
69
67
  return oNextCondition;
70
68
  };
71
69
 
72
- /**
73
- * If the <code>Field</code> control is used, the used data type might come from the binding.
74
- * In V4-unit or currency case it might need to be formatted once.
75
- * To initialize the internal type later on, the currencies must be returned.
76
- *
77
- * @param {object} oPayload Payload for delegate
78
- * @param {sap.ui.model.SimpleType} oType Type from binding
79
- * @param {any} vValue Given value
80
- * @returns {object} Information needed to initialize internal type (needs to set bTypeInitialized to true if initialized)
81
- * @private
82
- * @ui5-restricted sap.ui.mdc.field.FieldBase
83
- */
84
- FieldBaseDelegate.initializeTypeFromBinding = function(oPayload, oType, vValue) {
85
-
86
- return {};
87
-
88
- };
89
-
90
- /**
91
- * This function initializes the unit type.
92
- * If the <code>Field</code> control is used, the used data type might come from the binding.
93
- * If the type is a V4 unit or currency, it might need to be formatted once.
94
- *
95
- * @param {object} oPayload Payload for delegate
96
- * @param {sap.ui.model.SimpleType} oType Type from binding
97
- * @param {object} oTypeInitialization Information needed to initialize internal type
98
- * @private
99
- * @ui5-restricted sap.ui.mdc.field.FieldBase
100
- */
101
- FieldBaseDelegate.initializeInternalUnitType = function(oPayload, oType, oTypeInitialization) {
102
-
103
- };
104
-
105
- /**
106
- * This function enhances the value with unit or currency information if needed by the data type.
107
- *
108
- * @param {object} oPayload Payload for delegate
109
- * @param {any[]} aValues Values
110
- * @param {object} oTypeInitialization Information needed to initialize internal type
111
- * @returns {any[]} Values
112
- * @private
113
- * @ui5-restricted sap.ui.mdc.field.FieldBase
114
- * @since: 1.93.0
115
- */
116
- FieldBaseDelegate.enhanceValueForUnit = function(oPayload, aValues, oTypeInitialization) {
117
-
118
- return aValues;
119
-
120
- };
121
-
122
70
  /**
123
71
  * Defines if the input of the <code>Field</code> or <code>FilterField</code> control is
124
72
  * checked to determine the key and description.
125
73
  *
126
- * @param {object} oPayload Payload for delegate
74
+ * @param {sap.ui.mdc.field.FieldBase} oField <code>Field</code> control instance
127
75
  * @param {sap.ui.mdc.ValueHelp} oValueHelp Field help assigned to the <code>Field</code> or <code>FilterField</code> control
128
76
  * @returns {boolean} If <code>true</code>, the input is checked
129
77
  * @private
130
78
  * @ui5-restricted sap.ui.mdc.field.FieldBase
131
79
  * @since: 1.78.0
132
80
  */
133
- FieldBaseDelegate.isInputValidationEnabled = function(oPayload, oValueHelp) {
81
+ FieldBaseDelegate.isInputValidationEnabled = function(oField, oValueHelp) {
134
82
 
135
83
  if (oValueHelp && oValueHelp.isValidationSupported()) {
136
84
  return true;
@@ -144,14 +92,14 @@ sap.ui.define([
144
92
  * Defines if the input of the <code>Field</code> or <code>FilterField</code> control that
145
93
  * is not found in the field help or custom logic is accepted.
146
94
  *
147
- * @param {object} oPayload Payload for delegate
95
+ * @param {sap.ui.mdc.field.FieldBase} oField <code>Field</code> control instance
148
96
  * @param {sap.ui.mdc.ValueHelp} oValueHelp Field help assigned to the <code>Field</code> or <code>FilterField</code> control
149
97
  * @returns {boolean} If <code>true</code>, invalid input is accepted
150
98
  * @private
151
99
  * @ui5-restricted sap.ui.mdc.field.FieldBase
152
100
  * @since: 1.78.0
153
101
  */
154
- FieldBaseDelegate.isInvalidInputAllowed = function(oPayload, oValueHelp) {
102
+ FieldBaseDelegate.isInvalidInputAllowed = function(oField, oValueHelp) {
155
103
 
156
104
  if (oValueHelp) {
157
105
  return !oValueHelp.getValidateInput();
@@ -168,23 +116,15 @@ sap.ui.define([
168
116
  *
169
117
  * If the item cannot be determined, a corresponding <code>ParseException<code> is thrown.
170
118
  *
171
- * @param {object} oPayload Payload for delegate
119
+ * @param {sap.ui.mdc.field.FieldBase} oField <code>Field</code> control instance
172
120
  * @param {sap.ui.mdc.ValueHelp} oValueHelp Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField} control
173
- * @param {object} [oConfig] Configuration
174
- * @param {any} oConfig.value Value as entered by user
175
- * @param {any} oConfig.parsedValue Value parsed by data type to fit the data type of the key
176
- * @param {sap.ui.model.Context} oConfig.bindingContext <code>BindingContext</code> of the checked field. Inside a table the <code>FieldHelp</code> element might be connected to a different row.
177
- * @param {boolean} oConfig.checkKey If set, it should be checked if there is an item with the given key. This is set to <code>false</code> if the value cannot be a valid key because of type validation.
178
- * @param {boolean} oConfig.checkDescription If set, it should be checked if there is an item with the given description. This is set to <code>false</code> if only the key is used in the field.
179
- * @param {sap.ui.core.Control} oConfig.control Instance if the calling control
121
+ * @param {sap.ui.mdc.valuehelp.base.ItemForValueConfiguration} [oConfig] Configuration
180
122
  * @returns {sap.ui.mdc.valuehelp.ValueHelpItem|Promise<sap.ui.mdc.valuehelp.ValueHelpItem>} Object containing description, key, and payload. If it is not available right now (must be requested), a <code>Promise</code> is returned.
181
123
  * @throws {sap.ui.model.ParseException} if item cannot be determined
182
124
  * @since: 1.78.0
183
- * @private
184
- * @ui5-restricted sap.fe
185
- * @MDC_PUBLIC_CANDIDATE
125
+ * @public
186
126
  */
187
- FieldBaseDelegate.getItemForValue = function(oPayload, oValueHelp, oConfig) {
127
+ FieldBaseDelegate.getItemForValue = function(oField, oValueHelp, oConfig) {
188
128
 
189
129
  if (oValueHelp) {
190
130
  return oValueHelp.getItemForValue(oConfig);
@@ -204,25 +144,23 @@ sap.ui.define([
204
144
  *
205
145
  * If the description cannot be determined, a corresponding <code>FormatException<code> is thrown.
206
146
  *
207
- * @param {object} oPayload Payload for delegate
147
+ * @param {sap.ui.mdc.field.FieldBase} oField <code>Field</code> control instance
208
148
  * @param {sap.ui.mdc.ValueHelp} oValueHelp Field help assigned to the {@link sap.ui.mdc.Field Field} or {@link sap.ui.mdc.FilterField FilterField} control
209
149
  * @param {any} vKey Key
210
150
  * @param {object} oInParameters In parameters for the key (as a key must not be unique.) (Only filled in conditions of old variants.)
211
151
  * @param {object} oOutParameters Out parameters for the key (as a key must not be unique.) (Only filled in conditions of old variants.)
212
- * @param {sap.ui.model.Context} oBindingContext <code>BindingContext</code> of the checked field. Inside a table the <code>FieldHelp</code> element might be connected to a different row.
213
- * @param {sap.ui.mdc.condition.ConditionModel} [oConditionModel] <code>ConditionModel</code>, if bound to one - NOT LONGER USED
214
- * @param {string} [sConditionModelName] Name of the <code>ConditionModel</code>, if bound to one - NOT LONGER USED
152
+ * @param {sap.ui.model.Context} oBindingContext <code>BindingContext</code> of the checked field. Inside a table the <code>ValueHelp</code> element might be connected to a different row.
153
+ * @param {undefined} oConditionModel <code>ConditionModel</code>, if bound to one - NOT LONGER USED
154
+ * @param {undefined} sConditionModelName Name of the <code>ConditionModel</code>, if bound to one - NOT LONGER USED
215
155
  * @param {object} oConditionPayload Additional context information for this key
216
- * @param {sap.ui.core.Control} [oControl] Instance if the calling control
156
+ * @param {sap.ui.core.Control} oControl Instance if the calling control is not the field itself
217
157
  * @param {sap.ui.model.Type} oType Type of the value
218
158
  * @returns {string|sap.ui.mdc.valuehelp.ValueHelpItem|Promise<string|sap.ui.mdc.valuehelp.ValueHelpItem>} Description for key or object containing description, key and payload. If it is not available right away (must be requested), a <code>Promise</code> is returned.
219
159
  * @throws {sap.ui.model.FormatException} if the description cannot be determined
220
160
  * @since: 1.78.0
221
- * @private
222
- * @ui5-restricted sap.fe
223
- * @MDC_PUBLIC_CANDIDATE
161
+ * @public
224
162
  */
225
- FieldBaseDelegate.getDescription = function(oPayload, oValueHelp, vKey, oInParameters, oOutParameters, oBindingContext, oConditionModel, sConditionModelName, oConditionPayload, oControl, oType) {
163
+ FieldBaseDelegate.getDescription = function(oField, oValueHelp, vKey, oInParameters, oOutParameters, oBindingContext, oConditionModel, sConditionModelName, oConditionPayload, oControl, oType) {
226
164
  var oConfig = {
227
165
  value: vKey,
228
166
  parsedValue: vKey,
@@ -239,26 +177,5 @@ sap.ui.define([
239
177
 
240
178
  };
241
179
 
242
- /**
243
- * This function returns which <code>ValueHelpDelegate</code> is used
244
- * if a default field help (for example, for defining conditions in </code>FilterField</code>)
245
- * is created.
246
- *
247
- * @param {object} oPayload Payload for delegate
248
- * @returns {object} Delegate object with <code>name</code and <code>payload</code>
249
- * @private
250
- * @ui5-restricted sap.ui.mdc.field.FieldBase
251
- * @since 1.99.0
252
- */
253
- FieldBaseDelegate.getDefaultValueHelpDelegate = function(oPayload) {
254
-
255
- return {name: "sap/ui/mdc/ValueHelpDelegate", payload: {}};
256
-
257
- };
258
-
259
- FieldBaseDelegate.getTypeUtil = function (oPayload) {
260
- return TypeUtil;
261
- };
262
-
263
180
  return FieldBaseDelegate;
264
181
  });
@@ -7,11 +7,11 @@
7
7
  sap.ui.define([
8
8
  'sap/ui/core/Renderer',
9
9
  'sap/ui/core/IconPool',
10
- 'sap/ui/mdc/enum/EditMode'
10
+ 'sap/ui/mdc/enums/FieldEditMode'
11
11
  ], function(
12
12
  Renderer,
13
13
  IconPool,
14
- EditMode
14
+ FieldEditMode
15
15
  ) {
16
16
  "use strict";
17
17
 
@@ -26,11 +26,11 @@ sap.ui.define([
26
26
  });
27
27
 
28
28
  FieldBaseRenderer.render = function(oRm, oField) {
29
- var aContent = oField._getContent();
29
+ var aContent = oField.getCurrentContent();
30
30
  var sWidth = oField.getWidth();
31
31
  var aConditions = oField.getConditions();
32
32
  var sEditMode = oField.getEditMode();
33
- var bShowEmptyIndicator = oField.getShowEmptyIndicator() && aConditions.length === 0 && sEditMode === EditMode.Display && !oField.getContent() && !oField.getContentDisplay();
33
+ var bShowEmptyIndicator = oField.getShowEmptyIndicator() && aConditions.length === 0 && sEditMode === FieldEditMode.Display && !oField.getContent() && !oField.getContentDisplay();
34
34
 
35
35
  oRm.openStart("div", oField);
36
36
  oRm.class("sapUiMdcFieldBase");
@@ -23,16 +23,16 @@ sap.ui.define([
23
23
  /**
24
24
  * Constructor for a new <code>FieldInfoBase</code>.
25
25
  *
26
+ * This is the basis for link-features. If the link is pressed a popover might be opened.
27
+ *
26
28
  * @param {string} [sId] ID for the new control, generated automatically if no ID is given
27
29
  * @param {object} [mSettings] Initial settings for the new control
28
30
  * @class 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.
29
31
  * @extends sap.ui.mdc.Element
30
- * @version 1.113.0
32
+ * @version 1.115.0
31
33
  * @constructor
32
- * @private
33
34
  * @since 1.54.0
34
- * @experimental As of version 1.54
35
- * @ui5-restricted sap.ui.mdc
35
+ * @public
36
36
  * @alias sap.ui.mdc.field.FieldInfoBase
37
37
  */
38
38
  var FieldInfoBase = Element.extend("sap.ui.mdc.field.FieldInfoBase", /** @lends sap.ui.mdc.field.FieldInfoBase.prototype */
@@ -55,28 +55,29 @@ sap.ui.define([
55
55
  // ----------------------- Field API --------------------------------------------
56
56
 
57
57
  /**
58
- * Returns <code>true</code> as a promise result if the control created by <code>Field</code> can be triggered.
59
- * @returns {Promise} Promise
60
- * @protected
58
+ * Returns <code>true</code> as a <code>Promise</code> result if the control created by <code>Field</code> can be triggered.
59
+ * @returns {Promise<boolean>} <code>Promise</code> resolving into <code>true</code> if <code>FieldInfo</code> is clickable
60
+ * @public
61
61
  */
62
62
  FieldInfoBase.prototype.isTriggerable = function() {
63
63
  throw new Error("sap.ui.mdc.field.FieldInfoBase: method isTriggerable must be redefined");
64
64
  };
65
65
 
66
66
  /**
67
- * Returns as a promise result href which defines the target navigation of the <code>Link</code> control created by <code>Field</code>.
68
- * If direct navigation is used, href is returned. If the information panel contains more content than only one link, <code>undefined</code> is returned.
69
- * @returns {Promise<string|undefined>} Result of promise is href with values {string | undefined}
70
- * @protected
67
+ * Returns href as a <code>Promise</code> that defines the target navigation of the <code>Link</code> control created by <code>Field</code>.
68
+ * If direct navigation is used, href is returned. If the information panel contains more content than only one link, <code>null</code> is returned.
69
+ * @returns {Promise<string|null>} Result of <code>Promise</code> is href with values {string | null}
70
+ * @public
71
71
  */
72
72
  FieldInfoBase.prototype.getTriggerHref = function() {
73
73
  throw new Error("sap.ui.mdc.field.FieldInfoBase: method getTriggerHref must be redefined");
74
74
  };
75
75
 
76
76
  /**
77
- * Returns a promise resolving in an object containing the <code>href</code> and <code>target</code> of a direct navigation link
78
- * Returns a promise resolving in null if there is no direct link
79
- * @returns {Promise} {Object | null}
77
+ * Returns a <code>Promise</code> resolving into an {@link sap.ui.mdc.link.DirectLinkObject} containing the <code>href</code> and <code>target</code> of a direct navigation link.
78
+ * Returns a <code>Promise</code> resolving into null if there is no direct link.
79
+ * @returns {Promise<sap.ui.mdc.link.DirectLinkObject|null>} <code>Promise</code> resolving into <code>null</code> or a {@link sap.ui.mdc.link.DirectLinkObject}
80
+ * @public
80
81
  */
81
82
  FieldInfoBase.prototype.getDirectLinkHrefAndTarget = function() {
82
83
  throw new Error("sap.ui.mdc.field.FieldInfoBase: method getDirectLinkHrefAndTarget must be redefined");
@@ -86,8 +87,8 @@ sap.ui.define([
86
87
  * Opens the info panel in the control created by <code>Field</code>.
87
88
  * @param {sap.ui.core.Control} oControl Optional control reference to which the popover is
88
89
  * attached. By default the parent is used as reference.
89
- * @returns {Promise} Promise which is resolved once the popover has been created
90
- * @protected
90
+ * @returns {Promise} <code>Promise</code> that is resolved once the popover has been created
91
+ * @public
91
92
  */
92
93
  FieldInfoBase.prototype.open = function(oControl) {
93
94
  oControl = oControl ? oControl : this.getParent();
@@ -118,8 +119,9 @@ sap.ui.define([
118
119
 
119
120
  /**
120
121
  * Returns the content of the popover.
121
- * @returns {Promise} Promise with a popover content of type sap.ui.Control as result
122
- * @protected
122
+ * @param {Function} [fnGetAutoClosedControl] Function returning the <code>Popover</code> control that is created in <code>createPopover</code>
123
+ * @returns {Promise<sap.ui.Control>} <code>Promise</code> with a popover content of type sap.ui.Control as result
124
+ * @public
123
125
  */
124
126
  FieldInfoBase.prototype.getContent = function(fnGetAutoClosedControl) {
125
127
  throw new Error("sap.ui.mdc.field.FieldInfoBase: method getContent must be redefined");
@@ -127,7 +129,7 @@ sap.ui.define([
127
129
 
128
130
  /**
129
131
  * Checks if there is a direct navigation or if there is a popover to be opened.
130
- * @returns {Promise} Resolves a Boolean value
132
+ * @returns {Promise<boolean>} Resolves a Boolean value
131
133
  * @protected
132
134
  */
133
135
  FieldInfoBase.prototype.checkDirectNavigation = function() {
@@ -138,7 +140,7 @@ sap.ui.define([
138
140
 
139
141
  /**
140
142
  * Returns the parent control.
141
- * @returns {sap.ui.mdc.Field} <code>Field</code> control
143
+ * @returns {string | string[] | null} control instance reference
142
144
  * @protected
143
145
  */
144
146
  FieldInfoBase.prototype.getSourceControl = function() {
@@ -149,7 +151,7 @@ sap.ui.define([
149
151
 
150
152
  /**
151
153
  * Creates a default popover instance.
152
- * @returns {Promise} Promise with a popover as result
154
+ * @returns {Promise} <code>Promise</code> with a popover as result
153
155
  * @private
154
156
  */
155
157
  FieldInfoBase.prototype.createPopover = function() {
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @param {object} [mSettings] Initial settings for the new control
24
24
  * @class 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
  * @extends sap.m.Input
26
- * @version 1.113.0
26
+ * @version 1.115.0
27
27
  * @constructor
28
28
  * @abstract
29
29
  * @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.113.0
19
+ * @version 1.115.0
20
20
  * @since 1.86.0
21
21
  * @alias sap.ui.mdc.field.FieldInputRenderUtil
22
22
  *
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @param {object} [mSettings] Initial settings for the new control
24
24
  * @class 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}.
25
25
  * @extends sap.m.MultiInput
26
- * @version 1.113.0
26
+ * @version 1.115.0
27
27
  * @constructor
28
28
  * @abstract
29
29
  * @private
@@ -4,11 +4,11 @@
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
7
- // Provides control sap.ui.core.ListItem.
7
+ // Provides control sap.ui.mdc.valuehelp.content.FixedListItem.
8
8
  sap.ui.define([
9
- 'sap/ui/core/ListItem'
9
+ 'sap/ui/mdc/valuehelp/content/FixedListItem'
10
10
  ], function(
11
- ListItem) {
11
+ FixedListItem) {
12
12
  "use strict";
13
13
 
14
14
  /**
@@ -20,40 +20,19 @@ sap.ui.define([
20
20
  * @class
21
21
  * An item that is used in the {@link sap.ui.mdc.valuehelp.content.FixedList FixedList}.
22
22
  *
23
- * @extends sap.ui.core.ListItem
23
+ * @extends sap.ui.mdc.valuehelp.content.FixedListItem
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.113.0
26
+ * @version 1.115.0
27
27
  *
28
28
  * @private
29
29
  * @ui5-restricted sap.fe
30
- * @MDC_PUBLIC_CANDIDATE
31
30
  * @since 1.86.0
31
+ * @deprecated as of 1.114.0, replaced by {@link sap.ui.mdc.valuehelp.content.FixedListItem FixedListItem}
32
32
  * @alias sap.ui.mdc.field.ListFieldHelpItem
33
33
  */
34
- var ListFieldHelpItem = ListItem.extend("sap.ui.mdc.field.ListFieldHelpItem", /** @lends sap.ui.mdc.field.ListFieldHelpItem.prototype */ { metadata : {
35
-
36
- library: "sap.ui.mdc",
37
- properties: {
38
-
39
- /**
40
- * Key of the group for what the items are grouped
41
- */
42
- groupKey: {
43
- type: "any",
44
- group: "Appearance",
45
- defaultValue : null
46
- },
47
-
48
- /**
49
- * Text of the group for what the items are grouped
50
- */
51
- groupText: {
52
- type: "string",
53
- group: "Appearance",
54
- defaultValue : null
55
- }
56
- }
34
+ var ListFieldHelpItem = FixedListItem.extend("sap.ui.mdc.field.ListFieldHelpItem", /** @lends sap.ui.mdc.field.ListFieldHelpItem.prototype */ { metadata : {
35
+ library: "sap.ui.mdc"
57
36
  }});
58
37
 
59
38
 
@@ -19,11 +19,8 @@ sap.ui.define([
19
19
  * @class Delegate class for <code>sap.ui.mdc.MultiValueField</code>.<br>
20
20
  *
21
21
  * @author SAP SE
22
- * @private
23
- * @ui5-restricted sap.fe
24
- * @MDC_PUBLIC_CANDIDATE
22
+ * @public
25
23
  * @since 1.93.0
26
- * @experimental As of version 1.93
27
24
  * @alias sap.ui.mdc.field.MultiValueFieldDelegate
28
25
  */
29
26
  var MultiValueFieldDelegate = Object.assign({}, FieldBaseDelegate);
@@ -37,9 +34,7 @@ sap.ui.define([
37
34
  * @param {object} oPayload Payload for delegate
38
35
  * @param {sap.ui.mdc.condition.ConditionObject[]} aConditions Current conditions of the <code>MultiValueField</code> control
39
36
  * @param {sap.ui.mdc.MultiValueField} oMultiValueField Current <code>MultiValueField</code> control to determine binding information to update the values of the corresponding model
40
- * @private
41
- * @ui5-restricted sap.fe
42
- * @MDC_PUBLIC_CANDIDATE
37
+ * @public
43
38
  */
44
39
  MultiValueFieldDelegate.updateItems = function(oPayload, aConditions, oMultiValueField) {
45
40
 
@@ -20,14 +20,10 @@ sap.ui.define([
20
20
  * @param {object} [mSettings] Initial settings for the new control
21
21
  * @class Base type for <code>MultiValueFieldItem</code> control.
22
22
  * @extends sap.ui.core.Element
23
- * @version 1.113.0
23
+ * @version 1.115.0
24
24
  * @constructor
25
- * @abstract
26
- * @private
27
25
  * @since 1.93.0
28
- * @experimental As of version 1.93
29
- * @ui5-restricted sap.fe
30
- * @MDC_PUBLIC_CANDIDATE
26
+ * @public
31
27
  * @alias sap.ui.mdc.field.MultiValueFieldItem
32
28
  */
33
29
  var MultiValueFieldItem = Element.extend("sap.ui.mdc.field.MultiValueFieldItem", /** @lends sap.ui.mdc.field.MultiValueFieldItem.prototype */
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @param {object} [mSettings] Initial settings for the new control
24
24
  * @class The <code>TokenDisplay</code> control is used to render a field inside a control based on {@link sap.ui.mdc.field.FieldBase FieldBase}.
25
25
  * @extends sap.m.Token
26
- * @version 1.113.0
26
+ * @version 1.115.0
27
27
  * @constructor
28
28
  * @abstract
29
29
  * @private
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @param {object} [mSettings] Initial settings for the new control
29
29
  * @class The <code>TokenizerDisplay</code> control is used to render a Tokenizer inside a control based on {@link sap.ui.mdc.field.FieldBase FieldBase}.
30
30
  * @extends sap.m.Tokenizer
31
- * @version 1.113.0
31
+ * @version 1.115.0
32
32
  * @constructor
33
33
  * @abstract
34
34
  * @private
@@ -55,6 +55,7 @@ sap.ui.define([
55
55
  TokenizerDisplay.prototype.init = function() {
56
56
  Tokenizer.prototype.init.apply(this, arguments);
57
57
 
58
+ this.setShouldRenderTabIndex(false);
58
59
  this.allowTextSelection(true);
59
60
  this.addStyleClass("sapUiMdcTokenizerDisplay");
60
61
  };
@@ -29,10 +29,6 @@ sap.ui.define(['sap/ui/core/Renderer', 'sap/m/TokenizerRenderer', 'sap/m/library
29
29
  }
30
30
  };
31
31
 
32
- TokenizerDisplayRenderer._renderTabIndex = function(oRm, oControl) {
33
- oRm.attr("tabindex", "-1");
34
- };
35
-
36
32
  TokenizerDisplayRenderer._renderIndicatorTabIndex = function(oRm, oControl) {
37
33
  oRm.attr("tabindex", "0");
38
34
  };
@@ -10,7 +10,8 @@ sap.ui.define([
10
10
 
11
11
  /**
12
12
  * Object-based definition of the Boolean content type that is used in the {@link sap.ui.mdc.field.content.ContentFactory}.
13
- * This defines which controls to load and create for a given {@link sap.ui.mdc.enum.ContentMode}.
13
+ * This defines which controls to load and create for a given {@link sap.ui.mdc.enums.ContentMode}.
14
+ * @namespace
14
15
  * @author SAP SE
15
16
  * @private
16
17
  * @ui5-restricted sap.ui.mdc
@@ -18,7 +19,6 @@ sap.ui.define([
18
19
  * @since 1.87
19
20
  * @alias sap.ui.mdc.field.content.BooleanContent
20
21
  * @extends sap.ui.mdc.field.content.DefaultContent
21
- * @MDC_PUBLIC_CANDIDATE
22
22
  */
23
23
  var BooleanContent = Object.assign({}, DefaultContent, {
24
24
  getDisplayMultiValue: function() {