@sapui5/sap.gantt 1.124.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 (182) hide show
  1. package/package.json +1 -1
  2. package/src/sap/gantt/.library +11 -5
  3. package/src/sap/gantt/AdhocLine.js +1 -1
  4. package/src/sap/gantt/GanttChart.js +1 -1
  5. package/src/sap/gantt/GanttChartBase.js +4 -4
  6. package/src/sap/gantt/GanttChartContainer.js +1 -1
  7. package/src/sap/gantt/GanttChartWithTable.js +1 -1
  8. package/src/sap/gantt/axistime/AxisTimeStrategyBase.js +1 -3
  9. package/src/sap/gantt/axistime/FullScreenStrategy.js +1 -1
  10. package/src/sap/gantt/axistime/ProportionZoomStrategy.js +1 -1
  11. package/src/sap/gantt/axistime/StepwiseZoomStrategy.js +1 -1
  12. package/src/sap/gantt/changeHandlers/simple/AdhocLine.js +1 -1
  13. package/src/sap/gantt/changeHandlers/simple/DeltaLine.js +1 -1
  14. package/src/sap/gantt/changeHandlers/simple/GanttChartContainer.js +1 -1
  15. package/src/sap/gantt/changeHandlers/simple/GanttChartWithTable.js +1 -1
  16. package/src/sap/gantt/config/BirdEyeGroup.js +2 -2
  17. package/src/sap/gantt/config/ChartScheme.js +2 -2
  18. package/src/sap/gantt/config/ColumnAttribute.js +2 -2
  19. package/src/sap/gantt/config/ContainerLayout.js +2 -2
  20. package/src/sap/gantt/config/ExpandChart.js +2 -2
  21. package/src/sap/gantt/config/ExpandChartGroup.js +2 -2
  22. package/src/sap/gantt/config/GanttChartLayout.js +2 -2
  23. package/src/sap/gantt/config/Hierarchy.js +2 -2
  24. package/src/sap/gantt/config/HierarchyColumn.js +2 -2
  25. package/src/sap/gantt/config/LayoutGroup.js +3 -3
  26. package/src/sap/gantt/config/Locale.js +9 -11
  27. package/src/sap/gantt/config/Mode.js +2 -2
  28. package/src/sap/gantt/config/ModeGroup.js +2 -2
  29. package/src/sap/gantt/config/ObjectType.js +2 -2
  30. package/src/sap/gantt/config/SettingGroup.js +2 -2
  31. package/src/sap/gantt/config/SettingItem.js +1 -1
  32. package/src/sap/gantt/config/Shape.js +2 -2
  33. package/src/sap/gantt/config/TimeAxis.js +1 -1
  34. package/src/sap/gantt/config/TimeHorizon.js +1 -1
  35. package/src/sap/gantt/config/TimeZoomGroup.js +2 -2
  36. package/src/sap/gantt/config/ToolbarGroup.js +2 -2
  37. package/src/sap/gantt/config/ToolbarScheme.js +2 -2
  38. package/src/sap/gantt/control/Cell.js +2 -2
  39. package/src/sap/gantt/control/Toolbar.js +1 -1
  40. package/src/sap/gantt/def/DefBase.js +1 -1
  41. package/src/sap/gantt/def/SvgDefs.js +1 -1
  42. package/src/sap/gantt/def/cal/Calendar.js +1 -1
  43. package/src/sap/gantt/def/cal/CalendarDefs.js +1 -1
  44. package/src/sap/gantt/def/cal/TimeInterval.js +1 -1
  45. package/src/sap/gantt/def/filter/MorphologyFilter.js +1 -1
  46. package/src/sap/gantt/def/gradient/LinearGradient.js +1 -1
  47. package/src/sap/gantt/def/gradient/RadialGradient.js +1 -1
  48. package/src/sap/gantt/def/gradient/Stop.js +1 -1
  49. package/src/sap/gantt/def/pattern/BackSlashPattern.js +1 -1
  50. package/src/sap/gantt/def/pattern/PatternBase.js +1 -1
  51. package/src/sap/gantt/def/pattern/SlashPattern.js +1 -1
  52. package/src/sap/gantt/drawer/Drawer.js +1 -1
  53. package/src/sap/gantt/eventHandler/AutoScrollHandler.js +1 -1
  54. package/src/sap/gantt/eventHandler/BirdEyeHandler.js +1 -1
  55. package/src/sap/gantt/eventHandler/MouseWheelHandler.js +1 -1
  56. package/src/sap/gantt/eventHandler/ShapeHoverHandler.js +1 -1
  57. package/src/sap/gantt/eventHandler/ShapeResizeHandler.js +1 -1
  58. package/src/sap/gantt/eventHandler/TimePeriodZoomHandler.js +1 -1
  59. package/src/sap/gantt/eventHandler/TimePopoverHandler.js +1 -1
  60. package/src/sap/gantt/flexibility/simple/GanttTableColumn.flexibility.js +1 -4
  61. package/src/sap/gantt/layouts/SidePanel.js +197 -0
  62. package/src/sap/gantt/layouts/SidePanelRenderer.js +28 -0
  63. package/src/sap/gantt/legend/DimensionLegend.js +2 -2
  64. package/src/sap/gantt/legend/LegendBase.js +2 -2
  65. package/src/sap/gantt/legend/LegendContainer.js +2 -2
  66. package/src/sap/gantt/legend/ListLegend.js +3 -3
  67. package/src/sap/gantt/library.js +4 -4
  68. package/src/sap/gantt/misc/AxisTime.js +4 -4
  69. package/src/sap/gantt/misc/Memoizer.js +1 -1
  70. package/src/sap/gantt/misc/RelativeTimeFormatter.js +1 -1
  71. package/src/sap/gantt/misc/ShapeManager.js +1 -1
  72. package/src/sap/gantt/misc/Utility.js +3 -3
  73. package/src/sap/gantt/overlays/GanttRowOverlay.js +1 -1
  74. package/src/sap/gantt/overlays/Overlay.js +1 -1
  75. package/src/sap/gantt/shape/Circle.js +2 -2
  76. package/src/sap/gantt/shape/ClipPath.js +2 -2
  77. package/src/sap/gantt/shape/Definitions.js +2 -2
  78. package/src/sap/gantt/shape/Group.js +2 -2
  79. package/src/sap/gantt/shape/Image.js +2 -2
  80. package/src/sap/gantt/shape/Line.js +2 -2
  81. package/src/sap/gantt/shape/Path.js +2 -2
  82. package/src/sap/gantt/shape/Polygon.js +2 -2
  83. package/src/sap/gantt/shape/Polyline.js +2 -2
  84. package/src/sap/gantt/shape/Rectangle.js +2 -2
  85. package/src/sap/gantt/shape/ResizeShadowShape.js +2 -2
  86. package/src/sap/gantt/shape/SelectedShape.js +2 -2
  87. package/src/sap/gantt/shape/Shape.js +2 -2
  88. package/src/sap/gantt/shape/Text.js +2 -2
  89. package/src/sap/gantt/shape/cal/Calendar.js +2 -2
  90. package/src/sap/gantt/shape/ext/Chevron.js +2 -2
  91. package/src/sap/gantt/shape/ext/Cursor.js +2 -2
  92. package/src/sap/gantt/shape/ext/Diamond.js +2 -2
  93. package/src/sap/gantt/shape/ext/Iconfont.js +2 -2
  94. package/src/sap/gantt/shape/ext/Pentangle.js +2 -2
  95. package/src/sap/gantt/shape/ext/TextRepeat.js +2 -2
  96. package/src/sap/gantt/shape/ext/Triangle.js +2 -2
  97. package/src/sap/gantt/shape/ext/rls/Relationship.js +2 -2
  98. package/src/sap/gantt/shape/ext/rls/SelectedRelationship.js +3 -3
  99. package/src/sap/gantt/shape/ext/ubc/UbcBorderPath.js +2 -2
  100. package/src/sap/gantt/shape/ext/ubc/UbcOverCapacityZonePolygon.js +2 -2
  101. package/src/sap/gantt/shape/ext/ubc/UbcPolygon.js +2 -2
  102. package/src/sap/gantt/shape/ext/ubc/UbcShortageCapacityPolygon.js +2 -2
  103. package/src/sap/gantt/shape/ext/ubc/UbcTooltipRectangle.js +2 -2
  104. package/src/sap/gantt/shape/ext/ubc/UbcUnderCapacityZonePolygon.js +2 -2
  105. package/src/sap/gantt/shape/ext/ubc/UbcUsedPolygon.js +2 -2
  106. package/src/sap/gantt/shape/ext/ubc/UtilizationBarChart.js +2 -2
  107. package/src/sap/gantt/shape/ext/ulc/UlcBorderPath.js +2 -2
  108. package/src/sap/gantt/shape/ext/ulc/UlcClipPath.js +2 -2
  109. package/src/sap/gantt/shape/ext/ulc/UlcClipingPath.js +2 -2
  110. package/src/sap/gantt/shape/ext/ulc/UlcDimension.js +2 -2
  111. package/src/sap/gantt/shape/ext/ulc/UlcMiddleLine.js +2 -2
  112. package/src/sap/gantt/shape/ext/ulc/UlcOverCapacityZoneRectangle.js +2 -2
  113. package/src/sap/gantt/shape/ext/ulc/UlcOverClipRectangle.js +2 -2
  114. package/src/sap/gantt/shape/ext/ulc/UlcRectangle.js +2 -2
  115. package/src/sap/gantt/shape/ext/ulc/UlcTooltipRectangle.js +2 -2
  116. package/src/sap/gantt/shape/ext/ulc/UlcUnderClipRectangle.js +2 -2
  117. package/src/sap/gantt/shape/ext/ulc/UtilizationLineChart.js +2 -2
  118. package/src/sap/gantt/simple/AdhocDiamond.js +1 -1
  119. package/src/sap/gantt/simple/AdhocLine.js +1 -1
  120. package/src/sap/gantt/simple/BaseCalendar.js +1 -1
  121. package/src/sap/gantt/simple/BaseChevron.js +1 -1
  122. package/src/sap/gantt/simple/BaseConditionalShape.js +1 -1
  123. package/src/sap/gantt/simple/BaseCursor.js +1 -1
  124. package/src/sap/gantt/simple/BaseDeltaRectangle.js +1 -1
  125. package/src/sap/gantt/simple/BaseDiamond.js +1 -1
  126. package/src/sap/gantt/simple/BaseGroup.js +1 -1
  127. package/src/sap/gantt/simple/BaseImage.js +1 -1
  128. package/src/sap/gantt/simple/BaseLine.js +1 -1
  129. package/src/sap/gantt/simple/BasePath.js +1 -1
  130. package/src/sap/gantt/simple/BasePseudoShape.js +1 -1
  131. package/src/sap/gantt/simple/BaseRectangle.js +1 -1
  132. package/src/sap/gantt/simple/BaseShape.js +1 -1
  133. package/src/sap/gantt/simple/BaseText.js +1 -1
  134. package/src/sap/gantt/simple/BaseTriangle.js +1 -1
  135. package/src/sap/gantt/simple/ContainerToolbar.js +1 -1
  136. package/src/sap/gantt/simple/ContainerToolbarPlaceholder.js +1 -1
  137. package/src/sap/gantt/simple/CoordinateUtils.js +1 -1
  138. package/src/sap/gantt/simple/CustomVariantHandler.js +1 -1
  139. package/src/sap/gantt/simple/DeltaLine.js +1 -1
  140. package/src/sap/gantt/simple/ExpandModel.js +1 -1
  141. package/src/sap/gantt/simple/GanttAdaptationData.js +1 -1
  142. package/src/sap/gantt/simple/GanttChartContainer.js +31 -2
  143. package/src/sap/gantt/simple/GanttChartContainerRenderer.js +29 -12
  144. package/src/sap/gantt/simple/GanttChartWithTable.js +19 -3
  145. package/src/sap/gantt/simple/GanttDragDropExtension.js +1 -1
  146. package/src/sap/gantt/simple/GanttExtension.js +1 -1
  147. package/src/sap/gantt/simple/GanttHeader.js +2 -2
  148. package/src/sap/gantt/simple/GanttPointerExtension.js +1 -3
  149. package/src/sap/gantt/simple/GanttPopoverExtension.js +1 -1
  150. package/src/sap/gantt/simple/GanttPrinting.js +53 -17
  151. package/src/sap/gantt/simple/GanttRowAction.js +1 -1
  152. package/src/sap/gantt/simple/GanttRowSettings.js +1 -1
  153. package/src/sap/gantt/simple/GanttUtils.js +12 -4
  154. package/src/sap/gantt/simple/InnerGanttChart.js +4 -1
  155. package/src/sap/gantt/simple/LegendContainer.js +1 -1
  156. package/src/sap/gantt/simple/LegendShapeGroup.js +1 -1
  157. package/src/sap/gantt/simple/MultiActivityGroup.js +1 -1
  158. package/src/sap/gantt/simple/MultiActivityRowSettings.js +1 -1
  159. package/src/sap/gantt/simple/Relationship.js +1 -1
  160. package/src/sap/gantt/simple/RenderUtils.js +2 -2
  161. package/src/sap/gantt/simple/SelectionModel.js +14 -10
  162. package/src/sap/gantt/simple/ShapeScheme.js +1 -1
  163. package/src/sap/gantt/simple/StockChart.js +1 -1
  164. package/src/sap/gantt/simple/StockChartDimension.js +1 -1
  165. package/src/sap/gantt/simple/StockChartPeriod.js +1 -1
  166. package/src/sap/gantt/simple/UtilizationBarChart.js +1 -1
  167. package/src/sap/gantt/simple/UtilizationChart.js +1 -1
  168. package/src/sap/gantt/simple/UtilizationDimension.js +1 -1
  169. package/src/sap/gantt/simple/UtilizationLineChart.js +1 -1
  170. package/src/sap/gantt/simple/UtilizationPeriod.js +1 -1
  171. package/src/sap/gantt/simple/shapes/Shape.js +5 -23
  172. package/src/sap/gantt/simple/shapes/Task.js +1 -1
  173. package/src/sap/gantt/themes/base/Gantt.less +9 -5
  174. package/src/sap/gantt/themes/sap_belize/library.source.less +10 -1
  175. package/src/sap/gantt/themes/sap_belize_base/Gantt.less +895 -0
  176. package/src/sap/gantt/themes/sap_belize_base/GanttPrinting.less +101 -0
  177. package/src/sap/gantt/themes/sap_belize_base/GanttSyncedControl.less +96 -0
  178. package/src/sap/gantt/themes/sap_belize_base/library.source.less +13 -0
  179. package/src/sap/gantt/themes/sap_belize_hcb/library.source.less +10 -1
  180. package/src/sap/gantt/themes/sap_belize_hcw/library.source.less +10 -1
  181. package/src/sap/gantt/themes/sap_bluecrystal_base/Gantt.less +9 -5
  182. package/src/sap/gantt/utils/GanttChartConfigurationUtils.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.gantt",
