@sapui5/sap.ui.vbm 1.108.0 → 1.109.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 +1 -1
- package/src/sap/ui/vbm/.library +1 -1
- package/src/sap/ui/vbm/Adapter.js +1 -1
- package/src/sap/ui/vbm/Adapter3D.js +1 -1
- package/src/sap/ui/vbm/ClusterRenderer.js +4 -4
- package/src/sap/ui/vbm/GeoMap.js +3 -3
- package/src/sap/ui/vbm/GeoMapRenderer.js +1 -1
- package/src/sap/ui/vbm/PieItem.js +1 -1
- package/src/sap/ui/vbm/VBI.js +1 -1
- package/src/sap/ui/vbm/Viewport.js +1 -1
- package/src/sap/ui/vbm/adapter3d/DragDropHandler.js +1 -1
- package/src/sap/ui/vbm/adapter3d/ModelHandler.js +1 -1
- package/src/sap/ui/vbm/adapter3d/ObjectFactory.js +1 -1
- package/src/sap/ui/vbm/adapter3d/PolygonHandler.js +1 -1
- package/src/sap/ui/vbm/adapter3d/SceneBuilder.js +1 -1
- package/src/sap/ui/vbm/adapter3d/VBIJSONParser.js +1 -1
- package/src/sap/ui/vbm/lib/sapscene.js +3 -1
- package/src/sap/ui/vbm/library.js +2 -2
package/package.json
CHANGED
package/src/sap/ui/vbm/.library
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<name>sap.ui.vbm</name>
|
|
4
4
|
<vendor>SAP SE</vendor>
|
|
5
5
|
<copyright>SAP UI development toolkit for HTML5 (SAPUI5) (c) Copyright 2009-2012 SAP AG. All rights reserved</copyright>
|
|
6
|
-
<version>1.
|
|
6
|
+
<version>1.109.0</version>
|
|
7
7
|
|
|
8
8
|
<documentation>SAP UI library: sap.ui.vbm</documentation>
|
|
9
9
|
|
|
@@ -22,7 +22,7 @@ sap.ui.define([
|
|
|
22
22
|
* @param {string} [sId] id for the new control, generated automatically if no id is given
|
|
23
23
|
* @param {object} [mSettings] initial settings for the new object
|
|
24
24
|
* @author SAP SE
|
|
25
|
-
* @version 1.
|
|
25
|
+
* @version 1.109.0
|
|
26
26
|
* @extends sap.ui.core.Element
|
|
27
27
|
* @constructor
|
|
28
28
|
* @public
|
|
@@ -45,7 +45,7 @@ sap.ui.define([
|
|
|
45
45
|
* @param {string} [sId] id for the new control, generated automatically if no id is given
|
|
46
46
|
* @param {object} [mSettings] initial settings for the new object
|
|
47
47
|
* @author SAP SE
|
|
48
|
-
* @version 1.
|
|
48
|
+
* @version 1.109.0
|
|
49
49
|
* @extends sap.ui.core.Element
|
|
50
50
|
* @constructor
|
|
51
51
|
* @public
|
|
@@ -86,7 +86,7 @@ sap.ui.define([
|
|
|
86
86
|
var ariaRoleDescription = sap.ui.core.AccessibleRole.Description;
|
|
87
87
|
|
|
88
88
|
oRm.openStart("div", Id1);
|
|
89
|
-
oRm.
|
|
89
|
+
oRm.class(classOuter);
|
|
90
90
|
|
|
91
91
|
if (type == sap.ui.vbm.SemanticType.None && col) {
|
|
92
92
|
oRm.style("border-color", col)
|
|
@@ -95,7 +95,7 @@ sap.ui.define([
|
|
|
95
95
|
oRm.openEnd();
|
|
96
96
|
|
|
97
97
|
oRm.openStart("div", Id2);
|
|
98
|
-
oRm.
|
|
98
|
+
oRm.class(classInner);
|
|
99
99
|
if (type == sap.ui.vbm.SemanticType.None && col) {
|
|
100
100
|
oRm.style("border-color", col)
|
|
101
101
|
}
|
|
@@ -108,7 +108,7 @@ sap.ui.define([
|
|
|
108
108
|
if (icon) {
|
|
109
109
|
var IdIcon = oControl.getId() + "-" + "icon";
|
|
110
110
|
oRm.openStart("span", IdIcon);
|
|
111
|
-
oRm.
|
|
111
|
+
oRm.class(classIcon);
|
|
112
112
|
if (type == sap.ui.vbm.SemanticType.None && col) {
|
|
113
113
|
oRm.style("color", col)
|
|
114
114
|
}
|
|
@@ -122,7 +122,7 @@ sap.ui.define([
|
|
|
122
122
|
if ((oControl.getText())) {
|
|
123
123
|
var IdTextbox = oControl.getId() + "-" + "textbox";
|
|
124
124
|
oRm.openStart("div", IdTextbox);
|
|
125
|
-
oRm.
|
|
125
|
+
oRm.class(classTextbox);
|
|
126
126
|
if (type == sap.ui.vbm.SemanticType.None && col) {
|
|
127
127
|
oRm.style("border-color", col);
|
|
128
128
|
}
|
package/src/sap/ui/vbm/GeoMap.js
CHANGED
|
@@ -125,7 +125,7 @@ sap.ui.define([
|
|
|
125
125
|
defaultValue: null
|
|
126
126
|
},
|
|
127
127
|
/**
|
|
128
|
-
* @deprecated This property should not longer be used. Its functionality has been replaced by the <code>clusters</code>
|
|
128
|
+
* @deprecated since version 1.31 This property should not longer be used. Its functionality has been replaced by the <code>clusters</code>
|
|
129
129
|
* aggregation.
|
|
130
130
|
*/
|
|
131
131
|
clustering: {
|
|
@@ -178,7 +178,7 @@ sap.ui.define([
|
|
|
178
178
|
singularName: "geoJsonLayer"
|
|
179
179
|
},
|
|
180
180
|
/**
|
|
181
|
-
* @deprecated This aggregation should not longer be used. Its functionality has been replaced by the more generic<code>geoJsonLayers</code>
|
|
181
|
+
* @deprecated since version 1.31 This aggregation should not longer be used. Its functionality has been replaced by the more generic<code>geoJsonLayers</code>
|
|
182
182
|
* aggregation.
|
|
183
183
|
*/
|
|
184
184
|
featureCollections: {
|
|
@@ -731,7 +731,7 @@ sap.ui.define([
|
|
|
731
731
|
* @param {object} oClustering Cluster Definition object
|
|
732
732
|
* @returns {sap.ui.vbm.GeoMap} This allows method chaining
|
|
733
733
|
* @public
|
|
734
|
-
* @deprecated This property should not longer be used. Its functionality has been replaced by the <code>clusters</code> aggregation.
|
|
734
|
+
* @deprecated since version 1.31 This property should not longer be used. Its functionality has been replaced by the <code>clusters</code> aggregation.
|
|
735
735
|
* @ui5-metamodel This method also will be described in the UI5 (legacy) designtime metamodel
|
|
736
736
|
*/
|
|
737
737
|
GeoMap.prototype.setClustering = function(oClustering) {
|
|
@@ -57,7 +57,7 @@ sap.ui.define([
|
|
|
57
57
|
},
|
|
58
58
|
events: {
|
|
59
59
|
/**
|
|
60
|
-
* @deprecated This event should no longer be used. Click event from Pie and Pies now includes Pie Item index when event occurs.
|
|
60
|
+
* @deprecated since version 1.31 This event should no longer be used. Click event from Pie and Pies now includes Pie Item index when event occurs.
|
|
61
61
|
*/
|
|
62
62
|
click: {}
|
|
63
63
|
}
|
package/src/sap/ui/vbm/VBI.js
CHANGED
|
@@ -96,7 +96,7 @@ sap.ui.define([
|
|
|
96
96
|
},
|
|
97
97
|
|
|
98
98
|
/**
|
|
99
|
-
* @deprecated This property should not longer be used. Its functionality is covered by method <code>load</code>.
|
|
99
|
+
* @deprecated since version 1.31 This property should not longer be used. Its functionality is covered by method <code>load</code>.
|
|
100
100
|
*/
|
|
101
101
|
config: {
|
|
102
102
|
type: "object",
|
|
@@ -83,7 +83,7 @@ sap.ui.define([
|
|
|
83
83
|
*
|
|
84
84
|
* @private
|
|
85
85
|
* @author SAP SE
|
|
86
|
-
* @version 1.
|
|
86
|
+
* @version 1.109.0
|
|
87
87
|
* @alias sap.ui.vbm.adapter3d.DragDropHandler
|
|
88
88
|
*/
|
|
89
89
|
var DragDropHandler = BaseObject.extend("sap.ui.vbm.adapter3d.DragDropHandler", /** @lends sap.ui.vbm.adapter3d.DragDropHandler.prototype */ {
|
|
@@ -29,7 +29,7 @@ sap.ui.define([
|
|
|
29
29
|
*
|
|
30
30
|
* @private
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.109.0
|
|
33
33
|
* @alias sap.ui.vbm.adapter3d.ModelHandler
|
|
34
34
|
*/
|
|
35
35
|
var ModelHandler = BaseObject.extend("sap.ui.vbm.adapter3d.ModelHandler", /** @lends sap.ui.vbm.adapter3d.ModelHandler.prototype */ {
|
|
@@ -377,7 +377,7 @@ sap.ui.define([
|
|
|
377
377
|
*
|
|
378
378
|
* @private
|
|
379
379
|
* @author SAP SE
|
|
380
|
-
* @version 1.
|
|
380
|
+
* @version 1.109.0
|
|
381
381
|
* @alias sap.ui.vbm.adapter3d.ObjectFactory
|
|
382
382
|
*/
|
|
383
383
|
var ObjectFactory = BaseObject.extend("sap.ui.vbm.adapter3d.ObjectFactory", /** @lends sap.ui.vbm.adapter3d.ObjectFactory.prototype */ {});
|
|
@@ -32,7 +32,7 @@ sap.ui.define([
|
|
|
32
32
|
*
|
|
33
33
|
* @private
|
|
34
34
|
* @author SAP SE
|
|
35
|
-
* @version 1.
|
|
35
|
+
* @version 1.109.0
|
|
36
36
|
* @alias sap.ui.vbm.adapter3d.PolygonHandler
|
|
37
37
|
*/
|
|
38
38
|
var PolygonHandler = BaseObject.extend("sap.ui.vbm.adapter3d.PolygonHandler", /** @lends sap.ui.vbm.adapter3d.PolygonHandler.prototype */ {
|
|
@@ -46,7 +46,7 @@ sap.ui.define([
|
|
|
46
46
|
*
|
|
47
47
|
* @private
|
|
48
48
|
* @author SAP SE
|
|
49
|
-
* @version 1.
|
|
49
|
+
* @version 1.109.0
|
|
50
50
|
* @alias sap.ui.vbm.adapter3d.SceneBuilder
|
|
51
51
|
*/
|
|
52
52
|
var SceneBuilder = BaseObject.extend("sap.ui.vbm.adapter3d.SceneBuilder", /** @lends sap.ui.vbm.adapter3d.SceneBuilder.prototype */ {
|
|
@@ -56,7 +56,7 @@ sap.ui.define([
|
|
|
56
56
|
*
|
|
57
57
|
* @private
|
|
58
58
|
* @author SAP SE
|
|
59
|
-
* @version 1.
|
|
59
|
+
* @version 1.109.0
|
|
60
60
|
* @alias sap.ui.vbm.adapter3d.VBIJSONParser
|
|
61
61
|
*/
|
|
62
62
|
var VBIJSONParser = BaseObject.extend("sap.ui.vbm.adapter3d.VBIJSONParser", /** @lends sap.ui.vbm.adapter3d.VBIJSONParser.prototype */ {
|
|
@@ -3325,7 +3325,9 @@ VBI.GeoScene = function(target, mapmanager, maplayerstack) {
|
|
|
3325
3325
|
}
|
|
3326
3326
|
|
|
3327
3327
|
// reset div reference..............................................//
|
|
3328
|
-
scene.m_Div.parentElement
|
|
3328
|
+
if (scene.m_Div.parentElement) {
|
|
3329
|
+
scene.m_Div.parentElement.removeChild(scene.m_Div);
|
|
3330
|
+
}
|
|
3329
3331
|
scene.m_Div = null;
|
|
3330
3332
|
|
|
3331
3333
|
// clear any timers.................................................//
|
|
@@ -19,7 +19,7 @@ sap.ui.define([
|
|
|
19
19
|
* @namespace
|
|
20
20
|
* @alias sap.ui.vbm
|
|
21
21
|
* @author SAP SE
|
|
22
|
-
* @version 1.
|
|
22
|
+
* @version 1.109.0
|
|
23
23
|
* @public
|
|
24
24
|
*/
|
|
25
25
|
|
|
@@ -42,7 +42,7 @@ sap.ui.define([
|
|
|
42
42
|
"sap.ui.vbm.ClusterBase", "sap.ui.vbm.ClusterTree", "sap.ui.vbm.ClusterGrid", "sap.ui.vbm.ClusterDistance", "sap.ui.vbm.Heatmap",
|
|
43
43
|
"sap.ui.vbm.HeatPoint", "sap.ui.vbm.ClusterContainer", "sap.ui.vbm.Adapter", "sap.ui.vbm.Adapter3D"
|
|
44
44
|
],
|
|
45
|
-
version: "1.
|
|
45
|
+
version: "1.109.0"
|
|
46
46
|
});
|
|
47
47
|
|
|
48
48
|
sap.ui.loader.config({
|