@363045841yyt/klinechart 0.2.7 → 0.2.9

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
@@ -6,6 +6,10 @@
6
6
 
7
7
  ![pasted-image-1775748542822.webp](https://files.seeusercontent.com/2026/04/09/u0nK/pasted-image-1775748542822.webp)
8
8
 
9
+ ![pasted-image-1776608418893.webp](https://files.seeusercontent.com/2026/04/19/h2bU/pasted-image-1776608418893.webp)
10
+
11
+ ![pasted-image-1776608811331.webp](https://files.seeusercontent.com/2026/04/19/L2do/pasted-image-1776608811331.webp)
12
+
9
13
 
10
14
  ## 功能特性
11
15
 
@@ -4,14 +4,11 @@ export interface Indicator {
4
4
  label: string;
5
5
  name: string;
6
6
  pane: 'main' | 'sub';
7
- /** 指标描述 */
8
7
  description?: string;
9
8
  params?: ParamConfig[];
10
9
  }
11
10
  type __VLS_Props = {
12
- /** 当前选中的指标列表 */
13
11
  activeIndicators?: string[];
14
- /** 指标参数配置 */
15
12
  indicatorParams?: Record<string, Record<string, number>>;
16
13
  };
17
14
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -21,7 +18,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
21
18
  onToggle?: ((indicatorId: string, active: boolean) => any) | undefined;
22
19
  onUpdateParams?: ((indicatorId: string, params: Record<string, number>) => any) | undefined;
23
20
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
24
- scrollContainerRef: HTMLDivElement;
25
- itemRefs: HTMLDivElement[];
21
+ addBtnRef: HTMLButtonElement;
22
+ addMenuRef: HTMLDivElement;
26
23
  }, HTMLDivElement>;
27
24
  export default _default;
@@ -57,6 +57,8 @@ export declare const TAG_BG_COLORS: {
57
57
  readonly LIGHT_GRAY: "rgba(255, 255, 255, 0.92)";
58
58
  /** 纯白背景 */
59
59
  readonly PURE_WHITE: "#ffffff";
60
+ /** 透明背景 */
61
+ readonly TRANSPARENT: "transparent";
60
62
  /** 激活状态背景 */
61
63
  readonly ACTIVE: "#1890ff";
62
64
  readonly ACTIVE_HOVER: "#40a9ff";