@openui5/sap.ui.mdc 1.141.2 → 1.142.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 (129) hide show
  1. package/README.md +2 -2
  2. package/REUSE.toml +38 -0
  3. package/THIRDPARTY.txt +34 -1
  4. package/package.json +4 -4
  5. package/src/sap/ui/mdc/.library +1 -1
  6. package/src/sap/ui/mdc/ActionToolbar.js +1 -1
  7. package/src/sap/ui/mdc/Chart.js +1 -1
  8. package/src/sap/ui/mdc/Control.js +1 -1
  9. package/src/sap/ui/mdc/DefaultTypeMap.js +1 -1
  10. package/src/sap/ui/mdc/Element.js +1 -1
  11. package/src/sap/ui/mdc/Field.js +26 -3
  12. package/src/sap/ui/mdc/FilterBar.js +1 -1
  13. package/src/sap/ui/mdc/FilterField.js +2 -2
  14. package/src/sap/ui/mdc/Geomap.js +571 -0
  15. package/src/sap/ui/mdc/GeomapDelegate.js +285 -0
  16. package/src/sap/ui/mdc/GeomapRenderer.js +76 -0
  17. package/src/sap/ui/mdc/Link.js +1 -1
  18. package/src/sap/ui/mdc/MultiValueField.js +3 -3
  19. package/src/sap/ui/mdc/Table.js +117 -101
  20. package/src/sap/ui/mdc/TableDelegate.js +3 -2
  21. package/src/sap/ui/mdc/ValueHelp.js +1 -1
  22. package/src/sap/ui/mdc/ValueHelpDelegate.js +4 -1
  23. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +1 -1
  24. package/src/sap/ui/mdc/chart/ChartImplementationContainer.js +1 -1
  25. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +1 -1
  26. package/src/sap/ui/mdc/chart/PropertyHelper.js +1 -1
  27. package/src/sap/ui/mdc/chart/ToolbarControlFactory.js +1 -1
  28. package/src/sap/ui/mdc/condition/Condition.js +1 -1
  29. package/src/sap/ui/mdc/condition/ConditionConverter.js +1 -1
  30. package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
  31. package/src/sap/ui/mdc/condition/FilterConverter.js +1 -1
  32. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +1 -1
  33. package/src/sap/ui/mdc/condition/Operator.js +1 -1
  34. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +1 -1
  35. package/src/sap/ui/mdc/condition/RangeOperator.js +1 -1
  36. package/src/sap/ui/mdc/designtime/geomap/Geomap.designtime.js +23 -0
  37. package/src/sap/ui/mdc/enums/GeomapControlPosition.js +46 -0
  38. package/src/sap/ui/mdc/field/ConditionType.js +1 -1
  39. package/src/sap/ui/mdc/field/ConditionTypeMixin.js +1 -1
  40. package/src/sap/ui/mdc/field/ConditionsType.js +1 -1
  41. package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
  42. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +1 -1
  43. package/src/sap/ui/mdc/field/FieldBase.js +45 -20
  44. package/src/sap/ui/mdc/field/FieldInfoBase.js +1 -1
  45. package/src/sap/ui/mdc/field/FieldInput.js +1 -1
  46. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
  47. package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
  48. package/src/sap/ui/mdc/field/FieldSelect.js +1 -1
  49. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
  50. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +22 -0
  51. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +1 -1
  52. package/src/sap/ui/mdc/field/TokenDisplay.js +1 -1
  53. package/src/sap/ui/mdc/field/TokenizerDisplay.js +1 -1
  54. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +35 -1
  55. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +3 -0
  56. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +1 -1
  57. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +1 -1
  58. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +1 -1
  59. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +1 -1
  60. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +1 -1
  61. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +1 -1
  62. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +1 -1
  63. package/src/sap/ui/mdc/flexibility/SortFlex.js +12 -5
  64. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +17 -11
  65. package/src/sap/ui/mdc/flexibility/actiontoolbar/CombineAction.js +1 -1
  66. package/src/sap/ui/mdc/flexibility/actiontoolbar/SplitAction.js +1 -1
  67. package/src/sap/ui/mdc/flexibility/helpers/getAffectedSorter.js +25 -0
  68. package/src/sap/ui/mdc/geomap/Item.js +48 -0
  69. package/src/sap/ui/mdc/geomap/PropertyHelper.js +70 -0
  70. package/src/sap/ui/mdc/library.js +6 -4
  71. package/src/sap/ui/mdc/link/Factory.js +1 -1
  72. package/src/sap/ui/mdc/link/LinkItem.js +1 -1
  73. package/src/sap/ui/mdc/link/Panel.js +1 -1
  74. package/src/sap/ui/mdc/link/PanelItem.js +1 -1
  75. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
  76. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
  77. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
  78. package/src/sap/ui/mdc/messagebundle.properties +13 -1
  79. package/src/sap/ui/mdc/messagebundle_de.properties +2 -2
  80. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +9 -1
  81. package/src/sap/ui/mdc/messagebundle_fr.properties +1 -1
  82. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +1 -1
  83. package/src/sap/ui/mdc/mixin/DelegateMixin.js +1 -1
  84. package/src/sap/ui/mdc/mixin/FilterBarLayoutMixin.js +1 -1
  85. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +1 -1
  86. package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
  87. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +1 -1
  88. package/src/sap/ui/mdc/odata/TypeMap.js +1 -1
  89. package/src/sap/ui/mdc/odata/v4/GeomapDelegate.js +60 -0
  90. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +53 -2
  91. package/src/sap/ui/mdc/odata/v4/TypeMap.js +1 -1
  92. package/src/sap/ui/mdc/p13n/PropertyHelper.js +1 -1
  93. package/src/sap/ui/mdc/p13n/StateUtil.js +1 -1
  94. package/src/sap/ui/mdc/p13n/subcontroller/ColumnFreezeController.js +1 -1
  95. package/src/sap/ui/mdc/p13n/subcontroller/ShowDetailsController.js +1 -1
  96. package/src/sap/ui/mdc/rules/Table.support.js +149 -118
  97. package/src/sap/ui/mdc/table/ColumnSettings.js +1 -1
  98. package/src/sap/ui/mdc/table/CreationRow.js +1 -1
  99. package/src/sap/ui/mdc/table/DragDropConfig.js +1 -1
  100. package/src/sap/ui/mdc/table/GridTableType.js +1 -14
  101. package/src/sap/ui/mdc/table/ODataV4PropertyHelper.js +1 -1
  102. package/src/sap/ui/mdc/table/PropertyHelper.js +1 -1
  103. package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +1 -1
  104. package/src/sap/ui/mdc/table/RowActionItem.js +1 -1
  105. package/src/sap/ui/mdc/table/RowSettings.js +1 -1
  106. package/src/sap/ui/mdc/table/utils/Personalization.js +1 -1
  107. package/src/sap/ui/mdc/themes/base/Geomap.less +50 -0
  108. package/src/sap/ui/mdc/ushell/SemanticObjectMapping.js +1 -1
  109. package/src/sap/ui/mdc/ushell/SemanticObjectMappingItem.js +1 -1
  110. package/src/sap/ui/mdc/ushell/SemanticObjectUnavailableAction.js +1 -1
  111. package/src/sap/ui/mdc/util/InfoBar.js +1 -1
  112. package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
  113. package/src/sap/ui/mdc/util/PropertyHelper.js +1 -1
  114. package/src/sap/ui/mdc/util/PropertyHelperUtil.js +1 -1
  115. package/src/sap/ui/mdc/valuehelp/Dialog.js +2 -2
  116. package/src/sap/ui/mdc/valuehelp/FilterBar.js +22 -3
  117. package/src/sap/ui/mdc/valuehelp/Popover.js +1 -1
  118. package/src/sap/ui/mdc/valuehelp/base/Container.js +1 -1
  119. package/src/sap/ui/mdc/valuehelp/base/Content.js +1 -1
  120. package/src/sap/ui/mdc/valuehelp/base/DefineConditionPanel.js +126 -25
  121. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +1 -1
  122. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +4 -3
  123. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +1 -1
  124. package/src/sap/ui/mdc/valuehelp/content/Bool.js +1 -1
  125. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +1 -1
  126. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +1 -1
  127. package/src/sap/ui/mdc/valuehelp/content/FixedListItem.js +1 -1
  128. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +1 -1
  129. package/src/sap/ui/mdc/valuehelp/content/MTable.js +1 -1
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] Initial settings for the new control
17
17
  * @class A <code>LinkItem</code> control is used in the {@link sap.ui.mdc.Link} control to provide a navigation target.
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.141.2
19
+ * @version 1.142.0
20
20
  * @constructor
