galaxy-charts 0.0.17 → 0.0.18

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +7 -8
  2. package/package.json +3 -2
package/dist/types.d.ts CHANGED
@@ -11,18 +11,12 @@ export interface InputElementType {
11
11
  is_auto?: string;
12
12
  is_text?: string;
13
13
  is_number?: string;
14
- data?: Array<{
15
- label: string;
16
- value: string;
17
- }>;
14
+ data?: Array<{ label: string; value: string }>;
18
15
  value?: string;
19
16
  test_param?: {
20
17
  name: string;
21
18
  type: string;
22
- data?: Array<{
23
- label: string;
24
- value: string;
25
- }>;
19
+ data?: Array<{ label: string; value: string }>;
26
20
  value?: string;
27
21
  };
28
22
  cases?: Array<{
@@ -30,9 +24,13 @@ export interface InputElementType {
30
24
  inputs: Array<InputElementType>;
31
25
  }>;
32
26
  }
27
+
33
28
  export type InputAtomicType = boolean | string | number | null | undefined;
29
+
34
30
  export type InputValuesType = Record<string, any>;
31
+
35
32
  export type MessageType = "info" | "default" | "warning" | "error" | "success" | undefined;
33
+
36
34
  export interface PluginConfigType {
37
35
  credentials?: RequestCredentials;
38
36
  dataset_id?: string;
@@ -44,6 +42,7 @@ export interface PluginConfigType {
44
42
  settings?: any;
45
43
  };
46
44
  }
45
+
47
46
  export interface PluginType {
48
47
  name: string;
49
48
  html?: string | null;
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "charts"
7
7
  ],
8
8
  "license": "MIT",
9
- "version": "0.0.17",
9
+ "version": "0.0.18",
10
10
  "type": "module",
11
11
  "main": "./dist/galaxy-charts.umd.cjs",
12
12
  "module": "./dist/galaxy-charts.js",
@@ -25,7 +25,7 @@
25
25
  ],
26
26
  "scripts": {
27
27
  "dev": "vite build && vite",
28
- "build": "vite build && npx tsc --project ./tspublish.json",
28
+ "build": "vite build",
29
29
  "preview": "vite preview",
30
30
  "prettier": "prettier --write 'package.json' '*.js' 'src/**/*.js' 'src/**/*.vue'",
31
31
  "test": "vitest"
@@ -41,6 +41,7 @@
41
41
  "naive-ui": "^2.39.0",
42
42
  "postcss": "^8.4.40",
43
43
  "prettier": "^3.3.3",
44
+ "rollup-plugin-copy": "^3.5.0",
44
45
  "tailwindcss": "^3.4.7",
45
46
  "typescript": "^5.5.4",
46
47
  "vite": "^5.3.4",