@363045841yyt/klinechart 0.2.8 → 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 +4 -0
- package/dist/components/IndicatorSelector.vue.d.ts +2 -5
- package/dist/index.cjs +1 -1
- package/dist/index.js +1084 -951
- package/dist/klinechart.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,10 @@
|
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+

|
|
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
|
-
|
|
25
|
-
|
|
21
|
+
addBtnRef: HTMLButtonElement;
|
|
22
|
+
addMenuRef: HTMLDivElement;
|
|
26
23
|
}, HTMLDivElement>;
|
|
27
24
|
export default _default;
|