@openui5/sap.ui.mdc 1.96.2 → 1.98.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 (329) hide show
  1. package/.reuse/dep5 +26 -31
  2. package/THIRDPARTY.txt +15 -21
  3. package/package.json +4 -4
  4. package/src/sap/ui/mdc/.library +2 -2
  5. package/src/sap/ui/mdc/ActionToolbar.js +3 -8
  6. package/src/sap/ui/mdc/AggregationBaseDelegate.js +2 -2
  7. package/src/sap/ui/mdc/BaseDelegate.js +2 -2
  8. package/src/sap/ui/mdc/Chart.js +1017 -1797
  9. package/src/sap/ui/mdc/ChartDelegate.js +430 -271
  10. package/src/sap/ui/mdc/ChartRenderer.js +74 -78
  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 +4 -3
  15. package/src/sap/ui/mdc/FilterBar.js +4 -3
  16. package/src/sap/ui/mdc/FilterBarDelegate.js +1 -1
  17. package/src/sap/ui/mdc/FilterField.js +26 -9
  18. package/src/sap/ui/mdc/Link.js +5 -4
  19. package/src/sap/ui/mdc/LinkDelegate.js +2 -2
  20. package/src/sap/ui/mdc/MultiValueField.js +3 -2
  21. package/src/sap/ui/mdc/Table.js +174 -142
  22. package/src/sap/ui/mdc/TableDelegate.js +31 -16
  23. package/src/sap/ui/mdc/ValueHelp.js +52 -16
  24. package/src/sap/ui/mdc/ValueHelpDelegate.js +21 -1
  25. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +2 -2
  26. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarActionRenderer.js +1 -1
  27. package/src/sap/ui/mdc/{chartNew/ChartSelectionDetailsNew.js → chart/ChartSelectionDetails.js} +9 -9
  28. package/src/sap/ui/mdc/chart/ChartSettings.js +1 -1
  29. package/src/sap/ui/mdc/{chartNew/ChartToolbarNew.js → chart/ChartToolbar.js} +11 -11
  30. package/src/sap/ui/mdc/chart/ChartTypeButton.js +49 -53
  31. package/src/sap/ui/mdc/{chartNew/DrillBreadcrumbsNew.js → chart/DrillBreadcrumbs.js} +4 -4
  32. package/src/sap/ui/mdc/chart/DrillStackHandler.js +39 -250
  33. package/src/sap/ui/mdc/chart/Item.js +63 -93
  34. package/src/sap/ui/mdc/{chartNew/PropertyHelperNew.js → chart/PropertyHelper.js} +4 -4
  35. package/src/sap/ui/mdc/chart/SelectionDetailsActions.js +18 -22
  36. package/src/sap/ui/mdc/condition/Condition.js +2 -2
  37. package/src/sap/ui/mdc/condition/ConditionConverter.js +2 -2
  38. package/src/sap/ui/mdc/condition/ConditionModel.js +2 -2
  39. package/src/sap/ui/mdc/condition/ConditionModelPropertyBinding.js +1 -1
  40. package/src/sap/ui/mdc/condition/FilterConverter.js +2 -2
  41. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +7 -3
  42. package/src/sap/ui/mdc/condition/Operator.js +10 -10
  43. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +437 -0
  44. package/src/sap/ui/mdc/condition/RangeOperator.js +2 -2
  45. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbar.designtime.js +1 -1
  46. package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +78 -6
  47. package/src/sap/ui/mdc/designtime/field/Field.designtime.js +97 -0
  48. package/src/sap/ui/mdc/designtime/field/FieldBase.designtime.js +104 -0
  49. package/src/sap/ui/mdc/designtime/field/FilterField.designtime.js +22 -0
  50. package/src/sap/ui/mdc/designtime/field/MultiValueField.designtime.js +23 -0
  51. package/src/sap/ui/mdc/designtime/filterbar/FilterBar.designtime.js +1 -1
  52. package/src/sap/ui/mdc/designtime/filterbar/FilterBarBase.designtime.js +4 -1
  53. package/src/sap/ui/mdc/designtime/library.designtime.js +1 -1
  54. package/src/sap/ui/mdc/designtime/link/Panel.designtime.js +1 -1
  55. package/src/sap/ui/mdc/designtime/link/PanelItem.designtime.js +1 -1
  56. package/src/sap/ui/mdc/designtime/p13n/PersistenceProvider.designtime.js +1 -1
  57. package/src/sap/ui/mdc/designtime/table/Table.designtime.js +1 -1
  58. package/src/sap/ui/mdc/enum/ActionToolbarActionAlignment.js +1 -1
  59. package/src/sap/ui/mdc/enum/BaseType.js +1 -1
  60. package/src/sap/ui/mdc/enum/ConditionValidated.js +1 -1
  61. package/src/sap/ui/mdc/enum/ContentMode.js +1 -1
  62. package/src/sap/ui/mdc/enum/EditMode.js +1 -1
  63. package/src/sap/ui/mdc/enum/FieldDisplay.js +1 -1
  64. package/src/sap/ui/mdc/enum/OutParameterMode.js +1 -1
  65. package/src/sap/ui/mdc/enum/PersistenceMode.js +1 -1
  66. package/src/sap/ui/mdc/enum/SelectType.js +1 -1
  67. package/src/sap/ui/mdc/field/BoolFieldHelp.js +2 -2
  68. package/src/sap/ui/mdc/field/ConditionFieldHelp.js +2 -2
  69. package/src/sap/ui/mdc/field/ConditionType.js +8 -8
  70. package/src/sap/ui/mdc/field/ConditionsType.js +8 -8
  71. package/src/sap/ui/mdc/field/CustomFieldHelp.js +2 -2
  72. package/src/sap/ui/mdc/field/CustomFieldInfo.js +2 -2
  73. package/src/sap/ui/mdc/field/DefineConditionPanel.js +59 -22
  74. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +311 -0
  75. package/src/sap/ui/mdc/field/FieldBase.js +84 -53
  76. package/src/sap/ui/mdc/field/FieldBaseDelegate.js +1 -1
  77. package/src/sap/ui/mdc/field/FieldBaseRenderer.js +1 -4
  78. package/src/sap/ui/mdc/field/FieldHelpBase.js +2 -2
  79. package/src/sap/ui/mdc/field/FieldHelpBaseDelegate.js +1 -1
  80. package/src/sap/ui/mdc/field/FieldInfoBase.js +2 -2
  81. package/src/sap/ui/mdc/field/FieldInput.js +2 -2
  82. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +2 -2
  83. package/src/sap/ui/mdc/field/FieldInputRenderer.js +1 -1
  84. package/src/sap/ui/mdc/field/FieldMultiInput.js +2 -2
  85. package/src/sap/ui/mdc/field/FieldMultiInputRenderer.js +1 -1
  86. package/src/sap/ui/mdc/field/FieldValueHelp.js +8 -8
  87. package/src/sap/ui/mdc/field/FieldValueHelpContentWrapperBase.js +2 -2
  88. package/src/sap/ui/mdc/field/FieldValueHelpDelegate.js +21 -1
  89. package/src/sap/ui/mdc/field/FieldValueHelpMTableWrapper.js +2 -2
  90. package/src/sap/ui/mdc/field/FieldValueHelpMdcTableWrapper.js +2 -2
  91. package/src/sap/ui/mdc/field/FieldValueHelpTableWrapperBase.js +3 -2
  92. package/src/sap/ui/mdc/field/FieldValueHelpUITableWrapper.js +2 -2
  93. package/src/sap/ui/mdc/field/InParameter.js +2 -2
  94. package/src/sap/ui/mdc/field/ListFieldHelp.js +11 -3
  95. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +2 -2
  96. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +1 -1
  97. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +2 -2
  98. package/src/sap/ui/mdc/field/OutParameter.js +2 -2
  99. package/src/sap/ui/mdc/field/ValueHelpPanel.js +3 -2
  100. package/src/sap/ui/mdc/field/content/BooleanContent.js +2 -2
  101. package/src/sap/ui/mdc/field/content/ContentFactory.js +24 -22
  102. package/src/sap/ui/mdc/field/content/DateContent.js +129 -3
  103. package/src/sap/ui/mdc/field/content/DateTimeContent.js +10 -2
  104. package/src/sap/ui/mdc/field/content/DefaultContent.js +2 -2
  105. package/src/sap/ui/mdc/field/content/LinkContent.js +1 -1
  106. package/src/sap/ui/mdc/field/content/SearchContent.js +1 -1
  107. package/src/sap/ui/mdc/field/content/TimeContent.js +9 -2
  108. package/src/sap/ui/mdc/field/content/UnitContent.js +24 -5
  109. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +326 -141
  110. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +1 -1
  111. package/src/sap/ui/mdc/filterbar/IFilterContainer.js +1 -1
  112. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +2 -2
  113. package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +1 -1
  114. package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +1 -1
  115. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +9 -3
  116. package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +1 -1
  117. package/src/sap/ui/mdc/filterbar/p13n/FilterGroupLayout.js +1 -1
  118. package/src/sap/ui/mdc/filterbar/p13n/GroupContainer.js +1 -1
  119. package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +1 -1
  120. package/src/sap/ui/mdc/filterbar/vh/CollectiveSearchSelect.js +4 -2
  121. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +8 -2
  122. package/src/sap/ui/mdc/filterbar/vh/FilterContainer.js +1 -1
  123. package/src/sap/ui/mdc/filterbar/vh/GenericFilterBarDelegate.js +7 -7
  124. package/src/sap/ui/mdc/flexibility/ActionToolbar.flexibility.js +1 -1
  125. package/src/sap/ui/mdc/flexibility/ActionToolbarAction.flexibility.js +1 -1
  126. package/src/sap/ui/mdc/flexibility/AggregateFlex.js +3 -3
  127. package/src/sap/ui/mdc/flexibility/AggregationConfigFlex.js +1 -1
  128. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +2 -2
  129. package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +1 -1
  130. package/src/sap/ui/mdc/flexibility/ColumnFlex.js +2 -2
  131. package/src/sap/ui/mdc/flexibility/ConditionFlex.js +1 -1
  132. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +5 -4
  133. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +2 -2
  134. package/src/sap/ui/mdc/flexibility/GroupFlex.js +2 -2
  135. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +1 -1
  136. package/src/sap/ui/mdc/flexibility/Panel.flexibility.js +10 -4
  137. package/src/sap/ui/mdc/flexibility/PanelItem.flexibility.js +1 -1
  138. package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +110 -0
  139. package/src/sap/ui/mdc/flexibility/SortFlex.js +3 -3
  140. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +1 -1
  141. package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +2 -2
  142. package/src/sap/ui/mdc/library.js +50 -39
  143. package/src/sap/ui/mdc/link/ContactDetails.js +2 -2
  144. package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +2 -2
  145. package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +2 -2
  146. package/src/sap/ui/mdc/link/ContactDetailsItem.js +2 -2
  147. package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +2 -2
  148. package/src/sap/ui/mdc/link/Factory.js +3 -3
  149. package/src/sap/ui/mdc/link/FakeFlpConnector.js +2 -2
  150. package/src/sap/ui/mdc/link/LinkItem.js +2 -2
  151. package/src/sap/ui/mdc/link/Log.js +1 -1
  152. package/src/sap/ui/mdc/link/Panel.js +141 -179
  153. package/src/sap/ui/mdc/link/PanelItem.js +2 -2
  154. package/src/sap/ui/mdc/link/PanelListItem.js +2 -2
  155. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +2 -2
  156. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +2 -2
  157. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +2 -2
  158. package/src/sap/ui/mdc/messagebundle.properties +19 -4
  159. package/src/sap/ui/mdc/messagebundle_ar.properties +13 -4
  160. package/src/sap/ui/mdc/messagebundle_bg.properties +11 -2
  161. package/src/sap/ui/mdc/messagebundle_ca.properties +11 -2
  162. package/src/sap/ui/mdc/messagebundle_cs.properties +26 -17
  163. package/src/sap/ui/mdc/messagebundle_cy.properties +11 -2
  164. package/src/sap/ui/mdc/messagebundle_da.properties +18 -9
  165. package/src/sap/ui/mdc/messagebundle_de.properties +11 -2
  166. package/src/sap/ui/mdc/messagebundle_el.properties +12 -3
  167. package/src/sap/ui/mdc/messagebundle_en.properties +11 -2
  168. package/src/sap/ui/mdc/messagebundle_en_GB.properties +11 -2
  169. package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +17 -0
  170. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +3 -19
  171. package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +17 -0
  172. package/src/sap/ui/mdc/messagebundle_es.properties +12 -3
  173. package/src/sap/ui/mdc/messagebundle_es_MX.properties +24 -15
  174. package/src/sap/ui/mdc/messagebundle_et.properties +11 -2
  175. package/src/sap/ui/mdc/messagebundle_fi.properties +17 -8
  176. package/src/sap/ui/mdc/messagebundle_fr.properties +15 -6
  177. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +11 -2
  178. package/src/sap/ui/mdc/messagebundle_hi.properties +12 -3
  179. package/src/sap/ui/mdc/messagebundle_hr.properties +11 -2
  180. package/src/sap/ui/mdc/messagebundle_hu.properties +11 -2
  181. package/src/sap/ui/mdc/messagebundle_id.properties +11 -2
  182. package/src/sap/ui/mdc/messagebundle_it.properties +26 -17
  183. package/src/sap/ui/mdc/messagebundle_iw.properties +12 -3
  184. package/src/sap/ui/mdc/messagebundle_ja.properties +11 -2
  185. package/src/sap/ui/mdc/messagebundle_kk.properties +11 -2
  186. package/src/sap/ui/mdc/messagebundle_ko.properties +15 -6
  187. package/src/sap/ui/mdc/messagebundle_lt.properties +11 -2
  188. package/src/sap/ui/mdc/messagebundle_lv.properties +11 -2
  189. package/src/sap/ui/mdc/messagebundle_ms.properties +11 -2
  190. package/src/sap/ui/mdc/messagebundle_nl.properties +16 -7
  191. package/src/sap/ui/mdc/messagebundle_no.properties +19 -10
  192. package/src/sap/ui/mdc/messagebundle_pl.properties +12 -3
  193. package/src/sap/ui/mdc/messagebundle_pt.properties +18 -9
  194. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +11 -2
  195. package/src/sap/ui/mdc/messagebundle_ro.properties +11 -2
  196. package/src/sap/ui/mdc/messagebundle_ru.properties +11 -2
  197. package/src/sap/ui/mdc/messagebundle_sh.properties +11 -2
  198. package/src/sap/ui/mdc/messagebundle_sk.properties +11 -2
  199. package/src/sap/ui/mdc/messagebundle_sl.properties +11 -2
  200. package/src/sap/ui/mdc/messagebundle_sv.properties +13 -4
  201. package/src/sap/ui/mdc/messagebundle_th.properties +11 -2
  202. package/src/sap/ui/mdc/messagebundle_tr.properties +11 -2
  203. package/src/sap/ui/mdc/messagebundle_uk.properties +12 -3
  204. package/src/sap/ui/mdc/messagebundle_vi.properties +11 -2
  205. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +11 -2
  206. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +11 -2
  207. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +3 -4
  208. package/src/sap/ui/mdc/mixin/DelegateMixin.js +3 -3
  209. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +17 -12
  210. package/src/sap/ui/mdc/mixin/PromiseMixin.js +3 -4
  211. package/src/sap/ui/mdc/odata/TypeUtil.js +2 -2
  212. package/src/sap/ui/mdc/odata/json/FilterBarDelegate.js +1 -1
  213. package/src/sap/ui/mdc/odata/v4/ChartDelegate.js +30 -484
  214. package/src/sap/ui/mdc/odata/v4/{ChartPropertyHelperNew.js → ChartPropertyHelper.js} +6 -6
  215. package/src/sap/ui/mdc/odata/v4/FieldBaseDelegate.js +1 -1
  216. package/src/sap/ui/mdc/odata/v4/FieldValueHelpDelegate.js +1 -1
  217. package/src/sap/ui/mdc/odata/v4/FilterBarDelegate.js +1 -1
  218. package/src/sap/ui/mdc/odata/v4/ODataMetaModelUtil.js +1 -1
  219. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +158 -114
  220. package/src/sap/ui/mdc/odata/v4/TypeUtil.js +2 -2
  221. package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +2 -2
  222. package/src/sap/ui/mdc/odata/v4/util/DelegateUtil.js +2 -2
  223. package/src/sap/ui/mdc/odata/v4/vizChart/{ChartDelegateNew.js → ChartDelegate.js} +137 -49
  224. package/src/sap/ui/mdc/p13n/AdaptationProvider.js +1 -1
  225. package/src/sap/ui/mdc/p13n/Engine.js +56 -19
  226. package/src/sap/ui/mdc/p13n/FlexUtil.js +12 -119
  227. package/src/sap/ui/mdc/p13n/P13nBuilder.js +3 -3
  228. package/src/sap/ui/mdc/p13n/PersistenceProvider.js +22 -11
  229. package/src/sap/ui/mdc/p13n/PropertyHelper.js +2 -2
  230. package/src/sap/ui/mdc/p13n/StateUtil.js +41 -7
  231. package/src/sap/ui/mdc/p13n/UIManager.js +16 -13
  232. package/src/sap/ui/mdc/p13n/modification/FlexModificationHandler.js +5 -2
  233. package/src/sap/ui/mdc/p13n/modification/ModificationHandler.js +10 -7
  234. package/src/sap/ui/mdc/p13n/{DefaultProviderRegistry.js → modules/DefaultProviderRegistry.js} +3 -3
  235. package/src/sap/ui/mdc/p13n/modules/StateHandlerRegistry.js +86 -0
  236. package/src/sap/ui/mdc/p13n/panels/ActionToolbarPanel.js +1 -1
  237. package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +20 -4
  238. package/src/sap/ui/mdc/p13n/panels/BasePanel.js +1 -1
  239. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +1093 -49
  240. package/src/sap/ui/mdc/p13n/panels/GroupView.js +1 -1
  241. package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +72 -0
  242. package/src/sap/ui/mdc/p13n/panels/ListView.js +7 -3
  243. package/src/sap/ui/mdc/p13n/panels/SelectionPanel.js +1 -1
  244. package/src/sap/ui/mdc/p13n/panels/SortPanel.js +1 -1
  245. package/src/sap/ui/mdc/p13n/subcontroller/ActionToolbarController.js +1 -1
  246. package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +7 -6
  247. package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +2 -2
  248. package/src/sap/ui/mdc/p13n/subcontroller/BaseController.js +157 -12
  249. package/src/sap/ui/mdc/p13n/subcontroller/ChartItemController.js +16 -27
  250. package/src/sap/ui/mdc/p13n/subcontroller/ColumnController.js +7 -6
  251. package/src/sap/ui/mdc/p13n/subcontroller/ColumnWidthController.js +1 -1
  252. package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +7 -6
  253. package/src/sap/ui/mdc/p13n/subcontroller/GroupController.js +1 -1
  254. package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +173 -0
  255. package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +11 -18
  256. package/src/sap/ui/mdc/table/Column.js +36 -11
  257. package/src/sap/ui/mdc/table/CreationRow.js +15 -14
  258. package/src/sap/ui/mdc/table/GridTableType.js +14 -14
  259. package/src/sap/ui/mdc/table/PropertyHelper.js +65 -28
  260. package/src/sap/ui/mdc/table/ResponsiveTableType.js +27 -30
  261. package/src/sap/ui/mdc/table/RowSettings.js +8 -6
  262. package/src/sap/ui/mdc/table/TableSettings.js +1 -1
  263. package/src/sap/ui/mdc/table/TableTypeBase.js +7 -7
  264. package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +16 -72
  265. package/src/sap/ui/mdc/themes/base/Chart.less +3 -0
  266. package/src/sap/ui/mdc/themes/base/FieldBase.less +0 -5
  267. package/src/sap/ui/mdc/themes/base/ValueHelpDialog.less +12 -1
  268. package/src/sap/ui/mdc/themes/base/library.source.less +2 -1
  269. package/src/sap/ui/mdc/ui/Container.js +3 -3
  270. package/src/sap/ui/mdc/ui/ContainerItem.js +3 -3
  271. package/src/sap/ui/mdc/util/Common.js +2 -2
  272. package/src/sap/ui/mdc/util/DateUtil.js +2 -2
  273. package/src/sap/ui/mdc/util/FilterUtil.js +2 -2
  274. package/src/sap/ui/mdc/util/FormatUtil.js +2 -2
  275. package/src/sap/ui/mdc/util/IdentifierUtil.js +2 -2
  276. package/src/sap/ui/mdc/util/PromiseCache.js +2 -2
  277. package/src/sap/ui/mdc/util/PropertyHelper.js +149 -326
  278. package/src/sap/ui/mdc/util/TypeUtil.js +6 -5
  279. package/src/sap/ui/mdc/util/loadModules.js +1 -1
  280. package/src/sap/ui/mdc/valuehelp/Dialog.js +13 -9
  281. package/src/sap/ui/mdc/valuehelp/Popover.js +15 -3
  282. package/src/sap/ui/mdc/valuehelp/base/Container.js +34 -2
  283. package/src/sap/ui/mdc/valuehelp/base/Content.js +37 -6
  284. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +3 -2
  285. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +44 -16
  286. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +3 -2
  287. package/src/sap/ui/mdc/valuehelp/content/Bool.js +3 -2
  288. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +29 -33
  289. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +12 -6
  290. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +44 -9
  291. package/src/sap/ui/mdc/valuehelp/content/MTable.js +58 -27
  292. package/test/sap/ui/mdc/testutils/opa/TestLibrary.js +2 -1
  293. package/test/sap/ui/mdc/testutils/opa/actions/OpenContextMenu.js +3 -3
  294. package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/ActionsBase.js +3 -3
  295. package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/ActionsViz.js +0 -0
  296. package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/AssertionsBase.js +1 -1
  297. package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/AssertionsViz.js +0 -0
  298. package/test/sap/ui/mdc/testutils/opa/{chartNew → chart}/ChartNew.js +0 -0
  299. package/test/sap/ui/mdc/testutils/opa/chart/TestObjects.js +289 -0
  300. package/test/sap/ui/mdc/testutils/opa/chartNew/TestObjects.js +5 -5
  301. package/test/sap/ui/mdc/testutils/opa/filterbar/Util.js +12 -11
  302. package/test/sap/ui/mdc/testutils/opa/link/Actions.js +85 -0
  303. package/test/sap/ui/mdc/testutils/opa/link/Assertions.js +79 -0
  304. package/test/sap/ui/mdc/testutils/opa/link/TestObjects.js +112 -0
  305. package/test/sap/ui/mdc/testutils/opa/link/waitForLink.js +50 -0
  306. package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +365 -236
  307. package/test/sap/ui/mdc/testutils/opa/p13n/Util.js +27 -26
  308. package/src/sap/ui/mdc/ChartDelegateNew.js +0 -395
  309. package/src/sap/ui/mdc/ChartNew.js +0 -1114
  310. package/src/sap/ui/mdc/ChartNewRenderer.js +0 -91
  311. package/src/sap/ui/mdc/chart/DimensionItem.js +0 -281
  312. package/src/sap/ui/mdc/chart/MeasureItem.js +0 -318
  313. package/src/sap/ui/mdc/chart/MetadataDelegate.js +0 -31
  314. package/src/sap/ui/mdc/chart/SelectionHandler.js +0 -127
  315. package/src/sap/ui/mdc/chart/ToolbarHandler.js +0 -328
  316. package/src/sap/ui/mdc/chartNew/ChartTypeButtonNew.js +0 -295
  317. package/src/sap/ui/mdc/chartNew/DrillStackHandlerNew.js +0 -212
  318. package/src/sap/ui/mdc/chartNew/ItemNew.js +0 -72
  319. package/src/sap/ui/mdc/chartNew/SelectionDetailsActionsNew.js +0 -34
  320. package/src/sap/ui/mdc/designtime/chart/ChartNew.designtime.js +0 -91
  321. package/src/sap/ui/mdc/link/SelectionDialog.control.xml +0 -66
  322. package/src/sap/ui/mdc/link/SelectionDialog.js +0 -213
  323. package/src/sap/ui/mdc/link/SelectionDialogItem.js +0 -86
  324. package/src/sap/ui/mdc/odata/v4/ChartDelegateNew.js +0 -35
  325. package/src/sap/ui/mdc/p13n/panels/ChartItemPanelNew.js +0 -1171
  326. package/src/sap/ui/mdc/p13n/panels/GroupPanel.js +0 -111
  327. package/src/sap/ui/mdc/p13n/panels/QueryPanel.js +0 -322
  328. package/src/sap/ui/mdc/p13n/panels/SortQueryPanel.js +0 -133
  329. package/src/sap/ui/mdc/p13n/panels/Wrapper.js +0 -203