21
21
  * @public
22
22
  * @since 1.58.0
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * supposed that the properties of the item structure is not changed.
44
44
  * @extends sap.ui.core.Control
45
45
  * @author SAP SE
46
- * @version 1.141.2
46
+ * @version 1.142.0
47
47
  * @constructor
48
48
  * @private
49
49
  * @since 1.54.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for <code>items</code> aggregation in <code>Panel</code> control.
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.141.2
19
+ * @version 1.142.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.54.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.141.2
19
+ * @version 1.142.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.58.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.141.2
19
+ * @version 1.142.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.58.0
@@ -16,7 +16,7 @@ sap.ui.define([
16
16
  * @param {object} [mSettings] initial settings for the new control
17
17
  * @class Type for...
18
18
  * @extends sap.ui.core.Element
19
- * @version 1.141.2
19
+ * @version 1.142.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.60.0
@@ -266,7 +266,7 @@ valuehelp.CANCEL=Cancel
266
266
  valuehelp.RESET=Reset
267
267
 
268
268
  #XTOL, 48: Tooltip for Remove condition in Define Conditions
269
- valuehelp.DEFINECONDITIONS_REMOVECONDITION=Remove Condition
269
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION=Remove condition
270
270
 
271
271
  #XTOL: Screenreader annouce text for Remove condition in Define Conditions
272
272
  valuehelp.DEFINECONDITIONS_REMOVECONDITION_ANNOUNCE=Condition removed
@@ -280,6 +280,15 @@ valuehelp.DEFINECONDITIONS_ADDCONDITION=Add
280
280
  #XBUT, 48: desciption for Add condition in Define Conditions
281
281
  valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=Add Condition
282
282
 
283
+ #XACT, 48: desciption for Add condition in Define Conditions
284
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL=Remove condition {0}
285
+
286
+ #XACT, 48: desciption for Add condition in Define Conditions
287
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_UNDEFINED=Remove undefined condition
288
+
289
+ #XACT, 48: desciption for Add condition in Define Conditions
290
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_INVALID=Remove invalid condition
291
+
283
292
  #XTIT: invisible field label for operators field on define conditions
284
293
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=Operator
285
294
 
@@ -379,6 +388,9 @@ valuehelp.PAGE_COUNT={0}/{1}
379
388
  #XFLD,15: Text for no item selected
380
389
  valuehelp.NOT_SELECTED=(Not Selected)
381
390
 
391
+ #XACT: ARIA label for search field in valuehelp dialog, {0} is the title of the valuehelp dialog
392
+ valuehelp.SEARCHFIELD_ARIA_LABEL=Search for {0}
393
+
382
394
  #XFLD:
383
395
  info.POPOVER_FACTSHEET=Display Fact Sheet
384
396
  #XTIT: Heading for user or company contact information on a quick view card
@@ -405,8 +405,8 @@ table.ANNOUNCEMENT_TABLE_UPDATED=Die Tabelle {0} wurde aktualisiert. Es sind Ele
405
405
  table.ANNOUNCEMENT_TABLE_UPDATED_SING=Die Tabelle {0} wurde aktualisiert. Es ist {1} Element verf\u00FCgbar.
406
406
  table.ANNOUNCEMENT_TABLE_UPDATED_MULT=Die Tabelle {0} wurde aktualisiert. Es sind {1} Elemente verf\u00FCgbar.
407
407
  table.ANNOUNCEMENT_TABLE_UPDATED_NOITEMS=Die Tabelle {0} wurde aktualisiert. Es sind keine Elemente verf\u00FCgbar.
408
- table.SHORTCUT_EXPORT_TO_EXCEL=Strg+UMSCHALT+E
409
- table.SHORTCUT_EXPORT_TO_EXCEL_MAC=Cmd+UMSCHALT+E
408
+ table.SHORTCUT_EXPORT_TO_EXCEL=Strg+ Umschalt +E
409
+ table.SHORTCUT_EXPORT_TO_EXCEL_MAC=Cmd+Umschalt +E
410
410
  table.PERSONALIZATION_DIALOG_SORT_RESTRICTION=Sie k\u00F6nnen nur sichtbare Spalten sortieren. Wenn eine Spalte nicht eingeblendet ist, wird sie nicht sortiert.
411
411
  table.PERSONALIZATION_DIALOG_GROUP_RESTRICTION_TOTALS=Sie k\u00F6nnen die Spalten {0} hier nicht sehen, da Summen verwendet werden. Entfernen Sie die Summen, um diese Spalten zu sehen.
412
412
  table.PERSONALIZATION_DIALOG_GROUP_RESTRICTION_VISIBLE=Sie k\u00F6nnen nur sichtbare Spalten gruppieren. Wenn eine Spalte nicht eingeblendet ist, wird sie nicht gruppiert.
@@ -163,7 +163,7 @@ valuehelp.CANCEL=\u206A\u206A\u206A\u200C\u200B\u200D\u200B\u200C\u200D\u200D\u2
163
163
 
164
164
  valuehelp.RESET=\u206A\u206A\u206A\u200C\u200B\u200D\u200C\u200B\u200D\u200C\u200C\u200C\u200B\u200C\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200C\u200C\u200C\u200B\u200B\u200B\u200C\u200D\u200D\u200D\u200B\u200C\u200C\u200D\u200D\u200B\u200D\u200D\u200D\u200C\u200C\u200D\u200C\u206AReset\u206A\u206A
165
165
 
166
- valuehelp.DEFINECONDITIONS_REMOVECONDITION=\u206A\u206A\u206A\u200D\u200B\u200D\u200B\u200C\u200B\u200C\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200C\u200C\u200D\u200D\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200D\u200D\u200B\u200C\u200B\u200C\u200B\u200B\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u206ARemove Condition\u206A\u206A
166
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION=\u206A\u206A\u206A\u200D\u200B\u200D\u200B\u200C\u200B\u200C\u200D\u200D\u200D\u200C\u200C\u200C\u200B\u200C\u200C\u200D\u200D\u200C\u200C\u200D\u200B\u200D\u200C\u200D\u200D\u200D\u200B\u200C\u200B\u200C\u200B\u200B\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u206ARemove condition\u206A\u206A
167
167
 
168
168
  valuehelp.DEFINECONDITIONS_REMOVECONDITION_ANNOUNCE=\u206A\u206A\u206A\u200C\u200D\u200D\u200C\u200B\u200C\u200C\u200C\u200D\u200C\u200D\u200D\u200B\u200D\u200C\u200C\u200B\u200B\u200B\u200C\u200B\u200C\u200D\u200C\u200D\u200D\u200C\u200C\u200B\u200B\u200C\u200B\u200D\u200C\u200B\u200C\u200C\u200B\u200D\u206ACondition removed\u206A\u206A
169
169
 
@@ -173,6 +173,12 @@ valuehelp.DEFINECONDITIONS_ADDCONDITION=\u206A\u206A\u206A\u200C\u200B\u200C\u20
173
173
 
174
174
  valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=\u206A\u206A\u206A\u200D\u200B\u200D\u200D\u200B\u200B\u200B\u200B\u200C\u200D\u200C\u200D\u200B\u200C\u200B\u200C\u200B\u200C\u200C\u200D\u200B\u200D\u200B\u200D\u200B\u200C\u200D\u200B\u200D\u200D\u200C\u200B\u200C\u200B\u200C\u200D\u200B\u200B\u200D\u206AAdd Condition\u206A\u206A
175
175
 
176
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL=\u206A\u206A\u206A\u200C\u200C\u200C\u200C\u200D\u200D\u200C\u200D\u200C\u200D\u200B\u200B\u200D\u200B\u200C\u200D\u200B\u200B\u200B\u200B\u200B\u200B\u200D\u200D\u200C\u200B\u200B\u200B\u200C\u200B\u200B\u200B\u200B\u200B\u200B\u200B\u200C\u200B\u200D\u200B\u200D\u206ARemove condition \u200B\u200B\u200B{0}\u200C\u200C\u200C\u206A\u206A
177
+
178
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_UNDEFINED=\u206A\u206A\u206A\u200D\u200C\u200D\u200D\u200D\u200D\u200B\u200B\u200D\u200C\u200B\u200C\u200D\u200C\u200C\u200B\u200C\u200B\u200C\u200B\u200C\u200D\u200D\u200C\u200C\u200D\u200C\u200B\u200B\u200C\u200C\u200C\u200D\u200B\u200C\u200C\u200C\u200D\u200C\u200B\u206ARemove undefined condition\u206A\u206A
179
+
180
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_INVALID=\u206A\u206A\u206A\u200D\u200C\u200B\u200C\u200D\u200C\u200D\u200D\u200B\u200D\u200B\u200B\u200C\u200D\u200D\u200B\u200D\u200C\u200B\u200C\u200D\u200B\u200B\u200C\u200C\u200D\u200B\u200C\u200D\u200C\u200D\u200B\u200B\u200B\u200D\u200C\u200D\u200C\u200B\u200C\u206ARemove invalid condition\u206A\u206A
181
+
176
182
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=\u206A\u206A\u206A\u200D\u200D\u200D\u200B\u200B\u200C\u200B\u200C\u200B\u200C\u200C\u200D\u200C\u200D\u200B\u200B\u200B\u200D\u200D\u200C\u200D\u200D\u200D\u200B\u200B\u200C\u200D\u200B\u200C\u200C\u200C\u200D\u200D\u200D\u200C\u200D\u200B\u200B\u200B\u200C\u206AOperator\u206A\u206A
177
183
 
178
184
  valuehelp.DEFINECONDITIONS_VALUE=\u206A\u206A\u206A\u200C\u200C\u200C\u200C\u200B\u200C\u200B\u200B\u200D\u200D\u200C\u200B\u200D\u200B\u200D\u200D\u200C\u200D\u200C\u200D\u200B\u200D\u200D\u200C\u200B\u200D\u200B\u200D\u200B\u200D\u200B\u200C\u200C\u200D\u200D\u200B\u200D\u200C\u200C\u200D\u200C\u206AValue\u206A\u206A
@@ -239,6 +245,8 @@ valuehelp.PAGE_COUNT=\u206A\u206A\u206A\u200C\u200B\u200C\u200C\u200C\u200D\u200
239
245
 
240
246
  valuehelp.NOT_SELECTED=\u206A\u206A\u206A\u200C\u200D\u200B\u200D\u200D\u200B\u200D\u200D\u200C\u200C\u200B\u200D\u200B\u200C\u200D\u200D\u200C\u200C\u200D\u200C\u200B\u200D\u200D\u200D\u200D\u200B\u200D\u200B\u200B\u200D\u200C\u200B\u200B\u200D\u200D\u200D\u200B\u200C\u206A(Not Selected)\u206A\u206A
241
247
 
248
+ valuehelp.SEARCHFIELD_ARIA_LABEL=\u206A\u206A\u206A\u200C\u200B\u200C\u200B\u200C\u200D\u200B\u200B\u200C\u200B\u200B\u200D\u200D\u200B\u200C\u200D\u200D\u200B\u200D\u200B\u200D\u200B\u200C\u200B\u200C\u200C\u200B\u200B\u200B\u200D\u200D\u200B\u200B\u200D\u200B\u200B\u200D\u200B\u206ASearch for \u200B\u200B\u200B{0}\u200C\u200C\u200C\u206A\u206A
249
+
242
250
  info.POPOVER_FACTSHEET=\u206A\u206A\u206A\u200C\u200B\u200B\u200D\u200B\u200B\u200D\u200D\u200B\u200D\u200B\u200C\u200C\u200D\u200B\u200C\u200B\u200C\u200B\u200C\u200D\u200B\u200B\u200B\u200B\u200B\u200B\u200B\u200C\u200D\u200D\u200B\u200B\u200C\u200C\u200D\u200C\u200D\u200B\u200C\u200B\u206ADisplay Fact Sheet\u206A\u206A
243
251
  info.POPOVER_CONTACT_SECTION_TITLE=\u206A\u206A\u206A\u200D\u200D\u200B\u200C\u200C\u200D\u200C\u200B\u200D\u200D\u200D\u200B\u200D\u200B\u200C\u200B\u200B\u200C\u200B\u200D\u200C\u200D\u200D\u200C\u200D\u200D\u200D\u200D\u200C\u200C\u200B\u200B\u200D\u200B\u200C\u200D\u200C\u200D\u200C\u200B\u206AContact Information\u206A\u206A
244
252
  info.POPOVER_DEFINE_LINKS=\u206A\u206A\u206A\u200C\u200C\u200C\u200C\u200C\u200C\u200B\u200D\u200C\u200D\u200D\u200C\u200C\u200D\u200C\u200D\u200D\u200D\u200C\u200B\u200D\u200B\u200D\u200D\u200B\u200B\u200B\u200C\u200D\u200B\u200D\u200B\u200B\u200C\u200D\u200D\u200B\u200B\u200C\u200C\u206AMore Links\u206A\u206A
@@ -49,7 +49,7 @@ operators.EndsWith.longText=se termine par
49
49
 
50
50
  operators.NotEndsWith.longText=ne se termine pas par
51
51
 
52
- operators.Contains.longText=comprend
52
+ operators.Contains.longText=contient
53
53
 
54
54
  operators.NotContains.longText=ne contient pas
55
55
 
@@ -32,7 +32,7 @@ sap.ui.define(
32
32
  *
33
33
  *
34
34
  * @author SAP SE
35
- * @version 1.141.2
35
+ * @version 1.142.0
36
36
  * @alias sap.ui.mdc.mixin.AdaptationMixin
37
37
  * @namespace
38
38
  * @since 1.82.0
@@ -59,7 +59,7 @@ sap.ui.define(["sap/ui/mdc/util/loadModules", "sap/base/Log", "sap/ui/mdc/BaseDe
59
59
  * </ul>
60
60
  *
61
61
  * @author SAP SE
62
- * @version 1.141.2
62
+ * @version 1.142.0
63
63
  * @alias sap.ui.mdc.mixin.DelegateMixin
64
64
  * @namespace
65
65
  * @since 1.76.0
@@ -17,7 +17,7 @@ sap.ui.define([
17
17
  * Enhances a FilterBar control prototype methods for properly handling layout changes in FilterBar controls.
18
18
  *
19
19
  * @author SAP SE
20
- * @version 1.141.2
20
+ * @version 1.142.0
21
21
  * @alias sap.ui.mdc.mixin.FilterBarLayoutMixin
22
22
  * @namespace
23
23
  * @since 1.141.0
@@ -43,7 +43,7 @@ sap.ui.define([
43
43
  * </ul>
44
44
  *
45
45
  * @author SAP SE
46
- * @version 1.141.2
46
+ * @version 1.142.0
47
47
  * @alias sap.ui.mdc.mixin.FilterIntegrationMixin
48
48
  * @namespace
49
49
  * @since 1.82.0
@@ -12,7 +12,7 @@ sap.ui.define(
12
12
  * Calling any of the enhanced methods after control exit will result in a no-op.
13
13
  *
14
14
  * @author SAP SE
15
- * @version 1.141.2
15
+ * @version 1.142.0
16
16
  * @alias sap.ui.mdc.mixin.PromiseMixin
17
17
  * @namespace
18
18
  * @since 1.85.0
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * </ul>
40
40
  *
41
41
  * @author SAP SE
42
- * @version 1.141.2
42
+ * @version 1.142.0
43
43
  * @alias sap.ui.mdc.mixin.PropertyHelperMixin
44
44
  * @namespace
45
45
  * @since 1.100.0
@@ -47,7 +47,7 @@ sap.ui.define([
47
47
  * </ul>
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.141.2
50
+ * @version 1.142.0
51
51
  * @public
52
52
  * @since 1.114.0
53
53
  * @namespace
@@ -0,0 +1,60 @@
1
+ /*!
2
+ * OpenUI5
3
+ * (c) Copyright 2025 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
+ "../../GeomapDelegate", 'sap/ui/mdc/odata/v4/TypeMap'
9
+ ], (
10
+ GeomapDelegate,
11
+ ODataV4TypeMap
12
+ ) => {
13
+ "use strict";
14
+ /**
15
+ * Delegate class for {@link sap.ui.mdc.Geomap Geomap} and ODataV4.<br>
16
+ * This class provides method calls, which are called by the <code>Geomap</code> at specific operations and allows to overwrite an internal behaviour.
17
+ *
18
+ * @namespace
19
+ * @author SAP SE
20
+ * @alias module:sap/ui/mdc/odata/v4/GeomapDelegate
21
+ * @extends module:sap/ui/mdc/GeomapDelegate
22
+ * @since 1.140
23
+ *
24
+ * @experimental
25
+ * @private
26
+ * @ui5-restricted sap.fe, sap.ui.mdc
27
+ *
28
+ */
29
+ const Delegate = Object.assign({}, GeomapDelegate);
30
+
31
+ Delegate.getTypeMap = function(oPayload) {
32
+ return ODataV4TypeMap;
33
+ };
34
+
35
+ /**
36
+ * Creates an MDC geomap Item for given property.
37
+ * @param {string} sPropertyName the name of the property in the propertyInfo object.
38
+ * @param {sap.ui.mdc.Geomap} oGeomap Reference to the MDC geomap
39
+ * @param {string} sRole Role of the new item (if available)
40
+ * @returns {Promise<sap.ui.mdc.geomap.Item>} Created MDC Item
41
+ *
42
+ * @experimental
43
+ * @private
44
+ * @ui5-restricted sap.fe, sap.ui.mdc
45
+ */
46
+ Delegate._createMDCChartItem = function(sPropertyName, oGeomap, sRole) {
47
+
48
+ return this._getPropertyInfosByName(sPropertyName, oGeomap).then((oPropertyInfo) => {
49
+ if (!oPropertyInfo) {
50
+ return null;
51
+ }
52
+
53
+ return this._createMDCItemFromProperty(oPropertyInfo, oGeomap.getId(), sRole);
54
+
55
+ });
56
+
57
+ };
58
+
59
+ return Delegate;
60
+ });
@@ -7,6 +7,7 @@
7
7
  sap.ui.define([
8
8
  "../../TableDelegate",
9
9
  "../../table/ODataV4PropertyHelper",
10
+ "sap/ui/table/Table",
10
11
  "sap/ui/mdc/enums/TableP13nMode",
11
12
  "sap/ui/mdc/enums/TableType",
12
13
  "sap/ui/mdc/enums/TableSelectionMode",
@@ -19,6 +20,7 @@ sap.ui.define([
19
20
  ], (
20
21
  TableDelegate,
21
22
  ODataV4PropertyHelper,
23
+ Table,
22
24
  P13nMode,
23
25
  TableType,
24
26
  SelectionMode,
@@ -55,7 +57,7 @@ sap.ui.define([
55
57
  * @public
56
58
  */
57
59
 
58
- /*
60
+ /*
59
61
  * restricted for sap.fe (there's no way to make a property of a type private, therefore it's defined outside of the typedef)
60
62
  * TODO: Rename to "contextDefiningProperties" before making it public.
61
63
  * property {string[]} [extension.additionalProperties]
@@ -231,6 +233,36 @@ sap.ui.define([
231
233
  return aSorters;
232
234
  };
233
235
 
236
+ /**
237
+ * Extracts the model name and path from a binding path string.
238
+ *
239
+ * @param {string} sPath The binding path that might contain a model name (e.g. "myModel>/Products" or "/Products")
240
+ * @returns {{modelName: string, path: string}} Model name and path
241
+ */
242
+ function extractModelNameAndPath(sPath) {
243
+ const aMatch = sPath?.match(/^([^>]+)>(.*)$/);
244
+
245
+ if (aMatch) {
246
+ return {modelName: aMatch[1], path: aMatch[2]};
247
+ } else {
248
+ return {modelName: undefined, path: sPath};
249
+ }
250
+ }
251
+
252
+ /**
253
+ * Compares two binding paths, taking into account that one might contain a model name while the other doesn't.
254
+ *
255
+ * @param {string} sPath1 The first path to compare
256
+ * @param {string} sPath2 The second path to compare
257
+ * @returns {boolean} Whether the paths are different
258
+ */
259
+ function hasPathChanged(sPath1, sPath2) {
260
+ const oPath1 = extractModelNameAndPath(sPath1);
261
+ const oPath2 = extractModelNameAndPath(sPath2);
262
+
263
+ return oPath1.path !== oPath2.path;
264
+ }
265
+
234
266
  /**
235
267
  * Updates the binding of the table with the binding info object returned from
236
268
  * {@link module:sap/ui/mdc/TableDelegate.updateBindingInfo updateBindingInfo}. If an update is not possible, it rebinds the table.
@@ -262,7 +294,7 @@ sap.ui.define([
262
294
  oModel.setProperty("/@custom/hasGrandTotal", false);
263
295
  }
264
296
 
265
- if (!oBinding || oBinding.getPath() !== oBindingInfo.path) {
297
+ if (!oBinding || hasPathChanged(oBinding.getPath(), oBindingInfo.path)) {
266
298
  this.rebind(oTable, oBindingInfo);
267
299
  return;
268
300
  }
@@ -302,6 +334,21 @@ sap.ui.define([
302
334
  }
303
335
  };
304
336
 
337
+ /**
338
+ * @inheritDoc
339
+ */
340
+ Delegate.rebind = function(oTable, oBindingInfo) {
341
+ Table._addBindingListener(oBindingInfo, "createActivate", () => {
342
+ Promise.resolve().then(() => { // The count is updated after the event is fired
343
+ oTable._updateRowCountForHeader();
344
+ });
345
+ });
346
+ Table._addBindingListener(oBindingInfo, "createCompleted", () => {
347
+ oTable._updateRowCountForHeader();
348
+ });
349
+ TableDelegate.rebind.apply(this, arguments);
350
+ };
351
+
305
352
  Delegate.fetchExpandAndCollapseConfiguration = function(oTable) {
306
353
  if (!oTable._isOfType(TableType.TreeTable)) {
307
354
  return Promise.resolve({});
@@ -809,6 +856,10 @@ sap.ui.define([
809
856
  for (const sPropertyKey of aVisiblePropertyKeys) {
810
857
  const oProperty = oPropertyHelper.getProperty(sPropertyKey);
811
858
 
859
+ if (!oProperty) {
860
+ continue;
861
+ }
862
+
812
863
  if (oProperty.extension.technicallyGroupable) {
813
864
  addGroupablePropertyTo$$Aggregation(mAggregation, oTable, oProperty);
814
865
  }
@@ -47,7 +47,7 @@ sap.ui.define([
47
47
  * </ul>
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.141.2
50
+ * @version 1.142.0
51
51
  * @public
52
52
  * @since 1.114.0
53
53
  * @namespace
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.mdc.util.PropertyHelper
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.141.2
26
+ * @version 1.142.0
27
27
  *
28
28
  * @private
29
29
  * @since 1.85
@@ -111,7 +111,7 @@ sap.ui.define([
111
111
  * Retrieves the externalized state for a given control instance.
112
112
  * The retrieved state is equivalent to the <code>getCurrentState</code> API for the given control,
113
113
  * after all necessary changes have been applied (for example, variant appliance and <code>p13n, StateUtil</code> changes).
114
- * After the returned <code>Promise</code> has been resolved, the returned state is in sync with the according
114
+ * After the returned <code>Promise</code> has been resolved, the returned state is in sync with the corresponding
115
115
  * state object of the MDC control (for example, <code>filterConditions</code> for the <code>FilterBar</code> control).
116
116
  *
117
117
  * @public
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.mdc.p13n.subcontroller.SelectionController
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.141.2
25
+ * @version 1.142.0
26
26
  *
27
27
  * @private
28
28
  * @alias sap.ui.mdc.p13n.subcontroller.ColumnFreezeController
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  * @extends sap.ui.mdc.p13n.subcontroller.SelectionController
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.141.2
25
+ * @version 1.142.0
26
26
  *
27
27
  * @private
28
28
  * @alias sap.ui.mdc.p13n.subcontroller.ShowDetailsController