orbcharts 3.0.3 → 3.0.4

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,50 +1,50 @@
1
- {
2
- "name": "orbcharts",
3
- "version": "3.0.3",
4
- "description": "OrbCharts is a data-driven Javascript chart library",
5
- "author": "Blue Planet Inc.",
6
- "license": "Apache-2.0",
7
- "keywords": [
8
- "d3",
9
- "rxjs",
10
- "typescript",
11
- "svg",
12
- "visualization",
13
- "infographic",
14
- "graph",
15
- "chart"
16
- ],
17
- "private": false,
18
- "publishConfig": {
19
- "access": "public",
20
- "registry": "https://registry.npmjs.org/"
21
- },
22
- "files": [
23
- "*"
24
- ],
25
- "main": "./dist/orbcharts.umd.js",
26
- "module": "./dist/orbcharts.es.js",
27
- "types": "./dist/src/index.d.ts",
28
- "unpkg": "./dist/orbcharts.umd.js",
29
- "jsdelivr": "./dist/orbcharts.umd.js",
30
- "scripts": {
31
- "test": "echo \"Error: no test specified\" && exit 1",
32
- "build": "vite build --mode production"
33
- },
34
- "devDependencies": {
35
- "@types/d3": "^7.4.0",
36
- "ts-loader": "^9.4.2",
37
- "typescript": "^5.0.4",
38
- "vite": "^5.3.5",
39
- "vite-plugin-dts": "^3.7.3"
40
- },
41
- "dependencies": {
42
- "@orbcharts/core": "^3.0.4",
43
- "@orbcharts/core-types": "^3.0.2",
44
- "@orbcharts/plugins-basic": "^3.0.4",
45
- "@orbcharts/plugins-basic-types": "^3.0.2",
46
- "@orbcharts/presets-basic": "^3.0.2",
47
- "d3": "^7.8.5",
48
- "rxjs": "^7.8.1"
49
- }
50
- }
1
+ {
2
+ "name": "orbcharts",
3
+ "version": "3.0.4",
4
+ "description": "OrbCharts is a data-driven Javascript chart library",
5
+ "author": "Blue Planet Inc.",
6
+ "license": "Apache-2.0",
7
+ "keywords": [
8
+ "d3",
9
+ "rxjs",
10
+ "typescript",
11
+ "svg",
12
+ "visualization",
13
+ "infographic",
14
+ "graph",
15
+ "chart"
16
+ ],
17
+ "private": false,
18
+ "publishConfig": {
19
+ "access": "public",
20
+ "registry": "https://registry.npmjs.org/"
21
+ },
22
+ "files": [
23
+ "*"
24
+ ],
25
+ "main": "./dist/orbcharts.umd.js",
26
+ "module": "./dist/orbcharts.es.js",
27
+ "types": "./dist/src/index.d.ts",
28
+ "unpkg": "./dist/orbcharts.umd.js",
29
+ "jsdelivr": "./dist/orbcharts.umd.js",
30
+ "scripts": {
31
+ "test": "echo \"Error: no test specified\" && exit 1",
32
+ "build": "vite build --mode production"
33
+ },
34
+ "devDependencies": {
35
+ "@types/d3": "^7.4.0",
36
+ "ts-loader": "^9.4.2",
37
+ "typescript": "^5.0.4",
38
+ "vite": "^5.3.5",
39
+ "vite-plugin-dts": "^3.7.3"
40
+ },
41
+ "dependencies": {
42
+ "@orbcharts/core": "^3.0.5",
43
+ "@orbcharts/core-types": "^3.0.3",
44
+ "@orbcharts/plugins-basic": "^3.0.5",
45
+ "@orbcharts/plugins-basic-types": "^3.0.3",
46
+ "@orbcharts/presets-basic": "^3.0.3",
47
+ "d3": "^7.8.5",
48
+ "rxjs": "^7.8.1"
49
+ }
50
+ }
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from '@orbcharts/core'
2
- export * from '@orbcharts/core-types'
3
- export * from '@orbcharts/plugins-basic'
4
- export * from '@orbcharts/plugins-basic-types'
5
- export * from '@orbcharts/presets-basic'
1
+ export * from '@orbcharts/core'
2
+ export * from '@orbcharts/core-types'
3
+ export * from '@orbcharts/plugins-basic'
4
+ export * from '@orbcharts/plugins-basic-types'
5
+ export * from '@orbcharts/presets-basic'
@@ -1,14 +1,14 @@
1
- {
2
- "compilerOptions": {
3
- "outDir": "./dist/",
4
- "sourceMap": true,
5
- "noImplicitAny": true,
6
- "module": "esnext",
7
- "target": "es5",
8
- "jsx": "react",
9
- "allowJs": true,
10
- "moduleResolution": "node",
11
- "allowSyntheticDefaultImports" : true,
12
- "esModuleInterop" : true
13
- }
1
+ {
2
+ "compilerOptions": {
3
+ "outDir": "./dist/",
4
+ "sourceMap": true,
5
+ "noImplicitAny": true,
6
+ "module": "esnext",
7
+ "target": "es5",
8
+ "jsx": "react",
9
+ "allowJs": true,
10
+ "moduleResolution": "node",
11
+ "allowSyntheticDefaultImports" : true,
12
+ "esModuleInterop" : true
13
+ }
14
14
  }
package/tsconfig.json CHANGED
@@ -1,3 +1,3 @@
1
- {
2
- "extends": "./tsconfig.base.json"
1
+ {
2
+ "extends": "./tsconfig.base.json"
3
3
  }
package/vite.config.js CHANGED
@@ -1,23 +1,23 @@
1
- import { defineConfig } from 'vite'
2
- import dts from 'vite-plugin-dts'
3
-
4
- export default defineConfig(({ command, mode }) => {
5
- return {
6
- plugins: [
7
- dts({
8
- insertTypesEntry: true
9
- })
10
- ],
11
- compilerOptions: {
12
- composite: true
13
- },
14
- build: {
15
- lib: {
16
- entry: "src/index.ts",
17
- name: 'orbcharts',
18
- formats: ["es", "umd"],
19
- fileName: format => `orbcharts.${format}.js`
20
- },
21
- }
22
- }
1
+ import { defineConfig } from 'vite'
2
+ import dts from 'vite-plugin-dts'
3
+
4
+ export default defineConfig(({ command, mode }) => {
5
+ return {
6
+ plugins: [
7
+ dts({
8
+ insertTypesEntry: true
9
+ })
10
+ ],
11
+ compilerOptions: {
12
+ composite: true
13
+ },
14
+ build: {
15
+ lib: {
16
+ entry: "src/index.ts",
17
+ name: 'orbcharts',
18
+ formats: ["es", "umd"],
19
+ fileName: format => `orbcharts.${format}.js`
20
+ },
21
+ }
22
+ }
23
23
  })