@xframes/wasm 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +161 -2566
- package/dist/index.js +2017 -11519
- package/dist/index.js.map +1 -1
- package/dist/xframes.mjs +1 -1
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,120 +1,11 @@
|
|
|
1
|
-
import * as React$1 from 'react';
|
|
2
|
-
import { PropsWithChildren, SyntheticEvent, ReactElement, JSXElementConstructor, FunctionComponent } from 'react';
|
|
3
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { PropsWithChildren } from 'react';
|
|
4
|
+
import * as _xframes_common from '@xframes/common';
|
|
5
|
+
import { FontDef, XFramesStyleForPatching } from '@xframes/common';
|
|
6
|
+
|
|
7
|
+
declare const XFramesDemo: () => react_jsx_runtime.JSX.Element;
|
|
4
8
|
|
|
5
|
-
type WasmExitStatus = {
|
|
6
|
-
status: number;
|
|
7
|
-
};
|
|
8
|
-
type ImVec2 = [number, number];
|
|
9
|
-
declare enum ImGuiCol {
|
|
10
|
-
Text = 0,
|
|
11
|
-
TextDisabled = 1,
|
|
12
|
-
WindowBg = 2,
|
|
13
|
-
ChildBg = 3,
|
|
14
|
-
PopupBg = 4,
|
|
15
|
-
Border = 5,
|
|
16
|
-
BorderShadow = 6,
|
|
17
|
-
FrameBg = 7,
|
|
18
|
-
FrameBgHovered = 8,
|
|
19
|
-
FrameBgActive = 9,
|
|
20
|
-
TitleBg = 10,
|
|
21
|
-
TitleBgActive = 11,
|
|
22
|
-
TitleBgCollapsed = 12,
|
|
23
|
-
MenuBarBg = 13,
|
|
24
|
-
ScrollbarBg = 14,
|
|
25
|
-
ScrollbarGrab = 15,
|
|
26
|
-
ScrollbarGrabHovered = 16,
|
|
27
|
-
ScrollbarGrabActive = 17,
|
|
28
|
-
CheckMark = 18,
|
|
29
|
-
SliderGrab = 19,
|
|
30
|
-
SliderGrabActive = 20,
|
|
31
|
-
Button = 21,
|
|
32
|
-
ButtonHovered = 22,
|
|
33
|
-
ButtonActive = 23,
|
|
34
|
-
Header = 24,
|
|
35
|
-
HeaderHovered = 25,
|
|
36
|
-
HeaderActive = 26,
|
|
37
|
-
Separator = 27,
|
|
38
|
-
SeparatorHovered = 28,
|
|
39
|
-
SeparatorActive = 29,
|
|
40
|
-
ResizeGrip = 30,
|
|
41
|
-
ResizeGripHovered = 31,
|
|
42
|
-
ResizeGripActive = 32,
|
|
43
|
-
Tab = 33,
|
|
44
|
-
TabHovered = 34,
|
|
45
|
-
TabActive = 35,
|
|
46
|
-
TabUnfocused = 36,
|
|
47
|
-
TabUnfocusedActive = 37,
|
|
48
|
-
PlotLines = 38,
|
|
49
|
-
PlotLinesHovered = 39,
|
|
50
|
-
PlotHistogram = 40,
|
|
51
|
-
PlotHistogramHovered = 41,
|
|
52
|
-
TableHeaderBg = 42,
|
|
53
|
-
TableBorderStrong = 43,
|
|
54
|
-
TableBorderLight = 44,
|
|
55
|
-
TableRowBg = 45,
|
|
56
|
-
TableRowBgAlt = 46,
|
|
57
|
-
TextSelectedBg = 47,
|
|
58
|
-
DragDropTarget = 48,
|
|
59
|
-
NavHighlight = 49,
|
|
60
|
-
NavWindowingHighlight = 50,
|
|
61
|
-
NavWindowingDimBg = 51,
|
|
62
|
-
ModalWindowDimBg = 52,
|
|
63
|
-
COUNT = 53
|
|
64
|
-
}
|
|
65
|
-
declare enum ImPlotScale {
|
|
66
|
-
Linear = 0,
|
|
67
|
-
Time = 1,
|
|
68
|
-
Log10 = 2,
|
|
69
|
-
SymLog = 3
|
|
70
|
-
}
|
|
71
|
-
declare enum ImPlotMarker {
|
|
72
|
-
None = -1,
|
|
73
|
-
Circle = 0,
|
|
74
|
-
Square = 1,
|
|
75
|
-
Diamond = 2,
|
|
76
|
-
Up = 3,
|
|
77
|
-
Down = 4,
|
|
78
|
-
Left = 5,
|
|
79
|
-
Right = 6,
|
|
80
|
-
Cross = 7,
|
|
81
|
-
Plus = 8,
|
|
82
|
-
Asterisk = 9
|
|
83
|
-
}
|
|
84
|
-
declare enum ImGuiStyleVar {
|
|
85
|
-
Alpha = 0,// float Alpha
|
|
86
|
-
DisabledAlpha = 1,// float DisabledAlpha
|
|
87
|
-
WindowPadding = 2,// ImVec2 WindowPadding
|
|
88
|
-
WindowRounding = 3,// float WindowRounding
|
|
89
|
-
WindowBorderSize = 4,// float WindowBorderSize
|
|
90
|
-
WindowMinSize = 5,// ImVec2 WindowMinSize
|
|
91
|
-
WindowTitleAlign = 6,// ImVec2 WindowTitleAlign
|
|
92
|
-
ChildRounding = 7,// float ChildRounding
|
|
93
|
-
ChildBorderSize = 8,// float ChildBorderSize
|
|
94
|
-
PopupRounding = 9,// float PopupRounding
|
|
95
|
-
PopupBorderSize = 10,// float PopupBorderSize
|
|
96
|
-
FramePadding = 11,// ImVec2 FramePadding
|
|
97
|
-
FrameRounding = 12,// float FrameRounding
|
|
98
|
-
FrameBorderSize = 13,// float FrameBorderSize
|
|
99
|
-
ItemSpacing = 14,// ImVec2 ItemSpacing
|
|
100
|
-
ItemInnerSpacing = 15,// ImVec2 ItemInnerSpacing
|
|
101
|
-
IndentSpacing = 16,// float IndentSpacing
|
|
102
|
-
CellPadding = 17,// ImVec2 CellPadding
|
|
103
|
-
ScrollbarSize = 18,// float ScrollbarSize
|
|
104
|
-
ScrollbarRounding = 19,// float ScrollbarRounding
|
|
105
|
-
GrabMinSize = 20,// float GrabMinSize
|
|
106
|
-
GrabRounding = 21,// float GrabRounding
|
|
107
|
-
TabRounding = 22,// float TabRounding
|
|
108
|
-
TabBorderSize = 23,// float TabBorderSize
|
|
109
|
-
TabBarBorderSize = 24,// float TabBarBorderSize
|
|
110
|
-
TableAngledHeadersAngle = 25,// float TableAngledHeadersAngle
|
|
111
|
-
TableAngledHeadersTextAlign = 26,// ImVec2 TableAngledHeadersTextAlign
|
|
112
|
-
ButtonTextAlign = 27,// ImVec2 ButtonTextAlign
|
|
113
|
-
SelectableTextAlign = 28,// ImVec2 SelectableTextAlign
|
|
114
|
-
SeparatorTextBorderSize = 29,// float SeparatorTextBorderSize
|
|
115
|
-
SeparatorTextAlign = 30,// ImVec2 SeparatorTextAlign
|
|
116
|
-
SeparatorTextPadding = 31
|
|
117
|
-
}
|
|
118
9
|
declare namespace RuntimeExports {
|
|
119
10
|
let HEAPF32: any;
|
|
120
11
|
let HEAPF64: any;
|
|
@@ -171,20 +62,12 @@ interface ImGuiTabItemFlagsValue<T extends number> {
|
|
|
171
62
|
interface ImGuiFocusedFlagsValue<T extends number> {
|
|
172
63
|
value: T;
|
|
173
64
|
}
|
|
174
|
-
interface ImGuiHoveredFlagsValue<T extends number> {
|
|
175
|
-
value: T;
|
|
176
|
-
}
|
|
177
|
-
type ImGuiHoveredFlags = ImGuiHoveredFlagsValue<0> | ImGuiHoveredFlagsValue<1> | ImGuiHoveredFlagsValue<2> | ImGuiHoveredFlagsValue<4> | ImGuiHoveredFlagsValue<8> | ImGuiHoveredFlagsValue<32> | ImGuiHoveredFlagsValue<128> | ImGuiHoveredFlagsValue<256> | ImGuiHoveredFlagsValue<512> | ImGuiHoveredFlagsValue<1024> | ImGuiHoveredFlagsValue<2048> | ImGuiHoveredFlagsValue<768> | ImGuiHoveredFlagsValue<928> | ImGuiHoveredFlagsValue<3> | ImGuiHoveredFlagsValue<4096> | ImGuiHoveredFlagsValue<8192> | ImGuiHoveredFlagsValue<16384> | ImGuiHoveredFlagsValue<32768> | ImGuiHoveredFlagsValue<65536> | ImGuiHoveredFlagsValue<131072>;
|
|
178
65
|
interface ImGuiDragDropFlagsValue<T extends number> {
|
|
179
66
|
value: T;
|
|
180
67
|
}
|
|
181
68
|
interface ImGuiDataTypeValue<T extends number> {
|
|
182
69
|
value: T;
|
|
183
70
|
}
|
|
184
|
-
interface ImGuiDirValue<T extends number> {
|
|
185
|
-
value: T;
|
|
186
|
-
}
|
|
187
|
-
type ImGuiDir = ImGuiDirValue<-1> | ImGuiDirValue<0> | ImGuiDirValue<1> | ImGuiDirValue<2> | ImGuiDirValue<3> | ImGuiDirValue<4>;
|
|
188
71
|
interface ImGuiSortDirectionValue<T extends number> {
|
|
189
72
|
value: T;
|
|
190
73
|
}
|
|
@@ -408,28 +291,6 @@ interface EmbindModule {
|
|
|
408
291
|
NoPopupHierarchy: ImGuiFocusedFlagsValue<8>;
|
|
409
292
|
RootAndChildWindows: ImGuiFocusedFlagsValue<3>;
|
|
410
293
|
};
|
|
411
|
-
ImGuiHoveredFlags: {
|
|
412
|
-
None: ImGuiHoveredFlagsValue<0>;
|
|
413
|
-
ChildWindows: ImGuiHoveredFlagsValue<1>;
|
|
414
|
-
RootWindow: ImGuiHoveredFlagsValue<2>;
|
|
415
|
-
AnyWindow: ImGuiHoveredFlagsValue<4>;
|
|
416
|
-
NoPopupHierarchy: ImGuiHoveredFlagsValue<8>;
|
|
417
|
-
AllowWhenBlockedByPopup: ImGuiHoveredFlagsValue<32>;
|
|
418
|
-
AllowWhenBlockedByActiveItem: ImGuiHoveredFlagsValue<128>;
|
|
419
|
-
AllowWhenOverlappedByItem: ImGuiHoveredFlagsValue<256>;
|
|
420
|
-
AllowWhenOverlappedByWindow: ImGuiHoveredFlagsValue<512>;
|
|
421
|
-
AllowWhenDisabled: ImGuiHoveredFlagsValue<1024>;
|
|
422
|
-
NoNavOverride: ImGuiHoveredFlagsValue<2048>;
|
|
423
|
-
AllowWhenOverlapped: ImGuiHoveredFlagsValue<768>;
|
|
424
|
-
RectOnly: ImGuiHoveredFlagsValue<928>;
|
|
425
|
-
RootAndChildWindows: ImGuiHoveredFlagsValue<3>;
|
|
426
|
-
ForTooltip: ImGuiHoveredFlagsValue<4096>;
|
|
427
|
-
Stationary: ImGuiHoveredFlagsValue<8192>;
|
|
428
|
-
DelayNone: ImGuiHoveredFlagsValue<16384>;
|
|
429
|
-
DelayShort: ImGuiHoveredFlagsValue<32768>;
|
|
430
|
-
DelayNormal: ImGuiHoveredFlagsValue<65536>;
|
|
431
|
-
NoSharedDelay: ImGuiHoveredFlagsValue<131072>;
|
|
432
|
-
};
|
|
433
294
|
ImGuiDragDropFlags: {
|
|
434
295
|
None: ImGuiDragDropFlagsValue<0>;
|
|
435
296
|
SourceNoPreviewTooltip: ImGuiDragDropFlagsValue<1>;
|
|
@@ -456,14 +317,6 @@ interface EmbindModule {
|
|
|
456
317
|
Double: ImGuiDataTypeValue<9>;
|
|
457
318
|
COUNT: ImGuiDataTypeValue<10>;
|
|
458
319
|
};
|
|
459
|
-
ImGuiDir: {
|
|
460
|
-
None: ImGuiDirValue<-1>;
|
|
461
|
-
Left: ImGuiDirValue<0>;
|
|
462
|
-
Right: ImGuiDirValue<1>;
|
|
463
|
-
Up: ImGuiDirValue<2>;
|
|
464
|
-
Down: ImGuiDirValue<3>;
|
|
465
|
-
COUNT: ImGuiDirValue<4>;
|
|
466
|
-
};
|
|
467
320
|
ImGuiSortDirection: {
|
|
468
321
|
None: ImGuiSortDirectionValue<0>;
|
|
469
322
|
Ascending: ImGuiSortDirectionValue<1>;
|
|
@@ -855,96 +708,10 @@ type GetWasmModule = (options?: unknown) => Promise<MainModule>;
|
|
|
855
708
|
type ReactNativeWrapperProps = PropsWithChildren & {
|
|
856
709
|
wasmModule: MainModule;
|
|
857
710
|
};
|
|
858
|
-
declare const ReactNativeWrapper: React
|
|
859
|
-
|
|
860
|
-
type HEXA = [string, number];
|
|
861
|
-
type StyleColValue = string | HEXA;
|
|
862
|
-
|
|
863
|
-
type StyleVarValue = number | ImVec2;
|
|
864
|
-
type XFramesStyle = {
|
|
865
|
-
alpha: number;
|
|
866
|
-
disabledAlpha: number;
|
|
867
|
-
windowPadding: ImVec2;
|
|
868
|
-
windowRounding: number;
|
|
869
|
-
windowBorderSize: number;
|
|
870
|
-
windowMinSize: ImVec2;
|
|
871
|
-
windowTitleAlign: ImVec2;
|
|
872
|
-
windowMenuButtonPosition: ImGuiDir;
|
|
873
|
-
childRounding: number;
|
|
874
|
-
childBorderSize: number;
|
|
875
|
-
popupRounding: number;
|
|
876
|
-
popupBorderSize: number;
|
|
877
|
-
framePadding: ImVec2;
|
|
878
|
-
frameRounding: number;
|
|
879
|
-
frameBorderSize: 0 | 1;
|
|
880
|
-
itemSpacing: ImVec2;
|
|
881
|
-
itemInnerSpacing: ImVec2;
|
|
882
|
-
cellPadding: ImVec2;
|
|
883
|
-
touchExtraPadding: ImVec2;
|
|
884
|
-
indentSpacing: number;
|
|
885
|
-
columnsMinSpacing: number;
|
|
886
|
-
scrollbarSize: number;
|
|
887
|
-
scrollbarRounding: number;
|
|
888
|
-
grabMinSize: number;
|
|
889
|
-
grabRounding: number;
|
|
890
|
-
logSliderDeadzone: number;
|
|
891
|
-
tabRounding: number;
|
|
892
|
-
tabBorderSize: number;
|
|
893
|
-
tabMinWidthForCloseButton: number;
|
|
894
|
-
tabBarBorderSize: number;
|
|
895
|
-
tableAngledHeadersAngle: number;
|
|
896
|
-
tableAngledHeadersTextAlign: ImVec2;
|
|
897
|
-
colorButtonPosition: ImGuiDir;
|
|
898
|
-
buttonTextAlign: ImVec2;
|
|
899
|
-
selectableTextAlign: ImVec2;
|
|
900
|
-
separatorTextBorderSize: number;
|
|
901
|
-
separatorTextAlign: ImVec2;
|
|
902
|
-
separatorTextPadding: ImVec2;
|
|
903
|
-
displayWindowPadding: ImVec2;
|
|
904
|
-
displaySafeAreaPadding: ImVec2;
|
|
905
|
-
mouseCursorScale: number;
|
|
906
|
-
antiAliasedLines: boolean;
|
|
907
|
-
antiAliasedLinesUseTex: boolean;
|
|
908
|
-
antiAliasedFill: boolean;
|
|
909
|
-
curveTessellationTol: number;
|
|
910
|
-
circleTessellationMaxError: number;
|
|
911
|
-
colors: HEXA[];
|
|
912
|
-
hoverStationaryDelay: number;
|
|
913
|
-
hoverDelayShort: number;
|
|
914
|
-
hoverDelayNormal: number;
|
|
915
|
-
hoverFlagsForTooltipMouse: ImGuiHoveredFlags;
|
|
916
|
-
hoverFlagsForTooltipNav: ImGuiHoveredFlags;
|
|
917
|
-
};
|
|
918
|
-
type XFramesStyleForPatching = Partial<Omit<XFramesStyle, "colors">> & {
|
|
919
|
-
colors?: {
|
|
920
|
-
[k in ImGuiCol]?: HEXA;
|
|
921
|
-
};
|
|
922
|
-
};
|
|
923
|
-
|
|
924
|
-
type TreeViewItem = {
|
|
925
|
-
itemId: string;
|
|
926
|
-
label: string;
|
|
927
|
-
childItems?: TreeViewItem[];
|
|
928
|
-
};
|
|
929
|
-
|
|
930
|
-
type MapImperativeHandle$1 = {
|
|
931
|
-
render: (centerX: number, centerY: number, zoom: number) => void;
|
|
932
|
-
};
|
|
933
|
-
|
|
934
|
-
type InputTextImperativeHandle = {
|
|
935
|
-
setValue: (value: string) => void;
|
|
936
|
-
};
|
|
937
|
-
|
|
938
|
-
type MapImperativeHandle = {
|
|
939
|
-
reload: () => void;
|
|
940
|
-
};
|
|
941
|
-
|
|
942
|
-
type ComboImperativeHandle = {
|
|
943
|
-
setSelectedIndex: (index: number) => void;
|
|
944
|
-
};
|
|
711
|
+
declare const ReactNativeWrapper: React.ComponentType<ReactNativeWrapperProps>;
|
|
945
712
|
|
|
946
713
|
type MainComponentProps = PropsWithChildren & {
|
|
947
|
-
containerRef?: React
|
|
714
|
+
containerRef?: React.RefObject<HTMLElement>;
|
|
948
715
|
getWasmModule: GetWasmModule;
|
|
949
716
|
wasmDataPackage: string;
|
|
950
717
|
fontDefs?: FontDef[];
|
|
@@ -954,129 +721,187 @@ type MainComponentProps = PropsWithChildren & {
|
|
|
954
721
|
};
|
|
955
722
|
styleOverrides?: XFramesStyleForPatching;
|
|
956
723
|
};
|
|
957
|
-
declare const XFrames: React
|
|
958
|
-
readonly BulletText:
|
|
724
|
+
declare const XFrames: React.FunctionComponent<MainComponentProps> & {
|
|
725
|
+
readonly BulletText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
959
726
|
text: string;
|
|
960
|
-
}
|
|
961
|
-
|
|
727
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
728
|
+
text: string;
|
|
729
|
+
}) => _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">);
|
|
730
|
+
readonly Button: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
731
|
+
onClick?: () => void;
|
|
732
|
+
label?: string;
|
|
733
|
+
size?: _xframes_common.ImVec2;
|
|
734
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
962
735
|
onClick?: () => void;
|
|
963
736
|
label?: string;
|
|
964
|
-
size?: ImVec2;
|
|
965
|
-
}
|
|
966
|
-
readonly Checkbox:
|
|
737
|
+
size?: _xframes_common.ImVec2;
|
|
738
|
+
}) => _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">);
|
|
739
|
+
readonly Checkbox: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
740
|
+
defaultChecked?: boolean;
|
|
741
|
+
label?: string;
|
|
742
|
+
onChange?: (event: _xframes_common.CheckboxChangeEvent) => void;
|
|
743
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
967
744
|
defaultChecked?: boolean;
|
|
968
745
|
label?: string;
|
|
969
|
-
onChange?: (event: CheckboxChangeEvent) => void;
|
|
970
|
-
}
|
|
971
|
-
readonly Child:
|
|
972
|
-
children?: WidgetReactNode;
|
|
973
|
-
} & WidgetStyleProps
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
746
|
+
onChange?: (event: _xframes_common.CheckboxChangeEvent) => void;
|
|
747
|
+
}) => _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">);
|
|
748
|
+
readonly Child: React.FunctionComponent<{
|
|
749
|
+
children?: _xframes_common.WidgetReactNode;
|
|
750
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
751
|
+
children?: _xframes_common.WidgetReactNode;
|
|
752
|
+
} & _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">);
|
|
753
|
+
readonly ClippedMultiLineTextRenderer: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & React.RefAttributes<_xframes_common.ClippedMultiLineTextRendererImperativeHandle>>;
|
|
754
|
+
readonly CollapsingHeader: React.FunctionComponent<{
|
|
755
|
+
children?: _xframes_common.WidgetReactNode;
|
|
756
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
978
757
|
label?: string;
|
|
979
|
-
}
|
|
980
|
-
|
|
758
|
+
}> & ((props: {
|
|
759
|
+
children?: _xframes_common.WidgetReactNode;
|
|
760
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
761
|
+
label?: string;
|
|
762
|
+
}) => _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">);
|
|
763
|
+
readonly Combo: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
981
764
|
placeholder?: string;
|
|
982
765
|
options?: string[];
|
|
983
766
|
optionsList?: string;
|
|
984
767
|
initialSelectedIndex?: number;
|
|
985
|
-
onChange?: (event: ComboChangeEvent) => void;
|
|
986
|
-
} & React
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
768
|
+
onChange?: (event: _xframes_common.ComboChangeEvent) => void;
|
|
769
|
+
} & React.RefAttributes<{
|
|
770
|
+
setSelectedIndex: (index: number) => void;
|
|
771
|
+
}>>;
|
|
772
|
+
readonly DIWindow: React.FunctionComponent<{
|
|
773
|
+
children?: _xframes_common.WidgetReactNode;
|
|
774
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
990
775
|
title: string;
|
|
991
776
|
width?: number;
|
|
992
777
|
height?: number;
|
|
993
|
-
}
|
|
994
|
-
|
|
778
|
+
}> & ((props: {
|
|
779
|
+
children?: _xframes_common.WidgetReactNode;
|
|
780
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
781
|
+
title: string;
|
|
782
|
+
width?: number;
|
|
783
|
+
height?: number;
|
|
784
|
+
}) => _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">);
|
|
785
|
+
readonly DisabledText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
786
|
+
text: string;
|
|
787
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
995
788
|
text: string;
|
|
996
|
-
}
|
|
997
|
-
readonly Group:
|
|
998
|
-
children?: WidgetReactNode;
|
|
999
|
-
} & WidgetStyleProps
|
|
1000
|
-
|
|
789
|
+
}) => _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">);
|
|
790
|
+
readonly Group: React.FunctionComponent<{
|
|
791
|
+
children?: _xframes_common.WidgetReactNode;
|
|
792
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
793
|
+
children?: _xframes_common.WidgetReactNode;
|
|
794
|
+
} & _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">);
|
|
795
|
+
readonly Image: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
1001
796
|
url: string;
|
|
1002
797
|
width?: number;
|
|
1003
798
|
height?: number;
|
|
1004
|
-
} & React
|
|
1005
|
-
readonly InputText: React
|
|
799
|
+
} & React.RefAttributes<_xframes_common.ImageImperativeHandle>>;
|
|
800
|
+
readonly InputText: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
1006
801
|
defaultValue?: string;
|
|
1007
802
|
hint?: string;
|
|
1008
|
-
onChange?: (event: InputTextChangeEvent) => void;
|
|
1009
|
-
} & React
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
803
|
+
onChange?: (event: _xframes_common.InputTextChangeEvent) => void;
|
|
804
|
+
} & React.RefAttributes<{
|
|
805
|
+
setValue: (value: string) => void;
|
|
806
|
+
}>>;
|
|
807
|
+
readonly ItemTooltip: React.FunctionComponent<{
|
|
808
|
+
children?: _xframes_common.WidgetReactNode;
|
|
809
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
810
|
+
children?: _xframes_common.WidgetReactNode;
|
|
811
|
+
} & _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">);
|
|
812
|
+
readonly MapView: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & React.RefAttributes<_xframes_common.MapImperativeHandle>>;
|
|
813
|
+
readonly MultiSlider: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
814
|
+
numValues: 2 | 3 | 4;
|
|
815
|
+
defaultValues?: number[];
|
|
816
|
+
min?: number;
|
|
817
|
+
max?: number;
|
|
818
|
+
decimalDigits?: number;
|
|
819
|
+
onChange?: (event: _xframes_common.MultiSliderChangeEvent<number>) => void;
|
|
820
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
1015
821
|
numValues: 2 | 3 | 4;
|
|
1016
822
|
defaultValues?: number[];
|
|
1017
823
|
min?: number;
|
|
1018
824
|
max?: number;
|
|
1019
825
|
decimalDigits?: number;
|
|
1020
|
-
onChange?: (event: MultiSliderChangeEvent<number>) => void;
|
|
1021
|
-
}
|
|
1022
|
-
readonly Node: React
|
|
1023
|
-
children?: WidgetReactNode;
|
|
826
|
+
onChange?: (event: _xframes_common.MultiSliderChangeEvent<number>) => void;
|
|
827
|
+
}) => _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">);
|
|
828
|
+
readonly Node: React.FunctionComponent<{
|
|
829
|
+
children?: _xframes_common.WidgetReactNode;
|
|
1024
830
|
} & {
|
|
1025
831
|
root?: boolean;
|
|
1026
832
|
cull?: boolean;
|
|
1027
833
|
trackMouseClickEvents?: boolean;
|
|
1028
|
-
children?: WidgetReactNode;
|
|
834
|
+
children?: _xframes_common.WidgetReactNode;
|
|
1029
835
|
onClick?: () => void;
|
|
1030
|
-
} & NodeStyleProps>;
|
|
1031
|
-
readonly PlotCandlestick: React
|
|
836
|
+
} & _xframes_common.NodeStyleProps>;
|
|
837
|
+
readonly PlotCandlestick: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
1032
838
|
bullColor?: string;
|
|
1033
839
|
bearColor?: string;
|
|
1034
840
|
axisAutoFit?: boolean;
|
|
1035
|
-
} & React
|
|
1036
|
-
readonly PlotLine: React
|
|
841
|
+
} & React.RefAttributes<_xframes_common.PlotCandlestickImperativeHandle>>;
|
|
842
|
+
readonly PlotLine: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
1037
843
|
xAxisDecimalDigits?: number;
|
|
1038
844
|
yAxisDecimalDigits?: number;
|
|
1039
|
-
markerStyle?: ImPlotMarker;
|
|
1040
|
-
xAxisScale?: ImPlotScale;
|
|
1041
|
-
yAxisScale?: ImPlotScale;
|
|
845
|
+
markerStyle?: _xframes_common.ImPlotMarker;
|
|
846
|
+
xAxisScale?: _xframes_common.ImPlotScale;
|
|
847
|
+
yAxisScale?: _xframes_common.ImPlotScale;
|
|
1042
848
|
axisAutoFit?: boolean;
|
|
1043
|
-
} & React
|
|
1044
|
-
readonly SeparatorText:
|
|
849
|
+
} & React.RefAttributes<_xframes_common.PlotLineImperativeHandle>>;
|
|
850
|
+
readonly SeparatorText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
1045
851
|
label: string;
|
|
1046
|
-
}
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
852
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
853
|
+
label: string;
|
|
854
|
+
}) => _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">);
|
|
855
|
+
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">);
|
|
856
|
+
readonly Slider: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
857
|
+
sliderType?: _xframes_common.SliderTypes;
|
|
858
|
+
defaultValue?: number;
|
|
859
|
+
min?: number;
|
|
860
|
+
max?: number;
|
|
861
|
+
onChange?: (event: _xframes_common.SliderChangeEvent) => void;
|
|
862
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
863
|
+
sliderType?: _xframes_common.SliderTypes;
|
|
1050
864
|
defaultValue?: number;
|
|
1051
865
|
min?: number;
|
|
1052
866
|
max?: number;
|
|
1053
|
-
onChange?: (event: SliderChangeEvent) => void;
|
|
1054
|
-
}
|
|
1055
|
-
readonly TabBar:
|
|
1056
|
-
children?: WidgetReactNode;
|
|
1057
|
-
} & WidgetStyleProps
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
867
|
+
onChange?: (event: _xframes_common.SliderChangeEvent) => void;
|
|
868
|
+
}) => _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">);
|
|
869
|
+
readonly TabBar: React.FunctionComponent<{
|
|
870
|
+
children?: _xframes_common.WidgetReactNode;
|
|
871
|
+
} & _xframes_common.WidgetStyleProps> & ((props: {
|
|
872
|
+
children?: _xframes_common.WidgetReactNode;
|
|
873
|
+
} & _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">);
|
|
874
|
+
readonly TabItem: React.FunctionComponent<{
|
|
875
|
+
children?: _xframes_common.WidgetReactNode;
|
|
876
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
877
|
+
label: string;
|
|
878
|
+
onOpenChange?: (event: _xframes_common.TabItemChangeEvent) => void;
|
|
879
|
+
}> & ((props: {
|
|
880
|
+
children?: _xframes_common.WidgetReactNode;
|
|
881
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
1061
882
|
label: string;
|
|
1062
|
-
onOpenChange?: (event: TabItemChangeEvent) => void;
|
|
1063
|
-
}
|
|
1064
|
-
readonly Table: React
|
|
883
|
+
onOpenChange?: (event: _xframes_common.TabItemChangeEvent) => void;
|
|
884
|
+
}) => _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">);
|
|
885
|
+
readonly Table: React.ForwardRefExoticComponent<_xframes_common.WidgetStyleProps & {
|
|
1065
886
|
columns: {
|
|
1066
887
|
heading: string;
|
|
1067
888
|
fieldId?: string;
|
|
1068
889
|
}[];
|
|
1069
890
|
initialData?: string;
|
|
1070
891
|
clipRows?: number;
|
|
1071
|
-
} & React
|
|
1072
|
-
readonly TextWrap:
|
|
1073
|
-
children?: WidgetReactNode;
|
|
1074
|
-
} & WidgetStyleProps & {
|
|
892
|
+
} & React.RefAttributes<_xframes_common.TableImperativeHandle>>;
|
|
893
|
+
readonly TextWrap: React.FunctionComponent<{
|
|
894
|
+
children?: _xframes_common.WidgetReactNode;
|
|
895
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
896
|
+
width: number;
|
|
897
|
+
}> & ((props: {
|
|
898
|
+
children?: _xframes_common.WidgetReactNode;
|
|
899
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
1075
900
|
width: number;
|
|
1076
|
-
}
|
|
1077
|
-
readonly TreeNode:
|
|
1078
|
-
children?: WidgetReactNode;
|
|
1079
|
-
} & WidgetStyleProps & {
|
|
901
|
+
}) => _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">);
|
|
902
|
+
readonly TreeNode: React.FunctionComponent<{
|
|
903
|
+
children?: _xframes_common.WidgetReactNode;
|
|
904
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
1080
905
|
itemId: string;
|
|
1081
906
|
onClick?: () => void;
|
|
1082
907
|
leaf?: boolean;
|
|
@@ -1086,282 +911,9 @@ declare const XFrames: React$1.FunctionComponent<MainComponentProps> & {
|
|
|
1086
911
|
defaultSelected?: boolean;
|
|
1087
912
|
selectable?: boolean;
|
|
1088
913
|
label?: string;
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
defaultSelectedItemIds?: string[];
|
|
1093
|
-
selectedItemIds?: string[];
|
|
1094
|
-
allowMultipleSelection?: boolean;
|
|
1095
|
-
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
1096
|
-
}>;
|
|
1097
|
-
readonly UnformattedText: WidgetFunctionComponent<WidgetStyleProps & {
|
|
1098
|
-
text: string;
|
|
1099
|
-
}>;
|
|
1100
|
-
};
|
|
1101
|
-
|
|
1102
|
-
type RoundCorners = "all" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
|
|
1103
|
-
type BorderStyle = {
|
|
1104
|
-
color: StyleColValue;
|
|
1105
|
-
thickness?: number;
|
|
1106
|
-
};
|
|
1107
|
-
type BaseDrawStyle = {
|
|
1108
|
-
backgroundColor?: StyleColValue;
|
|
1109
|
-
border?: BorderStyle;
|
|
1110
|
-
borderTop?: BorderStyle;
|
|
1111
|
-
borderRight?: BorderStyle;
|
|
1112
|
-
borderBottom?: BorderStyle;
|
|
1113
|
-
borderLeft?: BorderStyle;
|
|
1114
|
-
rounding?: number;
|
|
1115
|
-
roundCorners?: RoundCorners[];
|
|
1116
|
-
};
|
|
1117
|
-
|
|
1118
|
-
type Edge = "left" | "top" | "right" | "bottom" | "start" | "end" | "horizontal" | "vertical" | "all";
|
|
1119
|
-
type Gutter = "column" | "row" | "all";
|
|
1120
|
-
type YogaStyle = {
|
|
1121
|
-
direction?: "inherit" | "ltr" | "rtl";
|
|
1122
|
-
flexDirection?: "column" | "column-reverse" | "row" | "row-reverse";
|
|
1123
|
-
justifyContent?: "flex-start" | "center" | "flex-end" | "space-between" | "space-around" | "space-evenly";
|
|
1124
|
-
alignContent?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | "space-between" | "space-around" | "space-evenly";
|
|
1125
|
-
alignItems?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | "baseline";
|
|
1126
|
-
alignSelf?: "auto" | "flex-start" | "center" | "flex-end" | "stretch" | "baseline";
|
|
1127
|
-
positionType?: "static" | "relative" | "absolute";
|
|
1128
|
-
flexWrap?: "no-wrap" | "wrap" | "wrap-reverse";
|
|
1129
|
-
overflow?: "visible" | "hidden" | "scroll";
|
|
1130
|
-
display?: "flex" | "none";
|
|
1131
|
-
flex?: number;
|
|
1132
|
-
flexGrow?: number;
|
|
1133
|
-
flexShrink?: number;
|
|
1134
|
-
flexBasis?: number;
|
|
1135
|
-
flexBasisPercent?: number;
|
|
1136
|
-
position?: {
|
|
1137
|
-
[edge in Edge]?: number;
|
|
1138
|
-
};
|
|
1139
|
-
margin?: {
|
|
1140
|
-
[edge in Edge]?: number;
|
|
1141
|
-
};
|
|
1142
|
-
padding?: {
|
|
1143
|
-
[edge in Edge]?: number;
|
|
1144
|
-
};
|
|
1145
|
-
gap?: {
|
|
1146
|
-
[gutter in Gutter]?: number;
|
|
1147
|
-
};
|
|
1148
|
-
aspectRatio?: number;
|
|
1149
|
-
width?: number | string;
|
|
1150
|
-
minWidth?: number | string;
|
|
1151
|
-
maxWidth?: number | string;
|
|
1152
|
-
height?: number | string;
|
|
1153
|
-
minHeight?: number | string;
|
|
1154
|
-
maxHeight?: number | string;
|
|
1155
|
-
};
|
|
1156
|
-
|
|
1157
|
-
type StyleRules = {
|
|
1158
|
-
align?: "left" | "right";
|
|
1159
|
-
font?: {
|
|
1160
|
-
name: string;
|
|
1161
|
-
size: number;
|
|
1162
|
-
};
|
|
1163
|
-
colors?: {
|
|
1164
|
-
[k in ImGuiCol]?: StyleColValue;
|
|
1165
|
-
};
|
|
1166
|
-
vars?: {
|
|
1167
|
-
[ImGuiStyleVar.Alpha]?: number;
|
|
1168
|
-
[ImGuiStyleVar.DisabledAlpha]?: number;
|
|
1169
|
-
[ImGuiStyleVar.WindowPadding]?: ImVec2;
|
|
1170
|
-
[ImGuiStyleVar.WindowRounding]?: number;
|
|
1171
|
-
[ImGuiStyleVar.WindowBorderSize]?: number;
|
|
1172
|
-
[ImGuiStyleVar.WindowMinSize]?: ImVec2;
|
|
1173
|
-
[ImGuiStyleVar.WindowTitleAlign]?: ImVec2;
|
|
1174
|
-
[ImGuiStyleVar.ChildRounding]?: number;
|
|
1175
|
-
[ImGuiStyleVar.ChildBorderSize]?: number;
|
|
1176
|
-
[ImGuiStyleVar.PopupRounding]?: number;
|
|
1177
|
-
[ImGuiStyleVar.PopupBorderSize]?: number;
|
|
1178
|
-
[ImGuiStyleVar.FramePadding]?: ImVec2;
|
|
1179
|
-
[ImGuiStyleVar.FrameRounding]?: number;
|
|
1180
|
-
[ImGuiStyleVar.FrameBorderSize]?: number;
|
|
1181
|
-
[ImGuiStyleVar.ItemSpacing]?: ImVec2;
|
|
1182
|
-
[ImGuiStyleVar.ItemInnerSpacing]?: ImVec2;
|
|
1183
|
-
[ImGuiStyleVar.IndentSpacing]?: number;
|
|
1184
|
-
[ImGuiStyleVar.CellPadding]?: ImVec2;
|
|
1185
|
-
[ImGuiStyleVar.ScrollbarSize]?: number;
|
|
1186
|
-
[ImGuiStyleVar.ScrollbarRounding]?: number;
|
|
1187
|
-
[ImGuiStyleVar.GrabMinSize]?: number;
|
|
1188
|
-
[ImGuiStyleVar.GrabRounding]?: number;
|
|
1189
|
-
[ImGuiStyleVar.TabRounding]?: number;
|
|
1190
|
-
[ImGuiStyleVar.TabBorderSize]?: number;
|
|
1191
|
-
[ImGuiStyleVar.TabBarBorderSize]?: number;
|
|
1192
|
-
[ImGuiStyleVar.TableAngledHeadersAngle]?: number;
|
|
1193
|
-
[ImGuiStyleVar.TableAngledHeadersTextAlign]?: ImVec2;
|
|
1194
|
-
[ImGuiStyleVar.ButtonTextAlign]?: ImVec2;
|
|
1195
|
-
[ImGuiStyleVar.SelectableTextAlign]?: ImVec2;
|
|
1196
|
-
[ImGuiStyleVar.SeparatorTextBorderSize]?: number;
|
|
1197
|
-
[ImGuiStyleVar.SeparatorTextAlign]?: ImVec2;
|
|
1198
|
-
[ImGuiStyleVar.SeparatorTextPadding]?: ImVec2;
|
|
1199
|
-
};
|
|
1200
|
-
};
|
|
1201
|
-
type RWStyleSheet = {
|
|
1202
|
-
[k: string]: StyleRules & YogaStyle & BaseDrawStyle;
|
|
1203
|
-
};
|
|
1204
|
-
declare const RWStyleSheet: {
|
|
1205
|
-
create: (styleSheet: RWStyleSheet) => RWStyleSheet;
|
|
1206
|
-
};
|
|
1207
|
-
|
|
1208
|
-
type ModuleEventHandlers = {
|
|
1209
|
-
onTextChange: (id: number, value: string) => void;
|
|
1210
|
-
onComboChange: (id: number, value: number) => void;
|
|
1211
|
-
onNumericValueChange: (id: number, value: number) => void;
|
|
1212
|
-
onMultiValueChange: (id: number, values: Primitive[]) => void;
|
|
1213
|
-
onBooleanValueChange: (id: number, value: boolean) => void;
|
|
1214
|
-
onClick: (id: number) => void;
|
|
1215
|
-
onInit?: () => void;
|
|
1216
|
-
};
|
|
1217
|
-
type WasmDeps = {
|
|
1218
|
-
eventHandlers: ModuleEventHandlers;
|
|
1219
|
-
};
|
|
1220
|
-
type Primitive = string | number | boolean;
|
|
1221
|
-
type SliderTypes = "default" | "angle";
|
|
1222
|
-
type PlotCandlestickDataItem = {
|
|
1223
|
-
date: number;
|
|
1224
|
-
open: number;
|
|
1225
|
-
close: number;
|
|
1226
|
-
low: number;
|
|
1227
|
-
high: number;
|
|
1228
|
-
};
|
|
1229
|
-
type FontDef = {
|
|
1230
|
-
name: string;
|
|
1231
|
-
sizes: number[];
|
|
1232
|
-
};
|
|
1233
|
-
type NodeStyle = YogaStyle & BaseDrawStyle;
|
|
1234
|
-
type WidgetStyle = StyleRules & YogaStyle & BaseDrawStyle;
|
|
1235
|
-
type NodeStyleProps = {
|
|
1236
|
-
style?: NodeStyle;
|
|
1237
|
-
hoverStyle?: NodeStyle;
|
|
1238
|
-
activeStyle?: NodeStyle;
|
|
1239
|
-
disabledStyle?: NodeStyle;
|
|
1240
|
-
};
|
|
1241
|
-
type WidgetStyleProps = {
|
|
1242
|
-
style?: WidgetStyle;
|
|
1243
|
-
hoverStyle?: WidgetStyle;
|
|
1244
|
-
activeStyle?: WidgetStyle;
|
|
1245
|
-
disabledStyle?: WidgetStyle;
|
|
1246
|
-
};
|
|
1247
|
-
type TabItemChangeEvent = SyntheticEvent<WidgetReactElement<"TabItem">, {
|
|
1248
|
-
value: boolean;
|
|
1249
|
-
}>;
|
|
1250
|
-
type InputTextChangeEvent = SyntheticEvent<WidgetReactElement<"InputText">, {
|
|
1251
|
-
value: string;
|
|
1252
|
-
}>;
|
|
1253
|
-
type ComboChangeEvent = SyntheticEvent<WidgetReactElement<"Combo">, {
|
|
1254
|
-
value: number;
|
|
1255
|
-
}>;
|
|
1256
|
-
type SliderChangeEvent = SyntheticEvent<WidgetReactElement<"Slider">, {
|
|
1257
|
-
value: number;
|
|
1258
|
-
}>;
|
|
1259
|
-
type MultiSliderChangeEvent<T extends Primitive = Primitive> = SyntheticEvent<WidgetReactElement<"MultiSlider">, {
|
|
1260
|
-
values: T[];
|
|
1261
|
-
}>;
|
|
1262
|
-
type CheckboxChangeEvent = SyntheticEvent<WidgetReactElement<"Checkbox">, {
|
|
1263
|
-
value: boolean;
|
|
1264
|
-
}>;
|
|
1265
|
-
type WidgetPropsMap = {
|
|
1266
|
-
BulletText: WidgetStyleProps & {
|
|
1267
|
-
text: string;
|
|
1268
|
-
};
|
|
1269
|
-
Button: WidgetStyleProps & {
|
|
1270
|
-
onClick?: () => void;
|
|
1271
|
-
label?: string;
|
|
1272
|
-
size?: ImVec2;
|
|
1273
|
-
};
|
|
1274
|
-
Checkbox: WidgetStyleProps & {
|
|
1275
|
-
defaultChecked?: boolean;
|
|
1276
|
-
label?: string;
|
|
1277
|
-
onChange?: (event: CheckboxChangeEvent) => void;
|
|
1278
|
-
};
|
|
1279
|
-
Child: WidgetStyleProps;
|
|
1280
|
-
ClippedMultiLineTextRenderer: WidgetStyleProps;
|
|
1281
|
-
CollapsingHeader: WidgetStyleProps & {
|
|
1282
|
-
label?: string;
|
|
1283
|
-
};
|
|
1284
|
-
Combo: WidgetStyleProps & {
|
|
1285
|
-
placeholder?: string;
|
|
1286
|
-
options?: string[];
|
|
1287
|
-
optionsList?: string;
|
|
1288
|
-
initialSelectedIndex?: number;
|
|
1289
|
-
onChange?: (event: ComboChangeEvent) => void;
|
|
1290
|
-
};
|
|
1291
|
-
DisabledText: WidgetStyleProps & {
|
|
1292
|
-
text: string;
|
|
1293
|
-
};
|
|
1294
|
-
DIWindow: WidgetStyleProps & {
|
|
1295
|
-
title: string;
|
|
1296
|
-
width?: number;
|
|
1297
|
-
height?: number;
|
|
1298
|
-
};
|
|
1299
|
-
Group: WidgetStyleProps;
|
|
1300
|
-
HelpMarker: WidgetStyleProps & {
|
|
1301
|
-
text: string;
|
|
1302
|
-
};
|
|
1303
|
-
Image: WidgetStyleProps & {
|
|
1304
|
-
url: string;
|
|
1305
|
-
width?: number;
|
|
1306
|
-
height?: number;
|
|
1307
|
-
};
|
|
1308
|
-
Indent: WidgetStyleProps;
|
|
1309
|
-
InputText: WidgetStyleProps & {
|
|
1310
|
-
defaultValue?: string;
|
|
1311
|
-
hint?: string;
|
|
1312
|
-
onChange?: (event: InputTextChangeEvent) => void;
|
|
1313
|
-
};
|
|
1314
|
-
ItemTooltip: WidgetStyleProps;
|
|
1315
|
-
MapView: WidgetStyleProps;
|
|
1316
|
-
MultiSlider: WidgetStyleProps & {
|
|
1317
|
-
numValues: 2 | 3 | 4;
|
|
1318
|
-
defaultValues?: number[];
|
|
1319
|
-
min?: number;
|
|
1320
|
-
max?: number;
|
|
1321
|
-
decimalDigits?: number;
|
|
1322
|
-
onChange?: (event: MultiSliderChangeEvent<number>) => void;
|
|
1323
|
-
};
|
|
1324
|
-
PlotCandlestick: WidgetStyleProps & {
|
|
1325
|
-
bullColor?: string;
|
|
1326
|
-
bearColor?: string;
|
|
1327
|
-
axisAutoFit?: boolean;
|
|
1328
|
-
};
|
|
1329
|
-
PlotLine: WidgetStyleProps & {
|
|
1330
|
-
xAxisDecimalDigits?: number;
|
|
1331
|
-
yAxisDecimalDigits?: number;
|
|
1332
|
-
markerStyle?: ImPlotMarker;
|
|
1333
|
-
xAxisScale?: ImPlotScale;
|
|
1334
|
-
yAxisScale?: ImPlotScale;
|
|
1335
|
-
axisAutoFit?: boolean;
|
|
1336
|
-
};
|
|
1337
|
-
Separator: WidgetStyleProps;
|
|
1338
|
-
SeparatorText: WidgetStyleProps & {
|
|
1339
|
-
label: string;
|
|
1340
|
-
};
|
|
1341
|
-
Slider: WidgetStyleProps & {
|
|
1342
|
-
sliderType?: SliderTypes;
|
|
1343
|
-
defaultValue?: number;
|
|
1344
|
-
min?: number;
|
|
1345
|
-
max?: number;
|
|
1346
|
-
onChange?: (event: SliderChangeEvent) => void;
|
|
1347
|
-
};
|
|
1348
|
-
TabBar: WidgetStyleProps;
|
|
1349
|
-
TabItem: WidgetStyleProps & {
|
|
1350
|
-
label: string;
|
|
1351
|
-
onOpenChange?: (event: TabItemChangeEvent) => void;
|
|
1352
|
-
};
|
|
1353
|
-
Table: WidgetStyleProps & {
|
|
1354
|
-
columns: {
|
|
1355
|
-
heading: string;
|
|
1356
|
-
fieldId?: string;
|
|
1357
|
-
}[];
|
|
1358
|
-
initialData?: string;
|
|
1359
|
-
clipRows?: number;
|
|
1360
|
-
};
|
|
1361
|
-
TextWrap: WidgetStyleProps & {
|
|
1362
|
-
width: number;
|
|
1363
|
-
};
|
|
1364
|
-
TreeNode: WidgetStyleProps & {
|
|
914
|
+
}> & ((props: {
|
|
915
|
+
children?: _xframes_common.WidgetReactNode;
|
|
916
|
+
} & _xframes_common.WidgetStyleProps & {
|
|
1365
917
|
itemId: string;
|
|
1366
918
|
onClick?: () => void;
|
|
1367
919
|
leaf?: boolean;
|
|
@@ -1371,1984 +923,27 @@ type WidgetPropsMap = {
|
|
|
1371
923
|
defaultSelected?: boolean;
|
|
1372
924
|
selectable?: boolean;
|
|
1373
925
|
label?: string;
|
|
1374
|
-
};
|
|
1375
|
-
TreeView: WidgetStyleProps & {
|
|
1376
|
-
items: TreeViewItem[];
|
|
926
|
+
}) => _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">);
|
|
927
|
+
readonly TreeView: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
928
|
+
items: _xframes_common.TreeViewItem[];
|
|
1377
929
|
defaultSelectedItemIds?: string[];
|
|
1378
930
|
selectedItemIds?: string[];
|
|
1379
931
|
allowMultipleSelection?: boolean;
|
|
1380
932
|
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
1381
|
-
}
|
|
1382
|
-
|
|
933
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
934
|
+
items: _xframes_common.TreeViewItem[];
|
|
935
|
+
defaultSelectedItemIds?: string[];
|
|
936
|
+
selectedItemIds?: string[];
|
|
937
|
+
allowMultipleSelection?: boolean;
|
|
938
|
+
onToggleItemSelection?: (itemId: string, selected: boolean) => void;
|
|
939
|
+
}) => _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">);
|
|
940
|
+
readonly UnformattedText: React.FunctionComponent<_xframes_common.WidgetStyleProps & {
|
|
1383
941
|
text: string;
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
type WidgetReactNode = WidgetReactElementsFlat | null | undefined | false | Iterable<WidgetReactNode>;
|
|
1388
|
-
type WidgetReactElement<K extends WidgetKeys> = ReactElement<WidgetPropsMap[K], JSXElementConstructor<WidgetPropsMap[K]>>;
|
|
1389
|
-
type WidgetReactElements = {
|
|
1390
|
-
[K in WidgetKeys]: WidgetReactElement<K>;
|
|
1391
|
-
};
|
|
1392
|
-
type WidgetReactElementsFlat = WidgetReactElements[keyof WidgetReactElements];
|
|
1393
|
-
type NodeProps = {
|
|
1394
|
-
root?: boolean;
|
|
1395
|
-
cull?: boolean;
|
|
1396
|
-
trackMouseClickEvents?: boolean;
|
|
1397
|
-
children?: WidgetReactNode;
|
|
1398
|
-
onClick?: () => void;
|
|
1399
|
-
} & NodeStyleProps;
|
|
1400
|
-
type WidgetFunctionComponent<P = {}> = FunctionComponent<P> & {
|
|
1401
|
-
(props: P): WidgetReactElementsFlat;
|
|
1402
|
-
};
|
|
1403
|
-
|
|
1404
|
-
declare class WidgetRegistrationService {
|
|
1405
|
-
private wasmModule;
|
|
1406
|
-
private tables;
|
|
1407
|
-
private maps;
|
|
1408
|
-
private fabricWidgetsMapping;
|
|
1409
|
-
private fonts;
|
|
1410
|
-
constructor(wasmModule: any);
|
|
1411
|
-
setFonts(fonts: string[]): void;
|
|
1412
|
-
getFonts(): string[];
|
|
1413
|
-
getStyle(): XFramesStyle;
|
|
1414
|
-
generateId(): string;
|
|
1415
|
-
linkWidgetIds(id: string, fabricId: number): void;
|
|
1416
|
-
unlinkWidgetIds(id: string): void;
|
|
1417
|
-
setDebug(debug: boolean): void;
|
|
1418
|
-
showDebugWindow(): void;
|
|
1419
|
-
registerTable(id: string): void;
|
|
1420
|
-
unregisterTable(id: string): void;
|
|
1421
|
-
registerMap(id: string): void;
|
|
1422
|
-
unregisterMap(id: string): void;
|
|
1423
|
-
appendDataToTable(id: string, data: any[]): void;
|
|
1424
|
-
setTableData(id: string, data: any[]): void;
|
|
1425
|
-
appendDataToPlotLine(id: string, x: number, y: number): void;
|
|
1426
|
-
setPlotLineAxesDecimalDigits(id: string, x: number, y: number): void;
|
|
1427
|
-
setPlotLineAutoAxisFitEnabled(id: string, enabled: boolean): void;
|
|
1428
|
-
setPlotCandlestickData(id: string, data: PlotCandlestickDataItem[]): void;
|
|
1429
|
-
setPlotCandlestickAutoAxisFitEnabled(id: string, enabled: boolean): void;
|
|
1430
|
-
resetPlotData(id: string): void;
|
|
1431
|
-
reloadImage(id: string): void;
|
|
1432
|
-
renderMap(id: string, centerX: number, centerY: number, zoom: number): void;
|
|
1433
|
-
appendTextToClippedMultiLineTextRenderer(id: string, text: string): void;
|
|
1434
|
-
setInputTextValue(id: string, value: string): void;
|
|
1435
|
-
setComboSelectedIndex(id: string, index: number): void;
|
|
1436
|
-
}
|
|
1437
|
-
|
|
1438
|
-
declare const useWidgetEventManagement: (type?: "text" | "combo" | "numeric" | "boolean" | "multi") => [React.MutableRefObject<string>, WidgetRegistrationService];
|
|
1439
|
-
|
|
1440
|
-
declare const useWidgetRegistrationService: () => WidgetRegistrationService;
|
|
1441
|
-
|
|
1442
|
-
declare const useXFramesWasm: (ReactNativePrivateInterface: any) => WasmDeps;
|
|
1443
|
-
|
|
1444
|
-
declare const WidgetRegistrationServiceContext: React$1.Context<WidgetRegistrationService | null>;
|
|
1445
|
-
|
|
1446
|
-
declare const faIconMap: {
|
|
1447
|
-
readonly "0": "0";
|
|
1448
|
-
readonly "1": "1";
|
|
1449
|
-
readonly "2": "2";
|
|
1450
|
-
readonly "3": "3";
|
|
1451
|
-
readonly "4": "4";
|
|
1452
|
-
readonly "5": "5";
|
|
1453
|
-
readonly "6": "6";
|
|
1454
|
-
readonly "7": "7";
|
|
1455
|
-
readonly "8": "8";
|
|
1456
|
-
readonly "9": "9";
|
|
1457
|
-
readonly "42-group": "";
|
|
1458
|
-
readonly "500px": "";
|
|
1459
|
-
readonly a: "A";
|
|
1460
|
-
readonly "accessible-icon": "";
|
|
1461
|
-
readonly accusoft: "";
|
|
1462
|
-
readonly "address-book": "";
|
|
1463
|
-
readonly "address-card": "";
|
|
1464
|
-
readonly adn: "";
|
|
1465
|
-
readonly adversal: "";
|
|
1466
|
-
readonly affiliatetheme: "";
|
|
1467
|
-
readonly airbnb: "";
|
|
1468
|
-
readonly algolia: "";
|
|
1469
|
-
readonly "align-center": "";
|
|
1470
|
-
readonly "align-justify": "";
|
|
1471
|
-
readonly "align-left": "";
|
|
1472
|
-
readonly "align-right": "";
|
|
1473
|
-
readonly alipay: "";
|
|
1474
|
-
readonly amazon: "";
|
|
1475
|
-
readonly "amazon-pay": "";
|
|
1476
|
-
readonly amilia: "";
|
|
1477
|
-
readonly anchor: "";
|
|
1478
|
-
readonly "anchor-circle-check": "";
|
|
1479
|
-
readonly "anchor-circle-exclamation": "";
|
|
1480
|
-
readonly "anchor-circle-xmark": "";
|
|
1481
|
-
readonly "anchor-lock": "";
|
|
1482
|
-
readonly android: "";
|
|
1483
|
-
readonly angellist: "";
|
|
1484
|
-
readonly "angle-down": "";
|
|
1485
|
-
readonly "angle-left": "";
|
|
1486
|
-
readonly "angle-right": "";
|
|
1487
|
-
readonly "angle-up": "";
|
|
1488
|
-
readonly "angles-down": "";
|
|
1489
|
-
readonly "angles-left": "";
|
|
1490
|
-
readonly "angles-right": "";
|
|
1491
|
-
readonly "angles-up": "";
|
|
1492
|
-
readonly angrycreative: "";
|
|
1493
|
-
readonly angular: "";
|
|
1494
|
-
readonly ankh: "";
|
|
1495
|
-
readonly "app-store": "";
|
|
1496
|
-
readonly "app-store-ios": "";
|
|
1497
|
-
readonly apper: "";
|
|
1498
|
-
readonly apple: "";
|
|
1499
|
-
readonly "apple-pay": "";
|
|
1500
|
-
readonly "apple-whole": "";
|
|
1501
|
-
readonly archway: "";
|
|
1502
|
-
readonly "arrow-down": "";
|
|
1503
|
-
readonly "arrow-down-1-9": "";
|
|
1504
|
-
readonly "arrow-down-9-1": "";
|
|
1505
|
-
readonly "arrow-down-a-z": "";
|
|
1506
|
-
readonly "arrow-down-long": "";
|
|
1507
|
-
readonly "arrow-down-short-wide": "";
|
|
1508
|
-
readonly "arrow-down-up-across-line": "";
|
|
1509
|
-
readonly "arrow-down-up-lock": "";
|
|
1510
|
-
readonly "arrow-down-wide-short": "";
|
|
1511
|
-
readonly "arrow-down-z-a": "";
|
|
1512
|
-
readonly "arrow-left": "";
|
|
1513
|
-
readonly "arrow-left-long": "";
|
|
1514
|
-
readonly "arrow-pointer": "";
|
|
1515
|
-
readonly "arrow-right": "";
|
|
1516
|
-
readonly "arrow-right-arrow-left": "";
|
|
1517
|
-
readonly "arrow-right-from-bracket": "";
|
|
1518
|
-
readonly "arrow-right-long": "";
|
|
1519
|
-
readonly "arrow-right-to-bracket": "";
|
|
1520
|
-
readonly "arrow-right-to-city": "";
|
|
1521
|
-
readonly "arrow-rotate-left": "";
|
|
1522
|
-
readonly "arrow-rotate-right": "";
|
|
1523
|
-
readonly "arrow-trend-down": "";
|
|
1524
|
-
readonly "arrow-trend-up": "";
|
|
1525
|
-
readonly "arrow-turn-down": "";
|
|
1526
|
-
readonly "arrow-turn-up": "";
|
|
1527
|
-
readonly "arrow-up": "";
|
|
1528
|
-
readonly "arrow-up-1-9": "";
|
|
1529
|
-
readonly "arrow-up-9-1": "";
|
|
1530
|
-
readonly "arrow-up-a-z": "";
|
|
1531
|
-
readonly "arrow-up-from-bracket": "";
|
|
1532
|
-
readonly "arrow-up-from-ground-water": "";
|
|
1533
|
-
readonly "arrow-up-from-water-pump": "";
|
|
1534
|
-
readonly "arrow-up-long": "";
|
|
1535
|
-
readonly "arrow-up-right-dots": "";
|
|
1536
|
-
readonly "arrow-up-right-from-square": "";
|
|
1537
|
-
readonly "arrow-up-short-wide": "";
|
|
1538
|
-
readonly "arrow-up-wide-short": "";
|
|
1539
|
-
readonly "arrow-up-z-a": "";
|
|
1540
|
-
readonly "arrows-down-to-line": "";
|
|
1541
|
-
readonly "arrows-down-to-people": "";
|
|
1542
|
-
readonly "arrows-left-right": "";
|
|
1543
|
-
readonly "arrows-left-right-to-line": "";
|
|
1544
|
-
readonly "arrows-rotate": "";
|
|
1545
|
-
readonly "arrows-spin": "";
|
|
1546
|
-
readonly "arrows-split-up-and-left": "";
|
|
1547
|
-
readonly "arrows-to-circle": "";
|
|
1548
|
-
readonly "arrows-to-dot": "";
|
|
1549
|
-
readonly "arrows-to-eye": "";
|
|
1550
|
-
readonly "arrows-turn-right": "";
|
|
1551
|
-
readonly "arrows-turn-to-dots": "";
|
|
1552
|
-
readonly "arrows-up-down": "";
|
|
1553
|
-
readonly "arrows-up-down-left-right": "";
|
|
1554
|
-
readonly "arrows-up-to-line": "";
|
|
1555
|
-
readonly artstation: "";
|
|
1556
|
-
readonly asterisk: "*";
|
|
1557
|
-
readonly asymmetrik: "";
|
|
1558
|
-
readonly at: "@";
|
|
1559
|
-
readonly atlassian: "";
|
|
1560
|
-
readonly atom: "";
|
|
1561
|
-
readonly audible: "";
|
|
1562
|
-
readonly "audio-description": "";
|
|
1563
|
-
readonly "austral-sign": "";
|
|
1564
|
-
readonly autoprefixer: "";
|
|
1565
|
-
readonly avianex: "";
|
|
1566
|
-
readonly aviato: "";
|
|
1567
|
-
readonly award: "";
|
|
1568
|
-
readonly aws: "";
|
|
1569
|
-
readonly b: "B";
|
|
1570
|
-
readonly baby: "";
|
|
1571
|
-
readonly "baby-carriage": "";
|
|
1572
|
-
readonly backward: "";
|
|
1573
|
-
readonly "backward-fast": "";
|
|
1574
|
-
readonly "backward-step": "";
|
|
1575
|
-
readonly bacon: "";
|
|
1576
|
-
readonly bacteria: "";
|
|
1577
|
-
readonly bacterium: "";
|
|
1578
|
-
readonly "bag-shopping": "";
|
|
1579
|
-
readonly bahai: "";
|
|
1580
|
-
readonly "baht-sign": "";
|
|
1581
|
-
readonly ban: "";
|
|
1582
|
-
readonly "ban-smoking": "";
|
|
1583
|
-
readonly bandage: "";
|
|
1584
|
-
readonly bandcamp: "";
|
|
1585
|
-
readonly "bangladeshi-taka-sign": "";
|
|
1586
|
-
readonly barcode: "";
|
|
1587
|
-
readonly bars: "";
|
|
1588
|
-
readonly "bars-progress": "";
|
|
1589
|
-
readonly "bars-staggered": "";
|
|
1590
|
-
readonly baseball: "";
|
|
1591
|
-
readonly "baseball-bat-ball": "";
|
|
1592
|
-
readonly "basket-shopping": "";
|
|
1593
|
-
readonly basketball: "";
|
|
1594
|
-
readonly bath: "";
|
|
1595
|
-
readonly "battery-empty": "";
|
|
1596
|
-
readonly "battery-full": "";
|
|
1597
|
-
readonly "battery-half": "";
|
|
1598
|
-
readonly "battery-quarter": "";
|
|
1599
|
-
readonly "battery-three-quarters": "";
|
|
1600
|
-
readonly "battle-net": "";
|
|
1601
|
-
readonly bed: "";
|
|
1602
|
-
readonly "bed-pulse": "";
|
|
1603
|
-
readonly "beer-mug-empty": "";
|
|
1604
|
-
readonly behance: "";
|
|
1605
|
-
readonly bell: "";
|
|
1606
|
-
readonly "bell-concierge": "";
|
|
1607
|
-
readonly "bell-slash": "";
|
|
1608
|
-
readonly "bezier-curve": "";
|
|
1609
|
-
readonly bicycle: "";
|
|
1610
|
-
readonly bilibili: "";
|
|
1611
|
-
readonly bimobject: "";
|
|
1612
|
-
readonly binoculars: "";
|
|
1613
|
-
readonly biohazard: "";
|
|
1614
|
-
readonly bitbucket: "";
|
|
1615
|
-
readonly bitcoin: "";
|
|
1616
|
-
readonly "bitcoin-sign": "";
|
|
1617
|
-
readonly bity: "";
|
|
1618
|
-
readonly "black-tie": "";
|
|
1619
|
-
readonly blackberry: "";
|
|
1620
|
-
readonly blender: "";
|
|
1621
|
-
readonly "blender-phone": "";
|
|
1622
|
-
readonly blog: "";
|
|
1623
|
-
readonly blogger: "";
|
|
1624
|
-
readonly "blogger-b": "";
|
|
1625
|
-
readonly bluesky: "";
|
|
1626
|
-
readonly bluetooth: "";
|
|
1627
|
-
readonly "bluetooth-b": "";
|
|
1628
|
-
readonly bold: "";
|
|
1629
|
-
readonly bolt: "";
|
|
1630
|
-
readonly "bolt-lightning": "";
|
|
1631
|
-
readonly bomb: "";
|
|
1632
|
-
readonly bone: "";
|
|
1633
|
-
readonly bong: "";
|
|
1634
|
-
readonly book: "";
|
|
1635
|
-
readonly "book-atlas": "";
|
|
1636
|
-
readonly "book-bible": "";
|
|
1637
|
-
readonly "book-bookmark": "";
|
|
1638
|
-
readonly "book-journal-whills": "";
|
|
1639
|
-
readonly "book-medical": "";
|
|
1640
|
-
readonly "book-open": "";
|
|
1641
|
-
readonly "book-open-reader": "";
|
|
1642
|
-
readonly "book-quran": "";
|
|
1643
|
-
readonly "book-skull": "";
|
|
1644
|
-
readonly "book-tanakh": "";
|
|
1645
|
-
readonly bookmark: "";
|
|
1646
|
-
readonly bootstrap: "";
|
|
1647
|
-
readonly "border-all": "";
|
|
1648
|
-
readonly "border-none": "";
|
|
1649
|
-
readonly "border-top-left": "";
|
|
1650
|
-
readonly "bore-hole": "";
|
|
1651
|
-
readonly bots: "";
|
|
1652
|
-
readonly "bottle-droplet": "";
|
|
1653
|
-
readonly "bottle-water": "";
|
|
1654
|
-
readonly "bowl-food": "";
|
|
1655
|
-
readonly "bowl-rice": "";
|
|
1656
|
-
readonly "bowling-ball": "";
|
|
1657
|
-
readonly box: "";
|
|
1658
|
-
readonly "box-archive": "";
|
|
1659
|
-
readonly "box-open": "";
|
|
1660
|
-
readonly "box-tissue": "";
|
|
1661
|
-
readonly "boxes-packing": "";
|
|
1662
|
-
readonly "boxes-stacked": "";
|
|
1663
|
-
readonly braille: "";
|
|
1664
|
-
readonly brain: "";
|
|
1665
|
-
readonly brave: "";
|
|
1666
|
-
readonly "brave-reverse": "";
|
|
1667
|
-
readonly "brazilian-real-sign": "";
|
|
1668
|
-
readonly "bread-slice": "";
|
|
1669
|
-
readonly bridge: "";
|
|
1670
|
-
readonly "bridge-circle-check": "";
|
|
1671
|
-
readonly "bridge-circle-exclamation": "";
|
|
1672
|
-
readonly "bridge-circle-xmark": "";
|
|
1673
|
-
readonly "bridge-lock": "";
|
|
1674
|
-
readonly "bridge-water": "";
|
|
1675
|
-
readonly briefcase: "";
|
|
1676
|
-
readonly "briefcase-medical": "";
|
|
1677
|
-
readonly broom: "";
|
|
1678
|
-
readonly "broom-ball": "";
|
|
1679
|
-
readonly brush: "";
|
|
1680
|
-
readonly btc: "";
|
|
1681
|
-
readonly bucket: "";
|
|
1682
|
-
readonly buffer: "";
|
|
1683
|
-
readonly bug: "";
|
|
1684
|
-
readonly "bug-slash": "";
|
|
1685
|
-
readonly bugs: "";
|
|
1686
|
-
readonly building: "";
|
|
1687
|
-
readonly "building-circle-arrow-right": "";
|
|
1688
|
-
readonly "building-circle-check": "";
|
|
1689
|
-
readonly "building-circle-exclamation": "";
|
|
1690
|
-
readonly "building-circle-xmark": "";
|
|
1691
|
-
readonly "building-columns": "";
|
|
1692
|
-
readonly "building-flag": "";
|
|
1693
|
-
readonly "building-lock": "";
|
|
1694
|
-
readonly "building-ngo": "";
|
|
1695
|
-
readonly "building-shield": "";
|
|
1696
|
-
readonly "building-un": "";
|
|
1697
|
-
readonly "building-user": "";
|
|
1698
|
-
readonly "building-wheat": "";
|
|
1699
|
-
readonly bullhorn: "";
|
|
1700
|
-
readonly bullseye: "";
|
|
1701
|
-
readonly burger: "";
|
|
1702
|
-
readonly buromobelexperte: "";
|
|
1703
|
-
readonly burst: "";
|
|
1704
|
-
readonly bus: "";
|
|
1705
|
-
readonly "bus-simple": "";
|
|
1706
|
-
readonly "business-time": "";
|
|
1707
|
-
readonly "buy-n-large": "";
|
|
1708
|
-
readonly buysellads: "";
|
|
1709
|
-
readonly c: "C";
|
|
1710
|
-
readonly "cable-car": "";
|
|
1711
|
-
readonly "cake-candles": "";
|
|
1712
|
-
readonly calculator: "";
|
|
1713
|
-
readonly calendar: "";
|
|
1714
|
-
readonly "calendar-check": "";
|
|
1715
|
-
readonly "calendar-day": "";
|
|
1716
|
-
readonly "calendar-days": "";
|
|
1717
|
-
readonly "calendar-minus": "";
|
|
1718
|
-
readonly "calendar-plus": "";
|
|
1719
|
-
readonly "calendar-week": "";
|
|
1720
|
-
readonly "calendar-xmark": "";
|
|
1721
|
-
readonly camera: "";
|
|
1722
|
-
readonly "camera-retro": "";
|
|
1723
|
-
readonly "camera-rotate": "";
|
|
1724
|
-
readonly campground: "";
|
|
1725
|
-
readonly "canadian-maple-leaf": "";
|
|
1726
|
-
readonly "candy-cane": "";
|
|
1727
|
-
readonly cannabis: "";
|
|
1728
|
-
readonly capsules: "";
|
|
1729
|
-
readonly car: "";
|
|
1730
|
-
readonly "car-battery": "";
|
|
1731
|
-
readonly "car-burst": "";
|
|
1732
|
-
readonly "car-on": "";
|
|
1733
|
-
readonly "car-rear": "";
|
|
1734
|
-
readonly "car-side": "";
|
|
1735
|
-
readonly "car-tunnel": "";
|
|
1736
|
-
readonly caravan: "";
|
|
1737
|
-
readonly "caret-down": "";
|
|
1738
|
-
readonly "caret-left": "";
|
|
1739
|
-
readonly "caret-right": "";
|
|
1740
|
-
readonly "caret-up": "";
|
|
1741
|
-
readonly carrot: "";
|
|
1742
|
-
readonly "cart-arrow-down": "";
|
|
1743
|
-
readonly "cart-flatbed": "";
|
|
1744
|
-
readonly "cart-flatbed-suitcase": "";
|
|
1745
|
-
readonly "cart-plus": "";
|
|
1746
|
-
readonly "cart-shopping": "";
|
|
1747
|
-
readonly "cash-register": "";
|
|
1748
|
-
readonly cat: "";
|
|
1749
|
-
readonly "cc-amazon-pay": "";
|
|
1750
|
-
readonly "cc-amex": "";
|
|
1751
|
-
readonly "cc-apple-pay": "";
|
|
1752
|
-
readonly "cc-diners-club": "";
|
|
1753
|
-
readonly "cc-discover": "";
|
|
1754
|
-
readonly "cc-jcb": "";
|
|
1755
|
-
readonly "cc-mastercard": "";
|
|
1756
|
-
readonly "cc-paypal": "";
|
|
1757
|
-
readonly "cc-stripe": "";
|
|
1758
|
-
readonly "cc-visa": "";
|
|
1759
|
-
readonly "cedi-sign": "";
|
|
1760
|
-
readonly "cent-sign": "";
|
|
1761
|
-
readonly centercode: "";
|
|
1762
|
-
readonly centos: "";
|
|
1763
|
-
readonly certificate: "";
|
|
1764
|
-
readonly chair: "";
|
|
1765
|
-
readonly chalkboard: "";
|
|
1766
|
-
readonly "chalkboard-user": "";
|
|
1767
|
-
readonly "champagne-glasses": "";
|
|
1768
|
-
readonly "charging-station": "";
|
|
1769
|
-
readonly "chart-area": "";
|
|
1770
|
-
readonly "chart-bar": "";
|
|
1771
|
-
readonly "chart-column": "";
|
|
1772
|
-
readonly "chart-gantt": "";
|
|
1773
|
-
readonly "chart-line": "";
|
|
1774
|
-
readonly "chart-pie": "";
|
|
1775
|
-
readonly "chart-simple": "";
|
|
1776
|
-
readonly check: "";
|
|
1777
|
-
readonly "check-double": "";
|
|
1778
|
-
readonly "check-to-slot": "";
|
|
1779
|
-
readonly cheese: "";
|
|
1780
|
-
readonly chess: "";
|
|
1781
|
-
readonly "chess-bishop": "";
|
|
1782
|
-
readonly "chess-board": "";
|
|
1783
|
-
readonly "chess-king": "";
|
|
1784
|
-
readonly "chess-knight": "";
|
|
1785
|
-
readonly "chess-pawn": "";
|
|
1786
|
-
readonly "chess-queen": "";
|
|
1787
|
-
readonly "chess-rook": "";
|
|
1788
|
-
readonly "chevron-down": "";
|
|
1789
|
-
readonly "chevron-left": "";
|
|
1790
|
-
readonly "chevron-right": "";
|
|
1791
|
-
readonly "chevron-up": "";
|
|
1792
|
-
readonly child: "";
|
|
1793
|
-
readonly "child-combatant": "";
|
|
1794
|
-
readonly "child-dress": "";
|
|
1795
|
-
readonly "child-reaching": "";
|
|
1796
|
-
readonly children: "";
|
|
1797
|
-
readonly chrome: "";
|
|
1798
|
-
readonly chromecast: "";
|
|
1799
|
-
readonly church: "";
|
|
1800
|
-
readonly circle: "";
|
|
1801
|
-
readonly "circle-arrow-down": "";
|
|
1802
|
-
readonly "circle-arrow-left": "";
|
|
1803
|
-
readonly "circle-arrow-right": "";
|
|
1804
|
-
readonly "circle-arrow-up": "";
|
|
1805
|
-
readonly "circle-check": "";
|
|
1806
|
-
readonly "circle-chevron-down": "";
|
|
1807
|
-
readonly "circle-chevron-left": "";
|
|
1808
|
-
readonly "circle-chevron-right": "";
|
|
1809
|
-
readonly "circle-chevron-up": "";
|
|
1810
|
-
readonly "circle-dollar-to-slot": "";
|
|
1811
|
-
readonly "circle-dot": "";
|
|
1812
|
-
readonly "circle-down": "";
|
|
1813
|
-
readonly "circle-exclamation": "";
|
|
1814
|
-
readonly "circle-h": "";
|
|
1815
|
-
readonly "circle-half-stroke": "";
|
|
1816
|
-
readonly "circle-info": "";
|
|
1817
|
-
readonly "circle-left": "";
|
|
1818
|
-
readonly "circle-minus": "";
|
|
1819
|
-
readonly "circle-nodes": "";
|
|
1820
|
-
readonly "circle-notch": "";
|
|
1821
|
-
readonly "circle-pause": "";
|
|
1822
|
-
readonly "circle-play": "";
|
|
1823
|
-
readonly "circle-plus": "";
|
|
1824
|
-
readonly "circle-question": "";
|
|
1825
|
-
readonly "circle-radiation": "";
|
|
1826
|
-
readonly "circle-right": "";
|
|
1827
|
-
readonly "circle-stop": "";
|
|
1828
|
-
readonly "circle-up": "";
|
|
1829
|
-
readonly "circle-user": "";
|
|
1830
|
-
readonly "circle-xmark": "";
|
|
1831
|
-
readonly city: "";
|
|
1832
|
-
readonly clapperboard: "";
|
|
1833
|
-
readonly clipboard: "";
|
|
1834
|
-
readonly "clipboard-check": "";
|
|
1835
|
-
readonly "clipboard-list": "";
|
|
1836
|
-
readonly "clipboard-question": "";
|
|
1837
|
-
readonly "clipboard-user": "";
|
|
1838
|
-
readonly clock: "";
|
|
1839
|
-
readonly "clock-rotate-left": "";
|
|
1840
|
-
readonly clone: "";
|
|
1841
|
-
readonly "closed-captioning": "";
|
|
1842
|
-
readonly cloud: "";
|
|
1843
|
-
readonly "cloud-arrow-down": "";
|
|
1844
|
-
readonly "cloud-arrow-up": "";
|
|
1845
|
-
readonly "cloud-bolt": "";
|
|
1846
|
-
readonly "cloud-meatball": "";
|
|
1847
|
-
readonly "cloud-moon": "";
|
|
1848
|
-
readonly "cloud-moon-rain": "";
|
|
1849
|
-
readonly "cloud-rain": "";
|
|
1850
|
-
readonly "cloud-showers-heavy": "";
|
|
1851
|
-
readonly "cloud-showers-water": "";
|
|
1852
|
-
readonly "cloud-sun": "";
|
|
1853
|
-
readonly "cloud-sun-rain": "";
|
|
1854
|
-
readonly cloudflare: "";
|
|
1855
|
-
readonly cloudscale: "";
|
|
1856
|
-
readonly cloudsmith: "";
|
|
1857
|
-
readonly cloudversify: "";
|
|
1858
|
-
readonly clover: "";
|
|
1859
|
-
readonly cmplid: "";
|
|
1860
|
-
readonly code: "";
|
|
1861
|
-
readonly "code-branch": "";
|
|
1862
|
-
readonly "code-commit": "";
|
|
1863
|
-
readonly "code-compare": "";
|
|
1864
|
-
readonly "code-fork": "";
|
|
1865
|
-
readonly "code-merge": "";
|
|
1866
|
-
readonly "code-pull-request": "";
|
|
1867
|
-
readonly codepen: "";
|
|
1868
|
-
readonly codiepie: "";
|
|
1869
|
-
readonly coins: "";
|
|
1870
|
-
readonly "colon-sign": "";
|
|
1871
|
-
readonly comment: "";
|
|
1872
|
-
readonly "comment-dollar": "";
|
|
1873
|
-
readonly "comment-dots": "";
|
|
1874
|
-
readonly "comment-medical": "";
|
|
1875
|
-
readonly "comment-slash": "";
|
|
1876
|
-
readonly "comment-sms": "";
|
|
1877
|
-
readonly comments: "";
|
|
1878
|
-
readonly "comments-dollar": "";
|
|
1879
|
-
readonly "compact-disc": "";
|
|
1880
|
-
readonly compass: "";
|
|
1881
|
-
readonly "compass-drafting": "";
|
|
1882
|
-
readonly compress: "";
|
|
1883
|
-
readonly computer: "";
|
|
1884
|
-
readonly "computer-mouse": "";
|
|
1885
|
-
readonly confluence: "";
|
|
1886
|
-
readonly connectdevelop: "";
|
|
1887
|
-
readonly contao: "";
|
|
1888
|
-
readonly cookie: "";
|
|
1889
|
-
readonly "cookie-bite": "";
|
|
1890
|
-
readonly copy: "";
|
|
1891
|
-
readonly copyright: "";
|
|
1892
|
-
readonly "cotton-bureau": "";
|
|
1893
|
-
readonly couch: "";
|
|
1894
|
-
readonly cow: "";
|
|
1895
|
-
readonly cpanel: "";
|
|
1896
|
-
readonly "creative-commons": "";
|
|
1897
|
-
readonly "creative-commons-by": "";
|
|
1898
|
-
readonly "creative-commons-nc": "";
|
|
1899
|
-
readonly "creative-commons-nc-eu": "";
|
|
1900
|
-
readonly "creative-commons-nc-jp": "";
|
|
1901
|
-
readonly "creative-commons-nd": "";
|
|
1902
|
-
readonly "creative-commons-pd": "";
|
|
1903
|
-
readonly "creative-commons-pd-alt": "";
|
|
1904
|
-
readonly "creative-commons-remix": "";
|
|
1905
|
-
readonly "creative-commons-sa": "";
|
|
1906
|
-
readonly "creative-commons-sampling": "";
|
|
1907
|
-
readonly "creative-commons-sampling-plus": "";
|
|
1908
|
-
readonly "creative-commons-share": "";
|
|
1909
|
-
readonly "creative-commons-zero": "";
|
|
1910
|
-
readonly "credit-card": "";
|
|
1911
|
-
readonly "critical-role": "";
|
|
1912
|
-
readonly crop: "";
|
|
1913
|
-
readonly "crop-simple": "";
|
|
1914
|
-
readonly cross: "";
|
|
1915
|
-
readonly crosshairs: "";
|
|
1916
|
-
readonly crow: "";
|
|
1917
|
-
readonly crown: "";
|
|
1918
|
-
readonly crutch: "";
|
|
1919
|
-
readonly "cruzeiro-sign": "";
|
|
1920
|
-
readonly css3: "";
|
|
1921
|
-
readonly "css3-alt": "";
|
|
1922
|
-
readonly cube: "";
|
|
1923
|
-
readonly cubes: "";
|
|
1924
|
-
readonly "cubes-stacked": "";
|
|
1925
|
-
readonly cuttlefish: "";
|
|
1926
|
-
readonly d: "D";
|
|
1927
|
-
readonly "d-and-d": "";
|
|
1928
|
-
readonly "d-and-d-beyond": "";
|
|
1929
|
-
readonly dailymotion: "";
|
|
1930
|
-
readonly dashcube: "";
|
|
1931
|
-
readonly database: "";
|
|
1932
|
-
readonly debian: "";
|
|
1933
|
-
readonly deezer: "";
|
|
1934
|
-
readonly "delete-left": "";
|
|
1935
|
-
readonly delicious: "";
|
|
1936
|
-
readonly democrat: "";
|
|
1937
|
-
readonly deploydog: "";
|
|
1938
|
-
readonly deskpro: "";
|
|
1939
|
-
readonly desktop: "";
|
|
1940
|
-
readonly dev: "";
|
|
1941
|
-
readonly deviantart: "";
|
|
1942
|
-
readonly dharmachakra: "";
|
|
1943
|
-
readonly dhl: "";
|
|
1944
|
-
readonly "diagram-next": "";
|
|
1945
|
-
readonly "diagram-predecessor": "";
|
|
1946
|
-
readonly "diagram-project": "";
|
|
1947
|
-
readonly "diagram-successor": "";
|
|
1948
|
-
readonly diamond: "";
|
|
1949
|
-
readonly "diamond-turn-right": "";
|
|
1950
|
-
readonly diaspora: "";
|
|
1951
|
-
readonly dice: "";
|
|
1952
|
-
readonly "dice-d20": "";
|
|
1953
|
-
readonly "dice-d6": "";
|
|
1954
|
-
readonly "dice-five": "";
|
|
1955
|
-
readonly "dice-four": "";
|
|
1956
|
-
readonly "dice-one": "";
|
|
1957
|
-
readonly "dice-six": "";
|
|
1958
|
-
readonly "dice-three": "";
|
|
1959
|
-
readonly "dice-two": "";
|
|
1960
|
-
readonly digg: "";
|
|
1961
|
-
readonly "digital-ocean": "";
|
|
1962
|
-
readonly discord: "";
|
|
1963
|
-
readonly discourse: "";
|
|
1964
|
-
readonly disease: "";
|
|
1965
|
-
readonly display: "";
|
|
1966
|
-
readonly divide: "";
|
|
1967
|
-
readonly dna: "";
|
|
1968
|
-
readonly dochub: "";
|
|
1969
|
-
readonly docker: "";
|
|
1970
|
-
readonly dog: "";
|
|
1971
|
-
readonly "dollar-sign": "$";
|
|
1972
|
-
readonly dolly: "";
|
|
1973
|
-
readonly "dong-sign": "";
|
|
1974
|
-
readonly "door-closed": "";
|
|
1975
|
-
readonly "door-open": "";
|
|
1976
|
-
readonly dove: "";
|
|
1977
|
-
readonly "down-left-and-up-right-to-center": "";
|
|
1978
|
-
readonly "down-long": "";
|
|
1979
|
-
readonly download: "";
|
|
1980
|
-
readonly draft2digital: "";
|
|
1981
|
-
readonly dragon: "";
|
|
1982
|
-
readonly "draw-polygon": "";
|
|
1983
|
-
readonly dribbble: "";
|
|
1984
|
-
readonly dropbox: "";
|
|
1985
|
-
readonly droplet: "";
|
|
1986
|
-
readonly "droplet-slash": "";
|
|
1987
|
-
readonly drum: "";
|
|
1988
|
-
readonly "drum-steelpan": "";
|
|
1989
|
-
readonly "drumstick-bite": "";
|
|
1990
|
-
readonly drupal: "";
|
|
1991
|
-
readonly dumbbell: "";
|
|
1992
|
-
readonly dumpster: "";
|
|
1993
|
-
readonly "dumpster-fire": "";
|
|
1994
|
-
readonly dungeon: "";
|
|
1995
|
-
readonly dyalog: "";
|
|
1996
|
-
readonly e: "E";
|
|
1997
|
-
readonly "ear-deaf": "";
|
|
1998
|
-
readonly "ear-listen": "";
|
|
1999
|
-
readonly earlybirds: "";
|
|
2000
|
-
readonly "earth-africa": "";
|
|
2001
|
-
readonly "earth-americas": "";
|
|
2002
|
-
readonly "earth-asia": "";
|
|
2003
|
-
readonly "earth-europe": "";
|
|
2004
|
-
readonly "earth-oceania": "";
|
|
2005
|
-
readonly ebay: "";
|
|
2006
|
-
readonly edge: "";
|
|
2007
|
-
readonly "edge-legacy": "";
|
|
2008
|
-
readonly egg: "";
|
|
2009
|
-
readonly eject: "";
|
|
2010
|
-
readonly elementor: "";
|
|
2011
|
-
readonly elevator: "";
|
|
2012
|
-
readonly ellipsis: "";
|
|
2013
|
-
readonly "ellipsis-vertical": "";
|
|
2014
|
-
readonly ello: "";
|
|
2015
|
-
readonly ember: "";
|
|
2016
|
-
readonly empire: "";
|
|
2017
|
-
readonly envelope: "";
|
|
2018
|
-
readonly "envelope-circle-check": "";
|
|
2019
|
-
readonly "envelope-open": "";
|
|
2020
|
-
readonly "envelope-open-text": "";
|
|
2021
|
-
readonly "envelopes-bulk": "";
|
|
2022
|
-
readonly envira: "";
|
|
2023
|
-
readonly equals: "=";
|
|
2024
|
-
readonly eraser: "";
|
|
2025
|
-
readonly erlang: "";
|
|
2026
|
-
readonly ethereum: "";
|
|
2027
|
-
readonly ethernet: "";
|
|
2028
|
-
readonly etsy: "";
|
|
2029
|
-
readonly "euro-sign": "";
|
|
2030
|
-
readonly evernote: "";
|
|
2031
|
-
readonly exclamation: "!";
|
|
2032
|
-
readonly expand: "";
|
|
2033
|
-
readonly expeditedssl: "";
|
|
2034
|
-
readonly explosion: "";
|
|
2035
|
-
readonly eye: "";
|
|
2036
|
-
readonly "eye-dropper": "";
|
|
2037
|
-
readonly "eye-low-vision": "";
|
|
2038
|
-
readonly "eye-slash": "";
|
|
2039
|
-
readonly f: "F";
|
|
2040
|
-
readonly "face-angry": "";
|
|
2041
|
-
readonly "face-dizzy": "";
|
|
2042
|
-
readonly "face-flushed": "";
|
|
2043
|
-
readonly "face-frown": "";
|
|
2044
|
-
readonly "face-frown-open": "";
|
|
2045
|
-
readonly "face-grimace": "";
|
|
2046
|
-
readonly "face-grin": "";
|
|
2047
|
-
readonly "face-grin-beam": "";
|
|
2048
|
-
readonly "face-grin-beam-sweat": "";
|
|
2049
|
-
readonly "face-grin-hearts": "";
|
|
2050
|
-
readonly "face-grin-squint": "";
|
|
2051
|
-
readonly "face-grin-squint-tears": "";
|
|
2052
|
-
readonly "face-grin-stars": "";
|
|
2053
|
-
readonly "face-grin-tears": "";
|
|
2054
|
-
readonly "face-grin-tongue": "";
|
|
2055
|
-
readonly "face-grin-tongue-squint": "";
|
|
2056
|
-
readonly "face-grin-tongue-wink": "";
|
|
2057
|
-
readonly "face-grin-wide": "";
|
|
2058
|
-
readonly "face-grin-wink": "";
|
|
2059
|
-
readonly "face-kiss": "";
|
|
2060
|
-
readonly "face-kiss-beam": "";
|
|
2061
|
-
readonly "face-kiss-wink-heart": "";
|
|
2062
|
-
readonly "face-laugh": "";
|
|
2063
|
-
readonly "face-laugh-beam": "";
|
|
2064
|
-
readonly "face-laugh-squint": "";
|
|
2065
|
-
readonly "face-laugh-wink": "";
|
|
2066
|
-
readonly "face-meh": "";
|
|
2067
|
-
readonly "face-meh-blank": "";
|
|
2068
|
-
readonly "face-rolling-eyes": "";
|
|
2069
|
-
readonly "face-sad-cry": "";
|
|
2070
|
-
readonly "face-sad-tear": "";
|
|
2071
|
-
readonly "face-smile": "";
|
|
2072
|
-
readonly "face-smile-beam": "";
|
|
2073
|
-
readonly "face-smile-wink": "";
|
|
2074
|
-
readonly "face-surprise": "";
|
|
2075
|
-
readonly "face-tired": "";
|
|
2076
|
-
readonly facebook: "";
|
|
2077
|
-
readonly "facebook-f": "";
|
|
2078
|
-
readonly "facebook-messenger": "";
|
|
2079
|
-
readonly fan: "";
|
|
2080
|
-
readonly "fantasy-flight-games": "";
|
|
2081
|
-
readonly faucet: "";
|
|
2082
|
-
readonly "faucet-drip": "";
|
|
2083
|
-
readonly fax: "";
|
|
2084
|
-
readonly feather: "";
|
|
2085
|
-
readonly "feather-pointed": "";
|
|
2086
|
-
readonly fedex: "";
|
|
2087
|
-
readonly fedora: "";
|
|
2088
|
-
readonly ferry: "";
|
|
2089
|
-
readonly figma: "";
|
|
2090
|
-
readonly file: "";
|
|
2091
|
-
readonly "file-arrow-down": "";
|
|
2092
|
-
readonly "file-arrow-up": "";
|
|
2093
|
-
readonly "file-audio": "";
|
|
2094
|
-
readonly "file-circle-check": "";
|
|
2095
|
-
readonly "file-circle-exclamation": "";
|
|
2096
|
-
readonly "file-circle-minus": "";
|
|
2097
|
-
readonly "file-circle-plus": "";
|
|
2098
|
-
readonly "file-circle-question": "";
|
|
2099
|
-
readonly "file-circle-xmark": "";
|
|
2100
|
-
readonly "file-code": "";
|
|
2101
|
-
readonly "file-contract": "";
|
|
2102
|
-
readonly "file-csv": "";
|
|
2103
|
-
readonly "file-excel": "";
|
|
2104
|
-
readonly "file-export": "";
|
|
2105
|
-
readonly "file-image": "";
|
|
2106
|
-
readonly "file-import": "";
|
|
2107
|
-
readonly "file-invoice": "";
|
|
2108
|
-
readonly "file-invoice-dollar": "";
|
|
2109
|
-
readonly "file-lines": "";
|
|
2110
|
-
readonly "file-medical": "";
|
|
2111
|
-
readonly "file-pdf": "";
|
|
2112
|
-
readonly "file-pen": "";
|
|
2113
|
-
readonly "file-powerpoint": "";
|
|
2114
|
-
readonly "file-prescription": "";
|
|
2115
|
-
readonly "file-shield": "";
|
|
2116
|
-
readonly "file-signature": "";
|
|
2117
|
-
readonly "file-video": "";
|
|
2118
|
-
readonly "file-waveform": "";
|
|
2119
|
-
readonly "file-word": "";
|
|
2120
|
-
readonly "file-zipper": "";
|
|
2121
|
-
readonly fill: "";
|
|
2122
|
-
readonly "fill-drip": "";
|
|
2123
|
-
readonly film: "";
|
|
2124
|
-
readonly filter: "";
|
|
2125
|
-
readonly "filter-circle-dollar": "";
|
|
2126
|
-
readonly "filter-circle-xmark": "";
|
|
2127
|
-
readonly fingerprint: "";
|
|
2128
|
-
readonly fire: "";
|
|
2129
|
-
readonly "fire-burner": "";
|
|
2130
|
-
readonly "fire-extinguisher": "";
|
|
2131
|
-
readonly "fire-flame-curved": "";
|
|
2132
|
-
readonly "fire-flame-simple": "";
|
|
2133
|
-
readonly firefox: "";
|
|
2134
|
-
readonly "firefox-browser": "";
|
|
2135
|
-
readonly "first-order": "";
|
|
2136
|
-
readonly "first-order-alt": "";
|
|
2137
|
-
readonly firstdraft: "";
|
|
2138
|
-
readonly fish: "";
|
|
2139
|
-
readonly "fish-fins": "";
|
|
2140
|
-
readonly flag: "";
|
|
2141
|
-
readonly "flag-checkered": "";
|
|
2142
|
-
readonly "flag-usa": "";
|
|
2143
|
-
readonly flask: "";
|
|
2144
|
-
readonly "flask-vial": "";
|
|
2145
|
-
readonly flickr: "";
|
|
2146
|
-
readonly flipboard: "";
|
|
2147
|
-
readonly "floppy-disk": "";
|
|
2148
|
-
readonly "florin-sign": "";
|
|
2149
|
-
readonly fly: "";
|
|
2150
|
-
readonly folder: "";
|
|
2151
|
-
readonly "folder-closed": "";
|
|
2152
|
-
readonly "folder-minus": "";
|
|
2153
|
-
readonly "folder-open": "";
|
|
2154
|
-
readonly "folder-plus": "";
|
|
2155
|
-
readonly "folder-tree": "";
|
|
2156
|
-
readonly font: "";
|
|
2157
|
-
readonly "font-awesome": "";
|
|
2158
|
-
readonly fonticons: "";
|
|
2159
|
-
readonly "fonticons-fi": "";
|
|
2160
|
-
readonly football: "";
|
|
2161
|
-
readonly "fort-awesome": "";
|
|
2162
|
-
readonly "fort-awesome-alt": "";
|
|
2163
|
-
readonly forumbee: "";
|
|
2164
|
-
readonly forward: "";
|
|
2165
|
-
readonly "forward-fast": "";
|
|
2166
|
-
readonly "forward-step": "";
|
|
2167
|
-
readonly foursquare: "";
|
|
2168
|
-
readonly "franc-sign": "";
|
|
2169
|
-
readonly "free-code-camp": "";
|
|
2170
|
-
readonly freebsd: "";
|
|
2171
|
-
readonly frog: "";
|
|
2172
|
-
readonly fulcrum: "";
|
|
2173
|
-
readonly futbol: "";
|
|
2174
|
-
readonly g: "G";
|
|
2175
|
-
readonly "galactic-republic": "";
|
|
2176
|
-
readonly "galactic-senate": "";
|
|
2177
|
-
readonly gamepad: "";
|
|
2178
|
-
readonly "gas-pump": "";
|
|
2179
|
-
readonly gauge: "";
|
|
2180
|
-
readonly "gauge-high": "";
|
|
2181
|
-
readonly "gauge-simple": "";
|
|
2182
|
-
readonly "gauge-simple-high": "";
|
|
2183
|
-
readonly gavel: "";
|
|
2184
|
-
readonly gear: "";
|
|
2185
|
-
readonly gears: "";
|
|
2186
|
-
readonly gem: "";
|
|
2187
|
-
readonly genderless: "";
|
|
2188
|
-
readonly "get-pocket": "";
|
|
2189
|
-
readonly gg: "";
|
|
2190
|
-
readonly "gg-circle": "";
|
|
2191
|
-
readonly ghost: "";
|
|
2192
|
-
readonly gift: "";
|
|
2193
|
-
readonly gifts: "";
|
|
2194
|
-
readonly git: "";
|
|
2195
|
-
readonly "git-alt": "";
|
|
2196
|
-
readonly github: "";
|
|
2197
|
-
readonly "github-alt": "";
|
|
2198
|
-
readonly gitkraken: "";
|
|
2199
|
-
readonly gitlab: "";
|
|
2200
|
-
readonly gitter: "";
|
|
2201
|
-
readonly "glass-water": "";
|
|
2202
|
-
readonly "glass-water-droplet": "";
|
|
2203
|
-
readonly glasses: "";
|
|
2204
|
-
readonly glide: "";
|
|
2205
|
-
readonly "glide-g": "";
|
|
2206
|
-
readonly globe: "";
|
|
2207
|
-
readonly gofore: "";
|
|
2208
|
-
readonly golang: "";
|
|
2209
|
-
readonly "golf-ball-tee": "";
|
|
2210
|
-
readonly goodreads: "";
|
|
2211
|
-
readonly "goodreads-g": "";
|
|
2212
|
-
readonly google: "";
|
|
2213
|
-
readonly "google-drive": "";
|
|
2214
|
-
readonly "google-pay": "";
|
|
2215
|
-
readonly "google-play": "";
|
|
2216
|
-
readonly "google-plus": "";
|
|
2217
|
-
readonly "google-plus-g": "";
|
|
2218
|
-
readonly "google-scholar": "";
|
|
2219
|
-
readonly "google-wallet": "";
|
|
2220
|
-
readonly gopuram: "";
|
|
2221
|
-
readonly "graduation-cap": "";
|
|
2222
|
-
readonly gratipay: "";
|
|
2223
|
-
readonly grav: "";
|
|
2224
|
-
readonly "greater-than": ">";
|
|
2225
|
-
readonly "greater-than-equal": "";
|
|
2226
|
-
readonly grip: "";
|
|
2227
|
-
readonly "grip-lines": "";
|
|
2228
|
-
readonly "grip-lines-vertical": "";
|
|
2229
|
-
readonly "grip-vertical": "";
|
|
2230
|
-
readonly gripfire: "";
|
|
2231
|
-
readonly "group-arrows-rotate": "";
|
|
2232
|
-
readonly grunt: "";
|
|
2233
|
-
readonly "guarani-sign": "";
|
|
2234
|
-
readonly guilded: "";
|
|
2235
|
-
readonly guitar: "";
|
|
2236
|
-
readonly gulp: "";
|
|
2237
|
-
readonly gun: "";
|
|
2238
|
-
readonly h: "H";
|
|
2239
|
-
readonly "hacker-news": "";
|
|
2240
|
-
readonly hackerrank: "";
|
|
2241
|
-
readonly hammer: "";
|
|
2242
|
-
readonly hamsa: "";
|
|
2243
|
-
readonly hand: "";
|
|
2244
|
-
readonly "hand-back-fist": "";
|
|
2245
|
-
readonly "hand-dots": "";
|
|
2246
|
-
readonly "hand-fist": "";
|
|
2247
|
-
readonly "hand-holding": "";
|
|
2248
|
-
readonly "hand-holding-dollar": "";
|
|
2249
|
-
readonly "hand-holding-droplet": "";
|
|
2250
|
-
readonly "hand-holding-hand": "";
|
|
2251
|
-
readonly "hand-holding-heart": "";
|
|
2252
|
-
readonly "hand-holding-medical": "";
|
|
2253
|
-
readonly "hand-lizard": "";
|
|
2254
|
-
readonly "hand-middle-finger": "";
|
|
2255
|
-
readonly "hand-peace": "";
|
|
2256
|
-
readonly "hand-point-down": "";
|
|
2257
|
-
readonly "hand-point-left": "";
|
|
2258
|
-
readonly "hand-point-right": "";
|
|
2259
|
-
readonly "hand-point-up": "";
|
|
2260
|
-
readonly "hand-pointer": "";
|
|
2261
|
-
readonly "hand-scissors": "";
|
|
2262
|
-
readonly "hand-sparkles": "";
|
|
2263
|
-
readonly "hand-spock": "";
|
|
2264
|
-
readonly handcuffs: "";
|
|
2265
|
-
readonly hands: "";
|
|
2266
|
-
readonly "hands-asl-interpreting": "";
|
|
2267
|
-
readonly "hands-bound": "";
|
|
2268
|
-
readonly "hands-bubbles": "";
|
|
2269
|
-
readonly "hands-clapping": "";
|
|
2270
|
-
readonly "hands-holding": "";
|
|
2271
|
-
readonly "hands-holding-child": "";
|
|
2272
|
-
readonly "hands-holding-circle": "";
|
|
2273
|
-
readonly "hands-praying": "";
|
|
2274
|
-
readonly handshake: "";
|
|
2275
|
-
readonly "handshake-angle": "";
|
|
2276
|
-
readonly "handshake-simple": "";
|
|
2277
|
-
readonly "handshake-simple-slash": "";
|
|
2278
|
-
readonly "handshake-slash": "";
|
|
2279
|
-
readonly hanukiah: "";
|
|
2280
|
-
readonly "hard-drive": "";
|
|
2281
|
-
readonly hashnode: "";
|
|
2282
|
-
readonly hashtag: "#";
|
|
2283
|
-
readonly "hat-cowboy": "";
|
|
2284
|
-
readonly "hat-cowboy-side": "";
|
|
2285
|
-
readonly "hat-wizard": "";
|
|
2286
|
-
readonly "head-side-cough": "";
|
|
2287
|
-
readonly "head-side-cough-slash": "";
|
|
2288
|
-
readonly "head-side-mask": "";
|
|
2289
|
-
readonly "head-side-virus": "";
|
|
2290
|
-
readonly heading: "";
|
|
2291
|
-
readonly headphones: "";
|
|
2292
|
-
readonly "headphones-simple": "";
|
|
2293
|
-
readonly headset: "";
|
|
2294
|
-
readonly heart: "";
|
|
2295
|
-
readonly "heart-circle-bolt": "";
|
|
2296
|
-
readonly "heart-circle-check": "";
|
|
2297
|
-
readonly "heart-circle-exclamation": "";
|
|
2298
|
-
readonly "heart-circle-minus": "";
|
|
2299
|
-
readonly "heart-circle-plus": "";
|
|
2300
|
-
readonly "heart-circle-xmark": "";
|
|
2301
|
-
readonly "heart-crack": "";
|
|
2302
|
-
readonly "heart-pulse": "";
|
|
2303
|
-
readonly helicopter: "";
|
|
2304
|
-
readonly "helicopter-symbol": "";
|
|
2305
|
-
readonly "helmet-safety": "";
|
|
2306
|
-
readonly "helmet-un": "";
|
|
2307
|
-
readonly highlighter: "";
|
|
2308
|
-
readonly "hill-avalanche": "";
|
|
2309
|
-
readonly "hill-rockslide": "";
|
|
2310
|
-
readonly hippo: "";
|
|
2311
|
-
readonly hips: "";
|
|
2312
|
-
readonly "hire-a-helper": "";
|
|
2313
|
-
readonly hive: "";
|
|
2314
|
-
readonly "hockey-puck": "";
|
|
2315
|
-
readonly "holly-berry": "";
|
|
2316
|
-
readonly hooli: "";
|
|
2317
|
-
readonly hornbill: "";
|
|
2318
|
-
readonly horse: "";
|
|
2319
|
-
readonly "horse-head": "";
|
|
2320
|
-
readonly hospital: "";
|
|
2321
|
-
readonly "hospital-user": "";
|
|
2322
|
-
readonly "hot-tub-person": "";
|
|
2323
|
-
readonly hotdog: "";
|
|
2324
|
-
readonly hotel: "";
|
|
2325
|
-
readonly hotjar: "";
|
|
2326
|
-
readonly hourglass: "";
|
|
2327
|
-
readonly "hourglass-end": "";
|
|
2328
|
-
readonly "hourglass-half": "";
|
|
2329
|
-
readonly "hourglass-start": "";
|
|
2330
|
-
readonly house: "";
|
|
2331
|
-
readonly "house-chimney": "";
|
|
2332
|
-
readonly "house-chimney-crack": "";
|
|
2333
|
-
readonly "house-chimney-medical": "";
|
|
2334
|
-
readonly "house-chimney-user": "";
|
|
2335
|
-
readonly "house-chimney-window": "";
|
|
2336
|
-
readonly "house-circle-check": "";
|
|
2337
|
-
readonly "house-circle-exclamation": "";
|
|
2338
|
-
readonly "house-circle-xmark": "";
|
|
2339
|
-
readonly "house-crack": "";
|
|
2340
|
-
readonly "house-fire": "";
|
|
2341
|
-
readonly "house-flag": "";
|
|
2342
|
-
readonly "house-flood-water": "";
|
|
2343
|
-
readonly "house-flood-water-circle-arrow-right": "";
|
|
2344
|
-
readonly "house-laptop": "";
|
|
2345
|
-
readonly "house-lock": "";
|
|
2346
|
-
readonly "house-medical": "";
|
|
2347
|
-
readonly "house-medical-circle-check": "";
|
|
2348
|
-
readonly "house-medical-circle-exclamation": "";
|
|
2349
|
-
readonly "house-medical-circle-xmark": "";
|
|
2350
|
-
readonly "house-medical-flag": "";
|
|
2351
|
-
readonly "house-signal": "";
|
|
2352
|
-
readonly "house-tsunami": "";
|
|
2353
|
-
readonly "house-user": "";
|
|
2354
|
-
readonly houzz: "";
|
|
2355
|
-
readonly "hryvnia-sign": "";
|
|
2356
|
-
readonly html5: "";
|
|
2357
|
-
readonly hubspot: "";
|
|
2358
|
-
readonly hurricane: "";
|
|
2359
|
-
readonly i: "I";
|
|
2360
|
-
readonly "i-cursor": "";
|
|
2361
|
-
readonly "ice-cream": "";
|
|
2362
|
-
readonly icicles: "";
|
|
2363
|
-
readonly icons: "";
|
|
2364
|
-
readonly "id-badge": "";
|
|
2365
|
-
readonly "id-card": "";
|
|
2366
|
-
readonly "id-card-clip": "";
|
|
2367
|
-
readonly ideal: "";
|
|
2368
|
-
readonly igloo: "";
|
|
2369
|
-
readonly image: "";
|
|
2370
|
-
readonly "image-portrait": "";
|
|
2371
|
-
readonly images: "";
|
|
2372
|
-
readonly imdb: "";
|
|
2373
|
-
readonly inbox: "";
|
|
2374
|
-
readonly indent: "";
|
|
2375
|
-
readonly "indian-rupee-sign": "";
|
|
2376
|
-
readonly industry: "";
|
|
2377
|
-
readonly infinity: "";
|
|
2378
|
-
readonly info: "";
|
|
2379
|
-
readonly instagram: "";
|
|
2380
|
-
readonly instalod: "";
|
|
2381
|
-
readonly intercom: "";
|
|
2382
|
-
readonly "internet-explorer": "";
|
|
2383
|
-
readonly invision: "";
|
|
2384
|
-
readonly ioxhost: "";
|
|
2385
|
-
readonly italic: "";
|
|
2386
|
-
readonly "itch-io": "";
|
|
2387
|
-
readonly itunes: "";
|
|
2388
|
-
readonly "itunes-note": "";
|
|
2389
|
-
readonly j: "J";
|
|
2390
|
-
readonly jar: "";
|
|
2391
|
-
readonly "jar-wheat": "";
|
|
2392
|
-
readonly java: "";
|
|
2393
|
-
readonly jedi: "";
|
|
2394
|
-
readonly "jedi-order": "";
|
|
2395
|
-
readonly jenkins: "";
|
|
2396
|
-
readonly "jet-fighter": "";
|
|
2397
|
-
readonly "jet-fighter-up": "";
|
|
2398
|
-
readonly jira: "";
|
|
2399
|
-
readonly joget: "";
|
|
2400
|
-
readonly joint: "";
|
|
2401
|
-
readonly joomla: "";
|
|
2402
|
-
readonly js: "";
|
|
2403
|
-
readonly jsfiddle: "";
|
|
2404
|
-
readonly "jug-detergent": "";
|
|
2405
|
-
readonly jxl: "";
|
|
2406
|
-
readonly k: "K";
|
|
2407
|
-
readonly kaaba: "";
|
|
2408
|
-
readonly kaggle: "";
|
|
2409
|
-
readonly key: "";
|
|
2410
|
-
readonly keybase: "";
|
|
2411
|
-
readonly keyboard: "";
|
|
2412
|
-
readonly keycdn: "";
|
|
2413
|
-
readonly khanda: "";
|
|
2414
|
-
readonly kickstarter: "";
|
|
2415
|
-
readonly "kickstarter-k": "";
|
|
2416
|
-
readonly "kip-sign": "";
|
|
2417
|
-
readonly "kit-medical": "";
|
|
2418
|
-
readonly "kitchen-set": "";
|
|
2419
|
-
readonly "kiwi-bird": "";
|
|
2420
|
-
readonly korvue: "";
|
|
2421
|
-
readonly l: "L";
|
|
2422
|
-
readonly "land-mine-on": "";
|
|
2423
|
-
readonly landmark: "";
|
|
2424
|
-
readonly "landmark-dome": "";
|
|
2425
|
-
readonly "landmark-flag": "";
|
|
2426
|
-
readonly language: "";
|
|
2427
|
-
readonly laptop: "";
|
|
2428
|
-
readonly "laptop-code": "";
|
|
2429
|
-
readonly "laptop-file": "";
|
|
2430
|
-
readonly "laptop-medical": "";
|
|
2431
|
-
readonly laravel: "";
|
|
2432
|
-
readonly "lari-sign": "";
|
|
2433
|
-
readonly lastfm: "";
|
|
2434
|
-
readonly "layer-group": "";
|
|
2435
|
-
readonly leaf: "";
|
|
2436
|
-
readonly leanpub: "";
|
|
2437
|
-
readonly "left-long": "";
|
|
2438
|
-
readonly "left-right": "";
|
|
2439
|
-
readonly lemon: "";
|
|
2440
|
-
readonly less: "";
|
|
2441
|
-
readonly "less-than": "<";
|
|
2442
|
-
readonly "less-than-equal": "";
|
|
2443
|
-
readonly letterboxd: "";
|
|
2444
|
-
readonly "life-ring": "";
|
|
2445
|
-
readonly lightbulb: "";
|
|
2446
|
-
readonly line: "";
|
|
2447
|
-
readonly "lines-leaning": "";
|
|
2448
|
-
readonly link: "";
|
|
2449
|
-
readonly "link-slash": "";
|
|
2450
|
-
readonly linkedin: "";
|
|
2451
|
-
readonly "linkedin-in": "";
|
|
2452
|
-
readonly linode: "";
|
|
2453
|
-
readonly linux: "";
|
|
2454
|
-
readonly "lira-sign": "";
|
|
2455
|
-
readonly list: "";
|
|
2456
|
-
readonly "list-check": "";
|
|
2457
|
-
readonly "list-ol": "";
|
|
2458
|
-
readonly "list-ul": "";
|
|
2459
|
-
readonly "litecoin-sign": "";
|
|
2460
|
-
readonly "location-arrow": "";
|
|
2461
|
-
readonly "location-crosshairs": "";
|
|
2462
|
-
readonly "location-dot": "";
|
|
2463
|
-
readonly "location-pin": "";
|
|
2464
|
-
readonly "location-pin-lock": "";
|
|
2465
|
-
readonly lock: "";
|
|
2466
|
-
readonly "lock-open": "";
|
|
2467
|
-
readonly locust: "";
|
|
2468
|
-
readonly lungs: "";
|
|
2469
|
-
readonly "lungs-virus": "";
|
|
2470
|
-
readonly lyft: "";
|
|
2471
|
-
readonly m: "M";
|
|
2472
|
-
readonly magento: "";
|
|
2473
|
-
readonly magnet: "";
|
|
2474
|
-
readonly "magnifying-glass": "";
|
|
2475
|
-
readonly "magnifying-glass-arrow-right": "";
|
|
2476
|
-
readonly "magnifying-glass-chart": "";
|
|
2477
|
-
readonly "magnifying-glass-dollar": "";
|
|
2478
|
-
readonly "magnifying-glass-location": "";
|
|
2479
|
-
readonly "magnifying-glass-minus": "";
|
|
2480
|
-
readonly "magnifying-glass-plus": "";
|
|
2481
|
-
readonly mailchimp: "";
|
|
2482
|
-
readonly "manat-sign": "";
|
|
2483
|
-
readonly mandalorian: "";
|
|
2484
|
-
readonly map: "";
|
|
2485
|
-
readonly "map-location": "";
|
|
2486
|
-
readonly "map-location-dot": "";
|
|
2487
|
-
readonly "map-pin": "";
|
|
2488
|
-
readonly markdown: "";
|
|
2489
|
-
readonly marker: "";
|
|
2490
|
-
readonly mars: "";
|
|
2491
|
-
readonly "mars-and-venus": "";
|
|
2492
|
-
readonly "mars-and-venus-burst": "";
|
|
2493
|
-
readonly "mars-double": "";
|
|
2494
|
-
readonly "mars-stroke": "";
|
|
2495
|
-
readonly "mars-stroke-right": "";
|
|
2496
|
-
readonly "mars-stroke-up": "";
|
|
2497
|
-
readonly "martini-glass": "";
|
|
2498
|
-
readonly "martini-glass-citrus": "";
|
|
2499
|
-
readonly "martini-glass-empty": "";
|
|
2500
|
-
readonly mask: "";
|
|
2501
|
-
readonly "mask-face": "";
|
|
2502
|
-
readonly "mask-ventilator": "";
|
|
2503
|
-
readonly "masks-theater": "";
|
|
2504
|
-
readonly mastodon: "";
|
|
2505
|
-
readonly "mattress-pillow": "";
|
|
2506
|
-
readonly maxcdn: "";
|
|
2507
|
-
readonly maximize: "";
|
|
2508
|
-
readonly mdb: "";
|
|
2509
|
-
readonly medal: "";
|
|
2510
|
-
readonly medapps: "";
|
|
2511
|
-
readonly medium: "";
|
|
2512
|
-
readonly medrt: "";
|
|
2513
|
-
readonly meetup: "";
|
|
2514
|
-
readonly megaport: "";
|
|
2515
|
-
readonly memory: "";
|
|
2516
|
-
readonly mendeley: "";
|
|
2517
|
-
readonly menorah: "";
|
|
2518
|
-
readonly mercury: "";
|
|
2519
|
-
readonly message: "";
|
|
2520
|
-
readonly meta: "";
|
|
2521
|
-
readonly meteor: "";
|
|
2522
|
-
readonly microblog: "";
|
|
2523
|
-
readonly microchip: "";
|
|
2524
|
-
readonly microphone: "";
|
|
2525
|
-
readonly "microphone-lines": "";
|
|
2526
|
-
readonly "microphone-lines-slash": "";
|
|
2527
|
-
readonly "microphone-slash": "";
|
|
2528
|
-
readonly microscope: "";
|
|
2529
|
-
readonly microsoft: "";
|
|
2530
|
-
readonly "mill-sign": "";
|
|
2531
|
-
readonly minimize: "";
|
|
2532
|
-
readonly mintbit: "";
|
|
2533
|
-
readonly minus: "";
|
|
2534
|
-
readonly mitten: "";
|
|
2535
|
-
readonly mix: "";
|
|
2536
|
-
readonly mixcloud: "";
|
|
2537
|
-
readonly mixer: "";
|
|
2538
|
-
readonly mizuni: "";
|
|
2539
|
-
readonly mobile: "";
|
|
2540
|
-
readonly "mobile-button": "";
|
|
2541
|
-
readonly "mobile-retro": "";
|
|
2542
|
-
readonly "mobile-screen": "";
|
|
2543
|
-
readonly "mobile-screen-button": "";
|
|
2544
|
-
readonly modx: "";
|
|
2545
|
-
readonly monero: "";
|
|
2546
|
-
readonly "money-bill": "";
|
|
2547
|
-
readonly "money-bill-1": "";
|
|
2548
|
-
readonly "money-bill-1-wave": "";
|
|
2549
|
-
readonly "money-bill-transfer": "";
|
|
2550
|
-
readonly "money-bill-trend-up": "";
|
|
2551
|
-
readonly "money-bill-wave": "";
|
|
2552
|
-
readonly "money-bill-wheat": "";
|
|
2553
|
-
readonly "money-bills": "";
|
|
2554
|
-
readonly "money-check": "";
|
|
2555
|
-
readonly "money-check-dollar": "";
|
|
2556
|
-
readonly monument: "";
|
|
2557
|
-
readonly moon: "";
|
|
2558
|
-
readonly "mortar-pestle": "";
|
|
2559
|
-
readonly mosque: "";
|
|
2560
|
-
readonly mosquito: "";
|
|
2561
|
-
readonly "mosquito-net": "";
|
|
2562
|
-
readonly motorcycle: "";
|
|
2563
|
-
readonly mound: "";
|
|
2564
|
-
readonly mountain: "";
|
|
2565
|
-
readonly "mountain-city": "";
|
|
2566
|
-
readonly "mountain-sun": "";
|
|
2567
|
-
readonly "mug-hot": "";
|
|
2568
|
-
readonly "mug-saucer": "";
|
|
2569
|
-
readonly music: "";
|
|
2570
|
-
readonly n: "N";
|
|
2571
|
-
readonly "naira-sign": "";
|
|
2572
|
-
readonly napster: "";
|
|
2573
|
-
readonly neos: "";
|
|
2574
|
-
readonly "network-wired": "";
|
|
2575
|
-
readonly neuter: "";
|
|
2576
|
-
readonly newspaper: "";
|
|
2577
|
-
readonly "nfc-directional": "";
|
|
2578
|
-
readonly "nfc-symbol": "";
|
|
2579
|
-
readonly nimblr: "";
|
|
2580
|
-
readonly node: "";
|
|
2581
|
-
readonly "node-js": "";
|
|
2582
|
-
readonly "not-equal": "";
|
|
2583
|
-
readonly notdef: "";
|
|
2584
|
-
readonly "note-sticky": "";
|
|
2585
|
-
readonly "notes-medical": "";
|
|
2586
|
-
readonly npm: "";
|
|
2587
|
-
readonly ns8: "";
|
|
2588
|
-
readonly nutritionix: "";
|
|
2589
|
-
readonly o: "O";
|
|
2590
|
-
readonly "object-group": "";
|
|
2591
|
-
readonly "object-ungroup": "";
|
|
2592
|
-
readonly "octopus-deploy": "";
|
|
2593
|
-
readonly odnoklassniki: "";
|
|
2594
|
-
readonly odysee: "";
|
|
2595
|
-
readonly "oil-can": "";
|
|
2596
|
-
readonly "oil-well": "";
|
|
2597
|
-
readonly "old-republic": "";
|
|
2598
|
-
readonly om: "";
|
|
2599
|
-
readonly opencart: "";
|
|
2600
|
-
readonly openid: "";
|
|
2601
|
-
readonly opensuse: "";
|
|
2602
|
-
readonly opera: "";
|
|
2603
|
-
readonly "optin-monster": "";
|
|
2604
|
-
readonly orcid: "";
|
|
2605
|
-
readonly osi: "";
|
|
2606
|
-
readonly otter: "";
|
|
2607
|
-
readonly outdent: "";
|
|
2608
|
-
readonly p: "P";
|
|
2609
|
-
readonly padlet: "";
|
|
2610
|
-
readonly page4: "";
|
|
2611
|
-
readonly pagelines: "";
|
|
2612
|
-
readonly pager: "";
|
|
2613
|
-
readonly "paint-roller": "";
|
|
2614
|
-
readonly paintbrush: "";
|
|
2615
|
-
readonly palette: "";
|
|
2616
|
-
readonly palfed: "";
|
|
2617
|
-
readonly pallet: "";
|
|
2618
|
-
readonly panorama: "";
|
|
2619
|
-
readonly "paper-plane": "";
|
|
2620
|
-
readonly paperclip: "";
|
|
2621
|
-
readonly "parachute-box": "";
|
|
2622
|
-
readonly paragraph: "";
|
|
2623
|
-
readonly passport: "";
|
|
2624
|
-
readonly paste: "";
|
|
2625
|
-
readonly patreon: "";
|
|
2626
|
-
readonly pause: "";
|
|
2627
|
-
readonly paw: "";
|
|
2628
|
-
readonly paypal: "";
|
|
2629
|
-
readonly peace: "";
|
|
2630
|
-
readonly pen: "";
|
|
2631
|
-
readonly "pen-clip": "";
|
|
2632
|
-
readonly "pen-fancy": "";
|
|
2633
|
-
readonly "pen-nib": "";
|
|
2634
|
-
readonly "pen-ruler": "";
|
|
2635
|
-
readonly "pen-to-square": "";
|
|
2636
|
-
readonly pencil: "";
|
|
2637
|
-
readonly "people-arrows": "";
|
|
2638
|
-
readonly "people-carry-box": "";
|
|
2639
|
-
readonly "people-group": "";
|
|
2640
|
-
readonly "people-line": "";
|
|
2641
|
-
readonly "people-pulling": "";
|
|
2642
|
-
readonly "people-robbery": "";
|
|
2643
|
-
readonly "people-roof": "";
|
|
2644
|
-
readonly "pepper-hot": "";
|
|
2645
|
-
readonly perbyte: "";
|
|
2646
|
-
readonly percent: "%";
|
|
2647
|
-
readonly periscope: "";
|
|
2648
|
-
readonly person: "";
|
|
2649
|
-
readonly "person-arrow-down-to-line": "";
|
|
2650
|
-
readonly "person-arrow-up-from-line": "";
|
|
2651
|
-
readonly "person-biking": "";
|
|
2652
|
-
readonly "person-booth": "";
|
|
2653
|
-
readonly "person-breastfeeding": "";
|
|
2654
|
-
readonly "person-burst": "";
|
|
2655
|
-
readonly "person-cane": "";
|
|
2656
|
-
readonly "person-chalkboard": "";
|
|
2657
|
-
readonly "person-circle-check": "";
|
|
2658
|
-
readonly "person-circle-exclamation": "";
|
|
2659
|
-
readonly "person-circle-minus": "";
|
|
2660
|
-
readonly "person-circle-plus": "";
|
|
2661
|
-
readonly "person-circle-question": "";
|
|
2662
|
-
readonly "person-circle-xmark": "";
|
|
2663
|
-
readonly "person-digging": "";
|
|
2664
|
-
readonly "person-dots-from-line": "";
|
|
2665
|
-
readonly "person-dress": "";
|
|
2666
|
-
readonly "person-dress-burst": "";
|
|
2667
|
-
readonly "person-drowning": "";
|
|
2668
|
-
readonly "person-falling": "";
|
|
2669
|
-
readonly "person-falling-burst": "";
|
|
2670
|
-
readonly "person-half-dress": "";
|
|
2671
|
-
readonly "person-harassing": "";
|
|
2672
|
-
readonly "person-hiking": "";
|
|
2673
|
-
readonly "person-military-pointing": "";
|
|
2674
|
-
readonly "person-military-rifle": "";
|
|
2675
|
-
readonly "person-military-to-person": "";
|
|
2676
|
-
readonly "person-praying": "";
|
|
2677
|
-
readonly "person-pregnant": "";
|
|
2678
|
-
readonly "person-rays": "";
|
|
2679
|
-
readonly "person-rifle": "";
|
|
2680
|
-
readonly "person-running": "";
|
|
2681
|
-
readonly "person-shelter": "";
|
|
2682
|
-
readonly "person-skating": "";
|
|
2683
|
-
readonly "person-skiing": "";
|
|
2684
|
-
readonly "person-skiing-nordic": "";
|
|
2685
|
-
readonly "person-snowboarding": "";
|
|
2686
|
-
readonly "person-swimming": "";
|
|
2687
|
-
readonly "person-through-window": "";
|
|
2688
|
-
readonly "person-walking": "";
|
|
2689
|
-
readonly "person-walking-arrow-loop-left": "";
|
|
2690
|
-
readonly "person-walking-arrow-right": "";
|
|
2691
|
-
readonly "person-walking-dashed-line-arrow-right": "";
|
|
2692
|
-
readonly "person-walking-luggage": "";
|
|
2693
|
-
readonly "person-walking-with-cane": "";
|
|
2694
|
-
readonly "peseta-sign": "";
|
|
2695
|
-
readonly "peso-sign": "";
|
|
2696
|
-
readonly phabricator: "";
|
|
2697
|
-
readonly "phoenix-framework": "";
|
|
2698
|
-
readonly "phoenix-squadron": "";
|
|
2699
|
-
readonly phone: "";
|
|
2700
|
-
readonly "phone-flip": "";
|
|
2701
|
-
readonly "phone-slash": "";
|
|
2702
|
-
readonly "phone-volume": "";
|
|
2703
|
-
readonly "photo-film": "";
|
|
2704
|
-
readonly php: "";
|
|
2705
|
-
readonly "pied-piper": "";
|
|
2706
|
-
readonly "pied-piper-alt": "";
|
|
2707
|
-
readonly "pied-piper-hat": "";
|
|
2708
|
-
readonly "pied-piper-pp": "";
|
|
2709
|
-
readonly "piggy-bank": "";
|
|
2710
|
-
readonly pills: "";
|
|
2711
|
-
readonly pinterest: "";
|
|
2712
|
-
readonly "pinterest-p": "";
|
|
2713
|
-
readonly pix: "";
|
|
2714
|
-
readonly pixiv: "";
|
|
2715
|
-
readonly "pizza-slice": "";
|
|
2716
|
-
readonly "place-of-worship": "";
|
|
2717
|
-
readonly plane: "";
|
|
2718
|
-
readonly "plane-arrival": "";
|
|
2719
|
-
readonly "plane-circle-check": "";
|
|
2720
|
-
readonly "plane-circle-exclamation": "";
|
|
2721
|
-
readonly "plane-circle-xmark": "";
|
|
2722
|
-
readonly "plane-departure": "";
|
|
2723
|
-
readonly "plane-lock": "";
|
|
2724
|
-
readonly "plane-slash": "";
|
|
2725
|
-
readonly "plane-up": "";
|
|
2726
|
-
readonly "plant-wilt": "";
|
|
2727
|
-
readonly "plate-wheat": "";
|
|
2728
|
-
readonly play: "";
|
|
2729
|
-
readonly playstation: "";
|
|
2730
|
-
readonly plug: "";
|
|
2731
|
-
readonly "plug-circle-bolt": "";
|
|
2732
|
-
readonly "plug-circle-check": "";
|
|
2733
|
-
readonly "plug-circle-exclamation": "";
|
|
2734
|
-
readonly "plug-circle-minus": "";
|
|
2735
|
-
readonly "plug-circle-plus": "";
|
|
2736
|
-
readonly "plug-circle-xmark": "";
|
|
2737
|
-
readonly plus: "+";
|
|
2738
|
-
readonly "plus-minus": "";
|
|
2739
|
-
readonly podcast: "";
|
|
2740
|
-
readonly poo: "";
|
|
2741
|
-
readonly "poo-storm": "";
|
|
2742
|
-
readonly poop: "";
|
|
2743
|
-
readonly "power-off": "";
|
|
2744
|
-
readonly prescription: "";
|
|
2745
|
-
readonly "prescription-bottle": "";
|
|
2746
|
-
readonly "prescription-bottle-medical": "";
|
|
2747
|
-
readonly print: "";
|
|
2748
|
-
readonly "product-hunt": "";
|
|
2749
|
-
readonly "pump-medical": "";
|
|
2750
|
-
readonly "pump-soap": "";
|
|
2751
|
-
readonly pushed: "";
|
|
2752
|
-
readonly "puzzle-piece": "";
|
|
2753
|
-
readonly python: "";
|
|
2754
|
-
readonly q: "Q";
|
|
2755
|
-
readonly qq: "";
|
|
2756
|
-
readonly qrcode: "";
|
|
2757
|
-
readonly question: "?";
|
|
2758
|
-
readonly quinscape: "";
|
|
2759
|
-
readonly quora: "";
|
|
2760
|
-
readonly "quote-left": "";
|
|
2761
|
-
readonly "quote-right": "";
|
|
2762
|
-
readonly r: "R";
|
|
2763
|
-
readonly "r-project": "";
|
|
2764
|
-
readonly radiation: "";
|
|
2765
|
-
readonly radio: "";
|
|
2766
|
-
readonly rainbow: "";
|
|
2767
|
-
readonly "ranking-star": "";
|
|
2768
|
-
readonly "raspberry-pi": "";
|
|
2769
|
-
readonly ravelry: "";
|
|
2770
|
-
readonly react: "";
|
|
2771
|
-
readonly reacteurope: "";
|
|
2772
|
-
readonly readme: "";
|
|
2773
|
-
readonly rebel: "";
|
|
2774
|
-
readonly receipt: "";
|
|
2775
|
-
readonly "record-vinyl": "";
|
|
2776
|
-
readonly "rectangle-ad": "";
|
|
2777
|
-
readonly "rectangle-list": "";
|
|
2778
|
-
readonly "rectangle-xmark": "";
|
|
2779
|
-
readonly recycle: "";
|
|
2780
|
-
readonly "red-river": "";
|
|
2781
|
-
readonly reddit: "";
|
|
2782
|
-
readonly "reddit-alien": "";
|
|
2783
|
-
readonly redhat: "";
|
|
2784
|
-
readonly registered: "";
|
|
2785
|
-
readonly renren: "";
|
|
2786
|
-
readonly repeat: "";
|
|
2787
|
-
readonly reply: "";
|
|
2788
|
-
readonly "reply-all": "";
|
|
2789
|
-
readonly replyd: "";
|
|
2790
|
-
readonly republican: "";
|
|
2791
|
-
readonly researchgate: "";
|
|
2792
|
-
readonly resolving: "";
|
|
2793
|
-
readonly restroom: "";
|
|
2794
|
-
readonly retweet: "";
|
|
2795
|
-
readonly rev: "";
|
|
2796
|
-
readonly ribbon: "";
|
|
2797
|
-
readonly "right-from-bracket": "";
|
|
2798
|
-
readonly "right-left": "";
|
|
2799
|
-
readonly "right-long": "";
|
|
2800
|
-
readonly "right-to-bracket": "";
|
|
2801
|
-
readonly ring: "";
|
|
2802
|
-
readonly road: "";
|
|
2803
|
-
readonly "road-barrier": "";
|
|
2804
|
-
readonly "road-bridge": "";
|
|
2805
|
-
readonly "road-circle-check": "";
|
|
2806
|
-
readonly "road-circle-exclamation": "";
|
|
2807
|
-
readonly "road-circle-xmark": "";
|
|
2808
|
-
readonly "road-lock": "";
|
|
2809
|
-
readonly "road-spikes": "";
|
|
2810
|
-
readonly robot: "";
|
|
2811
|
-
readonly rocket: "";
|
|
2812
|
-
readonly rocketchat: "";
|
|
2813
|
-
readonly rockrms: "";
|
|
2814
|
-
readonly rotate: "";
|
|
2815
|
-
readonly "rotate-left": "";
|
|
2816
|
-
readonly "rotate-right": "";
|
|
2817
|
-
readonly route: "";
|
|
2818
|
-
readonly rss: "";
|
|
2819
|
-
readonly "ruble-sign": "";
|
|
2820
|
-
readonly rug: "";
|
|
2821
|
-
readonly ruler: "";
|
|
2822
|
-
readonly "ruler-combined": "";
|
|
2823
|
-
readonly "ruler-horizontal": "";
|
|
2824
|
-
readonly "ruler-vertical": "";
|
|
2825
|
-
readonly "rupee-sign": "";
|
|
2826
|
-
readonly "rupiah-sign": "";
|
|
2827
|
-
readonly rust: "";
|
|
2828
|
-
readonly s: "S";
|
|
2829
|
-
readonly "sack-dollar": "";
|
|
2830
|
-
readonly "sack-xmark": "";
|
|
2831
|
-
readonly safari: "";
|
|
2832
|
-
readonly sailboat: "";
|
|
2833
|
-
readonly salesforce: "";
|
|
2834
|
-
readonly sass: "";
|
|
2835
|
-
readonly satellite: "";
|
|
2836
|
-
readonly "satellite-dish": "";
|
|
2837
|
-
readonly "scale-balanced": "";
|
|
2838
|
-
readonly "scale-unbalanced": "";
|
|
2839
|
-
readonly "scale-unbalanced-flip": "";
|
|
2840
|
-
readonly schlix: "";
|
|
2841
|
-
readonly school: "";
|
|
2842
|
-
readonly "school-circle-check": "";
|
|
2843
|
-
readonly "school-circle-exclamation": "";
|
|
2844
|
-
readonly "school-circle-xmark": "";
|
|
2845
|
-
readonly "school-flag": "";
|
|
2846
|
-
readonly "school-lock": "";
|
|
2847
|
-
readonly scissors: "";
|
|
2848
|
-
readonly screenpal: "";
|
|
2849
|
-
readonly screwdriver: "";
|
|
2850
|
-
readonly "screwdriver-wrench": "";
|
|
2851
|
-
readonly scribd: "";
|
|
2852
|
-
readonly scroll: "";
|
|
2853
|
-
readonly "scroll-torah": "";
|
|
2854
|
-
readonly "sd-card": "";
|
|
2855
|
-
readonly searchengin: "";
|
|
2856
|
-
readonly section: "";
|
|
2857
|
-
readonly seedling: "";
|
|
2858
|
-
readonly sellcast: "";
|
|
2859
|
-
readonly sellsy: "";
|
|
2860
|
-
readonly server: "";
|
|
2861
|
-
readonly servicestack: "";
|
|
2862
|
-
readonly shapes: "";
|
|
2863
|
-
readonly share: "";
|
|
2864
|
-
readonly "share-from-square": "";
|
|
2865
|
-
readonly "share-nodes": "";
|
|
2866
|
-
readonly "sheet-plastic": "";
|
|
2867
|
-
readonly "shekel-sign": "";
|
|
2868
|
-
readonly shield: "";
|
|
2869
|
-
readonly "shield-cat": "";
|
|
2870
|
-
readonly "shield-dog": "";
|
|
2871
|
-
readonly "shield-halved": "";
|
|
2872
|
-
readonly "shield-heart": "";
|
|
2873
|
-
readonly "shield-virus": "";
|
|
2874
|
-
readonly ship: "";
|
|
2875
|
-
readonly shirt: "";
|
|
2876
|
-
readonly shirtsinbulk: "";
|
|
2877
|
-
readonly "shoe-prints": "";
|
|
2878
|
-
readonly shoelace: "";
|
|
2879
|
-
readonly shop: "";
|
|
2880
|
-
readonly "shop-lock": "";
|
|
2881
|
-
readonly "shop-slash": "";
|
|
2882
|
-
readonly shopify: "";
|
|
2883
|
-
readonly shopware: "";
|
|
2884
|
-
readonly shower: "";
|
|
2885
|
-
readonly shrimp: "";
|
|
2886
|
-
readonly shuffle: "";
|
|
2887
|
-
readonly "shuttle-space": "";
|
|
2888
|
-
readonly "sign-hanging": "";
|
|
2889
|
-
readonly signal: "";
|
|
2890
|
-
readonly "signal-messenger": "";
|
|
2891
|
-
readonly signature: "";
|
|
2892
|
-
readonly "signs-post": "";
|
|
2893
|
-
readonly "sim-card": "";
|
|
2894
|
-
readonly simplybuilt: "";
|
|
2895
|
-
readonly sink: "";
|
|
2896
|
-
readonly sistrix: "";
|
|
2897
|
-
readonly sitemap: "";
|
|
2898
|
-
readonly sith: "";
|
|
2899
|
-
readonly sitrox: "";
|
|
2900
|
-
readonly sketch: "";
|
|
2901
|
-
readonly skull: "";
|
|
2902
|
-
readonly "skull-crossbones": "";
|
|
2903
|
-
readonly skyatlas: "";
|
|
2904
|
-
readonly skype: "";
|
|
2905
|
-
readonly slack: "";
|
|
2906
|
-
readonly slash: "";
|
|
2907
|
-
readonly sleigh: "";
|
|
2908
|
-
readonly sliders: "";
|
|
2909
|
-
readonly slideshare: "";
|
|
2910
|
-
readonly smog: "";
|
|
2911
|
-
readonly smoking: "";
|
|
2912
|
-
readonly snapchat: "";
|
|
2913
|
-
readonly snowflake: "";
|
|
2914
|
-
readonly snowman: "";
|
|
2915
|
-
readonly snowplow: "";
|
|
2916
|
-
readonly soap: "";
|
|
2917
|
-
readonly socks: "";
|
|
2918
|
-
readonly "solar-panel": "";
|
|
2919
|
-
readonly sort: "";
|
|
2920
|
-
readonly "sort-down": "";
|
|
2921
|
-
readonly "sort-up": "";
|
|
2922
|
-
readonly soundcloud: "";
|
|
2923
|
-
readonly sourcetree: "";
|
|
2924
|
-
readonly spa: "";
|
|
2925
|
-
readonly "space-awesome": "";
|
|
2926
|
-
readonly "spaghetti-monster-flying": "";
|
|
2927
|
-
readonly speakap: "";
|
|
2928
|
-
readonly "speaker-deck": "";
|
|
2929
|
-
readonly "spell-check": "";
|
|
2930
|
-
readonly spider: "";
|
|
2931
|
-
readonly spinner: "";
|
|
2932
|
-
readonly splotch: "";
|
|
2933
|
-
readonly spoon: "";
|
|
2934
|
-
readonly spotify: "";
|
|
2935
|
-
readonly "spray-can": "";
|
|
2936
|
-
readonly "spray-can-sparkles": "";
|
|
2937
|
-
readonly square: "";
|
|
2938
|
-
readonly "square-arrow-up-right": "";
|
|
2939
|
-
readonly "square-behance": "";
|
|
2940
|
-
readonly "square-caret-down": "";
|
|
2941
|
-
readonly "square-caret-left": "";
|
|
2942
|
-
readonly "square-caret-right": "";
|
|
2943
|
-
readonly "square-caret-up": "";
|
|
2944
|
-
readonly "square-check": "";
|
|
2945
|
-
readonly "square-dribbble": "";
|
|
2946
|
-
readonly "square-envelope": "";
|
|
2947
|
-
readonly "square-facebook": "";
|
|
2948
|
-
readonly "square-font-awesome": "";
|
|
2949
|
-
readonly "square-font-awesome-stroke": "";
|
|
2950
|
-
readonly "square-full": "";
|
|
2951
|
-
readonly "square-git": "";
|
|
2952
|
-
readonly "square-github": "";
|
|
2953
|
-
readonly "square-gitlab": "";
|
|
2954
|
-
readonly "square-google-plus": "";
|
|
2955
|
-
readonly "square-h": "";
|
|
2956
|
-
readonly "square-hacker-news": "";
|
|
2957
|
-
readonly "square-instagram": "";
|
|
2958
|
-
readonly "square-js": "";
|
|
2959
|
-
readonly "square-lastfm": "";
|
|
2960
|
-
readonly "square-letterboxd": "";
|
|
2961
|
-
readonly "square-minus": "";
|
|
2962
|
-
readonly "square-nfi": "";
|
|
2963
|
-
readonly "square-odnoklassniki": "";
|
|
2964
|
-
readonly "square-parking": "";
|
|
2965
|
-
readonly "square-pen": "";
|
|
2966
|
-
readonly "square-person-confined": "";
|
|
2967
|
-
readonly "square-phone": "";
|
|
2968
|
-
readonly "square-phone-flip": "";
|
|
2969
|
-
readonly "square-pied-piper": "";
|
|
2970
|
-
readonly "square-pinterest": "";
|
|
2971
|
-
readonly "square-plus": "";
|
|
2972
|
-
readonly "square-poll-horizontal": "";
|
|
2973
|
-
readonly "square-poll-vertical": "";
|
|
2974
|
-
readonly "square-reddit": "";
|
|
2975
|
-
readonly "square-root-variable": "";
|
|
2976
|
-
readonly "square-rss": "";
|
|
2977
|
-
readonly "square-share-nodes": "";
|
|
2978
|
-
readonly "square-snapchat": "";
|
|
2979
|
-
readonly "square-steam": "";
|
|
2980
|
-
readonly "square-threads": "";
|
|
2981
|
-
readonly "square-tumblr": "";
|
|
2982
|
-
readonly "square-twitter": "";
|
|
2983
|
-
readonly "square-up-right": "";
|
|
2984
|
-
readonly "square-upwork": "";
|
|
2985
|
-
readonly "square-viadeo": "";
|
|
2986
|
-
readonly "square-vimeo": "";
|
|
2987
|
-
readonly "square-virus": "";
|
|
2988
|
-
readonly "square-web-awesome": "";
|
|
2989
|
-
readonly "square-web-awesome-stroke": "";
|
|
2990
|
-
readonly "square-whatsapp": "";
|
|
2991
|
-
readonly "square-x-twitter": "";
|
|
2992
|
-
readonly "square-xing": "";
|
|
2993
|
-
readonly "square-xmark": "";
|
|
2994
|
-
readonly "square-youtube": "";
|
|
2995
|
-
readonly squarespace: "";
|
|
2996
|
-
readonly "stack-exchange": "";
|
|
2997
|
-
readonly "stack-overflow": "";
|
|
2998
|
-
readonly stackpath: "";
|
|
2999
|
-
readonly "staff-snake": "";
|
|
3000
|
-
readonly stairs: "";
|
|
3001
|
-
readonly stamp: "";
|
|
3002
|
-
readonly stapler: "";
|
|
3003
|
-
readonly star: "";
|
|
3004
|
-
readonly "star-and-crescent": "";
|
|
3005
|
-
readonly "star-half": "";
|
|
3006
|
-
readonly "star-half-stroke": "";
|
|
3007
|
-
readonly "star-of-david": "";
|
|
3008
|
-
readonly "star-of-life": "";
|
|
3009
|
-
readonly staylinked: "";
|
|
3010
|
-
readonly steam: "";
|
|
3011
|
-
readonly "steam-symbol": "";
|
|
3012
|
-
readonly "sterling-sign": "";
|
|
3013
|
-
readonly stethoscope: "";
|
|
3014
|
-
readonly "sticker-mule": "";
|
|
3015
|
-
readonly stop: "";
|
|
3016
|
-
readonly stopwatch: "";
|
|
3017
|
-
readonly "stopwatch-20": "";
|
|
3018
|
-
readonly store: "";
|
|
3019
|
-
readonly "store-slash": "";
|
|
3020
|
-
readonly strava: "";
|
|
3021
|
-
readonly "street-view": "";
|
|
3022
|
-
readonly strikethrough: "";
|
|
3023
|
-
readonly stripe: "";
|
|
3024
|
-
readonly "stripe-s": "";
|
|
3025
|
-
readonly stroopwafel: "";
|
|
3026
|
-
readonly stubber: "";
|
|
3027
|
-
readonly studiovinari: "";
|
|
3028
|
-
readonly stumbleupon: "";
|
|
3029
|
-
readonly "stumbleupon-circle": "";
|
|
3030
|
-
readonly subscript: "";
|
|
3031
|
-
readonly suitcase: "";
|
|
3032
|
-
readonly "suitcase-medical": "";
|
|
3033
|
-
readonly "suitcase-rolling": "";
|
|
3034
|
-
readonly sun: "";
|
|
3035
|
-
readonly "sun-plant-wilt": "";
|
|
3036
|
-
readonly superpowers: "";
|
|
3037
|
-
readonly superscript: "";
|
|
3038
|
-
readonly supple: "";
|
|
3039
|
-
readonly suse: "";
|
|
3040
|
-
readonly swatchbook: "";
|
|
3041
|
-
readonly swift: "";
|
|
3042
|
-
readonly symfony: "";
|
|
3043
|
-
readonly synagogue: "";
|
|
3044
|
-
readonly syringe: "";
|
|
3045
|
-
readonly t: "T";
|
|
3046
|
-
readonly table: "";
|
|
3047
|
-
readonly "table-cells": "";
|
|
3048
|
-
readonly "table-cells-column-lock": "";
|
|
3049
|
-
readonly "table-cells-large": "";
|
|
3050
|
-
readonly "table-cells-row-lock": "";
|
|
3051
|
-
readonly "table-columns": "";
|
|
3052
|
-
readonly "table-list": "";
|
|
3053
|
-
readonly "table-tennis-paddle-ball": "";
|
|
3054
|
-
readonly tablet: "";
|
|
3055
|
-
readonly "tablet-button": "";
|
|
3056
|
-
readonly "tablet-screen-button": "";
|
|
3057
|
-
readonly tablets: "";
|
|
3058
|
-
readonly "tachograph-digital": "";
|
|
3059
|
-
readonly tag: "";
|
|
3060
|
-
readonly tags: "";
|
|
3061
|
-
readonly tape: "";
|
|
3062
|
-
readonly tarp: "";
|
|
3063
|
-
readonly "tarp-droplet": "";
|
|
3064
|
-
readonly taxi: "";
|
|
3065
|
-
readonly teamspeak: "";
|
|
3066
|
-
readonly teeth: "";
|
|
3067
|
-
readonly "teeth-open": "";
|
|
3068
|
-
readonly telegram: "";
|
|
3069
|
-
readonly "temperature-arrow-down": "";
|
|
3070
|
-
readonly "temperature-arrow-up": "";
|
|
3071
|
-
readonly "temperature-empty": "";
|
|
3072
|
-
readonly "temperature-full": "";
|
|
3073
|
-
readonly "temperature-half": "";
|
|
3074
|
-
readonly "temperature-high": "";
|
|
3075
|
-
readonly "temperature-low": "";
|
|
3076
|
-
readonly "temperature-quarter": "";
|
|
3077
|
-
readonly "temperature-three-quarters": "";
|
|
3078
|
-
readonly "tencent-weibo": "";
|
|
3079
|
-
readonly "tenge-sign": "";
|
|
3080
|
-
readonly tent: "";
|
|
3081
|
-
readonly "tent-arrow-down-to-line": "";
|
|
3082
|
-
readonly "tent-arrow-left-right": "";
|
|
3083
|
-
readonly "tent-arrow-turn-left": "";
|
|
3084
|
-
readonly "tent-arrows-down": "";
|
|
3085
|
-
readonly tents: "";
|
|
3086
|
-
readonly terminal: "";
|
|
3087
|
-
readonly "text-height": "";
|
|
3088
|
-
readonly "text-slash": "";
|
|
3089
|
-
readonly "text-width": "";
|
|
3090
|
-
readonly "the-red-yeti": "";
|
|
3091
|
-
readonly themeco: "";
|
|
3092
|
-
readonly themeisle: "";
|
|
3093
|
-
readonly thermometer: "";
|
|
3094
|
-
readonly "think-peaks": "";
|
|
3095
|
-
readonly threads: "";
|
|
3096
|
-
readonly "thumbs-down": "";
|
|
3097
|
-
readonly "thumbs-up": "";
|
|
3098
|
-
readonly thumbtack: "";
|
|
3099
|
-
readonly ticket: "";
|
|
3100
|
-
readonly "ticket-simple": "";
|
|
3101
|
-
readonly tiktok: "";
|
|
3102
|
-
readonly timeline: "";
|
|
3103
|
-
readonly "toggle-off": "";
|
|
3104
|
-
readonly "toggle-on": "";
|
|
3105
|
-
readonly toilet: "";
|
|
3106
|
-
readonly "toilet-paper": "";
|
|
3107
|
-
readonly "toilet-paper-slash": "";
|
|
3108
|
-
readonly "toilet-portable": "";
|
|
3109
|
-
readonly "toilets-portable": "";
|
|
3110
|
-
readonly toolbox: "";
|
|
3111
|
-
readonly tooth: "";
|
|
3112
|
-
readonly "torii-gate": "";
|
|
3113
|
-
readonly tornado: "";
|
|
3114
|
-
readonly "tower-broadcast": "";
|
|
3115
|
-
readonly "tower-cell": "";
|
|
3116
|
-
readonly "tower-observation": "";
|
|
3117
|
-
readonly tractor: "";
|
|
3118
|
-
readonly "trade-federation": "";
|
|
3119
|
-
readonly trademark: "";
|
|
3120
|
-
readonly "traffic-light": "";
|
|
3121
|
-
readonly trailer: "";
|
|
3122
|
-
readonly train: "";
|
|
3123
|
-
readonly "train-subway": "";
|
|
3124
|
-
readonly "train-tram": "";
|
|
3125
|
-
readonly transgender: "";
|
|
3126
|
-
readonly trash: "";
|
|
3127
|
-
readonly "trash-arrow-up": "";
|
|
3128
|
-
readonly "trash-can": "";
|
|
3129
|
-
readonly "trash-can-arrow-up": "";
|
|
3130
|
-
readonly tree: "";
|
|
3131
|
-
readonly "tree-city": "";
|
|
3132
|
-
readonly trello: "";
|
|
3133
|
-
readonly "triangle-exclamation": "";
|
|
3134
|
-
readonly trophy: "";
|
|
3135
|
-
readonly trowel: "";
|
|
3136
|
-
readonly "trowel-bricks": "";
|
|
3137
|
-
readonly truck: "";
|
|
3138
|
-
readonly "truck-arrow-right": "";
|
|
3139
|
-
readonly "truck-droplet": "";
|
|
3140
|
-
readonly "truck-fast": "";
|
|
3141
|
-
readonly "truck-field": "";
|
|
3142
|
-
readonly "truck-field-un": "";
|
|
3143
|
-
readonly "truck-front": "";
|
|
3144
|
-
readonly "truck-medical": "";
|
|
3145
|
-
readonly "truck-monster": "";
|
|
3146
|
-
readonly "truck-moving": "";
|
|
3147
|
-
readonly "truck-pickup": "";
|
|
3148
|
-
readonly "truck-plane": "";
|
|
3149
|
-
readonly "truck-ramp-box": "";
|
|
3150
|
-
readonly tty: "";
|
|
3151
|
-
readonly tumblr: "";
|
|
3152
|
-
readonly "turkish-lira-sign": "";
|
|
3153
|
-
readonly "turn-down": "";
|
|
3154
|
-
readonly "turn-up": "";
|
|
3155
|
-
readonly tv: "";
|
|
3156
|
-
readonly twitch: "";
|
|
3157
|
-
readonly twitter: "";
|
|
3158
|
-
readonly typo3: "";
|
|
3159
|
-
readonly u: "U";
|
|
3160
|
-
readonly uber: "";
|
|
3161
|
-
readonly ubuntu: "";
|
|
3162
|
-
readonly uikit: "";
|
|
3163
|
-
readonly umbraco: "";
|
|
3164
|
-
readonly umbrella: "";
|
|
3165
|
-
readonly "umbrella-beach": "";
|
|
3166
|
-
readonly uncharted: "";
|
|
3167
|
-
readonly underline: "";
|
|
3168
|
-
readonly uniregistry: "";
|
|
3169
|
-
readonly unity: "";
|
|
3170
|
-
readonly "universal-access": "";
|
|
3171
|
-
readonly unlock: "";
|
|
3172
|
-
readonly "unlock-keyhole": "";
|
|
3173
|
-
readonly unsplash: "";
|
|
3174
|
-
readonly untappd: "";
|
|
3175
|
-
readonly "up-down": "";
|
|
3176
|
-
readonly "up-down-left-right": "";
|
|
3177
|
-
readonly "up-long": "";
|
|
3178
|
-
readonly "up-right-and-down-left-from-center": "";
|
|
3179
|
-
readonly "up-right-from-square": "";
|
|
3180
|
-
readonly upload: "";
|
|
3181
|
-
readonly ups: "";
|
|
3182
|
-
readonly upwork: "";
|
|
3183
|
-
readonly usb: "";
|
|
3184
|
-
readonly user: "";
|
|
3185
|
-
readonly "user-astronaut": "";
|
|
3186
|
-
readonly "user-check": "";
|
|
3187
|
-
readonly "user-clock": "";
|
|
3188
|
-
readonly "user-doctor": "";
|
|
3189
|
-
readonly "user-gear": "";
|
|
3190
|
-
readonly "user-graduate": "";
|
|
3191
|
-
readonly "user-group": "";
|
|
3192
|
-
readonly "user-injured": "";
|
|
3193
|
-
readonly "user-large": "";
|
|
3194
|
-
readonly "user-large-slash": "";
|
|
3195
|
-
readonly "user-lock": "";
|
|
3196
|
-
readonly "user-minus": "";
|
|
3197
|
-
readonly "user-ninja": "";
|
|
3198
|
-
readonly "user-nurse": "";
|
|
3199
|
-
readonly "user-pen": "";
|
|
3200
|
-
readonly "user-plus": "";
|
|
3201
|
-
readonly "user-secret": "";
|
|
3202
|
-
readonly "user-shield": "";
|
|
3203
|
-
readonly "user-slash": "";
|
|
3204
|
-
readonly "user-tag": "";
|
|
3205
|
-
readonly "user-tie": "";
|
|
3206
|
-
readonly "user-xmark": "";
|
|
3207
|
-
readonly users: "";
|
|
3208
|
-
readonly "users-between-lines": "";
|
|
3209
|
-
readonly "users-gear": "";
|
|
3210
|
-
readonly "users-line": "";
|
|
3211
|
-
readonly "users-rays": "";
|
|
3212
|
-
readonly "users-rectangle": "";
|
|
3213
|
-
readonly "users-slash": "";
|
|
3214
|
-
readonly "users-viewfinder": "";
|
|
3215
|
-
readonly usps: "";
|
|
3216
|
-
readonly ussunnah: "";
|
|
3217
|
-
readonly utensils: "";
|
|
3218
|
-
readonly v: "V";
|
|
3219
|
-
readonly vaadin: "";
|
|
3220
|
-
readonly "van-shuttle": "";
|
|
3221
|
-
readonly vault: "";
|
|
3222
|
-
readonly "vector-square": "";
|
|
3223
|
-
readonly venus: "";
|
|
3224
|
-
readonly "venus-double": "";
|
|
3225
|
-
readonly "venus-mars": "";
|
|
3226
|
-
readonly vest: "";
|
|
3227
|
-
readonly "vest-patches": "";
|
|
3228
|
-
readonly viacoin: "";
|
|
3229
|
-
readonly viadeo: "";
|
|
3230
|
-
readonly vial: "";
|
|
3231
|
-
readonly "vial-circle-check": "";
|
|
3232
|
-
readonly "vial-virus": "";
|
|
3233
|
-
readonly vials: "";
|
|
3234
|
-
readonly viber: "";
|
|
3235
|
-
readonly video: "";
|
|
3236
|
-
readonly "video-slash": "";
|
|
3237
|
-
readonly vihara: "";
|
|
3238
|
-
readonly vimeo: "";
|
|
3239
|
-
readonly "vimeo-v": "";
|
|
3240
|
-
readonly vine: "";
|
|
3241
|
-
readonly virus: "";
|
|
3242
|
-
readonly "virus-covid": "";
|
|
3243
|
-
readonly "virus-covid-slash": "";
|
|
3244
|
-
readonly "virus-slash": "";
|
|
3245
|
-
readonly viruses: "";
|
|
3246
|
-
readonly vk: "";
|
|
3247
|
-
readonly vnv: "";
|
|
3248
|
-
readonly voicemail: "";
|
|
3249
|
-
readonly volcano: "";
|
|
3250
|
-
readonly volleyball: "";
|
|
3251
|
-
readonly "volume-high": "";
|
|
3252
|
-
readonly "volume-low": "";
|
|
3253
|
-
readonly "volume-off": "";
|
|
3254
|
-
readonly "volume-xmark": "";
|
|
3255
|
-
readonly "vr-cardboard": "";
|
|
3256
|
-
readonly vuejs: "";
|
|
3257
|
-
readonly w: "W";
|
|
3258
|
-
readonly "walkie-talkie": "";
|
|
3259
|
-
readonly wallet: "";
|
|
3260
|
-
readonly "wand-magic": "";
|
|
3261
|
-
readonly "wand-magic-sparkles": "";
|
|
3262
|
-
readonly "wand-sparkles": "";
|
|
3263
|
-
readonly warehouse: "";
|
|
3264
|
-
readonly "watchman-monitoring": "";
|
|
3265
|
-
readonly water: "";
|
|
3266
|
-
readonly "water-ladder": "";
|
|
3267
|
-
readonly "wave-square": "";
|
|
3268
|
-
readonly waze: "";
|
|
3269
|
-
readonly "web-awesome": "";
|
|
3270
|
-
readonly webflow: "";
|
|
3271
|
-
readonly weebly: "";
|
|
3272
|
-
readonly weibo: "";
|
|
3273
|
-
readonly "weight-hanging": "";
|
|
3274
|
-
readonly "weight-scale": "";
|
|
3275
|
-
readonly weixin: "";
|
|
3276
|
-
readonly whatsapp: "";
|
|
3277
|
-
readonly "wheat-awn": "";
|
|
3278
|
-
readonly "wheat-awn-circle-exclamation": "";
|
|
3279
|
-
readonly wheelchair: "";
|
|
3280
|
-
readonly "wheelchair-move": "";
|
|
3281
|
-
readonly "whiskey-glass": "";
|
|
3282
|
-
readonly whmcs: "";
|
|
3283
|
-
readonly wifi: "";
|
|
3284
|
-
readonly "wikipedia-w": "";
|
|
3285
|
-
readonly wind: "";
|
|
3286
|
-
readonly "window-maximize": "";
|
|
3287
|
-
readonly "window-minimize": "";
|
|
3288
|
-
readonly "window-restore": "";
|
|
3289
|
-
readonly windows: "";
|
|
3290
|
-
readonly "wine-bottle": "";
|
|
3291
|
-
readonly "wine-glass": "";
|
|
3292
|
-
readonly "wine-glass-empty": "";
|
|
3293
|
-
readonly wirsindhandwerk: "";
|
|
3294
|
-
readonly wix: "";
|
|
3295
|
-
readonly "wizards-of-the-coast": "";
|
|
3296
|
-
readonly wodu: "";
|
|
3297
|
-
readonly "wolf-pack-battalion": "";
|
|
3298
|
-
readonly "won-sign": "";
|
|
3299
|
-
readonly wordpress: "";
|
|
3300
|
-
readonly "wordpress-simple": "";
|
|
3301
|
-
readonly worm: "";
|
|
3302
|
-
readonly wpbeginner: "";
|
|
3303
|
-
readonly wpexplorer: "";
|
|
3304
|
-
readonly wpforms: "";
|
|
3305
|
-
readonly wpressr: "";
|
|
3306
|
-
readonly wrench: "";
|
|
3307
|
-
readonly x: "X";
|
|
3308
|
-
readonly "x-ray": "";
|
|
3309
|
-
readonly "x-twitter": "";
|
|
3310
|
-
readonly xbox: "";
|
|
3311
|
-
readonly xing: "";
|
|
3312
|
-
readonly xmark: "";
|
|
3313
|
-
readonly "xmarks-lines": "";
|
|
3314
|
-
readonly y: "Y";
|
|
3315
|
-
readonly "y-combinator": "";
|
|
3316
|
-
readonly yahoo: "";
|
|
3317
|
-
readonly yammer: "";
|
|
3318
|
-
readonly yandex: "";
|
|
3319
|
-
readonly "yandex-international": "";
|
|
3320
|
-
readonly yarn: "";
|
|
3321
|
-
readonly yelp: "";
|
|
3322
|
-
readonly "yen-sign": "";
|
|
3323
|
-
readonly "yin-yang": "";
|
|
3324
|
-
readonly yoast: "";
|
|
3325
|
-
readonly youtube: "";
|
|
3326
|
-
readonly z: "Z";
|
|
3327
|
-
readonly zhihu: "";
|
|
3328
|
-
};
|
|
3329
|
-
|
|
3330
|
-
type TableImperativeHandle = {
|
|
3331
|
-
setTableData: (data: any[]) => void;
|
|
3332
|
-
appendDataToTable: (data: any[]) => void;
|
|
3333
|
-
};
|
|
3334
|
-
|
|
3335
|
-
type ClippedMultiLineTextRendererImperativeHandle = {
|
|
3336
|
-
appendTextToClippedMultiLineTextRenderer: (data: string) => void;
|
|
3337
|
-
};
|
|
3338
|
-
|
|
3339
|
-
type PlotLineImperativeHandle = {
|
|
3340
|
-
appendData: (x: number, y: number) => void;
|
|
3341
|
-
setAxesDecimalDigits: (x: number, y: number) => void;
|
|
3342
|
-
setAxesAutoFit: (enabled: boolean) => void;
|
|
3343
|
-
resetData: () => void;
|
|
3344
|
-
};
|
|
3345
|
-
|
|
3346
|
-
type PlotCandlestickImperativeHandle = {
|
|
3347
|
-
setData: (data: PlotCandlestickDataItem[]) => void;
|
|
3348
|
-
setAxesAutoFit: (enabled: boolean) => void;
|
|
3349
|
-
resetData: () => void;
|
|
942
|
+
}> & ((props: _xframes_common.WidgetStyleProps & {
|
|
943
|
+
text: string;
|
|
944
|
+
}) => _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">);
|
|
3350
945
|
};
|
|
3351
946
|
|
|
3352
|
-
declare const
|
|
947
|
+
declare const TradingGuiDemo: () => react_jsx_runtime.JSX.Element;
|
|
3353
948
|
|
|
3354
|
-
export {
|
|
949
|
+
export { ReactNativeWrapper, TradingGuiDemo, XFrames, XFramesDemo };
|