galaxy-charts 0.0.75 → 0.0.76
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/galaxy-charts.css +1 -1
- package/dist/galaxy-charts.js +3707 -3621
- package/dist/galaxy-charts.umd.cjs +231 -231
- package/dist/types/galaxy-charts.d.ts +2 -0
- package/package.json +5 -7
- package/dist/types.d.ts +0 -63
package/package.json
CHANGED
|
@@ -6,29 +6,27 @@
|
|
|
6
6
|
"charts"
|
|
7
7
|
],
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.76",
|
|
10
10
|
"type": "module",
|
|
11
11
|
"main": "./dist/galaxy-charts.umd.cjs",
|
|
12
12
|
"module": "./dist/galaxy-charts.js",
|
|
13
|
-
"types": "./dist/types.d.ts",
|
|
13
|
+
"types": "./dist/types/galaxy-charts.d.ts",
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
16
|
"import": "./dist/galaxy-charts.js",
|
|
17
|
-
"require": "./dist/galaxy-charts.
|
|
18
|
-
"types": "./dist/types.d.ts"
|
|
17
|
+
"require": "./dist/galaxy-charts.umd.cjs",
|
|
18
|
+
"types": "./dist/types/galaxy-charts.d.ts"
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
"files": [
|
|
22
22
|
"dist/galaxy-charts.css",
|
|
23
23
|
"dist/galaxy-charts.js",
|
|
24
24
|
"dist/galaxy-charts.umd.cjs",
|
|
25
|
-
"dist/types.d.ts"
|
|
25
|
+
"./dist/types/galaxy-charts.d.ts"
|
|
26
26
|
],
|
|
27
27
|
"scripts": {
|
|
28
28
|
"dev": "npm run build && vite",
|
|
29
29
|
"build": "vite build",
|
|
30
|
-
"build:types": "vue-tsc --declaration --emitDeclarationOnly --outDir dist",
|
|
31
|
-
"postbuild": "npm run build:types",
|
|
32
30
|
"preview": "vite preview",
|
|
33
31
|
"prettier": "prettier --config ./prettier.config.js --write 'package.json' '**/*.{css,js,ts,vue}'",
|
|
34
32
|
"test": "vitest --coverage.enabled --no-cache"
|
package/dist/types.d.ts
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
export interface InputElementType {
|
|
2
|
-
cases?: Array<{
|
|
3
|
-
value: string;
|
|
4
|
-
inputs: Array<InputElementType>;
|
|
5
|
-
}>;
|
|
6
|
-
data?: Array<{
|
|
7
|
-
label: string;
|
|
8
|
-
value: string;
|
|
9
|
-
}>;
|
|
10
|
-
extension?: string;
|
|
11
|
-
filterable?: boolean;
|
|
12
|
-
help?: string;
|
|
13
|
-
is_auto?: string;
|
|
14
|
-
is_text?: string;
|
|
15
|
-
is_number?: string;
|
|
16
|
-
label?: string;
|
|
17
|
-
max?: string;
|
|
18
|
-
min?: string;
|
|
19
|
-
name: string;
|
|
20
|
-
optional?: string;
|
|
21
|
-
rows?: string;
|
|
22
|
-
test_param?: {
|
|
23
|
-
name: string;
|
|
24
|
-
type: string;
|
|
25
|
-
data?: Array<{
|
|
26
|
-
label: string;
|
|
27
|
-
value: string;
|
|
28
|
-
}>;
|
|
29
|
-
value?: string;
|
|
30
|
-
};
|
|
31
|
-
type: string;
|
|
32
|
-
value?: string;
|
|
33
|
-
}
|
|
34
|
-
export type InputAtomicType = boolean | string | number | null | undefined;
|
|
35
|
-
export type InputValuesType = Record<string, any>;
|
|
36
|
-
export type MessageType = "info" | "default" | "warning" | "error" | "success" | undefined;
|
|
37
|
-
export interface PluginConfigType {
|
|
38
|
-
credentials?: RequestCredentials;
|
|
39
|
-
dataset_id?: string;
|
|
40
|
-
dataset_url?: string;
|
|
41
|
-
settings?: InputValuesType;
|
|
42
|
-
tracks?: Array<InputValuesType>;
|
|
43
|
-
chart_dict?: {
|
|
44
|
-
groups?: any;
|
|
45
|
-
settings?: any;
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
export interface PluginIncomingType {
|
|
49
|
-
root?: string;
|
|
50
|
-
visualization_config?: PluginConfigType;
|
|
51
|
-
visualization_id?: string;
|
|
52
|
-
visualization_plugin?: PluginType;
|
|
53
|
-
visualization_title?: string;
|
|
54
|
-
}
|
|
55
|
-
export interface PluginType {
|
|
56
|
-
name?: string;
|
|
57
|
-
html?: string | null;
|
|
58
|
-
logo?: string | null;
|
|
59
|
-
description?: string | null;
|
|
60
|
-
specs?: Record<string, string>;
|
|
61
|
-
settings?: Array<InputElementType>;
|
|
62
|
-
tracks?: Array<InputElementType>;
|
|
63
|
-
}
|