@openui5/sap.ui.mdc 1.98.0 → 1.101.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 (267) hide show
  1. package/THIRDPARTY.txt +6 -6
  2. package/package.json +4 -4
  3. package/src/sap/ui/mdc/.library +1 -1
  4. package/src/sap/ui/mdc/ActionToolbar.js +6 -3
  5. package/src/sap/ui/mdc/AggregationBaseDelegate.js +1 -1
  6. package/src/sap/ui/mdc/Chart.js +186 -102
  7. package/src/sap/ui/mdc/ChartDelegate.js +85 -30
  8. package/src/sap/ui/mdc/ChartRenderer.js +1 -1
  9. package/src/sap/ui/mdc/Control.js +11 -6
  10. package/src/sap/ui/mdc/Element.js +10 -6
  11. package/src/sap/ui/mdc/Field.js +19 -4
  12. package/src/sap/ui/mdc/FilterBar.js +1 -1
  13. package/src/sap/ui/mdc/FilterBarDelegate.js +26 -0
  14. package/src/sap/ui/mdc/FilterField.js +41 -3
  15. package/src/sap/ui/mdc/Link.js +22 -4
  16. package/src/sap/ui/mdc/LinkDelegate.js +9 -7
  17. package/src/sap/ui/mdc/MultiValueField.js +30 -6
  18. package/src/sap/ui/mdc/Table.js +332 -316
  19. package/src/sap/ui/mdc/TableDelegate.js +146 -31
  20. package/src/sap/ui/mdc/ValueHelp.js +136 -624
  21. package/src/sap/ui/mdc/ValueHelpDelegate.js +154 -7
  22. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarAction.js +2 -2
  23. package/src/sap/ui/mdc/actiontoolbar/ActionToolbarActionRenderer.js +1 -1
  24. package/src/sap/ui/mdc/chart/ChartSelectionDetails.js +1 -1
  25. package/src/sap/ui/mdc/chart/ChartToolbar.js +56 -11
  26. package/src/sap/ui/mdc/chart/ChartTypeButton.js +24 -10
  27. package/src/sap/ui/mdc/chart/DrillBreadcrumbs.js +9 -7
  28. package/src/sap/ui/mdc/chart/DrillStackHandler.js +6 -6
  29. package/src/sap/ui/mdc/chart/PropertyHelper.js +1 -1
  30. package/src/sap/ui/mdc/condition/Condition.js +14 -9
  31. package/src/sap/ui/mdc/condition/ConditionConverter.js +58 -6
  32. package/src/sap/ui/mdc/condition/ConditionModel.js +1 -1
  33. package/src/sap/ui/mdc/condition/FilterConverter.js +4 -2
  34. package/src/sap/ui/mdc/condition/FilterOperatorUtil.js +393 -68
  35. package/src/sap/ui/mdc/condition/Operator.js +14 -2
  36. package/src/sap/ui/mdc/condition/OperatorDynamicDateOption.js +78 -24
  37. package/src/sap/ui/mdc/condition/RangeOperator.js +5 -5
  38. package/src/sap/ui/mdc/designtime/Util.js +63 -0
  39. package/src/sap/ui/mdc/designtime/actiontoolbar/ActionToolbar.designtime.js +23 -30
  40. package/src/sap/ui/mdc/designtime/chart/Chart.designtime.js +6 -0
  41. package/src/sap/ui/mdc/designtime/filterbar/FilterBar.designtime.js +3 -1
  42. package/src/sap/ui/mdc/designtime/link/PanelItem.designtime.js +3 -1
  43. package/src/sap/ui/mdc/designtime/table/Table.designtime.js +36 -9
  44. package/src/sap/ui/mdc/enum/PropagationReason.js +43 -0
  45. package/src/sap/ui/mdc/field/BoolFieldHelp.js +1 -1
  46. package/src/sap/ui/mdc/field/ConditionFieldHelp.js +1 -1
  47. package/src/sap/ui/mdc/field/ConditionType.js +44 -13
  48. package/src/sap/ui/mdc/field/ConditionsType.js +3 -1
  49. package/src/sap/ui/mdc/field/CustomFieldHelp.js +1 -1
  50. package/src/sap/ui/mdc/field/CustomFieldInfo.js +1 -1
  51. package/src/sap/ui/mdc/field/DefineConditionPanel.js +31 -9
  52. package/src/sap/ui/mdc/field/DynamicDateRangeConditionsType.js +76 -19
  53. package/src/sap/ui/mdc/field/FieldBase.js +69 -14
  54. package/src/sap/ui/mdc/field/FieldBaseDelegate.js +41 -19
  55. package/src/sap/ui/mdc/field/FieldHelpBase.js +2 -2
  56. package/src/sap/ui/mdc/field/FieldInfoBase.js +24 -10
  57. package/src/sap/ui/mdc/field/FieldInput.js +1 -1
  58. package/src/sap/ui/mdc/field/FieldInputRenderUtil.js +1 -1
  59. package/src/sap/ui/mdc/field/FieldMultiInput.js +1 -1
  60. package/src/sap/ui/mdc/field/FieldValueHelp.js +9 -4
  61. package/src/sap/ui/mdc/field/FieldValueHelpContentWrapperBase.js +1 -1
  62. package/src/sap/ui/mdc/field/FieldValueHelpDelegate.js +1 -1
  63. package/src/sap/ui/mdc/field/FieldValueHelpMTableWrapper.js +5 -4
  64. package/src/sap/ui/mdc/field/FieldValueHelpMdcTableWrapper.js +6 -4
  65. package/src/sap/ui/mdc/field/FieldValueHelpTableWrapperBase.js +6 -3
  66. package/src/sap/ui/mdc/field/FieldValueHelpUITableWrapper.js +7 -7
  67. package/src/sap/ui/mdc/field/InParameter.js +1 -1
  68. package/src/sap/ui/mdc/field/ListFieldHelp.js +1 -1
  69. package/src/sap/ui/mdc/field/ListFieldHelpItem.js +1 -1
  70. package/src/sap/ui/mdc/field/MultiValueFieldItem.js +1 -1
  71. package/src/sap/ui/mdc/field/OutParameter.js +1 -1
  72. package/src/sap/ui/mdc/field/TokenDisplay.js +70 -0
  73. package/src/sap/ui/mdc/field/TokenDisplayRenderer.js +24 -0
  74. package/src/sap/ui/mdc/field/TokenizerDisplay.js +80 -0
  75. package/src/sap/ui/mdc/field/TokenizerDisplayRenderer.js +69 -0
  76. package/src/sap/ui/mdc/field/ValueHelpPanel.js +1 -1
  77. package/src/sap/ui/mdc/field/content/ContentFactory.js +10 -6
  78. package/src/sap/ui/mdc/field/content/DateContent.js +27 -19
  79. package/src/sap/ui/mdc/field/content/DateTimeContent.js +0 -6
  80. package/src/sap/ui/mdc/field/content/DefaultContent.js +35 -13
  81. package/src/sap/ui/mdc/field/content/LinkContent.js +1 -1
  82. package/src/sap/ui/mdc/filterbar/FilterBarBase.js +137 -216
  83. package/src/sap/ui/mdc/filterbar/FilterBarBaseRenderer.js +1 -1
  84. package/src/sap/ui/mdc/filterbar/IFilterContainer.js +5 -0
  85. package/src/sap/ui/mdc/filterbar/PropertyHelper.js +27 -2
  86. package/src/sap/ui/mdc/filterbar/aligned/FilterContainer.js +1 -0
  87. package/src/sap/ui/mdc/filterbar/aligned/FilterItemLayout.js +1 -0
  88. package/src/sap/ui/mdc/filterbar/p13n/AdaptationFilterBar.js +144 -64
  89. package/src/sap/ui/mdc/filterbar/p13n/FilterColumnLayout.js +2 -2
  90. package/src/sap/ui/mdc/filterbar/p13n/GroupContainer.js +7 -3
  91. package/src/sap/ui/mdc/filterbar/p13n/TableContainer.js +52 -14
  92. package/src/sap/ui/mdc/filterbar/vh/FilterBar.js +73 -23
  93. package/src/sap/ui/mdc/filterbar/vh/FilterContainer.js +1 -1
  94. package/src/sap/ui/mdc/flexibility/AggregationConfigFlex.js +48 -31
  95. package/src/sap/ui/mdc/flexibility/Chart.flexibility.js +7 -42
  96. package/src/sap/ui/mdc/flexibility/ChartItemFlex.js +36 -0
  97. package/src/sap/ui/mdc/flexibility/ChartTypeFlex.js +54 -0
  98. package/src/sap/ui/mdc/flexibility/ConditionFlex.js +49 -12
  99. package/src/sap/ui/mdc/flexibility/FilterBar.flexibility.js +1 -1
  100. package/src/sap/ui/mdc/flexibility/FilterItemFlex.js +1 -1
  101. package/src/sap/ui/mdc/flexibility/ItemBaseFlex.js +0 -1
  102. package/src/sap/ui/mdc/flexibility/PropertyInfoFlex.js +2 -85
  103. package/src/sap/ui/mdc/flp/FlpLinkDelegate.js +5 -5
  104. package/src/sap/ui/mdc/library.js +41 -30
  105. package/src/sap/ui/mdc/link/ContactDetails.js +107 -23
  106. package/src/sap/ui/mdc/link/ContactDetailsAddressItem.js +1 -1
  107. package/src/sap/ui/mdc/link/ContactDetailsEmailItem.js +1 -1
  108. package/src/sap/ui/mdc/link/ContactDetailsItem.js +1 -1
  109. package/src/sap/ui/mdc/link/ContactDetailsPhoneItem.js +1 -1
  110. package/src/sap/ui/mdc/link/ContactDetailsRenderer.js +26 -0
  111. package/src/sap/ui/mdc/link/Factory.js +1 -1
  112. package/src/sap/ui/mdc/link/FakeFlpConnector.js +1 -1
  113. package/src/sap/ui/mdc/link/LinkItem.js +1 -1
  114. package/src/sap/ui/mdc/link/Log.js +1 -1
  115. package/src/sap/ui/mdc/link/Panel.js +205 -29
  116. package/src/sap/ui/mdc/link/PanelItem.js +1 -1
  117. package/src/sap/ui/mdc/link/PanelRenderer.js +26 -0
  118. package/src/sap/ui/mdc/link/SemanticObjectMapping.js +1 -1
  119. package/src/sap/ui/mdc/link/SemanticObjectMappingItem.js +1 -1
  120. package/src/sap/ui/mdc/link/SemanticObjectUnavailableAction.js +1 -1
  121. package/src/sap/ui/mdc/messagebundle.properties +59 -6
  122. package/src/sap/ui/mdc/messagebundle_ar.properties +40 -6
  123. package/src/sap/ui/mdc/messagebundle_bg.properties +58 -24
  124. package/src/sap/ui/mdc/messagebundle_ca.properties +40 -6
  125. package/src/sap/ui/mdc/messagebundle_cs.properties +40 -6
  126. package/src/sap/ui/mdc/messagebundle_cy.properties +40 -6
  127. package/src/sap/ui/mdc/messagebundle_da.properties +40 -6
  128. package/src/sap/ui/mdc/messagebundle_de.properties +40 -6
  129. package/src/sap/ui/mdc/messagebundle_el.properties +39 -5
  130. package/src/sap/ui/mdc/messagebundle_en.properties +40 -6
  131. package/src/sap/ui/mdc/messagebundle_en_GB.properties +40 -6
  132. package/src/sap/ui/mdc/messagebundle_en_US_sappsd.properties +40 -6
  133. package/src/sap/ui/mdc/messagebundle_en_US_saprigi.properties +68 -9
  134. package/src/sap/ui/mdc/messagebundle_en_US_saptrc.properties +41 -7
  135. package/src/sap/ui/mdc/messagebundle_es.properties +40 -6
  136. package/src/sap/ui/mdc/messagebundle_es_MX.properties +41 -7
  137. package/src/sap/ui/mdc/messagebundle_et.properties +40 -6
  138. package/src/sap/ui/mdc/messagebundle_fi.properties +40 -6
  139. package/src/sap/ui/mdc/messagebundle_fr.properties +41 -7
  140. package/src/sap/ui/mdc/messagebundle_fr_CA.properties +40 -6
  141. package/src/sap/ui/mdc/messagebundle_hi.properties +40 -6
  142. package/src/sap/ui/mdc/messagebundle_hr.properties +40 -6
  143. package/src/sap/ui/mdc/messagebundle_hu.properties +40 -6
  144. package/src/sap/ui/mdc/messagebundle_id.properties +40 -6
  145. package/src/sap/ui/mdc/messagebundle_it.properties +41 -7
  146. package/src/sap/ui/mdc/messagebundle_iw.properties +39 -5
  147. package/src/sap/ui/mdc/messagebundle_ja.properties +41 -7
  148. package/src/sap/ui/mdc/messagebundle_kk.properties +40 -6
  149. package/src/sap/ui/mdc/messagebundle_ko.properties +39 -5
  150. package/src/sap/ui/mdc/messagebundle_lt.properties +40 -6
  151. package/src/sap/ui/mdc/messagebundle_lv.properties +44 -10
  152. package/src/sap/ui/mdc/messagebundle_ms.properties +40 -6
  153. package/src/sap/ui/mdc/messagebundle_nl.properties +40 -6
  154. package/src/sap/ui/mdc/messagebundle_no.properties +40 -6
  155. package/src/sap/ui/mdc/messagebundle_pl.properties +40 -6
  156. package/src/sap/ui/mdc/messagebundle_pt.properties +41 -7
  157. package/src/sap/ui/mdc/messagebundle_pt_PT.properties +40 -6
  158. package/src/sap/ui/mdc/messagebundle_ro.properties +40 -6
  159. package/src/sap/ui/mdc/messagebundle_ru.properties +40 -6
  160. package/src/sap/ui/mdc/messagebundle_sh.properties +43 -9
  161. package/src/sap/ui/mdc/messagebundle_sk.properties +40 -6
  162. package/src/sap/ui/mdc/messagebundle_sl.properties +41 -7
  163. package/src/sap/ui/mdc/messagebundle_sv.properties +41 -7
  164. package/src/sap/ui/mdc/messagebundle_th.properties +43 -9
  165. package/src/sap/ui/mdc/messagebundle_tr.properties +41 -7
  166. package/src/sap/ui/mdc/messagebundle_uk.properties +43 -9
  167. package/src/sap/ui/mdc/messagebundle_vi.properties +40 -6
  168. package/src/sap/ui/mdc/messagebundle_zh_CN.properties +40 -6
  169. package/src/sap/ui/mdc/messagebundle_zh_TW.properties +40 -6
  170. package/src/sap/ui/mdc/mixin/AdaptationMixin.js +24 -15
  171. package/src/sap/ui/mdc/mixin/DelegateMixin.js +1 -141
  172. package/src/sap/ui/mdc/mixin/FilterIntegrationMixin.js +1 -9
  173. package/src/sap/ui/mdc/mixin/PromiseMixin.js +1 -1
  174. package/src/sap/ui/mdc/mixin/PropertyHelperMixin.js +354 -0
  175. package/src/sap/ui/mdc/odata/TypeUtil.js +1 -1
  176. package/src/sap/ui/mdc/odata/v4/ChartPropertyHelper.js +70 -3
  177. package/src/sap/ui/mdc/odata/v4/FieldBaseDelegate.js +8 -6
  178. package/src/sap/ui/mdc/odata/v4/FilterBarDelegate.js +116 -20
  179. package/src/sap/ui/mdc/odata/v4/ODataMetaModelUtil.js +2 -2
  180. package/src/sap/ui/mdc/odata/v4/TableDelegate.js +32 -69
  181. package/src/sap/ui/mdc/odata/v4/TypeUtil.js +2 -4
  182. package/src/sap/ui/mdc/odata/v4/ValueHelpDelegate.js +65 -5
  183. package/src/sap/ui/mdc/odata/v4/vizChart/ChartDelegate.js +412 -326
  184. package/src/sap/ui/mdc/p13n/AdaptationProvider.js +1 -1
  185. package/src/sap/ui/mdc/p13n/Engine.js +169 -66
  186. package/src/sap/ui/mdc/p13n/FlexUtil.js +26 -19
  187. package/src/sap/ui/mdc/p13n/P13nBuilder.js +6 -6
  188. package/src/sap/ui/mdc/p13n/PropertyHelper.js +2 -2
  189. package/src/sap/ui/mdc/p13n/StateUtil.js +34 -51
  190. package/src/sap/ui/mdc/p13n/UIManager.js +21 -14
  191. package/src/sap/ui/mdc/p13n/modification/ModificationHandler.js +0 -174
  192. package/src/sap/ui/mdc/p13n/modules/DefaultProviderRegistry.js +2 -2
  193. package/src/sap/ui/mdc/p13n/modules/xConfigAPI.js +219 -0
  194. package/src/sap/ui/mdc/p13n/panels/ActionToolbarPanel.js +6 -6
  195. package/src/sap/ui/mdc/p13n/panels/AdaptFiltersPanel.js +49 -27
  196. package/src/sap/ui/mdc/p13n/panels/ChartItemPanel.js +76 -16
  197. package/src/sap/ui/mdc/p13n/panels/FilterPanel.js +136 -0
  198. package/src/sap/ui/mdc/p13n/panels/GroupView.js +53 -28
  199. package/src/sap/ui/mdc/p13n/panels/LinkSelectionPanel.js +54 -18
  200. package/src/sap/ui/mdc/p13n/subcontroller/ActionToolbarController.js +4 -7
  201. package/src/sap/ui/mdc/p13n/subcontroller/AdaptFiltersController.js +1 -2
  202. package/src/sap/ui/mdc/p13n/subcontroller/AggregateController.js +2 -2
  203. package/src/sap/ui/mdc/p13n/subcontroller/BaseController.js +30 -2
  204. package/src/sap/ui/mdc/p13n/subcontroller/ChartTypeController.js +46 -0
  205. package/src/sap/ui/mdc/p13n/subcontroller/ColumnWidthController.js +37 -6
  206. package/src/sap/ui/mdc/p13n/subcontroller/FilterController.js +40 -12
  207. package/src/sap/ui/mdc/p13n/subcontroller/GroupController.js +9 -2
  208. package/src/sap/ui/mdc/p13n/subcontroller/LinkPanelController.js +1 -0
  209. package/src/sap/ui/mdc/p13n/subcontroller/SortController.js +4 -4
  210. package/src/sap/ui/mdc/table/Column.js +271 -132
  211. package/src/sap/ui/mdc/table/CreationRow.js +1 -1
  212. package/src/sap/ui/mdc/table/GridTableType.js +75 -27
  213. package/src/sap/ui/mdc/table/PropertyHelper.js +71 -95
  214. package/src/sap/ui/mdc/table/ResponsiveTableType.js +121 -40
  215. package/src/sap/ui/mdc/table/RowActionItem.js +119 -0
  216. package/src/sap/ui/mdc/table/RowSettings.js +42 -1
  217. package/src/sap/ui/mdc/table/TableSettings.js +10 -22
  218. package/src/sap/ui/mdc/table/V4AnalyticsPropertyHelper.js +2 -2
  219. package/src/sap/ui/mdc/table/menu/Item.js +78 -0
  220. package/src/sap/ui/mdc/table/menu/ItemContainer.js +60 -0
  221. package/src/sap/ui/mdc/table/menu/QuickActionContainer.js +151 -0
  222. package/src/sap/ui/mdc/themes/base/Chart.less +6 -0
  223. package/src/sap/ui/mdc/themes/base/TokenDisplay.less +89 -0
  224. package/src/sap/ui/mdc/themes/base/TokenizerDisplay.less +90 -0
  225. package/src/sap/ui/mdc/themes/base/ValueHelpDialog.less +4 -3
  226. package/src/sap/ui/mdc/themes/base/library.source.less +2 -0
  227. package/src/sap/ui/mdc/ui/Container.js +0 -240
  228. package/src/sap/ui/mdc/util/DateUtil.js +32 -7
  229. package/src/sap/ui/mdc/util/FilterUtil.js +2 -2
  230. package/src/sap/ui/mdc/util/FormatUtil.js +2 -2
  231. package/src/sap/ui/mdc/util/IdentifierUtil.js +7 -7
  232. package/src/sap/ui/mdc/util/PromiseCache.js +6 -2
  233. package/src/sap/ui/mdc/util/PropertyHelper.js +205 -76
  234. package/src/sap/ui/mdc/util/TypeUtil.js +1 -1
  235. package/src/sap/ui/mdc/valuehelp/Dialog.js +234 -44
  236. package/src/sap/ui/mdc/valuehelp/Popover.js +7 -4
  237. package/src/sap/ui/mdc/valuehelp/base/Container.js +63 -48
  238. package/src/sap/ui/mdc/valuehelp/base/Content.js +35 -16
  239. package/src/sap/ui/mdc/valuehelp/base/DialogTab.js +1 -1
  240. package/src/sap/ui/mdc/valuehelp/base/FilterableListContent.js +161 -284
  241. package/src/sap/ui/mdc/valuehelp/base/ListContent.js +4 -4
  242. package/src/sap/ui/mdc/valuehelp/content/Bool.js +4 -4
  243. package/src/sap/ui/mdc/valuehelp/content/Conditions.js +4 -4
  244. package/src/sap/ui/mdc/valuehelp/content/FixedList.js +16 -13
  245. package/src/sap/ui/mdc/valuehelp/content/ListCollection.js +205 -0
  246. package/src/sap/ui/mdc/valuehelp/content/MDCTable.js +67 -66
  247. package/src/sap/ui/mdc/valuehelp/content/MTable.js +94 -185
  248. package/test/sap/ui/mdc/testutils/opa/TestLibrary.js +2 -1
  249. package/test/sap/ui/mdc/testutils/opa/chart/TestObjects.js +6 -5
  250. package/test/sap/ui/mdc/testutils/opa/chartNew/TestObjects.js +4 -5
  251. package/test/sap/ui/mdc/testutils/opa/filterbar/TestObjects.js +8 -9
  252. package/test/sap/ui/mdc/testutils/opa/link/TestObjects.js +8 -8
  253. package/test/sap/ui/mdc/testutils/opa/p13n/Actions.js +43 -27
  254. package/test/sap/ui/mdc/testutils/opa/valueHelp/Actions.js +54 -0
  255. package/test/sap/ui/mdc/testutils/opa/valueHelp/Assertions.js +5 -0
  256. package/test/sap/ui/mdc/testutils/opa/valueHelp/TestObjects.js +40 -0
  257. package/test/sap/ui/mdc/testutils/opa/valueHelp/Util.js +28 -0
  258. package/src/sap/ui/mdc/filterbar/vh/GenericFilterBarDelegate.js +0 -150
  259. package/src/sap/ui/mdc/link/ContactDetails.control.xml +0 -29
  260. package/src/sap/ui/mdc/link/Panel.control.xml +0 -36
  261. package/src/sap/ui/mdc/link/PanelListItem.control.xml +0 -24
  262. package/src/sap/ui/mdc/link/PanelListItem.js +0 -101
  263. package/src/sap/ui/mdc/p13n/panels/BasePanel.js +0 -721
  264. package/src/sap/ui/mdc/p13n/panels/ListView.js +0 -408
  265. package/src/sap/ui/mdc/p13n/panels/SelectionPanel.js +0 -92
  266. package/src/sap/ui/mdc/p13n/panels/SortPanel.js +0 -150
  267. package/src/sap/ui/mdc/ui/ContainerItem.js +0 -79
