@sapui5/sap.chart 1.112.2 → 1.114.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.chart",
3
- "version": "1.112.2",
3
+ "version": "1.114.0",
4
4
  "description": "SAPUI5 Library sap.chart",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -5,7 +5,7 @@
5
5
  <vendor>SAP SE</vendor>
6
6
  <copyright>SAPUI5
7
7
  * (c) Copyright 2009-2023 SAP SE. All rights reserved.</copyright>
8
- <version>1.112.2</version>
8
+ <version>1.114.0</version>
9
9
 
10
10
  <documentation>Smart viz control based on Vizframe</documentation>
11
11
 
@@ -63,9 +63,21 @@ sap.ui.define([
63
63
  TimeDimension.prototype.setTimeUnit = ChartUtils.makeNotifyParentProperty("timeUnit");
64
64
  TimeDimension.prototype.setFiscalYearPeriodCount = ChartUtils.makeNotifyParentProperty("fiscalYearPeriodCount");
65
65
  TimeDimension.prototype.setProjectedValueStartTime = ChartUtils.makeNotifyParentProperty("projectedValueStartTime");
66
+ /**
67
+ * Set a new UTC value for the time dimension
68
+ *
69
+ * @private
70
+ * @param {boolean} bUTC set the time dimension data to be parsed with UTC option true/false
71
+ */
66
72
  TimeDimension.prototype._setIsUTC = function(bUTC) {
67
73
  this._bUTC = bUTC;
68
74
  };
75
+ /**
76
+ * get the time dimension data UTC value
77
+ *
78
+ * @private
79
+ * @return {boolean} true if the time dimension data shoud be parsed with UTC option, otherwise return false
80
+ */
69
81
  TimeDimension.prototype._getIsUTC = function() {
70
82
  return this._bUTC;
71
83
  };
@@ -61,7 +61,7 @@ sap.ui.define([
61
61
  "sap.chart.data.Measure"
62
62
  ],
63
63
  noLibraryCSS: true,
64
- version: "1.112.2"
64
+ version: "1.114.0"
65
65
  });
66
66
 
67
67
  /**