@guihz/trading-vue-editor-tes 0.0.283 → 0.0.284
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/lib/assets/{parserTccWorker-cw8rxksS.js → parserTccWorker-BpGt27P2.js} +88 -89
- package/lib/assets/{scriptsRunWorker-BlzKPqZx.js → scriptsRunWorker-BzJrckV5.js} +42 -42
- package/lib/components/editor/parseScript/buildInConstants.d.ts +2 -0
- package/lib/components/editor/parseScript/buildInFuncNamespace/array.d.ts +32 -79
- package/lib/components/editor/parseScript/buildInFuncNamespace/box.d.ts +33 -27
- package/lib/components/editor/parseScript/buildInFuncNamespace/chartPoint.d.ts +11 -2
- package/lib/components/editor/parseScript/buildInFuncNamespace/index.d.ts +6 -6
- package/lib/components/editor/parseScript/buildInFuncNamespace/label.d.ts +21 -17
- package/lib/components/editor/parseScript/buildInFuncNamespace/line.d.ts +27 -18
- package/lib/components/editor/parseScript/buildInFuncNamespace/linefill.d.ts +16 -7
- package/lib/components/editor/parseScript/buildInFuncNamespace/log.d.ts +4 -4
- package/lib/components/editor/parseScript/buildInFuncNamespace/map.d.ts +38 -29
- package/lib/components/editor/parseScript/buildInFuncNamespace/math.d.ts +19 -19
- package/lib/components/editor/parseScript/buildInFuncNamespace/matrix.d.ts +32 -82
- package/lib/components/editor/parseScript/buildInFuncNamespace/polyline.d.ts +6 -3
- package/lib/components/editor/parseScript/buildInFuncNamespace/request.d.ts +0 -1
- package/lib/components/editor/parseScript/buildInFuncNamespace/strategy.d.ts +1 -0
- package/lib/components/editor/parseScript/buildInFuncNamespace/string.d.ts +2 -2
- package/lib/components/editor/parseScript/buildInFuncNamespace/ta.d.ts +1 -2
- package/lib/components/editor/parseScript/buildInFuncNamespace/table.d.ts +29 -21
- package/lib/components/editor/parseScript/buildInFunction.d.ts +6 -1
- package/lib/components/editor/parseScript/enum.d.ts +13 -0
- package/lib/components/editor/parseScript/type.d.ts +10 -0
- package/lib/components/editor/parseScript/userTypeClass.d.ts +4 -3
- package/lib/components/editor/parseScript/utils.d.ts +2 -1
- package/lib/components/editor/parseScript/visitorParser.d.ts +2 -0
- package/lib/components/editor/type/index.d.ts +2 -0
- package/lib/trading-vue-editor.es.packages.js +963 -959
- package/lib/trading-vue-editor.umd.packages.mjs +21 -21
- package/package.json +1 -1
@@ -1,9 +1,9 @@
|
|
1
|
-
import { VSortOrder } from "../enum";
|
1
|
+
import { VInsType, VSortOrder } from "../enum";
|
2
2
|
import { TccErrorListener } from ".";
|
3
3
|
interface IArrayArgs {
|
4
|
-
id?:
|
5
|
-
id1?:
|
6
|
-
id2?:
|
4
|
+
id?: IPseudoArray;
|
5
|
+
id1?: IPseudoArray;
|
6
|
+
id2?: IPseudoArray;
|
7
7
|
size?: number;
|
8
8
|
initial_value?: any;
|
9
9
|
index_from?: number;
|
@@ -21,31 +21,31 @@ interface IArrayArgs {
|
|
21
21
|
export default class BuildInArray {
|
22
22
|
private _errorListener;
|
23
23
|
constructor(errorListener: TccErrorListener);
|
24
|
-
new({ size, initial_value, type }?: IArrayArgs):
|
25
|
-
new_float({ size, initial_value }?: IArrayArgs):
|
26
|
-
new_int({ size, initial_value }?: IArrayArgs):
|
27
|
-
new_color({ size, initial_value }?: IArrayArgs):
|
28
|
-
new_bool({ size, initial_value }?: IArrayArgs):
|
29
|
-
new_string({ size, initial_value }?: IArrayArgs):
|
30
|
-
new_line({ size, initial_value }?: IArrayArgs):
|
31
|
-
new_box({ size, initial_value }?: IArrayArgs):
|
32
|
-
new_table({ size, initial_value }?: IArrayArgs):
|
33
|
-
new_linefill({ size, initial_value }?: IArrayArgs):
|
34
|
-
new_label({ size, initial_value }?: IArrayArgs):
|
35
|
-
copy({ id }: IArrayArgs):
|
36
|
-
slice({ id, index_from, index_to }: IArrayArgs):
|
24
|
+
new({ size, initial_value, type }?: IArrayArgs): IPseudoArray;
|
25
|
+
new_float({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
26
|
+
new_int({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
27
|
+
new_color({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
28
|
+
new_bool({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
29
|
+
new_string({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
30
|
+
new_line({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
31
|
+
new_box({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
32
|
+
new_table({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
33
|
+
new_linefill({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
34
|
+
new_label({ size, initial_value }?: IArrayArgs): IPseudoArray;
|
35
|
+
copy({ id }: IArrayArgs): IPseudoArray | undefined;
|
36
|
+
slice({ id, index_from, index_to }: IArrayArgs): IPseudoArray | undefined;
|
37
37
|
size({ id }: IArrayArgs): number | undefined;
|
38
38
|
first({ id }: IArrayArgs): any;
|
39
|
-
abs({ id }: IArrayArgs, posStr: string):
|
39
|
+
abs({ id }: IArrayArgs, posStr: string): IPseudoArray | undefined;
|
40
40
|
avg({ id }: IArrayArgs, posStr: string): number | undefined;
|
41
41
|
binary_search({ id, val }: IArrayArgs, posStr: string): number | undefined;
|
42
42
|
binary_search_leftmost({ id, val }: IArrayArgs, posStr: string): number | undefined;
|
43
43
|
binary_search_rightmost({ id, val }: IArrayArgs, posStr: string): number | undefined;
|
44
44
|
clear({ id }: IArrayArgs): void;
|
45
|
-
concat({ id1, id2 }: IArrayArgs):
|
45
|
+
concat({ id1, id2 }: IArrayArgs): IPseudoArray | undefined;
|
46
46
|
covariance({ id1, id2, biased }: IArrayArgs, posStr: string): number | undefined;
|
47
47
|
every({ id }: IArrayArgs, posStr: string): boolean | undefined;
|
48
|
-
from(_: any, arrVals: any[]):
|
48
|
+
from(_: any, arrVals: any[]): IPseudoArray;
|
49
49
|
fill({ id, value, index_from, index_to }: IArrayArgs): void;
|
50
50
|
get({ id, index }: IArrayArgs): any;
|
51
51
|
includes({ id, value }: IArrayArgs): boolean | undefined;
|
@@ -54,7 +54,7 @@ export default class BuildInArray {
|
|
54
54
|
join({ id, separator }: IArrayArgs, posStr: string): string | undefined;
|
55
55
|
last({ id }: IArrayArgs): any;
|
56
56
|
lastindexof({ id, value }: IArrayArgs): number | undefined;
|
57
|
-
max(
|
57
|
+
max(arg: IArrayArgs, posStr: string): number | undefined;
|
58
58
|
median({ id }: IArrayArgs, posStr: string): number | undefined;
|
59
59
|
min({ id, nth }: IArrayArgs, posStr: string): number | undefined;
|
60
60
|
mode({ id }: IArrayArgs, posStr: string): number | undefined;
|
@@ -65,72 +65,17 @@ export default class BuildInArray {
|
|
65
65
|
push({ id, value }: IArrayArgs): void;
|
66
66
|
range({ id }: IArrayArgs, posStr: string): number | undefined;
|
67
67
|
remove({ id, index }: IArrayArgs): any;
|
68
|
-
reverse({ id }: IArrayArgs): void
|
68
|
+
reverse({ id }: IArrayArgs): void;
|
69
69
|
set({ id, index, value }: IArrayArgs): void;
|
70
70
|
shift({ id }: IArrayArgs): any;
|
71
71
|
some({ id }: IArrayArgs, posStr: string): boolean | undefined;
|
72
72
|
sort({ id, order }: IArrayArgs, posStr: string): void;
|
73
|
-
sort_indices({ id, order }: IArrayArgs, posStr: string):
|
74
|
-
standardize({ id }: IArrayArgs, posStr: string):
|
73
|
+
sort_indices({ id, order }: IArrayArgs, posStr: string): IPseudoArray | undefined;
|
74
|
+
standardize({ id }: IArrayArgs, posStr: string): IPseudoArray | undefined;
|
75
75
|
stdev({ id, biased }: IArrayArgs, posStr: string): number | undefined;
|
76
76
|
sum({ id }: IArrayArgs, posStr: string): any;
|
77
77
|
unshift({ id, value }: IArrayArgs): void;
|
78
78
|
variance({ id, biased }: IArrayArgs, posStr: string): number | undefined;
|
79
|
-
}
|
80
|
-
export declare class PseudoArray {
|
81
|
-
private _arrInstance;
|
82
|
-
private _errorListener?;
|
83
|
-
private _isNumber?;
|
84
|
-
private _thisType?;
|
85
|
-
constructor(size?: number, initialValue?: any, errorListener?: TccErrorListener, type?: string);
|
86
|
-
get isArray(): boolean;
|
87
|
-
get _value(): any[];
|
88
|
-
set _value(val: any[]);
|
89
|
-
private _deepCopyData;
|
90
|
-
private _copyData;
|
91
|
-
copy(): PseudoArray;
|
92
|
-
slice({ index_from, index_to }: IArrayArgs): PseudoArray;
|
93
|
-
size(): number;
|
94
|
-
first(): any;
|
95
|
-
abs(posStr: string): PseudoArray;
|
96
|
-
avg(posStr: string): number;
|
97
|
-
binary_search({ val }: IArrayArgs, posStr: string): number;
|
98
|
-
binary_search_leftmost({ val }: IArrayArgs, posStr: string): number;
|
99
|
-
binary_search_rightmost({ val }: IArrayArgs, posStr: string): number;
|
100
|
-
clear(): void;
|
101
|
-
concat({ id2 }: IArrayArgs): this;
|
102
|
-
covariance({ id2, biased }: IArrayArgs, posStr: string): number | undefined;
|
103
|
-
every(posStr: string): boolean;
|
104
|
-
fill({ value, index_from, index_to }: IArrayArgs): void;
|
105
|
-
get({ index }: IArrayArgs): any;
|
106
|
-
includes({ value }: IArrayArgs): boolean;
|
107
|
-
indexof({ value }: IArrayArgs): number;
|
108
|
-
insert({ index, value }: IArrayArgs): void;
|
109
|
-
join({ separator }: IArrayArgs | undefined, posStr: string): string;
|
110
|
-
last(): any;
|
111
|
-
lastindexof({ value }: IArrayArgs): number;
|
112
|
-
max(arg: IArrayArgs, posStr: string): number;
|
113
|
-
median(posStr: string): number;
|
114
|
-
min(arg: IArrayArgs, posStr: string): number;
|
115
|
-
mode(posStr: string): number;
|
116
|
-
percentile_linear_interpolation({ percentage }: IArrayArgs, posStr: string): number | undefined;
|
117
|
-
percentile_nearest_rank({ percentage }: IArrayArgs, posStr: string): number | undefined;
|
118
|
-
percentrank({ index }: IArrayArgs, posStr: string): number | undefined;
|
119
|
-
pop(): any;
|
120
|
-
push({ value }: IArrayArgs): void;
|
121
|
-
range(posStr: string): number | undefined;
|
122
|
-
remove({ index }: IArrayArgs): any;
|
123
|
-
reverse(): void;
|
124
|
-
set({ index, value }: IArrayArgs): void;
|
125
|
-
shift(): any;
|
126
|
-
some(posStr: string): boolean;
|
127
|
-
sort(arg: IArrayArgs, posStr: string): void;
|
128
|
-
sort_indices(arg: IArrayArgs, posStr: string): PseudoArray;
|
129
|
-
standardize(posStr: string): PseudoArray;
|
130
|
-
stdev(arg: IArrayArgs, posStr: string): number | undefined;
|
131
|
-
sum(posStr: string): any;
|
132
|
-
unshift({ value }: IArrayArgs): void;
|
133
|
-
variance(arg: IArrayArgs, posStr: string): number | undefined;
|
134
79
|
private _calculateVariances;
|
135
80
|
private _calculateStandardDeviations;
|
136
81
|
private _standardizeArray;
|
@@ -148,4 +93,12 @@ export declare class PseudoArray {
|
|
148
93
|
private _binarySearchLeftMost;
|
149
94
|
private _binarySearchRightMost;
|
150
95
|
}
|
96
|
+
export interface IPseudoArray {
|
97
|
+
isArray: boolean;
|
98
|
+
typeName?: string;
|
99
|
+
type: VInsType;
|
100
|
+
_isNumber: boolean;
|
101
|
+
_value: any[];
|
102
|
+
}
|
103
|
+
export declare function createPseudoArray(size?: number, initialValue?: any, type?: string): IPseudoArray;
|
151
104
|
export {};
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { IKeyObjectValue } from "../../type";
|
2
2
|
import { BuiltInVariables } from "../buildInVariables";
|
3
3
|
import { VExtend, VLineStyle, VSize, VText, VType, VXloc } from "../enum";
|
4
|
-
import {
|
4
|
+
import { IDrawComponent } from "../type";
|
5
|
+
import { IPoint as Point, TccErrorListener } from "./index";
|
5
6
|
export interface IBoxArgs {
|
6
7
|
id?: string;
|
7
8
|
top_left?: Point;
|
@@ -30,7 +31,7 @@ export interface IBoxArgs {
|
|
30
31
|
bar_index?: number;
|
31
32
|
}
|
32
33
|
type VBoxArgs = Omit<IBoxArgs, 'id'> & {
|
33
|
-
id:
|
34
|
+
id: IDrawComponent;
|
34
35
|
};
|
35
36
|
export default class BuildInBox {
|
36
37
|
private _variables;
|
@@ -40,54 +41,59 @@ export default class BuildInBox {
|
|
40
41
|
box({ x }: {
|
41
42
|
x?: Box;
|
42
43
|
}): Box | undefined;
|
43
|
-
new(args: IBoxArgs, posStr: string, paramNames: string[]):
|
44
|
+
new(args: IBoxArgs, posStr: string, paramNames: string[]): IDrawComponent;
|
44
45
|
private _parameterHandle;
|
45
46
|
private _preVerfiyArgs;
|
46
47
|
private _paramVerfiyHandle;
|
47
48
|
private _verfiyArgs;
|
48
49
|
private _paramVerfiy;
|
49
|
-
|
50
|
+
updateId(box: Box): string;
|
51
|
+
copy({ id }: VBoxArgs, posStr: string): IDrawComponent | undefined;
|
50
52
|
delete({ id }: VBoxArgs, posStr: string): void;
|
51
53
|
get_top({ id }: VBoxArgs, posStr: string): any;
|
52
54
|
get_bottom({ id }: VBoxArgs, posStr: string): any;
|
53
55
|
get_left({ id }: VBoxArgs, posStr: string): any;
|
54
56
|
get_right({ id }: VBoxArgs, posStr: string): any;
|
55
|
-
set_top({ id,
|
56
|
-
set_bottom({ id,
|
57
|
-
set_text({ id,
|
58
|
-
set_left({ id,
|
59
|
-
set_right({ id,
|
60
|
-
set_extend({ id,
|
61
|
-
set_bgcolor({ id,
|
62
|
-
set_border_color({ id,
|
63
|
-
set_border_width({ id,
|
64
|
-
set_border_style({ id,
|
65
|
-
set_lefttop({ id,
|
66
|
-
set_rightbottom({ id,
|
67
|
-
set_text_size({ id,
|
68
|
-
set_text_wrap({ id,
|
69
|
-
set_text_color({ id,
|
70
|
-
set_text_halign({ id,
|
71
|
-
set_text_valign({ id,
|
72
|
-
set_top_left_point({ id,
|
73
|
-
set_bottom_right_point({ id,
|
74
|
-
set_text_font_family({ id,
|
57
|
+
set_top({ id, top }: VBoxArgs, posStr: string): void;
|
58
|
+
set_bottom({ id, bottom }: VBoxArgs, posStr: string): void;
|
59
|
+
set_text({ id, text }: VBoxArgs, posStr: string): void;
|
60
|
+
set_left({ id, left }: VBoxArgs, posStr: string): void;
|
61
|
+
set_right({ id, right }: VBoxArgs, posStr: string): void;
|
62
|
+
set_extend({ id, extend }: VBoxArgs, posStr: string): void;
|
63
|
+
set_bgcolor({ id, color }: VBoxArgs, posStr: string): void;
|
64
|
+
set_border_color({ id, color }: VBoxArgs, posStr: string): void;
|
65
|
+
set_border_width({ id, width }: VBoxArgs, posStr: string): void;
|
66
|
+
set_border_style({ id, style }: VBoxArgs, posStr: string): void;
|
67
|
+
set_lefttop({ id, left, top }: VBoxArgs, posStr: string): void;
|
68
|
+
set_rightbottom({ id, right, bottom }: VBoxArgs, posStr: string): void;
|
69
|
+
set_text_size({ id, text_size }: VBoxArgs, posStr: string): void;
|
70
|
+
set_text_wrap({ id, text_wrap }: VBoxArgs, posStr: string): void;
|
71
|
+
set_text_color({ id, text_color }: VBoxArgs, posStr: string): void;
|
72
|
+
set_text_halign({ id, text_halign }: VBoxArgs, posStr: string): void;
|
73
|
+
set_text_valign({ id, text_valign }: VBoxArgs, posStr: string): void;
|
74
|
+
set_top_left_point({ id, point }: VBoxArgs, posStr: string): void;
|
75
|
+
set_bottom_right_point({ id, point }: VBoxArgs, posStr: string): void;
|
76
|
+
set_text_font_family({ id, text_font_family }: VBoxArgs, posStr: string): void;
|
77
|
+
private _getBox;
|
75
78
|
}
|
79
|
+
export declare function createBox(key: string, data: IKeyObjectValue): IDrawComponent;
|
76
80
|
export declare class Box {
|
77
81
|
private _id;
|
78
82
|
private _variables;
|
79
83
|
private _errorListener;
|
80
|
-
|
81
|
-
|
84
|
+
_suffix: string;
|
85
|
+
_preId: string;
|
82
86
|
private _data;
|
83
87
|
constructor(variables: BuiltInVariables, key: string, errorListener: TccErrorListener, data: IKeyObjectValue);
|
84
88
|
get type(): VType;
|
85
89
|
get id(): string;
|
90
|
+
set id(key: string);
|
86
91
|
get preId(): string;
|
92
|
+
set preId(key: string);
|
87
93
|
updateId(): string;
|
88
94
|
set data(data: IKeyObjectValue);
|
89
95
|
get data(): IKeyObjectValue;
|
90
|
-
copy(posStr: string):
|
96
|
+
copy(posStr: string): IDrawComponent;
|
91
97
|
delete(posStr: string): void;
|
92
98
|
get_top(posStr: string): any;
|
93
99
|
set_top({ top }: IBoxArgs, posStr: string): void;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { BuiltInVariables } from "../buildInVariables";
|
2
|
+
import { VInsType } from "../enum";
|
2
3
|
interface IChartPointArgs {
|
3
4
|
id?: Point;
|
4
5
|
price?: number;
|
@@ -10,11 +11,19 @@ export default class ChartPoint {
|
|
10
11
|
constructor(variables: BuiltInVariables);
|
11
12
|
new({ price, time, index }: IChartPointArgs): Point;
|
12
13
|
now({ price }: IChartPointArgs): Point;
|
13
|
-
copy({ id }: IChartPointArgs):
|
14
|
+
copy({ id }: IChartPointArgs): IPoint | undefined;
|
14
15
|
from_index({ price, index }: IChartPointArgs): Point;
|
15
16
|
from_time({ price, time }: IChartPointArgs): Point;
|
16
17
|
}
|
17
|
-
export
|
18
|
+
export interface IPoint {
|
19
|
+
price?: number;
|
20
|
+
index?: number;
|
21
|
+
time?: number;
|
22
|
+
type: VInsType;
|
23
|
+
typeName: string;
|
24
|
+
}
|
25
|
+
export declare function createPoint(price?: number, index?: number, time?: number): IPoint;
|
26
|
+
declare class Point {
|
18
27
|
private _index?;
|
19
28
|
private _price?;
|
20
29
|
private _time?;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import BuildInArray, {
|
1
|
+
import BuildInArray, { createPseudoArray } from "./array";
|
2
2
|
import BuildInMath from "./math";
|
3
3
|
import BuildInTa from "./ta";
|
4
4
|
import BuildInInput from "./input";
|
@@ -7,11 +7,11 @@ import BuildInMatrix from "./matrix";
|
|
7
7
|
import BuildInTimeframe from "./timeframe";
|
8
8
|
import BuildInStr from "./string";
|
9
9
|
import BuildInMap from "./map";
|
10
|
-
import ChartPoint, {
|
10
|
+
import ChartPoint, { createPoint, IPoint } from "./chartPoint";
|
11
11
|
import BuildInLabel, { PartialLabelArgs, Label } from "./label";
|
12
12
|
import BuildInPolyline, { IPolyline, Polyline } from "./polyline";
|
13
|
-
import BuildInLine, { ILineArgs, Line } from "./line";
|
14
|
-
import BuildInLinefill, { TLinefill, Linefill } from "./linefill";
|
13
|
+
import BuildInLine, { ILineArgs, Line, ILine } from "./line";
|
14
|
+
import BuildInLinefill, { TLinefill, Linefill, ILinefill } from "./linefill";
|
15
15
|
import BuildInBox, { IBoxArgs, Box } from "./box";
|
16
16
|
import BuildInTable, { ITableArgs, Table } from "./table";
|
17
17
|
import Strategy, { IOrder, IStrategy } from './strategy';
|
@@ -21,5 +21,5 @@ import { Log } from './log';
|
|
21
21
|
import { Runtime } from './runtime';
|
22
22
|
export { TccErrorListener } from './errorListener';
|
23
23
|
export type { IColorArgs } from './color';
|
24
|
-
export { BuildInArray, BuildInMath, BuildInTa, BuildInInput, BuildInColor, BuildInMatrix, ChartPoint,
|
25
|
-
export type { PartialLabelArgs, IPolyline, ILineArgs, TLinefill, IBoxArgs, ITableArgs, IOrder, IStrategy };
|
24
|
+
export { BuildInArray, BuildInMath, BuildInTa, BuildInInput, BuildInColor, BuildInMatrix, ChartPoint, createPoint, BuildInTimeframe, BuildInStr, BuildInMap, createPseudoArray, BuildInLabel, BuildInPolyline, BuildInLine, Label, Polyline, Line, BuildInLinefill, Linefill, BuildInBox, Box, BuildInTable, Table, Log, Runtime, Strategy, Request, Syminfo };
|
25
|
+
export type { PartialLabelArgs, IPolyline, ILineArgs, TLinefill, ILinefill, IBoxArgs, ITableArgs, IOrder, IStrategy, IPoint, ILine };
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { IKeyObjectValue } from "../../type";
|
2
2
|
import { BuiltInVariables } from "../buildInVariables";
|
3
3
|
import { VLabelStyle, VSize, VText, VType, VXloc, VYloc } from "../enum";
|
4
|
-
import {
|
4
|
+
import { IDrawComponent } from "../type";
|
5
|
+
import { IPoint as Point, TccErrorListener } from "./index";
|
5
6
|
interface ILabelArgs {
|
6
7
|
id: string;
|
7
8
|
point: Point;
|
@@ -21,42 +22,45 @@ interface ILabelArgs {
|
|
21
22
|
}
|
22
23
|
export type PartialLabelArgs = Partial<ILabelArgs>;
|
23
24
|
type TLabelArgs = Omit<PartialLabelArgs, 'id'> & {
|
24
|
-
id:
|
25
|
+
id: IDrawComponent;
|
25
26
|
};
|
26
27
|
export default class BuildInLabel {
|
27
28
|
private _variables;
|
28
29
|
private _errorListener;
|
29
30
|
private _defaultLabel;
|
30
31
|
constructor(variables: BuiltInVariables, errorListener: TccErrorListener);
|
31
|
-
new(args: PartialLabelArgs, posStr: string, paramNames: string[]):
|
32
|
+
new(args: PartialLabelArgs, posStr: string, paramNames: string[]): IDrawComponent;
|
32
33
|
private _parameterHandle;
|
33
34
|
private _preVerfiyArgs;
|
34
35
|
private _paramVerfiyHandle;
|
35
36
|
private _verfiyArgs;
|
36
37
|
private _paramVerfiy;
|
38
|
+
updateId(id: IDrawComponent): string;
|
37
39
|
label(args: {
|
38
40
|
x?: Label;
|
39
41
|
}): Label | undefined;
|
40
|
-
copy({ id }: TLabelArgs, posStr: string):
|
42
|
+
copy({ id }: TLabelArgs, posStr: string): IDrawComponent | undefined;
|
41
43
|
get_x({ id }: TLabelArgs, posStr: string): any;
|
42
44
|
get_y({ id }: TLabelArgs, posStr: string): any;
|
43
|
-
set_x({ id,
|
44
|
-
set_y({ id,
|
45
|
+
set_x({ id, x }: TLabelArgs, posStr: string): void;
|
46
|
+
set_y({ id, y }: TLabelArgs, posStr: string): void;
|
45
47
|
delete({ id }: TLabelArgs, posStr: string): void;
|
46
48
|
get_text({ id }: TLabelArgs, posStr: string): any;
|
47
|
-
set_xy({ id,
|
48
|
-
set_size({ id,
|
49
|
-
set_xloc({ id,
|
50
|
-
set_yloc({ id,
|
51
|
-
set_style({ id,
|
49
|
+
set_xy({ id, x, y }: TLabelArgs, posStr: string): void;
|
50
|
+
set_size({ id, size }: TLabelArgs, posStr: string): void;
|
51
|
+
set_xloc({ id, x, xloc }: TLabelArgs, posStr: string): void;
|
52
|
+
set_yloc({ id, yloc }: TLabelArgs, posStr: string): void;
|
53
|
+
set_style({ id, style }: TLabelArgs, posStr: string): void;
|
52
54
|
set_color({ id, ...args }: TLabelArgs, posStr: string): void;
|
53
|
-
set_tooltip({ id,
|
54
|
-
set_point({ id,
|
55
|
-
set_text({ id,
|
55
|
+
set_tooltip({ id, tooltip }: TLabelArgs, posStr: string): void;
|
56
|
+
set_point({ id, point }: TLabelArgs, posStr: string): void;
|
57
|
+
set_text({ id, text }: TLabelArgs, posStr: string): void;
|
56
58
|
set_textcolor({ id, ...args }: TLabelArgs, posStr: string): void;
|
57
|
-
set_textalign({ id,
|
58
|
-
set_text_font_family({ id,
|
59
|
+
set_textalign({ id, textalign }: TLabelArgs, posStr: string): void;
|
60
|
+
set_text_font_family({ id, text_font_family }: TLabelArgs, posStr: string): void;
|
61
|
+
private _getLabel;
|
59
62
|
}
|
63
|
+
export declare function createLabel(key: string, data: IKeyObjectValue): IDrawComponent;
|
60
64
|
export declare class Label {
|
61
65
|
private _id;
|
62
66
|
private _variables;
|
@@ -71,7 +75,7 @@ export declare class Label {
|
|
71
75
|
updateId(): string;
|
72
76
|
set data(data: IKeyObjectValue);
|
73
77
|
get data(): IKeyObjectValue;
|
74
|
-
copy(posStr: string):
|
78
|
+
copy(posStr: string): IDrawComponent;
|
75
79
|
get_x(posStr: string): any;
|
76
80
|
get_y(posStr: string): any;
|
77
81
|
set_x({ x }: PartialLabelArgs, posStr: string): void;
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import { IKeyObjectValue } from "../../type";
|
2
2
|
import { BuiltInVariables } from "../buildInVariables";
|
3
3
|
import { VExtend, VLineStyle, VType, VXloc } from "../enum";
|
4
|
-
import {
|
4
|
+
import { IDrawComponent } from "../type";
|
5
|
+
import { IPoint as Point, TccErrorListener } from "./index";
|
5
6
|
export interface ILineArgs {
|
6
7
|
id?: string;
|
7
8
|
x?: number;
|
@@ -23,43 +24,51 @@ export interface ILineArgs {
|
|
23
24
|
isVar?: boolean;
|
24
25
|
}
|
25
26
|
type LineArgs = Omit<ILineArgs, 'id'> & {
|
26
|
-
id:
|
27
|
+
id: ILine;
|
27
28
|
};
|
28
29
|
export default class BuildInLine {
|
29
30
|
private _variables;
|
30
31
|
private _errorListener;
|
31
32
|
private _defaultLine;
|
32
33
|
constructor(variables: BuiltInVariables, errorListener: TccErrorListener);
|
33
|
-
new(args: ILineArgs, posStr: string, paramNames: string[]):
|
34
|
+
new(args: ILineArgs, posStr: string, paramNames: string[]): ILine;
|
34
35
|
private _parameterHandle;
|
35
36
|
private _preVerfiyArgs;
|
36
37
|
private _paramVerfiyHandle;
|
37
38
|
private _verfiyArgs;
|
38
39
|
private _paramVerfiy;
|
40
|
+
updateId(id: ILine): string;
|
41
|
+
static __setFillKeys(id: ILine, key: string): void;
|
42
|
+
static __updateFillKeys(id: ILine, oldKey: string, key: string): void;
|
39
43
|
line(args: {
|
40
44
|
x?: Line;
|
41
45
|
}): Line | undefined;
|
42
|
-
copy({ id }: LineArgs, posStr: string):
|
46
|
+
copy({ id }: LineArgs, posStr: string): ILine | undefined;
|
43
47
|
delete({ id }: LineArgs, posStr: string): void;
|
44
48
|
get_x1({ id }: LineArgs, posStr: string): any;
|
45
49
|
get_x2({ id }: LineArgs, posStr: string): any;
|
46
50
|
get_y1({ id }: LineArgs, posStr: string): any;
|
47
51
|
get_y2({ id }: LineArgs, posStr: string): any;
|
48
|
-
set_x1({ id,
|
49
|
-
set_x2({ id,
|
50
|
-
set_y1({ id,
|
51
|
-
set_y2({ id,
|
52
|
-
set_xy1({ id,
|
53
|
-
set_xy2({ id,
|
54
|
-
set_xloc({ id,
|
55
|
-
get_price({ id,
|
52
|
+
set_x1({ id, x }: LineArgs, posStr: string): void;
|
53
|
+
set_x2({ id, x }: LineArgs, posStr: string): void;
|
54
|
+
set_y1({ id, y }: LineArgs, posStr: string): void;
|
55
|
+
set_y2({ id, y }: LineArgs, posStr: string): void;
|
56
|
+
set_xy1({ id, x, y }: LineArgs, posStr: string): void;
|
57
|
+
set_xy2({ id, x, y }: LineArgs, posStr: string): void;
|
58
|
+
set_xloc({ id, xloc, x1, x2 }: LineArgs, posStr: string): void;
|
59
|
+
get_price({ id, x }: LineArgs, posStr: string): any;
|
56
60
|
set_color({ id, ...args }: LineArgs, posStr: string): void;
|
57
|
-
set_style({ id,
|
58
|
-
set_width({ id,
|
59
|
-
set_extend({ id,
|
60
|
-
set_first_point({ id,
|
61
|
-
set_second_point({ id,
|
61
|
+
set_style({ id, style }: LineArgs, posStr: string): void;
|
62
|
+
set_width({ id, width }: LineArgs, posStr: string): void;
|
63
|
+
set_extend({ id, extend }: LineArgs, posStr: string): void;
|
64
|
+
set_first_point({ id, point }: LineArgs, posStr: string): void;
|
65
|
+
set_second_point({ id, point }: LineArgs, posStr: string): void;
|
66
|
+
private _getLine;
|
67
|
+
}
|
68
|
+
export interface ILine extends IDrawComponent {
|
69
|
+
fillKeys: string[];
|
62
70
|
}
|
71
|
+
export declare function createLine(key: string, data: IKeyObjectValue): ILine;
|
63
72
|
export declare class Line {
|
64
73
|
private _variables;
|
65
74
|
private _id;
|
@@ -79,7 +88,7 @@ export declare class Line {
|
|
79
88
|
set data(data: IKeyObjectValue);
|
80
89
|
get data(): IKeyObjectValue;
|
81
90
|
get originData(): IKeyObjectValue;
|
82
|
-
copy(posStr: string):
|
91
|
+
copy(posStr: string): ILine;
|
83
92
|
delete(posStr: string): void;
|
84
93
|
get_price({ x }: ILineArgs, posStr: string): any;
|
85
94
|
get_x1(posStr: string): any;
|
@@ -1,11 +1,12 @@
|
|
1
1
|
import { IKeyObjectValue } from "../../type";
|
2
2
|
import { BuiltInVariables } from "../buildInVariables";
|
3
3
|
import { VType } from "../enum";
|
4
|
-
import {
|
4
|
+
import { IDrawComponent } from "../type";
|
5
|
+
import { Line, ILineArgs, ILine } from "./line";
|
5
6
|
interface ILinefillArgs {
|
6
|
-
id?:
|
7
|
-
line1?:
|
8
|
-
line2?:
|
7
|
+
id?: ILinefill;
|
8
|
+
line1?: ILine;
|
9
|
+
line2?: ILine;
|
9
10
|
color?: string;
|
10
11
|
bar_index?: number;
|
11
12
|
}
|
@@ -17,12 +18,20 @@ export type TLinefill = Omit<ILinefillArgs, 'line1' | 'line2' | 'id'> & {
|
|
17
18
|
export default class BuildInLinefill {
|
18
19
|
private _variables;
|
19
20
|
constructor(variables: BuiltInVariables);
|
20
|
-
new(args: ILinefillArgs, posStr: string):
|
21
|
+
new(args: ILinefillArgs, posStr: string): ILinefill;
|
22
|
+
private _verifyLineKey;
|
23
|
+
updateId(id: ILinefill): string;
|
21
24
|
delete({ id }: ILinefillArgs): void;
|
22
|
-
get_line1({ id }: ILinefillArgs):
|
23
|
-
get_line2({ id }: ILinefillArgs):
|
25
|
+
get_line1({ id }: ILinefillArgs): ILine | undefined;
|
26
|
+
get_line2({ id }: ILinefillArgs): ILine | undefined;
|
24
27
|
set_color({ id, ...args }: ILinefillArgs): void;
|
25
28
|
}
|
29
|
+
export interface ILinefill extends IDrawComponent {
|
30
|
+
line1?: ILine;
|
31
|
+
line2?: ILine;
|
32
|
+
lineKey: string;
|
33
|
+
}
|
34
|
+
export declare function createLinefill(key: string, data: IKeyObjectValue, lineKey: string, line1?: ILine, line2?: ILine): ILinefill;
|
26
35
|
export declare class Linefill {
|
27
36
|
private _id;
|
28
37
|
private _line1?;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { BuiltInVariables } from "../buildInVariables";
|
2
|
-
import { PseudoArray } from "./array";
|
3
2
|
import { BuildInStr } from ".";
|
3
|
+
import { IKeyObjectValue } from "../../type";
|
4
4
|
interface ILogArgs {
|
5
5
|
message?: string;
|
6
6
|
formatString?: string;
|
@@ -22,9 +22,9 @@ export declare class Log {
|
|
22
22
|
get logs(): ILog[];
|
23
23
|
clearLogForIndex(index: number): void;
|
24
24
|
clearLogs(): void;
|
25
|
-
info(args: ILogArgs, replaces: (string | number |
|
26
|
-
error(args: ILogArgs, replaces: (string | number |
|
27
|
-
warning(args: ILogArgs, replaces: (string | number |
|
25
|
+
info(args: ILogArgs, replaces: (string | number | IKeyObjectValue)[], posStr: string): void;
|
26
|
+
error(args: ILogArgs, replaces: (string | number | IKeyObjectValue)[], posStr: string): void;
|
27
|
+
warning(args: ILogArgs, replaces: (string | number | IKeyObjectValue)[], posStr: string): void;
|
28
28
|
mergeLogs(logs: ILog[]): void;
|
29
29
|
private _addLog;
|
30
30
|
}
|
@@ -1,42 +1,51 @@
|
|
1
|
-
import {
|
2
|
-
import {
|
1
|
+
import { IKeyObjectValue } from "../../type";
|
2
|
+
import { VInsType } from "../enum";
|
3
3
|
interface IMapArgs {
|
4
|
-
id?:
|
4
|
+
id?: IPseudoMap;
|
5
5
|
key?: any;
|
6
6
|
value?: any;
|
7
|
-
id2?:
|
7
|
+
id2?: IPseudoMap;
|
8
8
|
}
|
9
9
|
export default class BuildInMap {
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
10
|
+
constructor();
|
11
|
+
new({ type }: {
|
12
|
+
type: string;
|
13
|
+
}): {
|
14
|
+
isMap: boolean;
|
15
|
+
keyTypeName: string;
|
16
|
+
typeName: string;
|
17
|
+
_value: any;
|
18
|
+
type: VInsType;
|
19
|
+
};
|
20
|
+
copy({ id }: IMapArgs): {
|
21
|
+
isMap: boolean;
|
22
|
+
keyTypeName: string;
|
23
|
+
typeName: string;
|
24
|
+
_value: any;
|
25
|
+
type: VInsType;
|
26
|
+
} | undefined;
|
14
27
|
get({ id, key }: IMapArgs): any;
|
15
|
-
put({ id, key, value }: IMapArgs):
|
16
|
-
keys({ id }: IMapArgs):
|
28
|
+
put({ id, key, value }: IMapArgs): any;
|
29
|
+
keys({ id }: IMapArgs): import("./array").IPseudoArray | undefined;
|
17
30
|
size({ id }: IMapArgs): number | undefined;
|
18
31
|
clear({ id }: IMapArgs): void;
|
19
32
|
remove({ id, key }: IMapArgs): any;
|
20
|
-
values({ id }: IMapArgs):
|
21
|
-
put_all({ id, id2 }: IMapArgs):
|
33
|
+
values({ id }: IMapArgs): import("./array").IPseudoArray | undefined;
|
34
|
+
put_all({ id, id2 }: IMapArgs): IPseudoMap | undefined;
|
22
35
|
contains({ id, key }: IMapArgs): boolean | undefined;
|
23
36
|
}
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
private _copyMap;
|
31
|
-
copy(): PseudoMap;
|
32
|
-
get({ key }: IMapArgs): any;
|
33
|
-
put({ key, value }: IMapArgs): Map<any, any>;
|
34
|
-
keys(): PseudoArray;
|
35
|
-
size(): number;
|
36
|
-
clear(): void;
|
37
|
-
remove({ key }: IMapArgs): any;
|
38
|
-
values(): PseudoArray;
|
39
|
-
put_all({ id2 }: IMapArgs): void;
|
40
|
-
contains({ key }: IMapArgs): boolean;
|
37
|
+
interface IPseudoMap {
|
38
|
+
isMap: boolean;
|
39
|
+
keyTypeName: string;
|
40
|
+
typeName: string;
|
41
|
+
_value: IKeyObjectValue;
|
42
|
+
type: VInsType.MAP;
|
41
43
|
}
|
44
|
+
export declare function createMap(types: string[]): {
|
45
|
+
isMap: boolean;
|
46
|
+
keyTypeName: string;
|
47
|
+
typeName: string;
|
48
|
+
_value: any;
|
49
|
+
type: VInsType;
|
50
|
+
};
|
42
51
|
export {};
|