@openui5/sap.ui.mdc 1.141.2 → 1.143.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 (189) hide show
  1. package/README.md +2 -2
  2. package/REUSE.toml +39 -1
  3. package/THIRDPARTY.txt +36 -3
  4. package/package.json +4 -4
  5. package/src/sap/ui/mdc/.library +1 -1
  6. package/src/sap/ui/mdc/ActionToolbar.js +89 -63
  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 +31 -8
  12. package/src/sap/ui/mdc/FilterBar.js +1 -1
  13. package/src/sap/ui/mdc/FilterField.js +11 -11
  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 +7 -7
  19. package/src/sap/ui/mdc/Table.js +141 -116
  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/chart/Util.js +5 -2
  29. package/src/sap/ui/mdc/condition/Condition.js +1 -1
  30. package/src/sap/ui/mdc/condition/ConditionConverter.js +1 -1
  31. package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
  32. package/src/sap/ui/mdc/condition/FilterConverter.js +1 -1
  33. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +1 -1
  34. package/src/sap/ui/mdc/condition/Operator.js +1 -1
  35. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +1 -1
  36. package/src/sap/ui/mdc/condition/RangeOperator.js +1 -1
  37. package/src/sap/ui/mdc/designtime/geomap/Geomap.designtime.js +23 -0
  38. package/src/sap/ui/mdc/enums/GeomapControlPosition.js +46 -0
  39. package/src/sap/ui/mdc/enums/TableActionPosition.js +123 -0
  40. package/src/sap/ui/mdc/enums/TablePopinDisplay.js +36 -0
  41. package/src/sap/ui/mdc/field/ConditionType.js +1 -1
  42. package/src/sap/ui/mdc/field/ConditionTypeMixin.js +1 -1
  43. package/src/sap/ui/mdc/field/ConditionsType.js +1 -1
  44. package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
  45. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +1 -1
  46. package/src/sap/ui/mdc/field/FieldBase.js +137 -66
  47. package/src/sap/ui/mdc/field/FieldInfoBase.js +1 -1
  48. package/src/sap/ui/mdc/field/FieldInput.js +1 -1
  49. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
  50. package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
  51. package/src/sap/ui/mdc/field/FieldSelect.js +7 -1
  52. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
  53. package/src/sap/ui/mdc/field/MultiValueFieldDelegate.js +22 -0
  54. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +1 -1
  55. package/src/sap/ui/mdc/field/TokenDisplay.js +1 -1
  56. package/src/sap/ui/mdc/field/TokenizerDisplay.js +1 -1
  57. package/src/sap/ui/mdc/field/content/ContentFactory.js +3 -0
  58. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +35 -1
  59. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +3 -0
  60. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +1 -1
  61. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +1 -1
  62. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +1 -1
  63. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +1 -1
  64. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +1 -1
  65. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +1 -1
  66. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +1 -1
  67. package/src/sap/ui/mdc/flexibility/SortFlex.js +12 -5
  68. package/src/sap/ui/mdc/flexibility/Table.flexibility.js +17 -11
  69. package/src/sap/ui/mdc/flexibility/actiontoolbar/CombineAction.js +1 -1
  70. package/src/sap/ui/mdc/flexibility/actiontoolbar/SplitAction.js +1 -1
  71. package/src/sap/ui/mdc/flexibility/helpers/getAffectedSorter.js +25 -0
  72. package/src/sap/ui/mdc/geomap/Item.js +48 -0
  73. package/src/sap/ui/mdc/geomap/PropertyHelper.js +70 -0
  74. package/src/sap/ui/mdc/library.js +19 -4
  75. package/src/sap/ui/mdc/link/Factory.js +1 -1
  76. package/src/sap/ui/mdc/link/LinkItem.js +1 -1
  77. package/src/sap/ui/mdc/link/Panel.js +1 -1
  78. package/src/sap/ui/mdc/link/PanelItem.js +1 -1
  79. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
  80. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
  81. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
  82. package/src/sap/ui/mdc/messagebundle.properties +15 -1
  83. package/src/sap/ui/mdc/messagebundle_ar.properties +8 -0
  84. package/src/sap/ui/mdc/messagebundle_bg.properties +8 -0
  85. package/src/sap/ui/mdc/messagebundle_ca.properties +8 -0
  86. package/src/sap/ui/mdc/messagebundle_cnr.properties +8 -0
  87. package/src/sap/ui/mdc/messagebundle_cs.properties +8 -0
  88. package/src/sap/ui/mdc/messagebundle_cy.properties +9 -1
  89. package/src/sap/ui/mdc/messagebundle_da.properties +8 -0
  90. package/src/sap/ui/mdc/messagebundle_de.properties +10 -2
  91. package/src/sap/ui/mdc/messagebundle_el.properties +9 -1
  92. package/src/sap/ui/mdc/messagebundle_en.properties +9 -1
  93. package/src/sap/ui/mdc/messagebundle_en_GB.properties +9 -1
  94. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +12 -1
  95. package/src/sap/ui/mdc/messagebundle_es.properties +10 -2
  96. package/src/sap/ui/mdc/messagebundle_es_MX.properties +8 -0
  97. package/src/sap/ui/mdc/messagebundle_et.properties +8 -0
  98. package/src/sap/ui/mdc/messagebundle_fi.properties +8 -0
  99. package/src/sap/ui/mdc/messagebundle_fr.properties +11 -3
  100. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +8 -0
  101. package/src/sap/ui/mdc/messagebundle_hi.properties +8 -0
  102. package/src/sap/ui/mdc/messagebundle_hr.properties +9 -1
  103. package/src/sap/ui/mdc/messagebundle_hu.properties +8 -0
  104. package/src/sap/ui/mdc/messagebundle_id.properties +11 -3
  105. package/src/sap/ui/mdc/messagebundle_it.properties +8 -0
  106. package/src/sap/ui/mdc/messagebundle_iw.properties +8 -0
  107. package/src/sap/ui/mdc/messagebundle_ja.properties +9 -1
  108. package/src/sap/ui/mdc/messagebundle_kk.properties +9 -1
  109. package/src/sap/ui/mdc/messagebundle_ko.properties +8 -0
  110. package/src/sap/ui/mdc/messagebundle_lt.properties +8 -0
  111. package/src/sap/ui/mdc/messagebundle_lv.properties +8 -0
  112. package/src/sap/ui/mdc/messagebundle_mk.properties +8 -0
  113. package/src/sap/ui/mdc/messagebundle_ms.properties +9 -1
  114. package/src/sap/ui/mdc/messagebundle_nl.properties +8 -0
  115. package/src/sap/ui/mdc/messagebundle_no.properties +8 -0
  116. package/src/sap/ui/mdc/messagebundle_pl.properties +8 -0
  117. package/src/sap/ui/mdc/messagebundle_pt.properties +9 -1
  118. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +8 -0
  119. package/src/sap/ui/mdc/messagebundle_ro.properties +9 -1
  120. package/src/sap/ui/mdc/messagebundle_ru.properties +9 -1
  121. package/src/sap/ui/mdc/messagebundle_sh.properties +8 -0
  122. package/src/sap/ui/mdc/messagebundle_sk.properties +8 -0
  123. package/src/sap/ui/mdc/messagebundle_sl.properties +9 -1
  124. package/src/sap/ui/mdc/messagebundle_sr.properties +8 -0
  125. package/src/sap/ui/mdc/messagebundle_sv.properties +8 -0
  126. package/src/sap/ui/mdc/messagebundle_th.properties +8 -0
  127. package/src/sap/ui/mdc/messagebundle_tr.properties +9 -1
  128. package/src/sap/ui/mdc/messagebundle_uk.properties +8 -0
  129. package/src/sap/ui/mdc/messagebundle_vi.properties +11 -3
  130. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +9 -1
  131. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +8 -0
  132. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +1 -1
  133. package/src/sap/ui/mdc/mixin/DelegateMixin.js +1 -1
  134. package/src/sap/ui/mdc/mixin/FilterBarLayoutMixin.js +1 -1
  135. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +1 -1
  136. package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
  137. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +1 -1
  138. package/src/sap/ui/mdc/odata/TypeMap.js +1 -1
  139. package/src/sap/ui/mdc/odata/v4/GeomapDelegate.js +60 -0
  140. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +53 -2
  141. package/src/sap/ui/mdc/odata/v4/TypeMap.js +1 -1
  142. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +16 -0
  143. package/src/sap/ui/mdc/p13n/PropertyHelper.js +1 -1
  144. package/src/sap/ui/mdc/p13n/StateUtil.js +1 -1
  145. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +3 -0
  146. package/src/sap/ui/mdc/p13n/subcontroller/ColumnFreezeController.js +1 -1
  147. package/src/sap/ui/mdc/p13n/subcontroller/ShowDetailsController.js +1 -1
  148. package/src/sap/ui/mdc/rules/Table.support.js +149 -118
  149. package/src/sap/ui/mdc/table/ActionLayoutData.js +47 -0
  150. package/src/sap/ui/mdc/table/Column.js +40 -186
  151. package/src/sap/ui/mdc/table/ColumnSettings.js +1 -1
  152. package/src/sap/ui/mdc/table/CreationRow.js +1 -1
  153. package/src/sap/ui/mdc/table/DragDropConfig.js +1 -1
  154. package/src/sap/ui/mdc/table/GridTableType.js +35 -21
  155. package/src/sap/ui/mdc/table/ODataV4PropertyHelper.js +1 -1
  156. package/src/sap/ui/mdc/table/PropertyHelper.js +1 -1
  157. package/src/sap/ui/mdc/table/ResponsiveColumnSettings.js +1 -1
  158. package/src/sap/ui/mdc/table/ResponsiveTableType.js +97 -14
  159. package/src/sap/ui/mdc/table/RowActionItem.js +1 -1
  160. package/src/sap/ui/mdc/table/RowSettings.js +1 -1
  161. package/src/sap/ui/mdc/table/TableSettings.js +34 -7
  162. package/src/sap/ui/mdc/table/TableTypeBase.js +38 -7
  163. package/src/sap/ui/mdc/table/utils/Personalization.js +1 -1
  164. package/src/sap/ui/mdc/themes/base/Geomap.less +50 -0
  165. package/src/sap/ui/mdc/ushell/SemanticObjectMapping.js +1 -1
  166. package/src/sap/ui/mdc/ushell/SemanticObjectMappingItem.js +1 -1
  167. package/src/sap/ui/mdc/ushell/SemanticObjectUnavailableAction.js +1 -1
  168. package/src/sap/ui/mdc/util/InfoBar.js +1 -1
  169. package/src/sap/ui/mdc/util/PromiseCache.js +1 -1
  170. package/src/sap/ui/mdc/util/PropertyHelper.js +1 -1
  171. package/src/sap/ui/mdc/util/PropertyHelperUtil.js +1 -1
  172. package/src/sap/ui/mdc/valuehelp/Dialog.js +2 -2
  173. package/src/sap/ui/mdc/valuehelp/FilterBar.js +22 -3
  174. package/src/sap/ui/mdc/valuehelp/Popover.js +1 -1
  175. package/src/sap/ui/mdc/valuehelp/base/Container.js +1 -1
  176. package/src/sap/ui/mdc/valuehelp/base/Content.js +1 -1
  177. package/src/sap/ui/mdc/valuehelp/base/DefineConditionPanel.js +140 -26
  178. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +1 -1
  179. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +4 -3
  180. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +1 -1
  181. package/src/sap/ui/mdc/valuehelp/content/Bool.js +1 -1
  182. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +1 -1
  183. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +1 -1
  184. package/src/sap/ui/mdc/valuehelp/content/FixedListItem.js +1 -1
  185. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +1 -1
  186. package/src/sap/ui/mdc/valuehelp/content/MTable.js +7 -5
  187. package/test/sap/ui/mdc/testutils/opa/filterbar/Actions.js +36 -0
  188. package/test/sap/ui/mdc/testutils/opa/filterfield/Actions.js +20 -3
  189. package/test/sap/ui/mdc/testutils/opa/valueHelp/Actions.js +33 -1
