galaxy-charts 0.0.78 → 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.
@@ -88,6 +88,7 @@ export declare interface InputElementType {
88
88
  value?: string;
89
89
  };
90
90
  type: string;
91
+ url: string;
91
92
  value?: string;
92
93
  }
93
94
 
@@ -100,7 +101,7 @@ export declare type InputSelectOptionType = {
100
101
 
101
102
  export declare type InputSelectValueType = {
102
103
  id: string;
103
- [key: string]: string | number | boolean | Array<string>;
104
+ [key: string]: string | number | boolean | Array<string> | Record<string, InputSelectValueType>;
104
105
  };
105
106
 
106
107
  export declare type InputValuesType = Record<string, any>;
@@ -113,10 +114,6 @@ export declare interface PluginConfigType {
113
114
  dataset_url?: string;
114
115
  settings?: InputValuesType;
115
116
  tracks?: Array<InputValuesType>;
116
- chart_dict?: {
117
- groups?: any;
118
- settings?: any;
119
- };
120
117
  }
121
118
 
122
119
  export declare interface PluginIncomingType {