@openui5/sap.ui.mdc 1.103.0 → 1.105.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 (320) hide show
  1. package/.reuse/dep5 +18 -1
  2. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +5 -0
  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 +3 -3
  7. package/src/sap/ui/mdc/AggregationBaseDelegate.js +1 -1
  8. package/src/sap/ui/mdc/Chart.js +49 -35
  9. package/src/sap/ui/mdc/ChartDelegate.js +2 -2
  10. package/src/sap/ui/mdc/ChartRenderer.js +1 -1
  11. package/src/sap/ui/mdc/Control.js +1 -1
  12. package/src/sap/ui/mdc/Delegate.js +2 -2
  13. package/src/sap/ui/mdc/Element.js +1 -1
  14. package/src/sap/ui/mdc/Field.js +2 -2
  15. package/src/sap/ui/mdc/FilterBar.js +3 -3
  16. package/src/sap/ui/mdc/FilterBarDelegate.js +2 -2
  17. package/src/sap/ui/mdc/FilterField.js +2 -2
  18. package/src/sap/ui/mdc/Link.js +76 -15
  19. package/src/sap/ui/mdc/LinkDelegate.js +83 -78
  20. package/src/sap/ui/mdc/MultiValueField.js +1 -1
  21. package/src/sap/ui/mdc/Table.js +18 -6
  22. package/src/sap/ui/mdc/TableDelegate.js +27 -11
  23. package/src/sap/ui/mdc/ValueHelp.js +7 -7
  24. package/src/sap/ui/mdc/ValueHelpDelegate.js +2 -2
  25. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +3 -3
  26. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarActionRenderer.js +1 -2
  27. package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +70 -0
  28. package/src/sap/ui/mdc/chart/ChartImplementationContainerRenderer.js +49 -0
  29. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +1 -1
  30. package/src/sap/ui/mdc/chart/ChartSettings.js +2 -2
  31. package/src/sap/ui/mdc/chart/ChartToolbar.js +24 -10
  32. package/src/sap/ui/mdc/chart/ChartTypeButton.js +2 -2
  33. package/src/sap/ui/mdc/chart/PropertyHelper.js +3 -3
  34. package/src/sap/ui/mdc/condition/Condition.js +1 -1
  35. package/src/sap/ui/mdc/condition/ConditionConverter.js +1 -1
  36. package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
  37. package/src/sap/ui/mdc/condition/FilterConverter.js +1 -1
  38. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +1 -1
  39. package/src/sap/ui/mdc/condition/Operator.js +1 -1
  40. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +1 -1
  41. package/src/sap/ui/mdc/condition/RangeOperator.js +1 -1
  42. package/src/sap/ui/mdc/designtime/Util.js +2 -2
  43. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbar.designtime.js +15 -4
  44. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbarAction.designtime.js +2 -2
  45. package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +5 -2
  46. package/src/sap/ui/mdc/designtime/field/Field.designtime.js +2 -2
  47. package/src/sap/ui/mdc/designtime/field/FieldBase.designtime.js +2 -2
  48. package/src/sap/ui/mdc/designtime/field/FilterField.designtime.js +2 -2
  49. package/src/sap/ui/mdc/designtime/field/MultiValueField.designtime.js +2 -2
  50. package/src/sap/ui/mdc/designtime/filterbar/FilterBar.designtime.js +4 -3
  51. package/src/sap/ui/mdc/designtime/filterbar/FilterBarBase.designtime.js +2 -2
  52. package/src/sap/ui/mdc/designtime/link/Panel.designtime.js +2 -2
  53. package/src/sap/ui/mdc/designtime/link/PanelItem.designtime.js +2 -2
  54. package/src/sap/ui/mdc/designtime/p13n/PersistenceProvider.designtime.js +2 -2
  55. package/src/sap/ui/mdc/designtime/table/Table.designtime.js +10 -8
  56. package/src/sap/ui/mdc/enum/PropagationReason.js +2 -2
  57. package/src/sap/ui/mdc/enum/SelectType.js +2 -2
  58. package/src/sap/ui/mdc/field/BoolFieldHelp.js +3 -3
  59. package/src/sap/ui/mdc/field/ConditionFieldHelp.js +3 -3
  60. package/src/sap/ui/mdc/field/ConditionType.js +1 -1
  61. package/src/sap/ui/mdc/field/ConditionsType.js +1 -1
  62. package/src/sap/ui/mdc/field/CustomFieldHelp.js +3 -3
  63. package/src/sap/ui/mdc/field/CustomFieldInfo.js +3 -3
  64. package/src/sap/ui/mdc/field/DefineConditionPanel.js +1 -1
  65. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +1 -1
  66. package/src/sap/ui/mdc/field/FieldBase.js +4 -5
  67. package/src/sap/ui/mdc/field/FieldBaseDelegate.js +2 -2
  68. package/src/sap/ui/mdc/field/FieldHelpBase.js +3 -3
  69. package/src/sap/ui/mdc/field/FieldHelpBaseDelegate.js +2 -2
  70. package/src/sap/ui/mdc/field/FieldInfoBase.js +30 -29
  71. package/src/sap/ui/mdc/field/FieldInput.js +3 -3
  72. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
  73. package/src/sap/ui/mdc/field/FieldMultiInput.js +3 -3
  74. package/src/sap/ui/mdc/field/FieldValueHelp.js +3 -3
  75. package/src/sap/ui/mdc/field/FieldValueHelpContentWrapperBase.js +3 -3
  76. package/src/sap/ui/mdc/field/FieldValueHelpDelegate.js +2 -2
  77. package/src/sap/ui/mdc/field/FieldValueHelpMTableWrapper.js +3 -3
  78. package/src/sap/ui/mdc/field/FieldValueHelpMdcTableWrapper.js +3 -3
  79. package/src/sap/ui/mdc/field/FieldValueHelpTableWrapperBase.js +3 -3
  80. package/src/sap/ui/mdc/field/FieldValueHelpUITableWrapper.js +3 -3
  81. package/src/sap/ui/mdc/field/InParameter.js +3 -3
  82. package/src/sap/ui/mdc/field/ListFieldHelp.js +3 -3
  83. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
  84. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +2 -2
  85. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +3 -3
  86. package/src/sap/ui/mdc/field/OutParameter.js +3 -3
  87. package/src/sap/ui/mdc/field/TokenDisplay.js +3 -3
  88. package/src/sap/ui/mdc/field/TokenizerDisplay.js +3 -3
  89. package/src/sap/ui/mdc/field/ValueHelpPanel.js +1 -1
  90. package/src/sap/ui/mdc/field/content/BooleanContent.js +2 -2
  91. package/src/sap/ui/mdc/field/content/ContentFactory.js +8 -0
  92. package/src/sap/ui/mdc/field/content/DateContent.js +10 -2
  93. package/src/sap/ui/mdc/field/content/DateTimeContent.js +2 -2
  94. package/src/sap/ui/mdc/field/content/DefaultContent.js +2 -2
  95. package/src/sap/ui/mdc/field/content/LinkContent.js +2 -2
  96. package/src/sap/ui/mdc/field/content/SearchContent.js +2 -2
  97. package/src/sap/ui/mdc/field/content/TimeContent.js +2 -2
  98. package/src/sap/ui/mdc/field/content/UnitContent.js +2 -2
  99. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +17 -4
  100. package/src/sap/ui/mdc/filterbar/IFilterContainer.js +2 -2
  101. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +4 -4
  102. package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +2 -2
  103. package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +2 -2
  104. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +5 -5
  105. package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +2 -2
  106. package/src/sap/ui/mdc/filterbar/p13n/FilterGroupLayout.js +2 -2
  107. package/src/sap/ui/mdc/filterbar/p13n/GroupContainer.js +2 -2
  108. package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +2 -2
  109. package/src/sap/ui/mdc/filterbar/vh/CollectiveSearchSelect.js +2 -2
  110. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +3 -3
  111. package/src/sap/ui/mdc/filterbar/vh/FilterContainer.js +2 -2
  112. package/src/sap/ui/mdc/flexibility/ActionToolbar.flexibility.js +2 -2
  113. package/src/sap/ui/mdc/flexibility/ActionToolbarAction.flexibility.js +2 -2
  114. package/src/sap/ui/mdc/flexibility/AggregateFlex.js +2 -2
  115. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +3 -3
  116. package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +2 -2
  117. package/src/sap/ui/mdc/flexibility/ChartTypeFlex.js +2 -2
  118. package/src/sap/ui/mdc/flexibility/ColumnFlex.js +2 -2
  119. package/src/sap/ui/mdc/flexibility/ConditionFlex.js +104 -131
  120. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +3 -3
  121. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +3 -3
  122. package/src/sap/ui/mdc/flexibility/GroupFlex.js +2 -2
  123. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +24 -20
  124. package/src/sap/ui/mdc/flexibility/Panel.flexibility.js +4 -5
  125. package/src/sap/ui/mdc/flexibility/PanelItem.flexibility.js +2 -2
  126. package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +2 -2
  127. package/src/sap/ui/mdc/flexibility/SortFlex.js +2 -2
  128. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +2 -2
  129. package/src/sap/ui/mdc/flexibility/Util.js +3 -3
  130. package/src/sap/ui/mdc/flexibility/xConfigFlex.js +2 -2
  131. package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +2 -2
  132. package/src/sap/ui/mdc/library.js +7 -2
  133. package/src/sap/ui/mdc/link/ContactDetails.js +3 -3
  134. package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +3 -3
  135. package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +3 -3
  136. package/src/sap/ui/mdc/link/ContactDetailsItem.js +3 -3
  137. package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +3 -3
  138. package/src/sap/ui/mdc/link/ContactDetailsRenderer.js +2 -2
  139. package/src/sap/ui/mdc/link/Factory.js +3 -3
  140. package/src/sap/ui/mdc/link/FakeFlpConnector.js +1 -1
  141. package/src/sap/ui/mdc/link/LinkItem.js +3 -3
  142. package/src/sap/ui/mdc/link/Log.js +2 -2
  143. package/src/sap/ui/mdc/link/Panel.js +5 -4
  144. package/src/sap/ui/mdc/link/PanelItem.js +3 -3
  145. package/src/sap/ui/mdc/link/PanelRenderer.js +2 -2
  146. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +3 -3
  147. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +3 -3
  148. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +3 -3
  149. package/src/sap/ui/mdc/messagebundle.properties +9 -3
  150. package/src/sap/ui/mdc/messagebundle_ar.properties +5 -2
  151. package/src/sap/ui/mdc/messagebundle_bg.properties +5 -2
  152. package/src/sap/ui/mdc/messagebundle_ca.properties +5 -2
  153. package/src/sap/ui/mdc/messagebundle_cs.properties +8 -5
  154. package/src/sap/ui/mdc/messagebundle_cy.properties +5 -2
  155. package/src/sap/ui/mdc/messagebundle_da.properties +5 -2
  156. package/src/sap/ui/mdc/messagebundle_de.properties +5 -2
  157. package/src/sap/ui/mdc/messagebundle_el.properties +6 -3
  158. package/src/sap/ui/mdc/messagebundle_en.properties +5 -2
  159. package/src/sap/ui/mdc/messagebundle_en_GB.properties +5 -2
  160. package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +5 -2
  161. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +5 -2
  162. package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +5 -2
  163. package/src/sap/ui/mdc/messagebundle_es.properties +5 -2
  164. package/src/sap/ui/mdc/messagebundle_es_MX.properties +5 -2
  165. package/src/sap/ui/mdc/messagebundle_et.properties +5 -2
  166. package/src/sap/ui/mdc/messagebundle_fi.properties +5 -2
  167. package/src/sap/ui/mdc/messagebundle_fr.properties +9 -6
  168. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +5 -2
  169. package/src/sap/ui/mdc/messagebundle_hi.properties +5 -2
  170. package/src/sap/ui/mdc/messagebundle_hr.properties +8 -5
  171. package/src/sap/ui/mdc/messagebundle_hu.properties +6 -3
  172. package/src/sap/ui/mdc/messagebundle_id.properties +5 -2
  173. package/src/sap/ui/mdc/messagebundle_it.properties +49 -46
  174. package/src/sap/ui/mdc/messagebundle_iw.properties +6 -3
  175. package/src/sap/ui/mdc/messagebundle_ja.properties +5 -2
  176. package/src/sap/ui/mdc/messagebundle_kk.properties +5 -2
  177. package/src/sap/ui/mdc/messagebundle_ko.properties +8 -5
  178. package/src/sap/ui/mdc/messagebundle_lt.properties +5 -2
  179. package/src/sap/ui/mdc/messagebundle_lv.properties +5 -2
  180. package/src/sap/ui/mdc/messagebundle_ms.properties +5 -2
  181. package/src/sap/ui/mdc/messagebundle_nl.properties +5 -2
  182. package/src/sap/ui/mdc/messagebundle_no.properties +6 -3
  183. package/src/sap/ui/mdc/messagebundle_pl.properties +5 -2
  184. package/src/sap/ui/mdc/messagebundle_pt.properties +6 -3
  185. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +5 -2
  186. package/src/sap/ui/mdc/messagebundle_ro.properties +5 -2
  187. package/src/sap/ui/mdc/messagebundle_ru.properties +5 -2
  188. package/src/sap/ui/mdc/messagebundle_sh.properties +5 -2
  189. package/src/sap/ui/mdc/messagebundle_sk.properties +5 -2
  190. package/src/sap/ui/mdc/messagebundle_sl.properties +5 -2
  191. package/src/sap/ui/mdc/messagebundle_sv.properties +5 -2
  192. package/src/sap/ui/mdc/messagebundle_th.properties +14 -11
  193. package/src/sap/ui/mdc/messagebundle_tr.properties +5 -2
  194. package/src/sap/ui/mdc/messagebundle_uk.properties +6 -3
  195. package/src/sap/ui/mdc/messagebundle_vi.properties +5 -2
  196. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +6 -3
  197. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +5 -2
  198. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +1 -1
  199. package/src/sap/ui/mdc/mixin/DelegateMixin.js +1 -1
  200. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +1 -1
  201. package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
  202. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +1 -1
  203. package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +2 -2
  204. package/src/sap/ui/mdc/odata/v4/ChartPropertyHelper.js +3 -3
  205. package/src/sap/ui/mdc/odata/v4/FieldBaseDelegate.js +2 -2
  206. package/src/sap/ui/mdc/odata/v4/FieldValueHelpDelegate.js +2 -2
  207. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +63 -39
  208. package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +2 -2
  209. package/src/sap/ui/mdc/odata/v4/util/DelegateUtil.js +2 -2
  210. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +61 -229
  211. package/src/sap/ui/mdc/p13n/AdaptationProvider.js +3 -3
  212. package/src/sap/ui/mdc/p13n/Engine.js +3 -3
  213. package/src/sap/ui/mdc/p13n/FlexUtil.js +4 -4
  214. package/src/sap/ui/mdc/p13n/P13nBuilder.js +81 -6
  215. package/src/sap/ui/mdc/p13n/PersistenceProvider.js +26 -4
  216. package/src/sap/ui/mdc/p13n/PropertyHelper.js +3 -3
  217. package/src/sap/ui/mdc/p13n/StateUtil.js +4 -4
  218. package/src/sap/ui/mdc/p13n/UIManager.js +3 -3
  219. package/src/sap/ui/mdc/p13n/modification/FlexModificationHandler.js +3 -3
  220. package/src/sap/ui/mdc/p13n/modification/ModificationHandler.js +3 -3
  221. package/src/sap/ui/mdc/p13n/modules/DefaultProviderRegistry.js +31 -11
  222. package/src/sap/ui/mdc/p13n/modules/StateHandlerRegistry.js +2 -2
  223. package/src/sap/ui/mdc/p13n/panels/ActionToolbarPanel.js +2 -2
  224. package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +3 -9
  225. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +39 -12
  226. package/src/sap/ui/mdc/p13n/panels/FilterPanel.js +2 -2
  227. package/src/sap/ui/mdc/p13n/panels/GroupView.js +2 -2
  228. package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +2 -2
  229. package/src/sap/ui/mdc/p13n/subcontroller/ActionToolbarController.js +2 -2
  230. package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +2 -2
  231. package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +2 -2
  232. package/src/sap/ui/mdc/p13n/subcontroller/BaseController.js +3 -3
  233. package/src/sap/ui/mdc/p13n/subcontroller/ChartItemController.js +2 -2
  234. package/src/sap/ui/mdc/p13n/subcontroller/ChartTypeController.js +2 -2
  235. package/src/sap/ui/mdc/p13n/subcontroller/ColumnController.js +2 -2
  236. package/src/sap/ui/mdc/p13n/subcontroller/ColumnWidthController.js +2 -2
  237. package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +4 -5
  238. package/src/sap/ui/mdc/p13n/subcontroller/GroupController.js +2 -2
  239. package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +4 -3
  240. package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +2 -2
  241. package/src/sap/ui/mdc/table/Column.js +29 -3
  242. package/src/sap/ui/mdc/table/CreationRow.js +3 -3
  243. package/src/sap/ui/mdc/table/GridTableType.js +7 -2
  244. package/src/sap/ui/mdc/table/PropertyHelper.js +29 -34
  245. package/src/sap/ui/mdc/table/ResponsiveTableType.js +4 -3
  246. package/src/sap/ui/mdc/table/RowActionItem.js +1 -1
  247. package/src/sap/ui/mdc/table/RowSettings.js +1 -1
  248. package/src/sap/ui/mdc/table/TableSettings.js +2 -2
  249. package/src/sap/ui/mdc/table/TableTypeBase.js +5 -2
  250. package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +4 -9
  251. package/src/sap/ui/mdc/table/menu/Item.js +3 -3
  252. package/src/sap/ui/mdc/table/menu/QuickActionContainer.js +34 -0
  253. package/src/sap/ui/mdc/themes/base/Chart.less +28 -0
  254. package/src/sap/ui/mdc/themes/base/InfoPanel.less +0 -1
  255. package/src/sap/ui/mdc/util/Common.js +2 -2
  256. package/src/sap/ui/mdc/util/FilterUtil.js +2 -2
  257. package/src/sap/ui/mdc/util/FormatUtil.js +2 -2
  258. package/src/sap/ui/mdc/util/IdentifierUtil.js +2 -2
  259. package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
  260. package/src/sap/ui/mdc/util/PropertyHelper.js +59 -55
  261. package/src/sap/ui/mdc/valuehelp/Dialog.js +5 -3
  262. package/src/sap/ui/mdc/valuehelp/Popover.js +36 -8
  263. package/src/sap/ui/mdc/valuehelp/base/Container.js +7 -7
  264. package/src/sap/ui/mdc/valuehelp/base/Content.js +7 -7
  265. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +3 -3
  266. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +3 -3
  267. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +3 -3
  268. package/src/sap/ui/mdc/valuehelp/content/Bool.js +3 -3
  269. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +3 -3
  270. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +3 -3
  271. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +27 -5
  272. package/src/sap/ui/mdc/valuehelp/content/MTable.js +4 -4
  273. package/test/sap/ui/mdc/testutils/opa/JSDocGeneration.md +18 -0
  274. package/test/sap/ui/mdc/testutils/opa/TestLibrary.js +3 -1
  275. package/test/sap/ui/mdc/testutils/opa/Util.js +42 -0
  276. package/test/sap/ui/mdc/testutils/opa/Utils.js +22 -0
  277. package/test/sap/ui/mdc/testutils/opa/chart/ActionsBase.js +1 -1
  278. package/test/sap/ui/mdc/testutils/opa/chart/JSDoc.md +482 -0
  279. package/test/sap/ui/mdc/testutils/opa/chart/TestObjects.js +379 -267
  280. package/test/sap/ui/mdc/testutils/opa/field/Actions.js +50 -0
  281. package/test/sap/ui/mdc/testutils/opa/field/Assertions.js +41 -0
  282. package/test/sap/ui/mdc/testutils/opa/field/JSDoc.md +37 -0
  283. package/test/sap/ui/mdc/testutils/opa/field/TestObjects.js +52 -0
  284. package/test/sap/ui/mdc/testutils/opa/field/waitForField.js +36 -0
  285. package/test/sap/ui/mdc/testutils/opa/field/waitForFieldValueHelpButton.js +42 -0
  286. package/test/sap/ui/mdc/testutils/opa/filterbar/Actions.js +31 -7
  287. package/test/sap/ui/mdc/testutils/opa/filterbar/Assertions.js +53 -7
  288. package/test/sap/ui/mdc/testutils/opa/filterbar/JSDoc.md +188 -0
  289. package/test/sap/ui/mdc/testutils/opa/filterbar/TestObjects.js +100 -34
  290. package/test/sap/ui/mdc/testutils/opa/filterbar/Util.js +3 -3
  291. package/test/sap/ui/mdc/testutils/opa/filterbar/waitForAdaptFiltersButton.js +47 -0
  292. package/test/sap/ui/mdc/testutils/opa/filterbar/waitForFilterBar.js +28 -0
  293. package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +70 -0
  294. package/test/sap/ui/mdc/testutils/opa/filterfield/Assertions.js +87 -0
  295. package/test/sap/ui/mdc/testutils/opa/filterfield/JSDoc.md +63 -0
  296. package/test/sap/ui/mdc/testutils/opa/filterfield/TestObjects.js +71 -0
  297. package/test/sap/ui/mdc/testutils/opa/filterfield/waitForFilterField.js +36 -0
  298. package/test/sap/ui/mdc/testutils/opa/filterfield/waitForFilterFieldValueHelpButton.js +42 -0
  299. package/test/sap/ui/mdc/testutils/opa/link/JSDoc.md +136 -0
  300. package/test/sap/ui/mdc/testutils/opa/link/TestObjects.js +108 -91
  301. package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +26 -16
  302. package/test/sap/ui/mdc/testutils/opa/p13n/Assertions.js +293 -2
  303. package/test/sap/ui/mdc/testutils/opa/p13n/Util.js +4 -3
  304. package/test/sap/ui/mdc/testutils/opa/table/Actions.js +190 -6
  305. package/test/sap/ui/mdc/testutils/opa/table/Assertions.js +210 -0
  306. package/test/sap/ui/mdc/testutils/opa/table/JSDoc.md +256 -0
  307. package/test/sap/ui/mdc/testutils/opa/table/TestObjects.js +179 -12
  308. package/test/sap/ui/mdc/testutils/opa/table/Util.js +20 -0
  309. package/test/sap/ui/mdc/testutils/opa/table/waitForColumnHeader.js +44 -0
  310. package/test/sap/ui/mdc/testutils/opa/table/waitForListItemInDialogWithLabel.js +55 -0
  311. package/test/sap/ui/mdc/testutils/opa/table/waitForP13nButtonWithParentAndIcon.js +42 -0
  312. package/test/sap/ui/mdc/testutils/opa/table/waitForTable.js +26 -0
  313. package/test/sap/ui/mdc/testutils/opa/valueHelp/JSDoc.md +35 -0
  314. package/test/sap/ui/mdc/testutils/opa/valueHelp/TestObjects.js +7 -0
  315. package/test/sap/ui/mdc/testutils/opa/valueHelp/Util.js +3 -3
  316. package/ui5.yaml +4 -1
  317. package/src/sap/ui/mdc/odata/json/FilterBarDelegate.js +0 -155
  318. package/src/sap/ui/mdc/odata/v4/FilterBarDelegate.js +0 -750
  319. package/test/sap/ui/mdc/testutils/opa/chart/ChartNew.js +0 -24
  320. package/test/sap/ui/mdc/testutils/opa/chartNew/TestObjects.js +0 -288