3
- "version": "1.124.0",
3
+ "version": "1.125.0",
4
4
  "description": "SAPUI5 Library sap.gantt",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -7,7 +7,7 @@
7
7
 
8
8
  (c) Copyright 2009-2015 SAP SE. All rights reserved
9
9
  </copyright>
10
- <version>1.124.0</version>
10
+ <version>1.125.0</version>
11
11
 
12
12
  <documentation>UI5 library: sap.gantt</documentation>
13
13
 
@@ -56,11 +56,17 @@
56
56
  </ownership>
57
57
 
58
58
  <thirdparty xmlns="http://www.sap.com/ui5/buildext/thirdparty" >
59
- <lib name="jspdf" displayName="jsPDF" homepage="https://github.com/MrRio/jsPDF">
60
- <license url="https://github.com/MrRio/jsPDF/blob/master/MIT-LICENSE.txt" type="MIT License" file="./licenses/jspdf-MIT-LICENSE.txt" />
59
+ <lib name="jspdf" displayName="jsPDF" version="2.5.1" homepage="https://github.com/MrRio/jsPDF" id="73555000106100100357">
60
+ <license url="https://github.com/MrRio/jsPDF/blob/master/MIT-LICENSE.txt" type="MIT" file="./licenses/jspdf-MIT-LICENSE.txt" />
61
+ <pattern>sap/gantt/thirdparty/jspdf.js</pattern>
61
62
  </lib>
