candleview 2.0.2 → 2.0.3

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/README.md CHANGED
@@ -206,22 +206,22 @@ The system integrates the following SDKs:
206
206
  // Simultaneously configure different models from multiple AI brands.
207
207
  {
208
208
  apiKey: "Your API key.....",
209
- brand: AIBrandType.Aliyun,
209
+ brand: "aliyun",
210
210
  model: "qwen-turbo",
211
211
  },
212
212
  {
213
213
  apiKey: "Your API key.....",
214
- brand: AIBrandType.Aliyun,
214
+ brand: "aliyun",
215
215
  model: "qwen-omni",
216
216
  },
217
217
  {
218
218
  apiKey: "Your API key.....",
219
- brand: AIBrandType.OpenAI,
219
+ brand: "deepseek",
220
220
  model: "gpt-4",
221
221
  },
222
222
  {
223
223
  apiKey: "Your API key.....",
224
- brand: AIBrandType.OpenAI,
224
+ brand: "openai",
225
225
  model: "gpt-3.5-turbo",
226
226
  },
227
227
  ]}
package/dist/index.d.ts CHANGED
@@ -788,6 +788,17 @@ declare interface ThemeConfig {
788
788
  color: string;
789
789
  activeTextColor: string;
790
790
  boxShadow: string;
791
+ sendButton: {
792
+ normal: string;
793
+ hover: string;
794
+ disabled: string;
795
+ };
796
+ inputFocus: string;
797
+ dropdown: {
798
+ hover: string;
799
+ selected: string;
800
+ borderActive: string;
801
+ };
791
802
  };
792
803
  };
793
804
  divider: {