@@ -72,7 +72,7 @@ sap.ui.define([
72
72
  * @class The <code>FilterBarBase</code> control is the base for filter displaying controls in MDC.
73
73
  * @extends sap.ui.mdc.Control
74
74
  * @author SAP SE
75
- * @version 1.141.2
75
+ * @version 1.143.0
76
76
  * @constructor
77
77
  * @public
78
78
  * @since 1.80.0
@@ -225,6 +225,17 @@ sap.ui.define([
225
225
  type: "sap.ui.mdc.filterbar.IFilterContainer",
226
226
  multiple: false,
227
227
  visibility: "hidden"
228
+ },
229
+
230
+ /**
231
+ * Internal aggregation that stores invisible texts for accessibility.
232
+ *
233
+ * @since 1.142
234
+ */
235
+ invisibleTexts: {
236
+ type: "sap.ui.core.InvisibleText",
237
+ multiple: true,
238
+ visibility: "hidden"
228
239
  }
229
240
  },
230
241
  associations: {
@@ -2031,6 +2042,29 @@ sap.ui.define([
2031
2042
  return aSearchConditions[0] ? aSearchConditions[0].values[0] : "";
2032
2043
  };
2033
2044
 
2045
+ /**
2046
+ * Adds an <code>InvisibleText</code> to the <code>FilterBar</code> that can be used for accessibility purposes.
2047
+ *
2048
+ * @param {sap.ui.core.InvisibleText} oInvisibleText The invisible text to be added
2049
+ * @protected
2050
+ * @since 1.142
2051
+ */
2052
+ FilterBarBase.prototype.addInvisibleText = function(oInvisibleText) {
2053
+ this.addAggregation("invisibleTexts", oInvisibleText);
2054
+ };
2055
+
2056
+ /**
2057
+ * Retrieves an <code>InvisibleText</code> by ID.
2058
+ *
2059
+ * @param {string} sId ID of the invisible text to be retrieved
2060
+ * @returns {sap.ui.core.InvisibleText} The invisible text with the given ID
2061
+ * @protected
2062
+ * @since 1.142
2063
+ */
2064
+ FilterBarBase.prototype.getInvisibleText = function(sId) {
2065
+ return this.getAggregation("invisibleTexts")?.find((oInvisibleText) => oInvisibleText.getId() === sId);
2066
+ };
2067
+
2034
2068
  FilterBarBase.prototype.exit = function() {
2035
2069
 
2036
2070
  if (this._hasAssignedVariantManagement() && FlexApplyAPI) {
@@ -37,6 +37,9 @@ sap.ui.define([],
37
37
  oRm.style("width", oControl.getWidth());
38
38
  }
39
39
  oRm.openEnd();
40
+
41
+ oControl.getAggregation("invisibleTexts")?.forEach((oInvisibleText) => oRm.renderControl(oInvisibleText));
42
+
40
43
  const oInnerLayout = oControl.getAggregation("layout") ? oControl.getAggregation("layout").getInner() : null;
41
44
  oRm.renderControl(oInnerLayout);
42
45
  oRm.close("div");
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @extends sap.ui.mdc.util.PropertyHelper
28
28
  *
29
29
  * @author SAP SE
30
- * @version 1.141.2
30
+ * @version 1.143.0
31
31
  *
32
32
  * @private
33
33
  * @since 1.95
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  *
40
40
  * @extends sap.ui.mdc.filterbar.FilterBarBase
41
41
  * @author SAP SE
42
- * @version 1.141.2
42
+ * @version 1.143.0
43
43
  * @constructor
44
44
  * @private
45
45
  * @ui5-restricted sap.ui.mdc
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * <b>Note:</b> The <code>FilterBar</code> can only be used for a {@link sap.ui.mdc.valuehelp.Dialog Dialog} and not on its own.
28
28
  * @extends sap.ui.mdc.valuehelp.FilterBar
29
29
  * @author SAP SE
30
- * @version 1.141.2
30
+ * @version 1.143.0
31
31
  * @constructor
32
32
  * @public
33
33
  * @since 1.84.0
@@ -15,7 +15,7 @@ sap.ui.define([
15
15
  *
16
16
  * @alias sap.ui.mdc.flexibility.Chart
17
17
  * @author SAP SE
18
- * @version 1.141.2
18
+ * @version 1.143.0
19
19
  */
20
20
  return {
21
21
  addItem: ChartItemFlex.addItem,
@@ -12,7 +12,7 @@ sap.ui.define(['./FilterItemFlex', './ConditionFlex', './PropertyInfoFlex'], (Fi
12
12
  *
13
13
  * @alias sap.ui.mdc.flexibility.FilterBar
14
14
  * @author SAP SE
15
- * @version 1.141.2
15
+ * @version 1.143.0
16
16
  */
17
17
 
18
18
  return {
@@ -14,7 +14,7 @@ sap.ui.define([
14
14
  *
15
15
  * @alias sap.ui.mdc.flexibility.FilterBar
16
16
  * @author SAP SE
17
- * @version 1.141.2
17
+ * @version 1.143.0
18
18
  */
19
19
 
20
20
  const oFilterItemFlex = Object.assign({}, ItemBaseFlex);
@@ -187,7 +187,7 @@ sap.ui.define([
187
187
  // 3) Check & insert the item in the controls according aggregation
188
188
  .then((oControlAggregationItem) => {
189
189
  if (!oControlAggregationItem) {
190
- throw new Error("No item in" + oAggregation.name + " created. Change to " + this._getChangeTypeText(!bIsRevert) + "cannot be " + this._getOperationText(bIsRevert) + "at this moment");
190
+ throw new Error(`No item in ${oAggregation.name} created. Change to ${this._getChangeTypeText(!bIsRevert)} cannot be ${this._getOperationText(bIsRevert)} at this moment`);
191
191
  }
192
192
 
193
193
  if (aDefaultAggregation.indexOf(oControlAggregationItem) < 0) {
@@ -9,8 +9,9 @@ sap.ui.define([
9
9
  "sap/ui/fl/changeHandler/Base",
10
10
  "sap/ui/fl/changeHandler/condenser/Classification",
11
11
  "sap/ui/fl/changeHandler/common/ChangeCategories",
12
- "./helpers/addKeyOrName"
13
- ], (merge, Util, FLChangeHandlerBase, CondenserClassification, ChangeCategories, addKeyOrName) => {
12
+ "./helpers/addKeyOrName",
13
+ "./helpers/getAffectedSorter"
14
+ ], (merge, Util, FLChangeHandlerBase, CondenserClassification, ChangeCategories, addKeyOrName, getAffectedSorter) => {
14
15
  "use strict";
15
16
 
16
17
  const fFinalizeSortChange = function(oChange, oControl, oSortContent, bIsRevert) {
@@ -174,7 +175,13 @@ sap.ui.define([
174
175
  revert: fRemoveSort,
175
176
  getCondenserInfo: function(oChange, mPropertyBag) {
176
177
  return {
177
- affectedControl: { id: addKeyOrName(oChange.getContent()).key },
178
+ // DINC0635408: If the application uses flex without backend condensing, the following action will result in a faulty condensing behaviour:
179
+ // addSort(asc) -> save variant -> removeSort(asc) -> addSort(desc) == addSort(asc) !! expected outcome is addSort(desc)
180
+ // This is due to the fact, that in those cases only the additional changes applied are considered for condensing, leading to removeSort, addSort canceling each other out,
181
+ // as they do not have any differing information (both have the same "affectedControl").
182
+ // To circumvent this issue (also will happen in RTA), we add the sort order to the affectedControl id, to provide a proper distinction during condensing.
183
+ // This does not have any effect on the actual change, as condensing (and the affectedControl) is not stored in the change, but solely used during runtime.
184
+ affectedControl: { id: getAffectedSorter(oChange.getContent()) },
178
185
  affectedControlIdProperty: "name",
179
186
  targetContainer: oChange.getSelector(),
180
187
  targetAggregation: "sorters",
@@ -196,7 +203,7 @@ sap.ui.define([
196
203
  revert: fAddSort,
197
204
  getCondenserInfo: function(oChange, mPropertyBag) {
198
205
  return {
199
- affectedControl: { id: addKeyOrName(oChange.getContent()).key },
206
+ affectedControl: { id: getAffectedSorter(oChange.getContent()) },
200
207
  affectedControlIdProperty: "name",
201
208
  targetContainer: oChange.getSelector(),
202
209
  targetAggregation: "sorters",
@@ -218,7 +225,7 @@ sap.ui.define([
218
225
  revert: fMoveSort,
219
226
  getCondenserInfo: function(oChange, mPropertyBag) {
220
227
  return {
221
- affectedControl: { id: addKeyOrName(oChange.getContent()).key },
228
+ affectedControl: { id: getAffectedSorter(oChange.getContent()) },
222
229
  affectedControlIdProperty: "name",
223
230
  targetContainer: oChange.getSelector(),
224
231
  targetAggregation: "sorters",
@@ -5,22 +5,28 @@
5
5
  */
6
6
 
7
7
  sap.ui.define([
8
- './SortFlex',
9
- './ColumnFlex',
10
- './ConditionFlex',
11
- './GroupFlex',
12
- './AggregateFlex',
13
- './xConfigFlex',
14
- 'sap/ui/fl/changeHandler/condenser/Classification'
15
- ], (SortFlex, ColumnFlex, ConditionFlex, GroupFlex, AggregateFlex, xConfigFlex, CondenserClassification) => {
8
+ "./SortFlex",
9
+ "./ColumnFlex",
10
+ "./ConditionFlex",
11
+ "./GroupFlex",
12
+ "./AggregateFlex",
13
+ "./xConfigFlex"
14
+ ], (
15
+ SortFlex,
16
+ ColumnFlex,
17
+ ConditionFlex,
18
+ GroupFlex,
19
+ AggregateFlex,
20
+ xConfigFlex
21
+ ) => {
16
22
  "use strict";
17
23
 
18
24
  return {
19
25
  "hideControl": "default",
20
26
  "unhideControl": "default",
21
- addColumn: ColumnFlex.createAddChangeHandler(),
22
- removeColumn: ColumnFlex.createRemoveChangeHandler(),
23
- moveColumn: ColumnFlex.createMoveChangeHandler(),
27
+ addColumn: ColumnFlex.addColumn,
28
+ removeColumn: ColumnFlex.removeColumn,
29
+ moveColumn: ColumnFlex.moveColumn,
24
30
  removeSort: SortFlex.removeSort,
25
31
  addSort: SortFlex.addSort,
26
32
  moveSort: SortFlex.moveSort,
@@ -17,7 +17,7 @@ sap.ui.define([
17
17
  *
18
18
  * @alias sap.ui.mdc.flexibility.actiontoolbar.CombineAction
19
19
  * @author SAP SE
20
- * @version 1.141.2
20
+ * @version 1.143.0
21
21
  */
22
22
  const CombineAction = {
23
23
  ...CombineButtonsHandler
@@ -17,7 +17,7 @@ sap.ui.define([
17
17
  *
18
18
  * @alias sap.ui.mdc.flexibility.actiontoolbar.SplitAction
19
19
  * @author SAP SE
20
- * @version 1.141.2
20
+ * @version 1.143.0
21
21
  */
22
22
  const SplitAction = {
23
23
  ...SplitMenuButtonHandler,
@@ -0,0 +1,25 @@
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
+ sap.ui.define([
7
+ "./addKeyOrName"
8
+ ], (addKeyOrName) => {
9
+ "use strict";
10
+
11
+ /**
12
+ * Returns the ID of the sorter affected by the change.
13
+ *
14
+ * @param {object} oChangeContent content of the change
15
+ * @returns {string} ID of the affected control
16
+ *
17
+ * @private
18
+ */
19
+ const getAffectedSorter = (oChangeContent) => {
20
+ const sSortOrder = oChangeContent.descending ? "desc" : "asc";
21
+ return `${addKeyOrName(oChangeContent).key}-${sSortOrder}`;
22
+ };
23
+
24
+ return getAffectedSorter;
25
+ });
@@ -0,0 +1,48 @@
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
+ sap.ui.define([
7
+ "sap/ui/core/Element"
8
+ ], (Element) => {
9
+ "use strict";
10
+
11
+ /**
12
+ * Constructor for a new <code>Item</code>.
13
+ *
14
+ * @param {string} [sId] ID for the new element, generated automatically if no ID is given
15
+ * @param {object} [mSettings] initial settings for the new element
16
+ * @class The <code>Item</code> element for the geomap/property metadata used within MDC Geomap.
17
+ * @extends sap.ui.core.Element
18
+ * @author SAP SE
19
+ * @public
20
+ * @ui5-experimental-since 1.142
21
+ * @alias sap.ui.mdc.geomap.Item
22
+ */
23
+ const Item = Element.extend("sap.ui.mdc.geomap.Item", /** @lends sap.ui.mdc.geomap.Item.prototype */ {
24
+ metadata: {
25
+ library: "sap.ui.mdc",
26
+ properties: {
27
+ /**
28
+ * The unique identifier of the geomap item that reflects the name of property in the PropertyInfo.
29
+ *
30
+ * @since 1.142
31
+ */
32
+ propertyKey: {
33
+ type: "string"
34
+ },
35
+ /**
36
+ * Label for the item, either as a string literal or by a pointer, using the binding to some property containing the label.
37
+ */
38
+ label: {
39
+ type: "string"
40
+ }
41
+ }
42
+
43
+ }
44
+ });
45
+
46
+ return Item;
47
+
48
+ });
@@ -0,0 +1,70 @@
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
+ "../util/PropertyHelper", "sap/ui/core/Lib"
9
+ ], (
10
+ PropertyHelperBase,
11
+ Library
12
+ ) => {
13
+ "use strict";
14
+
15
+ /**
16
+ * Constructor for a new geomap property helper.
17
+ *
18
+ * @param {object[]} aProperties The properties to process in this helper
19
+ * @param {sap.ui.base.ManagedObject} [oParent] A reference to an instance that will act as the parent of this helper
20
+ *
21
+ * @class
22
+ * Geomap property helpers give geomaps of this library a consistent and standardized view on properties and their attributes.
23
+ * Property helpers validate the given properties, set default values, and provides utilities to work with these properties.
24
+ * The utilities can only be used for properties that are known to the helper. Known properties are all those that are passed to the constructor.
25
+ *
26
+ * @extends sap.ui.mdc.util.PropertyHelper
27
+ *
28
+ * @author SAP SE
29
+ * @version 1.143.0
30
+ *
31
+ * @private
32
+ * @ui5-experimental-since 1.142
33
+ * @alias sap.ui.mdc.geomap.PropertyHelper
34
+ */
35
+ const PropertyHelper = PropertyHelperBase.extend("sap.ui.mdc.geomap.PropertyHelper", {
36
+ constructor: function(aProperties, oParent) {
37
+ PropertyHelperBase.call(this, aProperties, oParent, {
38
+ propertyInfos: true
39
+ });
40
+ }
41
+ });
42
+
43
+ /**
44
+ * @inheritDoc
45
+ */
46
+ PropertyHelper.prototype.prepareProperty = function(oProperty, mProperties) {
47
+ if (!oProperty.path && oProperty.propertyPath) {
48
+ oProperty.path = oProperty.propertyPath;
49
+ }
50
+
51
+ if (!oProperty.typeConfig && oProperty.dataType) {
52
+ const oFormatOptions = oProperty.formatOptions ? oProperty.formatOptions : null;
53
+ const oConstraints = oProperty.constraints ? oProperty.constraints : {};
54
+
55
+ oProperty.typeConfig = this.getParent().getTypeMap().getTypeConfig(oProperty.dataType, oFormatOptions, oConstraints);
56
+ }
57
+
58
+ PropertyHelperBase.prototype.prepareProperty.apply(this, arguments);
59
+
60
+ oProperty.isAggregatable = function() {
61
+
62
+ if (oProperty) {
63
+ return oProperty.isComplex() ? false : oProperty.aggregatable;
64
+ }
65
+ };
66
+ };
67
+
68
+ return PropertyHelper;
69
+
70
+ });
@@ -22,13 +22,13 @@ sap.ui.define([
22
22
  * @namespace
23
23
  * @alias sap.ui.mdc
24
24
  * @author SAP SE
25
- * @version 1.141.2
25
+ * @version 1.143.0
26
26
  * @since 1.80
27
27
  * @public
28
28
  */
29
29
  const thisLib = Library.init({
30
30
  apiVersion: 2,
31
- version: "1.141.2",
31
+ version: "1.143.0",
32
32
  name: "sap.ui.mdc",
33
33
  dependencies: ["sap.ui.core", "sap.m"],
34
34
  ...{
@@ -46,6 +46,7 @@ sap.ui.define([
46
46
  "sap.ui.mdc.MultiSelectMode"
47
47
  ],
48
48
  interfaces: [
49
+ "sap.ui.mdc.IActionLayoutData",
49
50
  "sap.ui.mdc.IFilterSource",
50
51
  "sap.ui.mdc.IFilter",
51
52
  "sap.ui.mdc.IxState",
@@ -68,7 +69,8 @@ sap.ui.define([
68
69
  "sap.ui.mdc.MultiValueField",
69
70
  "sap.ui.mdc.link.Panel",
70
71
  "sap.ui.mdc.Chart",
71
- "sap.ui.mdc.p13n.PersistenceProvider"
72
+ "sap.ui.mdc.p13n.PersistenceProvider",
73
+ "sap.ui.mdc.Geomap"
72
74
  ],
73
75
  elements: [
74
76
  "sap.ui.mdc.table.Column",
@@ -78,6 +80,7 @@ sap.ui.define([
78
80
  "sap.ui.mdc.table.GridTableType",
79
81
  "sap.ui.mdc.table.ResponsiveTableType",
80
82
  "sap.ui.mdc.table.RowSettings",
83
+ "sap.ui.mdc.table.ActionLayoutData",
81
84
  "sap.ui.mdc.chart.Item",
82
85
  "sap.ui.mdc.chart.ChartSelectionDetails",
83
86
  "sap.ui.mdc.chart.SelectionButton",
@@ -106,7 +109,8 @@ sap.ui.define([
106
109
  "sap.ui.mdc.valuehelp.content.FixedList",
107
110
  "sap.ui.mdc.valuehelp.content.FixedListItem",
108
111
  "sap.ui.mdc.valuehelp.content.MDCTable",
109
- "sap.ui.mdc.valuehelp.content.MTable"
112
+ "sap.ui.mdc.valuehelp.content.MTable",
113
+ "sap.ui.mdc.geomap.Item"
110
114
  ],
111
115
  extensions: {
112
116
  flChangeHandlers: {
@@ -719,6 +723,17 @@ sap.ui.define([
719
723
  * @public
720
724
  */
721
725
 
726
+ /**
727
+ * Interface for subclasses of {@link sap.m.OverflowToolbarLayoutData} that position actions within the toolbar and configure the overflow menu.
728
+ * Classes implementing this interface must provide a <code>position</code> property, which uses an enumeration to define the relative order of the actions.
729
+ * The sequence of the enumeration values determines the placement of the actions.
730
+ * Enumeration values can be organized into groups by using the same prefix ending with the <code>Actions</code> keyword, such as <code>ClipboardActionsCopy</code> and <code>ClipboardActionsPaste</code>.
731
+ *
732
+ * @since 1.143
733
+ * @name sap.ui.mdc.IActionLayoutData
734
+ * @interface
735
+ * @public
736
+ */
722
737
 
723
738
  /**
724
739
  *
@@ -11,7 +11,7 @@ sap.ui.define(["sap/base/Log"], (Log) => {
11
11
  * @namespace Factory to access services outside of sap.ui.mdc library like for example <code>ushell</code> services.
12
12
  * @name sap.ui.mdc.link.Factory
13
13
  * @author SAP SE
14
- * @version 1.141.2
14
+ * @version 1.143.0
15
15
  * @private
16
16
  * @since 1.54.0
17
17
  */
@@ -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.143.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.143.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.143.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.143.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.143.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.143.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
@@ -604,6 +616,8 @@ chart.MISSING_DIMENSION_ERROR_MESSAGE=The chart type "{0}" is not supported with
604
616
  chart.MISSING_MEASURE_ERROR_MESSAGE=The chart type "{0}" is not supported with the selected measures. Please add at least {1} more measure(s) to use this chart type, or choose a different chart type.
605
617
  #XTXT: Error message title when the user has selected invalid chart type for the given dimensions and measures
606
618
  chart.INVALID_CHART_TYPE_ERROR_MESSAGE_TITLE=We couldn't display this
619
+ #XTXT: Error message description when there are no measures selected
620
+ chart.INVALID_CHART_TYPE_NO_MEASURE_ERROR_MESSAGE_DESCRIPTION=Select at least one measure to see the chart.
607
621
  #XTXT: Error message description when the user has selected invalid chart type for the given dimensions and measures
608
622
  chart.INVALID_CHART_TYPE_DEFAULT_ERROR_MESSAGE_DESCRIPTION=This chart type is not compatible with the dimensions and measures you've selected. Modify your settings or choose a different chart type.
609
623
  #XTXT: Change settings button text
@@ -173,6 +173,12 @@ valuehelp.DEFINECONDITIONS_ADDCONDITION=\u0625\u0636\u0627\u0641\u0629
173
173
 
174
174
  valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=\u0625\u0636\u0627\u0641\u0629 \u0634\u0631\u0637
175
175
 
176
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL=\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0634\u0631\u0637 {0}
177
+
178
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_UNDEFINED=\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0634\u0631\u0637 \u063A\u064A\u0631 \u0627\u0644\u0645\u062D\u062F\u062F
179
+
180
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_INVALID=\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0634\u0631\u0637 \u063A\u064A\u0631 \u0627\u0644\u0635\u0627\u0644\u062D
181
+
176
182
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=\u0627\u0644\u0645\u0639\u0627\u0645\u0644
177
183
 
178
184
  valuehelp.DEFINECONDITIONS_VALUE=\u0627\u0644\u0642\u064A\u0645\u0629
@@ -239,6 +245,8 @@ valuehelp.PAGE_COUNT={0}/{1}
239
245
 
240
246
  valuehelp.NOT_SELECTED=(\u063A\u064A\u0631 \u0645\u062D\u062F\u062F)
241
247
 
248
+ valuehelp.SEARCHFIELD_ARIA_LABEL=\u0628\u062D\u062B \u0639\u0646 {0}
249
+
242
250
  info.POPOVER_FACTSHEET=\u0639\u0631\u0636 \u0635\u062D\u064A\u0641\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A
243
251
  info.POPOVER_CONTACT_SECTION_TITLE=\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u062C\u0647\u0629 \u0627\u0644\u0627\u062A\u0635\u0627\u0644
244
252
  info.POPOVER_DEFINE_LINKS=\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0627\u0631\u062A\u0628\u0627\u0637\u0627\u062A
@@ -173,6 +173,12 @@ valuehelp.DEFINECONDITIONS_ADDCONDITION=\u0414\u043E\u0431\u0430\u0432\u044F\u04
173
173
 
174
174
  valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435 \u043D\u0430 \u0443\u0441\u043B\u043E\u0432\u0438\u0435
175
175
 
176
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL=\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435 \u043D\u0430 \u0443\u0441\u043B\u043E\u0432\u0438\u0435 {0}
177
+
178
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_UNDEFINED=\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435 \u043D\u0430 \u043D\u0435\u0434\u0435\u0444\u0438\u043D\u0438\u0440\u0430\u043D\u043E \u0443\u0441\u043B\u043E\u0432\u0438\u0435
179
+
180
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_INVALID=\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435 \u043D\u0430 \u043D\u0435\u0432\u0430\u043B\u0438\u0434\u043D\u043E \u0443\u0441\u043B\u043E\u0432\u0438\u0435
181
+
176
182
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=\u041E\u043F\u0435\u0440\u0430\u0442\u043E\u0440
177
183
 
178
184
  valuehelp.DEFINECONDITIONS_VALUE=\u0421\u0442\u043E\u0439\u043D\u043E\u0441\u0442
@@ -239,6 +245,8 @@ valuehelp.PAGE_COUNT={0}/{1}
239
245
 
240
246
  valuehelp.NOT_SELECTED=(\u041D\u0435 \u0435 \u0438\u0437\u0431\u0440\u0430\u043D\u043E)
241
247
 
248
+ valuehelp.SEARCHFIELD_ARIA_LABEL=\u0422\u044A\u0440\u0441\u0435\u043D\u0435 \u043D\u0430 {0}
249
+
242
250
  info.POPOVER_FACTSHEET=\u041F\u043E\u043A\u0430\u0437\u0432\u0430\u043D\u0435 \u043D\u0430 \u0438\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u043E\u043D\u0435\u043D \u0431\u044E\u043B\u0435\u0442\u0438\u043D
243
251
  info.POPOVER_CONTACT_SECTION_TITLE=\u0418\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0438\u044F \u0437\u0430 \u043A\u043E\u043D\u0442\u0430\u043A\u0442
244
252
  info.POPOVER_DEFINE_LINKS=\u041F\u043E\u0432\u0435\u0447\u0435 \u0432\u0440\u044A\u0437\u043A\u0438
@@ -173,6 +173,12 @@ valuehelp.DEFINECONDITIONS_ADDCONDITION=Afegir
173
173
 
174
174
  valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=Afegir condici\u00F3
175
175
 
176
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL=Eliminar la condici\u00F3 {0}
177
+
178
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_UNDEFINED=Eliminar condici\u00F3 no definida
179
+
180
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ARIALABEL_INVALID=Eliminar condici\u00F3 no v\u00E0lida
181
+
176
182
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=Operador
177
183
 
178
184
  valuehelp.DEFINECONDITIONS_VALUE=Valor
@@ -239,6 +245,8 @@ valuehelp.PAGE_COUNT={0}/{1}
239
245
 
240
246
  valuehelp.NOT_SELECTED=(No selecc.)
241
247
 
248
+ valuehelp.SEARCHFIELD_ARIA_LABEL=Cerca de {0}
249
+
242
250
  info.POPOVER_FACTSHEET=Visualitzar full informatiu
243
251
  info.POPOVER_CONTACT_SECTION_TITLE=Dades de contacte
244
252
  info.POPOVER_DEFINE_LINKS=Altres enlla\u00E7os