62
- <lib name="html2canvas" displayName="html2canvas" homepage="http://html2canvas.hertzen.com/">
63
- <license url="https://github.com/niklasvh/html2canvas/blob/master/LICENSE" type="MIT License" file="./licenses/html2canvas-MIT-LICENSE.txt" />
63
+ <lib name="svg2pdf" displayName="svg2pdf.js" version="1.5.0" homepage="https://github.com/yWorks/svg2pdf.js/" id="73554900106100161927">
64
+ <license url="https://github.com/yWorks/svg2pdf.js/blob/master/LICENSE" type="MIT" file="./licenses/svg2pdf-MIT-LICENSE.txt" />
65
+ <pattern>sap/gantt/thirdparty/svg2pdf.js</pattern>
66
+ </lib>
67
+ <lib name="html2canvas" displayName="html2canvas" version="1.0.0-alpha.12" homepage="http://html2canvas.hertzen.com/" id="73554900106100018539">
68
+ <license url="https://github.com/niklasvh/html2canvas/blob/master/LICENSE" type="MIT" file="./licenses/html2canvas-MIT-LICENSE.txt" />
69
+ <pattern>sap/gantt/thirdparty/html2canvas.js</pattern>
64
70
  </lib>
65
71
  </thirdparty>
66
72
  </appData>
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * @extends sap.ui.core.Element
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.124.0
26
+ * @version 1.125.0
27
27
  *
