@openui5/sap.ui.mdc 1.108.2 → 1.110.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 (321) hide show
  1. package/.reuse/dep5 +16 -16
  2. package/THIRDPARTY.txt +2 -2
  3. package/package.json +4 -4
  4. package/src/sap/ui/mdc/.library +2 -2
  5. package/src/sap/ui/mdc/ActionToolbar.js +5 -5
  6. package/src/sap/ui/mdc/AggregationBaseDelegate.js +1 -1
  7. package/src/sap/ui/mdc/BaseDelegate.js +1 -1
  8. package/src/sap/ui/mdc/Chart.js +32 -34
  9. package/src/sap/ui/mdc/ChartDelegate.js +23 -19
  10. package/src/sap/ui/mdc/ChartRenderer.js +1 -1
  11. package/src/sap/ui/mdc/Control.js +2 -2
  12. package/src/sap/ui/mdc/Delegate.js +1 -1
  13. package/src/sap/ui/mdc/Element.js +2 -2
  14. package/src/sap/ui/mdc/Field.js +30 -20
  15. package/src/sap/ui/mdc/FilterBar.js +13 -8
  16. package/src/sap/ui/mdc/FilterBarDelegate.js +14 -10
  17. package/src/sap/ui/mdc/FilterField.js +8 -15
  18. package/src/sap/ui/mdc/Link.js +2 -2
  19. package/src/sap/ui/mdc/LinkDelegate.js +4 -2
  20. package/src/sap/ui/mdc/MultiValueField.js +2 -2
  21. package/src/sap/ui/mdc/Table.js +375 -632
  22. package/src/sap/ui/mdc/TableDelegate.js +34 -7
  23. package/src/sap/ui/mdc/ValueHelp.js +38 -21
  24. package/src/sap/ui/mdc/ValueHelpDelegate.js +86 -52
  25. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +86 -65
  26. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarActionRenderer.js +7 -12
  27. package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +6 -6
  28. package/src/sap/ui/mdc/chart/ChartImplementationContainerRenderer.js +1 -1
  29. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +3 -3
  30. package/src/sap/ui/mdc/chart/ChartSettings.js +1 -1
  31. package/src/sap/ui/mdc/chart/ChartToolbar.js +22 -9
  32. package/src/sap/ui/mdc/chart/ChartTypeButton.js +22 -20
  33. package/src/sap/ui/mdc/chart/DrillBreadcrumbs.js +1 -1
  34. package/src/sap/ui/mdc/chart/DrillStackHandler.js +4 -6
  35. package/src/sap/ui/mdc/chart/Item.js +1 -1
  36. package/src/sap/ui/mdc/chart/PropertyHelper.js +2 -2
  37. package/src/sap/ui/mdc/chart/SelectionDetailsActions.js +1 -1
  38. package/src/sap/ui/mdc/condition/Condition.js +4 -5
  39. package/src/sap/ui/mdc/condition/ConditionConverter.js +2 -2
  40. package/src/sap/ui/mdc/condition/ConditionModel.js +2 -2
  41. package/src/sap/ui/mdc/condition/ConditionModelPropertyBinding.js +1 -1
  42. package/src/sap/ui/mdc/condition/ConditionValidateException.js +62 -0
  43. package/src/sap/ui/mdc/condition/FilterConverter.js +8 -4
  44. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +4 -16
  45. package/src/sap/ui/mdc/condition/Operator.js +2 -2
  46. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +4 -2
  47. package/src/sap/ui/mdc/condition/RangeOperator.js +2 -2
  48. package/src/sap/ui/mdc/designtime/Util.js +1 -1
  49. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbar.designtime.js +2 -2
  50. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbarAction.designtime.js +1 -1
  51. package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +2 -2
  52. package/src/sap/ui/mdc/designtime/field/Field.designtime.js +3 -4
  53. package/src/sap/ui/mdc/designtime/field/FieldBase.designtime.js +1 -1
  54. package/src/sap/ui/mdc/designtime/field/FilterField.designtime.js +1 -1
  55. package/src/sap/ui/mdc/designtime/field/MultiValueField.designtime.js +1 -1
  56. package/src/sap/ui/mdc/designtime/filterbar/FilterBar.designtime.js +2 -2
  57. package/src/sap/ui/mdc/designtime/filterbar/FilterBarBase.designtime.js +1 -1
  58. package/src/sap/ui/mdc/designtime/library.designtime.js +1 -1
  59. package/src/sap/ui/mdc/designtime/link/Panel.designtime.js +1 -1
  60. package/src/sap/ui/mdc/designtime/link/PanelItem.designtime.js +7 -6
  61. package/src/sap/ui/mdc/designtime/p13n/PersistenceProvider.designtime.js +1 -1
  62. package/src/sap/ui/mdc/designtime/table/Table.designtime.js +2 -2
  63. package/src/sap/ui/mdc/enum/ActionToolbarActionAlignment.js +1 -1
  64. package/src/sap/ui/mdc/enum/BaseType.js +1 -1
  65. package/src/sap/ui/mdc/enum/ConditionValidated.js +1 -1
  66. package/src/sap/ui/mdc/enum/ContentMode.js +1 -1
  67. package/src/sap/ui/mdc/enum/EditMode.js +1 -1
  68. package/src/sap/ui/mdc/enum/FieldDisplay.js +1 -1
  69. package/src/sap/ui/mdc/enum/OutParameterMode.js +1 -1
  70. package/src/sap/ui/mdc/enum/PersistenceMode.js +1 -1
  71. package/src/sap/ui/mdc/enum/ProcessingStrategy.js +1 -1
  72. package/src/sap/ui/mdc/enum/PropagationReason.js +1 -1
  73. package/src/sap/ui/mdc/enum/SelectType.js +1 -1
  74. package/src/sap/ui/mdc/field/BoolFieldHelp.js +3 -2
  75. package/src/sap/ui/mdc/field/ConditionFieldHelp.js +3 -2
  76. package/src/sap/ui/mdc/field/ConditionType.js +31 -15
  77. package/src/sap/ui/mdc/field/ConditionsType.js +98 -23
  78. package/src/sap/ui/mdc/field/CustomFieldHelp.js +3 -2
  79. package/src/sap/ui/mdc/field/CustomFieldInfo.js +2 -2
  80. package/src/sap/ui/mdc/field/DefineConditionPanel.js +42 -7
  81. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +2 -2
  82. package/src/sap/ui/mdc/field/FieldBase.js +131 -236
  83. package/src/sap/ui/mdc/field/FieldBaseDelegate.js +2 -35
  84. package/src/sap/ui/mdc/field/FieldBaseRenderer.js +1 -1
  85. package/src/sap/ui/mdc/field/FieldHelpBase.js +9 -7
  86. package/src/sap/ui/mdc/field/FieldHelpBaseDelegate.js +2 -1
  87. package/src/sap/ui/mdc/field/FieldInfoBase.js +2 -2
  88. package/src/sap/ui/mdc/field/FieldInput.js +2 -2
  89. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +2 -2
  90. package/src/sap/ui/mdc/field/FieldInputRenderer.js +1 -1
  91. package/src/sap/ui/mdc/field/FieldMultiInput.js +2 -2
  92. package/src/sap/ui/mdc/field/FieldMultiInputRenderer.js +1 -1
  93. package/src/sap/ui/mdc/field/FieldValueHelp.js +3 -2
  94. package/src/sap/ui/mdc/field/FieldValueHelpContentWrapperBase.js +3 -2
  95. package/src/sap/ui/mdc/field/FieldValueHelpDelegate.js +2 -1
  96. package/src/sap/ui/mdc/field/FieldValueHelpMTableWrapper.js +8 -7
  97. package/src/sap/ui/mdc/field/FieldValueHelpMdcTableWrapper.js +10 -9
  98. package/src/sap/ui/mdc/field/FieldValueHelpTableWrapperBase.js +3 -2
  99. package/src/sap/ui/mdc/field/FieldValueHelpUITableWrapper.js +8 -7
  100. package/src/sap/ui/mdc/field/InParameter.js +3 -2
  101. package/src/sap/ui/mdc/field/ListFieldHelp.js +3 -2
  102. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +2 -2
  103. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +1 -1
  104. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +2 -2
  105. package/src/sap/ui/mdc/field/OutParameter.js +3 -2
  106. package/src/sap/ui/mdc/field/TokenDisplay.js +2 -2
  107. package/src/sap/ui/mdc/field/TokenDisplayRenderer.js +1 -1
  108. package/src/sap/ui/mdc/field/TokenizerDisplay.js +2 -2
  109. package/src/sap/ui/mdc/field/TokenizerDisplayRenderer.js +1 -1
  110. package/src/sap/ui/mdc/field/ValueHelpPanel.js +3 -2
  111. package/src/sap/ui/mdc/field/content/BooleanContent.js +1 -1
  112. package/src/sap/ui/mdc/field/content/ContentFactory.js +12 -13
  113. package/src/sap/ui/mdc/field/content/DateContent.js +4 -4
  114. package/src/sap/ui/mdc/field/content/DateTimeContent.js +1 -1
  115. package/src/sap/ui/mdc/field/content/DefaultContent.js +15 -5
  116. package/src/sap/ui/mdc/field/content/LinkContent.js +1 -2
  117. package/src/sap/ui/mdc/field/content/SearchContent.js +47 -5
  118. package/src/sap/ui/mdc/field/content/TimeContent.js +1 -1
  119. package/src/sap/ui/mdc/field/content/UnitContent.js +8 -19
  120. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +60 -29
  121. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +1 -1
  122. package/src/sap/ui/mdc/filterbar/IFilterContainer.js +1 -1
  123. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +2 -2
  124. package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +1 -1
  125. package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +1 -1
  126. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +27 -4
  127. package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +1 -1
  128. package/src/sap/ui/mdc/filterbar/p13n/FilterGroupLayout.js +5 -1
  129. package/src/sap/ui/mdc/filterbar/p13n/GroupContainer.js +6 -2
  130. package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +5 -1
  131. package/src/sap/ui/mdc/filterbar/vh/CollectiveSearchSelect.js +16 -3
  132. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +35 -2
  133. package/src/sap/ui/mdc/filterbar/vh/FilterBarDelegate.js +24 -0
  134. package/src/sap/ui/mdc/filterbar/vh/FilterContainer.js +2 -2
  135. package/src/sap/ui/mdc/flexibility/ActionToolbar.flexibility.js +1 -1
  136. package/src/sap/ui/mdc/flexibility/ActionToolbarAction.flexibility.js +1 -1
  137. package/src/sap/ui/mdc/flexibility/AggregateFlex.js +2 -2
  138. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +2 -2
  139. package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +1 -1
  140. package/src/sap/ui/mdc/flexibility/ChartTypeFlex.js +1 -1
  141. package/src/sap/ui/mdc/flexibility/ColumnFlex.js +2 -2
  142. package/src/sap/ui/mdc/flexibility/ConditionFlex.js +1 -1
  143. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +2 -2
  144. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +2 -2
  145. package/src/sap/ui/mdc/flexibility/GroupFlex.js +2 -2
  146. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +2 -2
  147. package/src/sap/ui/mdc/flexibility/Panel.flexibility.js +1 -1
  148. package/src/sap/ui/mdc/flexibility/PanelItem.flexibility.js +1 -1
  149. package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +1 -1
  150. package/src/sap/ui/mdc/flexibility/SortFlex.js +3 -3
  151. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +1 -1
  152. package/src/sap/ui/mdc/flexibility/Util.js +2 -2
  153. package/src/sap/ui/mdc/flexibility/xConfigFlex.js +6 -6
  154. package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +1 -1
  155. package/src/sap/ui/mdc/library.js +61 -30
  156. package/src/sap/ui/mdc/link/ContactDetails.js +2 -2
  157. package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +2 -2
  158. package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +2 -2
  159. package/src/sap/ui/mdc/link/ContactDetailsItem.js +2 -2
  160. package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +2 -2
  161. package/src/sap/ui/mdc/link/ContactDetailsRenderer.js +1 -1
  162. package/src/sap/ui/mdc/link/Factory.js +2 -2
  163. package/src/sap/ui/mdc/link/FakeFlpConnector.js +2 -2
  164. package/src/sap/ui/mdc/link/LinkItem.js +3 -2
  165. package/src/sap/ui/mdc/link/Log.js +1 -1
  166. package/src/sap/ui/mdc/link/Panel.js +25 -13
  167. package/src/sap/ui/mdc/link/PanelItem.js +2 -2
  168. package/src/sap/ui/mdc/link/PanelRenderer.js +1 -1
  169. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +2 -2
  170. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +2 -2
  171. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +2 -2
  172. package/src/sap/ui/mdc/messagebundle.properties +7 -3
  173. package/src/sap/ui/mdc/messagebundle_ar.properties +5 -2
  174. package/src/sap/ui/mdc/messagebundle_bg.properties +33 -30
  175. package/src/sap/ui/mdc/messagebundle_ca.properties +5 -2
  176. package/src/sap/ui/mdc/messagebundle_cs.properties +7 -4
  177. package/src/sap/ui/mdc/messagebundle_cy.properties +5 -2
  178. package/src/sap/ui/mdc/messagebundle_da.properties +5 -2
  179. package/src/sap/ui/mdc/messagebundle_de.properties +5 -2
  180. package/src/sap/ui/mdc/messagebundle_el.properties +5 -2
  181. package/src/sap/ui/mdc/messagebundle_en.properties +5 -3
  182. package/src/sap/ui/mdc/messagebundle_en_GB.properties +5 -2
  183. package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +4 -1
  184. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +5 -2
  185. package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +0 -1
  186. package/src/sap/ui/mdc/messagebundle_es.properties +9 -6
  187. package/src/sap/ui/mdc/messagebundle_es_MX.properties +5 -2
  188. package/src/sap/ui/mdc/messagebundle_et.properties +5 -2
  189. package/src/sap/ui/mdc/messagebundle_fi.properties +5 -2
  190. package/src/sap/ui/mdc/messagebundle_fr.properties +5 -2
  191. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +5 -2
  192. package/src/sap/ui/mdc/messagebundle_hi.properties +5 -2
  193. package/src/sap/ui/mdc/messagebundle_hr.properties +11 -8
  194. package/src/sap/ui/mdc/messagebundle_hu.properties +5 -2
  195. package/src/sap/ui/mdc/messagebundle_id.properties +5 -2
  196. package/src/sap/ui/mdc/messagebundle_it.properties +6 -3
  197. package/src/sap/ui/mdc/messagebundle_iw.properties +5 -2
  198. package/src/sap/ui/mdc/messagebundle_ja.properties +5 -2
  199. package/src/sap/ui/mdc/messagebundle_kk.properties +11 -8
  200. package/src/sap/ui/mdc/messagebundle_ko.properties +4 -1
  201. package/src/sap/ui/mdc/messagebundle_lt.properties +5 -2
  202. package/src/sap/ui/mdc/messagebundle_lv.properties +5 -2
  203. package/src/sap/ui/mdc/messagebundle_ms.properties +5 -2
  204. package/src/sap/ui/mdc/messagebundle_nl.properties +7 -4
  205. package/src/sap/ui/mdc/messagebundle_no.properties +5 -2
  206. package/src/sap/ui/mdc/messagebundle_pl.properties +5 -2
  207. package/src/sap/ui/mdc/messagebundle_pt.properties +5 -2
  208. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +5 -2
  209. package/src/sap/ui/mdc/messagebundle_ro.properties +5 -2
  210. package/src/sap/ui/mdc/messagebundle_ru.properties +5 -2
  211. package/src/sap/ui/mdc/messagebundle_sh.properties +6 -3
  212. package/src/sap/ui/mdc/messagebundle_sk.properties +5 -2
  213. package/src/sap/ui/mdc/messagebundle_sl.properties +10 -7
  214. package/src/sap/ui/mdc/messagebundle_sv.properties +5 -2
  215. package/src/sap/ui/mdc/messagebundle_th.properties +7 -4
  216. package/src/sap/ui/mdc/messagebundle_tr.properties +5 -2
  217. package/src/sap/ui/mdc/messagebundle_uk.properties +5 -2
  218. package/src/sap/ui/mdc/messagebundle_vi.properties +5 -2
  219. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +6 -3
  220. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +5 -2
  221. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +10 -5
  222. package/src/sap/ui/mdc/mixin/DelegateMixin.js +4 -4
  223. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +3 -3
  224. package/src/sap/ui/mdc/mixin/PromiseMixin.js +10 -10
  225. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +7 -3
  226. package/src/sap/ui/mdc/odata/TypeUtil.js +4 -4
  227. package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +1 -1
  228. package/src/sap/ui/mdc/odata/v4/FieldBaseDelegate.js +1 -7
  229. package/src/sap/ui/mdc/odata/v4/FieldValueHelpDelegate.js +1 -1
  230. package/src/sap/ui/mdc/odata/v4/ODataMetaModelUtil.js +2 -2
  231. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +3 -3
  232. package/src/sap/ui/mdc/odata/v4/TypeUtil.js +9 -1
  233. package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +34 -65
  234. package/src/sap/ui/mdc/odata/v4/util/DelegateUtil.js +1 -1
  235. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +53 -53
  236. package/src/sap/ui/mdc/p13n/Engine.js +4 -4
  237. package/src/sap/ui/mdc/p13n/FlexUtil.js +1 -1
  238. package/src/sap/ui/mdc/p13n/P13nBuilder.js +1 -1
  239. package/src/sap/ui/mdc/p13n/PersistenceProvider.js +4 -154
  240. package/src/sap/ui/mdc/p13n/PropertyHelper.js +2 -2
  241. package/src/sap/ui/mdc/p13n/StateUtil.js +16 -2
  242. package/src/sap/ui/mdc/p13n/UIManager.js +3 -4
  243. package/src/sap/ui/mdc/p13n/panels/ActionToolbarPanel.js +1 -1
  244. package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +3 -2
  245. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +4 -2
  246. package/src/sap/ui/mdc/p13n/panels/FilterPanel.js +23 -12
  247. package/src/sap/ui/mdc/p13n/panels/GroupView.js +15 -7
  248. package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +3 -2
  249. package/src/sap/ui/mdc/p13n/subcontroller/ActionToolbarController.js +7 -11
  250. package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +21 -9
  251. package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +13 -8
  252. package/src/sap/ui/mdc/p13n/subcontroller/BaseController.js +2 -2
  253. package/src/sap/ui/mdc/p13n/subcontroller/ChartItemController.js +12 -28
  254. package/src/sap/ui/mdc/p13n/subcontroller/ChartTypeController.js +8 -4
  255. package/src/sap/ui/mdc/p13n/subcontroller/ColumnController.js +7 -15
  256. package/src/sap/ui/mdc/p13n/subcontroller/ColumnWidthController.js +7 -7
  257. package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +18 -9
  258. package/src/sap/ui/mdc/p13n/subcontroller/GroupController.js +5 -5
  259. package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +6 -5
  260. package/src/sap/ui/mdc/p13n/subcontroller/SelectionController.js +76 -0
  261. package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +5 -5
  262. package/src/sap/ui/mdc/table/Column.js +101 -22
  263. package/src/sap/ui/mdc/table/ColumnSettings.js +41 -0
  264. package/src/sap/ui/mdc/table/CreationRow.js +11 -12
  265. package/src/sap/ui/mdc/table/GridTableType.js +331 -107
  266. package/src/sap/ui/mdc/table/PropertyHelper.js +14 -8
  267. package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +76 -0
  268. package/src/sap/ui/mdc/table/ResponsiveTableType.js +312 -97
  269. package/src/sap/ui/mdc/table/RowActionItem.js +9 -3
  270. package/src/sap/ui/mdc/table/RowSettings.js +3 -3
  271. package/src/sap/ui/mdc/table/TableSettings.js +12 -13
  272. package/src/sap/ui/mdc/table/TableTypeBase.js +124 -41
  273. package/src/sap/ui/mdc/table/TreeTableType.js +106 -0
  274. package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +3 -3
  275. package/src/sap/ui/mdc/table/menu/Item.js +4 -7
  276. package/src/sap/ui/mdc/table/menu/ItemContainer.js +1 -1
  277. package/src/sap/ui/mdc/table/menu/QuickActionContainer.js +3 -4
  278. package/src/sap/ui/mdc/themes/base/AdaptFiltersPanel.less +1 -5
  279. package/src/sap/ui/mdc/themes/base/Chart.less +1 -0
  280. package/src/sap/ui/mdc/themes/base/FieldBase.less +8 -2
  281. package/src/sap/ui/mdc/themes/base/PersonalizationDialog.less +7 -7
  282. package/src/sap/ui/mdc/themes/base/library.source.less +1 -1
  283. package/src/sap/ui/mdc/util/Common.js +1 -1
  284. package/src/sap/ui/mdc/util/DateUtil.js +3 -2
  285. package/src/sap/ui/mdc/util/FilterUtil.js +1 -1
  286. package/src/sap/ui/mdc/util/FormatUtil.js +1 -1
  287. package/src/sap/ui/mdc/util/IdentifierUtil.js +1 -1
  288. package/src/sap/ui/mdc/util/PromiseCache.js +10 -10
  289. package/src/sap/ui/mdc/util/PropertyHelper.js +3 -3
  290. package/src/sap/ui/mdc/util/TypeUtil.js +33 -2
  291. package/src/sap/ui/mdc/util/loadModules.js +1 -1
  292. package/src/sap/ui/mdc/valuehelp/Dialog.js +39 -9
  293. package/src/sap/ui/mdc/valuehelp/Popover.js +30 -5
  294. package/src/sap/ui/mdc/valuehelp/base/Container.js +8 -6
  295. package/src/sap/ui/mdc/valuehelp/base/Content.js +28 -5
  296. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +2 -2
  297. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +33 -32
  298. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +5 -4
  299. package/src/sap/ui/mdc/valuehelp/content/Bool.js +8 -2
  300. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +7 -3
  301. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +11 -4
  302. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +16 -14
  303. package/src/sap/ui/mdc/valuehelp/content/MTable.js +56 -73
  304. package/test/sap/ui/mdc/testutils/opa/field/Actions.js +4 -2
  305. package/test/sap/ui/mdc/testutils/opa/filterbar/Actions.js +1 -1
  306. package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +8 -0
  307. package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +16 -25
  308. package/test/sap/ui/mdc/testutils/opa/p13n/Assertions.js +2 -1
  309. package/test/sap/ui/mdc/testutils/opa/p13n/waitForPanelInP13n.js +1 -1
  310. package/test/sap/ui/mdc/testutils/opa/table/Actions.js +291 -67
  311. package/test/sap/ui/mdc/testutils/opa/table/Assertions.js +4 -81
  312. package/test/sap/ui/mdc/testutils/opa/table/JSDoc.md +0 -50
  313. package/test/sap/ui/mdc/testutils/opa/table/TestObjects.js +7 -51
  314. package/test/sap/ui/mdc/testutils/opa/table/Util.js +0 -1
  315. package/test/sap/ui/mdc/testutils/opa/table/waitForTable.js +30 -5
  316. package/src/sap/ui/mdc/p13n/AdaptationProvider.js +0 -67
  317. package/src/sap/ui/mdc/p13n/modification/FlexModificationHandler.js +0 -76
  318. package/src/sap/ui/mdc/p13n/modification/ModificationHandler.js +0 -87
  319. package/src/sap/ui/mdc/p13n/modules/DefaultProviderRegistry.js +0 -149
  320. package/src/sap/ui/mdc/p13n/modules/StateHandlerRegistry.js +0 -86
  321. package/src/sap/ui/mdc/p13n/modules/xConfigAPI.js +0 -219
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -33,9 +33,9 @@ sap.ui.define([
33
33
  * @class The ChartSelectionDetails control creates a sap.m.SelectionDetails popover based on metadata and the configuration specified.
34
34
  * @extends sap.m.SelectionDetails
35
35
  * @author SAP SE
36
- * @version 1.108.2
36
+ * @version 1.110.0
37
37
  * @constructor
38
- * @experimental As of version ...
38
+ * @experimental As of version 1.88
39
39
  * @private
40
40
  * @ui5-restricted sap.fe
41
41
  * @MDC_PUBLIC_CANDIDATE
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([], function () {
@@ -1,12 +1,11 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
7
7
  sap.ui.define([
8
8
  "sap/ui/core/Core",
9
- "sap/ui/mdc/library",
10
9
  "sap/ui/mdc/ActionToolbar",
11
10
  "sap/m/OverflowToolbarRenderer",
12
11
  "sap/m/OverflowToolbarButton",
@@ -14,13 +13,13 @@ sap.ui.define([
14
13
  "sap/m/Title",
15
14
  "sap/ui/mdc/library",
16
15
  "sap/ui/mdc/chart/ChartTypeButton",
17
- "sap/ui/mdc/chart/ChartSettings",
18
16
  "./ChartSelectionDetails",
19
- "sap/m/ToolbarSeparator"
17
+ "sap/m/ToolbarSeparator",
18
+ "sap/m/OverflowToolbarLayoutData",
19
+ "sap/ui/core/library"
20
20
  ],
21
21
  function (
22
22
  Core,
23
- Control,
24
23
  ActionToolbar,
25
24
  OverflowToolbarRenderer,
26
25
  OverflowButton,
@@ -28,12 +27,16 @@ sap.ui.define([
28
27
  Title,
29
28
  MDCLib,
30
29
  ChartTypeButton,
31
- ChartSettings,
32
30
  ChartSelectionDetails,
33
- ToolbarSeparator
31
+ ToolbarSeparator,
32
+ OverflowToolbarLayoutData,
33
+ coreLibrary
34
34
  ) {
35
35
  "use strict";
36
36
 
37
+ // shortcut for sap.ui.core.aria.HasPopup
38
+ var AriaHasPopup = coreLibrary.aria.HasPopup;
39
+
37
40
  /**
38
41
  * Constructor for a new ChartToolbar.
39
42
  *
@@ -42,7 +45,7 @@ sap.ui.define([
42
45
  * @class The ChartToolbar control is a sap.m.OverflowToolbar based on metadata and the configuration specified.
43
46
  * @extends sap.ui.mdc.ActionToolbar
44
47
  * @author SAP SE
45
- * @version 1.108.2
48
+ * @version 1.110.0
46
49
  * @constructor
47
50
  * @experimental As of version 1.88
48
51
  * @private
@@ -118,6 +121,10 @@ sap.ui.define([
118
121
  tooltip: MDCRb.getText("chart.CHART_DRILLDOWN_TITLE"),
119
122
  text: MDCRb.getText("chart.CHART_DRILLDOWN_TITLE"),
120
123
  enabled: false,
124
+ ariaHasPopup: AriaHasPopup.ListBox,
125
+ layoutData: new OverflowToolbarLayoutData({
126
+ closeOverflowOnInteraction: false
127
+ }),
121
128
  press: function (oEvent) {
122
129
  oMDCChart._showDrillDown(this._oDrillDownBtn);
123
130
  }.bind(this)
@@ -170,6 +177,7 @@ sap.ui.define([
170
177
  this._oSettingsBtn = new OverflowButton(oMDCChart.getId() + "-chart_settings", {
171
178
  icon: "sap-icon://action-settings",//TODO the right icon for P13n chart dialog
172
179
  tooltip: MDCRb.getText('chart.SETTINGS'),
180
+ text: MDCRb.getText('chart.SETTINGS'),
173
181
  enabled: false,
174
182
  press: function (oEvent) {
175
183
  var aP13nMode = oMDCChart.getP13nMode();
@@ -193,7 +201,12 @@ sap.ui.define([
193
201
  }
194
202
 
195
203
  if (oMDCChart._getTypeBtnActive()) {
196
- this._oChartTypeBtn = new ChartTypeButton(oMDCChart);
204
+ this._oChartTypeBtn = new ChartTypeButton(oMDCChart, {
205
+ ariaHasPopup: AriaHasPopup.ListBox,
206
+ layoutData: new OverflowToolbarLayoutData({
207
+ closeOverflowOnInteraction: false
208
+ })
209
+ });
197
210
  this._oChartTypeBtn.setEnabled(false);
198
211
  this.addEnd(this._oChartTypeBtn);
199
212
  this._chartInternalButtonsToEnable.push(this._oChartTypeBtn);
@@ -1,11 +1,11 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
7
- "sap/m/OverflowToolbarButton", "sap/m/ButtonRenderer", "sap/ui/base/ManagedObjectObserver", "sap/ui/core/library", "sap/m/library", "sap/m/IllustratedMessage"
8
- ], function(OverflowToolbarButton, ButtonRenderer, ManagedObjectObserver, CoreLibrary, mobileLibrary, IllustratedMessage) {
7
+ "sap/m/OverflowToolbarButton", "sap/m/ButtonRenderer", "sap/ui/base/ManagedObjectObserver", "sap/ui/core/library", "sap/m/library", "sap/m/IllustratedMessage", "sap/m/library"
8
+ ], function(OverflowToolbarButton, ButtonRenderer, ManagedObjectObserver, CoreLibrary, mobileLibrary, IllustratedMessage, MLib) {
9
9
  "use strict";
10
10
 
11
11
  // shortcut for sap.m.PlacementType
@@ -94,14 +94,14 @@ sap.ui.define([
94
94
  };
95
95
 
96
96
  /**
97
- * Shows popover to select chart type
98
- * @param oButton button opening the popover
99
- * @param oMDCChart the inner chart
100
- *
101
- * @experimental
102
- * @private
103
- * @ui5-restricted Fiori Elements, sap.ui.mdc
104
- */
97
+ * Shows popover to select chart type
98
+ * @param oButton button opening the popover
99
+ * @param oMDCChart the inner chart
100
+ *
101
+ * @experimental
102
+ * @private
103
+ * @ui5-restricted sap.fe, sap.ui.mdc
104
+ */
105
105
  ChartTypeButton.prototype.displayChartTypes = function(oButton, oMDCChart) {
106
106
  if (!oMDCChart || !oButton) {
107
107
  return;
@@ -166,7 +166,7 @@ sap.ui.define([
166
166
 
167
167
  var oList = new List({
168
168
  mode: "SingleSelectMaster",
169
- noData: new IllustratedMessage({title: oRb.getText("chart.NO_CHART_TYPES_AVAILABLE"), description: oRb.getText("chart.NO_CHART_TYPES_AVAILABLE_ACTION")}),
169
+ noData: new IllustratedMessage({title: oRb.getText("chart.NO_CHART_TYPES_AVAILABLE"), description: oRb.getText("chart.NO_CHART_TYPES_AVAILABLE_ACTION"), illustrationType: MLib.IllustratedMessageType.AddDimensions}),
170
170
  items: {
171
171
  path: "$chart>/getAvailableChartTypes",
172
172
  template: oItemTemplate
@@ -189,7 +189,9 @@ sap.ui.define([
189
189
  control: oMDCChart,
190
190
  key: "Type",
191
191
  state: {
192
- type: oObj.key
192
+ properties: {
193
+ chartType: oObj.key
194
+ }
193
195
  }
194
196
  });
195
197
  /*
@@ -291,13 +293,13 @@ sap.ui.define([
291
293
  }
292
294
  };
293
295
 
294
- /**
295
- * Closes the popover to select chart type
296
- *
297
- * @experimental
298
- * @private
299
- * @ui5-restricted Fiori Elements, sap.ui.mdc
300
- */
296
+ /**
297
+ * Closes the popover to select chart type
298
+ *
299
+ * @experimental
300
+ * @private
301
+ * @ui5-restricted sap.fe, sap.ui.mdc
302
+ */
301
303
  ChartTypeButton.prototype.exit = function() {
302
304
  OverflowToolbarButton.prototype.exit.apply(this, arguments);
303
305
  if (this.oPopover) {
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -13,8 +13,7 @@ sap.ui.define([
13
13
  "sap/m/library",
14
14
  "sap/ui/Device",
15
15
  "sap/base/Log",
16
- "sap/m/IllustratedMessage",
17
- "sap/m/library"
16
+ "sap/m/IllustratedMessage"
18
17
  ], function(
19
18
  Core,
20
19
  ResponsivePopover,
@@ -25,8 +24,7 @@ sap.ui.define([
25
24
  MLibrary,
26
25
  Device,
27
26
  Log,
28
- IllustratedMessage,
29
- mLib
27
+ IllustratedMessage
30
28
  ) {
31
29
  "use strict";
32
30
 
@@ -84,7 +82,7 @@ sap.ui.define([
84
82
  //subHeader: oSubHeader
85
83
  });
86
84
  var oList = new List({
87
- noData: new IllustratedMessage({enableVerticalResponsiveness: true, title: MDCRb.getText("chart.NO_DRILLABLE_DIMENSION"), description: MDCRb.getText("chart.NO_DRILLABLE_DIMENSION_DESC"), illustrationType: mLib.IllustratedMessageType.BeforeSearch}),
85
+ noData: new IllustratedMessage({enableVerticalResponsiveness: true, title: MDCRb.getText("chart.NO_DRILLABLE_DIMENSION"), description: MDCRb.getText("chart.NO_DRILLABLE_DIMENSION_DESC"), illustrationType: MLibrary.IllustratedMessageType.NoDimensionsSet}),
88
86
  mode: ListMode.SingleSelectMaster,
89
87
  selectionChange: function(oControlEvent) {
90
88
  var oListItem = oControlEvent.getParameter("listItem");
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * !OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * @extends sap.ui.mdc.util.PropertyHelper
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.108.2
29
+ * @version 1.110.0
30
30
  *
31
31
  * @private
32
32
  * @experimental
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * !OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  * @since 1.61.0
20
20
  * @private
21
21
  * @experimental As of version 1.61
22
- * @ui5-restricted sap.ui.fe
22
+ * @ui5-restricted sap.fe
23
23
  */
24
24
 
25
25
  /**
@@ -28,13 +28,13 @@ sap.ui.define([
28
28
  *
29
29
  * @namespace
30
30
  * @author SAP SE
31
- * @version 1.108.2
31
+ * @version 1.110.0
32
32
  * @since 1.61.0
33
33
  * @alias sap.ui.mdc.condition.Condition
34
34
  *
35
35
  * @private
36
36
  * @experimental As of version 1.61
37
- * @ui5-restricted sap.ui.fe
37
+ * @ui5-restricted sap.fe
38
38
  * @MDC_PUBLIC_CANDIDATE
39
39
  */
40
40
  var Condition = {
@@ -42,7 +42,6 @@ sap.ui.define([
42
42
  /**
43
43
  * Condition object type defining the structure of a condition.
44
44
  *
45
- * @type {sap.ui.mdc.condition.ConditionObject}
46
45
  * @static
47
46
  * @constant
48
47
  * @typedef {object} sap.ui.mdc.condition.ConditionObject
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  *
25
25
  * @namespace
26
26
  * @author SAP SE
27
- * @version 1.108.2
27
+ * @version 1.110.0
28
28
  * @private
29
29
  * @ui5-restricted sap.ui.mdc
30
30
  * @experimental As of version 1.74
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * @extends sap.ui.model.json.JSONModel
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.108.2
38
+ * @version 1.110.0
39
39
  * @since 1.48.0
40
40
  * @alias sap.ui.mdc.condition.ConditionModel
41
41
  *
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -0,0 +1,62 @@
1
+ /*!
2
+ * OpenUI5
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
+ */
6
+
7
+ // Provides class sap.ui.model.ValidateException
8
+ sap.ui.define(['sap/ui/model/ValidateException'],
9
+ function (ValidateException) {
10
+ "use strict";
11
+
12
+ /**
13
+ * Creates a new ValidateException for conditions.
14
+ *
15
+ * @param {string} message
16
+ * A message explaining why the validation failed; this message is language dependent as it
17
+ * may be displayed on the UI
18
+ * @param {string[]} [violatedConstraints]
19
+ * Names of the constraints that are violated; the names should be the same as documented in
20
+ * the type's constructor
21
+ * @param {sap.ui.mdc.condition.ConditionObject} oCondition Condition with validation error
22
+ * @param {sap.ui.mdc.condition.ConditionObject[]} aConditions Array of conditions including a condition with validation error
23
+ *
24
+ * @alias sap.ui.mdc.condition.ConditionValidateException
25
+ * @class
26
+ * @classdesc
27
+ * Instances of this exception are thrown when constraints of a type are violated.
28
+ *
29
+ * @private
30
+ * @ui5-restricted sap.ui.mdc.field.ConditionType, sap.ui.mdc.field.ConditionsType
31
+ * @see sap.ui.model.SimpleType#validateValue
32
+ * @since 1.109.0
33
+ */
34
+ var ConditionValidateException = function (message, violatedConstraints, oCondition, aConditions) {
35
+ ValidateException.call(this, message, violatedConstraints);
36
+ // this.name = "ValidateException";
37
+ // this.message = message;
38
+ // this.violatedConstraints = violatedConstraints;
39
+ this.condition = oCondition;
40
+ this.conditions = aConditions;
41
+ };
42
+
43
+ ConditionValidateException.prototype = Object.create(ValidateException.prototype);
44
+
45
+ ConditionValidateException.prototype.getCondition = function() {
46
+ return this.condition;
47
+ };
48
+
49
+ ConditionValidateException.prototype.setCondition = function(oCondition) {
50
+ this.condition = oCondition;
51
+ };
52
+
53
+ ConditionValidateException.prototype.getConditions = function() {
54
+ return this.conditions;
55
+ };
56
+
57
+ ConditionValidateException.prototype.setConditions = function(aConditions) {
58
+ this.conditions = aConditions;
59
+ };
60
+
61
+ return ConditionValidateException;
62
+ }, /* bExport= */ true);
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -24,7 +24,7 @@ function(
24
24
  *
25
25
  * @namespace
26
26
  * @author SAP SE
27
- * @version 1.108.2
27
+ * @version 1.110.0
28
28
  * @since 1.78.0
29
29
  * @alias sap.ui.mdc.condition.FilterConverter
30
30
  *
@@ -165,8 +165,12 @@ function(
165
165
  try {
166
166
  oFilter = oOperator.getModelFilter(oCondition, sFieldPath, oDataType, bCaseSensitiveType, sBaseType);
167
167
  } catch (error) {
168
- // in case the getModelFilter fails - because the oDataType is missing - we show a console error.
169
- Log.error("FilterConverter", "Not able to convert the condition for path '" + sFieldPath + "' into a filter! The type is missing!");
168
+ if (error) {
169
+ Log.error("FilterConverter", error);
170
+ } else {
171
+ // in case the getModelFilter fails - because the oDataType is missing - we show a console error.
172
+ Log.error("FilterConverter", "Not able to convert the condition for path '" + sFieldPath + "' into a filter! The type is missing!");
173
+ }
170
174
  continue;
171
175
  }
172
176
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -54,7 +54,7 @@ function(
54
54
  *
55
55
  * @namespace
56
56
  * @author SAP SE
57
- * @version 1.108.2
57
+ * @version 1.110.0
58
58
  * @since 1.73.0
59
59
  * @alias sap.ui.mdc.condition.FilterOperatorUtil
60
60
  *
@@ -378,10 +378,6 @@ function(
378
378
  isNullable = false;
379
379
  }
380
380
  }
381
- //TODO Type specific handling of empty is missing. Empty is currently only available for type String
382
- // if (oType == "date") {
383
- // return new Filter(sFieldPath, oOperator.filterOperator, null});
384
- // } else {
385
381
  if (isNullable) {
386
382
  return new Filter({ filters: [new Filter({path: sFieldPath, operator: ModelOperator.EQ, value1: ""}),
387
383
  new Filter({path: sFieldPath, operator: ModelOperator.EQ, value1: null})],
@@ -389,7 +385,6 @@ function(
389
385
  } else {
390
386
  return new Filter({path: sFieldPath, operator: this.filterOperator, value1: ""});
391
387
  }
392
- // }
393
388
  }
394
389
  }),
395
390
  notEmpty: new Operator({
@@ -410,10 +405,6 @@ function(
410
405
  isNullable = false;
411
406
  }
412
407
  }
413
- //TODO Type specific handling of empty is missing. Empty is currently only available for type String
414
- // if (Type == "date") {
415
- // return new Filter({ path: sFieldPath, operator: oOperator.filterOperator, value1: null });
416
- // } else {
417
408
  if (isNullable) {
418
409
  return new Filter({ filters: [new Filter({path: sFieldPath, operator: ModelOperator.NE, value1: ""}),
419
410
  new Filter({path: sFieldPath, operator: ModelOperator.NE, value1: null})],
@@ -421,7 +412,6 @@ function(
421
412
  } else {
422
413
  return new Filter({ path: sFieldPath, operator: this.filterOperator, value1: "" });
423
414
  }
424
- // }
425
415
  }
426
416
  }),
427
417
  yesterday: new RangeOperator({
@@ -1144,7 +1134,7 @@ function(
1144
1134
  * @returns {string[]} an array with the supported filter operator names
1145
1135
  *
1146
1136
  * @private
1147
- * @ui5-restricted ap.fe
1137
+ * @ui5-restricted sap.fe
1148
1138
  * @MDC_PUBLIC_CANDIDATE
1149
1139
  */
1150
1140
  getOperatorsForType: function(sType) {
@@ -1261,7 +1251,7 @@ function(
1261
1251
  * @returns {boolean} true if only EQ is supported
1262
1252
  *
1263
1253
  * @private
1264
- * @ui5-restricted sap.ui.mdc.field.FieldBase, sap.ui.mdc.field.FieldValueHelp, sap.ui.mdc.field.ConditionType
1254
+ * @ui5-restricted sap.ui.mdc.field.FieldBase, sap.ui.mdc.field.ConditionType
1265
1255
  */
1266
1256
  onlyEQ: function(aOperators) {
1267
1257
 
@@ -1578,7 +1568,6 @@ function(
1578
1568
  FilterOperatorUtil._mOperators.lessEqual,
1579
1569
  FilterOperatorUtil._mOperators.greaterThan,
1580
1570
  FilterOperatorUtil._mOperators.greaterEqual,
1581
- // FilterOperatorUtil._mOperators.empty,
1582
1571
 
1583
1572
  FilterOperatorUtil._mOperators.notEqual,
1584
1573
  FilterOperatorUtil._mOperators.notBetween,
@@ -1586,7 +1575,6 @@ function(
1586
1575
  FilterOperatorUtil._mOperators.notLessEqual,
1587
1576
  FilterOperatorUtil._mOperators.notGreaterThan,
1588
1577
  FilterOperatorUtil._mOperators.notGreaterEqual,
1589
- // FilterOperatorUtil._mOperators.notEmpty,
1590
1578
 
1591
1579
  FilterOperatorUtil._mOperators.today,
1592
1580
  FilterOperatorUtil._mOperators.yesterday,
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -84,7 +84,7 @@ sap.ui.define([
84
84
  * @param {string} [oConfiguration.additionalInfo] additionalInfo text for the operator. Will be shown in the operator suggest as second column. If not used (undefined) the Include or Exclude information of the operator is used.
85
85
  * @constructor
86
86
  * @author SAP SE
87
- * @version 1.108.2
87
+ * @version 1.110.0
88
88
  * @private
89
89
  * @ui5-restricted sap.fe
90
90
  * @MDC_PUBLIC_CANDIDATE
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -51,7 +51,7 @@ sap.ui.define([
51
51
  * @extends sap.m.DynamicDateOption
52
52
  *
53
53
  * @author SAP SE
54
- * @version 1.108.2
54
+ * @version 1.110.0
55
55
  *
56
56
  * @private
57
57
  * @ui5-restricted sap.ui.mdc
@@ -430,6 +430,8 @@ sap.ui.define([
430
430
  aRange[i] = DateUtil.typeToUniversalDate(aRange[i], oType, sBaseType);
431
431
  aRange[i] = DateUtil.utcToLocal(aRange[i]);
432
432
  }
433
+ } else if (oOperator.valueTypes.length === 0) {
434
+ aRange = [];
433
435
  } else if (oOperator.valueTypes[0] === Operator.ValueType.Self) {
434
436
  aRange = oValue.values;
435
437
  for (i = 0; i < aRange.length; i++) {
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -33,7 +33,7 @@ sap.ui.define([
33
33
  * @param {int[]|function} [oConfiguration.defaultValues] Array of values for the defaults of <code>RangeOperators</code> parameter. This can be a function, which returns the array of values. If not used the default for the values is 1.
34
34
  * @constructor
35
35
  * @author SAP SE
36
- * @version 1.108.2
36
+ * @version 1.110.0
37
37
  * @private
38
38
  * @ui5-restricted sap.fe
39
39
  * @MDC_PUBLIC_CANDIDATE
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([], function () {
@@ -1,11 +1,11 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
7
7
  "sap/ui/mdc/ActionToolbar",
8
- "sap/ui/mdc/p13n/Engine",
8
+ "sap/m/p13n/Engine",
9
9
  "../Util"
10
10
  ], function (ActionToolbar, Engine, Util) {
11
11
  "use strict";
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
@@ -1,10 +1,10 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
  sap.ui.define([
7
- "sap/ui/mdc/p13n/Engine"
7
+ "sap/m/p13n/Engine"
8
8
  ], function (Engine) {
9
9
  "use strict";
10
10