@sapui5/sap.gantt 1.123.0 → 1.125.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 (239) hide show
  1. package/LICENSE.txt +13 -10
  2. package/README.md +1 -1
  3. package/package.json +1 -1
  4. package/src/sap/gantt/.library +11 -5
  5. package/src/sap/gantt/AdhocLine.js +1 -1
  6. package/src/sap/gantt/GanttChart.js +1 -1
  7. package/src/sap/gantt/GanttChartBase.js +4 -4
  8. package/src/sap/gantt/GanttChartContainer.js +1 -1
  9. package/src/sap/gantt/GanttChartWithTable.js +1 -1
  10. package/src/sap/gantt/axistime/AxisTimeStrategyBase.js +1 -3
  11. package/src/sap/gantt/axistime/FullScreenStrategy.js +1 -1
  12. package/src/sap/gantt/axistime/ProportionZoomStrategy.js +1 -1
  13. package/src/sap/gantt/axistime/StepwiseZoomStrategy.js +1 -1
  14. package/src/sap/gantt/changeHandlers/simple/AdhocLine.js +1 -1
  15. package/src/sap/gantt/changeHandlers/simple/DeltaLine.js +1 -1
  16. package/src/sap/gantt/changeHandlers/simple/GanttChartContainer.js +1 -1
  17. package/src/sap/gantt/changeHandlers/simple/GanttChartWithTable.js +1 -1
  18. package/src/sap/gantt/config/BirdEyeGroup.js +2 -2
  19. package/src/sap/gantt/config/ChartScheme.js +2 -2
  20. package/src/sap/gantt/config/ColumnAttribute.js +2 -2
  21. package/src/sap/gantt/config/ContainerLayout.js +2 -2
  22. package/src/sap/gantt/config/ExpandChart.js +2 -2
  23. package/src/sap/gantt/config/ExpandChartGroup.js +2 -2
  24. package/src/sap/gantt/config/GanttChartLayout.js +2 -2
  25. package/src/sap/gantt/config/Hierarchy.js +2 -2
  26. package/src/sap/gantt/config/HierarchyColumn.js +2 -2
  27. package/src/sap/gantt/config/LayoutGroup.js +3 -3
  28. package/src/sap/gantt/config/Locale.js +9 -11
  29. package/src/sap/gantt/config/Mode.js +2 -2
  30. package/src/sap/gantt/config/ModeGroup.js +2 -2
  31. package/src/sap/gantt/config/ObjectType.js +2 -2
  32. package/src/sap/gantt/config/SettingGroup.js +2 -2
  33. package/src/sap/gantt/config/SettingItem.js +1 -1
  34. package/src/sap/gantt/config/Shape.js +2 -2
  35. package/src/sap/gantt/config/TimeAxis.js +1 -1
  36. package/src/sap/gantt/config/TimeHorizon.js +1 -1
  37. package/src/sap/gantt/config/TimeZoomGroup.js +2 -2
  38. package/src/sap/gantt/config/ToolbarGroup.js +2 -2
  39. package/src/sap/gantt/config/ToolbarScheme.js +2 -2
  40. package/src/sap/gantt/control/Cell.js +2 -2
  41. package/src/sap/gantt/control/Toolbar.js +1 -1
  42. package/src/sap/gantt/def/DefBase.js +1 -1
  43. package/src/sap/gantt/def/SvgDefs.js +1 -1
  44. package/src/sap/gantt/def/cal/Calendar.js +1 -1
  45. package/src/sap/gantt/def/cal/CalendarDefs.js +1 -1
  46. package/src/sap/gantt/def/cal/TimeInterval.js +1 -1
  47. package/src/sap/gantt/def/filter/MorphologyFilter.js +1 -1
  48. package/src/sap/gantt/def/gradient/LinearGradient.js +1 -1
  49. package/src/sap/gantt/def/gradient/RadialGradient.js +1 -1
  50. package/src/sap/gantt/def/gradient/Stop.js +1 -1
  51. package/src/sap/gantt/def/pattern/BackSlashPattern.js +1 -1
  52. package/src/sap/gantt/def/pattern/PatternBase.js +1 -1
  53. package/src/sap/gantt/def/pattern/SlashPattern.js +1 -1
  54. package/src/sap/gantt/drawer/Drawer.js +1 -1
  55. package/src/sap/gantt/eventHandler/AutoScrollHandler.js +1 -1
  56. package/src/sap/gantt/eventHandler/BirdEyeHandler.js +1 -1
  57. package/src/sap/gantt/eventHandler/MouseWheelHandler.js +1 -1
  58. package/src/sap/gantt/eventHandler/ShapeHoverHandler.js +1 -1
  59. package/src/sap/gantt/eventHandler/ShapeResizeHandler.js +1 -1
  60. package/src/sap/gantt/eventHandler/TimePeriodZoomHandler.js +1 -1
  61. package/src/sap/gantt/eventHandler/TimePopoverHandler.js +1 -1
  62. package/src/sap/gantt/flexibility/simple/GanttTableColumn.flexibility.js +1 -4
  63. package/src/sap/gantt/layouts/SidePanel.js +197 -0
  64. package/src/sap/gantt/layouts/SidePanelRenderer.js +28 -0
  65. package/src/sap/gantt/legend/DimensionLegend.js +2 -2
  66. package/src/sap/gantt/legend/LegendBase.js +2 -2
  67. package/src/sap/gantt/legend/LegendContainer.js +2 -2
  68. package/src/sap/gantt/legend/ListLegend.js +3 -3
  69. package/src/sap/gantt/library.js +4 -4
  70. package/src/sap/gantt/messagebundle_ar.properties +5 -2
  71. package/src/sap/gantt/messagebundle_bg.properties +5 -2
  72. package/src/sap/gantt/messagebundle_ca.properties +5 -2
  73. package/src/sap/gantt/messagebundle_cnr.properties +5 -2
  74. package/src/sap/gantt/messagebundle_cs.properties +5 -2
  75. package/src/sap/gantt/messagebundle_cy.properties +5 -2
  76. package/src/sap/gantt/messagebundle_da.properties +5 -2
  77. package/src/sap/gantt/messagebundle_de.properties +5 -2
  78. package/src/sap/gantt/messagebundle_el.properties +5 -2
  79. package/src/sap/gantt/messagebundle_en.properties +5 -2
  80. package/src/sap/gantt/messagebundle_en_GB.properties +5 -2
  81. package/src/sap/gantt/messagebundle_es.properties +5 -2
  82. package/src/sap/gantt/messagebundle_es_MX.properties +5 -2
  83. package/src/sap/gantt/messagebundle_et.properties +5 -2
  84. package/src/sap/gantt/messagebundle_fi.properties +5 -2
  85. package/src/sap/gantt/messagebundle_fr.properties +5 -2
  86. package/src/sap/gantt/messagebundle_fr_CA.properties +5 -2
  87. package/src/sap/gantt/messagebundle_hi.properties +5 -2
  88. package/src/sap/gantt/messagebundle_hr.properties +5 -2
  89. package/src/sap/gantt/messagebundle_hu.properties +5 -2
  90. package/src/sap/gantt/messagebundle_id.properties +5 -2
  91. package/src/sap/gantt/messagebundle_it.properties +5 -2
  92. package/src/sap/gantt/messagebundle_iw.properties +5 -2
  93. package/src/sap/gantt/messagebundle_ja.properties +5 -2
  94. package/src/sap/gantt/messagebundle_kk.properties +5 -2
  95. package/src/sap/gantt/messagebundle_ko.properties +5 -2
  96. package/src/sap/gantt/messagebundle_lt.properties +5 -2
  97. package/src/sap/gantt/messagebundle_lv.properties +5 -2
  98. package/src/sap/gantt/messagebundle_mk.properties +6 -3
  99. package/src/sap/gantt/messagebundle_ms.properties +5 -2
  100. package/src/sap/gantt/messagebundle_nl.properties +5 -2
  101. package/src/sap/gantt/messagebundle_no.properties +5 -2
  102. package/src/sap/gantt/messagebundle_pl.properties +5 -2
  103. package/src/sap/gantt/messagebundle_pt.properties +5 -2
  104. package/src/sap/gantt/messagebundle_pt_PT.properties +5 -2
  105. package/src/sap/gantt/messagebundle_ro.properties +5 -2
  106. package/src/sap/gantt/messagebundle_ru.properties +5 -2
  107. package/src/sap/gantt/messagebundle_sh.properties +5 -2
  108. package/src/sap/gantt/messagebundle_sk.properties +5 -2
  109. package/src/sap/gantt/messagebundle_sl.properties +5 -2
  110. package/src/sap/gantt/messagebundle_sr.properties +5 -2
  111. package/src/sap/gantt/messagebundle_sv.properties +10 -7
  112. package/src/sap/gantt/messagebundle_th.properties +5 -2
  113. package/src/sap/gantt/messagebundle_tr.properties +5 -2
  114. package/src/sap/gantt/messagebundle_uk.properties +5 -2
  115. package/src/sap/gantt/messagebundle_vi.properties +5 -2
  116. package/src/sap/gantt/messagebundle_zh_CN.properties +5 -2
  117. package/src/sap/gantt/messagebundle_zh_TW.properties +5 -2
  118. package/src/sap/gantt/misc/AxisTime.js +4 -4
  119. package/src/sap/gantt/misc/Memoizer.js +1 -1
  120. package/src/sap/gantt/misc/RelativeTimeFormatter.js +1 -1
  121. package/src/sap/gantt/misc/ShapeManager.js +1 -1
  122. package/src/sap/gantt/misc/Utility.js +3 -3
  123. package/src/sap/gantt/overlays/GanttRowOverlay.js +1 -1
  124. package/src/sap/gantt/overlays/Overlay.js +1 -1
  125. package/src/sap/gantt/shape/Circle.js +2 -2
  126. package/src/sap/gantt/shape/ClipPath.js +2 -2
  127. package/src/sap/gantt/shape/Definitions.js +2 -2
  128. package/src/sap/gantt/shape/Group.js +2 -2
  129. package/src/sap/gantt/shape/Image.js +2 -2
  130. package/src/sap/gantt/shape/Line.js +2 -2
  131. package/src/sap/gantt/shape/Path.js +2 -2
  132. package/src/sap/gantt/shape/Polygon.js +2 -2
  133. package/src/sap/gantt/shape/Polyline.js +2 -2
  134. package/src/sap/gantt/shape/Rectangle.js +2 -2
  135. package/src/sap/gantt/shape/ResizeShadowShape.js +2 -2
  136. package/src/sap/gantt/shape/SelectedShape.js +2 -2
  137. package/src/sap/gantt/shape/Shape.js +2 -2
  138. package/src/sap/gantt/shape/Text.js +2 -2
  139. package/src/sap/gantt/shape/cal/Calendar.js +2 -2
  140. package/src/sap/gantt/shape/ext/Chevron.js +2 -2
  141. package/src/sap/gantt/shape/ext/Cursor.js +2 -2
  142. package/src/sap/gantt/shape/ext/Diamond.js +2 -2
  143. package/src/sap/gantt/shape/ext/Iconfont.js +2 -2
  144. package/src/sap/gantt/shape/ext/Pentangle.js +2 -2
  145. package/src/sap/gantt/shape/ext/TextRepeat.js +2 -2
  146. package/src/sap/gantt/shape/ext/Triangle.js +2 -2
  147. package/src/sap/gantt/shape/ext/rls/Relationship.js +2 -2
  148. package/src/sap/gantt/shape/ext/rls/SelectedRelationship.js +3 -3
  149. package/src/sap/gantt/shape/ext/ubc/UbcBorderPath.js +2 -2
  150. package/src/sap/gantt/shape/ext/ubc/UbcOverCapacityZonePolygon.js +2 -2
  151. package/src/sap/gantt/shape/ext/ubc/UbcPolygon.js +2 -2
  152. package/src/sap/gantt/shape/ext/ubc/UbcShortageCapacityPolygon.js +2 -2
  153. package/src/sap/gantt/shape/ext/ubc/UbcTooltipRectangle.js +2 -2
  154. package/src/sap/gantt/shape/ext/ubc/UbcUnderCapacityZonePolygon.js +2 -2
  155. package/src/sap/gantt/shape/ext/ubc/UbcUsedPolygon.js +2 -2
  156. package/src/sap/gantt/shape/ext/ubc/UtilizationBarChart.js +2 -2
  157. package/src/sap/gantt/shape/ext/ulc/UlcBorderPath.js +2 -2
  158. package/src/sap/gantt/shape/ext/ulc/UlcClipPath.js +2 -2
  159. package/src/sap/gantt/shape/ext/ulc/UlcClipingPath.js +2 -2
  160. package/src/sap/gantt/shape/ext/ulc/UlcDimension.js +2 -2
  161. package/src/sap/gantt/shape/ext/ulc/UlcMiddleLine.js +2 -2
  162. package/src/sap/gantt/shape/ext/ulc/UlcOverCapacityZoneRectangle.js +2 -2
  163. package/src/sap/gantt/shape/ext/ulc/UlcOverClipRectangle.js +2 -2
  164. package/src/sap/gantt/shape/ext/ulc/UlcRectangle.js +2 -2
  165. package/src/sap/gantt/shape/ext/ulc/UlcTooltipRectangle.js +2 -2
  166. package/src/sap/gantt/shape/ext/ulc/UlcUnderClipRectangle.js +2 -2
  167. package/src/sap/gantt/shape/ext/ulc/UtilizationLineChart.js +2 -2
  168. package/src/sap/gantt/simple/AdhocDiamond.js +1 -1
  169. package/src/sap/gantt/simple/AdhocLine.js +1 -1
  170. package/src/sap/gantt/simple/BaseCalendar.js +1 -1
  171. package/src/sap/gantt/simple/BaseChevron.js +1 -1
  172. package/src/sap/gantt/simple/BaseConditionalShape.js +1 -1
  173. package/src/sap/gantt/simple/BaseCursor.js +1 -1
  174. package/src/sap/gantt/simple/BaseDeltaRectangle.js +1 -1
  175. package/src/sap/gantt/simple/BaseDiamond.js +1 -1
  176. package/src/sap/gantt/simple/BaseGroup.js +1 -1
  177. package/src/sap/gantt/simple/BaseImage.js +1 -1
  178. package/src/sap/gantt/simple/BaseLine.js +1 -1
  179. package/src/sap/gantt/simple/BasePath.js +1 -1
  180. package/src/sap/gantt/simple/BasePseudoShape.js +1 -1
  181. package/src/sap/gantt/simple/BaseRectangle.js +1 -1
  182. package/src/sap/gantt/simple/BaseShape.js +1 -1
  183. package/src/sap/gantt/simple/BaseText.js +1 -1
  184. package/src/sap/gantt/simple/BaseTriangle.js +1 -1
  185. package/src/sap/gantt/simple/ContainerToolbar.js +3 -3
  186. package/src/sap/gantt/simple/ContainerToolbarPlaceholder.js +1 -1
  187. package/src/sap/gantt/simple/CoordinateUtils.js +1 -1
  188. package/src/sap/gantt/simple/CustomVariantHandler.js +1 -1
  189. package/src/sap/gantt/simple/DeltaLine.js +1 -1
  190. package/src/sap/gantt/simple/DimensionLegendRenderer.js +1 -1
  191. package/src/sap/gantt/simple/ExpandModel.js +1 -1
  192. package/src/sap/gantt/simple/FindAndSelectUtils.js +1 -1
  193. package/src/sap/gantt/simple/GanttAdaptationData.js +1 -1
  194. package/src/sap/gantt/simple/GanttChartContainer.js +31 -2
  195. package/src/sap/gantt/simple/GanttChartContainerRenderer.js +29 -12
  196. package/src/sap/gantt/simple/GanttChartWithTable.js +44 -17
  197. package/src/sap/gantt/simple/GanttDragDropExtension.js +4 -2
  198. package/src/sap/gantt/simple/GanttExtension.js +1 -1
  199. package/src/sap/gantt/simple/GanttHeader.js +2 -2
  200. package/src/sap/gantt/simple/GanttPointerExtension.js +1 -3
  201. package/src/sap/gantt/simple/GanttPopoverExtension.js +1 -1
  202. package/src/sap/gantt/simple/GanttPrinting.js +97 -25
  203. package/src/sap/gantt/simple/GanttRowAction.js +1 -1
  204. package/src/sap/gantt/simple/GanttRowSettings.js +1 -1
  205. package/src/sap/gantt/simple/GanttUtils.js +12 -4
  206. package/src/sap/gantt/simple/InnerGanttChart.js +11 -2
  207. package/src/sap/gantt/simple/InnerGanttChartRenderer.js +1 -1
  208. package/src/sap/gantt/simple/LegendContainer.js +1 -1
  209. package/src/sap/gantt/simple/LegendShapeGroup.js +1 -1
  210. package/src/sap/gantt/simple/MultiActivityGroup.js +1 -1
  211. package/src/sap/gantt/simple/MultiActivityRowSettings.js +1 -1
  212. package/src/sap/gantt/simple/Relationship.js +1 -1
  213. package/src/sap/gantt/simple/RenderUtils.js +5 -9
  214. package/src/sap/gantt/simple/SelectionModel.js +17 -12
  215. package/src/sap/gantt/simple/ShapeScheme.js +1 -1
  216. package/src/sap/gantt/simple/StockChart.js +1 -1
  217. package/src/sap/gantt/simple/StockChartDimension.js +1 -1
  218. package/src/sap/gantt/simple/StockChartPeriod.js +1 -1
  219. package/src/sap/gantt/simple/UtilizationBarChart.js +1 -1
  220. package/src/sap/gantt/simple/UtilizationChart.js +1 -1
  221. package/src/sap/gantt/simple/UtilizationDimension.js +1 -1
  222. package/src/sap/gantt/simple/UtilizationLineChart.js +1 -1
  223. package/src/sap/gantt/simple/UtilizationPeriod.js +1 -1
  224. package/src/sap/gantt/simple/shapes/Shape.js +5 -23
  225. package/src/sap/gantt/simple/shapes/Task.js +1 -1
  226. package/src/sap/gantt/themes/base/Gantt.less +9 -5
  227. package/src/sap/gantt/themes/sap_belize/library.source.less +10 -1
  228. package/src/sap/gantt/themes/sap_belize_base/Gantt.less +895 -0
  229. package/src/sap/gantt/themes/sap_belize_base/GanttPrinting.less +101 -0
  230. package/src/sap/gantt/themes/sap_belize_base/GanttSyncedControl.less +96 -0
  231. package/src/sap/gantt/themes/sap_belize_base/library.source.less +13 -0
  232. package/src/sap/gantt/themes/sap_belize_hcb/library.source.less +10 -1
  233. package/src/sap/gantt/themes/sap_belize_hcw/library.source.less +10 -1
  234. package/src/sap/gantt/themes/sap_bluecrystal/library.source.less +10 -1
  235. package/src/sap/gantt/themes/sap_bluecrystal_base/Gantt.less +899 -0
  236. package/src/sap/gantt/themes/sap_bluecrystal_base/GanttPrinting.less +101 -0
  237. package/src/sap/gantt/themes/sap_bluecrystal_base/GanttSyncedControl.less +96 -0
  238. package/src/sap/gantt/themes/sap_bluecrystal_base/library.source.less +13 -0
  239. package/src/sap/gantt/utils/GanttChartConfigurationUtils.js +4 -1
