scichart-engine 0.4.1 → 0.4.3

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/dist/types.d.ts CHANGED
@@ -35,6 +35,8 @@ export interface AxisOptions {
35
35
  max?: number;
36
36
  /** Enable autoscaling */
37
37
  auto?: boolean;
38
+ /** Force scientific notation (e.g., 1.2 × 10⁵) */
39
+ scientific?: boolean;
38
40
  }
39
41
  export type SeriesType = "line" | "scatter" | "line+scatter" | "step" | "step+scatter" | "band" | "area" | "bar" | "heatmap" | "candlestick";
40
42
  /** Step mode defines where the step occurs */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scichart-engine",
3
- "version": "0.4.1",
3
+ "version": "0.4.3",
4
4
  "author": "jigonzalez930209",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -33,16 +33,6 @@
33
33
  "README.md",
34
34
  "LICENSE"
35
35
  ],
36
- "scripts": {
37
- "dev": "vite",
38
- "build": "tsc && vite build -c vite.config.lib.ts",
39
- "preview": "vite preview",
40
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
41
- "docs:dev": "vitepress dev docs",
42
- "docs:build": "vitepress build docs",
43
- "docs:preview": "vitepress preview docs",
44
- "prepublishOnly": "npm run build"
45
- },
46
36
  "peerDependencies": {
47
37
  "react": ">=16.8.0",
48
38
  "react-dom": ">=16.8.0"
@@ -55,5 +45,14 @@
55
45
  "vite": "^5.0.0",
56
46
  "vite-plugin-dts": "^3.6.0",
57
47
  "vitepress": "^1.0.0-rc.31"
48
+ },
49
+ "scripts": {
50
+ "dev": "vite",
51
+ "build": "tsc && vite build -c vite.config.lib.ts",
52
+ "preview": "vite preview",
53
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
54
+ "docs:dev": "vitepress dev docs",
55
+ "docs:build": "vitepress build docs",
56
+ "docs:preview": "vitepress preview docs"
58
57
  }
59
58
  }