-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
145 lines (140 loc) · 3.11 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import Avatar from "./Avatar";
import Form from "./Form";
import Tree from "./Tree";
import Char from "./Char";
import Container from "./Container";
import ContainerWidget from "./ContainerWidget";
import NewLine from "./NewLine";
import Selection from "./Selection";
import Many2one from "./Many2one";
import Field from "./Field";
import Widget from "./Widget";
import Boolean from "./Boolean";
import Integer from "./Integer";
import Float from "./Float";
import FloatTime from "./FloatTime";
import ProgressBar from "./ProgressBar";
import Date from "./Date";
import DateTime from "./DateTime";
import Markdown from "./Markdown";
import One2many from "./One2many";
import SearchFilter, { SearchFieldTypes } from "./SearchFilter";
import Text from "./Text";
import Label from "./Label";
import Notebook from "./Notebook";
import Group from "./Group";
import Page from "./Page";
import Separator from "./Separator";
import Button from "./Button";
import ButtonGroup from "./ButtonGroup";
import Reference from "./Reference";
import Binary from "./Binary";
import Image from "./Image";
import { parseContext, parseContextFields } from "./helpers/contextParser";
import {
transformDomainForChildWidget,
parseDomainFields,
} from "./helpers/domainParser";
import Timeline from "./Timeline";
import Indicator from "./Indicator";
import Dashboard from "./Dashboard";
import DashboardItem from "./DashboardItem";
import Tags from "./Tags";
import Tag from "./Tag";
import MultiCheckbox from "./MultiCheckbox";
import Radio from "./Radio";
import Switch from "./Switch";
import Steps from "./Steps";
import CodeEditor from "./CodeEditor";
import Time from "./Time";
import HTMLPreview from "./HTMLPreview";
import Alert from "./Alert";
import JSONField from "./JSONField";
import Comments from "./Comments";
import Email from "./Email";
import Spinner from "./Spinner";
import {
Graph,
GraphAxis,
GraphIndicator,
GraphIndicatorField,
GraphChart,
parseGraph,
GraphYAxis,
GraphXAxis,
} from "./Graph";
import type { GraphType, Operator } from "./Graph";
import * as graphProcessor from "./Graph/processor/graphProcessor";
import * as graphFieldUtils from "./Graph/processor/fieldUtils";
import type { YAxisOpts, MinMaxValues } from "./Graph/processor/graphProcessor";
export {
Avatar,
Char,
Selection,
Many2one,
Field,
Widget,
Form,
Tree,
NewLine,
Boolean,
One2many,
Integer,
Float,
FloatTime,
HTMLPreview,
Date,
DateTime,
SearchFilter,
Container,
ContainerWidget,
Text,
ProgressBar,
Notebook,
Group,
Page,
Label,
Separator,
Button,
ButtonGroup,
Reference,
Binary,
Image,
parseContext,
parseContextFields,
transformDomainForChildWidget,
parseDomainFields,
Timeline,
Indicator,
Dashboard,
DashboardItem,
Graph,
GraphAxis,
GraphYAxis,
GraphXAxis,
GraphIndicator,
GraphChart,
GraphType,
parseGraph,
Operator,
GraphIndicatorField,
graphProcessor,
graphFieldUtils,
Tags,
Tag,
MultiCheckbox,
Markdown,
Radio,
Switch,
Steps,
CodeEditor,
SearchFieldTypes,
Time,
Alert,
YAxisOpts,
MinMaxValues,
Comments,
JSONField,
Email,
Spinner,
};