@@ -0,0 +1,173 @@
1
+ /*
2
+ * ! OpenUI5
3
+ * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
+ */
6
+
7
+ sap.ui.define([
8
+ "sap/ui/mdc/p13n/P13nBuilder",
9
+ "./BaseController",
10
+ "sap/ui/mdc/p13n/panels/LinkSelectionPanel",
11
+ "sap/m/library",
12
+ "sap/m/MessageBox"
13
+ ], function (P13nBuilder, BaseController, SelectionPanel, library, MessageBox) {
14
+ "use strict";
15
+
16
+ var oResourceBundle = sap.ui.getCore().getLibraryResourceBundle("sap.ui.mdc");
17
+
18
+ var MultiSelectMode = library.MultiSelectMode;
19
+ var LinkPanelController = BaseController.extend("sap.ui.mdc.p13n.subcontroller.LinkPanelController", {
20
+ constructor: function() {
21
+ BaseController.apply(this, arguments);
22
+ this._bResetEnabled = true;
23
+ }
24
+ });
25
+
26
+ LinkPanelController.prototype.getUISettings = function() {
27
+ return {
28
+ contentWidth: "28rem",
29
+ contentHeight: "35rem",
30
+ reset: {
31
+ warningText: oResourceBundle.getText("info.SELECTION_DIALOG_RESET_WARNING")
32
+ },
33
+ title: oResourceBundle.getText("info.SELECTION_DIALOG_ALIGNEDTITLE")
34
+ };
35
+ };
36
+
37
+ LinkPanelController.prototype.getSelectorForReset = function() {
38
+ return this.getAdaptationControl().getItems().concat(this.getAdaptationControl());
39
+ };
40
+
41
+ LinkPanelController.prototype.getAdaptationUI = function(oPropertyHelper) {
42
+ var oSelectionPanel = new SelectionPanel({
43
+ fieldColumn: oResourceBundle.getText("info.SELECTION_DIALOG_COLUMNHEADER_WITHOUT_COUNT"),
44
+ enableCount: true,
45
+ linkPressed: this._onLinkPressed.bind(this)
46
+ });
47
+ var oAdaptationData = this.mixInfoAndState(oPropertyHelper);
48
+ oSelectionPanel.setP13nData(oAdaptationData.items);
49
+ oSelectionPanel.setEnableReorder(false);
50
+ oSelectionPanel.setMultiSelectMode(MultiSelectMode.Default);
51
+ this._oPanel = oSelectionPanel;
52
+ return Promise.resolve(oSelectionPanel);
53
+ };
54
+
55
+ LinkPanelController.prototype._onLinkPressed = function(oEvent) {
56
+ var oSource = oEvent.getParameter("oSource");
57
+ var sTarget = oSource.getTarget();
58
+
59
+ if (sTarget !== "_blank") {
60
+ oEvent.preventDefault();
61
+
62
+ var oPanel = this.getAdaptationControl();
63
+ var sHref = oSource.getHref();
64
+
65
+ if (oPanel.getBeforeNavigationCallback) {
66
+ oPanel.getBeforeNavigationCallback()(oEvent).then(function (bNavigate) {
67
+ if (bNavigate) {
68
+ oPanel.navigate(sHref);
69
+ }
70
+ });
71
+ } else {
72
+ MessageBox.show(sap.ui.getCore().getLibraryResourceBundle("sap.ui.mdc").getText("info.SELECTION_DIALOG_LINK_VALIDATION_QUESTION"), {
73
+ icon: MessageBox.Icon.WARNING,
74
+ title: sap.ui.getCore().getLibraryResourceBundle("sap.ui.mdc").getText("info.SELECTION_DIALOG_LINK_VALIDATION_TITLE"),
75
+ actions: [
76
+ MessageBox.Action.YES, MessageBox.Action.NO
77
+ ],
78
+ onClose: function (oAction) {
79
+ if (oAction === MessageBox.Action.YES) {
80
+ oPanel.navigate(sHref);
81
+ }
82
+ },
83
+ styleClass: this.$().closest(".sapUiSizeCompact").length ? "sapUiSizeCompact" : ""
84
+ });
85
+ }
86
+ }
87
+ };
88
+
89
+ LinkPanelController.prototype._createAddRemoveChange = function(oControl, vOperations, oContent) {
90
+ var sLinkItemId = oContent.name;
91
+
92
+ var oLinkItem = sap.ui.getCore().byId(sLinkItemId);
93
+
94
+ var aChanges = [];
95
+
96
+ if (!oLinkItem) {
97
+ aChanges.push({
98
+ selectorElement: oControl,
99
+ changeSpecificData: {
100
+ changeType: "createItem",
101
+ content: {
102
+ selector: sLinkItemId
103
+ }
104
+ }
105
+ });
106
+ } else {
107
+ aChanges.push({
108
+ selectorElement: oLinkItem,
109
+ changeSpecificData: {
110
+ changeType: vOperations === "hideItem" ? "hideItem" : "revealItem",
111
+ content: {}
112
+ }
113
+ });
114
+ }
115
+
116
+ return aChanges;
117
+ };
118
+
119
+ LinkPanelController.prototype.mixInfoAndState = function(oPropertyHelper) {
120
+
121
+ var aItemState = this.getCurrentState();
122
+ var mExistingLinkItems = P13nBuilder.arrayToMap(aItemState);
123
+
124
+ var oP13nData = P13nBuilder.prepareAdaptationData(oPropertyHelper, function(mItem, oProperty){
125
+
126
+ var oExistingLinkItem = mExistingLinkItems[oProperty.name];
127
+ mItem.visible = oExistingLinkItem ? true : false;
128
+ mItem.position = oExistingLinkItem ? oExistingLinkItem.position : -1;
129
+ mItem.href = oProperty.href;
130
+ mItem.description = oProperty.description;
131
+ mItem.target = oProperty.target;
132
+ mItem.text = oProperty.text;
133
+ //mItem.icon = oProperty.icon;
134
+
135
+ return true;
136
+ });
137
+
138
+ P13nBuilder.sortP13nData({
139
+ visible: "visible",
140
+ position: "position"
141
+ }, oP13nData.items);
142
+
143
+ oP13nData.presenceAttribute = this._getPresenceAttribute();
144
+
145
+ oP13nData.items.forEach(function(oItem){delete oItem.position;});
146
+
147
+ return oP13nData;
148
+ };
149
+
150
+ LinkPanelController.prototype._createMoveChange = function(sId, sPropertyName, iNewIndex, sMoveOperation, oControl, bPersistId) {
151
+ return {
152
+ selectorElement: oControl,
153
+ changeSpecificData: {
154
+ changeType: sMoveOperation,
155
+ content: {
156
+ index: iNewIndex,
157
+ name: sPropertyName
158
+ }
159
+ }
160
+ };
161
+ };
162
+
163
+ LinkPanelController.prototype.getChangeOperations = function() {
164
+ return {
165
+ add: ["createItem", "revealItem"],
166
+ remove: "hideItem",
167
+ move: "moveItem"
168
+ };
169
+ };
170
+
171
+ return LinkPanelController;
172
+
173
+ });
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ! OpenUI5
3
- * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -9,16 +9,17 @@ sap.ui.define([
9
9
  ], function (BaseController, P13nBuilder, SortPanelOld, SortPanel) {
10
10
  "use strict";
11
11
 
12
- var SortController = BaseController.extend("sap.ui.mdc.p13n.subcontroller.SortController");
12
+ var SortController = BaseController.extend("sap.ui.mdc.p13n.subcontroller.SortController", {
13
+ constructor: function() {
14
+ BaseController.apply(this, arguments);
15
+ this._bResetEnabled = true;
16
+ }
17
+ });
13
18
 
14
19
  SortController.prototype.getCurrentState = function() {
15
20
  return this.getAdaptationControl().getCurrentState().sorters;
16
21
  };
17
22
 
18
- SortController.prototype.getResetEnabled = function() {
19
- return true;
20
- };
21
-
22
23
  SortController.prototype.getUISettings = function() {
23
24
  return {
24
25
  tabText: sap.ui.getCore().getLibraryResourceBundle("sap.ui.mdc").getText("p13nDialog.TAB_Sort"),
@@ -33,20 +34,12 @@ sap.ui.define([
33
34
 
34
35
  SortController.prototype.getAdaptationUI = function(oPropertyHelper){
35
36
 
36
- var oAdaptationControl = this.getAdaptationControl();
37
37
  var oSortPanel;
38
38
 
39
- //TODO: remove this condition once 'ChartNew' migration has been merged
40
- if (oAdaptationControl.isA("sap.ui.mdc.Chart") && !oAdaptationControl._bNewP13n) {
41
- oSortPanel = new SortPanelOld();
42
- var oAdaptationModel = this._getP13nModel(oPropertyHelper);
43
- oSortPanel.setP13nModel(oAdaptationModel);
44
- } else {
45
- oSortPanel = new SortPanel();
46
- var oAdaptationData = this.mixInfoAndState(oPropertyHelper);
47
- oSortPanel.setP13nData(oAdaptationData.items);
48
- this._oPanel = oSortPanel;
49
- }
39
+ oSortPanel = new SortPanel();
40
+ var oAdaptationData = this.mixInfoAndState(oPropertyHelper);
41
+ oSortPanel.setP13nData(oAdaptationData.items);
42
+ this._oPanel = oSortPanel;
50
43
 
51
44
  return Promise.resolve(oSortPanel);
52
45
  };
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ! OpenUI5
3
- * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -10,17 +10,17 @@ sap.ui.define([
10
10
  "use strict";
11
11
 
12
12
  /**
13
- * Constructor for a new Column.
13
+ * Constructor for a new <code>Column</column>.
14
14
  *
15
- * @param {string} [sId] ID for the new control, generated automatically if no ID is given
15
+ * @param {string} [sId] Optional ID for the new object; generated automatically if no non-empty ID is given
16
16
  * @param {object} [mSettings] initial settings for the new control
17
- * @class The column for the metadata driven table, that hold the template to be shown when the rows has data.
18
- * <h3><b>Note:</b></h3>
19
- * The control is experimental and the API/behaviour is not finalised and hence this should not be used for productive usage.
17
+ * @class The column for the metadata-driven table with the template, which is shown if the rows have data.
20
18
  * @extends sap.ui.core.Element
21
19
  * @author SAP SE
22
20
  * @private
23
21
  * @experimental
22
+ * @ui5-restricted sap.fe
23
+ * MDC_PUBLIC_CANDIDATE
24
24
  * @since 1.58
25
25
  * @alias sap.ui.mdc.table.Column
26
26
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -31,21 +31,30 @@ sap.ui.define([
31
31
  library: "sap.ui.mdc",
32
32
  defaultAggregation: "template",
33
33
  properties: {
34
+ /**
35
+ * Width of the column.
36
+ */
34
37
  width: {
35
38
  type: "sap.ui.core.CSSSize",
36
39
  group: "Dimension",
37
40
  defaultValue: null
38
41
  },
42
+ /**
43
+ * Minimum width of the column.
44
+ */
39
45
  minWidth: {
40
46
  type: "float",
41
47
  group: "Behavior",
42
48
  defaultValue: 8
43
49
  },
50
+ /**
51
+ * The column header text.
52
+ */
44
53
  header: {
45
54
  type: "string"
46
55
  },
47
56
  /**
48
- * Defines whether the column header is visible
57
+ * Defines whether the column header is visible.
49
58
  * @since 1.78
50
59
  */
51
60
  headerVisible: {
@@ -53,10 +62,16 @@ sap.ui.define([
53
62
  group: "Misc",
54
63
  defaultValue: true
55
64
  },
65
+ /**
66
+ * Horizontal alignment of the content.
67
+ */
56
68
  hAlign: {
57
69
  type: "sap.ui.core.HorizontalAlign",
58
70
  defaultValue: "Begin"
59
71
  },
72
+ /**
73
+ * Importance of the column. It is used to show or hide the column based on the <code>Table</code> configuration.
74
+ */
60
75
  importance: {
61
76
  type: "sap.ui.core.Priority",
62
77
  group: "Behavior",
@@ -70,16 +85,26 @@ sap.ui.define([
70
85
  type: "int",
71
86
  defaultValue: -1
72
87
  },
88
+ /**
89
+ * The data property related to the column.
90
+ */
73
91
  dataProperty: {
74
92
  type: "string"
75
93
  }
76
94
  },
77
95
  events: {},
78
96
  aggregations: {
97
+ /**
98
+ * Template for the column.
99
+ */
79
100
  template: {
80
101
  type: "sap.ui.core.Control",
81
102
  multiple: false
82
103
  },
104
+ /**
105
+ * <code>CreationRow</code> template.
106
+ * <b>Note:</b> Once the binding supports creating transient records, this aggregation will be removed.
107
+ */
83
108
  creationTemplate: {
84
109
  type: "sap.ui.core.Control",
85
110
  multiple: false
@@ -215,10 +240,10 @@ sap.ui.define([
215
240
 
216
241
  /**
217
242
  * Creates and returns the column header control.
218
- * If <code>headerVisible=false</code> then, <code>width=0px</code> is applied to the sap.m.Label control for accessibility purpose.
219
- * @param {boolean} bMobileTable - indicates the type of the table
220
- * @param {boolean} bResizing - indicates whether the column is resizable
221
- * @returns {object} column header control
243
+ * If <code>headerVisible=false</code> then <code>width=0px</code> is applied to the <code>sap.m.Label</code> control for accessibility purposes.
244
+ * @param {boolean} bMobileTable The type of the table
245
+ * @param {boolean} bResizing Indicates whether the column is resizable
246
+ * @returns {object} The column header control
222
247
  * @private
223
248
  */
224
249
  Column.prototype.getColumnHeaderControl = function(bMobileTable, bResizing) {
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ! OpenUI5
3
- * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -12,20 +12,20 @@ sap.ui.define([
12
12
  var TableType = Library.TableType;
13
13
 
14
14
  /**
15
- * Constructor for a new CreationRow.
15
+ * Constructor for a new <code>CreationRow</code>.
16
16
  *
17
- * @param {string} [sId] ID for the new control, generated automatically if no ID is given
17
+ * @param {string} [sId] Optional ID for the new object; generated automatically if no non-empty ID is given
18
18
  * @param {object} [mSettings] Initial settings for the new control
19
- * @class Allows to enter data in a row shaped form, if the table's {@link sap.ui.mdc.TableType TableType} is "<code>Table</code>". The form
20
- * elements are aligned with the columns of the table, and are created automatically based on the
21
- * {@link sap.ui.mdc.table.Column#getCreationTemplate creationTemplate} aggregation of the {@link sap.ui.mdc.table.Column}. <b>Note:</b> This control
22
- * is experimental and the API/behaviour is not finalised and hence this should not be used for productive usage.
19
+ * @class Row that allows the user to enter data in a row-shaped form if the {@link sap.ui.mdc.TableType TableType} is "<code>Table</code>".
20
+ * The form elements are aligned with the columns of the table and are created automatically based on the
21
+ * {@link sap.ui.mdc.table.Column#getCreationTemplate creationTemplate} aggregation of the {@link sap.ui.mdc.table.Column}.
23
22
  * @extends sap.ui.core.Element
24
23
  * @author SAP SE
25
- * @version 1.96.2
24
+ * @version 1.98.0
26
25
  * @constructor
27
- * @private
28
26
  * @experimental
27
+ * @private
28
+ * @ui5-restricted sap.fe
29
29
  * @since 1.65
30
30
  * @alias sap.ui.mdc.table.CreationRow
31
31
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -52,7 +52,7 @@ sap.ui.define([
52
52
  defaultValue: false
53
53
  },
54
54
  /**
55
- * Visibility of this control.
55
+ * Visibility of the <code>CreationRow</code>.
56
56
  */
57
57
  visible: {
58
58
  type: "boolean",
@@ -62,7 +62,7 @@ sap.ui.define([
62
62
  },
63
63
  events: {
64
64
  /**
65
- * Fired when the corresponding keyboard shortcut or the apply button of the toolbar are pressed.
65
+ * The event is fired when the corresponding keyboard shortcut or the apply button of the toolbar are pressed.
66
66
  */
67
67
  apply: {
68
68
  allowPreventDefault: true
@@ -91,6 +91,7 @@ sap.ui.define([
91
91
  *
92
92
  * @param {boolean} bBusy Busy state that is applied to the inner control
93
93
  * @returns {this} Returns <code>this</code> to allow method chaining
94
+ * @private
94
95
  */
95
96
  CreationRow.prototype.setBusy = function(bBusy) {
96
97
  this.setProperty('busy', bBusy, true);
@@ -144,10 +145,10 @@ sap.ui.define([
144
145
  };
145
146
 
146
147
  /**
147
- * Updates the row based on the configuration of the table this row is inside.
148
+ * Updates the row based on the configuration of the table.
148
149
  *
150
+ * @returns {Promise} <code>Promise</code> that resolves once the inner <code>CreationRow</code> control is updated
149
151
  * @private
150
- * @returns {Promise} Promise that resolves once the inner <code>CreationRow</code> control is updated
151
152
  */
152
153
  CreationRow.prototype.update = function() {
153
154
  return this._updateInnerCreationRow();
@@ -230,7 +231,7 @@ sap.ui.define([
230
231
  }
231
232
 
232
233
  /**
233
- * Gets the table this row is inside.
234
+ * Gets the table in which this row is located.
234
235
  *
235
236
  * @return {sap.ui.mdc.Table|null} The instance of the table or <code>null</code>, if this row is not inside a table.
236
237
  * @private
@@ -1,6 +1,6 @@
1
1
  /*
2
2
  * ! OpenUI5
3
- * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
3
+ * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
4
4
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
5
  */
6
6
 
@@ -14,17 +14,17 @@ sap.ui.define([
14
14
  var RowAction = library.RowAction;
15
15
 
16
16
  /**
17
- * Constructor for a new GridTableType.
17
+ * Constructor for a new <code>GridTableType</code>.
18
18
  *
19
- * @param {string} [sId] ID for the new object, generated automatically if no ID is given
20
- * @param {object} [mSettings] initial settings for the new object
21
- * @class The table type info base class for the metadata driven table.
22
- * <h3><b>Note:</b></h3>
23
- * The control is experimental and the API/behaviour is not finalised and hence this should not be used for productive usage.
19
+ * @param {string} [sId] Optional ID for the new object; generated automatically if no non-empty ID is given
20
+ * @param {object} [mSettings] Initial settings for the new object
21
+ * @class The table type info class for the metadata-driven table.
24
22
  * @extends sap.ui.mdc.table.TableTypeBase
25
23
  * @author SAP SE
26
24
  * @private
27
25
  * @experimental
26
+ * @ui5-restricted sap.fe
27
+ * MDC_PUBLIC_CANDIDATE
28
28
  * @since 1.65
29
29
  * @alias sap.ui.mdc.table.GridTableType
30
30
  * @ui5-metamodel This element also will be described in the UI5 (legacy) designtime metamodel
@@ -35,17 +35,16 @@ sap.ui.define([
35
35
  library: "sap.ui.mdc",
36
36
  properties: {
37
37
  /**
38
- * See sap.ui.mdc.RowCountMode for the options.<br>
39
- * Defaults to Auto --> meaning table adjusts it's height based on the parent container
38
+ * Defines how the table handles the row count.
40
39
  */
41
40
  rowCountMode: {
42
41
  type: "sap.ui.mdc.RowCountMode",
43
42
  defaultValue: RowCountMode.Auto
44
43
  },
45
44
  /**
46
- * RowCount of the inner table.<br>
47
- * When sap.ui.mdc.RowCountMode.Auto is used - this property specifies the minAutoRowCount.<br>
48
- * When sap.ui.mdc.RowCountMode.Fixed is used - this property specifies the visibleRowCount.
45
+ * Row count of the inner table.<br>
46
+ * This property specifies the minimum row count if <code>sap.ui.mdc.RowCountMode.Auto</code> is used.<br>
47
+ * This property specifies the row count if <code>sap.ui.mdc.RowCountMode.Fixed</code> is used.
49
48
  */
50
49
  rowCount: {
51
50
  type: "int",
@@ -53,14 +52,15 @@ sap.ui.define([
53
52
  },
54
53
  /**
55
54
  * Number of indices which can be selected in a range.
56
- * Accepts positive integer values. If set to 0, the selection limit is disabled, and the Select All checkbox appears instead of the Deselect All button.
55
+ * Accepts positive integer values. If set to 0, the selection limit is disabled, and the Select All checkbox appears instead of the
56
+ * Deselect All button.
57
57
  */
58
58
  selectionLimit : {
59
59
  type : "int",
60
60
  defaultValue : 200
61
61
  },
62
62
  /**
63
- * Show header selector.
63
+ * Determines whether the header selector is shown.
64
64
  */
65
65
  showHeaderSelector : {
66
66
  type : "boolean",