galaxy-charts 0.0.77 → 0.0.78
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 +21 -5
- package/package.json +1 -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>;
|
|
@@ -89,9 +91,23 @@ declare interface InputElementType {
|
|
|
89
91
|
value?: string;
|
|
90
92
|
}
|
|
91
93
|
|
|
92
|
-
declare type
|
|
94
|
+
export declare type InputSelectOptionType = {
|
|
95
|
+
disabled?: boolean;
|
|
96
|
+
label: string;
|
|
97
|
+
value: InputSelectValueType | null;
|
|
98
|
+
type?: string;
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
export declare type InputSelectValueType = {
|
|
102
|
+
id: string;
|
|
103
|
+
[key: string]: string | number | boolean | Array<string>;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export declare type InputValuesType = Record<string, any>;
|
|
107
|
+
|
|
108
|
+
export declare type MessageType = "info" | "default" | "warning" | "error" | "success" | undefined;
|
|
93
109
|
|
|
94
|
-
declare interface PluginConfigType {
|
|
110
|
+
export declare interface PluginConfigType {
|
|
95
111
|
credentials?: RequestCredentials;
|
|
96
112
|
dataset_id?: string;
|
|
97
113
|
dataset_url?: string;
|
|
@@ -103,7 +119,7 @@ declare interface PluginConfigType {
|
|
|
103
119
|
};
|
|
104
120
|
}
|
|
105
121
|
|
|
106
|
-
declare interface PluginIncomingType {
|
|
122
|
+
export declare interface PluginIncomingType {
|
|
107
123
|
root?: string;
|
|
108
124
|
visualization_config?: PluginConfigType;
|
|
109
125
|
visualization_id?: string;
|
|
@@ -111,7 +127,7 @@ declare interface PluginIncomingType {
|
|
|
111
127
|
visualization_title?: string;
|
|
112
128
|
}
|
|
113
129
|
|
|
114
|
-
declare interface PluginType {
|
|
130
|
+
export declare interface PluginType {
|
|
115
131
|
name?: string;
|
|
116
132
|
html?: string | null;
|
|
117
133
|
logo?: string | null;
|