@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.viz",
3
- "version": "1.124.2",
3
+ "version": "1.126.0",
4
4
  "description": "SAPUI5 Library sap.viz",
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-2024 SAP SE. All rights reserved.</copyright>
8
- <version>1.124.2</version>
8
+ <version>1.126.0</version>
9
9
 
10
10
  <documentation>Chart controls based on the SAP BI CVOM charting library</documentation>
11
11
 
@@ -263,7 +263,7 @@ sap.ui.define([
263
263
 
264
264
  //@@end generated-elements-list
265
265
  ],
266
- version: "1.124.2"
266
+ version: "1.126.0"
267
267
  });
268
268
 
269
269
  //@@begin generated-enums
@@ -38202,14 +38202,16 @@ define('sap/viz/api/env',[
38202
38202
  }
38203
38203
  } else if (arguments.length === 0) {
38204
38204
  values = {};
38205
- if (environment.getEnvSetting() && environment.getEnvSetting().enableCanvg) {
38205
+ var envSetting = environment.getEnvSetting();
38206
+ if (envSetting && envSetting.enableCanvg) {
38206
38207
  values = {
38207
- enableCanvg: environment.getEnvSetting().enableCanvg
38208
+ enableCanvg: envSetting.enableCanvg
38208
38209
  };
38209
38210
  }
38210
- if (config.getConfigs()) {
38211
+ var enableCanvgConfig = config.getConfigs();
38212
+ if (enableCanvgConfig) {
38211
38213
  var configs = {
38212
- enableCanvgConfig: config.getConfigs()
38214
+ enableCanvgConfig: enableCanvgConfig
38213
38215
  };
38214
38216
  values = ObjectUtils.extend(true, {}, values, configs);
38215
38217
  }
@@ -1,3 +1,12 @@
1
- @import "../base/library.source.less";
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";
@@ -0,0 +1,4 @@
1
+ @import "../../../../sap/ui/core/themes/base/base.less";
2
+ @import "../../../../sap/ui/core/themes/base/global.less";
3
+ @import "shared.less";
4
+