@@ -0,0 +1,482 @@
1
+ ## Objects
2
+
3
+ <dl>
4
+ <dt><a href="#onTheMDCChart">onTheMDCChart</a> : <code>object</code></dt>
5
+ <dd></dd>
6
+ </dl>
7
+
8
+ ## Typedefs
9
+
10
+ <dl>
11
+ <dt><a href="#ChartPersonalizationConfiguration">ChartPersonalizationConfiguration</a> : <code>object</code></dt>
12
+ <dd></dd>
13
+ <dt><a href="#FilterPersonalizationConfiguration">FilterPersonalizationConfiguration</a> : <code>object</code></dt>
14
+ <dd></dd>
15
+ <dt><a href="#SortPersonalizationConfiguration">SortPersonalizationConfiguration</a> : <code>object</code></dt>
16
+ <dd></dd>
17
+ </dl>
18
+
19
+ <a name="onTheMDCChart"></a>
20
+
21
+ ## onTheMDCChart : <code>object</code>
22
+ **Kind**: global namespace
23
+
24
+ * [onTheMDCChart](#onTheMDCChart) : <code>object</code>
25
+ * [.iPersonalizeChart(oChart, aConfigurations)](#onTheMDCChart.iPersonalizeChart) ⇒ <code>Promise</code>
26
+ * [.iPersonalizeFilter(oControl, aSettings, bCancel)](#onTheMDCChart.iPersonalizeFilter) ⇒ <code>Promise</code>
27
+ * [.iPersonalizeSort(oChart, aConfigurations)](#onTheMDCChart.iPersonalizeSort) ⇒ <code>Promise</code>
28
+ * [.iResetThePersonalization(oChart)](#onTheMDCChart.iResetThePersonalization) ⇒ <code>Promise</code>
29
+ * [.iClickOnZoomIn(sId)](#onTheMDCChart.iClickOnZoomIn) ⇒ <code>Promise</code>
30
+ * [.iClickOnZoomOut(sId)](#onTheMDCChart.iClickOnZoomOut) ⇒ <code>Promise</code>
31
+ * [.iClickOnTheLegendToggleButton(sId)](#onTheMDCChart.iClickOnTheLegendToggleButton) ⇒ <code>Promise</code>
32
+ * [.iClickOnTheSelectionDetailsButton(sId)](#onTheMDCChart.iClickOnTheSelectionDetailsButton) ⇒ <code>Promise</code>
33
+ * [.iClickOnTheDrillDownButton(sId)](#onTheMDCChart.iClickOnTheDrillDownButton) ⇒ <code>Promise</code>
34
+ * [.iClickOnTheChartTypeButton(sId)](#onTheMDCChart.iClickOnTheChartTypeButton) ⇒ <code>Promise</code>
35
+ * [.iClickOnThePersonalisationButton(sId)](#onTheMDCChart.iClickOnThePersonalisationButton) ⇒ <code>Promise</code>
36
+ * [.iSelectChartTypeInPopover(sChartTypeName)](#onTheMDCChart.iSelectChartTypeInPopover) ⇒ <code>Promise</code>
37
+ * [.iClickOnTheBreadcrumbWithName(sName, sId)](#onTheMDCChart.iClickOnTheBreadcrumbWithName) ⇒ <code>Promise</code>
38
+ * [.iSelectANewDrillDimensionInPopover(sDrillName)](#onTheMDCChart.iSelectANewDrillDimensionInPopover) ⇒ <code>Promise</code>
39
+ * [.iSelectTheDatapoint(aDataPoints, sId)](#onTheMDCChart.iSelectTheDatapoint) ⇒ <code>Promise</code>
40
+ * [.iSelectTheCategories(oCategories, sId)](#onTheMDCChart.iSelectTheCategories) ⇒ <code>Promise</code>
41
+ * [.iDrillDownInDimension(sId, sDrillName)](#onTheMDCChart.iDrillDownInDimension) ⇒ <code>Promise</code>
42
+ * [.iSelectAChartType(sId, sChartTypeName)](#onTheMDCChart.iSelectAChartType) ⇒ <code>Promise</code>
43
+ * [.iShouldSeeAChart()](#onTheMDCChart.iShouldSeeAChart) ⇒ <code>Promise</code>
44
+ * [.iShouldSeeALegend(sId)](#onTheMDCChart.iShouldSeeALegend) ⇒ <code>Promise</code>
45
+ * [.iShouldSeeNoLegend(sId)](#onTheMDCChart.iShouldSeeNoLegend) ⇒ <code>Promise</code>
46
+ * [.iShouldSeeAChartTypePopover()](#onTheMDCChart.iShouldSeeAChartTypePopover) ⇒ <code>Promise</code>
47
+ * [.iShouldSeeTheChartWithChartType(sChartId, sChartType)](#onTheMDCChart.iShouldSeeTheChartWithChartType) ⇒ <code>Promise</code>
48
+ * [.iShouldSeeTheDrillStack(aCheckDrillStack, sChartId)](#onTheMDCChart.iShouldSeeTheDrillStack) ⇒ <code>Promise</code>
49
+ * [.iShouldSeeADrillDownPopover()](#onTheMDCChart.iShouldSeeADrillDownPopover) ⇒ <code>Promise</code>
50
+ * [.iShouldSeeADetailsPopover()](#onTheMDCChart.iShouldSeeADetailsPopover) ⇒ <code>Promise</code>
51
+ * [.iShouldSeeVisibleDimensionsInOrder(aDimensions, sId)](#onTheMDCChart.iShouldSeeVisibleDimensionsInOrder) ⇒ <code>Promise</code>
52
+ * [.iShouldSeeVisibleMeasuresInOrder(aMeasures, sId)](#onTheMDCChart.iShouldSeeVisibleMeasuresInOrder) ⇒ <code>Promise</code>
53
+ * [.iCheckFilterPersonalization(oControl, aConfigurations, fnOpenThePersonalizationDialog)](#onTheMDCChart.iCheckFilterPersonalization) ⇒ <code>Promise</code>
54
+ * [.iCheckAvailableFilters(oControl, aFilters)](#onTheMDCChart.iCheckAvailableFilters) ⇒ <code>Promise</code>
55
+
56
+ <a name="onTheMDCChart.iPersonalizeChart"></a>
57
+
58
+ ### onTheMDCChart.iPersonalizeChart(oChart, aConfigurations) ⇒ <code>Promise</code>
59
+ OPA5 test action
60
+
61
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
62
+ **Returns**: <code>Promise</code> - OPA waitFor
63
+ 1. Opens the personalization dialog of a given <code>sap.ui.mdc.Chart</code>.
64
+ 2. Selects a chart type given by <code>sChartType</code>.
65
+ 3. Executes the given <code>ChartPersonalizationConfigurations</code>.
66
+ 4. Closes the personalization dialog.
67
+
68
+ | Param | Type | Description |
69
+ | --- | --- | --- |
70
+ | oChart | <code>sap.ui.core.Control</code> \| <code>string</code> | Instance / ID of the <code>MDCChart</code> that is personalized |
71
+ | aConfigurations | [<code>Array.&lt;ChartPersonalizationConfiguration&gt;</code>](#ChartPersonalizationConfiguration) | Array containing the chart personalization configuration objects |
72
+
73
+ <a name="onTheMDCChart.iPersonalizeFilter"></a>
74
+
75
+ ### onTheMDCChart.iPersonalizeFilter(oControl, aSettings, bCancel) ⇒ <code>Promise</code>
76
+ OPA5 test action
77
+ 1. Opens the personalization dialog of a given chart.
78
+ 2. Executes the given <code>FilterPersonalizationConfiguration</code>.
79
+ 3. Closes the personalization dialog.
80
+
81
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
82
+ **Returns**: <code>Promise</code> - OPA waitFor
83
+ **Access**: public
84
+
85
+ | Param | Type | Description |
86
+ | --- | --- | --- |
87
+ | oControl | <code>sap.ui.core.Control</code> \| <code>string</code> | Instance / ID of the <code>Control</code> that is filtered |
88
+ | aSettings | [<code>Array.&lt;FilterPersonalizationConfiguration&gt;</code>](#FilterPersonalizationConfiguration) | Array containing the filter personalization configuration objects |
89
+ | bCancel | <code>boolean</code> | Cancel the personalization dialog after the configuration has been done instead of confirming it |
90
+
91
+ <a name="onTheMDCChart.iPersonalizeSort"></a>
92
+
93
+ ### onTheMDCChart.iPersonalizeSort(oChart, aConfigurations) ⇒ <code>Promise</code>
94
+ OPA5 test action
95
+
96
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
97
+ **Returns**: <code>Promise</code> - OPA waitFor
98
+ 1. Opens the personalization dialog of a given chart.
99
+ 2. Executes the given <code>SortPersonalizationConfiguration</code>.
100
+ 3. Closes the personalization dialog.
101
+
102
+ | Param | Type | Description |
103
+ | --- | --- | --- |
104
+ | oChart | <code>sap.ui.core.Control</code> \| <code>string</code> | Instance / ID of the <code>MDCChart</code> that is sorted |
105
+ | aConfigurations | [<code>Array.&lt;SortPersonalizationConfiguration&gt;</code>](#SortPersonalizationConfiguration) | Array containing the sort personalization configuration objects |
106
+
107
+ <a name="onTheMDCChart.iResetThePersonalization"></a>
108
+
109
+ ### onTheMDCChart.iResetThePersonalization(oChart) ⇒ <code>Promise</code>
110
+ Opa5 test action
111
+
112
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
113
+ **Returns**: <code>Promise</code> - OPA waitFor
114
+ 1. Opens the personalization dialog of a given chart.
115
+ 2. Presses the Reset personalization button.
116
+ 3. Confirms the Reset dialog.
117
+ 4. Closes the personalization dialog.
118
+
119
+ | Param | Type | Description |
120
+ | --- | --- | --- |
121
+ | oChart | <code>sap.ui.core.Control</code> \| <code>string</code> | Instance / ID of the <code>MDCChart</code> that is reset |
122
+
123
+ <a name="onTheMDCChart.iClickOnZoomIn"></a>
124
+
125
+ ### onTheMDCChart.iClickOnZoomIn(sId) ⇒ <code>Promise</code>
126
+ OPA5 test action
127
+ Presses the "Zoom In" button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
128
+
129
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
130
+ **Returns**: <code>Promise</code> - OPA waitFor
131
+
132
+ | Param | Type | Description |
133
+ | --- | --- | --- |
134
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
135
+
136
+ <a name="onTheMDCChart.iClickOnZoomOut"></a>
137
+
138
+ ### onTheMDCChart.iClickOnZoomOut(sId) ⇒ <code>Promise</code>
139
+ OPA5 test action
140
+ Presses the "Zoom Out" button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
141
+
142
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
143
+ **Returns**: <code>Promise</code> - OPA waitFor
144
+
145
+ | Param | Type | Description |
146
+ | --- | --- | --- |
147
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
148
+
149
+ <a name="onTheMDCChart.iClickOnTheLegendToggleButton"></a>
150
+
151
+ ### onTheMDCChart.iClickOnTheLegendToggleButton(sId) ⇒ <code>Promise</code>
152
+ OPA5 test action
153
+ Presses the "Show Legend" toggle button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
154
+
155
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
156
+ **Returns**: <code>Promise</code> - OPA waitFor
157
+
158
+ | Param | Type | Description |
159
+ | --- | --- | --- |
160
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
161
+
162
+ <a name="onTheMDCChart.iClickOnTheSelectionDetailsButton"></a>
163
+
164
+ ### onTheMDCChart.iClickOnTheSelectionDetailsButton(sId) ⇒ <code>Promise</code>
165
+ OPA5 test action
166
+ Presses the "Show Details" button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
167
+
168
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
169
+ **Returns**: <code>Promise</code> - OPA waitFor
170
+
171
+ | Param | Type | Description |
172
+ | --- | --- | --- |
173
+ | sId | <code>\*</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
174
+
175
+ <a name="onTheMDCChart.iClickOnTheDrillDownButton"></a>
176
+
177
+ ### onTheMDCChart.iClickOnTheDrillDownButton(sId) ⇒ <code>Promise</code>
178
+ OPA5 test action
179
+ Presses the "Drilldown" button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
180
+
181
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
182
+ **Returns**: <code>Promise</code> - OPA waitFor
183
+
184
+ | Param | Type | Description |
185
+ | --- | --- | --- |
186
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
187
+
188
+ <a name="onTheMDCChart.iClickOnTheChartTypeButton"></a>
189
+
190
+ ### onTheMDCChart.iClickOnTheChartTypeButton(sId) ⇒ <code>Promise</code>
191
+ OPA5 test action
192
+ Presses the "Chart Type" button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
193
+
194
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
195
+ **Returns**: <code>Promise</code> - OPA waitFor
196
+
197
+ | Param | Type | Description |
198
+ | --- | --- | --- |
199
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
200
+
201
+ <a name="onTheMDCChart.iClickOnThePersonalisationButton"></a>
202
+
203
+ ### onTheMDCChart.iClickOnThePersonalisationButton(sId) ⇒ <code>Promise</code>
204
+ OPA5 test action
205
+ Presses the "Personalization" button in the toolbar of a <code>sap.ui.mdc.Chart</code>.
206
+
207
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
208
+ **Returns**: <code>Promise</code> - OPA waitFor
209
+
210
+ | Param | Type | Description |
211
+ | --- | --- | --- |
212
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
213
+
214
+ <a name="onTheMDCChart.iSelectChartTypeInPopover"></a>
215
+
216
+ ### onTheMDCChart.iSelectChartTypeInPopover(sChartTypeName) ⇒ <code>Promise</code>
217
+ OPA5 test action
218
+ Selects a specific chart type for a <code>sap.ui.mdc.Chart</code> in an open chart type popover.
219
+
220
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
221
+ **Returns**: <code>Promise</code> - OPA waitFor
222
+
223
+ | Param | Type | Description |
224
+ | --- | --- | --- |
225
+ | sChartTypeName | <code>string</code> | The name of the chart type |
226
+
227
+ <a name="onTheMDCChart.iClickOnTheBreadcrumbWithName"></a>
228
+
229
+ ### onTheMDCChart.iClickOnTheBreadcrumbWithName(sName, sId) ⇒ <code>Promise</code>
230
+ OPA5 test action
231
+ Presses an drill-down breadcrumb with a given name for a given <code>sap.ui.mdc.Chart</code>.
232
+
233
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
234
+ **Returns**: <code>Promise</code> - OPA waitFor
235
+
236
+ | Param | Type | Description |
237
+ | --- | --- | --- |
238
+ | sName | <code>string</code> | The name of the breadcrumbs |
239
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
240
+
241
+ <a name="onTheMDCChart.iSelectANewDrillDimensionInPopover"></a>
242
+
243
+ ### onTheMDCChart.iSelectANewDrillDimensionInPopover(sDrillName) ⇒ <code>Promise</code>
244
+ OPA5 test action
245
+ Selects a specific dimension to drill-down for a <code>sap.ui.mdc.Chart</code> in an open chart drill-down popover.
246
+
247
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
248
+ **Returns**: <code>Promise</code> - OPA waitFor
249
+
250
+ | Param | Type | Description |
251
+ | --- | --- | --- |
252
+ | sDrillName | <code>string</code> | Name of the dimension to which a drill-down takes place |
253
+
254
+ <a name="onTheMDCChart.iSelectTheDatapoint"></a>
255
+
256
+ ### onTheMDCChart.iSelectTheDatapoint(aDataPoints, sId) ⇒ <code>Promise</code>
257
+ OPA5 test action
258
+ Selects given data points on a given <code>sap.ui.mdc.Chart</code>.
259
+
260
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
261
+ **Returns**: <code>Promise</code> - OPA waitFor
262
+
263
+ | Param | Type | Description |
264
+ | --- | --- | --- |
265
+ | aDataPoints | <code>array</code> | Data point objects to select |
266
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
267
+
268
+ <a name="onTheMDCChart.iSelectTheCategories"></a>
269
+
270
+ ### onTheMDCChart.iSelectTheCategories(oCategories, sId) ⇒ <code>Promise</code>
271
+ OPA5 test action
272
+ Selects given categories (dimensions) for the given <code>sap.ui.mdc.Chart</code>.
273
+
274
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
275
+ **Returns**: <code>Promise</code> - OPA waitFor
276
+
277
+ | Param | Type | Description |
278
+ | --- | --- | --- |
279
+ | oCategories | <code>object</code> | Categories to select |
280
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
281
+
282
+ <a name="onTheMDCChart.iDrillDownInDimension"></a>
283
+
284
+ ### onTheMDCChart.iDrillDownInDimension(sId, sDrillName) ⇒ <code>Promise</code>
285
+ OPA5 test action
286
+ Performs a drill-down on the <code>sap.ui.mdc.Chart</code>
287
+
288
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
289
+ **Returns**: <code>Promise</code> - OPA waitFor
290
+
291
+ | Param | Type | Description |
292
+ | --- | --- | --- |
293
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
294
+ | sDrillName | <code>string</code> | Name of the dimension to which a drill-down takes place |
295
+
296
+ <a name="onTheMDCChart.iSelectAChartType"></a>
297
+
298
+ ### onTheMDCChart.iSelectAChartType(sId, sChartTypeName) ⇒ <code>Promise</code>
299
+ OPA5 test action
300
+ Performs a drill-down on the <code>sap.ui.mdc.Chart</code>
301
+
302
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
303
+ **Returns**: <code>Promise</code> - OPA waitFor
304
+
305
+ | Param | Type | Description |
306
+ | --- | --- | --- |
307
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
308
+ | sChartTypeName | <code>string</code> | Name of the chart type which is to be selected |
309
+
310
+ <a name="onTheMDCChart.iShouldSeeAChart"></a>
311
+
312
+ ### onTheMDCChart.iShouldSeeAChart() ⇒ <code>Promise</code>
313
+ OPA5 assertion
314
+ Assertion to check that there is a <code>sap.ui.mdc.Chart</code> visible on the screen.
315
+
316
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
317
+ **Returns**: <code>Promise</code> - OPA waitFor
318
+ <a name="onTheMDCChart.iShouldSeeALegend"></a>
319
+
320
+ ### onTheMDCChart.iShouldSeeALegend(sId) ⇒ <code>Promise</code>
321
+ Assertion to check that there is a legend visible on the screen for a given <code>sap.ui.mdc.Chart</code>.
322
+
323
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
324
+ **Returns**: <code>Promise</code> - OPA waitFor
325
+
326
+ | Param | Type | Description |
327
+ | --- | --- | --- |
328
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> to be checked for a visible legend |
329
+
330
+ <a name="onTheMDCChart.iShouldSeeNoLegend"></a>
331
+
332
+ ### onTheMDCChart.iShouldSeeNoLegend(sId) ⇒ <code>Promise</code>
333
+ Assertion to check that there is no legend visible on the screen for a given <code>sap.ui.mdc.Chart</code>.
334
+
335
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
336
+ **Returns**: <code>Promise</code> - OPA waitFor
337
+
338
+ | Param | Type | Description |
339
+ | --- | --- | --- |
340
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> to be checked for a visible legend |
341
+
342
+ <a name="onTheMDCChart.iShouldSeeAChartTypePopover"></a>
343
+
344
+ ### onTheMDCChart.iShouldSeeAChartTypePopover() ⇒ <code>Promise</code>
345
+ Assertion to check that there is a chart type popover visible on the screen.
346
+
347
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
348
+ **Returns**: <code>Promise</code> - OPA waitFor
349
+ <a name="onTheMDCChart.iShouldSeeTheChartWithChartType"></a>
350
+
351
+ ### onTheMDCChart.iShouldSeeTheChartWithChartType(sChartId, sChartType) ⇒ <code>Promise</code>
352
+ Assertion to check that there is a <code>sap.ui.mdc.Chart</code> visible with a given chart type.
353
+
354
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
355
+ **Returns**: <code>Promise</code> - OPA waitFor
356
+
357
+ | Param | Type | Description |
358
+ | --- | --- | --- |
359
+ | sChartId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> to be checked for a chart type |
360
+ | sChartType | <code>string</code> | Chart type which is selected for the given chart |
361
+
362
+ <a name="onTheMDCChart.iShouldSeeTheDrillStack"></a>
363
+
364
+ ### onTheMDCChart.iShouldSeeTheDrillStack(aCheckDrillStack, sChartId) ⇒ <code>Promise</code>
365
+ Assertion to check that there is a chart with a given drillstack visible.
366
+
367
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
368
+ **Returns**: <code>Promise</code> - OPA waitFor
369
+
370
+ | Param | Type | Description |
371
+ | --- | --- | --- |
372
+ | aCheckDrillStack | <code>array</code> | Drillstack to check for |
373
+ | sChartId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
374
+
375
+ <a name="onTheMDCChart.iShouldSeeADrillDownPopover"></a>
376
+
377
+ ### onTheMDCChart.iShouldSeeADrillDownPopover() ⇒ <code>Promise</code>
378
+ Assertion to check that there is a drilldown popover visible.
379
+
380
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
381
+ **Returns**: <code>Promise</code> - OPA waitFor
382
+ <a name="onTheMDCChart.iShouldSeeADetailsPopover"></a>
383
+
384
+ ### onTheMDCChart.iShouldSeeADetailsPopover() ⇒ <code>Promise</code>
385
+ Assertion to check that there is a details popover visible.
386
+
387
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
388
+ **Returns**: <code>Promise</code> - OPA waitFor
389
+ <a name="onTheMDCChart.iShouldSeeVisibleDimensionsInOrder"></a>
390
+
391
+ ### onTheMDCChart.iShouldSeeVisibleDimensionsInOrder(aDimensions, sId) ⇒ <code>Promise</code>
392
+ Assertion to check visible dimensions on the <code>sap.ui.mdc.Chart</code>.
393
+
394
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
395
+ **Returns**: <code>Promise</code> - OPA waitFor
396
+
397
+ | Param | Type | Description |
398
+ | --- | --- | --- |
399
+ | aDimensions | <code>Array.&lt;string&gt;</code> | Array containing the expected dimensions |
400
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
401
+
402
+ <a name="onTheMDCChart.iShouldSeeVisibleMeasuresInOrder"></a>
403
+
404
+ ### onTheMDCChart.iShouldSeeVisibleMeasuresInOrder(aMeasures, sId) ⇒ <code>Promise</code>
405
+ Assertion to check visible measures on the <code>sap.ui.mdc.Chart</code>.
406
+
407
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
408
+ **Returns**: <code>Promise</code> - OPA waitFor
409
+
410
+ | Param | Type | Description |
411
+ | --- | --- | --- |
412
+ | aMeasures | <code>Array.&lt;string&gt;</code> | Array containing the expected measures |
413
+ | sId | <code>string</code> | The ID of the <code>sap.ui.mdc.Chart</code> |
414
+
415
+ <a name="onTheMDCChart.iCheckFilterPersonalization"></a>
416
+
417
+ ### onTheMDCChart.iCheckFilterPersonalization(oControl, aConfigurations, fnOpenThePersonalizationDialog) ⇒ <code>Promise</code>
418
+ OPA5 test assertion
419
+ 1. Opens the personalization dialog of a given chart.
420
+ 2. Executes the given <code>FilterPersonalizationConfiguration</code>.
421
+ 3. Closes the personalization dialog.
422
+
423
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
424
+ **Returns**: <code>Promise</code> - OPA waitFor
425
+
426
+ | Param | Type | Description |
427
+ | --- | --- | --- |
428
+ | oControl | <code>sap.ui.core.Control</code> \| <code>string</code> | Instance / ID of the <code>Control</code> that is filtered |
429
+ | aConfigurations | [<code>Array.&lt;FilterPersonalizationConfiguration&gt;</code>](#FilterPersonalizationConfiguration) | Array containing the filter personalization configuration objects |
430
+ | fnOpenThePersonalizationDialog | <code>function</code> | a function which opens the personalization dialog of the given control |
431
+
432
+ <a name="onTheMDCChart.iCheckAvailableFilters"></a>
433
+
434
+ ### onTheMDCChart.iCheckAvailableFilters(oControl, aFilters) ⇒ <code>Promise</code>
435
+ OPA5 test assertion
436
+ 1. Opens the personalization dialog of a given table.
437
+ 2. Checks the availability of the provided filter texts (by opening and comparing the available items in the ComboBox)
438
+ 3. Closes the personalization dialog.
439
+
440
+ **Kind**: static method of [<code>onTheMDCChart</code>](#onTheMDCChart)
441
+ **Returns**: <code>Promise</code> - OPA waitFor
442
+
443
+ | Param | Type | Description |
444
+ | --- | --- | --- |
445
+ | oControl | <code>sap.ui.core.Control</code> \| <code>string</code> | Instance / ID of the <code>Control</code> that is filtered |
446
+ | aFilters | <code>Array.&lt;string&gt;</code> | Array containing the names of selectable filters |
447
+
448
+ <a name="ChartPersonalizationConfiguration"></a>
449
+
450
+ ## ChartPersonalizationConfiguration : <code>object</code>
451
+ **Kind**: global typedef
452
+ **Properties**
453
+
454
+ | Name | Type | Description |
455
+ | --- | --- | --- |
456
+ | key | <code>string</code> | Key of the value that is the result of the personalization |
457
+ | role | <code>string</code> | Role of the given value |
458
+
459
+ <a name="FilterPersonalizationConfiguration"></a>
460
+
461
+ ## FilterPersonalizationConfiguration : <code>object</code>
462
+ **Kind**: global typedef
463
+ **Properties**
464
+
465
+ | Name | Type | Description |
466
+ | --- | --- | --- |
467
+ | key | <code>string</code> | Key of the value that is the result of the personalization |
468
+ | operator | <code>string</code> | Operator defining how the items are filtered |
469
+ | values | <code>Array.&lt;string&gt;</code> | Filter values for the given operator |
470
+ | inputControl | <code>string</code> | <code>Control</code> that is used as input for the value |
471
+
472
+ <a name="SortPersonalizationConfiguration"></a>
473
+
474
+ ## SortPersonalizationConfiguration : <code>object</code>
475
+ **Kind**: global typedef
476
+ **Properties**
477
+
478
+ | Name | Type | Description |
479
+ | --- | --- | --- |
480
+ | key | <code>string</code> | Key of the item that is the result of the personalization |
481
+ | descending | <code>boolean</code> | Determines whether the sort direction is descending |
482
+