galaxy-charts 0.0.77 → 0.0.79
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.d.ts +22 -9
- package/dist/galaxy-charts.js +969 -923
- package/dist/galaxy-charts.umd.cjs +32 -32
- package/package.json +2 -1
package/dist/galaxy-charts.d.ts
CHANGED
|
@@ -54,7 +54,9 @@ export declare function GalaxyApi(): {
|
|
|
54
54
|
|
|
55
55
|
export declare const GalaxyCharts: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
56
56
|
|
|
57
|
-
declare
|
|
57
|
+
export declare type InputAtomicType = boolean | string | number | null | undefined;
|
|
58
|
+
|
|
59
|
+
export declare interface InputElementType {
|
|
58
60
|
cases?: Array<{
|
|
59
61
|
value: string;
|
|
60
62
|
inputs: Array<InputElementType>;
|
|
@@ -86,24 +88,35 @@ declare interface InputElementType {
|
|
|
86
88
|
value?: string;
|
|
87
89
|
};
|
|
88
90
|
type: string;
|
|
91
|
+
url: string;
|
|
89
92
|
value?: string;
|
|
90
93
|
}
|
|
91
94
|
|
|
92
|
-
declare type
|
|
95
|
+
export declare type InputSelectOptionType = {
|
|
96
|
+
disabled?: boolean;
|
|
97
|
+
label: string;
|
|
98
|
+
value: InputSelectValueType | null;
|
|
99
|
+
type?: string;
|
|
100
|
+
};
|
|
101
|
+
|
|
102
|
+
export declare type InputSelectValueType = {
|
|
103
|
+
id: string;
|
|
104
|
+
[key: string]: string | number | boolean | Array<string> | Record<string, InputSelectValueType>;
|
|
105
|
+
};
|
|
93
106
|
|
|
94
|
-
declare
|
|
107
|
+
export declare type InputValuesType = Record<string, any>;
|
|
108
|
+
|
|
109
|
+
export declare type MessageType = "info" | "default" | "warning" | "error" | "success" | undefined;
|
|
110
|
+
|
|
111
|
+
export declare interface PluginConfigType {
|
|
95
112
|
credentials?: RequestCredentials;
|
|
96
113
|
dataset_id?: string;
|
|
97
114
|
dataset_url?: string;
|
|
98
115
|
settings?: InputValuesType;
|
|
99
116
|
tracks?: Array<InputValuesType>;
|
|
100
|
-
chart_dict?: {
|
|
101
|
-
groups?: any;
|
|
102
|
-
settings?: any;
|
|
103
|
-
};
|
|
104
117
|
}
|
|
105
118
|
|
|
106
|
-
declare interface PluginIncomingType {
|
|
119
|
+
export declare interface PluginIncomingType {
|
|
107
120
|
root?: string;
|
|
108
121
|
visualization_config?: PluginConfigType;
|
|
109
122
|
visualization_id?: string;
|
|
@@ -111,7 +124,7 @@ declare interface PluginIncomingType {
|
|
|
111
124
|
visualization_title?: string;
|
|
112
125
|
}
|
|
113
126
|
|
|
114
|
-
declare interface PluginType {
|
|
127
|
+
export declare interface PluginType {
|
|
115
128
|
name?: string;
|
|
116
129
|
html?: string | null;
|
|
117
130
|
logo?: string | null;
|