@@ -195,10 +195,13 @@ ARIA_CALENDAR=\u041E\u0432\u043E \u0458\u0435 SVG \u043A\u0430\u043B\u0435\u043D
195
195
 
196
196
  ARIA_RELATIONSHIP=\u041E\u0432\u043E \u0458\u0435 SVG \u043E\u0434\u043D\u043E\u0441.
197
197
 
198
- ARIA_GANTT_HEADER=\u041E\u0432\u043E \u0458\u0435 \u0437\u0430\u0433\u043B\u0430\u0432\u0459\u0435 \u0413\u0430\u043D\u0442\u043E\u0432\u043E\u0433 \u0434\u0438\u0458\u0430\u0433\u0440\u0430\u043C\u0430.
198
+ ARIA_GANTT_HEADER=\u0417\u0430\u0433\u043B\u0430\u0432\u0459\u0435 \u0413\u0430\u043D\u0442\u043E\u0432\u043E\u0433 \u0434\u0438\u0458\u0430\u0433\u0440\u0430\u043C\u0430.
199
199
 
200
- ARIA_GANTT_CHART=\u041E\u0432\u043E \u0458\u0435 \u0413\u0430\u043D\u0442\u043E\u0432 \u0434\u0438\u0458\u0430\u0433\u0440\u0430\u043C.
200
+ ARIA_GANTT_CHART=\u0413\u0430\u043D\u0442\u043E\u0432 \u0434\u0438\u0458\u0430\u0433\u0440\u0430\u043C.
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=\u0423\u043D\u0443\u0442\u0440\u0430\u0448\u045A\u0435 \u0437\u0430\u0433\u043B\u0430\u0432\u0459\u0435 \u0413\u0430\u043D\u0442\u043E\u0432\u043E\u0433 \u0434\u0438\u0458\u0430\u0433\u0440\u0430\u043C\u0430.
203
+
204
+ ARIA_GANTT_CALENDARS=\u041A\u0430\u043B\u0435\u043D\u0434\u0430\u0440\u0438 \u0413\u0430\u043D\u0442\u043E\u0432\u043E\u0433 \u0434\u0438\u0458\u0430\u0433\u0440\u0430\u043C\u0430.
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=PDF \u0438\u0437\u0432\u043E\u0437
204
207
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  GNT_FIND_PLACEHOLDER=S\u00F6k
4
4
 
