galaxy-charts 0.0.10 → 0.0.12

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
@@ -6,7 +6,7 @@
6
6
  "charts"
7
7
  ],
8
8
  "license": "MIT",
9
- "version": "0.0.10",
9
+ "version": "0.0.12",
10
10
  "type": "module",
11
11
  "main": "./dist/galaxy-charts.umd.cjs",
12
12
  "module": "./dist/galaxy-charts.js",
@@ -17,10 +17,13 @@
17
17
  }
18
18
  },
19
19
  "files": [
20
- "dist"
20
+ "dist/galaxy-charts.css",
21
+ "dist/galaxy-charts.js",
22
+ "dist/galaxy-charts.umd.cjs",
23
+ "logo.svg"
21
24
  ],
22
25
  "scripts": {
23
- "dev": "vite",
26
+ "dev": "vite build && vite",
24
27
  "build": "vite build",
25
28
  "preview": "vite preview",
26
29
  "prettier": "prettier --write 'package.json' '*.js' 'src/**/*.js' 'src/**/*.vue'",
@@ -1,50 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE visualization SYSTEM "../../visualization.dtd">
3
- <visualization name="Test Environment">
4
- <description>Welcome to Galaxy Charts.</description>
5
- <specs>
6
- <type>spec_type</type>
7
- </specs>
8
- <tracks>
9
- <input>
10
- <label>Track: Color</label>
11
- <name>track_color</name>
12
- <type>color</type>
13
- </input>
14
- <input>
15
- <label>Track: Text</label>
16
- <name>track_text</name>
17
- <type>text</type>
18
- <placeholder>Placeholder</placeholder>
19
- <value>Text</value>
20
- </input>
21
- <input>
22
- <name>track_column_0</name>
23
- <label>Track: Column (Auto, Text)</label>
24
- <type>data_column</type>
25
- <is_auto>true</is_auto>
26
- <is_text>true</is_text>
27
- </input>
28
- <input>
29
- <name>track_column_1</name>
30
- <label>Track: Column (Number)</label>
31
- <type>data_column</type>
32
- <is_number>true</is_number>
33
- </input>
34
- </tracks>
35
- <settings>
36
- <input>
37
- <label>Setting: Text</label>
38
- <name>setting_text</name>
39
- <type>textarea</type>
40
- <rows>5</rows>
41
- <optional>true</optional>
42
- </input>
43
- <input>
44
- <label>Setting: Boolean</label>
45
- <name>setting_boolean</name>
46
- <type>boolean</type>
47
- <optional>true</optional>
48
- </input>
49
- </settings>
50
- </visualization>
File without changes