@xframes/node 0.0.1
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 +20 -0
- package/dist/glfw3.dll +0 -0
- package/dist/index.d.ts +231 -0
- package/dist/index.js +172 -0
- package/dist/index.js.map +1 -0
- package/package.json +119 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# node-imgui
|
|
2
|
+
|
|
3
|
+
## Building GLFW3
|
|
4
|
+
|
|
5
|
+
### Windows
|
|
6
|
+
|
|
7
|
+
Open a developer terminal then run the following:
|
|
8
|
+
|
|
9
|
+
- `cd ..\deps\glfw`
|
|
10
|
+
- `cmake -DBUILD_SHARED_LIBS=ON -DUSE_MSVC_RUNTIME_LIBRARY_DLL=ON -DGLFW_BUILD_EXAMPLES=OFF -DGLFW_BUILD_TESTS=OFF -DGLFW_BUILD_DOCS=OFF .`
|
|
11
|
+
- `cd ..\..\node`
|
|
12
|
+
- `msbuild /p:Platform=x64 /p:Configuration=Release /p:PlatformToolset=v142 ..\deps\glfw\ALL_BUILD.vcxproj`
|
|
13
|
+
- `copy /y ..\deps\glfw\src\Release\glfw3.dll .\`
|
|
14
|
+
- `copy /y ..\deps\glfw\src\Release\glfw3dll.lib .\`
|
|
15
|
+
|
|
16
|
+
### WSL2
|
|
17
|
+
|
|
18
|
+
Run `export GALLIUM_DRIVER=d3d12` before starting the application to enable Direct3D 12 rendering support.
|
|
19
|
+
This setting is required for proper GPU acceleration in WSL2 and needs to be set in each new terminal session.
|
|
20
|
+
You can add this line to your ~/.bashrc to make it permanent.
|
package/dist/glfw3.dll
ADDED
|
Binary file
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import * as _xframes_common from '@xframes/common';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
declare const render: (EntryPointComponent: () => JSX.Element, assetsBasePath: string, fontDefs: any, theme: any) => void;
|
|
5
|
+
|
|
6
|
+
declare const XFrames: React.FunctionComponent<{
|
|
7
|
+
children?: React.ReactNode | undefined;
|
|
8
|
+
}> & {
|
|
9
|
+
readonly BulletText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
10
|
+
text: string;
|
|
11
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
12
|
+
text: string;
|
|
13
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
14
|
+
readonly Button: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
15
|
+
onClick?: () => void;
|
|
16
|
+
label?: string;
|
|
17
|
+
size?: _xframes_common.ImVec2;
|
|
18
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
19
|
+
onClick?: () => void;
|
|
20
|
+
label?: string;
|
|
21
|
+
size?: _xframes_common.ImVec2;
|
|
22
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
23
|
+
readonly Checkbox: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
24
|
+
defaultChecked?: boolean;
|
|
25
|
+
label?: string;
|
|
26
|
+
onChange?: (event: _xframes_common.CheckboxChangeEvent) => void;
|
|
27
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
28
|
+
defaultChecked?: boolean;
|
|
29
|
+
label?: string;
|
|
30
|
+
onChange?: (event: _xframes_common.CheckboxChangeEvent) => void;
|
|
31
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
32
|
+
readonly Child: React.FunctionComponent<{
|
|
33
|
+
children?: _xframes_common.WidgetReactNode;
|
|
34
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
35
|
+
children?: _xframes_common.WidgetReactNode;
|
|
36
|
+
} & _xframes_common.WidgetStyleProps) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
37
|
+
readonly ClippedMultiLineTextRenderer: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & React.RefAttributes<_xframes_common.ClippedMultiLineTextRendererImperativeHandle>>;
|
|
38
|
+
readonly CollapsingHeader: React.FunctionComponent<{
|
|
39
|
+
children?: _xframes_common.WidgetReactNode;
|
|
40
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
41
|
+
label?: string;
|
|
42
|
+
}> & ((props: {
|
|
43
|
+
children?: _xframes_common.WidgetReactNode;
|
|
44
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
45
|
+
label?: string;
|
|
46
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
47
|
+
readonly Combo: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
48
|
+
placeholder?: string;
|
|
49
|
+
options?: string[];
|
|
50
|
+
optionsList?: string;
|
|
51
|
+
initialSelectedIndex?: number;
|
|
52
|
+
onChange?: (event: _xframes_common.ComboChangeEvent) => void;
|
|
53
|
+
} & React.RefAttributes<{
|
|
54
|
+
setSelectedIndex: (index: number) => void;
|
|
55
|
+
}>>;
|
|
56
|
+
readonly DIWindow: React.FunctionComponent<{
|
|
57
|
+
children?: _xframes_common.WidgetReactNode;
|
|
58
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
59
|
+
title: string;
|
|
60
|
+
width?: number;
|
|
61
|
+
height?: number;
|
|
62
|
+
}> & ((props: {
|
|
63
|
+
children?: _xframes_common.WidgetReactNode;
|
|
64
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
65
|
+
title: string;
|
|
66
|
+
width?: number;
|
|
67
|
+
height?: number;
|
|
68
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
69
|
+
readonly DisabledText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
70
|
+
text: string;
|
|
71
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
72
|
+
text: string;
|
|
73
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
74
|
+
readonly Group: React.FunctionComponent<{
|
|
75
|
+
children?: _xframes_common.WidgetReactNode;
|
|
76
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
77
|
+
children?: _xframes_common.WidgetReactNode;
|
|
78
|
+
} & _xframes_common.WidgetStyleProps) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
79
|
+
readonly Image: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
80
|
+
url: string;
|
|
81
|
+
width?: number;
|
|
82
|
+
height?: number;
|
|
83
|
+
} & React.RefAttributes<_xframes_common.ImageImperativeHandle>>;
|
|
84
|
+
readonly InputText: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
85
|
+
defaultValue?: string;
|
|
86
|
+
hint?: string;
|
|
87
|
+
onChange?: (event: _xframes_common.InputTextChangeEvent) => void;
|
|
88
|
+
} & React.RefAttributes<{
|
|
89
|
+
setValue: (value: string) => void;
|
|
90
|
+
}>>;
|
|
91
|
+
readonly ItemTooltip: React.FunctionComponent<{
|
|
92
|
+
children?: _xframes_common.WidgetReactNode;
|
|
93
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
94
|
+
children?: _xframes_common.WidgetReactNode;
|
|
95
|
+
} & _xframes_common.WidgetStyleProps) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
96
|
+
readonly MapView: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & React.RefAttributes<_xframes_common.MapImperativeHandle>>;
|
|
97
|
+
readonly MultiSlider: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
98
|
+
numValues: 2 | 3 | 4;
|
|
99
|
+
defaultValues?: number[];
|
|
100
|
+
min?: number;
|
|
101
|
+
max?: number;
|
|
102
|
+
decimalDigits?: number;
|
|
103
|
+
onChange?: (event: _xframes_common.MultiSliderChangeEvent<number>) => void;
|
|
104
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
105
|
+
numValues: 2 | 3 | 4;
|
|
106
|
+
defaultValues?: number[];
|
|
107
|
+
min?: number;
|
|
108
|
+
max?: number;
|
|
109
|
+
decimalDigits?: number;
|
|
110
|
+
onChange?: (event: _xframes_common.MultiSliderChangeEvent<number>) => void;
|
|
111
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
112
|
+
readonly Node: React.FunctionComponent<{
|
|
113
|
+
children?: _xframes_common.WidgetReactNode;
|
|
114
|
+
} & {
|
|
115
|
+
root?: boolean;
|
|
116
|
+
cull?: boolean;
|
|
117
|
+
trackMouseClickEvents?: boolean;
|
|
118
|
+
children?: _xframes_common.WidgetReactNode;
|
|
119
|
+
onClick?: () => void;
|
|
120
|
+
} & _xframes_common.NodeStyleProps>;
|
|
121
|
+
readonly PlotCandlestick: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
122
|
+
bullColor?: string;
|
|
123
|
+
bearColor?: string;
|
|
124
|
+
axisAutoFit?: boolean;
|
|
125
|
+
} & React.RefAttributes<_xframes_common.PlotCandlestickImperativeHandle>>;
|
|
126
|
+
readonly PlotLine: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
127
|
+
xAxisDecimalDigits?: number;
|
|
128
|
+
yAxisDecimalDigits?: number;
|
|
129
|
+
markerStyle?: _xframes_common.ImPlotMarker;
|
|
130
|
+
xAxisScale?: _xframes_common.ImPlotScale;
|
|
131
|
+
yAxisScale?: _xframes_common.ImPlotScale;
|
|
132
|
+
axisAutoFit?: boolean;
|
|
133
|
+
} & React.RefAttributes<_xframes_common.PlotLineImperativeHandle>>;
|
|
134
|
+
readonly SeparatorText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
135
|
+
label: string;
|
|
136
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
137
|
+
label: string;
|
|
138
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
139
|
+
readonly Separator: React.FunctionComponent<_xframes_common.WidgetStyleProps> & ((props: _xframes_common.WidgetStyleProps) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
140
|
+
readonly Slider: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
141
|
+
sliderType?: _xframes_common.SliderTypes;
|
|
142
|
+
defaultValue?: number;
|
|
143
|
+
min?: number;
|
|
144
|
+
max?: number;
|
|
145
|
+
onChange?: (event: _xframes_common.SliderChangeEvent) => void;
|
|
146
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
147
|
+
sliderType?: _xframes_common.SliderTypes;
|
|
148
|
+
defaultValue?: number;
|
|
149
|
+
min?: number;
|
|
150
|
+
max?: number;
|
|
151
|
+
onChange?: (event: _xframes_common.SliderChangeEvent) => void;
|
|
152
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
153
|
+
readonly TabBar: React.FunctionComponent<{
|
|
154
|
+
children?: _xframes_common.WidgetReactNode;
|
|
155
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
156
|
+
children?: _xframes_common.WidgetReactNode;
|
|
157
|
+
} & _xframes_common.WidgetStyleProps) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
158
|
+
readonly TabItem: React.FunctionComponent<{
|
|
159
|
+
children?: _xframes_common.WidgetReactNode;
|
|
160
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
161
|
+
label: string;
|
|
162
|
+
onOpenChange?: (event: _xframes_common.TabItemChangeEvent) => void;
|
|
163
|
+
}> & ((props: {
|
|
164
|
+
children?: _xframes_common.WidgetReactNode;
|
|
165
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
166
|
+
label: string;
|
|
167
|
+
onOpenChange?: (event: _xframes_common.TabItemChangeEvent) => void;
|
|
168
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
169
|
+
readonly Table: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
170
|
+
columns: {
|
|
171
|
+
heading: string;
|
|
172
|
+
fieldId?: string;
|
|
173
|
+
}[];
|
|
174
|
+
initialData?: string;
|
|
175
|
+
clipRows?: number;
|
|
176
|
+
} & React.RefAttributes<_xframes_common.TableImperativeHandle>>;
|
|
177
|
+
readonly TextWrap: React.FunctionComponent<{
|
|
178
|
+
children?: _xframes_common.WidgetReactNode;
|
|
179
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
180
|
+
width: number;
|
|
181
|
+
}> & ((props: {
|
|
182
|
+
children?: _xframes_common.WidgetReactNode;
|
|
183
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
184
|
+
width: number;
|
|
185
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
186
|
+
readonly TreeNode: React.FunctionComponent<{
|
|
187
|
+
children?: _xframes_common.WidgetReactNode;
|
|
188
|
+
} & _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?: _xframes_common.WidgetReactNode;
|
|
200
|
+
} & _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
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
211
|
+
readonly TreeView: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
212
|
+
items: _xframes_common.TreeViewItem[];
|
|
213
|
+
defaultSelectedItemIds?: string[];
|
|
214
|
+
selectedItemIds?: string[];
|
|
215
|
+
allowMultipleSelection?: boolean;
|
|
216
|
+
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
217
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
218
|
+
items: _xframes_common.TreeViewItem[];
|
|
219
|
+
defaultSelectedItemIds?: string[];
|
|
220
|
+
selectedItemIds?: string[];
|
|
221
|
+
allowMultipleSelection?: boolean;
|
|
222
|
+
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
223
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
224
|
+
readonly UnformattedText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
225
|
+
text: string;
|
|
226
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
227
|
+
text: string;
|
|
228
|
+
}) => _xframes_common.WidgetReactElement<"BulletText"> | _xframes_common.WidgetReactElement<"Button"> | _xframes_common.WidgetReactElement<"Checkbox"> | _xframes_common.WidgetReactElement<"Child"> | _xframes_common.WidgetReactElement<"ClippedMultiLineTextRenderer"> | _xframes_common.WidgetReactElement<"CollapsingHeader"> | _xframes_common.WidgetReactElement<"Combo"> | _xframes_common.WidgetReactElement<"DIWindow"> | _xframes_common.WidgetReactElement<"DisabledText"> | _xframes_common.WidgetReactElement<"Group"> | _xframes_common.WidgetReactElement<"Image"> | _xframes_common.WidgetReactElement<"InputText"> | _xframes_common.WidgetReactElement<"ItemTooltip"> | _xframes_common.WidgetReactElement<"MapView"> | _xframes_common.WidgetReactElement<"MultiSlider"> | _xframes_common.WidgetReactElement<"HelpMarker"> | _xframes_common.WidgetReactElement<"Indent"> | _xframes_common.WidgetReactElement<"PlotCandlestick"> | _xframes_common.WidgetReactElement<"PlotLine"> | _xframes_common.WidgetReactElement<"Separator"> | _xframes_common.WidgetReactElement<"SeparatorText"> | _xframes_common.WidgetReactElement<"Slider"> | _xframes_common.WidgetReactElement<"TabBar"> | _xframes_common.WidgetReactElement<"TabItem"> | _xframes_common.WidgetReactElement<"Table"> | _xframes_common.WidgetReactElement<"TextWrap"> | _xframes_common.WidgetReactElement<"TreeNode"> | _xframes_common.WidgetReactElement<"TreeView"> | _xframes_common.WidgetReactElement<"UnformattedText">);
|
|
229
|
+
};
|
|
230
|
+
|
|
231
|
+
export { XFrames, render };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
2
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
3
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
4
|
+
}) : x)(function(x) {
|
|
5
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
6
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
7
|
+
});
|
|
8
|
+
var __esm = (fn, res) => function __init() {
|
|
9
|
+
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
10
|
+
};
|
|
11
|
+
var __commonJS = (cb, mod) => function __require2() {
|
|
12
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
// build/Release/xframes.node
|
|
16
|
+
var xframes_default;
|
|
17
|
+
var init_xframes = __esm({
|
|
18
|
+
"build/Release/xframes.node"() {
|
|
19
|
+
xframes_default = "./xframes-FY3TN6FP.node";
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
// node-file:C:\u-blox\gallery\ubx\ulogr\react-imgui\packages\dear-imgui\ts\node\build\Release\xframes.node
|
|
24
|
+
var require_xframes = __commonJS({
|
|
25
|
+
"node-file:C:\\u-blox\\gallery\\ubx\\ulogr\\react-imgui\\packages\\dear-imgui\\ts\\node\\build\\Release\\xframes.node"(exports, module) {
|
|
26
|
+
"use strict";
|
|
27
|
+
init_xframes();
|
|
28
|
+
try {
|
|
29
|
+
module.exports = __require(xframes_default);
|
|
30
|
+
} catch (e) {
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
// xframes.js
|
|
36
|
+
var require_xframes2 = __commonJS({
|
|
37
|
+
"xframes.js"(exports, module) {
|
|
38
|
+
"use strict";
|
|
39
|
+
module.exports = require_xframes();
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
// src/lib/render.tsx
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
var _common = require('@xframes/common');
|
|
50
|
+
var _jsxruntime = require('react/jsx-runtime');
|
|
51
|
+
var xframes = require_xframes2();
|
|
52
|
+
var ReactFabricProd = _common.ReactFabricProdInitialiser.call(void 0,
|
|
53
|
+
_common.ReactNativePrivateInterface
|
|
54
|
+
);
|
|
55
|
+
var render = (EntryPointComponent, assetsBasePath, fontDefs, theme) => {
|
|
56
|
+
const onInit = () => {
|
|
57
|
+
ReactFabricProd.render(
|
|
58
|
+
/* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
59
|
+
_common.WidgetRegistrationServiceContext.Provider,
|
|
60
|
+
{
|
|
61
|
+
value: widgetRegistrationService,
|
|
62
|
+
children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, EntryPointComponent, {})
|
|
63
|
+
}
|
|
64
|
+
),
|
|
65
|
+
0,
|
|
66
|
+
// containerTag,
|
|
67
|
+
() => {
|
|
68
|
+
},
|
|
69
|
+
1
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
const onTextChange = (id, value) => {
|
|
73
|
+
const rootNodeID = id;
|
|
74
|
+
const topLevelType = "onChange";
|
|
75
|
+
const nativeEventParam = { value };
|
|
76
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(
|
|
77
|
+
rootNodeID,
|
|
78
|
+
topLevelType,
|
|
79
|
+
nativeEventParam
|
|
80
|
+
);
|
|
81
|
+
};
|
|
82
|
+
const onComboChange = (id, value) => {
|
|
83
|
+
const rootNodeID = id;
|
|
84
|
+
const topLevelType = "onChange";
|
|
85
|
+
const nativeEventParam = { value };
|
|
86
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(
|
|
87
|
+
rootNodeID,
|
|
88
|
+
topLevelType,
|
|
89
|
+
nativeEventParam
|
|
90
|
+
);
|
|
91
|
+
};
|
|
92
|
+
const onNumericValueChange = (id, value) => {
|
|
93
|
+
const rootNodeID = id;
|
|
94
|
+
const topLevelType = "onChange";
|
|
95
|
+
const nativeEventParam = { value };
|
|
96
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(
|
|
97
|
+
rootNodeID,
|
|
98
|
+
topLevelType,
|
|
99
|
+
nativeEventParam
|
|
100
|
+
);
|
|
101
|
+
};
|
|
102
|
+
const onMultiValueChange = (id, values) => {
|
|
103
|
+
const rootNodeID = id;
|
|
104
|
+
const topLevelType = "onChange";
|
|
105
|
+
const nativeEventParam = { values };
|
|
106
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(
|
|
107
|
+
rootNodeID,
|
|
108
|
+
topLevelType,
|
|
109
|
+
nativeEventParam
|
|
110
|
+
);
|
|
111
|
+
};
|
|
112
|
+
const onBooleanValueChange = (id, value) => {
|
|
113
|
+
const rootNodeID = id;
|
|
114
|
+
const topLevelType = "onChange";
|
|
115
|
+
const nativeEventParam = { value };
|
|
116
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(
|
|
117
|
+
rootNodeID,
|
|
118
|
+
topLevelType,
|
|
119
|
+
nativeEventParam
|
|
120
|
+
);
|
|
121
|
+
};
|
|
122
|
+
const onClick = (id) => {
|
|
123
|
+
const rootNodeID = id;
|
|
124
|
+
const topLevelType = "onClick";
|
|
125
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(
|
|
126
|
+
rootNodeID,
|
|
127
|
+
topLevelType,
|
|
128
|
+
{
|
|
129
|
+
value: "clicked"
|
|
130
|
+
}
|
|
131
|
+
);
|
|
132
|
+
};
|
|
133
|
+
xframes.init(
|
|
134
|
+
assetsBasePath,
|
|
135
|
+
JSON.stringify(fontDefs),
|
|
136
|
+
JSON.stringify(theme),
|
|
137
|
+
onInit,
|
|
138
|
+
onTextChange,
|
|
139
|
+
onComboChange,
|
|
140
|
+
onNumericValueChange,
|
|
141
|
+
onBooleanValueChange,
|
|
142
|
+
onMultiValueChange,
|
|
143
|
+
onClick
|
|
144
|
+
);
|
|
145
|
+
const widgetRegistrationService = new (0, _common.WidgetRegistrationService)(xframes);
|
|
146
|
+
_common.ReactNativePrivateInterface.nativeFabricUIManager.init(
|
|
147
|
+
xframes,
|
|
148
|
+
widgetRegistrationService
|
|
149
|
+
);
|
|
150
|
+
let flag = true;
|
|
151
|
+
(function keepProcessRunning() {
|
|
152
|
+
setTimeout(() => flag && keepProcessRunning(), 1e3);
|
|
153
|
+
})();
|
|
154
|
+
};
|
|
155
|
+
|
|
156
|
+
// src/lib/XFrames.tsx
|
|
157
|
+
|
|
158
|
+
var MainComponent = ({
|
|
159
|
+
children
|
|
160
|
+
}) => {
|
|
161
|
+
return null;
|
|
162
|
+
};
|
|
163
|
+
var XFrames = _common.attachSubComponents.call(void 0,
|
|
164
|
+
"XFrames",
|
|
165
|
+
MainComponent,
|
|
166
|
+
_common.components
|
|
167
|
+
);
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
exports.XFrames = XFrames; exports.render = render;
|
|
172
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["c:\\u-blox\\gallery\\ubx\\ulogr\\react-imgui\\packages\\dear-imgui\\ts\\node\\dist\\index.js"],"names":[],"mappings":"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","file":"C:\\u-blox\\gallery\\ubx\\ulogr\\react-imgui\\packages\\dear-imgui\\ts\\node\\dist\\index.js","sourcesContent":[null]}
|
package/package.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xframes/node",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "DOM-less, GPU-accelerated GUI development for Node.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/*"
|
|
8
|
+
],
|
|
9
|
+
"homepage": "https://github.com/andreamancuso/xframes#readme",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": {
|
|
12
|
+
"name": "Andrea Mancuso",
|
|
13
|
+
"url": "https://github.com/andreamancuso"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"install": "prebuild-install -r napi || cmake-js compile",
|
|
17
|
+
"start": "tsx ./src/index.tsx",
|
|
18
|
+
"build:library": "rimraf ./dist && yarn tsup && yarn copy-artifacts-to-dist-folder && yarn remove-extra-file",
|
|
19
|
+
"tsc": "tsc --project ./tsconfig-build.json",
|
|
20
|
+
"tsup": "tsup --format cjs --external react",
|
|
21
|
+
"copy-artifacts-to-dist-folder": "cpy --flat ./build/Release/*.dll dist/",
|
|
22
|
+
"remove-extra-file": "rimraf ./dist/xframes-*.node",
|
|
23
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
24
|
+
"cpp:compile": "cmake-js compile",
|
|
25
|
+
"cpp:generate-module": "prebuild --backend cmake-js --strip",
|
|
26
|
+
"cpp:_prebuild-all": "prebuild --all --backend cmake-js --strip"
|
|
27
|
+
},
|
|
28
|
+
"tsup": {
|
|
29
|
+
"entry": [
|
|
30
|
+
"src/lib/index.ts"
|
|
31
|
+
],
|
|
32
|
+
"splitting": true,
|
|
33
|
+
"sourcemap": true,
|
|
34
|
+
"clean": true,
|
|
35
|
+
"target": "es2022",
|
|
36
|
+
"dts": true
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@xframes/common": "0.0.12",
|
|
40
|
+
"base64-js": "^1.5.1",
|
|
41
|
+
"date-fns": "^4.1.0",
|
|
42
|
+
"deep-object-diff": "1.1.9",
|
|
43
|
+
"event-target-shim": "^6.0.2",
|
|
44
|
+
"invariant": "^2.2.4",
|
|
45
|
+
"lodash.debounce": "4.0.8",
|
|
46
|
+
"memoize-one": "^6.0.0",
|
|
47
|
+
"nullthrows": "^1.1.1",
|
|
48
|
+
"prettier": "3.2.5",
|
|
49
|
+
"pretty-format": "^29.7.0",
|
|
50
|
+
"promise": "^8.3.0",
|
|
51
|
+
"rxjs": "^7.8.1",
|
|
52
|
+
"stacktrace-parser": "^0.1.10",
|
|
53
|
+
"uuid": "^9.0.1",
|
|
54
|
+
"whatwg-fetch": "^3.6.20"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"react": "^18.2.0",
|
|
58
|
+
"react-dom": "^18.2.0"
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@alpacahq/alpaca-trade-api": "^3.1.2",
|
|
62
|
+
"@babel/core": "^7.24.5",
|
|
63
|
+
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
64
|
+
"@babel/plugin-transform-flow-strip-types": "^7.20.0",
|
|
65
|
+
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
|
|
66
|
+
"@babel/plugin-transform-react-jsx": "^7.23.4",
|
|
67
|
+
"@babel/preset-env": "^7.24.5",
|
|
68
|
+
"@babel/preset-react": "^7.24.1",
|
|
69
|
+
"@babel/preset-typescript": "^7.24.1",
|
|
70
|
+
"@fortawesome/fontawesome-free": "^6.5.2",
|
|
71
|
+
"@microsoft/api-extractor": "^7.43.4",
|
|
72
|
+
"@react-rxjs/core": "^0.10.7",
|
|
73
|
+
"@react-rxjs/utils": "^0.9.7",
|
|
74
|
+
"@types/babel__core": "^7",
|
|
75
|
+
"@types/babel__preset-env": "^7",
|
|
76
|
+
"@types/invariant": "^2",
|
|
77
|
+
"@types/lodash.debounce": "4.0.9",
|
|
78
|
+
"@types/node": "^20.11.1",
|
|
79
|
+
"@types/react": "^18.2.66",
|
|
80
|
+
"@types/react-dom": "^18.2.22",
|
|
81
|
+
"@types/scheduler": "^0.23.0",
|
|
82
|
+
"@types/uuid": "^9",
|
|
83
|
+
"@types/webpack": "^5.28.5",
|
|
84
|
+
"@types/webpack-dev-server": "^4.7.2",
|
|
85
|
+
"@typescript-eslint/eslint-plugin": "^7.2.0",
|
|
86
|
+
"@typescript-eslint/parser": "^7.2.0",
|
|
87
|
+
"babel-loader": "^9.1.3",
|
|
88
|
+
"babel-plugin-syntax-hermes-parser": "0.21.0",
|
|
89
|
+
"bindings": "^1.5.0",
|
|
90
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
91
|
+
"cmake-js": "^7.3.0",
|
|
92
|
+
"cpy-cli": "^5.0.0",
|
|
93
|
+
"css-loader": "^7.1.1",
|
|
94
|
+
"eslint": "^8.57.0",
|
|
95
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
96
|
+
"eslint-plugin-react-refresh": "^0.4.6",
|
|
97
|
+
"file-loader": "^6.2.0",
|
|
98
|
+
"html-webpack-plugin": "^5.6.0",
|
|
99
|
+
"inline-source-map": "^0.6.3",
|
|
100
|
+
"mini-css-extract-plugin": "^2.9.0",
|
|
101
|
+
"node-addon-api": "^8.2.1",
|
|
102
|
+
"prebuild": "^13.0.1",
|
|
103
|
+
"prebuild-install": "^7.1.2",
|
|
104
|
+
"react-native": "^0.74.1",
|
|
105
|
+
"rimraf": "^5.0.6",
|
|
106
|
+
"ts-loader": "^9.5.1",
|
|
107
|
+
"ts-node": "^10.9.2",
|
|
108
|
+
"tsup": "^8.0.2",
|
|
109
|
+
"tsx": "^4.19.1",
|
|
110
|
+
"typescript": "^5.4.5",
|
|
111
|
+
"url-loader": "^4.1.1",
|
|
112
|
+
"webpack": "^5.91.0",
|
|
113
|
+
"webpack-cli": "^5.1.4",
|
|
114
|
+
"webpack-dev-server": "^5.0.4",
|
|
115
|
+
"yaml": "^2.4.3",
|
|
116
|
+
"zustand": "^5.0.0-rc.2"
|
|
117
|
+
},
|
|
118
|
+
"packageManager": "yarn@4.1.1"
|
|
119
|
+
}
|