@xframes/node 0.0.12 → 0.0.13
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/App.d.ts +1 -0
- package/dist/App.js +10 -0
- package/dist/components/TradingGuiDemo/CryptoAssetPanels/CryptoAssetPanels.d.ts +3 -0
- package/dist/components/TradingGuiDemo/CryptoAssetPanels/CryptoAssetPanels.js +49 -0
- package/dist/components/TradingGuiDemo/CryptoAssetsList/CryptoAssetsList.d.ts +3 -0
- package/dist/components/TradingGuiDemo/CryptoAssetsList/CryptoAssetsList.js +62 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoCandlestickPlot.d.ts +5 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoCandlestickPlot.js +39 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoCandlestickPlots.d.ts +3 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoCandlestickPlots.js +17 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoLinePlot.d.ts +5 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoLinePlot.js +33 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoLinePlots.d.ts +3 -0
- package/dist/components/TradingGuiDemo/CryptoPlots/CryptoLinePlots.js +17 -0
- package/dist/components/TradingGuiDemo/CryptoQuotePrice/CryptoQuotePrice.d.ts +5 -0
- package/dist/components/TradingGuiDemo/CryptoQuotePrice/CryptoQuotePrice.js +76 -0
- package/dist/components/TradingGuiDemo/CryptoSymbolBlock/CryptoSymbolBlock.d.ts +5 -0
- package/dist/components/TradingGuiDemo/CryptoSymbolBlock/CryptoSymbolBlock.js +56 -0
- package/dist/components/TradingGuiDemo/CryptoSymbolPairs/CryptoSymbolPair.d.ts +5 -0
- package/dist/components/TradingGuiDemo/CryptoSymbolPairs/CryptoSymbolPair.js +25 -0
- package/dist/components/TradingGuiDemo/Sidebar/Sidebar.d.ts +1 -0
- package/dist/components/TradingGuiDemo/Sidebar/Sidebar.js +52 -0
- package/dist/components/TradingGuiDemo/Tabs/Tabs.d.ts +7 -0
- package/dist/components/TradingGuiDemo/Tabs/Tabs.js +95 -0
- package/dist/components/TradingGuiDemo/TradingGuiDemo.d.ts +1 -0
- package/dist/components/TradingGuiDemo/TradingGuiDemo.js +299 -0
- package/dist/components/TradingGuiDemo/cryptoSymbols.d.ts +1 -0
- package/dist/components/TradingGuiDemo/cryptoSymbols.js +64 -0
- package/dist/components/TradingGuiDemo/dataService.d.ts +22 -0
- package/dist/components/TradingGuiDemo/dataService.js +33 -0
- package/dist/components/TradingGuiDemo/dataServiceContext.d.ts +3 -0
- package/dist/components/TradingGuiDemo/dataServiceContext.js +13 -0
- package/dist/components/TradingGuiDemo/store.d.ts +17 -0
- package/dist/components/TradingGuiDemo/store.js +35 -0
- 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/dist/themes.d.ts +26 -0
- package/dist/themes.js +145 -0
- package/dist/xframes.node +0 -0
- package/package.json +1 -1
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { PropsWithChildren } from "react";
|
|
3
|
+
export type MainComponentProps = PropsWithChildren;
|
|
4
|
+
export declare const MainComponent: React.ComponentType<MainComponentProps>;
|
|
5
|
+
export declare const XFrames: React.FunctionComponent<{
|
|
6
|
+
children?: React.ReactNode | undefined;
|
|
7
|
+
}> & {
|
|
8
|
+
readonly BulletText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
9
|
+
text: string;
|
|
10
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
11
|
+
text: string;
|
|
12
|
+
}) => 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">);
|
|
13
|
+
readonly Button: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
14
|
+
onClick?: () => void;
|
|
15
|
+
label?: string;
|
|
16
|
+
size?: import("@xframes/common").ImVec2;
|
|
17
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
18
|
+
onClick?: () => void;
|
|
19
|
+
label?: string;
|
|
20
|
+
size?: import("@xframes/common").ImVec2;
|
|
21
|
+
}) => 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">);
|
|
22
|
+
readonly Checkbox: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
23
|
+
defaultChecked?: boolean;
|
|
24
|
+
label?: string;
|
|
25
|
+
onChange?: (event: import("@xframes/common").CheckboxChangeEvent) => void;
|
|
26
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
27
|
+
defaultChecked?: boolean;
|
|
28
|
+
label?: string;
|
|
29
|
+
onChange?: (event: import("@xframes/common").CheckboxChangeEvent) => void;
|
|
30
|
+
}) => 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">);
|
|
31
|
+
readonly Child: React.FunctionComponent<{
|
|
32
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
33
|
+
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
34
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
35
|
+
} & 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">);
|
|
36
|
+
readonly ClippedMultiLineTextRenderer: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & React.RefAttributes<import("@xframes/common").ClippedMultiLineTextRendererImperativeHandle>>;
|
|
37
|
+
readonly CollapsingHeader: React.FunctionComponent<{
|
|
38
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
39
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
40
|
+
label?: string;
|
|
41
|
+
}> & ((props: {
|
|
42
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
43
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
44
|
+
label?: string;
|
|
45
|
+
}) => 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">);
|
|
46
|
+
readonly Combo: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
47
|
+
placeholder?: string;
|
|
48
|
+
options?: string[];
|
|
49
|
+
optionsList?: string;
|
|
50
|
+
initialSelectedIndex?: number;
|
|
51
|
+
onChange?: (event: import("@xframes/common").ComboChangeEvent) => void;
|
|
52
|
+
} & React.RefAttributes<{
|
|
53
|
+
setSelectedIndex: (index: number) => void;
|
|
54
|
+
}>>;
|
|
55
|
+
readonly DIWindow: React.FunctionComponent<{
|
|
56
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
57
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
58
|
+
title: string;
|
|
59
|
+
width?: number;
|
|
60
|
+
height?: number;
|
|
61
|
+
}> & ((props: {
|
|
62
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
63
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
64
|
+
title: string;
|
|
65
|
+
width?: number;
|
|
66
|
+
height?: number;
|
|
67
|
+
}) => 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">);
|
|
68
|
+
readonly DisabledText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
69
|
+
text: string;
|
|
70
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
71
|
+
text: string;
|
|
72
|
+
}) => 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">);
|
|
73
|
+
readonly Group: React.FunctionComponent<{
|
|
74
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
75
|
+
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
76
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
77
|
+
} & 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">);
|
|
78
|
+
readonly Image: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
79
|
+
url: string;
|
|
80
|
+
width?: number;
|
|
81
|
+
height?: number;
|
|
82
|
+
} & React.RefAttributes<import("@xframes/common").ImageImperativeHandle>>;
|
|
83
|
+
readonly InputText: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
84
|
+
defaultValue?: string;
|
|
85
|
+
hint?: string;
|
|
86
|
+
onChange?: (event: import("@xframes/common").InputTextChangeEvent) => void;
|
|
87
|
+
} & React.RefAttributes<{
|
|
88
|
+
setValue: (value: string) => void;
|
|
89
|
+
}>>;
|
|
90
|
+
readonly ItemTooltip: React.FunctionComponent<{
|
|
91
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
92
|
+
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
93
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
94
|
+
} & 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">);
|
|
95
|
+
readonly MapView: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & React.RefAttributes<import("@xframes/common").MapImperativeHandle>>;
|
|
96
|
+
readonly MultiSlider: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
97
|
+
numValues: 2 | 3 | 4;
|
|
98
|
+
defaultValues?: number[];
|
|
99
|
+
min?: number;
|
|
100
|
+
max?: number;
|
|
101
|
+
decimalDigits?: number;
|
|
102
|
+
onChange?: (event: import("@xframes/common").MultiSliderChangeEvent<number>) => void;
|
|
103
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
104
|
+
numValues: 2 | 3 | 4;
|
|
105
|
+
defaultValues?: number[];
|
|
106
|
+
min?: number;
|
|
107
|
+
max?: number;
|
|
108
|
+
decimalDigits?: number;
|
|
109
|
+
onChange?: (event: import("@xframes/common").MultiSliderChangeEvent<number>) => void;
|
|
110
|
+
}) => 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">);
|
|
111
|
+
readonly Node: React.FunctionComponent<{
|
|
112
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
113
|
+
} & {
|
|
114
|
+
root?: boolean;
|
|
115
|
+
cull?: boolean;
|
|
116
|
+
trackMouseClickEvents?: boolean;
|
|
117
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
118
|
+
onClick?: () => void;
|
|
119
|
+
} & import("@xframes/common").NodeStyleProps>;
|
|
120
|
+
readonly PlotCandlestick: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
121
|
+
bullColor?: string;
|
|
122
|
+
bearColor?: string;
|
|
123
|
+
axisAutoFit?: boolean;
|
|
124
|
+
} & React.RefAttributes<import("@xframes/common").PlotCandlestickImperativeHandle>>;
|
|
125
|
+
readonly PlotLine: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
126
|
+
xAxisDecimalDigits?: number;
|
|
127
|
+
yAxisDecimalDigits?: number;
|
|
128
|
+
markerStyle?: import("@xframes/common").ImPlotMarker;
|
|
129
|
+
xAxisScale?: import("@xframes/common").ImPlotScale;
|
|
130
|
+
yAxisScale?: import("@xframes/common").ImPlotScale;
|
|
131
|
+
axisAutoFit?: boolean;
|
|
132
|
+
} & React.RefAttributes<import("@xframes/common").PlotLineImperativeHandle>>;
|
|
133
|
+
readonly SeparatorText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
134
|
+
label: string;
|
|
135
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
136
|
+
label: string;
|
|
137
|
+
}) => 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">);
|
|
138
|
+
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">);
|
|
139
|
+
readonly Slider: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
140
|
+
sliderType?: import("@xframes/common").SliderTypes;
|
|
141
|
+
defaultValue?: number;
|
|
142
|
+
min?: number;
|
|
143
|
+
max?: number;
|
|
144
|
+
onChange?: (event: import("@xframes/common").SliderChangeEvent) => void;
|
|
145
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
146
|
+
sliderType?: import("@xframes/common").SliderTypes;
|
|
147
|
+
defaultValue?: number;
|
|
148
|
+
min?: number;
|
|
149
|
+
max?: number;
|
|
150
|
+
onChange?: (event: import("@xframes/common").SliderChangeEvent) => void;
|
|
151
|
+
}) => 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">);
|
|
152
|
+
readonly TabBar: React.FunctionComponent<{
|
|
153
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
154
|
+
} & import("@xframes/common").WidgetStyleProps> & ((props: {
|
|
155
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
156
|
+
} & 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">);
|
|
157
|
+
readonly TabItem: React.FunctionComponent<{
|
|
158
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
159
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
160
|
+
label: string;
|
|
161
|
+
onOpenChange?: (event: import("@xframes/common").TabItemChangeEvent) => void;
|
|
162
|
+
}> & ((props: {
|
|
163
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
164
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
165
|
+
label: string;
|
|
166
|
+
onOpenChange?: (event: import("@xframes/common").TabItemChangeEvent) => void;
|
|
167
|
+
}) => 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">);
|
|
168
|
+
readonly Table: React.ForwardRefExoticComponent<import("@xframes/common").WidgetStyleProps & {
|
|
169
|
+
columns: {
|
|
170
|
+
heading: string;
|
|
171
|
+
fieldId?: string;
|
|
172
|
+
}[];
|
|
173
|
+
initialData?: string;
|
|
174
|
+
clipRows?: number;
|
|
175
|
+
} & React.RefAttributes<import("@xframes/common").TableImperativeHandle>>;
|
|
176
|
+
readonly TextWrap: React.FunctionComponent<{
|
|
177
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
178
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
179
|
+
width: number;
|
|
180
|
+
}> & ((props: {
|
|
181
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
182
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
183
|
+
width: number;
|
|
184
|
+
}) => 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">);
|
|
185
|
+
readonly TreeNode: React.FunctionComponent<{
|
|
186
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
187
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
188
|
+
itemId: string;
|
|
189
|
+
onClick?: () => void;
|
|
190
|
+
leaf?: boolean;
|
|
191
|
+
open?: boolean;
|
|
192
|
+
defaultOpen?: boolean;
|
|
193
|
+
selected?: boolean;
|
|
194
|
+
defaultSelected?: boolean;
|
|
195
|
+
selectable?: boolean;
|
|
196
|
+
label?: string;
|
|
197
|
+
}> & ((props: {
|
|
198
|
+
children?: import("@xframes/common").WidgetReactNode;
|
|
199
|
+
} & import("@xframes/common").WidgetStyleProps & {
|
|
200
|
+
itemId: string;
|
|
201
|
+
onClick?: () => void;
|
|
202
|
+
leaf?: boolean;
|
|
203
|
+
open?: boolean;
|
|
204
|
+
defaultOpen?: boolean;
|
|
205
|
+
selected?: boolean;
|
|
206
|
+
defaultSelected?: boolean;
|
|
207
|
+
selectable?: boolean;
|
|
208
|
+
label?: string;
|
|
209
|
+
}) => 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">);
|
|
210
|
+
readonly TreeView: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
211
|
+
items: import("@xframes/common").TreeViewItem[];
|
|
212
|
+
defaultSelectedItemIds?: string[];
|
|
213
|
+
selectedItemIds?: string[];
|
|
214
|
+
allowMultipleSelection?: boolean;
|
|
215
|
+
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
216
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
217
|
+
items: import("@xframes/common").TreeViewItem[];
|
|
218
|
+
defaultSelectedItemIds?: string[];
|
|
219
|
+
selectedItemIds?: string[];
|
|
220
|
+
allowMultipleSelection?: boolean;
|
|
221
|
+
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
222
|
+
}) => 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">);
|
|
223
|
+
readonly UnformattedText: React.FunctionComponent<import("@xframes/common").WidgetStyleProps & {
|
|
224
|
+
text: string;
|
|
225
|
+
}> & ((props: import("@xframes/common").WidgetStyleProps & {
|
|
226
|
+
text: string;
|
|
227
|
+
}) => 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">);
|
|
228
|
+
};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.XFrames = exports.MainComponent = void 0;
|
|
4
|
+
const common_1 = require("@xframes/common");
|
|
5
|
+
const MainComponent = ({ children, }) => {
|
|
6
|
+
return null;
|
|
7
|
+
};
|
|
8
|
+
exports.MainComponent = MainComponent;
|
|
9
|
+
exports.XFrames = (0, common_1.attachSubComponents)("XFrames", exports.MainComponent, common_1.components);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.render = exports.XFrames = void 0;
|
|
4
|
+
const render_1 = require("./render");
|
|
5
|
+
Object.defineProperty(exports, "render", { enumerable: true, get: function () { return render_1.render; } });
|
|
6
|
+
const XFrames_1 = require("./XFrames");
|
|
7
|
+
Object.defineProperty(exports, "XFrames", { enumerable: true, get: function () { return XFrames_1.XFrames; } });
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const ReactFabricProd: {
|
|
2
|
+
createPortal(children: any, containerTag: any, ...args: any[]): {
|
|
3
|
+
$$typeof: symbol;
|
|
4
|
+
key: string | null;
|
|
5
|
+
children: any;
|
|
6
|
+
containerInfo: any;
|
|
7
|
+
implementation: any;
|
|
8
|
+
};
|
|
9
|
+
dispatchCommand(handle: any, command: any, args: any): void;
|
|
10
|
+
findHostInstance_DEPRECATED(componentOrHandle: any): any;
|
|
11
|
+
findNodeHandle: (componentOrHandle: any) => any;
|
|
12
|
+
getInspectorDataForInstance: () => void;
|
|
13
|
+
getNodeFromInternalInstanceHandle(internalInstanceHandle: any): any;
|
|
14
|
+
getPublicInstanceFromInternalInstanceHandle(internalInstanceHandle: any): any;
|
|
15
|
+
isChildPublicInstance(): never;
|
|
16
|
+
render(element: any, containerTag: any, callback: any, concurrentRoot: any): any;
|
|
17
|
+
sendAccessibilityEvent(handle: any, eventType: any): void;
|
|
18
|
+
stopSurface(containerTag: any): void;
|
|
19
|
+
unmountComponentAtNode(containerTag: any): void;
|
|
20
|
+
};
|
|
21
|
+
export declare const render: (EntryPointComponent: () => JSX.Element, assetsBasePath: string, fontDefs: any, theme: any) => void;
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.render = exports.ReactFabricProd = void 0;
|
|
27
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
28
|
+
const common_1 = require("@xframes/common");
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
const xframes = __importStar(require("./xframes.node"));
|
|
31
|
+
exports.ReactFabricProd = (0, common_1.ReactFabricProdInitialiser)(common_1.ReactNativePrivateInterface);
|
|
32
|
+
const render = (EntryPointComponent, assetsBasePath, fontDefs, theme) => {
|
|
33
|
+
const onInit = () => {
|
|
34
|
+
exports.ReactFabricProd.render((0, jsx_runtime_1.jsx)(common_1.WidgetRegistrationServiceContext.Provider, { value: widgetRegistrationService, children: (0, jsx_runtime_1.jsx)(EntryPointComponent, {}) }), 0, // containerTag,
|
|
35
|
+
() => {
|
|
36
|
+
// console.log("initialised");
|
|
37
|
+
}, 1);
|
|
38
|
+
};
|
|
39
|
+
const onTextChange = (id, value) => {
|
|
40
|
+
const rootNodeID = id;
|
|
41
|
+
const topLevelType = "onChange";
|
|
42
|
+
const nativeEventParam = { value };
|
|
43
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(rootNodeID, topLevelType, nativeEventParam);
|
|
44
|
+
};
|
|
45
|
+
const onComboChange = (id, value) => {
|
|
46
|
+
const rootNodeID = id;
|
|
47
|
+
const topLevelType = "onChange";
|
|
48
|
+
const nativeEventParam = { value };
|
|
49
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(rootNodeID, topLevelType, nativeEventParam);
|
|
50
|
+
};
|
|
51
|
+
const onNumericValueChange = (id, value) => {
|
|
52
|
+
const rootNodeID = id;
|
|
53
|
+
const topLevelType = "onChange";
|
|
54
|
+
const nativeEventParam = { value };
|
|
55
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(rootNodeID, topLevelType, nativeEventParam);
|
|
56
|
+
};
|
|
57
|
+
const onMultiValueChange = (id, values) => {
|
|
58
|
+
const rootNodeID = id;
|
|
59
|
+
const topLevelType = "onChange";
|
|
60
|
+
const nativeEventParam = { values };
|
|
61
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(rootNodeID, topLevelType, nativeEventParam);
|
|
62
|
+
};
|
|
63
|
+
const onBooleanValueChange = (id, value) => {
|
|
64
|
+
const rootNodeID = id;
|
|
65
|
+
const topLevelType = "onChange";
|
|
66
|
+
const nativeEventParam = { value };
|
|
67
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(rootNodeID, topLevelType, nativeEventParam);
|
|
68
|
+
};
|
|
69
|
+
const onClick = (id) => {
|
|
70
|
+
const rootNodeID = id;
|
|
71
|
+
const topLevelType = "onClick";
|
|
72
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.dispatchEvent(rootNodeID, topLevelType, {
|
|
73
|
+
value: "clicked",
|
|
74
|
+
});
|
|
75
|
+
};
|
|
76
|
+
xframes.init(assetsBasePath, JSON.stringify(fontDefs), JSON.stringify(theme), onInit, onTextChange, onComboChange, onNumericValueChange, onBooleanValueChange, onMultiValueChange, onClick);
|
|
77
|
+
const widgetRegistrationService = new common_1.WidgetRegistrationService(xframes);
|
|
78
|
+
common_1.ReactNativePrivateInterface.nativeFabricUIManager.init(xframes, widgetRegistrationService);
|
|
79
|
+
let flag = true;
|
|
80
|
+
(function keepProcessRunning() {
|
|
81
|
+
setTimeout(() => flag && keepProcessRunning(), 1000);
|
|
82
|
+
})();
|
|
83
|
+
};
|
|
84
|
+
exports.render = render;
|
package/dist/themes.d.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { XFramesStyleForPatching } from "@xframes/common";
|
|
2
|
+
export declare const theme1Colors: {
|
|
3
|
+
black: string;
|
|
4
|
+
darkGrey: string;
|
|
5
|
+
grey: string;
|
|
6
|
+
lightGrey: string;
|
|
7
|
+
veryLightGrey: string;
|
|
8
|
+
superLightGrey: string;
|
|
9
|
+
white: string;
|
|
10
|
+
hero: string;
|
|
11
|
+
hoverHero: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const theme1: XFramesStyleForPatching;
|
|
14
|
+
export declare const theme2Colors: {
|
|
15
|
+
darkestGrey: string;
|
|
16
|
+
darkerGrey: string;
|
|
17
|
+
darkGrey: string;
|
|
18
|
+
lightGrey: string;
|
|
19
|
+
lighterGrey: string;
|
|
20
|
+
evenLighterGrey: string;
|
|
21
|
+
black: string;
|
|
22
|
+
green: string;
|
|
23
|
+
red: string;
|
|
24
|
+
white: string;
|
|
25
|
+
};
|
|
26
|
+
export declare const theme2: XFramesStyleForPatching;
|
package/dist/themes.js
ADDED
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.theme2 = exports.theme2Colors = exports.theme1 = exports.theme1Colors = void 0;
|
|
4
|
+
const common_1 = require("@xframes/common");
|
|
5
|
+
exports.theme1Colors = {
|
|
6
|
+
black: "#1a1a1a",
|
|
7
|
+
darkGrey: "#5a5a5a",
|
|
8
|
+
grey: "#9a9a9a",
|
|
9
|
+
lightGrey: "#bebebe",
|
|
10
|
+
veryLightGrey: "#e5e5e5",
|
|
11
|
+
superLightGrey: "#f7f7f7",
|
|
12
|
+
white: "#fff",
|
|
13
|
+
hero: "#ff6e59",
|
|
14
|
+
hoverHero: "#ff4a30",
|
|
15
|
+
};
|
|
16
|
+
exports.theme1 = {
|
|
17
|
+
// frameBorderSize: 1,
|
|
18
|
+
// framePadding: [0, 0],
|
|
19
|
+
colors: {
|
|
20
|
+
[common_1.ImGuiCol.Text]: [exports.theme1Colors.black, 1],
|
|
21
|
+
[common_1.ImGuiCol.TextDisabled]: [exports.theme1Colors.darkGrey, 1],
|
|
22
|
+
[common_1.ImGuiCol.WindowBg]: [exports.theme1Colors.white, 1],
|
|
23
|
+
[common_1.ImGuiCol.ChildBg]: [exports.theme1Colors.white, 1],
|
|
24
|
+
[common_1.ImGuiCol.PopupBg]: [exports.theme1Colors.white, 1],
|
|
25
|
+
[common_1.ImGuiCol.Border]: [exports.theme1Colors.darkGrey, 1],
|
|
26
|
+
[common_1.ImGuiCol.BorderShadow]: [exports.theme1Colors.black, 1],
|
|
27
|
+
[common_1.ImGuiCol.FrameBg]: [exports.theme1Colors.veryLightGrey, 1],
|
|
28
|
+
[common_1.ImGuiCol.FrameBgHovered]: [exports.theme1Colors.lightGrey, 1],
|
|
29
|
+
[common_1.ImGuiCol.FrameBgActive]: [exports.theme1Colors.grey, 1],
|
|
30
|
+
[common_1.ImGuiCol.TitleBg]: [exports.theme1Colors.lightGrey, 1],
|
|
31
|
+
[common_1.ImGuiCol.TitleBgActive]: [exports.theme1Colors.grey, 1],
|
|
32
|
+
[common_1.ImGuiCol.TitleBgCollapsed]: [exports.theme1Colors.veryLightGrey, 1],
|
|
33
|
+
[common_1.ImGuiCol.MenuBarBg]: [exports.theme1Colors.grey, 1],
|
|
34
|
+
[common_1.ImGuiCol.ScrollbarBg]: [exports.theme1Colors.veryLightGrey, 1],
|
|
35
|
+
[common_1.ImGuiCol.ScrollbarGrab]: [exports.theme1Colors.grey, 1],
|
|
36
|
+
[common_1.ImGuiCol.ScrollbarGrabHovered]: [exports.theme1Colors.darkGrey, 1],
|
|
37
|
+
[common_1.ImGuiCol.ScrollbarGrabActive]: [exports.theme1Colors.black, 1],
|
|
38
|
+
[common_1.ImGuiCol.CheckMark]: [exports.theme1Colors.black, 1],
|
|
39
|
+
[common_1.ImGuiCol.SliderGrab]: [exports.theme1Colors.grey, 1],
|
|
40
|
+
[common_1.ImGuiCol.SliderGrabActive]: [exports.theme1Colors.darkGrey, 1],
|
|
41
|
+
[common_1.ImGuiCol.Button]: [exports.theme1Colors.lightGrey, 1],
|
|
42
|
+
[common_1.ImGuiCol.ButtonHovered]: [exports.theme1Colors.grey, 1],
|
|
43
|
+
[common_1.ImGuiCol.ButtonActive]: [exports.theme1Colors.darkGrey, 1],
|
|
44
|
+
[common_1.ImGuiCol.Header]: [exports.theme1Colors.veryLightGrey, 1],
|
|
45
|
+
[common_1.ImGuiCol.HeaderHovered]: [exports.theme1Colors.lightGrey, 1],
|
|
46
|
+
[common_1.ImGuiCol.HeaderActive]: [exports.theme1Colors.grey, 1],
|
|
47
|
+
[common_1.ImGuiCol.Separator]: [exports.theme1Colors.black, 1],
|
|
48
|
+
[common_1.ImGuiCol.SeparatorHovered]: [exports.theme1Colors.veryLightGrey, 1],
|
|
49
|
+
[common_1.ImGuiCol.SeparatorActive]: [exports.theme1Colors.lightGrey, 1],
|
|
50
|
+
[common_1.ImGuiCol.ResizeGrip]: [exports.theme1Colors.veryLightGrey, 1],
|
|
51
|
+
[common_1.ImGuiCol.ResizeGripHovered]: [exports.theme1Colors.lightGrey, 1],
|
|
52
|
+
[common_1.ImGuiCol.ResizeGripActive]: [exports.theme1Colors.grey, 1],
|
|
53
|
+
[common_1.ImGuiCol.Tab]: [exports.theme1Colors.veryLightGrey, 1],
|
|
54
|
+
[common_1.ImGuiCol.TabHovered]: [exports.theme1Colors.lightGrey, 1],
|
|
55
|
+
[common_1.ImGuiCol.TabActive]: [exports.theme1Colors.grey, 1],
|
|
56
|
+
[common_1.ImGuiCol.TabUnfocused]: [exports.theme1Colors.veryLightGrey, 1],
|
|
57
|
+
[common_1.ImGuiCol.TabUnfocusedActive]: [exports.theme1Colors.lightGrey, 1],
|
|
58
|
+
[common_1.ImGuiCol.PlotLines]: [exports.theme1Colors.grey, 1],
|
|
59
|
+
[common_1.ImGuiCol.PlotLinesHovered]: [exports.theme1Colors.darkGrey, 1],
|
|
60
|
+
[common_1.ImGuiCol.PlotHistogram]: [exports.theme1Colors.grey, 1],
|
|
61
|
+
[common_1.ImGuiCol.PlotHistogramHovered]: [exports.theme1Colors.darkGrey, 1],
|
|
62
|
+
[common_1.ImGuiCol.TableHeaderBg]: [exports.theme1Colors.grey, 1],
|
|
63
|
+
[common_1.ImGuiCol.TableBorderStrong]: [exports.theme1Colors.darkGrey, 1],
|
|
64
|
+
[common_1.ImGuiCol.TableBorderLight]: [exports.theme1Colors.lightGrey, 1],
|
|
65
|
+
[common_1.ImGuiCol.TableRowBg]: [exports.theme1Colors.veryLightGrey, 1],
|
|
66
|
+
[common_1.ImGuiCol.TableRowBgAlt]: [exports.theme1Colors.white, 1],
|
|
67
|
+
[common_1.ImGuiCol.TextSelectedBg]: [exports.theme1Colors.grey, 1],
|
|
68
|
+
[common_1.ImGuiCol.DragDropTarget]: [exports.theme1Colors.grey, 1],
|
|
69
|
+
[common_1.ImGuiCol.NavHighlight]: [exports.theme1Colors.grey, 1],
|
|
70
|
+
[common_1.ImGuiCol.NavWindowingHighlight]: [exports.theme1Colors.grey, 1],
|
|
71
|
+
[common_1.ImGuiCol.NavWindowingDimBg]: [exports.theme1Colors.grey, 1],
|
|
72
|
+
[common_1.ImGuiCol.ModalWindowDimBg]: [exports.theme1Colors.grey, 1],
|
|
73
|
+
},
|
|
74
|
+
};
|
|
75
|
+
exports.theme2Colors = {
|
|
76
|
+
darkestGrey: "#141f2c",
|
|
77
|
+
darkerGrey: "#2a2e39",
|
|
78
|
+
darkGrey: "#363b4a",
|
|
79
|
+
lightGrey: "#5a5a5a",
|
|
80
|
+
lighterGrey: "#7A818C",
|
|
81
|
+
evenLighterGrey: "#8491a3",
|
|
82
|
+
black: "#0A0B0D",
|
|
83
|
+
green: "#75f986",
|
|
84
|
+
red: "#ff0062",
|
|
85
|
+
white: "#fff",
|
|
86
|
+
};
|
|
87
|
+
exports.theme2 = {
|
|
88
|
+
// frameBorderSize: 1,
|
|
89
|
+
// framePadding: [0, 0],
|
|
90
|
+
colors: {
|
|
91
|
+
[common_1.ImGuiCol.Text]: [exports.theme2Colors.white, 1],
|
|
92
|
+
[common_1.ImGuiCol.TextDisabled]: [exports.theme2Colors.lighterGrey, 1],
|
|
93
|
+
[common_1.ImGuiCol.WindowBg]: [exports.theme2Colors.black, 1],
|
|
94
|
+
[common_1.ImGuiCol.ChildBg]: [exports.theme2Colors.black, 1],
|
|
95
|
+
[common_1.ImGuiCol.PopupBg]: [exports.theme2Colors.white, 1],
|
|
96
|
+
[common_1.ImGuiCol.Border]: [exports.theme2Colors.lightGrey, 1],
|
|
97
|
+
[common_1.ImGuiCol.BorderShadow]: [exports.theme2Colors.darkestGrey, 1],
|
|
98
|
+
[common_1.ImGuiCol.FrameBg]: [exports.theme2Colors.black, 1],
|
|
99
|
+
[common_1.ImGuiCol.FrameBgHovered]: [exports.theme2Colors.darkerGrey, 1], //
|
|
100
|
+
[common_1.ImGuiCol.FrameBgActive]: [exports.theme2Colors.lightGrey, 1],
|
|
101
|
+
[common_1.ImGuiCol.TitleBg]: [exports.theme2Colors.lightGrey, 1],
|
|
102
|
+
[common_1.ImGuiCol.TitleBgActive]: [exports.theme2Colors.darkerGrey, 1], //
|
|
103
|
+
[common_1.ImGuiCol.TitleBgCollapsed]: [exports.theme2Colors.lightGrey, 1],
|
|
104
|
+
[common_1.ImGuiCol.MenuBarBg]: [exports.theme2Colors.lightGrey, 1],
|
|
105
|
+
[common_1.ImGuiCol.ScrollbarBg]: [exports.theme2Colors.darkerGrey, 1], //
|
|
106
|
+
[common_1.ImGuiCol.ScrollbarGrab]: [exports.theme2Colors.darkerGrey, 1], //
|
|
107
|
+
[common_1.ImGuiCol.ScrollbarGrabHovered]: [exports.theme2Colors.lightGrey, 1],
|
|
108
|
+
[common_1.ImGuiCol.ScrollbarGrabActive]: [exports.theme2Colors.darkestGrey, 1],
|
|
109
|
+
[common_1.ImGuiCol.CheckMark]: [exports.theme2Colors.darkestGrey, 1],
|
|
110
|
+
[common_1.ImGuiCol.SliderGrab]: [exports.theme2Colors.darkerGrey, 1], //
|
|
111
|
+
[common_1.ImGuiCol.SliderGrabActive]: [exports.theme2Colors.lightGrey, 1],
|
|
112
|
+
[common_1.ImGuiCol.Button]: [exports.theme2Colors.black, 1],
|
|
113
|
+
[common_1.ImGuiCol.ButtonHovered]: [exports.theme2Colors.darkerGrey, 1], //
|
|
114
|
+
[common_1.ImGuiCol.ButtonActive]: [exports.theme2Colors.black, 1],
|
|
115
|
+
[common_1.ImGuiCol.Header]: [exports.theme2Colors.black, 1],
|
|
116
|
+
[common_1.ImGuiCol.HeaderHovered]: [exports.theme2Colors.black, 1],
|
|
117
|
+
[common_1.ImGuiCol.HeaderActive]: [exports.theme2Colors.lightGrey, 1],
|
|
118
|
+
[common_1.ImGuiCol.Separator]: [exports.theme2Colors.darkestGrey, 1],
|
|
119
|
+
[common_1.ImGuiCol.SeparatorHovered]: [exports.theme2Colors.lightGrey, 1],
|
|
120
|
+
[common_1.ImGuiCol.SeparatorActive]: [exports.theme2Colors.lightGrey, 1],
|
|
121
|
+
[common_1.ImGuiCol.ResizeGrip]: [exports.theme2Colors.black, 1],
|
|
122
|
+
[common_1.ImGuiCol.ResizeGripHovered]: [exports.theme2Colors.lightGrey, 1],
|
|
123
|
+
[common_1.ImGuiCol.ResizeGripActive]: [exports.theme2Colors.darkerGrey, 1], //
|
|
124
|
+
[common_1.ImGuiCol.Tab]: [exports.theme2Colors.black, 1],
|
|
125
|
+
[common_1.ImGuiCol.TabHovered]: [exports.theme2Colors.darkerGrey, 1], //
|
|
126
|
+
[common_1.ImGuiCol.TabActive]: [exports.theme2Colors.lightGrey, 1],
|
|
127
|
+
[common_1.ImGuiCol.TabUnfocused]: [exports.theme2Colors.black, 1],
|
|
128
|
+
[common_1.ImGuiCol.TabUnfocusedActive]: [exports.theme2Colors.lightGrey, 1],
|
|
129
|
+
[common_1.ImGuiCol.PlotLines]: [exports.theme2Colors.darkerGrey, 1], //
|
|
130
|
+
[common_1.ImGuiCol.PlotLinesHovered]: [exports.theme2Colors.lightGrey, 1],
|
|
131
|
+
[common_1.ImGuiCol.PlotHistogram]: [exports.theme2Colors.darkerGrey, 1], //
|
|
132
|
+
[common_1.ImGuiCol.PlotHistogramHovered]: [exports.theme2Colors.lightGrey, 1],
|
|
133
|
+
[common_1.ImGuiCol.TableHeaderBg]: [exports.theme2Colors.black, 1],
|
|
134
|
+
[common_1.ImGuiCol.TableBorderStrong]: [exports.theme2Colors.lightGrey, 1],
|
|
135
|
+
[common_1.ImGuiCol.TableBorderLight]: [exports.theme2Colors.darkerGrey, 1],
|
|
136
|
+
[common_1.ImGuiCol.TableRowBg]: [exports.theme2Colors.darkGrey, 1],
|
|
137
|
+
[common_1.ImGuiCol.TableRowBgAlt]: [exports.theme2Colors.darkerGrey, 1],
|
|
138
|
+
[common_1.ImGuiCol.TextSelectedBg]: [exports.theme2Colors.darkerGrey, 1], //
|
|
139
|
+
[common_1.ImGuiCol.DragDropTarget]: [exports.theme2Colors.darkerGrey, 1], //
|
|
140
|
+
[common_1.ImGuiCol.NavHighlight]: [exports.theme2Colors.darkerGrey, 1], //
|
|
141
|
+
[common_1.ImGuiCol.NavWindowingHighlight]: [exports.theme2Colors.darkerGrey, 1], //
|
|
142
|
+
[common_1.ImGuiCol.NavWindowingDimBg]: [exports.theme2Colors.darkerGrey, 1], //
|
|
143
|
+
[common_1.ImGuiCol.ModalWindowDimBg]: [exports.theme2Colors.darkerGrey, 1], //
|
|
144
|
+
},
|
|
145
|
+
};
|
package/dist/xframes.node
CHANGED
|
Binary file
|