5
- GNT_FIND=Hitta i Gantt-diagram
5
+ GNT_FIND=Hitta i Gantt-schema
6
6
 
7
7
  GNT_SEARCH_SIDE_PANEL=Sidopanel
8
8
 
@@ -195,10 +195,13 @@ ARIA_CALENDAR=Detta \u00E4r en SVG-kalender.
195
195
 
196
196
  ARIA_RELATIONSHIP=Detta \u00E4r en SVG-relation.
197
197
 
198
- ARIA_GANTT_HEADER=Detta \u00E4r en Gantt-diagramrubrik.
198
+ ARIA_GANTT_HEADER=Gantt-schemarubrik.
199
199
 
200
- ARIA_GANTT_CHART=Detta \u00E4r ett Gantt-diagram.
200
+ ARIA_GANTT_CHART=Gantt-schema.
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=Inre Gantt-schemarubrik.
203
+
204
+ ARIA_GANTT_CALENDARS=Gantt-schemakalendrar.
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=PDF-export
204
207
 
@@ -298,11 +301,11 @@ GNT_PRNTG_COMPRESSION_PNG_WARNING=Export till PNG kan ta en stund.
298
301
 
299
302
  GNT_PRNTG_PDF_PREVIEW=Genererar PDF-f\u00F6rhandsgranskning
