@sapui5/sap.viz 1.124.2 → 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 +1 -1
- package/src/sap/viz/.library +1 -1
- package/src/sap/viz/library.js +1 -1
- package/src/sap/viz/libs/sap-viz-info-framework.js +6 -4
- package/src/sap/viz/themes/sap_belize/library.source.less +10 -1
- package/src/sap/viz/themes/sap_belize_base/library.source.less +4 -0
- package/src/sap/viz/themes/sap_belize_base/shared.less +1112 -0
- package/src/sap/viz/themes/sap_belize_hcb/library.source.less +10 -1
- package/src/sap/viz/themes/sap_belize_hcw/library.source.less +10 -1
- package/src/sap/viz/themes/sap_bluecrystal/library.source.less +7 -7
- package/src/sap/viz/themes/sap_hcb/base_shared.less +1112 -0
- package/src/sap/viz/themes/sap_hcb/library.source.less +16 -4
- package/src/sap/viz/ui5/core/BaseChartMetadata.js +1 -1
package/package.json
CHANGED
package/src/sap/viz/.library
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
6
|
<copyright>SAPUI5
|
|
7
7
|
* (c) Copyright 2009-2024 SAP SE. All rights reserved.</copyright>
|
|
8
|
-
<version>1.
|
|
8
|
+
<version>1.126.0</version>
|
|
9
9
|
|
|
10
10
|
<documentation>Chart controls based on the SAP BI CVOM charting library</documentation>
|
|
11
11
|
|
package/src/sap/viz/library.js
CHANGED
|
@@ -38202,14 +38202,16 @@ define('sap/viz/api/env',[
|
|
|
38202
38202
|
}
|
|
38203
38203
|
} else if (arguments.length === 0) {
|
|
38204
38204
|
values = {};
|
|
38205
|
-
|
|
38205
|
+
var envSetting = environment.getEnvSetting();
|
|
38206
|
+
if (envSetting && envSetting.enableCanvg) {
|
|
38206
38207
|
values = {
|
|
38207
|
-
enableCanvg:
|
|
38208
|
+
enableCanvg: envSetting.enableCanvg
|
|
38208
38209
|
};
|
|
38209
38210
|
}
|
|
38210
|
-
|
|
38211
|
+
var enableCanvgConfig = config.getConfigs();
|
|
38212
|
+
if (enableCanvgConfig) {
|
|
38211
38213
|
var configs = {
|
|
38212
|
-
enableCanvgConfig:
|
|
38214
|
+
enableCanvgConfig: enableCanvgConfig
|
|
38213
38215
|
};
|
|
38214
38216
|
values = ObjectUtils.extend(true, {}, values, configs);
|
|
38215
38217
|
}
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/* ============================================================================ */
|
|
2
|
+
/* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the */
|
|
3
|
+
/* inheritance of the base theme is now updated to an inheritance of a static */
|
|
4
|
+
/* copy of the base theme named sap_belize_base. The respective */
|
|
5
|
+
/* control css files of base are copied to the sap_belize_base theme folder. */
|
|
6
|
+
/* This decoupling of the base theme is introduced with SAPUI5 version 1.125. */
|
|
7
|
+
/* ============================================================================ */
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
@import "../sap_belize_base/library.source.less";
|
|
2
11
|
@import "../../../../sap/ui/core/themes/sap_belize/base.less";
|
|
3
12
|
@import "../../../../sap/ui/core/themes/sap_belize/global.less";
|