pyfemtet 0.4.10__py3-none-any.whl → 0.4.11__py3-none-any.whl
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.
Potentially problematic release.
This version of pyfemtet might be problematic. Click here for more details.
- pyfemtet/__init__.py +1 -1
- pyfemtet/opt/_femopt.py +9 -3
- pyfemtet/opt/interface/_femtet.py +32 -10
- pyfemtet/opt/interface/_femtet_parametric.py +5 -25
- pyfemtet/opt/opt/_base.py +9 -1
- pyfemtet/opt/opt/_optuna.py +4 -0
- pyfemtet/opt/visualization/__init__.py +0 -7
- pyfemtet/opt/visualization/_create_wrapped_components.py +93 -0
- pyfemtet/opt/visualization/base.py +254 -0
- pyfemtet/opt/visualization/complex_components/__init__.py +0 -0
- pyfemtet/opt/visualization/complex_components/alert_region.py +71 -0
- pyfemtet/opt/visualization/complex_components/control_femtet.py +195 -0
- pyfemtet/opt/visualization/{_graphs.py → complex_components/main_figure_creator.py} +13 -49
- pyfemtet/opt/visualization/complex_components/main_graph.py +263 -0
- pyfemtet/opt/visualization/process_monitor/__init__.py +0 -0
- pyfemtet/opt/visualization/process_monitor/application.py +201 -0
- pyfemtet/opt/visualization/process_monitor/pages.py +276 -0
- pyfemtet/opt/visualization/result_viewer/.gitignore +1 -0
- pyfemtet/opt/visualization/result_viewer/__init__.py +0 -0
- pyfemtet/opt/visualization/result_viewer/application.py +44 -0
- pyfemtet/opt/visualization/result_viewer/pages.py +692 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/tutorial.csv +18 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14.log +81 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_heatflow.csv +28 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_heatflow_el.csv +22 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial1.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial1.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial10.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial10.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial11.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial11.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial12.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial12.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial13.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial13.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial14.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial14.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial15.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial15.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial2.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial2.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial3.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial3.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial4.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial4.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial5.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial5.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial6.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial6.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial7.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial7.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial8.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial8.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial9.jpg +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial9.pdt +0 -0
- pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.femprj +0 -0
- pyfemtet/opt/visualization/wrapped_components/__init__.py +0 -0
- pyfemtet/opt/visualization/wrapped_components/dbc.py +1518 -0
- pyfemtet/opt/visualization/wrapped_components/dcc.py +609 -0
- pyfemtet/opt/visualization/wrapped_components/html.py +3570 -0
- pyfemtet/opt/visualization/wrapped_components/str_enum.py +43 -0
- {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/METADATA +1 -1
- pyfemtet-0.4.11.dist-info/RECORD +136 -0
- {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/entry_points.txt +1 -1
- pyfemtet/opt/visualization/_monitor.py +0 -1227
- pyfemtet/opt/visualization/result_viewer.py +0 -13
- pyfemtet-0.4.10.dist-info/RECORD +0 -83
- {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/LICENSE +0 -0
- {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,609 @@
|
|
|
1
|
+
# auto created module
|
|
2
|
+
from pyfemtet.opt.visualization.wrapped_components.str_enum import StrEnum
|
|
3
|
+
# from enum import StrEnum
|
|
4
|
+
import dash
|
|
5
|
+
import dash_bootstrap_components
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class Checklist(dash.dcc.Checklist):
|
|
9
|
+
def _dummy(self):
|
|
10
|
+
# noinspection PyAttributeOutsideInit
|
|
11
|
+
self.id = None
|
|
12
|
+
|
|
13
|
+
class Prop(StrEnum):
|
|
14
|
+
options = "options"
|
|
15
|
+
value = "value"
|
|
16
|
+
inline = "inline"
|
|
17
|
+
className = "className"
|
|
18
|
+
style = "style"
|
|
19
|
+
inputStyle = "inputStyle"
|
|
20
|
+
inputClassName = "inputClassName"
|
|
21
|
+
labelStyle = "labelStyle"
|
|
22
|
+
labelClassName = "labelClassName"
|
|
23
|
+
id = "id"
|
|
24
|
+
loading_state = "loading_state"
|
|
25
|
+
persistence = "persistence"
|
|
26
|
+
persisted_props = "persisted_props"
|
|
27
|
+
persistence_type = "persistence_type"
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
class Clipboard(dash.dcc.Clipboard):
|
|
31
|
+
def _dummy(self):
|
|
32
|
+
# noinspection PyAttributeOutsideInit
|
|
33
|
+
self.id = None
|
|
34
|
+
|
|
35
|
+
class Prop(StrEnum):
|
|
36
|
+
id = "id"
|
|
37
|
+
target_id = "target_id"
|
|
38
|
+
content = "content"
|
|
39
|
+
n_clicks = "n_clicks"
|
|
40
|
+
html_content = "html_content"
|
|
41
|
+
title = "title"
|
|
42
|
+
style = "style"
|
|
43
|
+
className = "className"
|
|
44
|
+
loading_state = "loading_state"
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class ConfirmDialog(dash.dcc.ConfirmDialog):
|
|
48
|
+
def _dummy(self):
|
|
49
|
+
# noinspection PyAttributeOutsideInit
|
|
50
|
+
self.id = None
|
|
51
|
+
|
|
52
|
+
class Prop(StrEnum):
|
|
53
|
+
id = "id"
|
|
54
|
+
message = "message"
|
|
55
|
+
submit_n_clicks = "submit_n_clicks"
|
|
56
|
+
submit_n_clicks_timestamp = "submit_n_clicks_timestamp"
|
|
57
|
+
cancel_n_clicks = "cancel_n_clicks"
|
|
58
|
+
cancel_n_clicks_timestamp = "cancel_n_clicks_timestamp"
|
|
59
|
+
displayed = "displayed"
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
class ConfirmDialogProvider(dash.dcc.ConfirmDialogProvider):
|
|
63
|
+
def _dummy(self):
|
|
64
|
+
# noinspection PyAttributeOutsideInit
|
|
65
|
+
self.id = None
|
|
66
|
+
|
|
67
|
+
class Prop(StrEnum):
|
|
68
|
+
children = "children"
|
|
69
|
+
id = "id"
|
|
70
|
+
message = "message"
|
|
71
|
+
submit_n_clicks = "submit_n_clicks"
|
|
72
|
+
submit_n_clicks_timestamp = "submit_n_clicks_timestamp"
|
|
73
|
+
cancel_n_clicks = "cancel_n_clicks"
|
|
74
|
+
cancel_n_clicks_timestamp = "cancel_n_clicks_timestamp"
|
|
75
|
+
displayed = "displayed"
|
|
76
|
+
loading_state = "loading_state"
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
class DatePickerRange(dash.dcc.DatePickerRange):
|
|
80
|
+
def _dummy(self):
|
|
81
|
+
# noinspection PyAttributeOutsideInit
|
|
82
|
+
self.id = None
|
|
83
|
+
|
|
84
|
+
class Prop(StrEnum):
|
|
85
|
+
start_date = "start_date"
|
|
86
|
+
end_date = "end_date"
|
|
87
|
+
min_date_allowed = "min_date_allowed"
|
|
88
|
+
max_date_allowed = "max_date_allowed"
|
|
89
|
+
disabled_days = "disabled_days"
|
|
90
|
+
minimum_nights = "minimum_nights"
|
|
91
|
+
updatemode = "updatemode"
|
|
92
|
+
start_date_placeholder_text = "start_date_placeholder_text"
|
|
93
|
+
end_date_placeholder_text = "end_date_placeholder_text"
|
|
94
|
+
initial_visible_month = "initial_visible_month"
|
|
95
|
+
clearable = "clearable"
|
|
96
|
+
reopen_calendar_on_clear = "reopen_calendar_on_clear"
|
|
97
|
+
display_format = "display_format"
|
|
98
|
+
month_format = "month_format"
|
|
99
|
+
first_day_of_week = "first_day_of_week"
|
|
100
|
+
show_outside_days = "show_outside_days"
|
|
101
|
+
stay_open_on_select = "stay_open_on_select"
|
|
102
|
+
calendar_orientation = "calendar_orientation"
|
|
103
|
+
number_of_months_shown = "number_of_months_shown"
|
|
104
|
+
with_portal = "with_portal"
|
|
105
|
+
with_full_screen_portal = "with_full_screen_portal"
|
|
106
|
+
day_size = "day_size"
|
|
107
|
+
is_RTL = "is_RTL"
|
|
108
|
+
disabled = "disabled"
|
|
109
|
+
start_date_id = "start_date_id"
|
|
110
|
+
end_date_id = "end_date_id"
|
|
111
|
+
style = "style"
|
|
112
|
+
className = "className"
|
|
113
|
+
id = "id"
|
|
114
|
+
loading_state = "loading_state"
|
|
115
|
+
persistence = "persistence"
|
|
116
|
+
persisted_props = "persisted_props"
|
|
117
|
+
persistence_type = "persistence_type"
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
class DatePickerSingle(dash.dcc.DatePickerSingle):
|
|
121
|
+
def _dummy(self):
|
|
122
|
+
# noinspection PyAttributeOutsideInit
|
|
123
|
+
self.id = None
|
|
124
|
+
|
|
125
|
+
class Prop(StrEnum):
|
|
126
|
+
date = "date"
|
|
127
|
+
min_date_allowed = "min_date_allowed"
|
|
128
|
+
max_date_allowed = "max_date_allowed"
|
|
129
|
+
disabled_days = "disabled_days"
|
|
130
|
+
placeholder = "placeholder"
|
|
131
|
+
initial_visible_month = "initial_visible_month"
|
|
132
|
+
clearable = "clearable"
|
|
133
|
+
reopen_calendar_on_clear = "reopen_calendar_on_clear"
|
|
134
|
+
display_format = "display_format"
|
|
135
|
+
month_format = "month_format"
|
|
136
|
+
first_day_of_week = "first_day_of_week"
|
|
137
|
+
show_outside_days = "show_outside_days"
|
|
138
|
+
stay_open_on_select = "stay_open_on_select"
|
|
139
|
+
calendar_orientation = "calendar_orientation"
|
|
140
|
+
number_of_months_shown = "number_of_months_shown"
|
|
141
|
+
with_portal = "with_portal"
|
|
142
|
+
with_full_screen_portal = "with_full_screen_portal"
|
|
143
|
+
day_size = "day_size"
|
|
144
|
+
is_RTL = "is_RTL"
|
|
145
|
+
disabled = "disabled"
|
|
146
|
+
style = "style"
|
|
147
|
+
className = "className"
|
|
148
|
+
id = "id"
|
|
149
|
+
loading_state = "loading_state"
|
|
150
|
+
persistence = "persistence"
|
|
151
|
+
persisted_props = "persisted_props"
|
|
152
|
+
persistence_type = "persistence_type"
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
class Download(dash.dcc.Download):
|
|
156
|
+
def _dummy(self):
|
|
157
|
+
# noinspection PyAttributeOutsideInit
|
|
158
|
+
self.id = None
|
|
159
|
+
|
|
160
|
+
class Prop(StrEnum):
|
|
161
|
+
id = "id"
|
|
162
|
+
data = "data"
|
|
163
|
+
base64 = "base64"
|
|
164
|
+
type = "type"
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
class Dropdown(dash.dcc.Dropdown):
|
|
168
|
+
def _dummy(self):
|
|
169
|
+
# noinspection PyAttributeOutsideInit
|
|
170
|
+
self.id = None
|
|
171
|
+
|
|
172
|
+
class Prop(StrEnum):
|
|
173
|
+
options = "options"
|
|
174
|
+
value = "value"
|
|
175
|
+
multi = "multi"
|
|
176
|
+
clearable = "clearable"
|
|
177
|
+
searchable = "searchable"
|
|
178
|
+
search_value = "search_value"
|
|
179
|
+
placeholder = "placeholder"
|
|
180
|
+
disabled = "disabled"
|
|
181
|
+
optionHeight = "optionHeight"
|
|
182
|
+
maxHeight = "maxHeight"
|
|
183
|
+
style = "style"
|
|
184
|
+
className = "className"
|
|
185
|
+
id = "id"
|
|
186
|
+
loading_state = "loading_state"
|
|
187
|
+
persistence = "persistence"
|
|
188
|
+
persisted_props = "persisted_props"
|
|
189
|
+
persistence_type = "persistence_type"
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
class Geolocation(dash.dcc.Geolocation):
|
|
193
|
+
def _dummy(self):
|
|
194
|
+
# noinspection PyAttributeOutsideInit
|
|
195
|
+
self.id = None
|
|
196
|
+
|
|
197
|
+
class Prop(StrEnum):
|
|
198
|
+
id = "id"
|
|
199
|
+
local_date = "local_date"
|
|
200
|
+
timestamp = "timestamp"
|
|
201
|
+
position = "position"
|
|
202
|
+
position_error = "position_error"
|
|
203
|
+
show_alert = "show_alert"
|
|
204
|
+
update_now = "update_now"
|
|
205
|
+
high_accuracy = "high_accuracy"
|
|
206
|
+
maximum_age = "maximum_age"
|
|
207
|
+
timeout = "timeout"
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
class Graph(dash.dcc.Graph):
|
|
211
|
+
def _dummy(self):
|
|
212
|
+
# noinspection PyAttributeOutsideInit
|
|
213
|
+
self.id = None
|
|
214
|
+
|
|
215
|
+
class Prop(StrEnum):
|
|
216
|
+
id = "id"
|
|
217
|
+
responsive = "responsive"
|
|
218
|
+
clickData = "clickData"
|
|
219
|
+
clickAnnotationData = "clickAnnotationData"
|
|
220
|
+
hoverData = "hoverData"
|
|
221
|
+
clear_on_unhover = "clear_on_unhover"
|
|
222
|
+
selectedData = "selectedData"
|
|
223
|
+
relayoutData = "relayoutData"
|
|
224
|
+
extendData = "extendData"
|
|
225
|
+
prependData = "prependData"
|
|
226
|
+
restyleData = "restyleData"
|
|
227
|
+
figure = "figure"
|
|
228
|
+
style = "style"
|
|
229
|
+
className = "className"
|
|
230
|
+
mathjax = "mathjax"
|
|
231
|
+
animate = "animate"
|
|
232
|
+
animation_options = "animation_options"
|
|
233
|
+
config = "config"
|
|
234
|
+
loading_state = "loading_state"
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
class Input(dash.dcc.Input):
|
|
238
|
+
def _dummy(self):
|
|
239
|
+
# noinspection PyAttributeOutsideInit
|
|
240
|
+
self.id = None
|
|
241
|
+
|
|
242
|
+
class Prop(StrEnum):
|
|
243
|
+
value = "value"
|
|
244
|
+
type = "type"
|
|
245
|
+
debounce = "debounce"
|
|
246
|
+
placeholder = "placeholder"
|
|
247
|
+
n_submit = "n_submit"
|
|
248
|
+
n_submit_timestamp = "n_submit_timestamp"
|
|
249
|
+
inputMode = "inputMode"
|
|
250
|
+
autoComplete = "autoComplete"
|
|
251
|
+
readOnly = "readOnly"
|
|
252
|
+
required = "required"
|
|
253
|
+
autoFocus = "autoFocus"
|
|
254
|
+
disabled = "disabled"
|
|
255
|
+
list = "list"
|
|
256
|
+
multiple = "multiple"
|
|
257
|
+
spellCheck = "spellCheck"
|
|
258
|
+
name = "name"
|
|
259
|
+
min = "min"
|
|
260
|
+
max = "max"
|
|
261
|
+
step = "step"
|
|
262
|
+
minLength = "minLength"
|
|
263
|
+
maxLength = "maxLength"
|
|
264
|
+
pattern = "pattern"
|
|
265
|
+
selectionStart = "selectionStart"
|
|
266
|
+
selectionEnd = "selectionEnd"
|
|
267
|
+
selectionDirection = "selectionDirection"
|
|
268
|
+
n_blur = "n_blur"
|
|
269
|
+
n_blur_timestamp = "n_blur_timestamp"
|
|
270
|
+
size = "size"
|
|
271
|
+
style = "style"
|
|
272
|
+
className = "className"
|
|
273
|
+
id = "id"
|
|
274
|
+
loading_state = "loading_state"
|
|
275
|
+
persistence = "persistence"
|
|
276
|
+
persisted_props = "persisted_props"
|
|
277
|
+
persistence_type = "persistence_type"
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
class Interval(dash.dcc.Interval):
|
|
281
|
+
def _dummy(self):
|
|
282
|
+
# noinspection PyAttributeOutsideInit
|
|
283
|
+
self.id = None
|
|
284
|
+
|
|
285
|
+
class Prop(StrEnum):
|
|
286
|
+
id = "id"
|
|
287
|
+
interval = "interval"
|
|
288
|
+
disabled = "disabled"
|
|
289
|
+
n_intervals = "n_intervals"
|
|
290
|
+
max_intervals = "max_intervals"
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class Link(dash.dcc.Link):
|
|
294
|
+
def _dummy(self):
|
|
295
|
+
# noinspection PyAttributeOutsideInit
|
|
296
|
+
self.id = None
|
|
297
|
+
|
|
298
|
+
class Prop(StrEnum):
|
|
299
|
+
children = "children"
|
|
300
|
+
href = "href"
|
|
301
|
+
target = "target"
|
|
302
|
+
refresh = "refresh"
|
|
303
|
+
title = "title"
|
|
304
|
+
className = "className"
|
|
305
|
+
style = "style"
|
|
306
|
+
id = "id"
|
|
307
|
+
loading_state = "loading_state"
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class Loading(dash.dcc.Loading):
|
|
311
|
+
def _dummy(self):
|
|
312
|
+
# noinspection PyAttributeOutsideInit
|
|
313
|
+
self.id = None
|
|
314
|
+
|
|
315
|
+
class Prop(StrEnum):
|
|
316
|
+
children = "children"
|
|
317
|
+
id = "id"
|
|
318
|
+
type = "type"
|
|
319
|
+
fullscreen = "fullscreen"
|
|
320
|
+
debug = "debug"
|
|
321
|
+
className = "className"
|
|
322
|
+
parent_className = "parent_className"
|
|
323
|
+
style = "style"
|
|
324
|
+
parent_style = "parent_style"
|
|
325
|
+
overlay_style = "overlay_style"
|
|
326
|
+
color = "color"
|
|
327
|
+
loading_state = "loading_state"
|
|
328
|
+
display = "display"
|
|
329
|
+
delay_hide = "delay_hide"
|
|
330
|
+
delay_show = "delay_show"
|
|
331
|
+
show_initially = "show_initially"
|
|
332
|
+
target_components = "target_components"
|
|
333
|
+
custom_spinner = "custom_spinner"
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class Location(dash.dcc.Location):
|
|
337
|
+
def _dummy(self):
|
|
338
|
+
# noinspection PyAttributeOutsideInit
|
|
339
|
+
self.id = None
|
|
340
|
+
|
|
341
|
+
class Prop(StrEnum):
|
|
342
|
+
id = "id"
|
|
343
|
+
pathname = "pathname"
|
|
344
|
+
search = "search"
|
|
345
|
+
hash = "hash"
|
|
346
|
+
href = "href"
|
|
347
|
+
refresh = "refresh"
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class LogoutButton(dash.dcc.LogoutButton):
|
|
351
|
+
def _dummy(self):
|
|
352
|
+
# noinspection PyAttributeOutsideInit
|
|
353
|
+
self.id = None
|
|
354
|
+
|
|
355
|
+
class Prop(StrEnum):
|
|
356
|
+
id = "id"
|
|
357
|
+
label = "label"
|
|
358
|
+
logout_url = "logout_url"
|
|
359
|
+
style = "style"
|
|
360
|
+
method = "method"
|
|
361
|
+
className = "className"
|
|
362
|
+
loading_state = "loading_state"
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
class Markdown(dash.dcc.Markdown):
|
|
366
|
+
def _dummy(self):
|
|
367
|
+
# noinspection PyAttributeOutsideInit
|
|
368
|
+
self.id = None
|
|
369
|
+
|
|
370
|
+
class Prop(StrEnum):
|
|
371
|
+
children = "children"
|
|
372
|
+
id = "id"
|
|
373
|
+
className = "className"
|
|
374
|
+
mathjax = "mathjax"
|
|
375
|
+
dangerously_allow_html = "dangerously_allow_html"
|
|
376
|
+
link_target = "link_target"
|
|
377
|
+
dedent = "dedent"
|
|
378
|
+
highlight_config = "highlight_config"
|
|
379
|
+
loading_state = "loading_state"
|
|
380
|
+
style = "style"
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
class RadioItems(dash.dcc.RadioItems):
|
|
384
|
+
def _dummy(self):
|
|
385
|
+
# noinspection PyAttributeOutsideInit
|
|
386
|
+
self.id = None
|
|
387
|
+
|
|
388
|
+
class Prop(StrEnum):
|
|
389
|
+
options = "options"
|
|
390
|
+
value = "value"
|
|
391
|
+
inline = "inline"
|
|
392
|
+
style = "style"
|
|
393
|
+
className = "className"
|
|
394
|
+
inputStyle = "inputStyle"
|
|
395
|
+
inputClassName = "inputClassName"
|
|
396
|
+
labelStyle = "labelStyle"
|
|
397
|
+
labelClassName = "labelClassName"
|
|
398
|
+
id = "id"
|
|
399
|
+
loading_state = "loading_state"
|
|
400
|
+
persistence = "persistence"
|
|
401
|
+
persisted_props = "persisted_props"
|
|
402
|
+
persistence_type = "persistence_type"
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
class RangeSlider(dash.dcc.RangeSlider):
|
|
406
|
+
def _dummy(self):
|
|
407
|
+
# noinspection PyAttributeOutsideInit
|
|
408
|
+
self.id = None
|
|
409
|
+
|
|
410
|
+
class Prop(StrEnum):
|
|
411
|
+
min = "min"
|
|
412
|
+
max = "max"
|
|
413
|
+
step = "step"
|
|
414
|
+
marks = "marks"
|
|
415
|
+
value = "value"
|
|
416
|
+
drag_value = "drag_value"
|
|
417
|
+
allowCross = "allowCross"
|
|
418
|
+
pushable = "pushable"
|
|
419
|
+
disabled = "disabled"
|
|
420
|
+
count = "count"
|
|
421
|
+
dots = "dots"
|
|
422
|
+
included = "included"
|
|
423
|
+
tooltip = "tooltip"
|
|
424
|
+
updatemode = "updatemode"
|
|
425
|
+
vertical = "vertical"
|
|
426
|
+
verticalHeight = "verticalHeight"
|
|
427
|
+
className = "className"
|
|
428
|
+
id = "id"
|
|
429
|
+
loading_state = "loading_state"
|
|
430
|
+
persistence = "persistence"
|
|
431
|
+
persisted_props = "persisted_props"
|
|
432
|
+
persistence_type = "persistence_type"
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
class Slider(dash.dcc.Slider):
|
|
436
|
+
def _dummy(self):
|
|
437
|
+
# noinspection PyAttributeOutsideInit
|
|
438
|
+
self.id = None
|
|
439
|
+
|
|
440
|
+
class Prop(StrEnum):
|
|
441
|
+
min = "min"
|
|
442
|
+
max = "max"
|
|
443
|
+
step = "step"
|
|
444
|
+
marks = "marks"
|
|
445
|
+
value = "value"
|
|
446
|
+
drag_value = "drag_value"
|
|
447
|
+
disabled = "disabled"
|
|
448
|
+
dots = "dots"
|
|
449
|
+
included = "included"
|
|
450
|
+
tooltip = "tooltip"
|
|
451
|
+
updatemode = "updatemode"
|
|
452
|
+
vertical = "vertical"
|
|
453
|
+
verticalHeight = "verticalHeight"
|
|
454
|
+
className = "className"
|
|
455
|
+
id = "id"
|
|
456
|
+
loading_state = "loading_state"
|
|
457
|
+
persistence = "persistence"
|
|
458
|
+
persisted_props = "persisted_props"
|
|
459
|
+
persistence_type = "persistence_type"
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
class Store(dash.dcc.Store):
|
|
463
|
+
def _dummy(self):
|
|
464
|
+
# noinspection PyAttributeOutsideInit
|
|
465
|
+
self.id = None
|
|
466
|
+
|
|
467
|
+
class Prop(StrEnum):
|
|
468
|
+
id = "id"
|
|
469
|
+
storage_type = "storage_type"
|
|
470
|
+
data = "data"
|
|
471
|
+
clear_data = "clear_data"
|
|
472
|
+
modified_timestamp = "modified_timestamp"
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
class Tab(dash.dcc.Tab):
|
|
476
|
+
def _dummy(self):
|
|
477
|
+
# noinspection PyAttributeOutsideInit
|
|
478
|
+
self.id = None
|
|
479
|
+
|
|
480
|
+
class Prop(StrEnum):
|
|
481
|
+
children = "children"
|
|
482
|
+
id = "id"
|
|
483
|
+
label = "label"
|
|
484
|
+
value = "value"
|
|
485
|
+
disabled = "disabled"
|
|
486
|
+
disabled_style = "disabled_style"
|
|
487
|
+
disabled_className = "disabled_className"
|
|
488
|
+
className = "className"
|
|
489
|
+
selected_className = "selected_className"
|
|
490
|
+
style = "style"
|
|
491
|
+
selected_style = "selected_style"
|
|
492
|
+
loading_state = "loading_state"
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
class Tabs(dash.dcc.Tabs):
|
|
496
|
+
def _dummy(self):
|
|
497
|
+
# noinspection PyAttributeOutsideInit
|
|
498
|
+
self.id = None
|
|
499
|
+
|
|
500
|
+
class Prop(StrEnum):
|
|
501
|
+
children = "children"
|
|
502
|
+
id = "id"
|
|
503
|
+
value = "value"
|
|
504
|
+
className = "className"
|
|
505
|
+
content_className = "content_className"
|
|
506
|
+
parent_className = "parent_className"
|
|
507
|
+
style = "style"
|
|
508
|
+
parent_style = "parent_style"
|
|
509
|
+
content_style = "content_style"
|
|
510
|
+
vertical = "vertical"
|
|
511
|
+
mobile_breakpoint = "mobile_breakpoint"
|
|
512
|
+
colors = "colors"
|
|
513
|
+
loading_state = "loading_state"
|
|
514
|
+
persistence = "persistence"
|
|
515
|
+
persisted_props = "persisted_props"
|
|
516
|
+
persistence_type = "persistence_type"
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
class Textarea(dash.dcc.Textarea):
|
|
520
|
+
def _dummy(self):
|
|
521
|
+
# noinspection PyAttributeOutsideInit
|
|
522
|
+
self.id = None
|
|
523
|
+
|
|
524
|
+
class Prop(StrEnum):
|
|
525
|
+
id = "id"
|
|
526
|
+
value = "value"
|
|
527
|
+
autoFocus = "autoFocus"
|
|
528
|
+
cols = "cols"
|
|
529
|
+
disabled = "disabled"
|
|
530
|
+
form = "form"
|
|
531
|
+
maxLength = "maxLength"
|
|
532
|
+
minLength = "minLength"
|
|
533
|
+
name = "name"
|
|
534
|
+
placeholder = "placeholder"
|
|
535
|
+
readOnly = "readOnly"
|
|
536
|
+
required = "required"
|
|
537
|
+
rows = "rows"
|
|
538
|
+
wrap = "wrap"
|
|
539
|
+
accessKey = "accessKey"
|
|
540
|
+
className = "className"
|
|
541
|
+
contentEditable = "contentEditable"
|
|
542
|
+
contextMenu = "contextMenu"
|
|
543
|
+
dir = "dir"
|
|
544
|
+
draggable = "draggable"
|
|
545
|
+
hidden = "hidden"
|
|
546
|
+
lang = "lang"
|
|
547
|
+
spellCheck = "spellCheck"
|
|
548
|
+
style = "style"
|
|
549
|
+
tabIndex = "tabIndex"
|
|
550
|
+
title = "title"
|
|
551
|
+
n_blur = "n_blur"
|
|
552
|
+
n_blur_timestamp = "n_blur_timestamp"
|
|
553
|
+
n_clicks = "n_clicks"
|
|
554
|
+
n_clicks_timestamp = "n_clicks_timestamp"
|
|
555
|
+
loading_state = "loading_state"
|
|
556
|
+
persistence = "persistence"
|
|
557
|
+
persisted_props = "persisted_props"
|
|
558
|
+
persistence_type = "persistence_type"
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
class Tooltip(dash.dcc.Tooltip):
|
|
562
|
+
def _dummy(self):
|
|
563
|
+
# noinspection PyAttributeOutsideInit
|
|
564
|
+
self.id = None
|
|
565
|
+
|
|
566
|
+
class Prop(StrEnum):
|
|
567
|
+
children = "children"
|
|
568
|
+
id = "id"
|
|
569
|
+
className = "className"
|
|
570
|
+
style = "style"
|
|
571
|
+
bbox = "bbox"
|
|
572
|
+
show = "show"
|
|
573
|
+
direction = "direction"
|
|
574
|
+
border_color = "border_color"
|
|
575
|
+
background_color = "background_color"
|
|
576
|
+
loading_text = "loading_text"
|
|
577
|
+
zindex = "zindex"
|
|
578
|
+
targetable = "targetable"
|
|
579
|
+
loading_state = "loading_state"
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
class Upload(dash.dcc.Upload):
|
|
583
|
+
def _dummy(self):
|
|
584
|
+
# noinspection PyAttributeOutsideInit
|
|
585
|
+
self.id = None
|
|
586
|
+
|
|
587
|
+
class Prop(StrEnum):
|
|
588
|
+
children = "children"
|
|
589
|
+
id = "id"
|
|
590
|
+
contents = "contents"
|
|
591
|
+
filename = "filename"
|
|
592
|
+
last_modified = "last_modified"
|
|
593
|
+
accept = "accept"
|
|
594
|
+
disabled = "disabled"
|
|
595
|
+
disable_click = "disable_click"
|
|
596
|
+
max_size = "max_size"
|
|
597
|
+
min_size = "min_size"
|
|
598
|
+
multiple = "multiple"
|
|
599
|
+
className = "className"
|
|
600
|
+
className_active = "className_active"
|
|
601
|
+
className_reject = "className_reject"
|
|
602
|
+
className_disabled = "className_disabled"
|
|
603
|
+
style = "style"
|
|
604
|
+
style_active = "style_active"
|
|
605
|
+
style_reject = "style_reject"
|
|
606
|
+
style_disabled = "style_disabled"
|
|
607
|
+
loading_state = "loading_state"
|
|
608
|
+
|
|
609
|
+
|