300
303
 
301
- GNT_PRNTG_ERROR_BIGCHART=Gantt-diagrammet \u00E4r f\u00F6r stort och kan inte exporteras. Du kan exportera diagrammet om du justerar zoomniv\u00E5n eller minskar tidsl\u00E4ngden.
304
+ GNT_PRNTG_ERROR_BIGCHART=Gantt-schemat \u00E4r f\u00F6r stort och kan inte exporteras. Du kan exportera diagrammet om du justerar zoomniv\u00E5n eller minskar tidsl\u00E4ngden.
302
305
 
303
- GNT_PRNTG_ERROR_TOOHIGHCHART=Gantt-diagrammet \u00E4r f\u00F6r stort och kan inte exporteras.\n\nDu kan exportera diagrammet om du justerar h\u00F6jden genom att komprimera n\u00E5gra av raderna. Diagrammet kan inte exporteras om inte n\u00E5gra av dess rader komprimeras.
306
+ GNT_PRNTG_ERROR_TOOHIGHCHART=Gantt-schemat \u00E4r f\u00F6r stort och kan inte exporteras.\n\nDu kan exportera diagrammet om du justerar h\u00F6jden genom att komprimera n\u00E5gra av raderna. Diagrammet kan inte exporteras om inte n\u00E5gra av dess rader komprimeras.
304
307
 
305
- GNT_PRNTG_SINGLE_PAGE_QUALITY=PDF-kvaliteten kan vara otillfredsst\u00E4llande eftersom Gantt-diagrammet \u00E4r st\u00F6rre \u00E4n storleken p\u00E5 pappret. \u00D6verv\u00E4g att anv\u00E4nda ett st\u00F6rre papper eller byta till flera sidor f\u00F6r att uppn\u00E5 ett b\u00E4ttre utskriftskvalitet.
308
+ GNT_PRNTG_SINGLE_PAGE_QUALITY=PDF-kvaliteten kan vara otillfredsst\u00E4llande eftersom Gantt-schemat \u00E4r st\u00F6rre \u00E4n storleken p\u00E5 pappret. \u00D6verv\u00E4g att anv\u00E4nda ett st\u00F6rre papper eller byta till flera sidor f\u00F6r att uppn\u00E5 ett b\u00E4ttre utskriftskvalitet.
306
309
 
307
310
  GNT_PRNTG_SINGLE_PAGE_PORTRAIT=St\u00E4ll in orientering till St\u00E5ende f\u00F6r ett b\u00E4ttre utskriftskvalitet.
308
311
 
@@ -367,7 +370,7 @@ TXT_DT_DELTALINE=Konfigurera deltalinje
367
370
  TXT_DT_GANTT_CHART_CONTAINER=Konfigurera containerinst\u00E4llningar
368
371
 
369
372
 
370
- TXT_DT_GANTT_CHART_WITH_TABLE=Konfigurera Gantt-diagram med tabellinst\u00E4llningar
373
+ TXT_DT_GANTT_CHART_WITH_TABLE=Konfigurera Gantt-schema med tabellinst\u00E4llningar
371
374
 
372
375
 
373
376
  TXT_CH_AL_STROKE=St\u00E4ll in konturlinje
@@ -195,10 +195,13 @@ ARIA_CALENDAR=\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E40\u0E1B
195
195
 
196
196
  ARIA_RELATIONSHIP=\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E27\u0E32\u0E21\u0E2A\u0E31\u0E21\u0E1E\u0E31\u0E19\u0E18\u0E4C SVG
197
197
 
198
- ARIA_GANTT_HEADER=\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E2B\u0E31\u0E27\u0E02\u0E2D\u0E07\u0E41\u0E1C\u0E19\u0E20\u0E39\u0E21\u0E34\u0E41\u0E01\u0E19\u0E15\u0E4C
198
+ ARIA_GANTT_HEADER=\u0E2A\u0E48\u0E27\u0E19\u0E2B\u0E31\u0E27\u0E02\u0E2D\u0E07\u0E41\u0E1C\u0E19\u0E20\u0E39\u0E21\u0E34\u0E41\u0E01\u0E19\u0E15\u0E4C
199
199
 
