@openui5/sap.ui.mdc 1.134.0 → 1.136.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 (302) hide show
  1. package/REUSE.toml +649 -0
  2. package/THIRDPARTY.txt +23 -23
  3. package/package.json +4 -4
  4. package/src/sap/ui/mdc/.library +2 -2
  5. package/src/sap/ui/mdc/ActionToolbar.js +2 -2
  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 +2 -2
  9. package/src/sap/ui/mdc/ChartDelegate.js +1 -1
  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/DefaultTypeMap.js +2 -2
  13. package/src/sap/ui/mdc/Element.js +2 -2
  14. package/src/sap/ui/mdc/Field.js +3 -3
  15. package/src/sap/ui/mdc/FilterBar.js +2 -2
  16. package/src/sap/ui/mdc/FilterBarDelegate.js +1 -1
  17. package/src/sap/ui/mdc/FilterField.js +3 -3
  18. package/src/sap/ui/mdc/Link.js +2 -2
  19. package/src/sap/ui/mdc/LinkDelegate.js +1 -1
  20. package/src/sap/ui/mdc/MultiValueField.js +2 -2
  21. package/src/sap/ui/mdc/Table.js +54 -8
  22. package/src/sap/ui/mdc/TableDelegate.js +1 -1
  23. package/src/sap/ui/mdc/ValueHelp.js +105 -28
  24. package/src/sap/ui/mdc/ValueHelpDelegate.js +88 -19
  25. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +10 -2
  26. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarActionRenderer.js +1 -1
  27. package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +2 -2
  28. package/src/sap/ui/mdc/chart/ChartImplementationContainerRenderer.js +1 -1
  29. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +2 -2
  30. package/src/sap/ui/mdc/chart/DrillBreadcrumbs.js +1 -1
  31. package/src/sap/ui/mdc/chart/Item.js +1 -1
  32. package/src/sap/ui/mdc/chart/PropertyHelper.js +2 -2
  33. package/src/sap/ui/mdc/chart/SelectionButton.js +1 -1
  34. package/src/sap/ui/mdc/chart/SelectionButtonDisplay.js +1 -1
  35. package/src/sap/ui/mdc/chart/SelectionButtonItem.js +1 -1
  36. package/src/sap/ui/mdc/chart/SelectionDetailsActions.js +1 -1
  37. package/src/sap/ui/mdc/chart/ToolbarControlFactory.js +3 -3
  38. package/src/sap/ui/mdc/chart/Util.js +1 -1
  39. package/src/sap/ui/mdc/condition/Condition.js +2 -2
  40. package/src/sap/ui/mdc/condition/ConditionConverter.js +2 -2
  41. package/src/sap/ui/mdc/condition/ConditionModel.js +2 -2
  42. package/src/sap/ui/mdc/condition/ConditionModelPropertyBinding.js +1 -1
  43. package/src/sap/ui/mdc/condition/ConditionValidateException.js +1 -1
  44. package/src/sap/ui/mdc/condition/FilterConverter.js +91 -57
  45. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +41 -4
  46. package/src/sap/ui/mdc/condition/Operator.js +18 -13
  47. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +2 -2
  48. package/src/sap/ui/mdc/condition/RangeOperator.js +2 -2
  49. package/src/sap/ui/mdc/designtime/Util.js +1 -1
  50. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbar.designtime.js +1 -1
  51. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbarAction.designtime.js +1 -1
  52. package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +22 -18
  53. package/src/sap/ui/mdc/designtime/field/Field.designtime.js +1 -1
  54. package/src/sap/ui/mdc/designtime/field/FieldBase.designtime.js +1 -1
  55. package/src/sap/ui/mdc/designtime/field/FilterField.designtime.js +1 -1
  56. package/src/sap/ui/mdc/designtime/field/MultiValueField.designtime.js +1 -1
  57. package/src/sap/ui/mdc/designtime/filterbar/FilterBar.designtime.js +12 -9
  58. package/src/sap/ui/mdc/designtime/filterbar/FilterBarBase.designtime.js +1 -1
  59. package/src/sap/ui/mdc/designtime/library.designtime.js +1 -1
  60. package/src/sap/ui/mdc/designtime/table/Table.designtime.js +11 -8
  61. package/src/sap/ui/mdc/enum/ActionToolbarActionAlignment.js +1 -1
  62. package/src/sap/ui/mdc/enum/BaseType.js +1 -1
  63. package/src/sap/ui/mdc/enum/ConditionValidated.js +1 -1
  64. package/src/sap/ui/mdc/enum/ContentMode.js +1 -1
  65. package/src/sap/ui/mdc/enum/EditMode.js +1 -1
  66. package/src/sap/ui/mdc/enum/FieldDisplay.js +1 -1
  67. package/src/sap/ui/mdc/enum/FilterBarValidationStatus.js +1 -1
  68. package/src/sap/ui/mdc/enum/LinkType.js +1 -1
  69. package/src/sap/ui/mdc/enum/OperatorOverwrite.js +1 -1
  70. package/src/sap/ui/mdc/enum/OperatorValueType.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/ReasonMode.js +1 -1
  74. package/src/sap/ui/mdc/enum/SelectType.js +1 -1
  75. package/src/sap/ui/mdc/enums/ActionToolbarActionAlignment.js +1 -1
  76. package/src/sap/ui/mdc/enums/BaseType.js +1 -1
  77. package/src/sap/ui/mdc/enums/ChartItemRoleType.js +1 -1
  78. package/src/sap/ui/mdc/enums/ChartItemType.js +1 -1
  79. package/src/sap/ui/mdc/enums/ChartP13nMode.js +1 -1
  80. package/src/sap/ui/mdc/enums/ChartToolbarActionType.js +1 -1
  81. package/src/sap/ui/mdc/enums/ConditionValidated.js +1 -1
  82. package/src/sap/ui/mdc/enums/ContentMode.js +1 -1
  83. package/src/sap/ui/mdc/enums/FieldDisplay.js +1 -1
  84. package/src/sap/ui/mdc/enums/FieldEditMode.js +1 -1
  85. package/src/sap/ui/mdc/enums/FilterBarP13nMode.js +1 -1
  86. package/src/sap/ui/mdc/enums/FilterBarValidationStatus.js +1 -1
  87. package/src/sap/ui/mdc/enums/LinkType.js +1 -1
  88. package/src/sap/ui/mdc/enums/OperatorName.js +1 -1
  89. package/src/sap/ui/mdc/enums/OperatorOverwrite.js +1 -1
  90. package/src/sap/ui/mdc/enums/OperatorValueType.js +1 -1
  91. package/src/sap/ui/mdc/enums/ProcessingStrategy.js +1 -1
  92. package/src/sap/ui/mdc/enums/ReasonMode.js +1 -1
  93. package/src/sap/ui/mdc/enums/RequestShowContainerReason.js +62 -0
  94. package/src/sap/ui/mdc/enums/TableGrowingMode.js +1 -1
  95. package/src/sap/ui/mdc/enums/TableMultiSelectMode.js +1 -1
  96. package/src/sap/ui/mdc/enums/TableP13nMode.js +1 -1
  97. package/src/sap/ui/mdc/enums/TableRowActionType.js +1 -1
  98. package/src/sap/ui/mdc/enums/TableRowCountMode.js +1 -1
  99. package/src/sap/ui/mdc/enums/TableSelectionMode.js +1 -1
  100. package/src/sap/ui/mdc/enums/TableType.js +1 -1
  101. package/src/sap/ui/mdc/enums/ValueHelpPropagationReason.js +1 -1
  102. package/src/sap/ui/mdc/enums/ValueHelpSelectionType.js +1 -1
  103. package/src/sap/ui/mdc/field/ConditionType.js +2 -2
  104. package/src/sap/ui/mdc/field/ConditionTypeMixin.js +2 -2
  105. package/src/sap/ui/mdc/field/ConditionsType.js +2 -2
  106. package/src/sap/ui/mdc/field/CustomFieldInfo.js +2 -2
  107. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +2 -2
  108. package/src/sap/ui/mdc/field/FieldBase.js +104 -47
  109. package/src/sap/ui/mdc/field/FieldBaseDelegate.js +1 -1
  110. package/src/sap/ui/mdc/field/FieldBaseRenderer.js +1 -1
  111. package/src/sap/ui/mdc/field/FieldInfoBase.js +2 -2
  112. package/src/sap/ui/mdc/field/FieldInput.js +44 -4
  113. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +2 -2
  114. package/src/sap/ui/mdc/field/FieldInputRenderer.js +1 -1
  115. package/src/sap/ui/mdc/field/FieldMultiInput.js +48 -4
  116. package/src/sap/ui/mdc/field/FieldMultiInputRenderer.js +1 -1
  117. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +2 -2
  118. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +1 -1
  119. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +2 -2
  120. package/src/sap/ui/mdc/field/TokenDisplay.js +2 -2
  121. package/src/sap/ui/mdc/field/TokenDisplayRenderer.js +1 -1
  122. package/src/sap/ui/mdc/field/TokenizerDisplay.js +43 -3
  123. package/src/sap/ui/mdc/field/TokenizerDisplayRenderer.js +1 -1
  124. package/src/sap/ui/mdc/field/content/BooleanContent.js +1 -1
  125. package/src/sap/ui/mdc/field/content/ContentFactory.js +2 -2
  126. package/src/sap/ui/mdc/field/content/DateContent.js +1 -1
  127. package/src/sap/ui/mdc/field/content/DateTimeContent.js +1 -1
  128. package/src/sap/ui/mdc/field/content/DefaultContent.js +1 -1
  129. package/src/sap/ui/mdc/field/content/LinkContent.js +1 -1
  130. package/src/sap/ui/mdc/field/content/SearchContent.js +1 -1
  131. package/src/sap/ui/mdc/field/content/TimeContent.js +1 -1
  132. package/src/sap/ui/mdc/field/content/UnitContent.js +1 -1
  133. package/src/sap/ui/mdc/field/splitValue.js +1 -1
  134. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +2 -2
  135. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +1 -1
  136. package/src/sap/ui/mdc/filterbar/IFilterContainer.js +1 -1
  137. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +2 -2
  138. package/src/sap/ui/mdc/filterbar/PropertyInfoValidator.js +1 -1
  139. package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +1 -1
  140. package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +1 -1
  141. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +2 -2
  142. package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +1 -1
  143. package/src/sap/ui/mdc/filterbar/p13n/FilterGroupLayout.js +1 -1
  144. package/src/sap/ui/mdc/filterbar/p13n/GroupContainer.js +1 -1
  145. package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +1 -1
  146. package/src/sap/ui/mdc/filterbar/vh/CollectiveSearchSelect.js +1 -1
  147. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +2 -2
  148. package/src/sap/ui/mdc/filterbar/vh/FilterBarDelegate.js +1 -1
  149. package/src/sap/ui/mdc/filterbar/vh/FilterContainer.js +1 -1
  150. package/src/sap/ui/mdc/flexibility/ActionToolbar.flexibility.js +1 -1
  151. package/src/sap/ui/mdc/flexibility/ActionToolbarAction.flexibility.js +1 -1
  152. package/src/sap/ui/mdc/flexibility/AggregateFlex.js +1 -1
  153. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +2 -2
  154. package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +1 -1
  155. package/src/sap/ui/mdc/flexibility/ChartTypeFlex.js +1 -1
  156. package/src/sap/ui/mdc/flexibility/ColumnFlex.js +1 -1
  157. package/src/sap/ui/mdc/flexibility/ConditionFlex.js +1 -1
  158. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +2 -2
  159. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +2 -2
  160. package/src/sap/ui/mdc/flexibility/GroupFlex.js +1 -1
  161. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +1 -1
  162. package/src/sap/ui/mdc/flexibility/Panel.flexibility.js +1 -1
  163. package/src/sap/ui/mdc/flexibility/PanelItem.flexibility.js +1 -1
  164. package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +1 -1
  165. package/src/sap/ui/mdc/flexibility/SortFlex.js +1 -1
  166. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +5 -1
  167. package/src/sap/ui/mdc/flexibility/Util.js +1 -1
  168. package/src/sap/ui/mdc/flexibility/actiontoolbar/CombineAction.js +2 -2
  169. package/src/sap/ui/mdc/flexibility/actiontoolbar/SplitAction.js +2 -2
  170. package/src/sap/ui/mdc/flexibility/helpers/addKeyOrName.js +1 -1
  171. package/src/sap/ui/mdc/flexibility/xConfigFlex.js +1 -1
  172. package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +1 -1
  173. package/src/sap/ui/mdc/i18n/interaction.xml +43 -0
  174. package/src/sap/ui/mdc/library.js +8 -4
  175. package/src/sap/ui/mdc/library.support.js +1 -1
  176. package/src/sap/ui/mdc/link/Factory.js +2 -2
  177. package/src/sap/ui/mdc/link/LinkItem.js +2 -2
  178. package/src/sap/ui/mdc/link/Log.js +1 -1
  179. package/src/sap/ui/mdc/link/Panel.js +2 -2
  180. package/src/sap/ui/mdc/link/PanelItem.js +2 -2
  181. package/src/sap/ui/mdc/link/PanelRenderer.js +1 -1
  182. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +2 -2
  183. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +2 -2
  184. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +2 -2
  185. package/src/sap/ui/mdc/messagebundle_bg.properties +14 -14
  186. package/src/sap/ui/mdc/messagebundle_de.properties +1 -1
  187. package/src/sap/ui/mdc/messagebundle_es.properties +1 -1
  188. package/src/sap/ui/mdc/messagebundle_sl.properties +3 -3
  189. package/src/sap/ui/mdc/messagebundle_th.properties +8 -8
  190. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +2 -2
  191. package/src/sap/ui/mdc/mixin/DelegateMixin.js +2 -2
  192. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +2 -2
  193. package/src/sap/ui/mdc/mixin/PromiseMixin.js +2 -2
  194. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +2 -2
  195. package/src/sap/ui/mdc/mixin/delegate/FilterIntegrationDefault.js +1 -1
  196. package/src/sap/ui/mdc/odata/TypeMap.js +2 -2
  197. package/src/sap/ui/mdc/odata/TypeUtil.js +1 -1
  198. package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +1 -1
  199. package/src/sap/ui/mdc/odata/v4/ODataMetaModelUtil.js +1 -1
  200. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +52 -29
  201. package/src/sap/ui/mdc/odata/v4/TypeMap.js +2 -2
  202. package/src/sap/ui/mdc/odata/v4/TypeUtil.js +1 -1
  203. package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +1 -1
  204. package/src/sap/ui/mdc/odata/v4/util/DelegateUtil.js +1 -1
  205. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +3 -3
  206. package/src/sap/ui/mdc/p13n/P13nBuilder.js +1 -1
  207. package/src/sap/ui/mdc/p13n/PersistenceProvider.js +1 -1
  208. package/src/sap/ui/mdc/p13n/PropertyHelper.js +2 -2
  209. package/src/sap/ui/mdc/p13n/StateUtil.js +1 -1
  210. package/src/sap/ui/mdc/p13n/panels/ActionToolbarPanel.js +2 -2
  211. package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +1 -1
  212. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +1 -1
  213. package/src/sap/ui/mdc/p13n/panels/FilterPanel.js +1 -1
  214. package/src/sap/ui/mdc/p13n/panels/GroupView.js +1 -1
  215. package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +4 -4
  216. package/src/sap/ui/mdc/p13n/subcontroller/ActionToolbarController.js +1 -1
  217. package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +1 -1
  218. package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +1 -1
  219. package/src/sap/ui/mdc/p13n/subcontroller/ChartItemController.js +1 -1
  220. package/src/sap/ui/mdc/p13n/subcontroller/ChartTypeController.js +1 -1
  221. package/src/sap/ui/mdc/p13n/subcontroller/ColumnController.js +1 -1
  222. package/src/sap/ui/mdc/p13n/subcontroller/ColumnFreezeController.js +161 -0
  223. package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +1 -1
  224. package/src/sap/ui/mdc/p13n/subcontroller/GroupController.js +1 -1
  225. package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +1 -1
  226. package/src/sap/ui/mdc/p13n/subcontroller/SelectionController.js +1 -1
  227. package/src/sap/ui/mdc/p13n/subcontroller/ShowDetailsController.js +2 -2
  228. package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +1 -1
  229. package/src/sap/ui/mdc/rules/Table.support.js +1 -1
  230. package/src/sap/ui/mdc/table/Column.js +20 -6
  231. package/src/sap/ui/mdc/table/ColumnSettings.js +2 -2
  232. package/src/sap/ui/mdc/table/CreationRow.js +2 -2
  233. package/src/sap/ui/mdc/table/DragDropConfig.js +2 -2
  234. package/src/sap/ui/mdc/table/GridTableType.js +64 -2
  235. package/src/sap/ui/mdc/table/PropertyHelper.js +18 -4
  236. package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +2 -2
  237. package/src/sap/ui/mdc/table/ResponsiveTableType.js +12 -6
  238. package/src/sap/ui/mdc/table/RowActionItem.js +2 -2
  239. package/src/sap/ui/mdc/table/RowSettings.js +2 -2
  240. package/src/sap/ui/mdc/table/TableSettings.js +1 -1
  241. package/src/sap/ui/mdc/table/TableTypeBase.js +1 -1
  242. package/src/sap/ui/mdc/table/TreeTableType.js +1 -1
  243. package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +114 -47
  244. package/src/sap/ui/mdc/table/menu/GroupHeaderRowContextMenu.js +1 -1
  245. package/src/sap/ui/mdc/table/menu/QuickActionContainer.js +1 -1
  246. package/src/sap/ui/mdc/table/utils/Personalization.js +20 -2
  247. package/src/sap/ui/mdc/themes/base/AdaptFiltersPanel.less +13 -8
  248. package/src/sap/ui/mdc/themes/base/AdaptationFilterBar.less +7 -2
  249. package/src/sap/ui/mdc/themes/base/FieldBase.less +11 -5
  250. package/src/sap/ui/mdc/themes/base/FilterBar.less +5 -3
  251. package/src/sap/ui/mdc/themes/base/GroupView.less +37 -32
  252. package/src/sap/ui/mdc/themes/base/InfoPanel.less +28 -22
  253. package/src/sap/ui/mdc/themes/base/ListView.less +20 -15
  254. package/src/sap/ui/mdc/themes/base/PersonalizationDialog.less +6 -13
  255. package/src/sap/ui/mdc/themes/base/QueryPanel.less +5 -4
  256. package/src/sap/ui/mdc/themes/base/Table.less +6 -0
  257. package/src/sap/ui/mdc/themes/base/TokenDisplay.less +27 -29
  258. package/src/sap/ui/mdc/themes/base/TokenizerDisplay.less +18 -22
  259. package/src/sap/ui/mdc/themes/base/ValueHelpDialog.less +31 -27
  260. package/src/sap/ui/mdc/themes/base/library.source.less +1 -3
  261. package/src/sap/ui/mdc/ushell/LinkDelegate.js +23 -23
  262. package/src/sap/ui/mdc/ushell/SemanticObjectMapping.js +2 -2
  263. package/src/sap/ui/mdc/ushell/SemanticObjectMappingItem.js +2 -2
  264. package/src/sap/ui/mdc/ushell/SemanticObjectUnavailableAction.js +2 -2
  265. package/src/sap/ui/mdc/util/Common.js +1 -1
  266. package/src/sap/ui/mdc/util/DateUtil.js +1 -1
  267. package/src/sap/ui/mdc/util/DensityHelper.js +1 -1
  268. package/src/sap/ui/mdc/util/FilterUtil.js +1 -1
  269. package/src/sap/ui/mdc/util/IdentifierUtil.js +1 -1
  270. package/src/sap/ui/mdc/util/InfoBar.js +2 -2
  271. package/src/sap/ui/mdc/util/InfoBarRenderer.js +1 -1
  272. package/src/sap/ui/mdc/util/PromiseCache.js +2 -2
  273. package/src/sap/ui/mdc/util/PropertyHelper.js +38 -10
  274. package/src/sap/ui/mdc/util/PropertyHelperUtil.js +2 -2
  275. package/src/sap/ui/mdc/util/TypeMap.js +1 -1
  276. package/src/sap/ui/mdc/util/TypeUtil.js +1 -1
  277. package/src/sap/ui/mdc/util/loadModules.js +1 -1
  278. package/src/sap/ui/mdc/valuehelp/CollectiveSearchSelect.js +1 -1
  279. package/src/sap/ui/mdc/valuehelp/Dialog.js +36 -17
  280. package/src/sap/ui/mdc/valuehelp/FilterBar.js +2 -2
  281. package/src/sap/ui/mdc/valuehelp/FilterBarDelegate.js +1 -1
  282. package/src/sap/ui/mdc/valuehelp/FilterContainer.js +1 -1
  283. package/src/sap/ui/mdc/valuehelp/Popover.js +73 -24
  284. package/src/sap/ui/mdc/valuehelp/base/Container.js +6 -20
  285. package/src/sap/ui/mdc/valuehelp/base/Content.js +13 -25
  286. package/src/sap/ui/mdc/valuehelp/base/DefineConditionPanel.js +4 -3
  287. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +2 -2
  288. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +6 -6
  289. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +2 -2
  290. package/src/sap/ui/mdc/valuehelp/content/Bool.js +12 -2
  291. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +12 -2
  292. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +68 -34
  293. package/src/sap/ui/mdc/valuehelp/content/FixedListItem.js +2 -2
  294. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +8 -4
  295. package/src/sap/ui/mdc/valuehelp/content/MTable.js +165 -92
  296. package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +206 -1
  297. package/test/sap/ui/mdc/testutils/opa/p13n/Util.js +2 -1
  298. package/test/sap/ui/mdc/testutils/opa/table/TestObjects.js +44 -0
  299. package/ui5.yaml +1 -1
  300. package/.reuse/dep5 +0 -471
  301. package/src/sap/ui/mdc/themes/base/SelectionDialog.less +0 -5
  302. package/src/sap/ui/mdc/themes/base/Wrapper.less +0 -17
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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
  * @extends sap.ui.model.json.JSONModel
