@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
@@ -15,22 +15,19 @@
15
15
  "use strict";
16
16
 
17
17
  /**
18
- * The SAPUI5 library that contains the metadata-driven controls and other entities.
19
- *
20
- * SAP Internal
21
- * This library is restricted to use by SAP internal projects only.
18
+ * OpenUI5 library that contains metadata-driven composite controls that can be extended
19
+ * for use with any SAPUI5 model and data protocol.
22
20
  *
23
21
  * @namespace
24
22
  * @alias sap.ui.mdc
25
23
  * @author SAP SE
26
- * @version 1.113.0
24
+ * @version 1.115.0
27
25
  * @since 1.80
28
- * @private
29
- * @ui5-restricted sap.fe
30
- * @experimental As of version 1.54 Disclaimer: Usage Restrictions: The components of this library are under development and documented as private. Their APIs are subject to change and should not be used in productive scenarios without further agreement. A general availability of sap.ui.mdc will be announced via the usual channels.
26
+ * @public
27
+ * @experimental As of version 1.54
31
28
  */
32
29
  var thisLib = sap.ui.getCore().initLibrary({
33
- version: "1.113.0",
30
+ version: "1.115.0",
34
31
  name: "sap.ui.mdc",
35
32
  dependencies: ["sap.ui.core", "sap.m"],
36
33
  designtime: "sap/ui/mdc/designtime/library.designtime",
@@ -60,7 +57,7 @@
60
57
  "sap.ui.mdc.field.FieldBase",
61
58
  "sap.ui.mdc.field.FieldInput",
62
59
  "sap.ui.mdc.field.FieldMultiInput",
63
- "sap.ui.mdc.field.DefineConditionPanel",
60
+ "sap.ui.mdc.valuehelp.base.DefineConditionPanel",
64
61
  "sap.ui.mdc.Field",
65
62
  "sap.ui.mdc.FilterField",
66
63
  "sap.ui.mdc.MultiValueField",
@@ -103,6 +100,7 @@
103
100
  "sap.ui.mdc.valuehelp.content.Bool",
104
101
  "sap.ui.mdc.valuehelp.content.Conditions",
105
102
  "sap.ui.mdc.valuehelp.content.FixedList",
103
+ "sap.ui.mdc.valuehelp.content.FixedListItem",
106
104
  "sap.ui.mdc.valuehelp.content.MDCTable",
107
105
  "sap.ui.mdc.valuehelp.content.MTable"
108
106
  ],
@@ -683,7 +681,7 @@
683
681
 
684
682
 
685
683
  /**
686
- * Item object type.
684
+ * Item object type. This represents an abstract item from the {@link sap.ui.mdc.ValueHelp ValueHelp}.
687
685
  *
688
686
  * If an item is requested using a description or key, an object with the following
689
687
  * properties is returned.
@@ -718,8 +716,7 @@
718
716
  * @name sap.ui.mdc.IFilterSource.getConditions
719
717
  * @returns {map} a map containing the conditions according to the definition of the {@link sap.ui.mdc.condition.ConditionModel}
720
718
  * @since 1.80
721
- * @public
722
- * @function
719
+ * @method
723
720
  */
724
721
 
725
722
  /**
@@ -747,13 +744,53 @@
747
744
  * @interface
748
745
  * @private
749
746
  * @ui5-restricted sap.fe
750
- * @MDC_PUBLIC_CANDIDATE
747
+ */
748
+
749
+ /**
750
+ * The <code>validate</code> method should return a promise which resolves after the IFilter interface has handled its inner validation.
751
+ * The <code>getConditions</code> method will be called subsequently by the filtered control.</li>
752
+ *
753
+ * @name sap.ui.mdc.IFilter.validate
754
+ * @param {boolean} bSuppressSearch Determines whether the search should be suppressed. The default is <code>null<code>.
755
+ * @returns {Promise} A promise resolving once the necessary result validation has been handled
756
+ * @since 1.80
757
+ * @ui5-restricted sap.ui.mdc, sap.fe
758
+ * @method
759
+ */
760
+
761
+ /**
762
+ * <b>Note:</b> The <code>getSearch</code> method can optionally be implemented and should return a string for approximate string matching implemented in the backend.</li>
763
+ *
764
+ * @name sap.ui.mdc.IFilter.getSearch
765
+ * @returns {string} The search string to be used for an approximate string matching
766
+ * @since 1.80
767
+ * @ui5-restricted sap.fe
768
+ * @method
769
+ */
770
+
771
+ /**
772
+ *
773
+ * Fired when a filter value changes to display an overlay on the <code>sap.ui.mdc.Table</code> & <code>sap.ui.mdc.Chart</code> control.
774
+ *
775
+ * @name ap.ui.mdc.IFilter#filtersChanged
776
+ * @event
777
+ * @param {sap.ui.base.Event} oControlEvent
778
+ * @param {sap.ui.base.EventProvider} oControlEvent.getSource
779
+ */
780
+
781
+ /**
782
+ * Fired when a filter value changes to display an overlay on the <code>sap.ui.mdc.Table</code> & <code>sap.ui.mdc.Chart</code> control.
783
+ *
784
+ * @name ap.ui.mdc.IFilter#search
785
+ * @event
786
+ * @param {sap.ui.base.Event} oControlEvent
787
+ * @param {sap.ui.base.EventProvider} oControlEvent.getSource
751
788
  */
752
789
 
753
790
  /**
754
791
  *
755
792
  * Interface for controls or entities which support the appliance of an externalized state representation.
756
- * The controls or entities have to implement the following APIs: <code>getCurrentState</code>, <code>getAdaptationConfigAttribute</code> & <code>initialized</code> methods.
793
+ * The controls or entities have to implement the following APIs: <code>getCurrentState</code> & <code>initialized</code> methods.
757
794
  *
758
795
  * @since 1.75
759
796
  * @name sap.ui.mdc.IxState
@@ -767,13 +804,13 @@
767
804
  *
768
805
  * @enum {string}
769
806
  * @private
807
+ * @ui5-restricted sap.ui.mdc, sap.fe
770
808
  * @since 1.74
771
- * @experimental As of version 1.74
772
- * @ui5-restricted sap.ui.mdc
809
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.FilterBarP13nMode}
773
810
  */
774
811
  thisLib.FilterBarP13nMode = {
775
812
  /**
776
- * FilterItem personalization is enabled.
813
+ * Filter item personalization is enabled.
777
814
  *
778
815
  * @public
779
816
  */
@@ -792,8 +829,8 @@
792
829
  * @enum {string}
793
830
  * @private
794
831
  * @ui5-restricted sap.fe
795
- * @MDC_PUBLIC_CANDIDATE
796
832
  * @since 1.58
833
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableType}
797
834
  */
798
835
  thisLib.TableType = {
799
836
  /**
@@ -823,8 +860,8 @@
823
860
  * @enum {string}
824
861
  * @private
825
862
  * @ui5-restricted sap.fe
826
- * @MDC_PUBLIC_CANDIDATE
827
863
  * @since 1.62
864
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableP13nMode}
828
865
  */
829
866
  thisLib.TableP13nMode = {
830
867
  /**
@@ -865,8 +902,8 @@
865
902
  * @enum {string}
866
903
  * @private
867
904
  * @ui5-restricted sap.ui.mdc
868
- * @MDC_PUBLIC_CANDIDATE
869
905
  * @since 1.65
906
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableGrowingMode}
870
907
  */
871
908
  thisLib.GrowingMode = {
872
909
  /**
@@ -896,8 +933,8 @@
896
933
  * @enum {string}
897
934
  * @private
898
935
  * @ui5-restricted sap.ui.mdc
899
- * @MDC_PUBLIC_CANDIDATE
900
936
  * @since 1.65
937
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableRowCountMode}
901
938
  */
902
939
  thisLib.RowCountMode = {
903
940
  /**
@@ -915,23 +952,24 @@
915
952
  };
916
953
 
917
954
  /**
918
- * Defines the types of chart actions in the toolbar.
955
+ * Defines the types of chart actions in the toolbar.<br>
956
+ * Can be used to remove some of the default <code>ToolbarAction</code>. For more information, see @link sap.ui.mdc.Chart#ignoreToolbarActions}.
919
957
  *
920
958
  * @enum {string}
921
959
  * @private
922
960
  * @since 1.64
923
- * @experimental As of version 1.64
924
961
  * @ui5-restricted sap.ui.mdc
962
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.ChartToolbarActionType}
925
963
  */
926
964
  thisLib.ChartToolbarActionType = {
927
965
  /**
928
- * Zoom in and zoom out action.
966
+ * Zoom-in and zoom-out action.
929
967
  *
930
968
  * @public
931
969
  */
932
970
  ZoomInOut: "ZoomInOut",
933
971
  /**
934
- * Drill down and up action.
972
+ * Drill-down and drill-up action.
935
973
  *
936
974
  * @public
937
975
  */
@@ -956,8 +994,8 @@
956
994
  * @enum {string}
957
995
  * @private
958
996
  * @since 1.75
959
- * @experimental As of version 1.75
960
997
  * @ui5-restricted sap.ui.mdc
998
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.ChartP13nMode}
961
999
  */
962
1000
  thisLib.ChartP13nMode = {
963
1001
  /**
@@ -992,8 +1030,8 @@
992
1030
  * @enum {string}
993
1031
  * @private
994
1032
  * @ui5-restricted sap.ui.mdc
995
- * @MDC_PUBLIC_CANDIDATE
996
1033
  * @since 1.58
1034
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableSelectionMode}
997
1035
  */
998
1036
  thisLib.SelectionMode = {
999
1037
  /**
@@ -1025,8 +1063,8 @@
1025
1063
  * @enum {string}
1026
1064
  * @private
1027
1065
  * @ui5-restricted sap.ui.mdc
1028
- * @MDC_PUBLIC_CANDIDATE
1029
1066
  * @since 1.60
1067
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableRowAction}
1030
1068
  */
1031
1069
  thisLib.RowAction = {
1032
1070
  /**
@@ -1043,6 +1081,7 @@
1043
1081
  * @enum {string}
1044
1082
  * @private
1045
1083
  * @since 1.61
1084
+ * @deprecated (since 1.115.0) - No replacement available
1046
1085
  */
1047
1086
  thisLib.FilterExpression = {
1048
1087
  /**
@@ -1062,6 +1101,11 @@
1062
1101
  Multi : "Multi"
1063
1102
  };
1064
1103
 
1104
+ /**
1105
+ * @enum {string}
1106
+ * @private
1107
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.ChartItemType}
1108
+ */
1065
1109
  thisLib.ChartItemType = {
1066
1110
  /**
1067
1111
  * Dimension Item
@@ -1075,6 +1119,11 @@
1075
1119
  Measure: "Measure"
1076
1120
  };
1077
1121
 
1122
+ /**
1123
+ * @enum {string}
1124
+ * @private
1125
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.ChartItemRoleType}
1126
+ */
1078
1127
  thisLib.ChartItemRoleType = {
1079
1128
  /**
1080
1129
  * All dimensions with role "category" are assigned to the feed uid "categoryAxis".
@@ -1161,6 +1210,7 @@
1161
1210
  * @enum {string}
1162
1211
  * @private
1163
1212
  * @ui5-restricted sap.ui.mdc
1213
+ * @deprecated (since 1.115.0) - please see {@link sap.ui.mdc.enums.TableMultiSelectMode}
1164
1214
  */
1165
1215
  thisLib.MultiSelectMode = {
1166
1216
  /**
@@ -1198,10 +1248,7 @@
1198
1248
  * @namespace
1199
1249
  * @name sap.ui.mdc.enum
1200
1250
  * @since 1.74.0
1201
- * @private
1202
- * @experimental As of version 1.74
1203
- * @ui5-restricted sap.fe
1204
- * @MDC_PUBLIC_CANDIDATE
1251
+ * @public
1205
1252
  */
1206
1253
 
1207
1254
  /**
@@ -1215,10 +1262,8 @@
1215
1262
  /**
1216
1263
  * @namespace
1217
1264
  * @name sap.ui.mdc.filterbar
1218
- * @private
1219
- * @MDC_PUBLIC_CANDIDATE
1220
- * @experimental As of version 1.112.0
1221
- * @ui5-restricted sap.ui.mdc, sap.fe
1265
+ * @public
1266
+ * @since 1.112.0
1222
1267
  */
1223
1268
 
1224
1269
  /**
@@ -1227,7 +1272,7 @@
1227
1272
  * @property {string} path
1228
1273
  * The identifier of the property
1229
1274
  * @property {string} [name]
1230
- * The alternative identifier of the property. Either path or name can be used; preference is on path.
1275
+ * The alternative identifier of the property. Either path or name can be used, preferably is on path
1231
1276
  * @property {string} label
1232
1277
  * The label of the identifier
1233
1278
  * @property {string} [tooltip]
@@ -1243,69 +1288,118 @@
1243
1288
  * @property {string} [groupLabel]
1244
1289
  * The group name of the group identifier
1245
1290
  * @property {boolean} [caseSensitive = false]
1246
- * If <code>true</code> defines that the filter value will be treated as case-sensitive
1247
- * @property {sap.ui.mdc.enum.FieldDisplay} [display]
1291
+ * Defines that the filter value is treated as case-sensitive if set to <code>true</code>
1292
+ * @property {sap.ui.mdc.enums.FieldDisplay} [display]
1248
1293
  * Describes how the value will be presented to the user
1249
1294
  * @property {boolean} [hiddenFilter = false]
1250
- * Defines if the filter will be visible on the filter bar
1295
+ * Defines if the filter is visible in the filter bar
1251
1296
  * @property {boolean} [required = false]
1252
1297
  * Defines if the filter is mandatory
1253
1298
  * @property {int} maxConditions
1254
1299
  * Defines if the filter supports multiple values <code>-1</code> or single values <code>1</code>
1255
1300
  *
1256
- * @private
1257
- * @ui5-restricted sap.ui.mdc, sap.fe
1258
- * @MDC_PUBLIC_CANDIDATE
1301
+ * @public
1302
+ * @since 1.112.0
1259
1303
  */
1260
1304
 
1261
1305
  /**
1262
1306
  * @namespace
1263
1307
  * @name sap.ui.mdc.chart
1264
- * @private
1265
- * @MDC_PUBLIC_CANDIDATE
1266
- * @experimental As of version 1.112.0
1267
- * @ui5-restricted sap.ui.mdc, sap.fe
1308
+ * @public
1268
1309
  */
1269
1310
 
1270
1311
  /**
1312
+ * @namespace
1313
+ * @name sap.ui.mdc.State
1314
+ * @public
1315
+ * @since 1.113.0
1316
+ */
1317
+ /**
1318
+ * @namespace
1319
+ * @name sap.ui.mdc.State.XCondition
1320
+ * @public
1321
+ */
1322
+ /**
1323
+ * @namespace
1324
+ * @name sap.ui.mdc.State.Items
1325
+ * @public
1326
+ */
1327
+ /**
1328
+ * @namespace
1329
+ * @name sap.ui.mdc.State.Sorters
1330
+ * @public
1331
+ */
1332
+ /**
1333
+ * @namespace
1334
+ * @name sap.ui.mdc.State.GroupLevels
1335
+ * @public
1336
+ */
1337
+ /**
1338
+ * @namespace
1339
+ * @name sap.ui.mdc.State.Aggregations
1340
+ * @public
1341
+ */
1342
+ /**
1343
+ * Defines the values for each filter field path of a condition.
1271
1344
  *
1272
- * @typedef {object} sap.ui.mdc.chart.PropertyInfo
1273
- * @property {string} propertyPath
1274
- * The path to the property in the back end
1275
- * @property {string} [name]
1276
- * The identifier of the property
1277
- * @property {string} label
1278
- * The label of the identifier
1279
- * @property {string} [tooltip]
1280
- * The tooltip of the identifier
1281
- * @property {string} datatype
1282
- * The name of the type of the property
1283
- * @property {object} [constraints]
1284
- * Defines constraints for the data type of the property
1285
- * @property {object} [formatOptions]
1286
- * Defines formatting options for the data type of the property
1287
- * @property {boolean} [required = false]
1288
- * Defines if the filter is mandatory
1289
- * @property {int} maxConditions
1290
- * Defines if the filter supports multiple values <code>-1</code> or single values <code>1</code>
1291
- * @property {boolean} groupable
1292
- * Defines whether the property is groupable and is selectable as a dimension in the chart
1293
- * @property {boolean} aggregatable
1294
- * Defines whether the property is aggregatable and is selectable as a measure in the chart
1295
- * @property {string} aggregationMethod
1296
- * The aggregation method used if the property is aggregatable
1297
- * @property {string} role
1298
- * Defines the role that the property visualizes inside the chart
1299
- * @property {object} [datapoint]
1300
- * Implementation-specific object containing information about the data point
1301
- * @property {object} [criticality]
1302
- * Implementation-specific object containing information about the criticality
1303
- * @property {string} [textProperty]
1304
- * The text property used for the dimension
1345
+ * @typedef {object} sap.ui.mdc.State.XCondition
1346
+ * @property {string} operator of the condition
1347
+ * @property {Array} values of the condition
1305
1348
  *
1306
- * @private
1307
- * @ui5-restricted sap.ui.mdc, sap.fe
1308
- * @MDC_PUBLIC_CANDIDATE
1349
+ * @public
1350
+ */
1351
+ /**
1352
+ * Defines the <code>items</code> to be added to the controls default aggregation.
1353
+ *
1354
+ * @typedef {object} sap.ui.mdc.State.Items
1355
+ * @property {string} name of the item
1356
+ * @property {int} [position] of the item in the aggregation
1357
+ * @property {boolean} [visible = true] State of the item
1358
+ *
1359
+ * @public
1360
+ */
1361
+ /**
1362
+ * Defines the <code>sorters</code> to be added to the controls sorting state.
1363
+ *
1364
+ * @typedef {object} sap.ui.mdc.State.Sorters
1365
+ * @property {string} name of the sorted item
1366
+ * @property {boolean} descending Sort order for this item
1367
+ * @property {boolean} [sorted = true] Defines if the item has to be sorted
1368
+ *
1369
+ * @public
1370
+ */
1371
+ /**
1372
+ * Defines the <code>groupes</code> to be added to the controls grouping state.
1373
+ *
1374
+ * @typedef {object} sap.ui.mdc.State.GroupLevels
1375
+ * @property {string} name of the grouped item
1376
+ * @property {boolean} [grouped = true] Defines if the item has to be grouped
1377
+ *
1378
+ * @public
1379
+ */
1380
+ /**
1381
+ * Defines the <code>aggregations</code> to be added to the controls agreggation state.
1382
+ *
1383
+ * Defines whether there is an aggregation for each item.
1384
+ *
1385
+ * @typedef {object} sap.ui.mdc.State.Aggregations
1386
+ * @property {boolean} [aggregated = true] Defines if the item has to be aggregated
1387
+ *
1388
+ * @public
1389
+ */
1390
+ /**
1391
+ * The <code>State</code> object describes the interface to apply and retrieve the current adaptation state from mdc controls.
1392
+ * The {@link sap.mdc.p13n.StateUtil StateUtil} class can be used to programatically apply changes considered for
1393
+ * the controls personalization to be part of its persistence.
1394
+ *
1395
+ * @typedef {object} sap.ui.mdc.State
1396
+ * @property {sap.ui.mdc.State.XCondition} [filter] Describes the filter conditions
1397
+ * @property {sap.ui.mdc.State.Items[]} [items] Describes the filter fields
1398
+ * @property {sap.ui.mdc.State.Sorters[]} [sorters] Describes the sorter fields
1399
+ * @property {sap.ui.mdc.State.GroupLevels[]} [groupLevels] Describes the grouped fields
1400
+ * @property {sap.ui.mdc.State.Aggregations} [aggregations] Describes the aggregated fields
1401
+ *
1402
+ * @public
1309
1403
  */
1310
1404
 
1311
1405
  return thisLib;
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  * @class The ContactDetails control is used to show additional information like for example 'contact details'.
26
26
  * @extends sap.ui.core.Control
27
27
  * @author SAP SE
28
- * @version 1.113.0
28
+ * @version 1.115.0
29
29
  * @constructor
30
30
  * @private
31
31
  * @since 1.56.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.56.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.56.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.56.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.56.0
@@ -11,7 +11,7 @@ sap.ui.define([], function() {
11
11
  * @namespace Factory to access services outside of sap.ui.mdc library like for example <code>ushell</code> services.
12
12
  * @name sap.ui.mdc.link.Factory
13
13
  * @author SAP SE
14
- * @version 1.113.0
14
+ * @version 1.115.0
15
15
  * @private
16
16
  * @since 1.54.0
17
17
  */
@@ -13,7 +13,7 @@ sap.ui.define([
13
13
  * @namespace FakeFlpConnector.
14
14
  * @name sap.ui.mdc.link.FakeFlpConnector
15
15
  * @author SAP SE
16
- * @version 1.113.0
16
+ * @version 1.115.0
17
17
  * @private
18
18
  * @since 1.54.0
19
19
  */
@@ -16,10 +16,9 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] Initial settings for the new control
17
17
  * @class A <code>LinkItem</code> control is used in the {@link sap.ui.mdc.Link} control to provide a navigation target.
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
- * @private
22
- * @ui5-restricted sap.ui.mdc
21
+ * @public
23
22
  * @since 1.58.0
24
23
  * @alias sap.ui.mdc.link.LinkItem
25
24
  */
@@ -28,33 +27,55 @@ sap.ui.define([
28
27
  metadata: {
29
28
  library: "sap.ui.mdc",
30
29
  properties: {
30
+ /**
31
+ * Unique key of the <code>LinkItem</code> that is used for personalization.
32
+ */
31
33
  key: {
32
34
  type: "string"
33
35
  },
36
+ /**
37
+ * Text of the <code>Link</code> that is displayed.
38
+ */
34
39
  text: {
35
40
  type: "string"
36
41
  },
42
+ /**
43
+ * Defines the additional text of the item.
44
+ */
37
45
  description: {
38
46
  type: "string"
39
47
  },
48
+ /**
49
+ * Destination link for a navigation operation in external format (used when opening in new tab).
50
+ */
40
51
  href: {
41
52
  type: "string"
42
53
  },
43
54
  /**
44
- * Destination link for a navigation operation in internal format provided by FLP.
45
- * @protected
55
+ * Destination link for a navigation operation in internal format provided by the SAP Fiori launchpad (used when navigation happens
56
+ * programmatically).
46
57
  */
47
58
  internalHref: {
48
59
  type: "string",
49
60
  defaultValue: null
50
61
  },
62
+ /**
63
+ * Determines the target of the <code>Link</code> and has to be used as the <code>target</code> of an html anchor.
64
+ */
51
65
  target: {
52
66
  type: "string",
53
67
  defaultValue: "_self"
54
68
  },
69
+ /**
70
+ * Defines the icon of the item.
71
+ */
55
72
  icon: {
56
73
  type: "string"
57
74
  },
75
+ /**
76
+ * Determines the initial visibility of the <code>LinkItem</code>. If set to <code>true</code>, the item will appear on the <code>Popover</code>
77
+ * without any personalization.
78
+ */
58
79
  initiallyVisible: {
59
80
  type: "boolean",
60
81
  defaultValue: false
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  * supposed that the properties of the item structure is not changed.
39
39
  * @extends sap.ui.core.Control
40
40
  * @author SAP SE
41
- * @version 1.113.0
41
+ * @version 1.115.0
42
42
  * @constructor
43
43
  * @private
44
44
  * @since 1.54.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for <code>items</code> aggregation in <code>Panel</code> control.
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.54.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.58.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.58.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.113.0
19
+ * @version 1.115.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.60.0
@@ -361,6 +361,9 @@ field.UNIT=Unit
361
361
  #XACT: Label for currency field
362
362
  field.CURRENCY=Currency
363
363
 
364
+ #YMSG: Error message if pasting multiple values leads to error
365
+ field.PASTE_ERROR= At least one pasted value is not valid. Pasting cannot be performed.
366
+
364
367
  #XTIT: valuehelp dialog Title template with two parts. When only one content exist on the valuehelp dialog the content ShortTitle {0} will be displayed together with the title of the dialog {1} e.g. "Select: Customer"
365
368
  valuehelp.DIALOGSHORTTITLECOLONTITLE={0}: {1}
366
369
 
@@ -481,6 +484,9 @@ valuehelp.REMOVEALLTOKEN_ANNOUNCE=all items or conditions removed, you can now s
481
484
  #XACT: ARIA announcement for roledescription attribute of valuehelp tokenizer
482
485
  valuehelp.TOKENIZER_ARIA_ROLE_DESCRIPTION=Multi Token display
483
486
 
487
+ #XTIT: Count information for paging on condition panel
488
+ valuehelp.PAGE_COUNT={0}/{1}
489
+
484
490
  #XFLD:
485
491
  info.POPOVER_FACTSHEET=Display Fact Sheet
486
492
  #XTIT: Heading for user or company contact information on a quick view card
@@ -816,3 +822,6 @@ actiontoolbar.RTA_TITLE=Toolbar Configuration
816
822
  actiontoolbar.RTA_COLUMN_HEADER=Actions
817
823
  # XTOL: Tooltip & text of the add/remove action settings dialog
818
824
  actiontoolbar.RTA_SETTINGS_NAME=Toolbar Actions
825
+
826
+ #XMSG: Message to warn user that the export function is not available due to the missing library
827
+ ERROR_MISSING_EXPORT_LIBRARY=The export function is not available due to the missing sap.ui.export library. The library must be loaded to enable exports.