@xframes/node 0.0.12 → 0.0.14
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/dist/index.d.ts +1 -401
- package/dist/index.js +17 -1543
- package/dist/lib/XFrames.d.ts +228 -0
- package/dist/lib/XFrames.js +9 -0
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/index.js +7 -0
- package/dist/lib/render.d.ts +21 -0
- package/dist/lib/render.js +84 -0
- package/package.json +3 -2
- package/dist/glfw3.dll +0 -0
- package/dist/xframes.exp +0 -0
- package/dist/xframes.lib +0 -0
- package/dist/xframes.node +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,401 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
import { PropsWithChildren } from "react";
|
|
4
|
-
export type MainComponentProps = PropsWithChildren;
|
|
5
|
-
export const MainComponent: React.ComponentType<MainComponentProps>;
|
|
6
|
-
export const XFrames: React.FunctionComponent<{
|
|
7
|
-
children?: React.ReactNode | undefined;
|
|
8
|
-
}> & {
|
|
9
|
-
readonly BulletText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
10
|
-
text: string;
|
|
11
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
12
|
-
text: string;
|
|
13
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
14
|
-
readonly Button: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
15
|
-
onClick?: () => void;
|
|
16
|
-
label?: string;
|
|
17
|
-
size?: import("@xframes/common").ImVec2;
|
|
18
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
19
|
-
onClick?: () => void;
|
|
20
|
-
label?: string;
|
|
21
|
-
size?: import("@xframes/common").ImVec2;
|
|
22
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
23
|
-
readonly Checkbox: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
24
|
-
defaultChecked?: boolean;
|
|
25
|
-
label?: string;
|
|
26
|
-
onChange?: (event: import("@xframes/common").CheckboxChangeEvent) => void;
|
|
27
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
28
|
-
defaultChecked?: boolean;
|
|
29
|
-
label?: string;
|
|
30
|
-
onChange?: (event: import("@xframes/common").CheckboxChangeEvent) => void;
|
|
31
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
32
|
-
readonly Child: React.FunctionComponent<{
|
|
33
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
34
|
-
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
35
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
36
|
-
} & import("@xframes/common").WidgetStyleProps) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
37
|
-
readonly ClippedMultiLineTextRenderer: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & React.RefAttributes<import("@xframes/common").ClippedMultiLineTextRendererImperativeHandle>>;
|
|
38
|
-
readonly CollapsingHeader: React.FunctionComponent<{
|
|
39
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
40
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
41
|
-
label?: string;
|
|
42
|
-
}> & ((props: {
|
|
43
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
44
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
45
|
-
label?: string;
|
|
46
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
47
|
-
readonly Combo: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
48
|
-
placeholder?: string;
|
|
49
|
-
options?: string[];
|
|
50
|
-
optionsList?: string;
|
|
51
|
-
initialSelectedIndex?: number;
|
|
52
|
-
onChange?: (event: import("@xframes/common").ComboChangeEvent) => void;
|
|
53
|
-
} & React.RefAttributes<{
|
|
54
|
-
setSelectedIndex: (index: number) => void;
|
|
55
|
-
}>>;
|
|
56
|
-
readonly DIWindow: React.FunctionComponent<{
|
|
57
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
58
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
59
|
-
title: string;
|
|
60
|
-
width?: number;
|
|
61
|
-
height?: number;
|
|
62
|
-
}> & ((props: {
|
|
63
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
64
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
65
|
-
title: string;
|
|
66
|
-
width?: number;
|
|
67
|
-
height?: number;
|
|
68
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
69
|
-
readonly DisabledText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
70
|
-
text: string;
|
|
71
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
72
|
-
text: string;
|
|
73
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
74
|
-
readonly Group: React.FunctionComponent<{
|
|
75
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
76
|
-
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
77
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
78
|
-
} & import("@xframes/common").WidgetStyleProps) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
79
|
-
readonly Image: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
80
|
-
url: string;
|
|
81
|
-
width?: number;
|
|
82
|
-
height?: number;
|
|
83
|
-
} & React.RefAttributes<import("@xframes/common").ImageImperativeHandle>>;
|
|
84
|
-
readonly InputText: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
85
|
-
defaultValue?: string;
|
|
86
|
-
hint?: string;
|
|
87
|
-
onChange?: (event: import("@xframes/common").InputTextChangeEvent) => void;
|
|
88
|
-
} & React.RefAttributes<{
|
|
89
|
-
setValue: (value: string) => void;
|
|
90
|
-
}>>;
|
|
91
|
-
readonly ItemTooltip: React.FunctionComponent<{
|
|
92
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
93
|
-
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
94
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
95
|
-
} & import("@xframes/common").WidgetStyleProps) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
96
|
-
readonly MapView: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & React.RefAttributes<import("@xframes/common").MapImperativeHandle>>;
|
|
97
|
-
readonly MultiSlider: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
98
|
-
numValues: 2 | 3 | 4;
|
|
99
|
-
defaultValues?: number[];
|
|
100
|
-
min?: number;
|
|
101
|
-
max?: number;
|
|
102
|
-
decimalDigits?: number;
|
|
103
|
-
onChange?: (event: import("@xframes/common").MultiSliderChangeEvent<number>) => void;
|
|
104
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
105
|
-
numValues: 2 | 3 | 4;
|
|
106
|
-
defaultValues?: number[];
|
|
107
|
-
min?: number;
|
|
108
|
-
max?: number;
|
|
109
|
-
decimalDigits?: number;
|
|
110
|
-
onChange?: (event: import("@xframes/common").MultiSliderChangeEvent<number>) => void;
|
|
111
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
112
|
-
readonly Node: React.FunctionComponent<{
|
|
113
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
114
|
-
} & {
|
|
115
|
-
root?: boolean;
|
|
116
|
-
cull?: boolean;
|
|
117
|
-
trackMouseClickEvents?: boolean;
|
|
118
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
119
|
-
onClick?: () => void;
|
|
120
|
-
} & import("@xframes/common").NodeStyleProps>;
|
|
121
|
-
readonly PlotCandlestick: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
122
|
-
bullColor?: string;
|
|
123
|
-
bearColor?: string;
|
|
124
|
-
axisAutoFit?: boolean;
|
|
125
|
-
} & React.RefAttributes<import("@xframes/common").PlotCandlestickImperativeHandle>>;
|
|
126
|
-
readonly PlotLine: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
127
|
-
xAxisDecimalDigits?: number;
|
|
128
|
-
yAxisDecimalDigits?: number;
|
|
129
|
-
markerStyle?: import("@xframes/common").ImPlotMarker;
|
|
130
|
-
xAxisScale?: import("@xframes/common").ImPlotScale;
|
|
131
|
-
yAxisScale?: import("@xframes/common").ImPlotScale;
|
|
132
|
-
axisAutoFit?: boolean;
|
|
133
|
-
} & React.RefAttributes<import("@xframes/common").PlotLineImperativeHandle>>;
|
|
134
|
-
readonly SeparatorText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
135
|
-
label: string;
|
|
136
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
137
|
-
label: string;
|
|
138
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
139
|
-
readonly Separator: React.FunctionComponent<import("@xframes/common").WidgetStyleProps> & ((props: import("@xframes/common").WidgetStyleProps) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
140
|
-
readonly Slider: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
141
|
-
sliderType?: import("@xframes/common").SliderTypes;
|
|
142
|
-
defaultValue?: number;
|
|
143
|
-
min?: number;
|
|
144
|
-
max?: number;
|
|
145
|
-
onChange?: (event: import("@xframes/common").SliderChangeEvent) => void;
|
|
146
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
147
|
-
sliderType?: import("@xframes/common").SliderTypes;
|
|
148
|
-
defaultValue?: number;
|
|
149
|
-
min?: number;
|
|
150
|
-
max?: number;
|
|
151
|
-
onChange?: (event: import("@xframes/common").SliderChangeEvent) => void;
|
|
152
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
153
|
-
readonly TabBar: React.FunctionComponent<{
|
|
154
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
155
|
-
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
156
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
157
|
-
} & import("@xframes/common").WidgetStyleProps) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
158
|
-
readonly TabItem: React.FunctionComponent<{
|
|
159
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
160
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
161
|
-
label: string;
|
|
162
|
-
onOpenChange?: (event: import("@xframes/common").TabItemChangeEvent) => void;
|
|
163
|
-
}> & ((props: {
|
|
164
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
165
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
166
|
-
label: string;
|
|
167
|
-
onOpenChange?: (event: import("@xframes/common").TabItemChangeEvent) => void;
|
|
168
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
169
|
-
readonly Table: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
170
|
-
columns: {
|
|
171
|
-
heading: string;
|
|
172
|
-
fieldId?: string;
|
|
173
|
-
}[];
|
|
174
|
-
initialData?: string;
|
|
175
|
-
clipRows?: number;
|
|
176
|
-
} & React.RefAttributes<import("@xframes/common").TableImperativeHandle>>;
|
|
177
|
-
readonly TextWrap: React.FunctionComponent<{
|
|
178
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
179
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
180
|
-
width: number;
|
|
181
|
-
}> & ((props: {
|
|
182
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
183
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
184
|
-
width: number;
|
|
185
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
186
|
-
readonly TreeNode: React.FunctionComponent<{
|
|
187
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
188
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
189
|
-
itemId: string;
|
|
190
|
-
onClick?: () => void;
|
|
191
|
-
leaf?: boolean;
|
|
192
|
-
open?: boolean;
|
|
193
|
-
defaultOpen?: boolean;
|
|
194
|
-
selected?: boolean;
|
|
195
|
-
defaultSelected?: boolean;
|
|
196
|
-
selectable?: boolean;
|
|
197
|
-
label?: string;
|
|
198
|
-
}> & ((props: {
|
|
199
|
-
children?: import("@xframes/common").WidgetReactNode;
|
|
200
|
-
} & import("@xframes/common").WidgetStyleProps & {
|
|
201
|
-
itemId: string;
|
|
202
|
-
onClick?: () => void;
|
|
203
|
-
leaf?: boolean;
|
|
204
|
-
open?: boolean;
|
|
205
|
-
defaultOpen?: boolean;
|
|
206
|
-
selected?: boolean;
|
|
207
|
-
defaultSelected?: boolean;
|
|
208
|
-
selectable?: boolean;
|
|
209
|
-
label?: string;
|
|
210
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
211
|
-
readonly TreeView: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
212
|
-
items: import("@xframes/common").TreeViewItem[];
|
|
213
|
-
defaultSelectedItemIds?: string[];
|
|
214
|
-
selectedItemIds?: string[];
|
|
215
|
-
allowMultipleSelection?: boolean;
|
|
216
|
-
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
217
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
218
|
-
items: import("@xframes/common").TreeViewItem[];
|
|
219
|
-
defaultSelectedItemIds?: string[];
|
|
220
|
-
selectedItemIds?: string[];
|
|
221
|
-
allowMultipleSelection?: boolean;
|
|
222
|
-
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
223
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
224
|
-
readonly UnformattedText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
225
|
-
text: string;
|
|
226
|
-
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
227
|
-
text: string;
|
|
228
|
-
}) => import("@xframes/common").WidgetReactElement<"BulletText"> | import("@xframes/common").WidgetReactElement<"Button"> | import("@xframes/common").WidgetReactElement<"Checkbox"> | import("@xframes/common").WidgetReactElement<"Child"> | import("@xframes/common").WidgetReactElement<"ClippedMultiLineTextRenderer"> | import("@xframes/common").WidgetReactElement<"CollapsingHeader"> | import("@xframes/common").WidgetReactElement<"Combo"> | import("@xframes/common").WidgetReactElement<"DIWindow"> | import("@xframes/common").WidgetReactElement<"DisabledText"> | import("@xframes/common").WidgetReactElement<"Group"> | import("@xframes/common").WidgetReactElement<"Image"> | import("@xframes/common").WidgetReactElement<"InputText"> | import("@xframes/common").WidgetReactElement<"ItemTooltip"> | import("@xframes/common").WidgetReactElement<"MapView"> | import("@xframes/common").WidgetReactElement<"MultiSlider"> | import("@xframes/common").WidgetReactElement<"HelpMarker"> | import("@xframes/common").WidgetReactElement<"Indent"> | import("@xframes/common").WidgetReactElement<"PlotCandlestick"> | import("@xframes/common").WidgetReactElement<"PlotLine"> | import("@xframes/common").WidgetReactElement<"Separator"> | import("@xframes/common").WidgetReactElement<"SeparatorText"> | import("@xframes/common").WidgetReactElement<"Slider"> | import("@xframes/common").WidgetReactElement<"TabBar"> | import("@xframes/common").WidgetReactElement<"TabItem"> | import("@xframes/common").WidgetReactElement<"Table"> | import("@xframes/common").WidgetReactElement<"TextWrap"> | import("@xframes/common").WidgetReactElement<"TreeNode"> | import("@xframes/common").WidgetReactElement<"TreeView"> | import("@xframes/common").WidgetReactElement<"UnformattedText">);
|
|
229
|
-
};
|
|
230
|
-
}
|
|
231
|
-
declare module "components/TradingGuiDemo/cryptoSymbols" {
|
|
232
|
-
export const cryptoSymbols: string[];
|
|
233
|
-
}
|
|
234
|
-
declare module "components/TradingGuiDemo/store" {
|
|
235
|
-
import type { CryptoQuote } from "@alpacahq/alpaca-trade-api/dist/resources/datav2/entityv2.d.ts";
|
|
236
|
-
export const onLoadCryptoQuote: (symbol: string, cryptoQuote: CryptoQuote) => void;
|
|
237
|
-
export const emptyCryptoQuote: Readonly<{
|
|
238
|
-
Timestamp: "";
|
|
239
|
-
BidPrice: 0;
|
|
240
|
-
BidSize: 0;
|
|
241
|
-
AskPrice: 0;
|
|
242
|
-
AskSize: 0;
|
|
243
|
-
}>;
|
|
244
|
-
export type State = {
|
|
245
|
-
symbols: string[];
|
|
246
|
-
cryptoAssets: any[];
|
|
247
|
-
selectedTabIndex: number;
|
|
248
|
-
setCryptoAssets: (cryptoAssets: any[]) => void;
|
|
249
|
-
setSelectedTabIndex: (index: number) => void;
|
|
250
|
-
};
|
|
251
|
-
export const useStore: import("zustand").UseBoundStore<import("zustand").StoreApi<State>>;
|
|
252
|
-
}
|
|
253
|
-
declare module "components/TradingGuiDemo/dataService" {
|
|
254
|
-
import { CryptoBar, CryptoQuote, CryptoSnapshot } from "@alpacahq/alpaca-trade-api/dist/resources/datav2/entityv2";
|
|
255
|
-
export type CryptoQuoteWithSymbol = CryptoQuote & {
|
|
256
|
-
S: string;
|
|
257
|
-
};
|
|
258
|
-
export type CryptoSnapshots = {
|
|
259
|
-
[key: string]: CryptoSnapshot;
|
|
260
|
-
};
|
|
261
|
-
export type CryptoBarDataset = {
|
|
262
|
-
[key: string]: CryptoBar[];
|
|
263
|
-
};
|
|
264
|
-
export class DataService {
|
|
265
|
-
private cryptoQuotes;
|
|
266
|
-
private cryptoSnapshots;
|
|
267
|
-
private cryptoBarDatasets;
|
|
268
|
-
constructor();
|
|
269
|
-
addCryptoQuote(cryptoQuote: CryptoQuoteWithSymbol): void;
|
|
270
|
-
addCryptoSnapshots(cryptoSnapshots: CryptoSnapshots): void;
|
|
271
|
-
addCryptoBars(cryptoBarDataset: CryptoBarDataset): void;
|
|
272
|
-
getCryptoQuotes(): import("rxjs").Observable<CryptoQuoteWithSymbol>;
|
|
273
|
-
getCryptoSnapshots(): import("rxjs").Observable<CryptoSnapshots>;
|
|
274
|
-
getCryptoBarDatasets(): import("rxjs").Observable<CryptoBarDataset>;
|
|
275
|
-
}
|
|
276
|
-
}
|
|
277
|
-
declare module "components/TradingGuiDemo/dataServiceContext" {
|
|
278
|
-
import { DataService } from "components/TradingGuiDemo/dataService";
|
|
279
|
-
export const DataServiceContext: import("react").Context<DataService | null>;
|
|
280
|
-
export const useDataService: () => DataService;
|
|
281
|
-
}
|
|
282
|
-
declare module "components/TradingGuiDemo/CryptoPlots/CryptoLinePlot" {
|
|
283
|
-
type Props = {
|
|
284
|
-
symbol: string;
|
|
285
|
-
};
|
|
286
|
-
export const CryptoLinePlot: ({ symbol }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
287
|
-
}
|
|
288
|
-
declare module "components/TradingGuiDemo/CryptoPlots/CryptoLinePlots" {
|
|
289
|
-
type Props = {};
|
|
290
|
-
export const CryptoLinePlots: ({}: Props) => import("react/jsx-runtime").JSX.Element;
|
|
291
|
-
}
|
|
292
|
-
declare module "components/TradingGuiDemo/CryptoAssetsList/CryptoAssetsList" {
|
|
293
|
-
type Props = {};
|
|
294
|
-
export const CryptoAssetsList: ({}: Props) => import("react/jsx-runtime").JSX.Element;
|
|
295
|
-
}
|
|
296
|
-
declare module "themes" {
|
|
297
|
-
import { XFramesStyleForPatching } from "@xframes/common";
|
|
298
|
-
export const theme1Colors: {
|
|
299
|
-
black: string;
|
|
300
|
-
darkGrey: string;
|
|
301
|
-
grey: string;
|
|
302
|
-
lightGrey: string;
|
|
303
|
-
veryLightGrey: string;
|
|
304
|
-
superLightGrey: string;
|
|
305
|
-
white: string;
|
|
306
|
-
hero: string;
|
|
307
|
-
hoverHero: string;
|
|
308
|
-
};
|
|
309
|
-
export const theme1: XFramesStyleForPatching;
|
|
310
|
-
export const theme2Colors: {
|
|
311
|
-
darkestGrey: string;
|
|
312
|
-
darkerGrey: string;
|
|
313
|
-
darkGrey: string;
|
|
314
|
-
lightGrey: string;
|
|
315
|
-
lighterGrey: string;
|
|
316
|
-
evenLighterGrey: string;
|
|
317
|
-
black: string;
|
|
318
|
-
green: string;
|
|
319
|
-
red: string;
|
|
320
|
-
white: string;
|
|
321
|
-
};
|
|
322
|
-
export const theme2: XFramesStyleForPatching;
|
|
323
|
-
}
|
|
324
|
-
declare module "components/TradingGuiDemo/CryptoQuotePrice/CryptoQuotePrice" {
|
|
325
|
-
type Props = {
|
|
326
|
-
symbol: string;
|
|
327
|
-
};
|
|
328
|
-
export const CryptoQuotePrice: ({ symbol }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
329
|
-
}
|
|
330
|
-
declare module "components/TradingGuiDemo/CryptoAssetPanels/CryptoAssetPanels" {
|
|
331
|
-
type Props = {};
|
|
332
|
-
export const CryptoAssetPanels: ({}: Props) => import("react/jsx-runtime").JSX.Element;
|
|
333
|
-
}
|
|
334
|
-
declare module "components/TradingGuiDemo/CryptoPlots/CryptoCandlestickPlot" {
|
|
335
|
-
type Props = {
|
|
336
|
-
symbol: string;
|
|
337
|
-
};
|
|
338
|
-
export const CryptoCandlestickPlot: ({ symbol }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
339
|
-
}
|
|
340
|
-
declare module "components/TradingGuiDemo/CryptoPlots/CryptoCandlestickPlots" {
|
|
341
|
-
type Props = {};
|
|
342
|
-
export const CryptoCandlestickPlots: ({}: Props) => import("react/jsx-runtime").JSX.Element;
|
|
343
|
-
}
|
|
344
|
-
declare module "components/TradingGuiDemo/Sidebar/Sidebar" {
|
|
345
|
-
export const Sidebar: () => import("react/jsx-runtime").JSX.Element;
|
|
346
|
-
}
|
|
347
|
-
declare module "components/TradingGuiDemo/CryptoSymbolPairs/CryptoSymbolPair" {
|
|
348
|
-
type Props = {
|
|
349
|
-
symbol: string;
|
|
350
|
-
};
|
|
351
|
-
export const CryptoSymbolPair: ({ symbol }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
352
|
-
}
|
|
353
|
-
declare module "components/TradingGuiDemo/CryptoSymbolBlock/CryptoSymbolBlock" {
|
|
354
|
-
type Props = {
|
|
355
|
-
symbol: string;
|
|
356
|
-
};
|
|
357
|
-
export const CryptoSymbolBlock: ({ symbol }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
358
|
-
}
|
|
359
|
-
declare module "components/TradingGuiDemo/Tabs/Tabs" {
|
|
360
|
-
type Props = {
|
|
361
|
-
tabs: string[];
|
|
362
|
-
selectedTabIndex: number;
|
|
363
|
-
onSelectedTabChange: (index: number) => void;
|
|
364
|
-
};
|
|
365
|
-
export const Tabs: ({ tabs, selectedTabIndex, onSelectedTabChange, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
366
|
-
}
|
|
367
|
-
declare module "components/TradingGuiDemo/TradingGuiDemo" {
|
|
368
|
-
export const TradingGuiDemo: () => import("react/jsx-runtime").JSX.Element;
|
|
369
|
-
}
|
|
370
|
-
declare module "App" {
|
|
371
|
-
export const App: () => import("react/jsx-runtime").JSX.Element;
|
|
372
|
-
}
|
|
373
|
-
declare module "lib/render" {
|
|
374
|
-
export const ReactFabricProd: {
|
|
375
|
-
createPortal(children: any, containerTag: any, ...args: any[]): {
|
|
376
|
-
$$typeof: symbol;
|
|
377
|
-
key: string | null;
|
|
378
|
-
children: any;
|
|
379
|
-
containerInfo: any;
|
|
380
|
-
implementation: any;
|
|
381
|
-
};
|
|
382
|
-
dispatchCommand(handle: any, command: any, args: any): void;
|
|
383
|
-
findHostInstance_DEPRECATED(componentOrHandle: any): any;
|
|
384
|
-
findNodeHandle: (componentOrHandle: any) => any;
|
|
385
|
-
getInspectorDataForInstance: () => void;
|
|
386
|
-
getNodeFromInternalInstanceHandle(internalInstanceHandle: any): any;
|
|
387
|
-
getPublicInstanceFromInternalInstanceHandle(internalInstanceHandle: any): any;
|
|
388
|
-
isChildPublicInstance(): never;
|
|
389
|
-
render(element: any, containerTag: any, callback: any, concurrentRoot: any): any;
|
|
390
|
-
sendAccessibilityEvent(handle: any, eventType: any): void;
|
|
391
|
-
stopSurface(containerTag: any): void;
|
|
392
|
-
unmountComponentAtNode(containerTag: any): void;
|
|
393
|
-
};
|
|
394
|
-
export const render: (EntryPointComponent: () => JSX.Element, assetsBasePath: string, fontDefs: any, theme: any) => void;
|
|
395
|
-
}
|
|
396
|
-
declare module "index" { }
|
|
397
|
-
declare module "lib/index" {
|
|
398
|
-
import { render } from "lib/render";
|
|
399
|
-
import { XFrames } from "lib/XFrames";
|
|
400
|
-
export { XFrames, render };
|
|
401
|
-
}
|
|
1
|
+
export {};
|