34
34
  *
35
35
  * @author SAP SE
36
- * @version 1.134.0
36
+ * @version 1.136.0
37
37
  * @since 1.48.0
38
38
  * @alias sap.ui.mdc.condition.ConditionModel
39
39
  *
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  *
27
27
  * @namespace
28
28
  * @author SAP SE
29
- * @version 1.134.0
29
+ * @version 1.136.0
30
30
  * @since 1.78.0
31
31
  * @alias sap.ui.mdc.condition.FilterConverter
32
32
  *
@@ -86,58 +86,102 @@ sap.ui.define([
86
86
  * @ui5-restricted sap.ui.mdc
87
87
  */
88
88
  createFilters: function(oConditions, oConditionTypes, fConvert2FilterCallback, bCaseSensitive) {
89
- let i, aLocalIncludeFilters, aLocalExcludeFilters, oOperator, oFilter, oNewFilter, oCondition, oAnyOrAllFilterParam;
89
+ let i, aLocalIncludeFilters, aLocalExcludeFilters, oOperator, oFilter, oNewFilter, oCondition;
90
90
  const aOverallFilters = [];
91
91
 
92
- const convertAnyAllFilter = function(oFilter, sOperator, sPattern) {
93
- // var sOperator = FilterOperator.Any;
94
- // var sPattern = "*/";
95
- const sVariable = "L1";
96
-
97
- // in case of nested inner filters call the convertAnyAllFilters for all sub filters.
98
- if (!oFilter.sPath && oFilter.aFilters) {
99
- let oFilterParam;
100
- oFilter.aFilters.forEach((oFilter) => { oFilterParam = convertAnyAllFilter(oFilter, sOperator, sPattern);} );
101
- return oFilterParam || false;
102
- }
92
+ const convertAnyAllFilter = function(oFilter, sFieldPath, sPropertyPath) {
93
+ if ([FilterOperator.Any,FilterOperator.All].includes(oFilter.getOperator())) {
94
+ // existing Any/All filters are not changed
95
+ return {filter: null, anyAllFilters: [oFilter]};
96
+ } else if (!oFilter.getPath() && oFilter.getFilters()) {
97
+ // in case of nested inner filters call the convertAnyAllFilters for all sub filters.
98
+ const aFilters = [];
99
+ let aAnyAllFilters = [];
100
+ oFilter.getFilters().forEach((oFilter) => {
101
+ // aFilters.push(convertAnyAllFilter(oFilter, sFieldPath, sPropertyPath));
102
+ const oConverted = convertAnyAllFilter(oFilter, sFieldPath, sPropertyPath);
103
+ if (oConverted.filter) {
104
+ aFilters.push(oConverted.filter);
105
+ }
106
+ if (oConverted.anyAllFilters.length > 0) {
107
+ aAnyAllFilters = aAnyAllFilters.concat(oConverted.anyAllFilters);
108
+ }
109
+ });
103
110
 
104
- if (oFilter.sPath?.indexOf(sPattern) > -1) {
105
- const aSections = oFilter.sPath.split(sPattern);
106
- if (aSections.length === 2) {
107
- const [sNavPath, sPropertyPath] = aSections;
108
- oFilter.sPath = sVariable + "/" + sPropertyPath;
109
-
110
- // the Any/All filter parameter for all filters of one condition
111
- return {
112
- path: sNavPath,
113
- operator: sOperator,
114
- variable: sVariable,
115
- condition: null // this will be set later with the filter statement for all ANY/ALL filters
116
- };
117
- } else {
118
- throw new Error("FilterConverter: not supported binding " + oFilter.sPath);
111
+ let oNewFilter;
112
+ if (aFilters.length === 1) {
113
+ [oNewFilter] = aFilters;
114
+ } else if (aFilters.length > 1){
115
+ oNewFilter = new Filter({filters: aFilters, and: oFilter.isAnd()});
119
116
  }
117
+ return {filter: oNewFilter, anyAllFilters: aAnyAllFilters};
118
+ } else if (oFilter.getPath() === sFieldPath) {
119
+ oFilter.sPath = sPropertyPath;
120
+ return {filter: oFilter, anyAllFilters: []};
120
121
  }
121
- return false;
122
+ return oFilter;
122
123
  };
123
124
 
124
- const convertToAnyOrAllFilter = function(oFilter) {
125
- // ANY condition handling e.g. fieldPath "navPath*/propertyPath"
126
- const oFilterParam = convertAnyAllFilter(oFilter, FilterOperator.Any, "*/");
127
- if (oFilterParam) {
128
- return oFilterParam;
129
- } else {
130
- // ALL condition handling e.g. fieldPath "navPath+/propertyPath"
131
- return convertAnyAllFilter(oFilter, FilterOperator.All, "+/");
125
+ // Include-filters are combined in an OR-filter put into an All or A-filter
126
+ // Exclude-filters are combined in an AND-filter and put into an All-filter (As the searched entry must be in none of the targets.)
127
+ // Special case "empty", here the filter is created in the operator to allow custom empty-operators.
128
+ const convertToAnyOrAllFilter = function(aFilters, sFieldPath, bExclude) {
129
+ const [sNavPath, sPattern, sPropertyPath, sWrongPart] = sFieldPath.split(/([\*\+]\/)/);
130
+ if (sPattern && aFilters.length > 0) {
131
+ let oFilter;
132
+
133
+ if (aFilters.length === 1) {
134
+ [oFilter] = aFilters;
135
+ } else if (aFilters.length > 1) {
136
+ oFilter = new Filter({ filters: aFilters, and: bExclude });
137
+ }
138
+
139
+ if (oFilter) {
140
+ const sVariable = "L1";
141
+
142
+ if (!sWrongPart) { // only one occurence of pattern allowed
143
+ const oConverted = convertAnyAllFilter(oFilter, sFieldPath, sVariable + "/" + sPropertyPath);
144
+ let oNewFilter;
145
+ if (oConverted.filter) {
146
+ // the Any/All filter parameter for all filters of one FieldPath
147
+ oNewFilter = new Filter({
148
+ path: sNavPath,
149
+ operator: sPattern === "*/" && !bExclude ? FilterOperator.Any : FilterOperator.All, // exclude filters are All-filters, even in Any case
150
+ variable: sVariable,
151
+ condition: oConverted.filter
152
+ });
153
+ }
154
+ if (oConverted.anyAllFilters.length > 0) {
155
+ if (oNewFilter) {
156
+ oConverted.anyAllFilters.push(oNewFilter);
157
+ oNewFilter = new Filter({
158
+ filters: oConverted.anyAllFilters,
159
+ and: bExclude
160
+ });
161
+ } else if (oConverted.anyAllFilters.length === 1) {
162
+ [oNewFilter] = oConverted.anyAllFilters;
163
+ } else {
164
+ oNewFilter = new Filter({
165
+ filters: oConverted.anyAllFilters,
166
+ and: bExclude
167
+ });
168
+ }
169
+ }
170
+
171
+ return [oNewFilter];
172
+ } else {
173
+ throw new Error("FilterConverter: not supported binding " + sFieldPath);
174
+ }
175
+ }
132
176
  }
133
- };
134
177
 
178
+ return aFilters; // just use unchanged Filter
179
+ };
135
180
 
136
181
  // OR-combine filters for each property
137
182
  for (const sFieldPath in oConditions) {
138
183
  aLocalIncludeFilters = [];
139
184
  aLocalExcludeFilters = [];
140
- oAnyOrAllFilterParam = null;
141
185
  const aConditions = oConditions[sFieldPath];
142
186
 
143
187
  if (sFieldPath === "$search") {
@@ -201,19 +245,17 @@ sap.ui.define([
201
245
  continue;
202
246
  }
203
247
 
204
- // support for Any/all filters for include operations
205
- // Any/All condition handling e.g. fieldPath "navPath*/propertyPath" or "navPath+/propertyPath"
206
- oAnyOrAllFilterParam = convertToAnyOrAllFilter(oFilter);
207
248
  aLocalIncludeFilters.push(oFilter);
208
249
  } else {
209
-
210
- // support for Any/All filters for exclude operations
211
- // Any/All condition handling e.g. fieldPath "navPath*/propertyPath" or "navPath+/propertyPath"
212
- oAnyOrAllFilterParam = convertToAnyOrAllFilter(oFilter);
213
250
  aLocalExcludeFilters.push(oFilter);
214
251
  }
215
252
  }
216
253
 
254
+ // support for Any or All filters - update the Any/All Filter in the include and exclude-filters
255
+ // Any/All condition handling e.g. fieldPath "navPath*/propertyPath" or "navPath+/propertyPath"
256
+ aLocalIncludeFilters = convertToAnyOrAllFilter(aLocalIncludeFilters, sFieldPath, false);
257
+ aLocalExcludeFilters = convertToAnyOrAllFilter(aLocalExcludeFilters, sFieldPath, true);
258
+
217
259
  // take the single Filter or combine all with OR
218
260
  oFilter = undefined;
219
261
  if (aLocalIncludeFilters.length === 1) {
@@ -234,15 +276,6 @@ sap.ui.define([
234
276
  oNewFilter = new Filter({ filters: aLocalExcludeFilters, and: true }); // to have all filters for differents path AND grouped
235
277
  }
236
278
 
237
- // support for Any or All filters - update the Any/All Filter in the OverAllFilters array
238
- if (oAnyOrAllFilterParam) {
239
- // oAnyOrAllFilterParam.path = NavPath,
240
- // oAnyOrAllFilterParam.operator = "Any/All",
241
- // oAnyOrAllFilterParam.variable = "L1"
242
- oAnyOrAllFilterParam.condition = oNewFilter;
243
- oNewFilter = new Filter(oAnyOrAllFilterParam);
244
- }
245
-
246
279
  if (oNewFilter) {
247
280
  aOverallFilters.push(oNewFilter);
248
281
  }
@@ -280,7 +313,8 @@ sap.ui.define([
280
313
  return "(" + sRes + ")";
281
314
  } else {
282
315
  if (oFilter.sOperator === FilterOperator.Any || oFilter.sOperator === FilterOperator.All) {
283
- sRes = oFilter.sVariable + ":" + oFilter.sPath + " " + oFilter.sOperator + " " + FilterConverter.prettyPrintFilters(oFilter.oCondition);
316
+ sRes = oFilter.sVariable ? oFilter.sVariable + ":" : "";
317
+ sRes = sRes + oFilter.sPath + " " + oFilter.sOperator + " " + FilterConverter.prettyPrintFilters(oFilter.oCondition);
284
318
  } else {
285
319
  if (oFilter.bCaseSensitive === false) {
286
320
  sRes = "tolower(" + oFilter.sPath + ") " + oFilter.sOperator + " tolower('" + oFilter.oValue1 + "')";
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -68,7 +68,7 @@ sap.ui.define([
68
68
  *
69
69
  * @namespace
70
70
  * @author SAP SE
71
- * @version 1.134.0
71
+ * @version 1.136.0
72
72
  * @since 1.73.0
73
73
  * @alias sap.ui.mdc.condition.FilterOperatorUtil
74
74
  *
@@ -531,7 +531,23 @@ sap.ui.define([
531
531
  tokenText: _getText(OperatorName.Empty, false),
532
532
  valueTypes: [],
533
533
  getModelFilter: function(oCondition, sFieldPath, oType, bCaseSensitive, sBaseType) {
534
- if (sBaseType === BaseType.String) { // depending on backend and/or Type configuration filter is "" or null
534
+ const oAnyAllPath = _getAnyAllPath(sFieldPath);
535
+ if (oAnyAllPath) {
536
+ // Any or All Filter -> Empty needs to filter for non-existance of navigation targets
537
+ // once the NOT-filtering exists this can be changed into NOT-Any (at least for oData V4)
538
+ return new Filter({
539
+ path: oAnyAllPath.navPath,
540
+ operator: ModelOperator.All,
541
+ variable: "L1",
542
+ condition: new Filter({
543
+ filters: [ // create a Filter that cannot bring a result
544
+ new Filter({path: "L1/" + oAnyAllPath.propertyPath, operator: ModelOperator.EQ, value1: null}),
545
+ new Filter({path: "L1/" + oAnyAllPath.propertyPath, operator: ModelOperator.NE, value1: null})
546
+ ],
547
+ and: true
548
+ })
549
+ });
550
+ } else if (sBaseType === BaseType.String) { // depending on backend and/or Type configuration filter is "" or null
535
551
  let isNullable = false;
536
552
  if (oType) {
537
553
  const vResult = oType.parseValue("", "string");
@@ -568,7 +584,14 @@ sap.ui.define([
568
584
  valueTypes: [],
569
585
  exclude: true,
570
586
  getModelFilter: function(oCondition, sFieldPath, oType, bCaseSensitive, sBaseType) {
571
- if (sBaseType === BaseType.String) { // depending on backend and/or Type configuration filter is "" or null
587
+ const oAnyAllPath = _getAnyAllPath(sFieldPath);
588
+ if (oAnyAllPath) {
589
+ // Any or All Filter -> NotEmpty needs to filter for existance of navigation targets
590
+ return new Filter({
591
+ path: oAnyAllPath.navPath,
592
+ operator: ModelOperator.Any
593
+ });
594
+ } else if (sBaseType === BaseType.String) { // depending on backend and/or Type configuration filter is "" or null
572
595
  let isNullable = false;
573
596
  if (oType) {
574
597
  const vResult = oType.parseValue("", "string");
@@ -2563,6 +2586,20 @@ sap.ui.define([
2563
2586
 
2564
2587
  }
2565
2588
 
2589
+ function _getAnyAllPath(sFieldPath) {
2590
+
2591
+ const [sNavPath, sPattern, sPropertyPath, sWrongPart] = sFieldPath.split(/([\*\+]\/)/);
2592
+ if (sPattern) {
2593
+ // Any or All Filter -> Empty needs to filter for non-existance of navigation targets
2594
+ if (!sWrongPart) { // only one occurence of pattern allowed
2595
+ return {navPath: sNavPath, propertyPath: sPropertyPath};
2596
+ } else {
2597
+ throw new Error("FilterOperatorUtil: not supported binding " + sFieldPath);
2598
+ }
2599
+ }
2600
+
2601
+ }
2602
+
2566
2603
  return FilterOperatorUtil;
2567
2604
 
2568
2605
  }, /* bExport= */
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -136,7 +136,7 @@ sap.ui.define([
136
136
  * @param {function} [oConfiguration.getTextForCopy] Function to determine the text copied into clipboard
137
137
  * @constructor
138
138
  * @author SAP SE
139
- * @version 1.134.0
139
+ * @version 1.136.0
140
140
  * @public
141
141
  * @alias sap.ui.mdc.condition.Operator
142
142
  * @since 1.73.0
@@ -643,28 +643,33 @@ sap.ui.define([
643
643
  if (vValue === undefined || vValue === null) {
644
644
  vValue = oUseType ? oUseType.parseValue("", "string") : ""; // for empty value use initial value of type
645
645
  }
646
+ let vValidateValues = vValue;
647
+
648
+ if (oUseType.isA("sap.ui.model.CompositeType") && Array.isArray(vValue) && aUseCompositeTypes && oUseType.getUseInternalValues()) {
649
+ vValidateValues = merge([], vValue); // use copy to not change original array
650
+ for (let j = 0; j < vValidateValues.length; j++) {
651
+ if (aUseCompositeTypes[j]) {
652
+ // use internal format for validation on CompositeType
653
+ const oFormat = aUseCompositeTypes[j].getModelFormat();
654
+ if (oFormat && typeof oFormat.parse === "function") {
655
+ vValidateValues[j] = oFormat.parse(vValidateValues[j]);
656
+ }
657
+ }
658
+ }
659
+ }
660
+
661
+ oUseType.validateValue(vValidateValues);
646
662
 
647
663
  if (oUseType.isA("sap.ui.model.CompositeType") && Array.isArray(vValue) && aUseCompositeTypes) {
648
664
  // validate for basic types too
649
- vValue = merge([], vValue); // use copy to not change original array
650
665
  for (let j = 0; j < vValue.length; j++) {
651
666
  if (aUseCompositeTypes[j]) {
652
667
  if (iCompositePart === undefined || j === iCompositePart) { // validate only the part that has changed. (if number has changed but not unit, no validation for units type is needed)
653
668
  aUseCompositeTypes[j].validateValue(vValue[j]);
654
669
  }
655
-
656
- if (oUseType.getUseInternalValues()) {
657
- // use internal format for validation on CompositeType
658
- const oFormat = aUseCompositeTypes[j].getModelFormat();
659
- if (oFormat && typeof oFormat.parse === "function") {
660
- vValue[j] = oFormat.parse(vValue[j]);
661
- }
662
- }
663
670
  }
664
671
  }
665
672
  }
666
-
667
- oUseType.validateValue(vValue);
668
673
  }
669
674
  }
670
675
  }
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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.134.0
54
+ * @version 1.136.0
55
55
  *
56
56
  * @private
57
57
  * @ui5-restricted sap.ui.mdc
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * @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.
40
40
  * @constructor
41
41
  * @author SAP SE
42
- * @version 1.134.0
42
+ * @version 1.136.0
43
43
  * @public
44
44
  * @alias sap.ui.mdc.condition.RangeOperator
45
45
  * @since 1.74.0
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -11,23 +11,27 @@ sap.ui.define([
11
11
  const oDesignTime = {
12
12
  actions: {
13
13
  settings: {
14
- "sap.ui.mdc": {
15
- name: "p13nDialog.VIEW_SETTINGS",
16
- handler: function(oControl, mPropertyBag) {
17
- const aP13nMode = oControl.getP13nMode();
18
- const iIdx = aP13nMode.indexOf("Type");
19
- if (iIdx > -1) {
20
- aP13nMode.splice(iIdx, 1);
21
- }
22
-
23
- if (oControl.isPropertyHelperFinal()) {
24
- return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, aP13nMode);
25
- } else {
26
- return oControl.finalizePropertyHelper().then(() => {
27
- return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, aP13nMode);
28
- });
29
- }
30
- }
14
+ "sap.ui.mdc": function(oControl) {
15
+ return Engine.getInstance()._runWithPersistence(oControl, (bIsGlobal) => {
16
+ return {
17
+ name: "p13nDialog.VIEW_SETTINGS",
18
+ handler: function(oControl, mPropertyBag) {
19
+ const aP13nMode = oControl.getP13nMode();
20
+ const iIdx = aP13nMode.indexOf("Type");
21
+ if (iIdx > -1) {
22
+ aP13nMode.splice(iIdx, 1);
23
+ }
24
+ if (oControl.isPropertyHelperFinal()) {
25
+ return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, aP13nMode);
26
+ } else {
27
+ return oControl.finalizePropertyHelper().then(() => {
28
+ return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, aP13nMode);
29
+ });
30
+ }
31
+ },
32
+ CAUTION_variantIndependent: bIsGlobal
33
+ };
34
+ });
31
35
  }
32
36
  }
33
37
  },
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -11,14 +11,17 @@ sap.ui.define([
11
11
  return {
12
12
  actions: {
13
13
  settings: {
14
- "sap.ui.mdc": {
15
- name: "filterbar.ADAPT_TITLE",
16
- handler: function (oControl, mPropertyBag) {
17
- //CHECK: move metadata finalizing to Engine?
18
- return oControl.initializedWithMetadata().then(() => {
19
- return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, "Item");
20
- });
21
- }
14
+ "sap.ui.mdc": function(oControl) {
15
+ return Engine.getInstance()._runWithPersistence(oControl, (bIsGlobal) => ({
16
+ name: "filterbar.ADAPT_TITLE",
17
+ handler: function (oControl, mPropertyBag) {
18
+ //CHECK: move metadata finalizing to Engine?
19
+ return oControl.initializedWithMetadata().then(() => {
20
+ return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, "Item");
21
+ });
22
+ },
23
+ CAUTION_variantIndependent: bIsGlobal
24
+ }));
22
25
  }
23
26
  }
24
27
  },
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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([
@@ -14,13 +14,16 @@ sap.ui.define([
14
14
  description: "{description}",
15
15
  actions: {
16
16
  settings: {
17
- "sap.ui.mdc": {
18
- name: "p13nDialog.VIEW_SETTINGS",
19
- handler: function (oControl, mPropertyBag) {
20
- return oControl.finalizePropertyHelper().then(() => {
21
- return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, oControl.getActiveP13nModes());
22
- });
23
- }
17
+ "sap.ui.mdc": function(oControl) {
18
+ return Engine.getInstance()._runWithPersistence(oControl, (bIsGlobal) => ( {
19
+ name: "p13nDialog.VIEW_SETTINGS",
20
+ handler: function (oControl, mPropertyBag) {
21
+ return oControl.finalizePropertyHelper().then(() => {
22
+ return Engine.getInstance().getRTASettingsActionHandler(oControl, mPropertyBag, oControl.getActiveP13nModes());
23
+ });
24
+ },
25
+ CAUTION_variantIndependent: bIsGlobal
26
+ }));
24
27
  }
25
28
  }
26
29
  },
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * OpenUI5
3
- * (c) Copyright 2009-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 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-2025 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2025 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6