-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathforms.py
229 lines (224 loc) · 4.52 KB
/
forms.py
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# flake8: noqa
# Can't use __all__ yet because of the wildcard imports and code generation
# Utils
from abstra_internals.interface.sdk.forms.other import (
execute_js,
get_query_params,
get_user,
redirect,
url_params,
)
from abstra_internals.interface.sdk.forms.reuse import reuse
# Buttons
from abstra_internals.entities.forms.template import (
Button,
NextButton,
BackButton,
)
# Widgets
from abstra_internals.interface.sdk.forms.list_item_schema import ListItemSchema
from abstra_internals.entities.forms.widgets.library import (
AppointmentInput,
CameraInput,
CardsInput,
CheckboxInput,
ChecklistInput,
CnpjInput,
CodeInput,
CpfInput,
CurrencyInput,
CustomInput,
DateInput,
DropdownInput,
EmailInput,
FileInput,
FileOutput,
HtmlOutput,
IframeOutput,
ImageInput,
ImageOutput,
LatexOutput,
LinkOutput,
ListInput,
MarkdownOutput,
MultipleChoiceInput,
NpsInput,
NumberInput,
NumberSliderInput,
PandasOutput,
PandasRowSelectionInput,
PasswordInput,
PhoneInput,
PlotlyOutput,
ProgressOutput,
RatingInput,
RichTextInput,
TagInput,
TextInput,
TextOutput,
TextareaInput,
TimeInput,
ToggleInput,
VideoInput,
)
from abstra_internals.interface.sdk.forms.form import Form, run
from abstra_internals.interface.sdk.forms.decorators import end_page_step
# Legacy
from abstra_internals.interface.sdk.forms.generated.inputs import (
read_appointment,
read_camera,
read_cards,
read_checkbox,
read_checklist,
read_cnpj,
read_code,
read_cpf,
read_currency,
read_custom,
read_date,
read_dropdown,
read_email,
read_file,
read_image,
read_list,
read_multiple_choice,
read_nps,
read_number,
read_number_slider,
read_pandas_row_selection,
read_password,
read_phone,
read_rating,
read_richtext,
read_tag,
read,
read_textarea,
read_time,
read_toggle,
read_video,
)
from abstra_internals.interface.sdk.forms.generated.outputs import (
display_file,
display_html,
display_iframe,
display_image,
display_latex,
display_link,
display_markdown,
display_pandas,
display_plotly,
display_progress,
display,
)
from abstra_internals.interface.sdk.forms.deprecated.page import Page
from abstra_internals.interface.sdk.forms.deprecated.reactive_func import reactive
from abstra_internals.interface.sdk.forms.deprecated.step import run_steps
__all__ = [
# Utils
"execute_js",
"get_query_params",
"get_user",
"redirect",
"url_params",
"reuse",
# Buttons
"Button",
"NextButton",
"BackButton",
# Widgets
"ListItemSchema",
"AppointmentInput",
"CameraInput",
"CardsInput",
"CheckboxInput",
"ChecklistInput",
"CnpjInput",
"CodeInput",
"CpfInput",
"CurrencyInput",
"CustomInput",
"DateInput",
"DropdownInput",
"EmailInput",
"FileInput",
"FileOutput",
"HtmlOutput",
"IframeOutput",
"ImageInput",
"ImageOutput",
"LatexOutput",
"LinkOutput",
"ListInput",
"MarkdownOutput",
"MultipleChoiceInput",
"NpsInput",
"NumberInput",
"NumberSliderInput",
"PandasOutput",
"PandasRowSelectionInput",
"PasswordInput",
"PhoneInput",
"PlotlyOutput",
"ProgressOutput",
"RatingInput",
"RichTextInput",
"TagInput",
"TextInput",
"TextOutput",
"TextareaInput",
"TimeInput",
"ToggleInput",
"VideoInput",
# Form
"Form",
"run",
"end_page_step",
# Input Functions
"read_appointment",
"read_camera",
"read_cards",
"read_checkbox",
"read_checklist",
"read_cnpj",
"read_code",
"read_cpf",
"read_currency",
"read_custom",
"read_date",
"read_dropdown",
"read_email",
"read_file",
"read_image",
"read_list",
"read_multiple_choice",
"read_nps",
"read_number",
"read_number_slider",
"read_pandas_row_selection",
"read_password",
"read_phone",
"read_rating",
"read_richtext",
"read_tag",
"read",
"read_textarea",
"read_time",
"read_toggle",
"read_video",
# Output Functions
"display_file",
"display_html",
"display_iframe",
"display_image",
"display_latex",
"display_link",
"display_markdown",
"display_pandas",
"display_plotly",
"display_progress",
"display",
# Legacy
"Page",
"reactive",
"run_steps",
]