@sapui5/sap.ui.vbm 1.102.0 → 1.103.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/Viewport.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/library.js +3 -3
- package/src/sap/ui/vbm/themes/sap_horizon_dark/AnalyticMap.less +3 -0
- package/src/sap/ui/vbm/themes/sap_horizon_dark/VBI.less +96 -0
- package/src/sap/ui/vbm/themes/sap_horizon_dark/library.source.less +4 -1
- package/src/sap/ui/vbm/themes/sap_horizon_hcb/AnalyticMap.less +3 -0
- package/src/sap/ui/vbm/themes/sap_horizon_hcb/VBI.less +96 -0
- package/src/sap/ui/vbm/themes/sap_horizon_hcb/library.source.less +5 -1
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.103.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.103.0
|
|
26
26
|
* @extends sap.ui.core.Element
|
|
27
27
|
* @constructor
|
|
28
28
|
* @public
|
|
@@ -41,7 +41,7 @@ sap.ui.define([
|
|
|
41
41
|
* @param {string} [sId] id for the new control, generated automatically if no id is given
|
|
42
42
|
* @param {object} [mSettings] initial settings for the new object
|
|
43
43
|
* @author SAP SE
|
|
44
|
-
* @version 1.
|
|
44
|
+
* @version 1.103.0
|
|
45
45
|
* @extends sap.ui.core.Element
|
|
46
46
|
* @constructor
|
|
47
47
|
* @public
|
|
@@ -29,7 +29,7 @@ sap.ui.define([
|
|
|
29
29
|
*
|
|
30
30
|
* @private
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
32
|
+
* @version 1.103.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.103.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.103.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.103.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.103.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 */ {
|
|
@@ -17,9 +17,9 @@ sap.ui.define([
|
|
|
17
17
|
* SAP UI library: sap.ui.vbm
|
|
18
18
|
*
|
|
19
19
|
* @namespace
|
|
20
|
-
* @
|
|
20
|
+
* @alias sap.ui.vbm
|
|
21
21
|
* @author SAP SE
|
|
22
|
-
* @version 1.
|
|
22
|
+
* @version 1.103.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.103.0"
|
|
46
46
|
});
|
|
47
47
|
|
|
48
48
|
sap.ui.loader.config({
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
|
|
2
|
+
.vbi-detail {
|
|
3
|
+
background-color: @sapUiBaseBG;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.vbi-detail-closebutton
|
|
7
|
+
{
|
|
8
|
+
background-color: @sapUiBaseBG;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.vbi-detail-content
|
|
12
|
+
{
|
|
13
|
+
background-color: @sapUiBaseBG;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.vbi-detail-phone
|
|
17
|
+
{
|
|
18
|
+
background-color: @sapUiBaseBG;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.vbi-detail > .vbi-detail-arrow.vbi-detail-left
|
|
22
|
+
{
|
|
23
|
+
border-right-color: @sapUiBaseBG;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.vbi-detail > .vbi-detail-header
|
|
27
|
+
{
|
|
28
|
+
font-size: @sapUiFontHeader4Size;
|
|
29
|
+
font-family: @sapUiFontHeaderFamily;
|
|
30
|
+
font-weight: @sapUiFontHeaderWeight;
|
|
31
|
+
color: @sapTextColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.vbi-detail-header-phone
|
|
35
|
+
{
|
|
36
|
+
font-family: @sapUiFontHeaderFamily;
|
|
37
|
+
font-weight: @sapUiFontHeaderWeight;
|
|
38
|
+
color: @sapTextColor;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vbi-legend {
|
|
42
|
+
box-shadow: lighten(@sapUiContentForegroundColor, 20%) 0rem 0rem 0.9rem 0.0625rem;
|
|
43
|
+
font-family: @sapUiFontFamily;
|
|
44
|
+
background-color: @sapUiBaseBG;
|
|
45
|
+
color: @sapTextColor;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vbi-legend > .vbi-legend-header
|
|
49
|
+
{
|
|
50
|
+
font-size: @sapMFontMediumSize;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.vbi-legend-button-col:hover
|
|
54
|
+
{
|
|
55
|
+
background-color: @sapUiHighlight;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.vbi-legend-button-col:active
|
|
59
|
+
{
|
|
60
|
+
background-color: darken(@sapUiHighlight, 20%);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vbi-legend-button-exp:hover
|
|
64
|
+
{
|
|
65
|
+
background-color: @sapUiHighlight;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.vbi-legend-button-exp:active
|
|
69
|
+
{
|
|
70
|
+
background-color: darken(@sapUiHighlight, 20%);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.vbi-legend-table
|
|
74
|
+
{
|
|
75
|
+
font-size: @sapMFontSmallSize;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.vbi-legend-table-click
|
|
79
|
+
{
|
|
80
|
+
tr:hover {
|
|
81
|
+
background-color: @sapUiHighlight;
|
|
82
|
+
};
|
|
83
|
+
tr:active {
|
|
84
|
+
background-color: darken(@sapUiHighlight, 20%);
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.vbi-legend-content-celltext
|
|
89
|
+
{
|
|
90
|
+
color: @sapUiChartLegendLabelFontColor;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.vbi-legend-content-celldiv-square
|
|
94
|
+
{
|
|
95
|
+
border-color: @sapUiContentForegroundColor;
|
|
96
|
+
}
|
|
@@ -4,4 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
@import "../base/library.source.less";
|
|
6
6
|
@import "../../../../../sap/ui/core/themes/sap_horizon_dark/base.less";
|
|
7
|
-
@import "../../../../../sap/ui/core/themes/sap_horizon_dark/global.less";
|
|
7
|
+
@import "../../../../../sap/ui/core/themes/sap_horizon_dark/global.less";
|
|
8
|
+
|
|
9
|
+
@import "AnalyticMap.less";
|
|
10
|
+
@import "VBI.less";
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
|
|
2
|
+
.vbi-detail {
|
|
3
|
+
background-color: @sapUiBaseBG;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.vbi-detail-closebutton
|
|
7
|
+
{
|
|
8
|
+
background-color: @sapUiBaseBG;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.vbi-detail-content
|
|
12
|
+
{
|
|
13
|
+
background-color: @sapUiBaseBG;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.vbi-detail-phone
|
|
17
|
+
{
|
|
18
|
+
background-color: @sapUiBaseBG;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.vbi-detail > .vbi-detail-arrow.vbi-detail-left
|
|
22
|
+
{
|
|
23
|
+
border-right-color: @sapUiBaseBG;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.vbi-detail > .vbi-detail-header
|
|
27
|
+
{
|
|
28
|
+
font-size: @sapUiFontHeader4Size;
|
|
29
|
+
font-family: @sapUiFontHeaderFamily;
|
|
30
|
+
font-weight: @sapUiFontHeaderWeight;
|
|
31
|
+
color: @sapTextColor;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.vbi-detail-header-phone
|
|
35
|
+
{
|
|
36
|
+
font-family: @sapUiFontHeaderFamily;
|
|
37
|
+
font-weight: @sapUiFontHeaderWeight;
|
|
38
|
+
color: @sapTextColor;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.vbi-legend {
|
|
42
|
+
box-shadow: lighten(@sapUiContentForegroundColor, 20%) 0rem 0rem 0.9rem 0.0625rem;
|
|
43
|
+
font-family: @sapUiFontFamily;
|
|
44
|
+
background-color: @sapUiBaseBG;
|
|
45
|
+
color: @sapTextColor;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.vbi-legend > .vbi-legend-header
|
|
49
|
+
{
|
|
50
|
+
font-size: @sapMFontMediumSize;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.vbi-legend-button-col:hover
|
|
54
|
+
{
|
|
55
|
+
background-color: @sapUiHighlight;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.vbi-legend-button-col:active
|
|
59
|
+
{
|
|
60
|
+
background-color: darken(@sapUiHighlight, 20%);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.vbi-legend-button-exp:hover
|
|
64
|
+
{
|
|
65
|
+
background-color: @sapUiHighlight;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.vbi-legend-button-exp:active
|
|
69
|
+
{
|
|
70
|
+
background-color: darken(@sapUiHighlight, 20%);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.vbi-legend-table
|
|
74
|
+
{
|
|
75
|
+
font-size: @sapMFontSmallSize;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.vbi-legend-table-click
|
|
79
|
+
{
|
|
80
|
+
tr:hover {
|
|
81
|
+
background-color: @sapUiHighlight;
|
|
82
|
+
};
|
|
83
|
+
tr:active {
|
|
84
|
+
background-color: darken(@sapUiHighlight, 20%);
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.vbi-legend-content-celltext
|
|
89
|
+
{
|
|
90
|
+
color: @sapUiChartLegendLabelFontColor;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.vbi-legend-content-celldiv-square
|
|
94
|
+
{
|
|
95
|
+
border-color: @sapUiContentForegroundColor;
|
|
96
|
+
}
|
|
@@ -4,4 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
@import "../base/library.source.less";
|
|
6
6
|
@import "../../../../../sap/ui/core/themes/sap_horizon_hcb/base.less";
|
|
7
|
-
@import "../../../../../sap/ui/core/themes/sap_horizon_hcb/global.less";
|
|
7
|
+
@import "../../../../../sap/ui/core/themes/sap_horizon_hcb/global.less";
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@import "AnalyticMap.less";
|
|
11
|
+
@import "VBI.less";
|