28
28
  * @constructor
29
29
  * @public
@@ -87,7 +87,7 @@ function (
87
87
  * @extends sap.gantt.GanttChartBase
88
88
  *
89
89
  * @author SAP SE
90
- * @version 1.124.0
90
+ * @version 1.125.0
91
91
  *
92
92
  * @constructor
93
93
  * @public
@@ -63,11 +63,11 @@ sap.ui.define([
63
63
  * @abstract
64
64
  *
65
65
  * @author SAP SE
66
- * @version 1.124.0
66
+ * @version 1.125.0
67
67
  *
68
68
  * @constructor
69
69
  * @public
70
- * @deprecated Since version 1.64
70
+ * @deprecated Since version 1.64, the concept has been discarded.
71
71
  * @alias sap.gantt.GanttChartBase
72
72
  */
73
73
  var GanttChartBase = Control.extend("sap.gantt.GanttChartBase", /** @lends sap.gantt.GanttChartBase.prototype */ {
@@ -441,7 +441,7 @@ sap.ui.define([
441
441
  * Horizontal (time axis) scroll.
442
442
  *
443
443
  * If the horizontal scroll bar exists and synchronization is needed with other Gantt charts in the container, use this event.
444
- * @deprecated As of version 1.44
444
+ * @deprecated As of version 1.44, the concept has been discarded.
445
445
  */
446
446
  horizontalScroll: {
447
447
  parameters: {
@@ -464,7 +464,7 @@ sap.ui.define([
464
464
  * Vertical (row axis) scroll.
465
465
  *
466
466
  * If the vertical scroll bar exists and synchronization is needed with other Gantt charts in the container, use this event.
467
- * @deprecated As of version 1.44
467
+ * @deprecated As of version 1.44, the concept has been discarded.
468
468
  */
469
469
  verticalScroll: {
470
470
  parameters: {
@@ -62,7 +62,7 @@ function (
62
62
  * @extend sap.ui.core.Control
63
63
  *
64
64
  * @author SAP SE
65
- * @version 1.124.0
65
+ * @version 1.125.0
66
66
  *
67
67
  * @constructor
68
68
  * @public
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * @extends sap.gantt.GanttChartBase
60
60
  *
61
61
  * @author SAP SE
62
- * @version 1.124.0
62
+ * @version 1.125.0
63
63
  *
64
64
  * @constructor
65
65
  * @public
@@ -18,7 +18,6 @@ sap.ui.define([
18
18
  "../config/TimeHorizon",
19
19
  "../misc/AxisTime",
20
20
  "sap/ui/core/date/CalendarUtils",
21
- "sap/ui/core/Configuration",
22
21
  "sap/base/i18n/Localization",
23
22
  "sap/base/i18n/Formatting",
24
23
  "sap/gantt/utils/GanttChartConfigurationUtils",
@@ -37,7 +36,6 @@ sap.ui.define([
37
36
  TimeHorizon,
38
37
  AxisTime,
39
38
  CalendarUtils,
40
- Configuration,
41
39
  Localization,
42
40
  Formatting,
43
41
  GanttChartConfigurationUtils
@@ -76,7 +74,7 @@ sap.ui.define([
76
74
  * @abstract
77
75
  *
78
76
  * @author SAP SE
79
- * @version 1.124.0
77
+ * @version 1.125.0
80
78
  *
81
79
  * @constructor
82
80
  * @public
@@ -46,7 +46,7 @@ sap.ui.define([
46
46
  * @extends sap.gantt.axistime.AxisTimeStrategyBase
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.124.0
49
+ * @version 1.125.0
50
50
  *
51
51
  * @constructor
52
52
  * @public
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * @extends sap.gantt.axistime.AxisTimeStrategyBase
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.124.0
40
+ * @version 1.125.0
41
41
  *
42
42
  * @constructor
43
43
  * @public
@@ -23,7 +23,7 @@ sap.ui.define([
23
23
  * The class allows you to define a zoom strategy whose time line options are stepwise, i.e. the width of each time line option
24
24
  * is pre-defined and won't be changed during zooming.
25
25
  * @extends sap.gantt.axistime.AxisTimeStrategyBase
26
- * @version 1.124.0
26
+ * @version 1.125.0
27
27
  *
28
28
  * @constructor
29
29
  * @public
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  *
20
20
  * @author SAP SE
21
21
  *
22
- * @version 1.124.0
22
+ * @version 1.125.0
23
23
  *
24
24
  * @since 1.90
25
25
  */
@@ -19,7 +19,7 @@ sap.ui.define([
19
19
  *
20
20
  * @author SAP SE
21
21
  *
22
- * @version 1.124.0
22
+ * @version 1.125.0
23
23
  *
24
24
  * @since 1.90
25
25
  */
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  *
35
35
  * @author SAP SE
36
36
  *
37
- * @version 1.124.0
37
+ * @version 1.125.0
38
38
  *
39
39
  * @since 1.90
40
40
  */
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  *
36
36
  * @author SAP SE
37
37
  *
38
- * @version 1.124.0
38
+ * @version 1.125.0
39
39
  *
40
40
  * @since 1.90
41
41
  */
@@ -21,11 +21,11 @@ sap.ui.define([
21
21
  * @extends sap.gantt.config.ToolbarGroup
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.124.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.config.BirdEyeGroup
30
30
  */
31
31
  var BirdEyeGroup = ToolbarGroup.extend("sap.gantt.config.BirdEyeGroup", {
@@ -23,11 +23,11 @@ sap.ui.define([
23
23
  * @extends sap.ui.core.Element
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.124.0
26
+ * @version 1.125.0
27
27
  *
28
28
  * @constructor
29
29
  * @public
30
- * @deprecated Since version 1.64
30
+ * @deprecated Since version 1.64, the concept has been discarded.
31
31
  * @alias sap.gantt.config.ChartScheme
32
32
  */
33
33
  var ChartScheme = Element.extend("sap.gantt.config.ChartScheme", /** @lends sap.gantt.config.ChartScheme.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.ColumnAttribute
29
29
  */
30
30
  var ColumnAttribute = Element.extend("sap.gantt.config.ColumnAttribute", /** @lends sap.gantt.config.ColumnAttribute.prototype */ {
@@ -22,11 +22,11 @@ sap.ui.define([
22
22
  * @extends sap.ui.core.Element
23
23
  *
24
24
  * @author SAP SE
25
- * @version 1.124.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, the concept has been discarded.
30
30
  * @alias sap.gantt.config.ContainerLayout
31
31
  */
32
32
  var ContainerLayout = Element.extend("sap.gantt.config.ContainerLayout", /** @lends sap.gantt.config.ContainerLayout.prototype */ {
@@ -19,11 +19,11 @@ sap.ui.define([
19
19
  * @extends sap.ui.core.Element
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.124.0
22
+ * @version 1.125.0
23
23
  *
24
24
  * @constructor
25
25
  * @public
26
- * @deprecated Since version 1.64
26
+ * @deprecated Since version 1.64, the concept has been discarded.
27
27
  * @alias sap.gantt.config.ExpandChart
28
28
  */
29
29
  var ExpandChart = Element.extend("sap.gantt.config.ExpandChart", /** @lends sap.gantt.config.ExpandChart.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.gantt.config.ToolbarGroup
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.ExpandChartGroup
29
29
  */
30
30
  var ExpandChartGroup = ToolbarGroup.extend("sap.gantt.config.ExpandChartGroup", /** @lends sap.gantt.config.ExpandCharGroup.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.GanttChartLayout
29
29
  */
30
30
  var GanttChartLayout = Element.extend("sap.gantt.config.GanttChartLayout", /** @lends sap.gantt.config.GanttChartLayout.prototype */ {
@@ -19,11 +19,11 @@ sap.ui.define([
19
19
  * @extends sap.ui.core.Element
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.124.0
22
+ * @version 1.125.0
23
23
  *
24
24
  * @constructor
25
25
  * @public
26
- * @deprecated Since version 1.64
26
+ * @deprecated Since version 1.64, the concept has been discarded.
27
27
  * @alias sap.gantt.config.Hierarchy
28
28
  */
29
29
  var Hierarchy = Element.extend("sap.gantt.config.Hierarchy", /** @lends sap.gantt.config.Hierarchy.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.HierarchyColumn
29
29
  */
30
30
  var HierarchyColumn = Element.extend("sap.gantt.config.HierarchyColumn", /** @lends sap.gantt.config.HierarchyColumn.prototype */ {
@@ -19,11 +19,11 @@ sap.ui.define([
19
19
  * @extends sap.gantt.config.ToolbarGroup
20
20
  *
21
21
  * @author SAP SE
22
- * @version 1.124.0
22
+ * @version 1.125.0
23
23
  *
24
24
  * @constructor
25
25
  * @public
26
- * @deprecated Since version 1.64
26
+ * @deprecated Since version 1.64, the concept has been discarded.
27
27
  * @alias sap.gantt.config.LayoutGroup
28
28
  */
29
29
  var LayoutGroup = ToolbarGroup.extend("sap.gantt.config.LayoutGroup", /** @lends sap.gantt.config.LayoutGroup.prototype */ {
@@ -36,7 +36,7 @@ sap.ui.define([
36
36
  * true stands for {@link sap.m.ButtonType.Emphasized}
37
37
  * false stands for {@link sap.m.ButtonType.Default}
38
38
  *
39
- * @deprecated Since version 1.50
39
+ * @deprecated Since version 1.50, the concept has been discarded.
40
40
  */
41
41
  enableRichStyle: {type: "boolean", defaultValue: true}
42
42
  }
@@ -6,10 +6,8 @@
6
6
  */
7
7
  sap.ui.define([
8
8
  'sap/ui/core/Element',
9
- "sap/ui/core/Configuration",
10
- "sap/gantt/misc/Format",
11
- "sap/ui/core/format/TimezoneUtil"
12
- ], function (Element, Configuration, Format, TimezoneUtil) {
9
+ "sap/gantt/utils/GanttChartConfigurationUtils"
10
+ ], function (Element, GanttChartConfigurationUtils) {
13
11
  "use strict";
14
12
  /**
15
13
  * Creates and initializes a new Locale
@@ -22,7 +20,7 @@ sap.ui.define([
22
20
  * @extends sap.ui.core.Element
23
21
  *
24
22
  * @author SAP SE
25
- * @version 1.124.0
23
+ * @version 1.125.0
26
24
  *
27
25
  * @constructor
28
26
  * @public
@@ -34,26 +32,26 @@ sap.ui.define([
34
32
  properties: {
35
33
 
36
34
  /**
37
- * Custom timezone for Gantt. The configured time zone is considered as the default time zone for the locale, see {@link sap.ui.core.Configuration#getTimezone}
35
+ * Custom timezone for Gantt. The localization time zone is considered as the default time zone for the locale, see {@link sap.base.i18n.Localization#getTimezone}
38
36
  */
39
37
  timeZone: {type: "string"},
40
38
 
41
39
  /**
42
40
  * Gap value to the UTC time in the format hhmmss
43
- * @deprecated Since version 1.119
41
+ * @deprecated Since version 1.119, the concept has been discarded.
44
42
  */
45
43
  utcdiff: {type: "string", defaultValue: "000000"},
46
44
 
47
45
  /**
48
46
  * Sign of the gap to the UTC time. Two valid values: "+" or "-".
49
- * @deprecated Since version 1.119
47
+ * @deprecated Since version 1.119, the concept has been discarded.
50
48
  */
51
49
  utcsign: {type: "string", defaultValue: "+"},
52
50
 
53
51
  /**
54
52
  * Day-light saving time periods. Array of {@link sap.gantt.config.TimeHorizon}
55
53
  * other locale info like langu, dateFormat, timeFormat and numberFormat, please use UI5 standard configuration object.
56
- * @deprecated Since version 1.119
54
+ * @deprecated Since version 1.119, the concept has been discarded.
57
55
  */
58
56
  dstHorizons: {type: "object[]", defaultValue: []} // dst: day-light saving
59
57
  },
@@ -63,12 +61,12 @@ sap.ui.define([
63
61
 
64
62
  /**
65
63
  * @returns {string} Returns the specified time zone
66
- * The configured time zone is considered as the default time zone for the locale, see {@link sap.ui.core.Configuration#getTimezone}..
64
+ * The localization time zone is considered as the default time zone for the locale, see {@link sap.base.i18n.Localization#getTimezone}..
67
65
  */
68
66
  Locale.prototype.getTimeZone = function () {
69
67
  var sTimeZone = this.getProperty("timeZone");
70
68
 
71
- return sTimeZone || Configuration.getTimezone();
69
+ return sTimeZone || GanttChartConfigurationUtils.getTimezone();
72
70
  };
73
71
 
74
72
  /**
@@ -21,11 +21,11 @@ sap.ui.define([
21
21
  * @extends sap.ui.core.Element
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.124.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.config.Mode
30
30
  */
31
31
  var Mode = Element.extend("sap.gantt.config.Mode", /** @lends sap.gantt.config.Mode.prototype */ {
@@ -21,11 +21,11 @@ sap.ui.define([
21
21
  * @extends sap.gantt.config.ToolbarGroup
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.124.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.config.ModeGroup
30
30
  */
31
31
  var ModeGroup = ToolbarGroup.extend("sap.gantt.config.ModeGroup", /** @lends sap.gantt.config.ModeGroup.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.ObjectType
29
29
  */
30
30
  var ObjectType = Element.extend("sap.gantt.config.ObjectType", /** @lends sap.gantt.config.ObjectType.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.gantt.config.ToolbarGroup
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.SettingGroup
29
29
  */
30
30
  var SettingGroup = ToolbarGroup.extend("sap.gantt.config.SettingGroup", /** @lends sap.gantt.config.SettingGroup.prototype */ {
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -32,11 +32,11 @@ sap.ui.define([
32
32
  * @extends sap.ui.core.Element
33
33
  *
34
34
  * @author SAP SE
35
- * @version 1.124.0
35
+ * @version 1.125.0
36
36
  *
37
37
  * @constructor
38
38
  * @public
39
- * @deprecated Since version 1.64
39
+ * @deprecated Since version 1.64, the concept has been discarded.
40
40
  * @alias sap.gantt.config.Shape
41
41
  */
42
42
  var Shape = Element.extend("sap.gantt.config.Shape", /** @lends sap.gantt.config.Shape.prototype */ {
@@ -20,7 +20,7 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @extends sap.ui.core.Element
22
22
  *
23
23
  * @author SAP SE
24
- * @version 1.124.0
24
+ * @version 1.125.0
25
25
  *
26
26
  * @constructor
27
27
  * @public
@@ -23,11 +23,11 @@ sap.ui.define([
23
23
  * @extends sap.gantt.config.ToolbarGroup
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.124.0
26
+ * @version 1.125.0
27
27
  *
28
28
  * @constructor
29
29
  * @public
30
- * @deprecated Since version 1.64
30
+ * @deprecated Since version 1.64, the concept has been discarded.
31
31
  * @alias sap.gantt.config.TimeZoomGroup
32
32
  */
33
33
  var TimeZoomGroup = ToolbarGroup.extend("sap.gantt.config.TimeZoomGroup", /** @lends sap.gantt.config.LayoutGroup.prototype */ {
@@ -23,11 +23,11 @@ sap.ui.define([
23
23
  * @extends sap.ui.core.Element
24
24
  *
25
25
  * @author SAP SE
26
- * @version 1.124.0
26
+ * @version 1.125.0
27
27
  *
28
28
  * @constructor
29
29
  * @public
30
- * @deprecated Since version 1.64
30
+ * @deprecated Since version 1.64, the concept has been discarded.
31
31
  * @alias sap.gantt.config.ToolbarGroup
32
32
  */
33
33
  var ToolbarGroup = Element.extend("sap.gantt.config.ToolbarGroup", /** @lends sap.gantt.config.ToolbarGroup.prototype */ {
@@ -20,11 +20,11 @@ sap.ui.define([
20
20
  * @extends sap.ui.core.Element
21
21
  *
22
22
  * @author SAP SE
23
- * @version 1.124.0
23
+ * @version 1.125.0
24
24
  *
25
25
  * @constructor
26
26
  * @public
27
- * @deprecated Since version 1.64
27
+ * @deprecated Since version 1.64, the concept has been discarded.
28
28
  * @alias sap.gantt.config.ToolbarScheme
29
29
  */
30
30
  var ToolbarScheme = Element.extend("sap.gantt.config.ToolbarScheme", /** @lends sap.gantt.config.ToolbarScheme.prototype */ {
@@ -24,11 +24,11 @@ sap.ui.define([
24
24
  * @extends sap.ui.core.Control
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.124.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.control.Cell
33
33
  */
34
34
  var Cell = Control.extend("sap.gantt.control.Cell",/** @lends sap.gantt.control.Cell.prototype */ {
@@ -66,7 +66,7 @@ sap.ui.define([
66
66
 
67
67
  /**
68
68
  * Creates and initializes a new Toolbar.
69
- * @deprecated Since version 1.64
69
+ * @deprecated Since version 1.64, the concept has been discarded.
70
70
  * @private
71
71
  */
72
72
  var Toolbar = Control.extend("sap.gantt.control.Toolbar", {
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * @abstract
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.124.0
31
+ * @version 1.125.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @extends sap.ui.base.ManagedObject
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.124.0
32
+ * @version 1.125.0
33
33
  *
34
34
  * @constructor
35
35
  * @public
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * @extends sap.gantt.def.DefBase
28
28
  *
29
29
  * @author SAP SE
30
- * @version 1.124.0
30
+ * @version 1.125.0
31
31
  *
32
32
  * @constructor
33
33
  * @public
@@ -29,7 +29,7 @@ sap.ui.define([
29
29
  * @extends sap.gantt.def.SvgDefs
30
30
  *
31
31
  * @author SAP SE
32
- * @version 1.124.0
32
+ * @version 1.125.0
33
33
  *
34
34
  * @constructor
35
35
  * @public