200
- ARIA_GANTT_CHART=\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23\u0E19\u0E35\u0E49\u0E40\u0E1B\u0E47\u0E19\u0E41\u0E1C\u0E19\u0E20\u0E39\u0E21\u0E34\u0E41\u0E01\u0E19\u0E15\u0E4C
200
+ ARIA_GANTT_CHART=\u0E41\u0E1C\u0E19\u0E20\u0E39\u0E21\u0E34\u0E41\u0E01\u0E19\u0E15\u0E4C
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=\u0E2A\u0E48\u0E27\u0E19\u0E2B\u0E31\u0E27\u0E20\u0E32\u0E22\u0E43\u0E19\u0E41\u0E1C\u0E19\u0E20\u0E39\u0E21\u0E34\u0E41\u0E01\u0E19\u0E15\u0E4C
203
+
204
+ ARIA_GANTT_CALENDARS=\u0E1B\u0E0F\u0E34\u0E17\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E41\u0E1C\u0E19\u0E20\u0E39\u0E21\u0E34\u0E41\u0E01\u0E19\u0E15\u0E4C
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=\u0E01\u0E32\u0E23\u0E40\u0E2D\u0E47\u0E01\u0E0B\u0E4C\u0E1B\u0E2D\u0E23\u0E4C\u0E15 PDF
204
207
 
@@ -195,10 +195,13 @@ ARIA_CALENDAR=Bu SVG takvimidir.
195
195
 
196
196
  ARIA_RELATIONSHIP=Bu SVG ili\u015Fkisidir.
197
197
 
198
- ARIA_GANTT_HEADER=Bu bir Gantt \u015Femas\u0131 ba\u015Fl\u0131\u011F\u0131d\u0131r.
198
+ ARIA_GANTT_HEADER=Gantt \u015Femas\u0131 ba\u015Fl\u0131\u011F\u0131.
199
199
 
200
- ARIA_GANTT_CHART=Bu bir Gantt \u015Femas\u0131d\u0131r.
200
+ ARIA_GANTT_CHART=Gantt \u015Femas\u0131.
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=Gantt \u015Femas\u0131 i\u00E7 ba\u015Fl\u0131\u011F\u0131.
203
+
204
+ ARIA_GANTT_CALENDARS=Gantt \u015Femas\u0131 takvimleri.
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=PDF d\u0131\u015Fa aktar\u0131m\u0131
204
207
 
@@ -195,10 +195,13 @@ ARIA_CALENDAR=\u0426\u0435 \u043A\u0430\u043B\u0435\u043D\u0434\u0430\u0440 SVG.
195
195
 
196
196
  ARIA_RELATIONSHIP=\u0426\u0435 \u0432\u0456\u0434\u043D\u043E\u0441\u0438\u043D\u0438 SVG.
197
197
 
198
- ARIA_GANTT_HEADER=\u0426\u0435 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0434\u0456\u0430\u0433\u0440\u0430\u043C\u0438 \u0413\u0430\u043D\u0442\u0430.
198
+ ARIA_GANTT_HEADER=\u0417\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0434\u0456\u0430\u0433\u0440\u0430\u043C\u0438 \u0413\u0430\u043D\u0442\u0430.
199
199
 
200
- ARIA_GANTT_CHART=\u0426\u0435 \u0434\u0456\u0430\u0433\u0440\u0430\u043C\u0430 \u0413\u0430\u043D\u0442\u0430.
200
+ ARIA_GANTT_CHART=\u0414\u0456\u0430\u0433\u0440\u0430\u043C\u0430 \u0413\u0430\u043D\u0442\u0430.
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=\u0412\u043D\u0443\u0442\u0440\u0456\u0448\u043D\u0456\u0439 \u0437\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0434\u0456\u0430\u0433\u0440\u0430\u043C\u0438 \u0413\u0430\u043D\u0442\u0430.
203
+
204
+ ARIA_GANTT_CALENDARS=\u041A\u0430\u043B\u0435\u043D\u0434\u0430\u0440\u0456 \u0434\u0456\u0430\u0433\u0440\u0430\u043C\u0438 \u0413\u0430\u043D\u0442\u0430.
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=\u0415\u043A\u0441\u043F\u043E\u0440\u0442 PDF
204
207
 
@@ -195,10 +195,13 @@ ARIA_CALENDAR=\u0110\u00E2y la\u0300 li\u0323ch SVG.
195
195
 
196
196
  ARIA_RELATIONSHIP=\u0110\u00E2y la\u0300 quan h\u00EA\u0323 SVG.
197
197
 
198
- ARIA_GANTT_HEADER=\u0110\u00E2y la\u0300 ti\u00EAu \u0111\u00EA\u0300 bi\u00EA\u0309u \u0111\u00F4\u0300 Gantt.
198
+ ARIA_GANTT_HEADER=Ti\u00EAu \u0111\u1EC1 bi\u1EC3u \u0111\u1ED3 Gantt.
199
199
 
200
- ARIA_GANTT_CHART=\u0110\u00E2y la\u0300 bi\u00EA\u0309u \u0111\u00F4\u0300 Gantt.
200
+ ARIA_GANTT_CHART=Bi\u1EC3u \u0111\u1ED3 Gantt.
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=Ti\u00EAu \u0111\u1EC1 b\u00EAn trong bi\u1EC3u \u0111\u1ED3 Gantt.
203
+
204
+ ARIA_GANTT_CALENDARS=L\u1ECBch bi\u1EC3u \u0111\u1ED3 Gantt.
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=Xu\u00E2\u0301t PDF
204
207
 
@@ -195,10 +195,13 @@ ARIA_CALENDAR=\u6B64\u4E3A SVG \u65E5\u5386\u3002
195
195
 
196
196
  ARIA_RELATIONSHIP=\u6B64\u4E3A SVG \u5173\u7CFB\u3002
197
197
 
198
- ARIA_GANTT_HEADER=\u6B64\u4E3A\u7518\u7279\u56FE\u62AC\u5934\u3002
198
+ ARIA_GANTT_HEADER=\u7518\u7279\u56FE\u62AC\u5934\u3002
199
199
 
200
- ARIA_GANTT_CHART=\u6B64\u4E3A\u7518\u7279\u56FE\u3002
200
+ ARIA_GANTT_CHART=\u7518\u7279\u56FE\u3002
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=\u7518\u7279\u56FE\u5185\u62AC\u5934\u3002
203
+
204
+ ARIA_GANTT_CALENDARS=\u7518\u7279\u56FE\u65E5\u5386\u3002
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=PDF \u5BFC\u51FA
204
207
 
