@siemens/ix-echarts 0.0.0-20240419081748 → 0.0.0-pr-2300-20260107140403

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.
@@ -0,0 +1 @@
1
+ export default function getComputedCSSProperty(cssProperty: string): string;
@@ -1,6 +1,6 @@
1
1
  export { default as registerTheme } from './register';
2
+ export { default as getComputedCSSProperty } from './computecss';
2
3
  export { default as brandDark } from './themes/brand-dark';
3
4
  export { default as brandLight } from './themes/brand-light';
4
5
  export { default as classicDark } from './themes/classic-dark';
5
6
  export { default as classicLight } from './themes/classic-light';
6
- export declare function convertThemeName(conventionalName: string): string;
@@ -4,4 +4,4 @@ declare global {
4
4
  echarts: ECharts;
5
5
  }
6
6
  }
7
- export default function registerEChartsThemes(echartsInstance?: any): void;
7
+ export default function registerTheme(echartsInstance?: any): void;
package/package.json CHANGED
@@ -7,10 +7,9 @@
7
7
  "url": "https://github.com/siemens/ix",
8
8
  "directory": "packages/echarts"
9
9
  },
10
- "version": "0.0.0-20240419081748",
10
+ "version": "0.0.0-pr-2300-20260107140403",
11
11
  "description": "Siemens iX theme for echarts",
12
12
  "main": "dist/index.js",
13
- "module": "dist/index.esm.js",
14
13
  "types": "dist/types/index.d.ts",
15
14
  "files": [
16
15
  "dist"
@@ -18,23 +17,23 @@
18
17
  "author": "",
19
18
  "license": "MIT",
20
19
  "devDependencies": {
21
- "@playwright/test": "^1.32.1",
22
- "@rollup/plugin-typescript": "^8.4.0",
23
- "echarts": "^5.4.1",
20
+ "@playwright/test": "^1.54.1",
21
+ "@rollup/plugin-typescript": "^8.5.0",
22
+ "echarts": "^5.5.1",
24
23
  "http-server": "^14.1.1",
25
24
  "rimraf": "^3.0.2",
26
- "rollup": "^2.78.1",
27
- "rollup-plugin-dts": "^4.2.0",
25
+ "rollup": "^2.79.1",
26
+ "rollup-plugin-dts": "^4.2.3",
28
27
  "rollup-plugin-peer-deps-external": "^2.2.4",
29
28
  "rollup-plugin-sourcemaps": "^0.6.3",
30
29
  "rollup-plugin-terser": "^7.0.2",
31
- "typescript": "^4.5.5"
30
+ "typescript": "^4.9.5"
32
31
  },
33
- "dependencies": {},
34
32
  "peerDependencies": {
35
33
  "echarts": "^5.3.3"
36
34
  },
37
35
  "scripts": {
36
+ "test.setup": "playwright install chromium --with-deps",
38
37
  "build": "npm run clean && npm run compile",
39
38
  "clean": "rimraf dist",
40
39
  "compile": "rollup -c",