@@ -5,16 +5,27 @@
5
5
  */
6
6
 
7
7
  sap.ui.define([
8
- 'sap/ui/core/XMLComposite',
9
- 'sap/base/Log',
10
- 'sap/ui/model/json/JSONModel',
11
- 'sap/ui/model/BindingMode',
12
- 'sap/ui/base/ManagedObjectObserver',
8
+ "sap/ui/core/Control",
9
+ "./PanelRenderer",
10
+ "sap/ui/layout/VerticalLayout",
11
+ "sap/base/Log",
12
+ "sap/ui/layout/HorizontalLayout",
13
+ "sap/m/HBox",
14
+ "sap/m/VBox",
15
+ "sap/m/ImageContent",
16
+ "sap/m/Link",
17
+ "sap/m/Label",
18
+ "sap/m/Text",
19
+ "sap/m/Button",
20
+ "sap/m/FlexItemData",
21
+ "sap/ui/model/json/JSONModel",
22
+ "sap/ui/model/BindingMode",
23
+ "sap/ui/base/ManagedObjectObserver",
13
24
  "sap/ui/mdc/p13n/subcontroller/LinkPanelController",
14
25
  "sap/ui/mdc/p13n/Engine",
15
26
  "sap/ui/mdc/mixin/AdaptationMixin",
16
27
  "sap/ui/mdc/link/PanelItem"
17
- ], function(XMLComposite, Log, JSONModel, BindingMode, ManagedObjectObserver, LinkPanelController, Engine, AdaptationMixin, PanelItem) {
28
+ ], function(Control, PanelRenderer, VerticalLayout, Log, HorizontalLayout, HBox, VBox, ImageContent, Link, Label, Text, Button, FlexItemData, JSONModel, BindingMode, ManagedObjectObserver, LinkPanelController, Engine, AdaptationMixin, PanelItem) {
18
29
  "use strict";
19
30
 
20
31
  /**
@@ -24,17 +35,16 @@ sap.ui.define([
24
35
  * @param {object} [mSettings] initial settings for the new control
25
36
  * @class The Panel control is used to show <code>items</code> and <code>additionalContent</code>. After providing of the <code>items</code> it is
26
37
  * supposed that the properties of the item structure is not changed.
27
- * @extends sap.ui.core.XMLComposite
38
+ * @extends sap.ui.core.Control
28
39
  * @author SAP SE
29
- * @version 1.98.0
40
+ * @version 1.101.0
30
41
  * @constructor
31
42
  * @private
32
43
  * @since 1.54.0
33
44
  * @alias sap.ui.mdc.link.Panel
34
45
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
35
46
  */
36
- var Panel = XMLComposite.extend("sap.ui.mdc.link.Panel", /** @lends sap.ui.mdc.link.Panel.prototype */
37
- {
47
+ var Panel = Control.extend("sap.ui.mdc.link.Panel", /** @lends sap.ui.mdc.link.Panel.prototype */ {
38
48
  metadata: {
39
49
  library: "sap.ui.mdc",
40
50
  designtime: "sap/ui/mdc/designtime/link/Panel.designtime",
@@ -78,11 +88,15 @@ sap.ui.define([
78
88
  */
79
89
  additionalContent: {
80
90
  type: "sap.ui.core.Control",
81
- multiple: true,
82
- forwarding: {
83
- idSuffix: "--idSectionAdditionalContent",
84
- aggregation: "items"
85
- }
91
+ multiple: true
92
+ },
93
+ /**
94
+ * Internal VerticalLayout which holds the content of the Panel
95
+ */
96
+ _content: {
97
+ type: "sap.ui.layout.VerticalLayout",
98
+ visibility: "hidden",
99
+ multiple: false
86
100
  }
87
101
  },
88
102
  events: {
@@ -95,10 +109,12 @@ sap.ui.define([
95
109
  */
96
110
  afterSelectionDialogClose: {}
97
111
  }
98
- }
112
+ },
113
+ renderer: PanelRenderer
99
114
  });
115
+
100
116
  Panel.prototype.init = function() {
101
- XMLComposite.prototype.init.call(this);
117
+ Control.prototype.init.call(this);
102
118
 
103
119
  Engine.getInstance().registerAdaptation(this, {
104
120
  controller: {
@@ -144,9 +160,12 @@ sap.ui.define([
144
160
  });
145
161
  };
146
162
 
163
+ var oRB = sap.ui.getCore().getLibraryResourceBundle("sap.ui.mdc");
164
+
147
165
  Panel.prototype.applySettings = function() {
148
- XMLComposite.prototype.applySettings.apply(this, arguments);
149
166
  var oModel = this._getInternalModel();
167
+ this._createContent();
168
+ Control.prototype.applySettings.apply(this, arguments);
150
169
  oModel.setProperty("/countAdditionalContent", this.getAdditionalContent().length);
151
170
  };
152
171
 
@@ -160,31 +179,171 @@ sap.ui.define([
160
179
  }
161
180
  };
162
181
 
182
+ Panel.prototype._createContent = function() {
183
+ var oVerticalLayout = new VerticalLayout({
184
+ content: [
185
+ this._createAdditionalContentArea(),
186
+ this._createSeparator(),
187
+ this._createLinkArea(),
188
+ this._createFooterArea()
189
+ ]
190
+ });
191
+ oVerticalLayout.setWidth("calc(100% - 2rem)");
192
+ this.setAggregation("_content", oVerticalLayout);
193
+ };
194
+
195
+ Panel.prototype._createAdditionalContentArea = function() {
196
+ var oAdditionalContentArea = new VBox({
197
+ fitContainer: false,
198
+ items: this.getAdditionalContent()
199
+ });
200
+
201
+ return oAdditionalContentArea;
202
+ };
203
+
204
+ Panel.prototype._createSeparator = function() {
205
+ var oSeparator = new VBox({
206
+ fitContainer: false,
207
+ visible: {
208
+ parts: [
209
+ { path: "$sapuimdclinkPanel>/countAdditionalContent" },
210
+ { path: "$sapuimdcLink>/metadata" }
211
+ ],
212
+ formatter: function(iAdditionalContentCount, aMetadata) {
213
+ return iAdditionalContentCount > 0 && aMetadata.length > 0;
214
+ }
215
+ }
216
+ });
217
+ oSeparator.addStyleClass("mdcbaseinfoPanelSeparator");
218
+ oSeparator.setModel(this._getInternalModel(), "$sapuimdclinkPanel");
219
+ oSeparator.setModel(this.getModel("$sapuimdcLink"), "$sapuimdcLink");
220
+
221
+ return oSeparator;
222
+ };
223
+
224
+ Panel.prototype._createLinkArea = function() {
225
+ var oLinkArea = new VBox({
226
+ fitContainer: false,
227
+ items: {
228
+ path: "$sapuimdclinkPanel>/runtimeItems",
229
+ templateShareable: false,
230
+ factory: this._fnLinkItemFactory.bind(this)
231
+ }
232
+ });
233
+ oLinkArea.addStyleClass("mdcbaseinfoPanelSectionLinks");
234
+ oLinkArea.setModel(this._getInternalModel(), "$sapuimdclinkPanel");
235
+
236
+ return oLinkArea;
237
+ };
238
+
239
+ Panel.prototype._fnLinkItemFactory = function(sId, oBindingContext) {
240
+ var oImageContent = new ImageContent({
241
+ src: "{$sapuimdclinkPanel>icon}",
242
+ visible: {
243
+ path: "$sapuimdclinkPanel>icon",
244
+ formatter: function(sIcon) {
245
+ return !!sIcon;
246
+ }
247
+ }
248
+ });
249
+ var oLink = new Link({
250
+ text: "{$sapuimdclinkPanel>text}",
251
+ href: "{$sapuimdclinkPanel>href}",
252
+ target: "{$sapuimdclinkPanel>target}",
253
+ visible: {
254
+ path: "$sapuimdclinkPanel>href",
255
+ formatter: function(sHref) {
256
+ return !!sHref;
257
+ }
258
+ },
259
+ press: this.onPressLink.bind(this),
260
+ wrapping: true
261
+ });
262
+ var oLabel = new Label({
263
+ text: "{$sapuimdclinkPanel>text}",
264
+ visible: {
265
+ path: "$sapuimdclinkPanel>href",
266
+ formatter: function(sHref) {
267
+ return !sHref;
268
+ }
269
+ },
270
+ wrapping: true
271
+ });
272
+ var oText = new Text({
273
+ text: "{$sapuimdclinkPanel>description}",
274
+ visible: {
275
+ path: "$sapuimdclinkPanel>description",
276
+ formatter: function(sDescription) {
277
+ return !!sDescription;
278
+ }
279
+ },
280
+ wrapping: true
281
+ });
282
+ var oVBox = new VBox({
283
+ items: [ oLink, oLabel, oText ]
284
+ });
285
+ var oHBox = new HBox({
286
+ layoutData: new FlexItemData({
287
+ styleClass: oBindingContext.getProperty("description") ? "mdcbaseinfoPanelItemsGroup" : "mdcbaseinfoPanelItemsWithoutGroup"
288
+ }),
289
+ items: [ oImageContent, oVBox ]
290
+ });
291
+ var oPanelListItem = new HorizontalLayout({
292
+ visible: "{$sapuimdclinkPanel>visible}",
293
+ content: [ oHBox ]
294
+ });
295
+ oPanelListItem.addStyleClass("mdcbaseinfoPanelListItem");
296
+
297
+ return oPanelListItem;
298
+ };
299
+
300
+ Panel.prototype._createFooterArea = function() {
301
+ var oResetButton = new Button(this.getId() + "--idSectionPersonalizationButton", {
302
+ type: "Transparent",
303
+ text: oRB.getText("info.POPOVER_DEFINE_LINKS"),
304
+ press: this.onPressLinkPersonalization.bind(this)
305
+ });
306
+ var oFooterArea = new HBox({
307
+ visible: {
308
+ path: "$sapuimdcLink>/metadata",
309
+ formatter: function(aMetadata) {
310
+ return aMetadata.length > 0;
311
+ }
312
+ },
313
+ justifyContent: "End",
314
+ items: [ oResetButton ]
315
+ });
316
+ oFooterArea.addStyleClass("mdcbaseinfoPanelPersonalizationButton");
317
+
318
+ return oFooterArea;
319
+ };
320
+
163
321
  Panel.prototype.onPressLink = function(oEvent) {
164
- if (this.getBeforeNavigationCallback() && oEvent.getParameter("target") !== "_blank") {
165
- var sHref = oEvent.getParameter("href");
322
+ if (this.getBeforeNavigationCallback() && oEvent.getSource() && oEvent.getSource().getTarget() !== "_blank") {
323
+ var sHref = oEvent.getSource().getHref();
166
324
  oEvent.preventDefault();
167
325
  this.getBeforeNavigationCallback()(oEvent).then(function(bNavigate) {
168
326
  if (bNavigate) {
169
- this.navigate(sHref);
327
+ Panel.navigate(sHref);
170
328
  }
171
- }.bind(this));
329
+ });
172
330
  }
173
331
  };
174
332
 
175
- Panel.prototype.navigate = function(sHref) {
333
+ Panel.oNavigationPromise = undefined;
334
+
335
+ Panel.navigate = function(sHref) {
176
336
  if (sHref.indexOf("#") === 0 && sap.ushell && sap.ushell.Container && sap.ushell.Container.getServiceAsync) {
177
337
  // if we are inside a FLP -> navigate with CrossApplicationNavigation
178
- var that = this;
179
- if (!that.oNavigationPromise) {
180
- that.oNavigationPromise = sap.ushell.Container.getServiceAsync("CrossApplicationNavigation").then(function (oCrossApplicationNavigation) {
338
+ if (!Panel.oNavigationPromise) {
339
+ Panel.oNavigationPromise = sap.ushell.Container.getServiceAsync("CrossApplicationNavigation").then(function (oCrossApplicationNavigation) {
181
340
  oCrossApplicationNavigation.toExternal({
182
341
  target: {
183
342
  // navigate to href without #
184
343
  shellHash: sHref.substring(1)
185
344
  }
186
345
  });
187
- that.oNavigationPromise = undefined;
346
+ Panel.oNavigationPromise = undefined;
188
347
  });
189
348
  }
190
349
  } else {
@@ -308,6 +467,19 @@ sap.ui.define([
308
467
  switch (oChanges.name) {
309
468
  case "additionalContent":
310
469
  var aAdditionalContent = oChanges.child ? [ oChanges.child ] : oChanges.children;
470
+ aAdditionalContent.forEach(function(oAdditionalContent) {
471
+ switch (oChanges.mutation) {
472
+ case "insert":
473
+ // "forward" additional content to the additionalContentArea
474
+ this.getAggregation("_content").getContent()[0].addItem(oAdditionalContent);
475
+ break;
476
+ case "remove":
477
+ // Don't remove additional content as this will also be called when we forward it to the additionalContentArea
478
+ break;
479
+ default:
480
+ Log.error("Mutation '" + oChanges.mutation + "' is not supported yet.");
481
+ }
482
+ }.bind(this));
311
483
  oModel.setProperty("/countAdditionalContent", aAdditionalContent.length);
312
484
  break;
313
485
  case "items":
@@ -356,7 +528,7 @@ sap.ui.define([
356
528
  }, this);
357
529
  break;
358
530
  case "enablePersonalization":
359
- this.byId("idSectionPersonalizationButton").setVisible(oChanges.current);
531
+ this._getPersonalizationButton().setVisible(oChanges.current);
360
532
  break;
361
533
  default:
362
534
  Log.error("The property or aggregation '" + oChanges.name + "' has not been registered.");
@@ -436,7 +608,7 @@ sap.ui.define([
436
608
  Panel.prototype._updateContentTitle = function() {
437
609
  var oModel = this._getInternalModel();
438
610
  var aAdditionalContent = this.getAdditionalContent();
439
- var oContentTitle = "idSectionPersonalizationButton";
611
+ var oContentTitle = this._getPersonalizationButton().getId();
440
612
 
441
613
  if (aAdditionalContent.length > 0) {
442
614
  oContentTitle = aAdditionalContent[0];
@@ -450,6 +622,10 @@ sap.ui.define([
450
622
  oModel.setProperty("/contentTitle", oContentTitle);
451
623
  };
452
624
 
625
+ Panel.prototype._getPersonalizationButton = function() {
626
+ return this.getAggregation("_content").getContent()[3].getItems()[0];
627
+ };
628
+
453
629
  return Panel;
454
630
 
455
631
  });
@@ -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.98.0
19
+ * @version 1.101.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.54.0
@@ -0,0 +1,26 @@
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
+ sap.ui.define([], function() {
7
+ "use strict";
8
+
9
+ var PanelRenderer = {
10
+ apiVersion: 2
11
+ };
12
+
13
+ PanelRenderer.render = function(oRenderManager, oPanel) {
14
+ var oContent = oPanel.getAggregation("_content");
15
+
16
+ oRenderManager.openStart("div", oPanel);
17
+ oRenderManager.class("mdcbaseinfoPanel");
18
+ oRenderManager.openEnd();
19
+
20
+ oRenderManager.renderControl(oContent);
21
+
22
+ oRenderManager.close("div");
23
+ };
24
+
25
+ return PanelRenderer;
26
+ });
@@ -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.98.0
19
+ * @version 1.101.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.98.0
19
+ * @version 1.101.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.98.0
19
+ * @version 1.101.0
20
20
  * @constructor
21
21
  * @private
22
22
  * @since 1.60.0
@@ -176,12 +176,54 @@ operators.NEXTYEARS.tokenText=Next {0} years
176
176
  #XTIT: token long text for "year to date" operator
177
177
  operators.YEARTODATE.longText=Year to date
178
178
 
179
+ #XTIT: token long text for "date to year" operator
180
+ operators.DATETOYEAR.longText=Date to year
181
+
182
+ #XTIT: token long text for "first day of this week" operator
183
+ operators.FIRSTDAYWEEK.longText=First Date in This Week
184
+
185
+ #XTIT: token long text for "last day of this week" operator
186
+ operators.LASTDAYWEEK.longText=Last Date in This Week
187
+
188
+ #XTIT: token long text for "first day of this month" operator
189
+ operators.FIRSTDAYMONTH.longText=First Date in This Month
190
+
191
+ #XTIT: token long text for "last day of this month" operator
192
+ operators.LASTDAYMONTH.longText=Last Date in This Month
193
+
194
+ #XTIT: token long text for "first day of this quarter" operator
195
+ operators.FIRSTDAYQUARTER.longText=First Date in This Quarter
196
+
197
+ #XTIT: token long text for "last day of this quarter" operator
198
+ operators.LASTDAYQUARTER.longText=Last Date in This Quarter
199
+
200
+ #XTIT: token long text for "first day of this year" operator
201
+ operators.FIRSTDAYYEAR.longText=First Date in This Year
202
+
203
+ #XTIT: token long text for "last day of this year" operator
204
+ operators.LASTDAYYEAR.longText=Last Date in This Year
205
+
179
206
  #XTIT: token text for "specificMonth" operator
180
207
  operators.SPECIFICMONTH.tokenText=Month ({0})
181
208
 
209
+ #XTXT: label/placeholder text for "specificMonth" operator Month field
210
+ operators.SPECIFICMONTH_MONTH.label=Month
211
+
182
212
  #XTIT: token long text for "specificMonth" operator
183
213
  operators.SPECIFICMONTH.longText=Month
184
214
 
215
+ #XTIT: token text for "specificMonthInYear" operator
216
+ operators.SPECIFICMONTHINYEAR.tokenText=Month in Year ({0},{1})
217
+
218
+ #XTXT: label/placeholder text for "specificMonthInYear" operator Month field
219
+ operators.SPECIFICMONTHINYEAR_MONTH.label=Month
220
+
221
+ #XTXT: label/placeholder text for "specificMonthInYear" operator Year field
222
+ operators.SPECIFICMONTHINYEAR_YEAR.label=Year
223
+
224
+ #XTIT: token long text for "specificMonthInYear" operator
225
+ operators.SPECIFICMONTHINYEAR.longText=Month in Year
226
+
185
227
  #XTXT: between operator validation exception
186
228
  operator.between.validate.missingValue=Between must have two values
187
229
 
@@ -319,9 +361,15 @@ valuehelp.RESET=Reset
319
361
  #XTOL, 48: Tooltip for Remove condition in Define Conditions
320
362
  valuehelp.DEFINECONDITIONS_REMOVECONDITION=Remove Condition
321
363
 
364
+ #XTOL, 48: Screenreader annouce text for Remove condition in Define Conditions
365
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ANNOUNCE=Condition removed
366
+
322
367
  #XBUT, 48: Button for Add condition in Define Conditions
323
368
  valuehelp.DEFINECONDITIONS_ADDCONDITION=Add
324
369
 
370
+ #XBUT, 48: desciption for Add condition in Define Conditions
371
+ valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=Add Condition
372
+
325
373
  #XTIT: invisible field label for operators field on define conditions
326
374
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=Operator
327
375
 
@@ -392,7 +440,7 @@ filterbar.GoBtnShortCutHint=Enter
392
440
  valuehelp.SHOWALLFILTERS=Show All Filters
393
441
 
394
442
  #XTOL: remove all token button tooltip
395
- valuehelp.REMOVEALLTOKEN=Remove
443
+ valuehelp.REMOVEALLTOKEN=Remove All
396
444
 
397
445
  #XFLD:
398
446
  info.POPOVER_FACTSHEET=Display Fact Sheet
@@ -634,11 +682,11 @@ table.SETTINGS_OK=OK
634
682
  # XBUT: Button for the cancelling changes in popup of table settings dialog
635
683
  table.SETTINGS_CANCEL=Cancel
636
684
  # XTXT: No data text for the table
637
- table.NO_DATA=No items available
685
+ table.NO_DATA=No data available
638
686
  # XTXT: No data text for the table with FilterBar
639
687
  table.NO_DATA_WITH_FILTERBAR=To start, set the relevant filters.
640
688
  # XTXT: No data text for the table when data is not found
641
- table.NO_RESULTS=No data found. Try adjusting the filter settings.
689
+ table.NO_RESULTS=No data available. Try adjusting the filter settings.
642
690
  # XBUT: Button to create line items in table
643
691
  table.CREATE=Create
644
692
  # XBUT: Button to delete line items in table
@@ -646,9 +694,9 @@ table.DELETE=Delete
646
694
  # YMSG: Message which is displayed when the user selects more than the allowed number of items.
647
695
  table.SELECTION_LIMIT_MESSAGE= Only the first {0} of the items you marked were added to the table selection.
648
696
  #XTXT: Show Details button
649
- table.SHOWDETAILS_TEXT=Show Details
697
+ table.SHOWDETAILS_TEXT=Show More per Row
650
698
  #XTXT: Hide Details button
651
- table.HIDEDETAILS_TEXT=Hide Details
699
+ table.HIDEDETAILS_TEXT=Show Less per Row
652
700
  #XTXT: Information about how the table is filtered. For example: "Filtered by: First name, Last name and Country"
653
701
  table.FILTER_INFO=Filtered by: {0}
654
702
  #XTOL: Export button
@@ -679,7 +727,12 @@ table.PERSONALIZATION_DIALOG_GROUP_RESTRICTION=You cannot see columns {0} here s
679
727
  table.PERSONALIZATION_DIALOG_TOTAL_RESTRICTION=You can only calculate totals for visible columns. If a column has not been made visible, totals will not be shown.
680
728
  #XMSG: Message for P13n Filter Dialog when the table is filtered by related messages.
681
729
  table.PERSONALIZATION_DIALOG_FILTER_MESSAGESTRIP=The table was filtered for rows with related messages. The defined filters are temporarily ignored.
682
-
730
+ #XMIT: Text for a Navigation Row Action Item
731
+ table.ROW_ACTION_ITEM_NAVIGATE=Navigation
732
+ #XTXT: Title of group headers. For example: "Country: Germany"
733
+ table.ROW_GROUP_TITLE={0}: {1}
734
+ #XTXT: Title of group headers with a combination of ID and text. For example: "Country: 001 - Germany"
735
+ table.ROW_GROUP_TITLE_FULL={0}: {1} - {2}
683
736
 
684
737
  # XTIT: Title of the Columns list (in p13nDialog)
685
738
  fieldsui.COLUMNS=Columns
@@ -113,10 +113,38 @@ operators.NEXTYEARS.tokenText={0} \u0645\u0646 \u0627\u0644\u0633\u0646\u0648\u0
113
113
 
114
114
  operators.YEARTODATE.longText=\u0633\u0646\u0629 \u0644\u062A\u0627\u0631\u064A\u062E\u0647
115
115
 
116
+ operators.DATETOYEAR.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0644\u0644\u0633\u0646\u0629
117
+
118
+ operators.FIRSTDAYWEEK.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u0648\u0644 \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0623\u0633\u0628\u0648\u0639
119
+
120
+ operators.LASTDAYWEEK.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u062E\u064A\u0631 \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0623\u0633\u0628\u0648\u0639
121
+
122
+ operators.FIRSTDAYMONTH.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u0648\u0644 \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0634\u0647\u0631
123
+
124
+ operators.LASTDAYMONTH.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u062E\u064A\u0631 \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0634\u0647\u0631
125
+
126
+ operators.FIRSTDAYQUARTER.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u0648\u0644 \u0641\u064A \u0631\u0628\u0639 \u0627\u0644\u0633\u0646\u0629 \u0647\u0630\u0627
127
+
128
+ operators.LASTDAYQUARTER.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u062E\u064A\u0631 \u0641\u064A \u0631\u0628\u0639 \u0627\u0644\u0633\u0646\u0629 \u0647\u0630\u0627
129
+
130
+ operators.FIRSTDAYYEAR.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u0648\u0644 \u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0633\u0646\u0629
131
+
132
+ operators.LASTDAYYEAR.longText=\u0627\u0644\u062A\u0627\u0631\u064A\u062E \u0627\u0644\u0623\u062E\u064A\u0631 \u0641\u064A \u0647\u0630\u0647 \u0627\u0644\u0633\u0646\u0629
133
+
116
134
  operators.SPECIFICMONTH.tokenText=\u0634\u0647\u0631 ({0})
117
135
 
136
+ operators.SPECIFICMONTH_MONTH.label=\u0634\u0647\u0631
137
+
118
138
  operators.SPECIFICMONTH.longText=\u0634\u0647\u0631
119
139
 
140
+ operators.SPECIFICMONTHINYEAR.tokenText=\u0627\u0644\u0634\u0647\u0631 \u0641\u064A \u0627\u0644\u0633\u0646\u0629 ({0}\u060C{1})
141
+
142
+ operators.SPECIFICMONTHINYEAR_MONTH.label=\u0627\u0644\u0634\u0647\u0631
143
+
144
+ operators.SPECIFICMONTHINYEAR_YEAR.label=\u0627\u0644\u0633\u0646\u0629
145
+
146
+ operators.SPECIFICMONTHINYEAR.longText=\u0627\u0644\u0634\u0647\u0631 \u0641\u064A \u0627\u0644\u0633\u0646\u0629
147
+
120
148
  operator.between.validate.missingValue=\u064A\u062C\u0628 \u0623\u0646 \u062A\u062D\u062A\u0648\u064A "\u0628\u064A\u0646" \u0639\u0644\u0649 \u0642\u064A\u0645\u062A\u064A\u0646
121
149
 
122
150
  operator.between.validate.sameValues=\u064A\u062C\u0628 \u0623\u0646 \u062A\u062D\u062A\u0648\u064A "\u0628\u064A\u0646" \u0639\u0644\u0649 \u0642\u064A\u0645\u062A\u064A\u0646 \u0645\u062E\u062A\u0644\u0641\u062A\u064A\u0646
@@ -203,8 +231,12 @@ valuehelp.RESET=\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646
203
231
 
204
232
  valuehelp.DEFINECONDITIONS_REMOVECONDITION=\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0634\u0631\u0637
205
233
 
234
+ valuehelp.DEFINECONDITIONS_REMOVECONDITION_ANNOUNCE=\u062A\u0645\u062A \u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0634\u0631\u0637
235
+
206
236
  valuehelp.DEFINECONDITIONS_ADDCONDITION=\u0625\u0636\u0627\u0641\u0629
207
237
 
238
+ valuehelp.DEFINECONDITIONS_ADDCONDITION_DESCRIPTION=\u0625\u0636\u0627\u0641\u0629 \u0634\u0631\u0637
239
+
208
240
  valuehelp.DEFINECONDITIONS_OPERATORLABEL=\u0627\u0644\u0645\u0639\u0627\u0645\u0644
209
241
 
210
242
  valuehelp.DEFINECONDITIONS_VALUE=\u0627\u0644\u0642\u064A\u0645\u0629
@@ -251,7 +283,7 @@ filterbar.GoBtnShortCutHint=\u0625\u062F\u062E\u0627\u0644
251
283
 
252
284
  valuehelp.SHOWALLFILTERS=\u0625\u0638\u0647\u0627\u0631 \u062C\u0645\u064A\u0639 \u0639\u0648\u0627\u0645\u0644 \u0627\u0644\u062A\u0635\u0641\u064A\u0629
253
285
 
254
- valuehelp.REMOVEALLTOKEN=\u0625\u0632\u0627\u0644\u0629
286
+ valuehelp.REMOVEALLTOKEN=\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0643\u0644
255
287
 
256
288
  info.POPOVER_FACTSHEET=\u0639\u0631\u0636 \u0635\u062D\u064A\u0641\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A
257
289
  info.POPOVER_CONTACT_SECTION_TITLE=\u0645\u0639\u0644\u0648\u0645\u0627\u062A \u062C\u0647\u0629 \u0627\u0644\u0627\u062A\u0635\u0627\u0644
@@ -377,14 +409,14 @@ table.SETTINGS_WARNING_BUTTON_CANCEL=\u0625\u0644\u063A\u0627\u0621
377
409
  table.SETTINGS_SORT_TITLE=\u062A\u0633\u0644\u0633\u0644 \u0627\u0644\u062A\u0631\u062A\u064A\u0628
378
410
  table.SETTINGS_OK=\u0645\u0648\u0627\u0641\u0642
379
411
  table.SETTINGS_CANCEL=\u0625\u0644\u063A\u0627\u0621
380
- table.NO_DATA=\u0644\u0627 \u062A\u062A\u0648\u0641\u0631 \u0623\u064A \u0628\u0646\u0648\u062F
412
+ table.NO_DATA=\u0644\u0627 \u062A\u062A\u0648\u0641\u0631 \u0623\u064A \u0628\u064A\u0627\u0646\u0627\u062A
381
413
  table.NO_DATA_WITH_FILTERBAR=\u0644\u0644\u0628\u062F\u0621\u060C \u0642\u0645 \u0628\u062A\u0639\u064A\u064A\u0646 \u0639\u0648\u0627\u0645\u0644 \u0627\u0644\u062A\u0635\u0641\u064A\u0629 \u0630\u0627\u062A \u0627\u0644\u0635\u0644\u0629.
382
- table.NO_RESULTS=\u0644\u0645 \u064A\u062A\u0645 \u0627\u0644\u0639\u062B\u0648\u0631 \u0639\u0644\u0649 \u0628\u064A\u0627\u0646\u0627\u062A. \u062D\u0627\u0648\u0644 \u062A\u0639\u062F\u064A\u0644 \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u0639\u0648\u0627\u0645\u0644 \u0627\u0644\u062A\u0635\u0641\u064A\u0629.
414
+ table.NO_RESULTS=\u0644\u0627 \u062A\u062A\u0648\u0641\u0631 \u0623\u064A \u0628\u064A\u0627\u0646\u0627\u062A. \u062D\u0627\u0648\u0644 \u062A\u0639\u062F\u064A\u0644 \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u0639\u0648\u0627\u0645\u0644 \u0627\u0644\u062A\u0635\u0641\u064A\u0629.
383
415
  table.CREATE=\u0625\u0646\u0634\u0627\u0621
384
416
  table.DELETE=\u062D\u0630\u0641
385
417
  table.SELECTION_LIMIT_MESSAGE=\u062A\u0645\u062A \u0625\u0636\u0627\u0641\u0629 \u0623\u0648\u0644 {0} \u0645\u0646 \u0627\u0644\u0628\u0646\u0648\u062F \u0627\u0644\u062A\u064A \u062D\u062F\u062F\u062A\u0647\u0627 \u0641\u0642\u0637 \u0625\u0644\u0649 \u062A\u062D\u062F\u064A\u062F \u0627\u0644\u062C\u062F\u0648\u0644.
386
- table.SHOWDETAILS_TEXT=\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644
387
- table.HIDEDETAILS_TEXT=\u0625\u062E\u0641\u0627\u0621 \u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644
418
+ table.SHOWDETAILS_TEXT=\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0645\u0632\u064A\u062F \u0644\u0643\u0644 \u0635\u0641
419
+ table.HIDEDETAILS_TEXT=\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0623\u0642\u0644 \u0644\u0643\u0644 \u0635\u0641
388
420
  table.FILTER_INFO=\u062A\u0645\u062A \u0627\u0644\u062A\u0635\u0641\u064A\u0629 \u062D\u0633\u0628\: {0}
389
421
  table.EXPORT_BUTTON_TEXT=\u062A\u0635\u062F\u064A\u0631 \u0625\u0644\u0649 \u062C\u062F\u0648\u0644 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A
390
422
  table.QUICK_EXPORT=\u062A\u0635\u062F\u064A\u0631
@@ -400,7 +432,9 @@ table.PERSONALIZATION_DIALOG_SORT_RESTRICTION=\u0644\u0627 \u064A\u0645\u0643\u0
400
432
  table.PERSONALIZATION_DIALOG_GROUP_RESTRICTION=\u0644\u0627 \u064A\u0645\u0643\u0646\u0643 \u0639\u0631\u0636 \u0627\u0644\u0623\u0639\u0645\u062F\u0629 {0} \u0647\u0646\u0627 \u0646\u0638\u0631\u064B\u0627 \u0644\u0627\u0633\u062A\u062E\u062F\u0627\u0645 \u0627\u0644\u0625\u062C\u0645\u0627\u0644\u064A\u0627\u062A. \u0642\u0645 \u0628\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0625\u062C\u0645\u0627\u0644\u064A\u0627\u062A \u0644\u0639\u0631\u0636 \u0647\u0630\u0647 \u0627\u0644\u0623\u0639\u0645\u062F\u0629.
401
433
  table.PERSONALIZATION_DIALOG_TOTAL_RESTRICTION=\u0644\u0627 \u064A\u0645\u0643\u0646\u0643 \u0627\u062D\u062A\u0633\u0627\u0628 \u0627\u0644\u0625\u062C\u0645\u0627\u0644\u064A\u0627\u062A \u0625\u0644\u0627 \u0644\u0644\u0623\u0639\u0645\u062F\u0629 \u0627\u0644\u0645\u0631\u0626\u064A\u0629 \u0641\u0642\u0637. \u0644\u0646 \u064A\u062A\u0645 \u0639\u0631\u0636 \u0627\u0644\u0625\u062C\u0645\u0627\u0644\u064A\u0627\u062A \u0644\u0639\u0645\u0648\u062F \u0625\u0630\u0627 \u0644\u0645 \u064A\u0643\u0646 \u0645\u0631\u0626\u064A\u064B\u0627.
402
434
  table.PERSONALIZATION_DIALOG_FILTER_MESSAGESTRIP=\u062A\u0645\u062A \u062A\u0635\u0641\u064A\u0629 \u0627\u0644\u062C\u062F\u0648\u0644 \u0644\u0635\u0641\u0648\u0641 \u0628\u0631\u0633\u0627\u0626\u0644 \u0645\u0631\u062A\u0628\u0637\u0629. \u062A\u0645 \u062A\u062C\u0627\u0647\u0644 \u0639\u0648\u0627\u0645\u0644 \u0627\u0644\u062A\u0635\u0641\u064A\u0629 \u0627\u0644\u0645\u062D\u062F\u062F\u0629 \u0645\u0624\u0642\u062A\u064B\u0627.
403
-
435
+ table.ROW_ACTION_ITEM_NAVIGATE=\u062A\u0646\u0642\u0644
436
+ table.ROW_GROUP_TITLE={0}\: {1}
437
+ table.ROW_GROUP_TITLE_FULL={0}\: {1} - {2}
404
438
 
405
439
  fieldsui.COLUMNS=\u0627\u0644\u0623\u0639\u0645\u062F\u0629
406
440