@@ -195,10 +195,13 @@ ARIA_CALENDAR=\u6B64\u70BA SVG \u884C\u4E8B\u66C6
195
195
 
196
196
  ARIA_RELATIONSHIP=\u6B64\u70BA SVG \u95DC\u4FC2
197
197
 
198
- ARIA_GANTT_HEADER=\u6B64\u70BA\u7518\u7279\u5716\u8868\u982D\u3002
198
+ ARIA_GANTT_HEADER=\u7518\u7279\u5716\u8868\u982D\u3002
199
199
 
200
- ARIA_GANTT_CHART=\u6B64\u70BA\u7518\u7279\u5716\u3002
200
+ ARIA_GANTT_CHART=\u7518\u7279\u5716\u3002
201
201
 
202
+ ARIA_GANTT_INNER_HEADER=\u7518\u7279\u5716\u5167\u90E8\u8868\u982D\u3002
203
+
204
+ ARIA_GANTT_CALENDARS=\u7518\u7279\u5716\u884C\u4E8B\u66C6\u3002
202
205
 
203
206
  GNT_PRNTG_PDF_EXPORT_TITLE=PDF \u532F\u51FA
204
207
 
@@ -11,11 +11,11 @@ sap.ui.define([
11
11
  "sap/gantt/misc/Format",
12
12
  "sap/gantt/simple/GanttUtils",
13
13
  "sap/gantt/misc/Memoizer",
14
- "sap/ui/core/format/TimezoneUtil",
14
+ "sap/base/i18n/date/TimezoneUtils",
15
15
  "sap/ui/core/date/UI5Date",
16
16
  "sap/ui/base/Object",
17
17
  "sap/gantt/utils/GanttChartConfigurationUtils"
18
- ], function (ObjectPath, Core, Utility, Format, GanttUtils, Memoizer, TimezoneUtil, UI5Date , BaseObject, GanttChartConfigurationUtils) {
18
+ ], function (ObjectPath, Core, Utility, Format, GanttUtils, Memoizer, TimezoneUtils, UI5Date , BaseObject, GanttChartConfigurationUtils) {
19
19
  // Utility cannot be referenced because of cyclic dependency between AxisOrdinal and Utility, use global name to reference
20
20
  "use strict";
21
21
  var oContextCache = {};
@@ -889,7 +889,7 @@ sap.ui.define([
889
889
  AxisTime.prototype.convertToTimezone = function (oDate, sInputTimeZone) {
890
890
  var sTimeZone = sInputTimeZone || this.locale.getTimeZone();
891
891
 
892
- if (sTimeZone !== TimezoneUtil.getLocalTimezone()) {
892
+ if (sTimeZone !== TimezoneUtils.getLocalTimezone()) {
893
893
  var oUI5Instance = new UI5Date([oDate], sTimeZone);
894
894
 
895
895
  return new Date(
@@ -915,7 +915,7 @@ sap.ui.define([
915
915
  AxisTime.prototype.offsetTimezoneDiff = function (oDate) {
916
916
  var sTimeZone = this.locale.getTimeZone();
917
917
 
918
- if (sTimeZone !== TimezoneUtil.getLocalTimezone()) {
918
+ if (sTimeZone !== TimezoneUtils.getLocalTimezone()) {
919
919
  var iCurrentMilli = oDate.getTime();
920
920
  var oFormattedDate = this.convertToTimezone(oDate, sTimeZone);
921
921
  var iDiff = oFormattedDate.getTime() - iCurrentMilli;
@@ -13,7 +13,7 @@ sap.ui.define([
13
13
  * Caching the values of control and returning them when the same inputs are used again.
14
14
  *
15
15
  * @author SAP SE
16
- * @version 1.123.0
16
+ * @version 1.125.0
17
17
  *
18
18
  * @private
19
19
  * @alias sap.gantt.misc.Memoizer
@@ -18,7 +18,7 @@ sap.ui.define([
18
18
  * @param {string} sPrefix the prefix of the time label
19
19
  *
20
20
  * @author SAP SE
21
- * @version 1.123.0
21
+ * @version 1.125.0
22
22
  *
23
23
  * @constructor
24
24
  * @private
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @extends sap.ui.base.EventProvider
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.123.0
31
+ * @version 1.125.0
32
32
  *
33
33
  * @param {int} oGantt <code>sap.gantt.GanttChartBase</code>
34
34
  *
@@ -12,9 +12,9 @@ sap.ui.define([
12
12
  "sap/gantt/library",
13
13
  "sap/gantt/config/TimeHorizon",
14
14
  "sap/base/Log",
15
- "sap/ui/core/format/TimezoneUtil",
15
+ "sap/base/i18n/date/TimezoneUtils",
16
16
  "sap/gantt/utils/GanttChartConfigurationUtils"
17
- ], function (assert, uniqueSort, uid, Format, library, TimeHorizon, Log, TimezoneUtil, GanttChartConfigurationUtils) {
17
+ ], function (assert, uniqueSort, uid, Format, library, TimeHorizon, Log, TimezoneUtils, GanttChartConfigurationUtils) {
18
18
  "use strict";
19
19
 
20
20
  var Utility = {};
@@ -556,7 +556,7 @@ sap.ui.define([
556
556
  @deprecated Since version 1.119.
557
557
  */
558
558
  Utility.getFormattedDate = function (oFormatter, oDate) {
559
- var sLocalTimezone = TimezoneUtil.getLocalTimezone();
559
+ var sLocalTimezone = TimezoneUtils.getLocalTimezone();
560
560
  return oFormatter.format(oDate, sLocalTimezone);
561
561
  };
562
562
 
@@ -21,7 +21,7 @@ sap.ui.define(
21
21
  * @extends sap.ui.core.Element
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.123.0
24
+ * @version 1.125.0
25
25
  * @since 1.120
26
26
  * @experimental since 1.120
27
27
  *
@@ -23,7 +23,7 @@ sap.ui.define(
23
23
  * @extends sap.ui.core.Element
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.123.0
26
+ * @version 1.125.0
27
27
  * @since 1.120
28
28
  * @experimental since 1.120
29
29
  *
@@ -28,11 +28,11 @@ sap.ui.define([
28
28
  * @extend sap.gantt.shape.Shape
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.123.0
31
+ * @version 1.125.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
35
- * @deprecated Since version 1.64
35
+ * @deprecated Since version 1.64, the concept has been discarded.
36
36
  * @alias sap.gantt.shape.Circle
37
37
  */
38
38
  var Circle = Shape.extend("sap.gantt.shape.Circle", /** @lends sap.gantt.shape.Circle.prototype */ {
@@ -36,11 +36,11 @@ sap.ui.define([
36
36
  * @extend sap.gantt.shape.Shape
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.123.0
39
+ * @version 1.125.0
40
40
  *
41
41
  * @constructor
42
42
  * @public
43
- * @deprecated Since version 1.64
43
+ * @deprecated Since version 1.64, the concept has been discarded.
44
44
  * @alias sap.gantt.shape.ClipPath
45
45
  */
46
46
  var ClipPath = Shape.extend("sap.gantt.shape.ClipPath", /** @lends sap.gantt.shape.ClipPath.prototype */{
@@ -28,11 +28,11 @@ sap.ui.define([
28
28
  * @extend sap.gantt.shape.Shape
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.123.0
31
+ * @version 1.125.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
35
- * @deprecated Since version 1.64
35
+ * @deprecated Since version 1.64, the concept has been discarded.
36
36
  * @alias sap.gantt.shape.Definitions
37
37
  */
38
38
  var Definitions = Shape.extend("sap.gantt.shape.Definitions", /** @lends sap.gantt.shape.Definitions.prototype */{
@@ -21,11 +21,11 @@ sap.ui.define([
21
21
  * @extend sap.gantt.shape.Shape
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.123.0
24
+ * @version 1.125.0
25
25
  *
26
26
  * @constructor
27
27
  * @public
28
- * @deprecated Since version 1.64
28
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseGroup}.
29
29
  * @alias sap.gantt.shape.Group
30
30
  */
31
31
  var Group = Shape.extend("sap.gantt.shape.Group", /** @lends sap.gantt.shape.Group.prototype */ {
@@ -21,11 +21,11 @@ sap.ui.define([
21
21
  * @extend sap.gantt.shape.Shape
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.123.0
24
+ * @version 1.125.0
25
25
  *
26
26
  * @constructor
27
27
  * @public
28
- * @deprecated Since version 1.64
28
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseImage}.
29
29
  * @alias sap.gantt.shape.Image
30
30
  */
31
31
  var Image = Shape.extend("sap.gantt.shape.Image", /** @lends sap.gantt.shape.Image.prototype */ {
@@ -34,11 +34,11 @@ sap.ui.define([
34
34
  * @extend sap.gantt.shape.Shape
35
35
  *
36
36
  * @author SAP SE
37
- * @version 1.123.0
37
+ * @version 1.125.0
38
38
  *
39
39
  * @constructor
40
40
  * @public
41
- * @deprecated Since version 1.64
41
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseLine}.
42
42
  * @alias sap.gantt.shape.Line
43
43
  */
44
44
  var Line = Shape.extend("sap.gantt.shape.Line", /** @lends sap.gantt.shape.Line.prototype */ {
@@ -50,11 +50,11 @@ sap.ui.define([
50
50
  * @extend sap.gantt.shape.Shape
51
51
  *
52
52
  * @author SAP SE
53
- * @version 1.123.0
53
+ * @version 1.125.0
54
54
  *
55
55
  * @constructor
56
56
  * @public
57
- * @deprecated Since version 1.64
57
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BasePath}.
58
58
  * @alias sap.gantt.shape.Path
59
59
  */
60
60
  var Path = Shape.extend("sap.gantt.shape.Path", /** @lends sap.gantt.shape.Path.prototype */ {
@@ -29,11 +29,11 @@ sap.ui.define([
29
29
  * @extend sap.gantt.shape.Shape
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.123.0
32
+ * @version 1.125.0
33
33
  *
34
34
  * @constructor
35
35
  * @public
36
- * @deprecated Since version 1.64
36
+ * @deprecated Since version 1.64, the concept has been discarded.
37
37
  * @alias sap.gantt.shape.Polygon
38
38
  */
39
39
  var Polygon = Shape.extend("sap.gantt.shape.Polygon", /** @lends sap.gantt.shape.Polygon.prototype */ {
@@ -30,11 +30,11 @@ sap.ui.define([
30
30
  * @extend sap.gantt.shape.Shape
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.123.0
33
+ * @version 1.125.0
34
34
  *
35
35
  * @constructor
36
36
  * @public
37
- * @deprecated Since version 1.64
37
+ * @deprecated Since version 1.64, the concept has been discarded.
38
38
  * @alias sap.gantt.shape.Polyline
39
39
  */
40
40
  var Polyline = Shape.extend("sap.gantt.shape.Polyline", /** @lends sap.gantt.shape.Polyline.prototype */ {
@@ -36,11 +36,11 @@ sap.ui.define([
36
36
  * @extend sap.gantt.shape.Shape
37
37
  *
38
38
  * @author SAP SE
39
- * @version 1.123.0
39
+ * @version 1.125.0
40
40
  *
41
41
  * @constructor
42
42
  * @public
43
- * @deprecated Since version 1.64
43
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseChevron}.
44
44
  * @alias sap.gantt.shape.Rectangle
45
45
  */
46
46
  var Rectangle = Shape.extend("sap.gantt.shape.Rectangle", /** @lends sap.gantt.shape.Rectangle.prototype */ {
@@ -24,11 +24,11 @@ sap.ui.define([
24
24
  *
25
25
  *
26
26
  * @extends sap.gantt.shape.Path
27
- * @version 1.123.0
27
+ * @version 1.125.0
28
28
  *
29
29
  * @constructor
30
30
  * @public
31
- * @deprecated Since version 1.64
31
+ * @deprecated Since version 1.64, the concept has been discarded.
32
32
  * @alias sap.gantt.shape.ResizeShadowShape
33
33
  */
34
34
  var ResizeShadowShape = Path.extend("sap.gantt.shape.ResizeShadowShape", {
@@ -24,11 +24,11 @@ sap.ui.define([
24
24
  *
25
25
  *
26
26
  * @extends sap.gantt.shape.Path
27
- * @version 1.123.0
27
+ * @version 1.125.0
28
28
  *
29
29
  * @constructor
30
30
  * @public
31
- * @deprecated Since version 1.64
31
+ * @deprecated Since version 1.64, the concept has been discarded.
32
32
  * @alias sap.gantt.shape.SelectedShape
33
33
  */
34
34
  var SelectedShape = Path.extend("sap.gantt.shape.SelectedShape", {
@@ -62,11 +62,11 @@ sap.ui.define([
62
62
  * @abstract
63
63
  *
64
64
  * @author SAP SE
65
- * @version 1.123.0
65
+ * @version 1.125.0
66
66
  *
67
67
  * @constructor
68
68
  * @public
69
- * @deprecated Since version 1.64
69
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseShape}.
70
70
  * @alias sap.gantt.shape.Shape
71
71
  */
72
72
  var Shape = Element.extend("sap.gantt.shape.Shape", /** @lends sap.gantt.shape.Shape.prototype */ {
@@ -44,11 +44,11 @@ sap.ui.define([
44
44
  * @extend sap.gantt.shape.Shape
45
45
  *
46
46
  * @author SAP SE
47
- * @version 1.123.0
47
+ * @version 1.125.0
48
48
  *
49
49
  * @constructor
50
50
  * @public
51
- * @deprecated Since version 1.64
51
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseText}.
52
52
  * @alias sap.gantt.shape.Text
53
53
  */
54
54
  var Text = Shape.extend("sap.gantt.shape.Text", /** @lends sap.gantt.shape.Text.prototype */ {
@@ -25,11 +25,11 @@ sap.ui.define([
25
25
  * @extends sap.gantt.shape.Rectangle
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.123.0
28
+ * @version 1.125.0
29
29
  *
30
30
  * @constructor
31
31
  * @public
32
- * @deprecated Since version 1.64
32
+ * @deprecated Since version 1.64, the concept has been discarded.
33
33
  * @alias sap.gantt.shape.cal.Calendar
34
34
  */
35
35
  var Calendar = Rectangle.extend("sap.gantt.shape.cal.Calendar", /** @lends sap.gantt.shape.cal.Calendar.prototype */ {
@@ -47,11 +47,11 @@ sap.ui.define([
47
47
  * @extend sap.gantt.shape.Shape
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.123.0
50
+ * @version 1.125.0
51
51
  *
52
52
  * @constructor
53
53
  * @public
54
- * @deprecated Since version 1.64
54
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseChevron}.
55
55
  * @alias sap.gantt.shape.ext.Chevron
56
56
  */
57
57
  var Chevron = Path.extend("sap.gantt.shape.ext.Chevron", /** @lends sap.gantt.shape.ext.Chevron.prototype */ {
@@ -47,11 +47,11 @@ sap.ui.define([
47
47
  * @extend sap.gantt.shape.Shape
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.123.0
50
+ * @version 1.125.0
51
51
  *
52
52
  * @constructor
53
53
  * @public
54
- * @deprecated Since version 1.64
54
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseCursor}.
55
55
  * @alias sap.gantt.shape.ext.Cursor
56
56
  */
57
57
  var Cursor = Path.extend("sap.gantt.shape.ext.Cursor", /** @lends sap.gantt.shape.ext.Cursor.prototype */ {
@@ -44,11 +44,11 @@ sap.ui.define([
44
44
  * @extend sap.gantt.shape.Shape
45
45
  *
46
46
  * @author SAP SE
47
- * @version 1.123.0
47
+ * @version 1.125.0
48
48
  *
49
49
  * @constructor
50
50
  * @public
51
- * @deprecated Since version 1.64
51
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseDiamong}.
52
52
  * @alias sap.gantt.shape.ext.Diamond
53
53
  */
54
54
  var Diamond = Path.extend("sap.gantt.shape.ext.Diamond", /** @lends sap.gantt.shape.ext.Diamond.prototype */ {
@@ -21,11 +21,11 @@ sap.ui.define([
21
21
  * @extend sap.gantt.shape.Text
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.123.0
24
+ * @version 1.125.0
25
25
  *
26
26
  * @constructor
27
27
  * @public
28
- * @deprecated Since version 1.64
28
+ * @deprecated Since version 1.64, the concept has been discarded.
29
29
  * @alias sap.gantt.shape.ext.Iconfont
30
30
  */
31
31
  var Iconfont = Text.extend("sap.gantt.shape.ext.Iconfont", /** @lends sap.gantt.shape.ext.Iconfont.prototype */ {
@@ -43,11 +43,11 @@ sap.ui.define([
43
43
  * @extend sap.gantt.shape.Shape
44
44
  *
45
45
  * @author SAP SE
46
- * @version 1.123.0
46
+ * @version 1.125.0
47
47
  *
48
48
  * @constructor
49
49
  * @public
50
- * @deprecated Since version 1.64
50
+ * @deprecated Since version 1.64, the concept has been discarded.
51
51
  * @alias sap.gantt.shape.ext.Pentangle
52
52
  */
53
53
  var Pentangle = Polygon.extend("sap.gantt.shape.ext.Pentangle", /** @lends sap.gantt.shape.ext.Pentangle.prototype */ {
@@ -25,11 +25,11 @@ sap.ui.define([
25
25
  * @extend sap.gantt.shape.Definitions
26
26
  *
27
27
  * @author SAP SE
28
- * @version 1.123.0
28
+ * @version 1.125.0
29
29
  *
30
30
  * @constructor
31
31
  * @public
32
- * @deprecated Since version 1.64
32
+ * @deprecated Since version 1.64, the concept has been discarded.
33
33
  * @alias sap.gantt.shape.ext.TextRepeat
34
34
  */
35
35
  var TextRepeat = Definitions.extend("sap.gantt.shape.ext.TextRepeat", /** @lends sap.gantt.shape.ext.TextRepeat.prototype */{
@@ -46,11 +46,11 @@ sap.ui.define([
46
46
  * @extend sap.gantt.shape.Shape
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.123.0
49
+ * @version 1.125.0
50
50
  *
51
51
  * @constructor
52
52
  * @public
53
- * @deprecated Since version 1.64
53
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.BaseTriangle}.
54
54
  * @alias sap.gantt.shape.ext.Triangle
55
55
  */
56
56
  var Triangle = Path.extend("sap.gantt.shape.ext.Triangle", /** @lends sap.gantt.shape.ext.Triangle.prototype */ {
@@ -22,11 +22,11 @@ sap.ui.define([
22
22
  * @extend sap.gantt.shape.Shape
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.123.0
25
+ * @version 1.125.0
26
26
  *
27
27
  * @constructor
28
28
  * @public
29
- * @deprecated Since version 1.64
29
+ * @deprecated Since version 1.64, replaced by {@link sap.gantt.simple.Relationship}.
30
30
  * @alias sap.gantt.shape.ext.rls.Relationship
31
31
  */
32
32
  var Relationship = Path.extend("sap.gantt.shape.ext.rls.Relationship", /* @lends sap.gantt.shape.ext.rls.Relationship */ {
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  *
25
25
  *
26
26
  * @extends sap.gantt.shape.ext.rls.Relationship
27
- * @version 1.123.0
27
+ * @version 1.125.0
28
28
  *
29
29
  * @constructor
30
30
  * @public
@@ -52,7 +52,7 @@ sap.ui.define([
52
52
  *
53
53
  * @param {object} oData Shape data.
54
54
  * @return {number} Value of property <code>height</code>.
55
- * @deprecated Since version 1.90.0.
55
+ * @deprecated Since version 1.90.0, the concept has been discarded.
56
56
  * @protected
57
57
  */
58
58
  SelectedRelationship.prototype.getHeight = function (oData) {
@@ -65,7 +65,7 @@ sap.ui.define([
65
65
  *
66
66
  * @param {number} height the height
67
67
  * @return {this} this to allow method chaining
68
- * @deprecated Since version 1.90.0.
68
+ * @deprecated Since version 1.90.0, the concept has been discarded.
69
69
  * @protected
70
70
  */
71
71
  SelectedRelationship.prototype.setHeight = function (height) {