@sapui5/sap.zen.crosstab 1.124.7 → 1.126.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.zen.crosstab",
3
- "version": "1.124.7",
3
+ "version": "1.126.0",
4
4
  "description": "SAPUI5 Library sap.zen.crosstab",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "author": "SAP SE (https://www.sap.com)",
@@ -6,7 +6,7 @@
6
6
  </deprecation>
7
7
  <vendor>SAP SE</vendor>
8
8
  <copyright>(c) Copyright 2010-2019 SAP SE or an SAP affiliate company.</copyright>
9
- <version>1.124.7</version>
9
+ <version>1.126.0</version>
10
10
  <documentation>Design Studio Crosstab library. NOT INTENDED FOR STANDALONE USAGE.</documentation>
11
11
  <appData>
12
12
  <jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc" >
@@ -33,7 +33,7 @@ sap.ui.define(
33
33
  "sap.zen.crosstab.HeaderCell"
34
34
  ],
35
35
  elements: [],
36
- version: "1.124.7"
36
+ version: "1.126.0"
37
37
  });
38
38
  return thisLib;
39
39
  }
@@ -2,6 +2,15 @@
2
2
  * (c) Copyright 2010-2016 SAP SE or an SAP affiliate company.
3
3
  */
4
4
 
5
- @import "../base/library.source.less";
5
+ /***********************************************************************************
6
+ /* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the
7
+ /* inheritance of the base theme is now updated to an inheritance of a static
8
+ /* copy of the base theme named sap_belize_base. The respective
9
+ /* control css files of base are copied to the sap_belize_base theme folder.
10
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
11
+ ***********************************************************************************/
12
+
13
+
14
+ @import "../sap_belize_base/library.source.less";
6
15
  @import "../../../../../sap/ui/core/themes/sap_belize/base.less";
7
16
  @import "../../../../../sap/ui/core/themes/sap_belize/global.less";
@@ -0,0 +1,12 @@
1
+ .zenControl .v-m-tooltip {
2
+ z-index: 1;
3
+ pointer-events: none;
4
+ }
5
+
6
+ .zenControl .sapzeninfochart .v-m-tooltip {
7
+ pointer-events: all;
8
+ }
9
+
10
+ .zenControl .html5chart svg {
11
+ overflow: hidden;
12
+ }
@@ -0,0 +1,35 @@
1
+ /* ======================================================================== */
2
+ /* Base CSS for control sap.ui.commons/ChartTypeSwitch.control */
3
+ /* */
4
+ /* ======================================================================== */
5
+
6
+ /* fix for switcher positioning */
7
+ .zenControl .viz-controls-switchbar-chart, .zenControl .viz-controls-switchbar-chart-selected
8
+ {
9
+ float: left !important;
10
+ left: auto !important;
11
+ right: auto !important;
12
+ top: auto !important;
13
+ position: relative !important;
14
+ margin-right: 10px !important;
15
+ margin-bottom: 10px !important;
16
+ }
17
+
18
+ html[dir="rtl"] .zenControl .viz-controls-switchbar-chart, html[dir="rtl"] .zenControl .viz-controls-switchbar-chart-selected
19
+ {
20
+ float: left !important;
21
+ left: auto !important;
22
+ right: auto !important;
23
+ }
24
+
25
+ .zenControl .viz-controls-switchbar-view {
26
+ min-width: 60px !important;
27
+ }
28
+
29
+ .zenControl .viz-controls-switchbar-chart-icon {
30
+ position: absolute;
31
+ width: 24px;
32
+ height: 24px;
33
+ transform: none;
34
+ transform-origin: none;
35
+ }