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.

Files changed (71) hide show
  1. pyfemtet/__init__.py +1 -1
  2. pyfemtet/opt/_femopt.py +9 -3
  3. pyfemtet/opt/interface/_femtet.py +32 -10
  4. pyfemtet/opt/interface/_femtet_parametric.py +5 -25
  5. pyfemtet/opt/opt/_base.py +9 -1
  6. pyfemtet/opt/opt/_optuna.py +4 -0
  7. pyfemtet/opt/visualization/__init__.py +0 -7
  8. pyfemtet/opt/visualization/_create_wrapped_components.py +93 -0
  9. pyfemtet/opt/visualization/base.py +254 -0
  10. pyfemtet/opt/visualization/complex_components/__init__.py +0 -0
  11. pyfemtet/opt/visualization/complex_components/alert_region.py +71 -0
  12. pyfemtet/opt/visualization/complex_components/control_femtet.py +195 -0
  13. pyfemtet/opt/visualization/{_graphs.py → complex_components/main_figure_creator.py} +13 -49
  14. pyfemtet/opt/visualization/complex_components/main_graph.py +263 -0
  15. pyfemtet/opt/visualization/process_monitor/__init__.py +0 -0
  16. pyfemtet/opt/visualization/process_monitor/application.py +201 -0
  17. pyfemtet/opt/visualization/process_monitor/pages.py +276 -0
  18. pyfemtet/opt/visualization/result_viewer/.gitignore +1 -0
  19. pyfemtet/opt/visualization/result_viewer/__init__.py +0 -0
  20. pyfemtet/opt/visualization/result_viewer/application.py +44 -0
  21. pyfemtet/opt/visualization/result_viewer/pages.py +692 -0
  22. pyfemtet/opt/visualization/result_viewer/tutorial/tutorial.csv +18 -0
  23. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14.jpg +0 -0
  24. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14.log +81 -0
  25. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14.pdt +0 -0
  26. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_heatflow.csv +28 -0
  27. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_heatflow_el.csv +22 -0
  28. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial1.jpg +0 -0
  29. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial1.pdt +0 -0
  30. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial10.jpg +0 -0
  31. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial10.pdt +0 -0
  32. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial11.jpg +0 -0
  33. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial11.pdt +0 -0
  34. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial12.jpg +0 -0
  35. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial12.pdt +0 -0
  36. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial13.jpg +0 -0
  37. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial13.pdt +0 -0
  38. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial14.jpg +0 -0
  39. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial14.pdt +0 -0
  40. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial15.jpg +0 -0
  41. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial15.pdt +0 -0
  42. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial2.jpg +0 -0
  43. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial2.pdt +0 -0
  44. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial3.jpg +0 -0
  45. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial3.pdt +0 -0
  46. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial4.jpg +0 -0
  47. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial4.pdt +0 -0
  48. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial5.jpg +0 -0
  49. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial5.pdt +0 -0
  50. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial6.jpg +0 -0
  51. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial6.pdt +0 -0
  52. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial7.jpg +0 -0
  53. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial7.pdt +0 -0
  54. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial8.jpg +0 -0
  55. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial8.pdt +0 -0
  56. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial9.jpg +0 -0
  57. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.Results/Ex14_trial9.pdt +0 -0
  58. pyfemtet/opt/visualization/result_viewer/tutorial/wat_ex14_parametric.femprj +0 -0
  59. pyfemtet/opt/visualization/wrapped_components/__init__.py +0 -0
  60. pyfemtet/opt/visualization/wrapped_components/dbc.py +1518 -0
  61. pyfemtet/opt/visualization/wrapped_components/dcc.py +609 -0
  62. pyfemtet/opt/visualization/wrapped_components/html.py +3570 -0
  63. pyfemtet/opt/visualization/wrapped_components/str_enum.py +43 -0
  64. {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/METADATA +1 -1
  65. pyfemtet-0.4.11.dist-info/RECORD +136 -0
  66. {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/entry_points.txt +1 -1
  67. pyfemtet/opt/visualization/_monitor.py +0 -1227
  68. pyfemtet/opt/visualization/result_viewer.py +0 -13
  69. pyfemtet-0.4.10.dist-info/RECORD +0 -83
  70. {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/LICENSE +0 -0
  71. {pyfemtet-0.4.10.dist-info → pyfemtet-0.4.11.dist-info}/WHEEL +0 -0
@@ -0,0 +1,3570 @@
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 A(dash.html.A):
9
+ def _dummy(self):
10
+ # noinspection PyAttributeOutsideInit
11
+ self.id = None
12
+
13
+ class Prop(StrEnum):
14
+ children = "children"
15
+ id = "id"
16
+ n_clicks = "n_clicks"
17
+ n_clicks_timestamp = "n_clicks_timestamp"
18
+ disable_n_clicks = "disable_n_clicks"
19
+ key = "key"
20
+ download = "download"
21
+ href = "href"
22
+ hrefLang = "hrefLang"
23
+ media = "media"
24
+ referrerPolicy = "referrerPolicy"
25
+ rel = "rel"
26
+ shape = "shape"
27
+ target = "target"
28
+ accessKey = "accessKey"
29
+ className = "className"
30
+ contentEditable = "contentEditable"
31
+ dir = "dir"
32
+ draggable = "draggable"
33
+ hidden = "hidden"
34
+ lang = "lang"
35
+ role = "role"
36
+ spellCheck = "spellCheck"
37
+ style = "style"
38
+ tabIndex = "tabIndex"
39
+ title = "title"
40
+ loading_state = "loading_state"
41
+
42
+
43
+ class Abbr(dash.html.Abbr):
44
+ def _dummy(self):
45
+ # noinspection PyAttributeOutsideInit
46
+ self.id = None
47
+
48
+ class Prop(StrEnum):
49
+ children = "children"
50
+ id = "id"
51
+ n_clicks = "n_clicks"
52
+ n_clicks_timestamp = "n_clicks_timestamp"
53
+ disable_n_clicks = "disable_n_clicks"
54
+ key = "key"
55
+ accessKey = "accessKey"
56
+ className = "className"
57
+ contentEditable = "contentEditable"
58
+ dir = "dir"
59
+ draggable = "draggable"
60
+ hidden = "hidden"
61
+ lang = "lang"
62
+ role = "role"
63
+ spellCheck = "spellCheck"
64
+ style = "style"
65
+ tabIndex = "tabIndex"
66
+ title = "title"
67
+ loading_state = "loading_state"
68
+
69
+
70
+ class Acronym(dash.html.Acronym):
71
+ def _dummy(self):
72
+ # noinspection PyAttributeOutsideInit
73
+ self.id = None
74
+
75
+ class Prop(StrEnum):
76
+ children = "children"
77
+ id = "id"
78
+ n_clicks = "n_clicks"
79
+ n_clicks_timestamp = "n_clicks_timestamp"
80
+ disable_n_clicks = "disable_n_clicks"
81
+ key = "key"
82
+ accessKey = "accessKey"
83
+ className = "className"
84
+ contentEditable = "contentEditable"
85
+ dir = "dir"
86
+ draggable = "draggable"
87
+ hidden = "hidden"
88
+ lang = "lang"
89
+ role = "role"
90
+ spellCheck = "spellCheck"
91
+ style = "style"
92
+ tabIndex = "tabIndex"
93
+ title = "title"
94
+ loading_state = "loading_state"
95
+
96
+
97
+ class Address(dash.html.Address):
98
+ def _dummy(self):
99
+ # noinspection PyAttributeOutsideInit
100
+ self.id = None
101
+
102
+ class Prop(StrEnum):
103
+ children = "children"
104
+ id = "id"
105
+ n_clicks = "n_clicks"
106
+ n_clicks_timestamp = "n_clicks_timestamp"
107
+ disable_n_clicks = "disable_n_clicks"
108
+ key = "key"
109
+ accessKey = "accessKey"
110
+ className = "className"
111
+ contentEditable = "contentEditable"
112
+ dir = "dir"
113
+ draggable = "draggable"
114
+ hidden = "hidden"
115
+ lang = "lang"
116
+ role = "role"
117
+ spellCheck = "spellCheck"
118
+ style = "style"
119
+ tabIndex = "tabIndex"
120
+ title = "title"
121
+ loading_state = "loading_state"
122
+
123
+
124
+ class Area(dash.html.Area):
125
+ def _dummy(self):
126
+ # noinspection PyAttributeOutsideInit
127
+ self.id = None
128
+
129
+ class Prop(StrEnum):
130
+ children = "children"
131
+ id = "id"
132
+ n_clicks = "n_clicks"
133
+ n_clicks_timestamp = "n_clicks_timestamp"
134
+ disable_n_clicks = "disable_n_clicks"
135
+ key = "key"
136
+ alt = "alt"
137
+ coords = "coords"
138
+ download = "download"
139
+ href = "href"
140
+ media = "media"
141
+ referrerPolicy = "referrerPolicy"
142
+ rel = "rel"
143
+ shape = "shape"
144
+ target = "target"
145
+ accessKey = "accessKey"
146
+ className = "className"
147
+ contentEditable = "contentEditable"
148
+ dir = "dir"
149
+ draggable = "draggable"
150
+ hidden = "hidden"
151
+ lang = "lang"
152
+ role = "role"
153
+ spellCheck = "spellCheck"
154
+ style = "style"
155
+ tabIndex = "tabIndex"
156
+ title = "title"
157
+ loading_state = "loading_state"
158
+
159
+
160
+ class Article(dash.html.Article):
161
+ def _dummy(self):
162
+ # noinspection PyAttributeOutsideInit
163
+ self.id = None
164
+
165
+ class Prop(StrEnum):
166
+ children = "children"
167
+ id = "id"
168
+ n_clicks = "n_clicks"
169
+ n_clicks_timestamp = "n_clicks_timestamp"
170
+ disable_n_clicks = "disable_n_clicks"
171
+ key = "key"
172
+ accessKey = "accessKey"
173
+ className = "className"
174
+ contentEditable = "contentEditable"
175
+ dir = "dir"
176
+ draggable = "draggable"
177
+ hidden = "hidden"
178
+ lang = "lang"
179
+ role = "role"
180
+ spellCheck = "spellCheck"
181
+ style = "style"
182
+ tabIndex = "tabIndex"
183
+ title = "title"
184
+ loading_state = "loading_state"
185
+
186
+
187
+ class Aside(dash.html.Aside):
188
+ def _dummy(self):
189
+ # noinspection PyAttributeOutsideInit
190
+ self.id = None
191
+
192
+ class Prop(StrEnum):
193
+ children = "children"
194
+ id = "id"
195
+ n_clicks = "n_clicks"
196
+ n_clicks_timestamp = "n_clicks_timestamp"
197
+ disable_n_clicks = "disable_n_clicks"
198
+ key = "key"
199
+ accessKey = "accessKey"
200
+ className = "className"
201
+ contentEditable = "contentEditable"
202
+ dir = "dir"
203
+ draggable = "draggable"
204
+ hidden = "hidden"
205
+ lang = "lang"
206
+ role = "role"
207
+ spellCheck = "spellCheck"
208
+ style = "style"
209
+ tabIndex = "tabIndex"
210
+ title = "title"
211
+ loading_state = "loading_state"
212
+
213
+
214
+ class Audio(dash.html.Audio):
215
+ def _dummy(self):
216
+ # noinspection PyAttributeOutsideInit
217
+ self.id = None
218
+
219
+ class Prop(StrEnum):
220
+ children = "children"
221
+ id = "id"
222
+ n_clicks = "n_clicks"
223
+ n_clicks_timestamp = "n_clicks_timestamp"
224
+ disable_n_clicks = "disable_n_clicks"
225
+ key = "key"
226
+ autoPlay = "autoPlay"
227
+ controls = "controls"
228
+ crossOrigin = "crossOrigin"
229
+ loop = "loop"
230
+ muted = "muted"
231
+ preload = "preload"
232
+ src = "src"
233
+ accessKey = "accessKey"
234
+ className = "className"
235
+ contentEditable = "contentEditable"
236
+ dir = "dir"
237
+ draggable = "draggable"
238
+ hidden = "hidden"
239
+ lang = "lang"
240
+ role = "role"
241
+ spellCheck = "spellCheck"
242
+ style = "style"
243
+ tabIndex = "tabIndex"
244
+ title = "title"
245
+ loading_state = "loading_state"
246
+
247
+
248
+ class B(dash.html.B):
249
+ def _dummy(self):
250
+ # noinspection PyAttributeOutsideInit
251
+ self.id = None
252
+
253
+ class Prop(StrEnum):
254
+ children = "children"
255
+ id = "id"
256
+ n_clicks = "n_clicks"
257
+ n_clicks_timestamp = "n_clicks_timestamp"
258
+ disable_n_clicks = "disable_n_clicks"
259
+ key = "key"
260
+ accessKey = "accessKey"
261
+ className = "className"
262
+ contentEditable = "contentEditable"
263
+ dir = "dir"
264
+ draggable = "draggable"
265
+ hidden = "hidden"
266
+ lang = "lang"
267
+ role = "role"
268
+ spellCheck = "spellCheck"
269
+ style = "style"
270
+ tabIndex = "tabIndex"
271
+ title = "title"
272
+ loading_state = "loading_state"
273
+
274
+
275
+ class Base(dash.html.Base):
276
+ def _dummy(self):
277
+ # noinspection PyAttributeOutsideInit
278
+ self.id = None
279
+
280
+ class Prop(StrEnum):
281
+ children = "children"
282
+ id = "id"
283
+ n_clicks = "n_clicks"
284
+ n_clicks_timestamp = "n_clicks_timestamp"
285
+ disable_n_clicks = "disable_n_clicks"
286
+ key = "key"
287
+ href = "href"
288
+ target = "target"
289
+ accessKey = "accessKey"
290
+ className = "className"
291
+ contentEditable = "contentEditable"
292
+ dir = "dir"
293
+ draggable = "draggable"
294
+ hidden = "hidden"
295
+ lang = "lang"
296
+ role = "role"
297
+ spellCheck = "spellCheck"
298
+ style = "style"
299
+ tabIndex = "tabIndex"
300
+ title = "title"
301
+ loading_state = "loading_state"
302
+
303
+
304
+ class Basefont(dash.html.Basefont):
305
+ def _dummy(self):
306
+ # noinspection PyAttributeOutsideInit
307
+ self.id = None
308
+
309
+ class Prop(StrEnum):
310
+ children = "children"
311
+ id = "id"
312
+ n_clicks = "n_clicks"
313
+ n_clicks_timestamp = "n_clicks_timestamp"
314
+ disable_n_clicks = "disable_n_clicks"
315
+ key = "key"
316
+ accessKey = "accessKey"
317
+ className = "className"
318
+ contentEditable = "contentEditable"
319
+ dir = "dir"
320
+ draggable = "draggable"
321
+ hidden = "hidden"
322
+ lang = "lang"
323
+ role = "role"
324
+ spellCheck = "spellCheck"
325
+ style = "style"
326
+ tabIndex = "tabIndex"
327
+ title = "title"
328
+ loading_state = "loading_state"
329
+
330
+
331
+ class Bdi(dash.html.Bdi):
332
+ def _dummy(self):
333
+ # noinspection PyAttributeOutsideInit
334
+ self.id = None
335
+
336
+ class Prop(StrEnum):
337
+ children = "children"
338
+ id = "id"
339
+ n_clicks = "n_clicks"
340
+ n_clicks_timestamp = "n_clicks_timestamp"
341
+ disable_n_clicks = "disable_n_clicks"
342
+ key = "key"
343
+ accessKey = "accessKey"
344
+ className = "className"
345
+ contentEditable = "contentEditable"
346
+ dir = "dir"
347
+ draggable = "draggable"
348
+ hidden = "hidden"
349
+ lang = "lang"
350
+ role = "role"
351
+ spellCheck = "spellCheck"
352
+ style = "style"
353
+ tabIndex = "tabIndex"
354
+ title = "title"
355
+ loading_state = "loading_state"
356
+
357
+
358
+ class Bdo(dash.html.Bdo):
359
+ def _dummy(self):
360
+ # noinspection PyAttributeOutsideInit
361
+ self.id = None
362
+
363
+ class Prop(StrEnum):
364
+ children = "children"
365
+ id = "id"
366
+ n_clicks = "n_clicks"
367
+ n_clicks_timestamp = "n_clicks_timestamp"
368
+ disable_n_clicks = "disable_n_clicks"
369
+ key = "key"
370
+ accessKey = "accessKey"
371
+ className = "className"
372
+ contentEditable = "contentEditable"
373
+ dir = "dir"
374
+ draggable = "draggable"
375
+ hidden = "hidden"
376
+ lang = "lang"
377
+ role = "role"
378
+ spellCheck = "spellCheck"
379
+ style = "style"
380
+ tabIndex = "tabIndex"
381
+ title = "title"
382
+ loading_state = "loading_state"
383
+
384
+
385
+ class Big(dash.html.Big):
386
+ def _dummy(self):
387
+ # noinspection PyAttributeOutsideInit
388
+ self.id = None
389
+
390
+ class Prop(StrEnum):
391
+ children = "children"
392
+ id = "id"
393
+ n_clicks = "n_clicks"
394
+ n_clicks_timestamp = "n_clicks_timestamp"
395
+ disable_n_clicks = "disable_n_clicks"
396
+ key = "key"
397
+ accessKey = "accessKey"
398
+ className = "className"
399
+ contentEditable = "contentEditable"
400
+ dir = "dir"
401
+ draggable = "draggable"
402
+ hidden = "hidden"
403
+ lang = "lang"
404
+ role = "role"
405
+ spellCheck = "spellCheck"
406
+ style = "style"
407
+ tabIndex = "tabIndex"
408
+ title = "title"
409
+ loading_state = "loading_state"
410
+
411
+
412
+ class Blink(dash.html.Blink):
413
+ def _dummy(self):
414
+ # noinspection PyAttributeOutsideInit
415
+ self.id = None
416
+
417
+ class Prop(StrEnum):
418
+ children = "children"
419
+ id = "id"
420
+ n_clicks = "n_clicks"
421
+ n_clicks_timestamp = "n_clicks_timestamp"
422
+ disable_n_clicks = "disable_n_clicks"
423
+ key = "key"
424
+ accessKey = "accessKey"
425
+ className = "className"
426
+ contentEditable = "contentEditable"
427
+ dir = "dir"
428
+ draggable = "draggable"
429
+ hidden = "hidden"
430
+ lang = "lang"
431
+ role = "role"
432
+ spellCheck = "spellCheck"
433
+ style = "style"
434
+ tabIndex = "tabIndex"
435
+ title = "title"
436
+ loading_state = "loading_state"
437
+
438
+
439
+ class Blockquote(dash.html.Blockquote):
440
+ def _dummy(self):
441
+ # noinspection PyAttributeOutsideInit
442
+ self.id = None
443
+
444
+ class Prop(StrEnum):
445
+ children = "children"
446
+ id = "id"
447
+ n_clicks = "n_clicks"
448
+ n_clicks_timestamp = "n_clicks_timestamp"
449
+ disable_n_clicks = "disable_n_clicks"
450
+ key = "key"
451
+ cite = "cite"
452
+ accessKey = "accessKey"
453
+ className = "className"
454
+ contentEditable = "contentEditable"
455
+ dir = "dir"
456
+ draggable = "draggable"
457
+ hidden = "hidden"
458
+ lang = "lang"
459
+ role = "role"
460
+ spellCheck = "spellCheck"
461
+ style = "style"
462
+ tabIndex = "tabIndex"
463
+ title = "title"
464
+ loading_state = "loading_state"
465
+
466
+
467
+ class Br(dash.html.Br):
468
+ def _dummy(self):
469
+ # noinspection PyAttributeOutsideInit
470
+ self.id = None
471
+
472
+ class Prop(StrEnum):
473
+ children = "children"
474
+ id = "id"
475
+ n_clicks = "n_clicks"
476
+ n_clicks_timestamp = "n_clicks_timestamp"
477
+ disable_n_clicks = "disable_n_clicks"
478
+ key = "key"
479
+ accessKey = "accessKey"
480
+ className = "className"
481
+ contentEditable = "contentEditable"
482
+ dir = "dir"
483
+ draggable = "draggable"
484
+ hidden = "hidden"
485
+ lang = "lang"
486
+ role = "role"
487
+ spellCheck = "spellCheck"
488
+ style = "style"
489
+ tabIndex = "tabIndex"
490
+ title = "title"
491
+ loading_state = "loading_state"
492
+
493
+
494
+ class Button(dash.html.Button):
495
+ def _dummy(self):
496
+ # noinspection PyAttributeOutsideInit
497
+ self.id = None
498
+
499
+ class Prop(StrEnum):
500
+ children = "children"
501
+ id = "id"
502
+ n_clicks = "n_clicks"
503
+ n_clicks_timestamp = "n_clicks_timestamp"
504
+ disable_n_clicks = "disable_n_clicks"
505
+ key = "key"
506
+ autoFocus = "autoFocus"
507
+ disabled = "disabled"
508
+ form = "form"
509
+ formAction = "formAction"
510
+ formEncType = "formEncType"
511
+ formMethod = "formMethod"
512
+ formNoValidate = "formNoValidate"
513
+ formTarget = "formTarget"
514
+ name = "name"
515
+ type = "type"
516
+ value = "value"
517
+ accessKey = "accessKey"
518
+ className = "className"
519
+ contentEditable = "contentEditable"
520
+ dir = "dir"
521
+ draggable = "draggable"
522
+ hidden = "hidden"
523
+ lang = "lang"
524
+ role = "role"
525
+ spellCheck = "spellCheck"
526
+ style = "style"
527
+ tabIndex = "tabIndex"
528
+ title = "title"
529
+ loading_state = "loading_state"
530
+
531
+
532
+ class Canvas(dash.html.Canvas):
533
+ def _dummy(self):
534
+ # noinspection PyAttributeOutsideInit
535
+ self.id = None
536
+
537
+ class Prop(StrEnum):
538
+ children = "children"
539
+ id = "id"
540
+ n_clicks = "n_clicks"
541
+ n_clicks_timestamp = "n_clicks_timestamp"
542
+ disable_n_clicks = "disable_n_clicks"
543
+ key = "key"
544
+ height = "height"
545
+ width = "width"
546
+ accessKey = "accessKey"
547
+ className = "className"
548
+ contentEditable = "contentEditable"
549
+ dir = "dir"
550
+ draggable = "draggable"
551
+ hidden = "hidden"
552
+ lang = "lang"
553
+ role = "role"
554
+ spellCheck = "spellCheck"
555
+ style = "style"
556
+ tabIndex = "tabIndex"
557
+ title = "title"
558
+ loading_state = "loading_state"
559
+
560
+
561
+ class Caption(dash.html.Caption):
562
+ def _dummy(self):
563
+ # noinspection PyAttributeOutsideInit
564
+ self.id = None
565
+
566
+ class Prop(StrEnum):
567
+ children = "children"
568
+ id = "id"
569
+ n_clicks = "n_clicks"
570
+ n_clicks_timestamp = "n_clicks_timestamp"
571
+ disable_n_clicks = "disable_n_clicks"
572
+ key = "key"
573
+ accessKey = "accessKey"
574
+ className = "className"
575
+ contentEditable = "contentEditable"
576
+ dir = "dir"
577
+ draggable = "draggable"
578
+ hidden = "hidden"
579
+ lang = "lang"
580
+ role = "role"
581
+ spellCheck = "spellCheck"
582
+ style = "style"
583
+ tabIndex = "tabIndex"
584
+ title = "title"
585
+ loading_state = "loading_state"
586
+
587
+
588
+ class Center(dash.html.Center):
589
+ def _dummy(self):
590
+ # noinspection PyAttributeOutsideInit
591
+ self.id = None
592
+
593
+ class Prop(StrEnum):
594
+ children = "children"
595
+ id = "id"
596
+ n_clicks = "n_clicks"
597
+ n_clicks_timestamp = "n_clicks_timestamp"
598
+ disable_n_clicks = "disable_n_clicks"
599
+ key = "key"
600
+ accessKey = "accessKey"
601
+ className = "className"
602
+ contentEditable = "contentEditable"
603
+ dir = "dir"
604
+ draggable = "draggable"
605
+ hidden = "hidden"
606
+ lang = "lang"
607
+ role = "role"
608
+ spellCheck = "spellCheck"
609
+ style = "style"
610
+ tabIndex = "tabIndex"
611
+ title = "title"
612
+ loading_state = "loading_state"
613
+
614
+
615
+ class Cite(dash.html.Cite):
616
+ def _dummy(self):
617
+ # noinspection PyAttributeOutsideInit
618
+ self.id = None
619
+
620
+ class Prop(StrEnum):
621
+ children = "children"
622
+ id = "id"
623
+ n_clicks = "n_clicks"
624
+ n_clicks_timestamp = "n_clicks_timestamp"
625
+ disable_n_clicks = "disable_n_clicks"
626
+ key = "key"
627
+ accessKey = "accessKey"
628
+ className = "className"
629
+ contentEditable = "contentEditable"
630
+ dir = "dir"
631
+ draggable = "draggable"
632
+ hidden = "hidden"
633
+ lang = "lang"
634
+ role = "role"
635
+ spellCheck = "spellCheck"
636
+ style = "style"
637
+ tabIndex = "tabIndex"
638
+ title = "title"
639
+ loading_state = "loading_state"
640
+
641
+
642
+ class Code(dash.html.Code):
643
+ def _dummy(self):
644
+ # noinspection PyAttributeOutsideInit
645
+ self.id = None
646
+
647
+ class Prop(StrEnum):
648
+ children = "children"
649
+ id = "id"
650
+ n_clicks = "n_clicks"
651
+ n_clicks_timestamp = "n_clicks_timestamp"
652
+ disable_n_clicks = "disable_n_clicks"
653
+ key = "key"
654
+ accessKey = "accessKey"
655
+ className = "className"
656
+ contentEditable = "contentEditable"
657
+ dir = "dir"
658
+ draggable = "draggable"
659
+ hidden = "hidden"
660
+ lang = "lang"
661
+ role = "role"
662
+ spellCheck = "spellCheck"
663
+ style = "style"
664
+ tabIndex = "tabIndex"
665
+ title = "title"
666
+ loading_state = "loading_state"
667
+
668
+
669
+ class Col(dash.html.Col):
670
+ def _dummy(self):
671
+ # noinspection PyAttributeOutsideInit
672
+ self.id = None
673
+
674
+ class Prop(StrEnum):
675
+ children = "children"
676
+ id = "id"
677
+ n_clicks = "n_clicks"
678
+ n_clicks_timestamp = "n_clicks_timestamp"
679
+ disable_n_clicks = "disable_n_clicks"
680
+ key = "key"
681
+ span = "span"
682
+ accessKey = "accessKey"
683
+ className = "className"
684
+ contentEditable = "contentEditable"
685
+ dir = "dir"
686
+ draggable = "draggable"
687
+ hidden = "hidden"
688
+ lang = "lang"
689
+ role = "role"
690
+ spellCheck = "spellCheck"
691
+ style = "style"
692
+ tabIndex = "tabIndex"
693
+ title = "title"
694
+ loading_state = "loading_state"
695
+
696
+
697
+ class Colgroup(dash.html.Colgroup):
698
+ def _dummy(self):
699
+ # noinspection PyAttributeOutsideInit
700
+ self.id = None
701
+
702
+ class Prop(StrEnum):
703
+ children = "children"
704
+ id = "id"
705
+ n_clicks = "n_clicks"
706
+ n_clicks_timestamp = "n_clicks_timestamp"
707
+ disable_n_clicks = "disable_n_clicks"
708
+ key = "key"
709
+ span = "span"
710
+ accessKey = "accessKey"
711
+ className = "className"
712
+ contentEditable = "contentEditable"
713
+ dir = "dir"
714
+ draggable = "draggable"
715
+ hidden = "hidden"
716
+ lang = "lang"
717
+ role = "role"
718
+ spellCheck = "spellCheck"
719
+ style = "style"
720
+ tabIndex = "tabIndex"
721
+ title = "title"
722
+ loading_state = "loading_state"
723
+
724
+
725
+ class Content(dash.html.Content):
726
+ def _dummy(self):
727
+ # noinspection PyAttributeOutsideInit
728
+ self.id = None
729
+
730
+ class Prop(StrEnum):
731
+ children = "children"
732
+ id = "id"
733
+ n_clicks = "n_clicks"
734
+ n_clicks_timestamp = "n_clicks_timestamp"
735
+ disable_n_clicks = "disable_n_clicks"
736
+ key = "key"
737
+ accessKey = "accessKey"
738
+ className = "className"
739
+ contentEditable = "contentEditable"
740
+ dir = "dir"
741
+ draggable = "draggable"
742
+ hidden = "hidden"
743
+ lang = "lang"
744
+ role = "role"
745
+ spellCheck = "spellCheck"
746
+ style = "style"
747
+ tabIndex = "tabIndex"
748
+ title = "title"
749
+ loading_state = "loading_state"
750
+
751
+
752
+ class Data(dash.html.Data):
753
+ def _dummy(self):
754
+ # noinspection PyAttributeOutsideInit
755
+ self.id = None
756
+
757
+ class Prop(StrEnum):
758
+ children = "children"
759
+ id = "id"
760
+ n_clicks = "n_clicks"
761
+ n_clicks_timestamp = "n_clicks_timestamp"
762
+ disable_n_clicks = "disable_n_clicks"
763
+ key = "key"
764
+ value = "value"
765
+ accessKey = "accessKey"
766
+ className = "className"
767
+ contentEditable = "contentEditable"
768
+ dir = "dir"
769
+ draggable = "draggable"
770
+ hidden = "hidden"
771
+ lang = "lang"
772
+ role = "role"
773
+ spellCheck = "spellCheck"
774
+ style = "style"
775
+ tabIndex = "tabIndex"
776
+ title = "title"
777
+ loading_state = "loading_state"
778
+
779
+
780
+ class Datalist(dash.html.Datalist):
781
+ def _dummy(self):
782
+ # noinspection PyAttributeOutsideInit
783
+ self.id = None
784
+
785
+ class Prop(StrEnum):
786
+ children = "children"
787
+ id = "id"
788
+ n_clicks = "n_clicks"
789
+ n_clicks_timestamp = "n_clicks_timestamp"
790
+ disable_n_clicks = "disable_n_clicks"
791
+ key = "key"
792
+ accessKey = "accessKey"
793
+ className = "className"
794
+ contentEditable = "contentEditable"
795
+ dir = "dir"
796
+ draggable = "draggable"
797
+ hidden = "hidden"
798
+ lang = "lang"
799
+ role = "role"
800
+ spellCheck = "spellCheck"
801
+ style = "style"
802
+ tabIndex = "tabIndex"
803
+ title = "title"
804
+ loading_state = "loading_state"
805
+
806
+
807
+ class Dd(dash.html.Dd):
808
+ def _dummy(self):
809
+ # noinspection PyAttributeOutsideInit
810
+ self.id = None
811
+
812
+ class Prop(StrEnum):
813
+ children = "children"
814
+ id = "id"
815
+ n_clicks = "n_clicks"
816
+ n_clicks_timestamp = "n_clicks_timestamp"
817
+ disable_n_clicks = "disable_n_clicks"
818
+ key = "key"
819
+ accessKey = "accessKey"
820
+ className = "className"
821
+ contentEditable = "contentEditable"
822
+ dir = "dir"
823
+ draggable = "draggable"
824
+ hidden = "hidden"
825
+ lang = "lang"
826
+ role = "role"
827
+ spellCheck = "spellCheck"
828
+ style = "style"
829
+ tabIndex = "tabIndex"
830
+ title = "title"
831
+ loading_state = "loading_state"
832
+
833
+
834
+ class Del(dash.html.Del):
835
+ def _dummy(self):
836
+ # noinspection PyAttributeOutsideInit
837
+ self.id = None
838
+
839
+ class Prop(StrEnum):
840
+ children = "children"
841
+ id = "id"
842
+ n_clicks = "n_clicks"
843
+ n_clicks_timestamp = "n_clicks_timestamp"
844
+ disable_n_clicks = "disable_n_clicks"
845
+ key = "key"
846
+ cite = "cite"
847
+ dateTime = "dateTime"
848
+ accessKey = "accessKey"
849
+ className = "className"
850
+ contentEditable = "contentEditable"
851
+ dir = "dir"
852
+ draggable = "draggable"
853
+ hidden = "hidden"
854
+ lang = "lang"
855
+ role = "role"
856
+ spellCheck = "spellCheck"
857
+ style = "style"
858
+ tabIndex = "tabIndex"
859
+ title = "title"
860
+ loading_state = "loading_state"
861
+
862
+
863
+ class Details(dash.html.Details):
864
+ def _dummy(self):
865
+ # noinspection PyAttributeOutsideInit
866
+ self.id = None
867
+
868
+ class Prop(StrEnum):
869
+ children = "children"
870
+ id = "id"
871
+ n_clicks = "n_clicks"
872
+ n_clicks_timestamp = "n_clicks_timestamp"
873
+ disable_n_clicks = "disable_n_clicks"
874
+ key = "key"
875
+ open = "open"
876
+ accessKey = "accessKey"
877
+ className = "className"
878
+ contentEditable = "contentEditable"
879
+ dir = "dir"
880
+ draggable = "draggable"
881
+ hidden = "hidden"
882
+ lang = "lang"
883
+ role = "role"
884
+ spellCheck = "spellCheck"
885
+ style = "style"
886
+ tabIndex = "tabIndex"
887
+ title = "title"
888
+ loading_state = "loading_state"
889
+
890
+
891
+ class Dfn(dash.html.Dfn):
892
+ def _dummy(self):
893
+ # noinspection PyAttributeOutsideInit
894
+ self.id = None
895
+
896
+ class Prop(StrEnum):
897
+ children = "children"
898
+ id = "id"
899
+ n_clicks = "n_clicks"
900
+ n_clicks_timestamp = "n_clicks_timestamp"
901
+ disable_n_clicks = "disable_n_clicks"
902
+ key = "key"
903
+ accessKey = "accessKey"
904
+ className = "className"
905
+ contentEditable = "contentEditable"
906
+ dir = "dir"
907
+ draggable = "draggable"
908
+ hidden = "hidden"
909
+ lang = "lang"
910
+ role = "role"
911
+ spellCheck = "spellCheck"
912
+ style = "style"
913
+ tabIndex = "tabIndex"
914
+ title = "title"
915
+ loading_state = "loading_state"
916
+
917
+
918
+ class Dialog(dash.html.Dialog):
919
+ def _dummy(self):
920
+ # noinspection PyAttributeOutsideInit
921
+ self.id = None
922
+
923
+ class Prop(StrEnum):
924
+ children = "children"
925
+ id = "id"
926
+ n_clicks = "n_clicks"
927
+ n_clicks_timestamp = "n_clicks_timestamp"
928
+ disable_n_clicks = "disable_n_clicks"
929
+ key = "key"
930
+ open = "open"
931
+ accessKey = "accessKey"
932
+ className = "className"
933
+ contentEditable = "contentEditable"
934
+ dir = "dir"
935
+ draggable = "draggable"
936
+ hidden = "hidden"
937
+ lang = "lang"
938
+ role = "role"
939
+ spellCheck = "spellCheck"
940
+ style = "style"
941
+ tabIndex = "tabIndex"
942
+ title = "title"
943
+ loading_state = "loading_state"
944
+
945
+
946
+ class Div(dash.html.Div):
947
+ def _dummy(self):
948
+ # noinspection PyAttributeOutsideInit
949
+ self.id = None
950
+
951
+ class Prop(StrEnum):
952
+ children = "children"
953
+ id = "id"
954
+ n_clicks = "n_clicks"
955
+ n_clicks_timestamp = "n_clicks_timestamp"
956
+ disable_n_clicks = "disable_n_clicks"
957
+ key = "key"
958
+ accessKey = "accessKey"
959
+ className = "className"
960
+ contentEditable = "contentEditable"
961
+ dir = "dir"
962
+ draggable = "draggable"
963
+ hidden = "hidden"
964
+ lang = "lang"
965
+ role = "role"
966
+ spellCheck = "spellCheck"
967
+ style = "style"
968
+ tabIndex = "tabIndex"
969
+ title = "title"
970
+ loading_state = "loading_state"
971
+
972
+
973
+ class Dl(dash.html.Dl):
974
+ def _dummy(self):
975
+ # noinspection PyAttributeOutsideInit
976
+ self.id = None
977
+
978
+ class Prop(StrEnum):
979
+ children = "children"
980
+ id = "id"
981
+ n_clicks = "n_clicks"
982
+ n_clicks_timestamp = "n_clicks_timestamp"
983
+ disable_n_clicks = "disable_n_clicks"
984
+ key = "key"
985
+ accessKey = "accessKey"
986
+ className = "className"
987
+ contentEditable = "contentEditable"
988
+ dir = "dir"
989
+ draggable = "draggable"
990
+ hidden = "hidden"
991
+ lang = "lang"
992
+ role = "role"
993
+ spellCheck = "spellCheck"
994
+ style = "style"
995
+ tabIndex = "tabIndex"
996
+ title = "title"
997
+ loading_state = "loading_state"
998
+
999
+
1000
+ class Dt(dash.html.Dt):
1001
+ def _dummy(self):
1002
+ # noinspection PyAttributeOutsideInit
1003
+ self.id = None
1004
+
1005
+ class Prop(StrEnum):
1006
+ children = "children"
1007
+ id = "id"
1008
+ n_clicks = "n_clicks"
1009
+ n_clicks_timestamp = "n_clicks_timestamp"
1010
+ disable_n_clicks = "disable_n_clicks"
1011
+ key = "key"
1012
+ accessKey = "accessKey"
1013
+ className = "className"
1014
+ contentEditable = "contentEditable"
1015
+ dir = "dir"
1016
+ draggable = "draggable"
1017
+ hidden = "hidden"
1018
+ lang = "lang"
1019
+ role = "role"
1020
+ spellCheck = "spellCheck"
1021
+ style = "style"
1022
+ tabIndex = "tabIndex"
1023
+ title = "title"
1024
+ loading_state = "loading_state"
1025
+
1026
+
1027
+ class Em(dash.html.Em):
1028
+ def _dummy(self):
1029
+ # noinspection PyAttributeOutsideInit
1030
+ self.id = None
1031
+
1032
+ class Prop(StrEnum):
1033
+ children = "children"
1034
+ id = "id"
1035
+ n_clicks = "n_clicks"
1036
+ n_clicks_timestamp = "n_clicks_timestamp"
1037
+ disable_n_clicks = "disable_n_clicks"
1038
+ key = "key"
1039
+ accessKey = "accessKey"
1040
+ className = "className"
1041
+ contentEditable = "contentEditable"
1042
+ dir = "dir"
1043
+ draggable = "draggable"
1044
+ hidden = "hidden"
1045
+ lang = "lang"
1046
+ role = "role"
1047
+ spellCheck = "spellCheck"
1048
+ style = "style"
1049
+ tabIndex = "tabIndex"
1050
+ title = "title"
1051
+ loading_state = "loading_state"
1052
+
1053
+
1054
+ class Embed(dash.html.Embed):
1055
+ def _dummy(self):
1056
+ # noinspection PyAttributeOutsideInit
1057
+ self.id = None
1058
+
1059
+ class Prop(StrEnum):
1060
+ children = "children"
1061
+ id = "id"
1062
+ n_clicks = "n_clicks"
1063
+ n_clicks_timestamp = "n_clicks_timestamp"
1064
+ disable_n_clicks = "disable_n_clicks"
1065
+ key = "key"
1066
+ height = "height"
1067
+ src = "src"
1068
+ type = "type"
1069
+ width = "width"
1070
+ accessKey = "accessKey"
1071
+ className = "className"
1072
+ contentEditable = "contentEditable"
1073
+ dir = "dir"
1074
+ draggable = "draggable"
1075
+ hidden = "hidden"
1076
+ lang = "lang"
1077
+ role = "role"
1078
+ spellCheck = "spellCheck"
1079
+ style = "style"
1080
+ tabIndex = "tabIndex"
1081
+ title = "title"
1082
+ loading_state = "loading_state"
1083
+
1084
+
1085
+ class Fieldset(dash.html.Fieldset):
1086
+ def _dummy(self):
1087
+ # noinspection PyAttributeOutsideInit
1088
+ self.id = None
1089
+
1090
+ class Prop(StrEnum):
1091
+ children = "children"
1092
+ id = "id"
1093
+ n_clicks = "n_clicks"
1094
+ n_clicks_timestamp = "n_clicks_timestamp"
1095
+ disable_n_clicks = "disable_n_clicks"
1096
+ key = "key"
1097
+ disabled = "disabled"
1098
+ form = "form"
1099
+ name = "name"
1100
+ accessKey = "accessKey"
1101
+ className = "className"
1102
+ contentEditable = "contentEditable"
1103
+ dir = "dir"
1104
+ draggable = "draggable"
1105
+ hidden = "hidden"
1106
+ lang = "lang"
1107
+ role = "role"
1108
+ spellCheck = "spellCheck"
1109
+ style = "style"
1110
+ tabIndex = "tabIndex"
1111
+ title = "title"
1112
+ loading_state = "loading_state"
1113
+
1114
+
1115
+ class Figcaption(dash.html.Figcaption):
1116
+ def _dummy(self):
1117
+ # noinspection PyAttributeOutsideInit
1118
+ self.id = None
1119
+
1120
+ class Prop(StrEnum):
1121
+ children = "children"
1122
+ id = "id"
1123
+ n_clicks = "n_clicks"
1124
+ n_clicks_timestamp = "n_clicks_timestamp"
1125
+ disable_n_clicks = "disable_n_clicks"
1126
+ key = "key"
1127
+ accessKey = "accessKey"
1128
+ className = "className"
1129
+ contentEditable = "contentEditable"
1130
+ dir = "dir"
1131
+ draggable = "draggable"
1132
+ hidden = "hidden"
1133
+ lang = "lang"
1134
+ role = "role"
1135
+ spellCheck = "spellCheck"
1136
+ style = "style"
1137
+ tabIndex = "tabIndex"
1138
+ title = "title"
1139
+ loading_state = "loading_state"
1140
+
1141
+
1142
+ class Figure(dash.html.Figure):
1143
+ def _dummy(self):
1144
+ # noinspection PyAttributeOutsideInit
1145
+ self.id = None
1146
+
1147
+ class Prop(StrEnum):
1148
+ children = "children"
1149
+ id = "id"
1150
+ n_clicks = "n_clicks"
1151
+ n_clicks_timestamp = "n_clicks_timestamp"
1152
+ disable_n_clicks = "disable_n_clicks"
1153
+ key = "key"
1154
+ accessKey = "accessKey"
1155
+ className = "className"
1156
+ contentEditable = "contentEditable"
1157
+ dir = "dir"
1158
+ draggable = "draggable"
1159
+ hidden = "hidden"
1160
+ lang = "lang"
1161
+ role = "role"
1162
+ spellCheck = "spellCheck"
1163
+ style = "style"
1164
+ tabIndex = "tabIndex"
1165
+ title = "title"
1166
+ loading_state = "loading_state"
1167
+
1168
+
1169
+ class Font(dash.html.Font):
1170
+ def _dummy(self):
1171
+ # noinspection PyAttributeOutsideInit
1172
+ self.id = None
1173
+
1174
+ class Prop(StrEnum):
1175
+ children = "children"
1176
+ id = "id"
1177
+ n_clicks = "n_clicks"
1178
+ n_clicks_timestamp = "n_clicks_timestamp"
1179
+ disable_n_clicks = "disable_n_clicks"
1180
+ key = "key"
1181
+ accessKey = "accessKey"
1182
+ className = "className"
1183
+ contentEditable = "contentEditable"
1184
+ dir = "dir"
1185
+ draggable = "draggable"
1186
+ hidden = "hidden"
1187
+ lang = "lang"
1188
+ role = "role"
1189
+ spellCheck = "spellCheck"
1190
+ style = "style"
1191
+ tabIndex = "tabIndex"
1192
+ title = "title"
1193
+ loading_state = "loading_state"
1194
+
1195
+
1196
+ class Footer(dash.html.Footer):
1197
+ def _dummy(self):
1198
+ # noinspection PyAttributeOutsideInit
1199
+ self.id = None
1200
+
1201
+ class Prop(StrEnum):
1202
+ children = "children"
1203
+ id = "id"
1204
+ n_clicks = "n_clicks"
1205
+ n_clicks_timestamp = "n_clicks_timestamp"
1206
+ disable_n_clicks = "disable_n_clicks"
1207
+ key = "key"
1208
+ accessKey = "accessKey"
1209
+ className = "className"
1210
+ contentEditable = "contentEditable"
1211
+ dir = "dir"
1212
+ draggable = "draggable"
1213
+ hidden = "hidden"
1214
+ lang = "lang"
1215
+ role = "role"
1216
+ spellCheck = "spellCheck"
1217
+ style = "style"
1218
+ tabIndex = "tabIndex"
1219
+ title = "title"
1220
+ loading_state = "loading_state"
1221
+
1222
+
1223
+ class Form(dash.html.Form):
1224
+ def _dummy(self):
1225
+ # noinspection PyAttributeOutsideInit
1226
+ self.id = None
1227
+
1228
+ class Prop(StrEnum):
1229
+ children = "children"
1230
+ id = "id"
1231
+ n_clicks = "n_clicks"
1232
+ n_clicks_timestamp = "n_clicks_timestamp"
1233
+ disable_n_clicks = "disable_n_clicks"
1234
+ key = "key"
1235
+ accept = "accept"
1236
+ acceptCharset = "acceptCharset"
1237
+ action = "action"
1238
+ autoComplete = "autoComplete"
1239
+ encType = "encType"
1240
+ method = "method"
1241
+ name = "name"
1242
+ noValidate = "noValidate"
1243
+ target = "target"
1244
+ accessKey = "accessKey"
1245
+ className = "className"
1246
+ contentEditable = "contentEditable"
1247
+ dir = "dir"
1248
+ draggable = "draggable"
1249
+ hidden = "hidden"
1250
+ lang = "lang"
1251
+ role = "role"
1252
+ spellCheck = "spellCheck"
1253
+ style = "style"
1254
+ tabIndex = "tabIndex"
1255
+ title = "title"
1256
+ loading_state = "loading_state"
1257
+
1258
+
1259
+ class Frame(dash.html.Frame):
1260
+ def _dummy(self):
1261
+ # noinspection PyAttributeOutsideInit
1262
+ self.id = None
1263
+
1264
+ class Prop(StrEnum):
1265
+ children = "children"
1266
+ id = "id"
1267
+ n_clicks = "n_clicks"
1268
+ n_clicks_timestamp = "n_clicks_timestamp"
1269
+ disable_n_clicks = "disable_n_clicks"
1270
+ key = "key"
1271
+ accessKey = "accessKey"
1272
+ className = "className"
1273
+ contentEditable = "contentEditable"
1274
+ dir = "dir"
1275
+ draggable = "draggable"
1276
+ hidden = "hidden"
1277
+ lang = "lang"
1278
+ role = "role"
1279
+ spellCheck = "spellCheck"
1280
+ style = "style"
1281
+ tabIndex = "tabIndex"
1282
+ title = "title"
1283
+ loading_state = "loading_state"
1284
+
1285
+
1286
+ class Frameset(dash.html.Frameset):
1287
+ def _dummy(self):
1288
+ # noinspection PyAttributeOutsideInit
1289
+ self.id = None
1290
+
1291
+ class Prop(StrEnum):
1292
+ children = "children"
1293
+ id = "id"
1294
+ n_clicks = "n_clicks"
1295
+ n_clicks_timestamp = "n_clicks_timestamp"
1296
+ disable_n_clicks = "disable_n_clicks"
1297
+ key = "key"
1298
+ accessKey = "accessKey"
1299
+ className = "className"
1300
+ contentEditable = "contentEditable"
1301
+ dir = "dir"
1302
+ draggable = "draggable"
1303
+ hidden = "hidden"
1304
+ lang = "lang"
1305
+ role = "role"
1306
+ spellCheck = "spellCheck"
1307
+ style = "style"
1308
+ tabIndex = "tabIndex"
1309
+ title = "title"
1310
+ loading_state = "loading_state"
1311
+
1312
+
1313
+ class H1(dash.html.H1):
1314
+ def _dummy(self):
1315
+ # noinspection PyAttributeOutsideInit
1316
+ self.id = None
1317
+
1318
+ class Prop(StrEnum):
1319
+ children = "children"
1320
+ id = "id"
1321
+ n_clicks = "n_clicks"
1322
+ n_clicks_timestamp = "n_clicks_timestamp"
1323
+ disable_n_clicks = "disable_n_clicks"
1324
+ key = "key"
1325
+ accessKey = "accessKey"
1326
+ className = "className"
1327
+ contentEditable = "contentEditable"
1328
+ dir = "dir"
1329
+ draggable = "draggable"
1330
+ hidden = "hidden"
1331
+ lang = "lang"
1332
+ role = "role"
1333
+ spellCheck = "spellCheck"
1334
+ style = "style"
1335
+ tabIndex = "tabIndex"
1336
+ title = "title"
1337
+ loading_state = "loading_state"
1338
+
1339
+
1340
+ class H2(dash.html.H2):
1341
+ def _dummy(self):
1342
+ # noinspection PyAttributeOutsideInit
1343
+ self.id = None
1344
+
1345
+ class Prop(StrEnum):
1346
+ children = "children"
1347
+ id = "id"
1348
+ n_clicks = "n_clicks"
1349
+ n_clicks_timestamp = "n_clicks_timestamp"
1350
+ disable_n_clicks = "disable_n_clicks"
1351
+ key = "key"
1352
+ accessKey = "accessKey"
1353
+ className = "className"
1354
+ contentEditable = "contentEditable"
1355
+ dir = "dir"
1356
+ draggable = "draggable"
1357
+ hidden = "hidden"
1358
+ lang = "lang"
1359
+ role = "role"
1360
+ spellCheck = "spellCheck"
1361
+ style = "style"
1362
+ tabIndex = "tabIndex"
1363
+ title = "title"
1364
+ loading_state = "loading_state"
1365
+
1366
+
1367
+ class H3(dash.html.H3):
1368
+ def _dummy(self):
1369
+ # noinspection PyAttributeOutsideInit
1370
+ self.id = None
1371
+
1372
+ class Prop(StrEnum):
1373
+ children = "children"
1374
+ id = "id"
1375
+ n_clicks = "n_clicks"
1376
+ n_clicks_timestamp = "n_clicks_timestamp"
1377
+ disable_n_clicks = "disable_n_clicks"
1378
+ key = "key"
1379
+ accessKey = "accessKey"
1380
+ className = "className"
1381
+ contentEditable = "contentEditable"
1382
+ dir = "dir"
1383
+ draggable = "draggable"
1384
+ hidden = "hidden"
1385
+ lang = "lang"
1386
+ role = "role"
1387
+ spellCheck = "spellCheck"
1388
+ style = "style"
1389
+ tabIndex = "tabIndex"
1390
+ title = "title"
1391
+ loading_state = "loading_state"
1392
+
1393
+
1394
+ class H4(dash.html.H4):
1395
+ def _dummy(self):
1396
+ # noinspection PyAttributeOutsideInit
1397
+ self.id = None
1398
+
1399
+ class Prop(StrEnum):
1400
+ children = "children"
1401
+ id = "id"
1402
+ n_clicks = "n_clicks"
1403
+ n_clicks_timestamp = "n_clicks_timestamp"
1404
+ disable_n_clicks = "disable_n_clicks"
1405
+ key = "key"
1406
+ accessKey = "accessKey"
1407
+ className = "className"
1408
+ contentEditable = "contentEditable"
1409
+ dir = "dir"
1410
+ draggable = "draggable"
1411
+ hidden = "hidden"
1412
+ lang = "lang"
1413
+ role = "role"
1414
+ spellCheck = "spellCheck"
1415
+ style = "style"
1416
+ tabIndex = "tabIndex"
1417
+ title = "title"
1418
+ loading_state = "loading_state"
1419
+
1420
+
1421
+ class H5(dash.html.H5):
1422
+ def _dummy(self):
1423
+ # noinspection PyAttributeOutsideInit
1424
+ self.id = None
1425
+
1426
+ class Prop(StrEnum):
1427
+ children = "children"
1428
+ id = "id"
1429
+ n_clicks = "n_clicks"
1430
+ n_clicks_timestamp = "n_clicks_timestamp"
1431
+ disable_n_clicks = "disable_n_clicks"
1432
+ key = "key"
1433
+ accessKey = "accessKey"
1434
+ className = "className"
1435
+ contentEditable = "contentEditable"
1436
+ dir = "dir"
1437
+ draggable = "draggable"
1438
+ hidden = "hidden"
1439
+ lang = "lang"
1440
+ role = "role"
1441
+ spellCheck = "spellCheck"
1442
+ style = "style"
1443
+ tabIndex = "tabIndex"
1444
+ title = "title"
1445
+ loading_state = "loading_state"
1446
+
1447
+
1448
+ class H6(dash.html.H6):
1449
+ def _dummy(self):
1450
+ # noinspection PyAttributeOutsideInit
1451
+ self.id = None
1452
+
1453
+ class Prop(StrEnum):
1454
+ children = "children"
1455
+ id = "id"
1456
+ n_clicks = "n_clicks"
1457
+ n_clicks_timestamp = "n_clicks_timestamp"
1458
+ disable_n_clicks = "disable_n_clicks"
1459
+ key = "key"
1460
+ accessKey = "accessKey"
1461
+ className = "className"
1462
+ contentEditable = "contentEditable"
1463
+ dir = "dir"
1464
+ draggable = "draggable"
1465
+ hidden = "hidden"
1466
+ lang = "lang"
1467
+ role = "role"
1468
+ spellCheck = "spellCheck"
1469
+ style = "style"
1470
+ tabIndex = "tabIndex"
1471
+ title = "title"
1472
+ loading_state = "loading_state"
1473
+
1474
+
1475
+ class Header(dash.html.Header):
1476
+ def _dummy(self):
1477
+ # noinspection PyAttributeOutsideInit
1478
+ self.id = None
1479
+
1480
+ class Prop(StrEnum):
1481
+ children = "children"
1482
+ id = "id"
1483
+ n_clicks = "n_clicks"
1484
+ n_clicks_timestamp = "n_clicks_timestamp"
1485
+ disable_n_clicks = "disable_n_clicks"
1486
+ key = "key"
1487
+ accessKey = "accessKey"
1488
+ className = "className"
1489
+ contentEditable = "contentEditable"
1490
+ dir = "dir"
1491
+ draggable = "draggable"
1492
+ hidden = "hidden"
1493
+ lang = "lang"
1494
+ role = "role"
1495
+ spellCheck = "spellCheck"
1496
+ style = "style"
1497
+ tabIndex = "tabIndex"
1498
+ title = "title"
1499
+ loading_state = "loading_state"
1500
+
1501
+
1502
+ class Hgroup(dash.html.Hgroup):
1503
+ def _dummy(self):
1504
+ # noinspection PyAttributeOutsideInit
1505
+ self.id = None
1506
+
1507
+ class Prop(StrEnum):
1508
+ children = "children"
1509
+ id = "id"
1510
+ n_clicks = "n_clicks"
1511
+ n_clicks_timestamp = "n_clicks_timestamp"
1512
+ disable_n_clicks = "disable_n_clicks"
1513
+ key = "key"
1514
+ accessKey = "accessKey"
1515
+ className = "className"
1516
+ contentEditable = "contentEditable"
1517
+ dir = "dir"
1518
+ draggable = "draggable"
1519
+ hidden = "hidden"
1520
+ lang = "lang"
1521
+ role = "role"
1522
+ spellCheck = "spellCheck"
1523
+ style = "style"
1524
+ tabIndex = "tabIndex"
1525
+ title = "title"
1526
+ loading_state = "loading_state"
1527
+
1528
+
1529
+ class Hr(dash.html.Hr):
1530
+ def _dummy(self):
1531
+ # noinspection PyAttributeOutsideInit
1532
+ self.id = None
1533
+
1534
+ class Prop(StrEnum):
1535
+ children = "children"
1536
+ id = "id"
1537
+ n_clicks = "n_clicks"
1538
+ n_clicks_timestamp = "n_clicks_timestamp"
1539
+ disable_n_clicks = "disable_n_clicks"
1540
+ key = "key"
1541
+ accessKey = "accessKey"
1542
+ className = "className"
1543
+ contentEditable = "contentEditable"
1544
+ dir = "dir"
1545
+ draggable = "draggable"
1546
+ hidden = "hidden"
1547
+ lang = "lang"
1548
+ role = "role"
1549
+ spellCheck = "spellCheck"
1550
+ style = "style"
1551
+ tabIndex = "tabIndex"
1552
+ title = "title"
1553
+ loading_state = "loading_state"
1554
+
1555
+
1556
+ class I(dash.html.I):
1557
+ def _dummy(self):
1558
+ # noinspection PyAttributeOutsideInit
1559
+ self.id = None
1560
+
1561
+ class Prop(StrEnum):
1562
+ children = "children"
1563
+ id = "id"
1564
+ n_clicks = "n_clicks"
1565
+ n_clicks_timestamp = "n_clicks_timestamp"
1566
+ disable_n_clicks = "disable_n_clicks"
1567
+ key = "key"
1568
+ accessKey = "accessKey"
1569
+ className = "className"
1570
+ contentEditable = "contentEditable"
1571
+ dir = "dir"
1572
+ draggable = "draggable"
1573
+ hidden = "hidden"
1574
+ lang = "lang"
1575
+ role = "role"
1576
+ spellCheck = "spellCheck"
1577
+ style = "style"
1578
+ tabIndex = "tabIndex"
1579
+ title = "title"
1580
+ loading_state = "loading_state"
1581
+
1582
+
1583
+ class Iframe(dash.html.Iframe):
1584
+ def _dummy(self):
1585
+ # noinspection PyAttributeOutsideInit
1586
+ self.id = None
1587
+
1588
+ class Prop(StrEnum):
1589
+ children = "children"
1590
+ id = "id"
1591
+ n_clicks = "n_clicks"
1592
+ n_clicks_timestamp = "n_clicks_timestamp"
1593
+ disable_n_clicks = "disable_n_clicks"
1594
+ key = "key"
1595
+ allow = "allow"
1596
+ height = "height"
1597
+ name = "name"
1598
+ referrerPolicy = "referrerPolicy"
1599
+ sandbox = "sandbox"
1600
+ src = "src"
1601
+ srcDoc = "srcDoc"
1602
+ width = "width"
1603
+ accessKey = "accessKey"
1604
+ className = "className"
1605
+ contentEditable = "contentEditable"
1606
+ dir = "dir"
1607
+ draggable = "draggable"
1608
+ hidden = "hidden"
1609
+ lang = "lang"
1610
+ role = "role"
1611
+ spellCheck = "spellCheck"
1612
+ style = "style"
1613
+ tabIndex = "tabIndex"
1614
+ title = "title"
1615
+ loading_state = "loading_state"
1616
+
1617
+
1618
+ class Img(dash.html.Img):
1619
+ def _dummy(self):
1620
+ # noinspection PyAttributeOutsideInit
1621
+ self.id = None
1622
+
1623
+ class Prop(StrEnum):
1624
+ children = "children"
1625
+ id = "id"
1626
+ n_clicks = "n_clicks"
1627
+ n_clicks_timestamp = "n_clicks_timestamp"
1628
+ disable_n_clicks = "disable_n_clicks"
1629
+ key = "key"
1630
+ alt = "alt"
1631
+ crossOrigin = "crossOrigin"
1632
+ height = "height"
1633
+ referrerPolicy = "referrerPolicy"
1634
+ sizes = "sizes"
1635
+ src = "src"
1636
+ srcSet = "srcSet"
1637
+ useMap = "useMap"
1638
+ width = "width"
1639
+ accessKey = "accessKey"
1640
+ className = "className"
1641
+ contentEditable = "contentEditable"
1642
+ dir = "dir"
1643
+ draggable = "draggable"
1644
+ hidden = "hidden"
1645
+ lang = "lang"
1646
+ role = "role"
1647
+ spellCheck = "spellCheck"
1648
+ style = "style"
1649
+ tabIndex = "tabIndex"
1650
+ title = "title"
1651
+ loading_state = "loading_state"
1652
+
1653
+
1654
+ class Ins(dash.html.Ins):
1655
+ def _dummy(self):
1656
+ # noinspection PyAttributeOutsideInit
1657
+ self.id = None
1658
+
1659
+ class Prop(StrEnum):
1660
+ children = "children"
1661
+ id = "id"
1662
+ n_clicks = "n_clicks"
1663
+ n_clicks_timestamp = "n_clicks_timestamp"
1664
+ disable_n_clicks = "disable_n_clicks"
1665
+ key = "key"
1666
+ cite = "cite"
1667
+ dateTime = "dateTime"
1668
+ accessKey = "accessKey"
1669
+ className = "className"
1670
+ contentEditable = "contentEditable"
1671
+ dir = "dir"
1672
+ draggable = "draggable"
1673
+ hidden = "hidden"
1674
+ lang = "lang"
1675
+ role = "role"
1676
+ spellCheck = "spellCheck"
1677
+ style = "style"
1678
+ tabIndex = "tabIndex"
1679
+ title = "title"
1680
+ loading_state = "loading_state"
1681
+
1682
+
1683
+ class Kbd(dash.html.Kbd):
1684
+ def _dummy(self):
1685
+ # noinspection PyAttributeOutsideInit
1686
+ self.id = None
1687
+
1688
+ class Prop(StrEnum):
1689
+ children = "children"
1690
+ id = "id"
1691
+ n_clicks = "n_clicks"
1692
+ n_clicks_timestamp = "n_clicks_timestamp"
1693
+ disable_n_clicks = "disable_n_clicks"
1694
+ key = "key"
1695
+ accessKey = "accessKey"
1696
+ className = "className"
1697
+ contentEditable = "contentEditable"
1698
+ dir = "dir"
1699
+ draggable = "draggable"
1700
+ hidden = "hidden"
1701
+ lang = "lang"
1702
+ role = "role"
1703
+ spellCheck = "spellCheck"
1704
+ style = "style"
1705
+ tabIndex = "tabIndex"
1706
+ title = "title"
1707
+ loading_state = "loading_state"
1708
+
1709
+
1710
+ class Keygen(dash.html.Keygen):
1711
+ def _dummy(self):
1712
+ # noinspection PyAttributeOutsideInit
1713
+ self.id = None
1714
+
1715
+ class Prop(StrEnum):
1716
+ children = "children"
1717
+ id = "id"
1718
+ n_clicks = "n_clicks"
1719
+ n_clicks_timestamp = "n_clicks_timestamp"
1720
+ disable_n_clicks = "disable_n_clicks"
1721
+ key = "key"
1722
+ accessKey = "accessKey"
1723
+ className = "className"
1724
+ contentEditable = "contentEditable"
1725
+ dir = "dir"
1726
+ draggable = "draggable"
1727
+ hidden = "hidden"
1728
+ lang = "lang"
1729
+ role = "role"
1730
+ spellCheck = "spellCheck"
1731
+ style = "style"
1732
+ tabIndex = "tabIndex"
1733
+ title = "title"
1734
+ loading_state = "loading_state"
1735
+
1736
+
1737
+ class Label(dash.html.Label):
1738
+ def _dummy(self):
1739
+ # noinspection PyAttributeOutsideInit
1740
+ self.id = None
1741
+
1742
+ class Prop(StrEnum):
1743
+ children = "children"
1744
+ id = "id"
1745
+ n_clicks = "n_clicks"
1746
+ n_clicks_timestamp = "n_clicks_timestamp"
1747
+ disable_n_clicks = "disable_n_clicks"
1748
+ key = "key"
1749
+ htmlFor = "htmlFor"
1750
+ form = "form"
1751
+ accessKey = "accessKey"
1752
+ className = "className"
1753
+ contentEditable = "contentEditable"
1754
+ dir = "dir"
1755
+ draggable = "draggable"
1756
+ hidden = "hidden"
1757
+ lang = "lang"
1758
+ role = "role"
1759
+ spellCheck = "spellCheck"
1760
+ style = "style"
1761
+ tabIndex = "tabIndex"
1762
+ title = "title"
1763
+ loading_state = "loading_state"
1764
+
1765
+
1766
+ class Legend(dash.html.Legend):
1767
+ def _dummy(self):
1768
+ # noinspection PyAttributeOutsideInit
1769
+ self.id = None
1770
+
1771
+ class Prop(StrEnum):
1772
+ children = "children"
1773
+ id = "id"
1774
+ n_clicks = "n_clicks"
1775
+ n_clicks_timestamp = "n_clicks_timestamp"
1776
+ disable_n_clicks = "disable_n_clicks"
1777
+ key = "key"
1778
+ accessKey = "accessKey"
1779
+ className = "className"
1780
+ contentEditable = "contentEditable"
1781
+ dir = "dir"
1782
+ draggable = "draggable"
1783
+ hidden = "hidden"
1784
+ lang = "lang"
1785
+ role = "role"
1786
+ spellCheck = "spellCheck"
1787
+ style = "style"
1788
+ tabIndex = "tabIndex"
1789
+ title = "title"
1790
+ loading_state = "loading_state"
1791
+
1792
+
1793
+ class Li(dash.html.Li):
1794
+ def _dummy(self):
1795
+ # noinspection PyAttributeOutsideInit
1796
+ self.id = None
1797
+
1798
+ class Prop(StrEnum):
1799
+ children = "children"
1800
+ id = "id"
1801
+ n_clicks = "n_clicks"
1802
+ n_clicks_timestamp = "n_clicks_timestamp"
1803
+ disable_n_clicks = "disable_n_clicks"
1804
+ key = "key"
1805
+ value = "value"
1806
+ accessKey = "accessKey"
1807
+ className = "className"
1808
+ contentEditable = "contentEditable"
1809
+ dir = "dir"
1810
+ draggable = "draggable"
1811
+ hidden = "hidden"
1812
+ lang = "lang"
1813
+ role = "role"
1814
+ spellCheck = "spellCheck"
1815
+ style = "style"
1816
+ tabIndex = "tabIndex"
1817
+ title = "title"
1818
+ loading_state = "loading_state"
1819
+
1820
+
1821
+ class Link(dash.html.Link):
1822
+ def _dummy(self):
1823
+ # noinspection PyAttributeOutsideInit
1824
+ self.id = None
1825
+
1826
+ class Prop(StrEnum):
1827
+ children = "children"
1828
+ id = "id"
1829
+ n_clicks = "n_clicks"
1830
+ n_clicks_timestamp = "n_clicks_timestamp"
1831
+ disable_n_clicks = "disable_n_clicks"
1832
+ key = "key"
1833
+ crossOrigin = "crossOrigin"
1834
+ href = "href"
1835
+ hrefLang = "hrefLang"
1836
+ integrity = "integrity"
1837
+ media = "media"
1838
+ referrerPolicy = "referrerPolicy"
1839
+ rel = "rel"
1840
+ sizes = "sizes"
1841
+ type = "type"
1842
+ accessKey = "accessKey"
1843
+ className = "className"
1844
+ contentEditable = "contentEditable"
1845
+ dir = "dir"
1846
+ draggable = "draggable"
1847
+ hidden = "hidden"
1848
+ lang = "lang"
1849
+ role = "role"
1850
+ spellCheck = "spellCheck"
1851
+ style = "style"
1852
+ tabIndex = "tabIndex"
1853
+ title = "title"
1854
+ loading_state = "loading_state"
1855
+
1856
+
1857
+ class Main(dash.html.Main):
1858
+ def _dummy(self):
1859
+ # noinspection PyAttributeOutsideInit
1860
+ self.id = None
1861
+
1862
+ class Prop(StrEnum):
1863
+ children = "children"
1864
+ id = "id"
1865
+ n_clicks = "n_clicks"
1866
+ n_clicks_timestamp = "n_clicks_timestamp"
1867
+ disable_n_clicks = "disable_n_clicks"
1868
+ key = "key"
1869
+ accessKey = "accessKey"
1870
+ className = "className"
1871
+ contentEditable = "contentEditable"
1872
+ dir = "dir"
1873
+ draggable = "draggable"
1874
+ hidden = "hidden"
1875
+ lang = "lang"
1876
+ role = "role"
1877
+ spellCheck = "spellCheck"
1878
+ style = "style"
1879
+ tabIndex = "tabIndex"
1880
+ title = "title"
1881
+ loading_state = "loading_state"
1882
+
1883
+
1884
+ class MapEl(dash.html.MapEl):
1885
+ def _dummy(self):
1886
+ # noinspection PyAttributeOutsideInit
1887
+ self.id = None
1888
+
1889
+ class Prop(StrEnum):
1890
+ children = "children"
1891
+ id = "id"
1892
+ n_clicks = "n_clicks"
1893
+ n_clicks_timestamp = "n_clicks_timestamp"
1894
+ disable_n_clicks = "disable_n_clicks"
1895
+ key = "key"
1896
+ name = "name"
1897
+ accessKey = "accessKey"
1898
+ className = "className"
1899
+ contentEditable = "contentEditable"
1900
+ dir = "dir"
1901
+ draggable = "draggable"
1902
+ hidden = "hidden"
1903
+ lang = "lang"
1904
+ role = "role"
1905
+ spellCheck = "spellCheck"
1906
+ style = "style"
1907
+ tabIndex = "tabIndex"
1908
+ title = "title"
1909
+ loading_state = "loading_state"
1910
+
1911
+
1912
+ class Mark(dash.html.Mark):
1913
+ def _dummy(self):
1914
+ # noinspection PyAttributeOutsideInit
1915
+ self.id = None
1916
+
1917
+ class Prop(StrEnum):
1918
+ children = "children"
1919
+ id = "id"
1920
+ n_clicks = "n_clicks"
1921
+ n_clicks_timestamp = "n_clicks_timestamp"
1922
+ disable_n_clicks = "disable_n_clicks"
1923
+ key = "key"
1924
+ accessKey = "accessKey"
1925
+ className = "className"
1926
+ contentEditable = "contentEditable"
1927
+ dir = "dir"
1928
+ draggable = "draggable"
1929
+ hidden = "hidden"
1930
+ lang = "lang"
1931
+ role = "role"
1932
+ spellCheck = "spellCheck"
1933
+ style = "style"
1934
+ tabIndex = "tabIndex"
1935
+ title = "title"
1936
+ loading_state = "loading_state"
1937
+
1938
+
1939
+ class Marquee(dash.html.Marquee):
1940
+ def _dummy(self):
1941
+ # noinspection PyAttributeOutsideInit
1942
+ self.id = None
1943
+
1944
+ class Prop(StrEnum):
1945
+ children = "children"
1946
+ id = "id"
1947
+ n_clicks = "n_clicks"
1948
+ n_clicks_timestamp = "n_clicks_timestamp"
1949
+ disable_n_clicks = "disable_n_clicks"
1950
+ key = "key"
1951
+ loop = "loop"
1952
+ accessKey = "accessKey"
1953
+ className = "className"
1954
+ contentEditable = "contentEditable"
1955
+ dir = "dir"
1956
+ draggable = "draggable"
1957
+ hidden = "hidden"
1958
+ lang = "lang"
1959
+ role = "role"
1960
+ spellCheck = "spellCheck"
1961
+ style = "style"
1962
+ tabIndex = "tabIndex"
1963
+ title = "title"
1964
+ loading_state = "loading_state"
1965
+
1966
+
1967
+ class Meta(dash.html.Meta):
1968
+ def _dummy(self):
1969
+ # noinspection PyAttributeOutsideInit
1970
+ self.id = None
1971
+
1972
+ class Prop(StrEnum):
1973
+ children = "children"
1974
+ id = "id"
1975
+ n_clicks = "n_clicks"
1976
+ n_clicks_timestamp = "n_clicks_timestamp"
1977
+ disable_n_clicks = "disable_n_clicks"
1978
+ key = "key"
1979
+ charSet = "charSet"
1980
+ content = "content"
1981
+ httpEquiv = "httpEquiv"
1982
+ name = "name"
1983
+ accessKey = "accessKey"
1984
+ className = "className"
1985
+ contentEditable = "contentEditable"
1986
+ dir = "dir"
1987
+ draggable = "draggable"
1988
+ hidden = "hidden"
1989
+ lang = "lang"
1990
+ role = "role"
1991
+ spellCheck = "spellCheck"
1992
+ style = "style"
1993
+ tabIndex = "tabIndex"
1994
+ title = "title"
1995
+ loading_state = "loading_state"
1996
+
1997
+
1998
+ class Meter(dash.html.Meter):
1999
+ def _dummy(self):
2000
+ # noinspection PyAttributeOutsideInit
2001
+ self.id = None
2002
+
2003
+ class Prop(StrEnum):
2004
+ children = "children"
2005
+ id = "id"
2006
+ n_clicks = "n_clicks"
2007
+ n_clicks_timestamp = "n_clicks_timestamp"
2008
+ disable_n_clicks = "disable_n_clicks"
2009
+ key = "key"
2010
+ form = "form"
2011
+ high = "high"
2012
+ low = "low"
2013
+ max = "max"
2014
+ min = "min"
2015
+ optimum = "optimum"
2016
+ value = "value"
2017
+ accessKey = "accessKey"
2018
+ className = "className"
2019
+ contentEditable = "contentEditable"
2020
+ dir = "dir"
2021
+ draggable = "draggable"
2022
+ hidden = "hidden"
2023
+ lang = "lang"
2024
+ role = "role"
2025
+ spellCheck = "spellCheck"
2026
+ style = "style"
2027
+ tabIndex = "tabIndex"
2028
+ title = "title"
2029
+ loading_state = "loading_state"
2030
+
2031
+
2032
+ class Nav(dash.html.Nav):
2033
+ def _dummy(self):
2034
+ # noinspection PyAttributeOutsideInit
2035
+ self.id = None
2036
+
2037
+ class Prop(StrEnum):
2038
+ children = "children"
2039
+ id = "id"
2040
+ n_clicks = "n_clicks"
2041
+ n_clicks_timestamp = "n_clicks_timestamp"
2042
+ disable_n_clicks = "disable_n_clicks"
2043
+ key = "key"
2044
+ accessKey = "accessKey"
2045
+ className = "className"
2046
+ contentEditable = "contentEditable"
2047
+ dir = "dir"
2048
+ draggable = "draggable"
2049
+ hidden = "hidden"
2050
+ lang = "lang"
2051
+ role = "role"
2052
+ spellCheck = "spellCheck"
2053
+ style = "style"
2054
+ tabIndex = "tabIndex"
2055
+ title = "title"
2056
+ loading_state = "loading_state"
2057
+
2058
+
2059
+ class Nobr(dash.html.Nobr):
2060
+ def _dummy(self):
2061
+ # noinspection PyAttributeOutsideInit
2062
+ self.id = None
2063
+
2064
+ class Prop(StrEnum):
2065
+ children = "children"
2066
+ id = "id"
2067
+ n_clicks = "n_clicks"
2068
+ n_clicks_timestamp = "n_clicks_timestamp"
2069
+ disable_n_clicks = "disable_n_clicks"
2070
+ key = "key"
2071
+ accessKey = "accessKey"
2072
+ className = "className"
2073
+ contentEditable = "contentEditable"
2074
+ dir = "dir"
2075
+ draggable = "draggable"
2076
+ hidden = "hidden"
2077
+ lang = "lang"
2078
+ role = "role"
2079
+ spellCheck = "spellCheck"
2080
+ style = "style"
2081
+ tabIndex = "tabIndex"
2082
+ title = "title"
2083
+ loading_state = "loading_state"
2084
+
2085
+
2086
+ class Noscript(dash.html.Noscript):
2087
+ def _dummy(self):
2088
+ # noinspection PyAttributeOutsideInit
2089
+ self.id = None
2090
+
2091
+ class Prop(StrEnum):
2092
+ children = "children"
2093
+ id = "id"
2094
+ n_clicks = "n_clicks"
2095
+ n_clicks_timestamp = "n_clicks_timestamp"
2096
+ disable_n_clicks = "disable_n_clicks"
2097
+ key = "key"
2098
+ accessKey = "accessKey"
2099
+ className = "className"
2100
+ contentEditable = "contentEditable"
2101
+ dir = "dir"
2102
+ draggable = "draggable"
2103
+ hidden = "hidden"
2104
+ lang = "lang"
2105
+ role = "role"
2106
+ spellCheck = "spellCheck"
2107
+ style = "style"
2108
+ tabIndex = "tabIndex"
2109
+ title = "title"
2110
+ loading_state = "loading_state"
2111
+
2112
+
2113
+ class ObjectEl(dash.html.ObjectEl):
2114
+ def _dummy(self):
2115
+ # noinspection PyAttributeOutsideInit
2116
+ self.id = None
2117
+
2118
+ class Prop(StrEnum):
2119
+ children = "children"
2120
+ id = "id"
2121
+ n_clicks = "n_clicks"
2122
+ n_clicks_timestamp = "n_clicks_timestamp"
2123
+ disable_n_clicks = "disable_n_clicks"
2124
+ key = "key"
2125
+ data = "data"
2126
+ form = "form"
2127
+ height = "height"
2128
+ name = "name"
2129
+ type = "type"
2130
+ useMap = "useMap"
2131
+ width = "width"
2132
+ accessKey = "accessKey"
2133
+ className = "className"
2134
+ contentEditable = "contentEditable"
2135
+ dir = "dir"
2136
+ draggable = "draggable"
2137
+ hidden = "hidden"
2138
+ lang = "lang"
2139
+ role = "role"
2140
+ spellCheck = "spellCheck"
2141
+ style = "style"
2142
+ tabIndex = "tabIndex"
2143
+ title = "title"
2144
+ loading_state = "loading_state"
2145
+
2146
+
2147
+ class Ol(dash.html.Ol):
2148
+ def _dummy(self):
2149
+ # noinspection PyAttributeOutsideInit
2150
+ self.id = None
2151
+
2152
+ class Prop(StrEnum):
2153
+ children = "children"
2154
+ id = "id"
2155
+ n_clicks = "n_clicks"
2156
+ n_clicks_timestamp = "n_clicks_timestamp"
2157
+ disable_n_clicks = "disable_n_clicks"
2158
+ key = "key"
2159
+ reversed = "reversed"
2160
+ start = "start"
2161
+ type = "type"
2162
+ accessKey = "accessKey"
2163
+ className = "className"
2164
+ contentEditable = "contentEditable"
2165
+ dir = "dir"
2166
+ draggable = "draggable"
2167
+ hidden = "hidden"
2168
+ lang = "lang"
2169
+ role = "role"
2170
+ spellCheck = "spellCheck"
2171
+ style = "style"
2172
+ tabIndex = "tabIndex"
2173
+ title = "title"
2174
+ loading_state = "loading_state"
2175
+
2176
+
2177
+ class Optgroup(dash.html.Optgroup):
2178
+ def _dummy(self):
2179
+ # noinspection PyAttributeOutsideInit
2180
+ self.id = None
2181
+
2182
+ class Prop(StrEnum):
2183
+ children = "children"
2184
+ id = "id"
2185
+ n_clicks = "n_clicks"
2186
+ n_clicks_timestamp = "n_clicks_timestamp"
2187
+ disable_n_clicks = "disable_n_clicks"
2188
+ key = "key"
2189
+ disabled = "disabled"
2190
+ label = "label"
2191
+ accessKey = "accessKey"
2192
+ className = "className"
2193
+ contentEditable = "contentEditable"
2194
+ dir = "dir"
2195
+ draggable = "draggable"
2196
+ hidden = "hidden"
2197
+ lang = "lang"
2198
+ role = "role"
2199
+ spellCheck = "spellCheck"
2200
+ style = "style"
2201
+ tabIndex = "tabIndex"
2202
+ title = "title"
2203
+ loading_state = "loading_state"
2204
+
2205
+
2206
+ class Option(dash.html.Option):
2207
+ def _dummy(self):
2208
+ # noinspection PyAttributeOutsideInit
2209
+ self.id = None
2210
+
2211
+ class Prop(StrEnum):
2212
+ children = "children"
2213
+ id = "id"
2214
+ n_clicks = "n_clicks"
2215
+ n_clicks_timestamp = "n_clicks_timestamp"
2216
+ disable_n_clicks = "disable_n_clicks"
2217
+ key = "key"
2218
+ disabled = "disabled"
2219
+ label = "label"
2220
+ selected = "selected"
2221
+ value = "value"
2222
+ accessKey = "accessKey"
2223
+ className = "className"
2224
+ contentEditable = "contentEditable"
2225
+ dir = "dir"
2226
+ draggable = "draggable"
2227
+ hidden = "hidden"
2228
+ lang = "lang"
2229
+ role = "role"
2230
+ spellCheck = "spellCheck"
2231
+ style = "style"
2232
+ tabIndex = "tabIndex"
2233
+ title = "title"
2234
+ loading_state = "loading_state"
2235
+
2236
+
2237
+ class Output(dash.html.Output):
2238
+ def _dummy(self):
2239
+ # noinspection PyAttributeOutsideInit
2240
+ self.id = None
2241
+
2242
+ class Prop(StrEnum):
2243
+ children = "children"
2244
+ id = "id"
2245
+ n_clicks = "n_clicks"
2246
+ n_clicks_timestamp = "n_clicks_timestamp"
2247
+ disable_n_clicks = "disable_n_clicks"
2248
+ key = "key"
2249
+ htmlFor = "htmlFor"
2250
+ form = "form"
2251
+ name = "name"
2252
+ accessKey = "accessKey"
2253
+ className = "className"
2254
+ contentEditable = "contentEditable"
2255
+ dir = "dir"
2256
+ draggable = "draggable"
2257
+ hidden = "hidden"
2258
+ lang = "lang"
2259
+ role = "role"
2260
+ spellCheck = "spellCheck"
2261
+ style = "style"
2262
+ tabIndex = "tabIndex"
2263
+ title = "title"
2264
+ loading_state = "loading_state"
2265
+
2266
+
2267
+ class P(dash.html.P):
2268
+ def _dummy(self):
2269
+ # noinspection PyAttributeOutsideInit
2270
+ self.id = None
2271
+
2272
+ class Prop(StrEnum):
2273
+ children = "children"
2274
+ id = "id"
2275
+ n_clicks = "n_clicks"
2276
+ n_clicks_timestamp = "n_clicks_timestamp"
2277
+ disable_n_clicks = "disable_n_clicks"
2278
+ key = "key"
2279
+ accessKey = "accessKey"
2280
+ className = "className"
2281
+ contentEditable = "contentEditable"
2282
+ dir = "dir"
2283
+ draggable = "draggable"
2284
+ hidden = "hidden"
2285
+ lang = "lang"
2286
+ role = "role"
2287
+ spellCheck = "spellCheck"
2288
+ style = "style"
2289
+ tabIndex = "tabIndex"
2290
+ title = "title"
2291
+ loading_state = "loading_state"
2292
+
2293
+
2294
+ class Param(dash.html.Param):
2295
+ def _dummy(self):
2296
+ # noinspection PyAttributeOutsideInit
2297
+ self.id = None
2298
+
2299
+ class Prop(StrEnum):
2300
+ children = "children"
2301
+ id = "id"
2302
+ n_clicks = "n_clicks"
2303
+ n_clicks_timestamp = "n_clicks_timestamp"
2304
+ disable_n_clicks = "disable_n_clicks"
2305
+ key = "key"
2306
+ name = "name"
2307
+ value = "value"
2308
+ accessKey = "accessKey"
2309
+ className = "className"
2310
+ contentEditable = "contentEditable"
2311
+ dir = "dir"
2312
+ draggable = "draggable"
2313
+ hidden = "hidden"
2314
+ lang = "lang"
2315
+ role = "role"
2316
+ spellCheck = "spellCheck"
2317
+ style = "style"
2318
+ tabIndex = "tabIndex"
2319
+ title = "title"
2320
+ loading_state = "loading_state"
2321
+
2322
+
2323
+ class Picture(dash.html.Picture):
2324
+ def _dummy(self):
2325
+ # noinspection PyAttributeOutsideInit
2326
+ self.id = None
2327
+
2328
+ class Prop(StrEnum):
2329
+ children = "children"
2330
+ id = "id"
2331
+ n_clicks = "n_clicks"
2332
+ n_clicks_timestamp = "n_clicks_timestamp"
2333
+ disable_n_clicks = "disable_n_clicks"
2334
+ key = "key"
2335
+ accessKey = "accessKey"
2336
+ className = "className"
2337
+ contentEditable = "contentEditable"
2338
+ dir = "dir"
2339
+ draggable = "draggable"
2340
+ hidden = "hidden"
2341
+ lang = "lang"
2342
+ role = "role"
2343
+ spellCheck = "spellCheck"
2344
+ style = "style"
2345
+ tabIndex = "tabIndex"
2346
+ title = "title"
2347
+ loading_state = "loading_state"
2348
+
2349
+
2350
+ class Plaintext(dash.html.Plaintext):
2351
+ def _dummy(self):
2352
+ # noinspection PyAttributeOutsideInit
2353
+ self.id = None
2354
+
2355
+ class Prop(StrEnum):
2356
+ children = "children"
2357
+ id = "id"
2358
+ n_clicks = "n_clicks"
2359
+ n_clicks_timestamp = "n_clicks_timestamp"
2360
+ disable_n_clicks = "disable_n_clicks"
2361
+ key = "key"
2362
+ accessKey = "accessKey"
2363
+ className = "className"
2364
+ contentEditable = "contentEditable"
2365
+ dir = "dir"
2366
+ draggable = "draggable"
2367
+ hidden = "hidden"
2368
+ lang = "lang"
2369
+ role = "role"
2370
+ spellCheck = "spellCheck"
2371
+ style = "style"
2372
+ tabIndex = "tabIndex"
2373
+ title = "title"
2374
+ loading_state = "loading_state"
2375
+
2376
+
2377
+ class Pre(dash.html.Pre):
2378
+ def _dummy(self):
2379
+ # noinspection PyAttributeOutsideInit
2380
+ self.id = None
2381
+
2382
+ class Prop(StrEnum):
2383
+ children = "children"
2384
+ id = "id"
2385
+ n_clicks = "n_clicks"
2386
+ n_clicks_timestamp = "n_clicks_timestamp"
2387
+ disable_n_clicks = "disable_n_clicks"
2388
+ key = "key"
2389
+ accessKey = "accessKey"
2390
+ className = "className"
2391
+ contentEditable = "contentEditable"
2392
+ dir = "dir"
2393
+ draggable = "draggable"
2394
+ hidden = "hidden"
2395
+ lang = "lang"
2396
+ role = "role"
2397
+ spellCheck = "spellCheck"
2398
+ style = "style"
2399
+ tabIndex = "tabIndex"
2400
+ title = "title"
2401
+ loading_state = "loading_state"
2402
+
2403
+
2404
+ class Progress(dash.html.Progress):
2405
+ def _dummy(self):
2406
+ # noinspection PyAttributeOutsideInit
2407
+ self.id = None
2408
+
2409
+ class Prop(StrEnum):
2410
+ children = "children"
2411
+ id = "id"
2412
+ n_clicks = "n_clicks"
2413
+ n_clicks_timestamp = "n_clicks_timestamp"
2414
+ disable_n_clicks = "disable_n_clicks"
2415
+ key = "key"
2416
+ form = "form"
2417
+ max = "max"
2418
+ value = "value"
2419
+ accessKey = "accessKey"
2420
+ className = "className"
2421
+ contentEditable = "contentEditable"
2422
+ dir = "dir"
2423
+ draggable = "draggable"
2424
+ hidden = "hidden"
2425
+ lang = "lang"
2426
+ role = "role"
2427
+ spellCheck = "spellCheck"
2428
+ style = "style"
2429
+ tabIndex = "tabIndex"
2430
+ title = "title"
2431
+ loading_state = "loading_state"
2432
+
2433
+
2434
+ class Q(dash.html.Q):
2435
+ def _dummy(self):
2436
+ # noinspection PyAttributeOutsideInit
2437
+ self.id = None
2438
+
2439
+ class Prop(StrEnum):
2440
+ children = "children"
2441
+ id = "id"
2442
+ n_clicks = "n_clicks"
2443
+ n_clicks_timestamp = "n_clicks_timestamp"
2444
+ disable_n_clicks = "disable_n_clicks"
2445
+ key = "key"
2446
+ cite = "cite"
2447
+ accessKey = "accessKey"
2448
+ className = "className"
2449
+ contentEditable = "contentEditable"
2450
+ dir = "dir"
2451
+ draggable = "draggable"
2452
+ hidden = "hidden"
2453
+ lang = "lang"
2454
+ role = "role"
2455
+ spellCheck = "spellCheck"
2456
+ style = "style"
2457
+ tabIndex = "tabIndex"
2458
+ title = "title"
2459
+ loading_state = "loading_state"
2460
+
2461
+
2462
+ class Rb(dash.html.Rb):
2463
+ def _dummy(self):
2464
+ # noinspection PyAttributeOutsideInit
2465
+ self.id = None
2466
+
2467
+ class Prop(StrEnum):
2468
+ children = "children"
2469
+ id = "id"
2470
+ n_clicks = "n_clicks"
2471
+ n_clicks_timestamp = "n_clicks_timestamp"
2472
+ disable_n_clicks = "disable_n_clicks"
2473
+ key = "key"
2474
+ accessKey = "accessKey"
2475
+ className = "className"
2476
+ contentEditable = "contentEditable"
2477
+ dir = "dir"
2478
+ draggable = "draggable"
2479
+ hidden = "hidden"
2480
+ lang = "lang"
2481
+ role = "role"
2482
+ spellCheck = "spellCheck"
2483
+ style = "style"
2484
+ tabIndex = "tabIndex"
2485
+ title = "title"
2486
+ loading_state = "loading_state"
2487
+
2488
+
2489
+ class Rp(dash.html.Rp):
2490
+ def _dummy(self):
2491
+ # noinspection PyAttributeOutsideInit
2492
+ self.id = None
2493
+
2494
+ class Prop(StrEnum):
2495
+ children = "children"
2496
+ id = "id"
2497
+ n_clicks = "n_clicks"
2498
+ n_clicks_timestamp = "n_clicks_timestamp"
2499
+ disable_n_clicks = "disable_n_clicks"
2500
+ key = "key"
2501
+ accessKey = "accessKey"
2502
+ className = "className"
2503
+ contentEditable = "contentEditable"
2504
+ dir = "dir"
2505
+ draggable = "draggable"
2506
+ hidden = "hidden"
2507
+ lang = "lang"
2508
+ role = "role"
2509
+ spellCheck = "spellCheck"
2510
+ style = "style"
2511
+ tabIndex = "tabIndex"
2512
+ title = "title"
2513
+ loading_state = "loading_state"
2514
+
2515
+
2516
+ class Rt(dash.html.Rt):
2517
+ def _dummy(self):
2518
+ # noinspection PyAttributeOutsideInit
2519
+ self.id = None
2520
+
2521
+ class Prop(StrEnum):
2522
+ children = "children"
2523
+ id = "id"
2524
+ n_clicks = "n_clicks"
2525
+ n_clicks_timestamp = "n_clicks_timestamp"
2526
+ disable_n_clicks = "disable_n_clicks"
2527
+ key = "key"
2528
+ accessKey = "accessKey"
2529
+ className = "className"
2530
+ contentEditable = "contentEditable"
2531
+ dir = "dir"
2532
+ draggable = "draggable"
2533
+ hidden = "hidden"
2534
+ lang = "lang"
2535
+ role = "role"
2536
+ spellCheck = "spellCheck"
2537
+ style = "style"
2538
+ tabIndex = "tabIndex"
2539
+ title = "title"
2540
+ loading_state = "loading_state"
2541
+
2542
+
2543
+ class Rtc(dash.html.Rtc):
2544
+ def _dummy(self):
2545
+ # noinspection PyAttributeOutsideInit
2546
+ self.id = None
2547
+
2548
+ class Prop(StrEnum):
2549
+ children = "children"
2550
+ id = "id"
2551
+ n_clicks = "n_clicks"
2552
+ n_clicks_timestamp = "n_clicks_timestamp"
2553
+ disable_n_clicks = "disable_n_clicks"
2554
+ key = "key"
2555
+ accessKey = "accessKey"
2556
+ className = "className"
2557
+ contentEditable = "contentEditable"
2558
+ dir = "dir"
2559
+ draggable = "draggable"
2560
+ hidden = "hidden"
2561
+ lang = "lang"
2562
+ role = "role"
2563
+ spellCheck = "spellCheck"
2564
+ style = "style"
2565
+ tabIndex = "tabIndex"
2566
+ title = "title"
2567
+ loading_state = "loading_state"
2568
+
2569
+
2570
+ class Ruby(dash.html.Ruby):
2571
+ def _dummy(self):
2572
+ # noinspection PyAttributeOutsideInit
2573
+ self.id = None
2574
+
2575
+ class Prop(StrEnum):
2576
+ children = "children"
2577
+ id = "id"
2578
+ n_clicks = "n_clicks"
2579
+ n_clicks_timestamp = "n_clicks_timestamp"
2580
+ disable_n_clicks = "disable_n_clicks"
2581
+ key = "key"
2582
+ accessKey = "accessKey"
2583
+ className = "className"
2584
+ contentEditable = "contentEditable"
2585
+ dir = "dir"
2586
+ draggable = "draggable"
2587
+ hidden = "hidden"
2588
+ lang = "lang"
2589
+ role = "role"
2590
+ spellCheck = "spellCheck"
2591
+ style = "style"
2592
+ tabIndex = "tabIndex"
2593
+ title = "title"
2594
+ loading_state = "loading_state"
2595
+
2596
+
2597
+ class S(dash.html.S):
2598
+ def _dummy(self):
2599
+ # noinspection PyAttributeOutsideInit
2600
+ self.id = None
2601
+
2602
+ class Prop(StrEnum):
2603
+ children = "children"
2604
+ id = "id"
2605
+ n_clicks = "n_clicks"
2606
+ n_clicks_timestamp = "n_clicks_timestamp"
2607
+ disable_n_clicks = "disable_n_clicks"
2608
+ key = "key"
2609
+ accessKey = "accessKey"
2610
+ className = "className"
2611
+ contentEditable = "contentEditable"
2612
+ dir = "dir"
2613
+ draggable = "draggable"
2614
+ hidden = "hidden"
2615
+ lang = "lang"
2616
+ role = "role"
2617
+ spellCheck = "spellCheck"
2618
+ style = "style"
2619
+ tabIndex = "tabIndex"
2620
+ title = "title"
2621
+ loading_state = "loading_state"
2622
+
2623
+
2624
+ class Samp(dash.html.Samp):
2625
+ def _dummy(self):
2626
+ # noinspection PyAttributeOutsideInit
2627
+ self.id = None
2628
+
2629
+ class Prop(StrEnum):
2630
+ children = "children"
2631
+ id = "id"
2632
+ n_clicks = "n_clicks"
2633
+ n_clicks_timestamp = "n_clicks_timestamp"
2634
+ disable_n_clicks = "disable_n_clicks"
2635
+ key = "key"
2636
+ accessKey = "accessKey"
2637
+ className = "className"
2638
+ contentEditable = "contentEditable"
2639
+ dir = "dir"
2640
+ draggable = "draggable"
2641
+ hidden = "hidden"
2642
+ lang = "lang"
2643
+ role = "role"
2644
+ spellCheck = "spellCheck"
2645
+ style = "style"
2646
+ tabIndex = "tabIndex"
2647
+ title = "title"
2648
+ loading_state = "loading_state"
2649
+
2650
+
2651
+ class Script(dash.html.Script):
2652
+ def _dummy(self):
2653
+ # noinspection PyAttributeOutsideInit
2654
+ self.id = None
2655
+
2656
+ class Prop(StrEnum):
2657
+ children = "children"
2658
+ id = "id"
2659
+ n_clicks = "n_clicks"
2660
+ n_clicks_timestamp = "n_clicks_timestamp"
2661
+ disable_n_clicks = "disable_n_clicks"
2662
+ key = "key"
2663
+ crossOrigin = "crossOrigin"
2664
+ defer = "defer"
2665
+ integrity = "integrity"
2666
+ referrerPolicy = "referrerPolicy"
2667
+ src = "src"
2668
+ type = "type"
2669
+ accessKey = "accessKey"
2670
+ className = "className"
2671
+ contentEditable = "contentEditable"
2672
+ dir = "dir"
2673
+ draggable = "draggable"
2674
+ hidden = "hidden"
2675
+ lang = "lang"
2676
+ role = "role"
2677
+ spellCheck = "spellCheck"
2678
+ style = "style"
2679
+ tabIndex = "tabIndex"
2680
+ title = "title"
2681
+ loading_state = "loading_state"
2682
+
2683
+
2684
+ class Section(dash.html.Section):
2685
+ def _dummy(self):
2686
+ # noinspection PyAttributeOutsideInit
2687
+ self.id = None
2688
+
2689
+ class Prop(StrEnum):
2690
+ children = "children"
2691
+ id = "id"
2692
+ n_clicks = "n_clicks"
2693
+ n_clicks_timestamp = "n_clicks_timestamp"
2694
+ disable_n_clicks = "disable_n_clicks"
2695
+ key = "key"
2696
+ accessKey = "accessKey"
2697
+ className = "className"
2698
+ contentEditable = "contentEditable"
2699
+ dir = "dir"
2700
+ draggable = "draggable"
2701
+ hidden = "hidden"
2702
+ lang = "lang"
2703
+ role = "role"
2704
+ spellCheck = "spellCheck"
2705
+ style = "style"
2706
+ tabIndex = "tabIndex"
2707
+ title = "title"
2708
+ loading_state = "loading_state"
2709
+
2710
+
2711
+ class Select(dash.html.Select):
2712
+ def _dummy(self):
2713
+ # noinspection PyAttributeOutsideInit
2714
+ self.id = None
2715
+
2716
+ class Prop(StrEnum):
2717
+ children = "children"
2718
+ id = "id"
2719
+ n_clicks = "n_clicks"
2720
+ n_clicks_timestamp = "n_clicks_timestamp"
2721
+ disable_n_clicks = "disable_n_clicks"
2722
+ key = "key"
2723
+ autoFocus = "autoFocus"
2724
+ autoComplete = "autoComplete"
2725
+ disabled = "disabled"
2726
+ form = "form"
2727
+ multiple = "multiple"
2728
+ name = "name"
2729
+ required = "required"
2730
+ size = "size"
2731
+ accessKey = "accessKey"
2732
+ className = "className"
2733
+ contentEditable = "contentEditable"
2734
+ dir = "dir"
2735
+ draggable = "draggable"
2736
+ hidden = "hidden"
2737
+ lang = "lang"
2738
+ role = "role"
2739
+ spellCheck = "spellCheck"
2740
+ style = "style"
2741
+ tabIndex = "tabIndex"
2742
+ title = "title"
2743
+ loading_state = "loading_state"
2744
+
2745
+
2746
+ class Shadow(dash.html.Shadow):
2747
+ def _dummy(self):
2748
+ # noinspection PyAttributeOutsideInit
2749
+ self.id = None
2750
+
2751
+ class Prop(StrEnum):
2752
+ children = "children"
2753
+ id = "id"
2754
+ n_clicks = "n_clicks"
2755
+ n_clicks_timestamp = "n_clicks_timestamp"
2756
+ disable_n_clicks = "disable_n_clicks"
2757
+ key = "key"
2758
+ accessKey = "accessKey"
2759
+ className = "className"
2760
+ contentEditable = "contentEditable"
2761
+ dir = "dir"
2762
+ draggable = "draggable"
2763
+ hidden = "hidden"
2764
+ lang = "lang"
2765
+ role = "role"
2766
+ spellCheck = "spellCheck"
2767
+ style = "style"
2768
+ tabIndex = "tabIndex"
2769
+ title = "title"
2770
+ loading_state = "loading_state"
2771
+
2772
+
2773
+ class Slot(dash.html.Slot):
2774
+ def _dummy(self):
2775
+ # noinspection PyAttributeOutsideInit
2776
+ self.id = None
2777
+
2778
+ class Prop(StrEnum):
2779
+ children = "children"
2780
+ id = "id"
2781
+ n_clicks = "n_clicks"
2782
+ n_clicks_timestamp = "n_clicks_timestamp"
2783
+ disable_n_clicks = "disable_n_clicks"
2784
+ key = "key"
2785
+ accessKey = "accessKey"
2786
+ className = "className"
2787
+ contentEditable = "contentEditable"
2788
+ dir = "dir"
2789
+ draggable = "draggable"
2790
+ hidden = "hidden"
2791
+ lang = "lang"
2792
+ role = "role"
2793
+ spellCheck = "spellCheck"
2794
+ style = "style"
2795
+ tabIndex = "tabIndex"
2796
+ title = "title"
2797
+ loading_state = "loading_state"
2798
+
2799
+
2800
+ class Small(dash.html.Small):
2801
+ def _dummy(self):
2802
+ # noinspection PyAttributeOutsideInit
2803
+ self.id = None
2804
+
2805
+ class Prop(StrEnum):
2806
+ children = "children"
2807
+ id = "id"
2808
+ n_clicks = "n_clicks"
2809
+ n_clicks_timestamp = "n_clicks_timestamp"
2810
+ disable_n_clicks = "disable_n_clicks"
2811
+ key = "key"
2812
+ accessKey = "accessKey"
2813
+ className = "className"
2814
+ contentEditable = "contentEditable"
2815
+ dir = "dir"
2816
+ draggable = "draggable"
2817
+ hidden = "hidden"
2818
+ lang = "lang"
2819
+ role = "role"
2820
+ spellCheck = "spellCheck"
2821
+ style = "style"
2822
+ tabIndex = "tabIndex"
2823
+ title = "title"
2824
+ loading_state = "loading_state"
2825
+
2826
+
2827
+ class Source(dash.html.Source):
2828
+ def _dummy(self):
2829
+ # noinspection PyAttributeOutsideInit
2830
+ self.id = None
2831
+
2832
+ class Prop(StrEnum):
2833
+ children = "children"
2834
+ id = "id"
2835
+ n_clicks = "n_clicks"
2836
+ n_clicks_timestamp = "n_clicks_timestamp"
2837
+ disable_n_clicks = "disable_n_clicks"
2838
+ key = "key"
2839
+ media = "media"
2840
+ sizes = "sizes"
2841
+ src = "src"
2842
+ srcSet = "srcSet"
2843
+ type = "type"
2844
+ accessKey = "accessKey"
2845
+ className = "className"
2846
+ contentEditable = "contentEditable"
2847
+ dir = "dir"
2848
+ draggable = "draggable"
2849
+ hidden = "hidden"
2850
+ lang = "lang"
2851
+ role = "role"
2852
+ spellCheck = "spellCheck"
2853
+ style = "style"
2854
+ tabIndex = "tabIndex"
2855
+ title = "title"
2856
+ loading_state = "loading_state"
2857
+
2858
+
2859
+ class Spacer(dash.html.Spacer):
2860
+ def _dummy(self):
2861
+ # noinspection PyAttributeOutsideInit
2862
+ self.id = None
2863
+
2864
+ class Prop(StrEnum):
2865
+ children = "children"
2866
+ id = "id"
2867
+ n_clicks = "n_clicks"
2868
+ n_clicks_timestamp = "n_clicks_timestamp"
2869
+ disable_n_clicks = "disable_n_clicks"
2870
+ key = "key"
2871
+ accessKey = "accessKey"
2872
+ className = "className"
2873
+ contentEditable = "contentEditable"
2874
+ dir = "dir"
2875
+ draggable = "draggable"
2876
+ hidden = "hidden"
2877
+ lang = "lang"
2878
+ role = "role"
2879
+ spellCheck = "spellCheck"
2880
+ style = "style"
2881
+ tabIndex = "tabIndex"
2882
+ title = "title"
2883
+ loading_state = "loading_state"
2884
+
2885
+
2886
+ class Span(dash.html.Span):
2887
+ def _dummy(self):
2888
+ # noinspection PyAttributeOutsideInit
2889
+ self.id = None
2890
+
2891
+ class Prop(StrEnum):
2892
+ children = "children"
2893
+ id = "id"
2894
+ n_clicks = "n_clicks"
2895
+ n_clicks_timestamp = "n_clicks_timestamp"
2896
+ disable_n_clicks = "disable_n_clicks"
2897
+ key = "key"
2898
+ accessKey = "accessKey"
2899
+ className = "className"
2900
+ contentEditable = "contentEditable"
2901
+ dir = "dir"
2902
+ draggable = "draggable"
2903
+ hidden = "hidden"
2904
+ lang = "lang"
2905
+ role = "role"
2906
+ spellCheck = "spellCheck"
2907
+ style = "style"
2908
+ tabIndex = "tabIndex"
2909
+ title = "title"
2910
+ loading_state = "loading_state"
2911
+
2912
+
2913
+ class Strike(dash.html.Strike):
2914
+ def _dummy(self):
2915
+ # noinspection PyAttributeOutsideInit
2916
+ self.id = None
2917
+
2918
+ class Prop(StrEnum):
2919
+ children = "children"
2920
+ id = "id"
2921
+ n_clicks = "n_clicks"
2922
+ n_clicks_timestamp = "n_clicks_timestamp"
2923
+ disable_n_clicks = "disable_n_clicks"
2924
+ key = "key"
2925
+ accessKey = "accessKey"
2926
+ className = "className"
2927
+ contentEditable = "contentEditable"
2928
+ dir = "dir"
2929
+ draggable = "draggable"
2930
+ hidden = "hidden"
2931
+ lang = "lang"
2932
+ role = "role"
2933
+ spellCheck = "spellCheck"
2934
+ style = "style"
2935
+ tabIndex = "tabIndex"
2936
+ title = "title"
2937
+ loading_state = "loading_state"
2938
+
2939
+
2940
+ class Strong(dash.html.Strong):
2941
+ def _dummy(self):
2942
+ # noinspection PyAttributeOutsideInit
2943
+ self.id = None
2944
+
2945
+ class Prop(StrEnum):
2946
+ children = "children"
2947
+ id = "id"
2948
+ n_clicks = "n_clicks"
2949
+ n_clicks_timestamp = "n_clicks_timestamp"
2950
+ disable_n_clicks = "disable_n_clicks"
2951
+ key = "key"
2952
+ accessKey = "accessKey"
2953
+ className = "className"
2954
+ contentEditable = "contentEditable"
2955
+ dir = "dir"
2956
+ draggable = "draggable"
2957
+ hidden = "hidden"
2958
+ lang = "lang"
2959
+ role = "role"
2960
+ spellCheck = "spellCheck"
2961
+ style = "style"
2962
+ tabIndex = "tabIndex"
2963
+ title = "title"
2964
+ loading_state = "loading_state"
2965
+
2966
+
2967
+ class Sub(dash.html.Sub):
2968
+ def _dummy(self):
2969
+ # noinspection PyAttributeOutsideInit
2970
+ self.id = None
2971
+
2972
+ class Prop(StrEnum):
2973
+ children = "children"
2974
+ id = "id"
2975
+ n_clicks = "n_clicks"
2976
+ n_clicks_timestamp = "n_clicks_timestamp"
2977
+ disable_n_clicks = "disable_n_clicks"
2978
+ key = "key"
2979
+ accessKey = "accessKey"
2980
+ className = "className"
2981
+ contentEditable = "contentEditable"
2982
+ dir = "dir"
2983
+ draggable = "draggable"
2984
+ hidden = "hidden"
2985
+ lang = "lang"
2986
+ role = "role"
2987
+ spellCheck = "spellCheck"
2988
+ style = "style"
2989
+ tabIndex = "tabIndex"
2990
+ title = "title"
2991
+ loading_state = "loading_state"
2992
+
2993
+
2994
+ class Summary(dash.html.Summary):
2995
+ def _dummy(self):
2996
+ # noinspection PyAttributeOutsideInit
2997
+ self.id = None
2998
+
2999
+ class Prop(StrEnum):
3000
+ children = "children"
3001
+ id = "id"
3002
+ n_clicks = "n_clicks"
3003
+ n_clicks_timestamp = "n_clicks_timestamp"
3004
+ disable_n_clicks = "disable_n_clicks"
3005
+ key = "key"
3006
+ accessKey = "accessKey"
3007
+ className = "className"
3008
+ contentEditable = "contentEditable"
3009
+ dir = "dir"
3010
+ draggable = "draggable"
3011
+ hidden = "hidden"
3012
+ lang = "lang"
3013
+ role = "role"
3014
+ spellCheck = "spellCheck"
3015
+ style = "style"
3016
+ tabIndex = "tabIndex"
3017
+ title = "title"
3018
+ loading_state = "loading_state"
3019
+
3020
+
3021
+ class Sup(dash.html.Sup):
3022
+ def _dummy(self):
3023
+ # noinspection PyAttributeOutsideInit
3024
+ self.id = None
3025
+
3026
+ class Prop(StrEnum):
3027
+ children = "children"
3028
+ id = "id"
3029
+ n_clicks = "n_clicks"
3030
+ n_clicks_timestamp = "n_clicks_timestamp"
3031
+ disable_n_clicks = "disable_n_clicks"
3032
+ key = "key"
3033
+ accessKey = "accessKey"
3034
+ className = "className"
3035
+ contentEditable = "contentEditable"
3036
+ dir = "dir"
3037
+ draggable = "draggable"
3038
+ hidden = "hidden"
3039
+ lang = "lang"
3040
+ role = "role"
3041
+ spellCheck = "spellCheck"
3042
+ style = "style"
3043
+ tabIndex = "tabIndex"
3044
+ title = "title"
3045
+ loading_state = "loading_state"
3046
+
3047
+
3048
+ class Table(dash.html.Table):
3049
+ def _dummy(self):
3050
+ # noinspection PyAttributeOutsideInit
3051
+ self.id = None
3052
+
3053
+ class Prop(StrEnum):
3054
+ children = "children"
3055
+ id = "id"
3056
+ n_clicks = "n_clicks"
3057
+ n_clicks_timestamp = "n_clicks_timestamp"
3058
+ disable_n_clicks = "disable_n_clicks"
3059
+ key = "key"
3060
+ accessKey = "accessKey"
3061
+ className = "className"
3062
+ contentEditable = "contentEditable"
3063
+ dir = "dir"
3064
+ draggable = "draggable"
3065
+ hidden = "hidden"
3066
+ lang = "lang"
3067
+ role = "role"
3068
+ spellCheck = "spellCheck"
3069
+ style = "style"
3070
+ tabIndex = "tabIndex"
3071
+ title = "title"
3072
+ loading_state = "loading_state"
3073
+
3074
+
3075
+ class Tbody(dash.html.Tbody):
3076
+ def _dummy(self):
3077
+ # noinspection PyAttributeOutsideInit
3078
+ self.id = None
3079
+
3080
+ class Prop(StrEnum):
3081
+ children = "children"
3082
+ id = "id"
3083
+ n_clicks = "n_clicks"
3084
+ n_clicks_timestamp = "n_clicks_timestamp"
3085
+ disable_n_clicks = "disable_n_clicks"
3086
+ key = "key"
3087
+ accessKey = "accessKey"
3088
+ className = "className"
3089
+ contentEditable = "contentEditable"
3090
+ dir = "dir"
3091
+ draggable = "draggable"
3092
+ hidden = "hidden"
3093
+ lang = "lang"
3094
+ role = "role"
3095
+ spellCheck = "spellCheck"
3096
+ style = "style"
3097
+ tabIndex = "tabIndex"
3098
+ title = "title"
3099
+ loading_state = "loading_state"
3100
+
3101
+
3102
+ class Td(dash.html.Td):
3103
+ def _dummy(self):
3104
+ # noinspection PyAttributeOutsideInit
3105
+ self.id = None
3106
+
3107
+ class Prop(StrEnum):
3108
+ children = "children"
3109
+ id = "id"
3110
+ n_clicks = "n_clicks"
3111
+ n_clicks_timestamp = "n_clicks_timestamp"
3112
+ disable_n_clicks = "disable_n_clicks"
3113
+ key = "key"
3114
+ colSpan = "colSpan"
3115
+ headers = "headers"
3116
+ rowSpan = "rowSpan"
3117
+ accessKey = "accessKey"
3118
+ className = "className"
3119
+ contentEditable = "contentEditable"
3120
+ dir = "dir"
3121
+ draggable = "draggable"
3122
+ hidden = "hidden"
3123
+ lang = "lang"
3124
+ role = "role"
3125
+ spellCheck = "spellCheck"
3126
+ style = "style"
3127
+ tabIndex = "tabIndex"
3128
+ title = "title"
3129
+ loading_state = "loading_state"
3130
+
3131
+
3132
+ class Template(dash.html.Template):
3133
+ def _dummy(self):
3134
+ # noinspection PyAttributeOutsideInit
3135
+ self.id = None
3136
+
3137
+ class Prop(StrEnum):
3138
+ children = "children"
3139
+ id = "id"
3140
+ n_clicks = "n_clicks"
3141
+ n_clicks_timestamp = "n_clicks_timestamp"
3142
+ disable_n_clicks = "disable_n_clicks"
3143
+ key = "key"
3144
+ accessKey = "accessKey"
3145
+ className = "className"
3146
+ contentEditable = "contentEditable"
3147
+ dir = "dir"
3148
+ draggable = "draggable"
3149
+ hidden = "hidden"
3150
+ lang = "lang"
3151
+ role = "role"
3152
+ spellCheck = "spellCheck"
3153
+ style = "style"
3154
+ tabIndex = "tabIndex"
3155
+ title = "title"
3156
+ loading_state = "loading_state"
3157
+
3158
+
3159
+ class Textarea(dash.html.Textarea):
3160
+ def _dummy(self):
3161
+ # noinspection PyAttributeOutsideInit
3162
+ self.id = None
3163
+
3164
+ class Prop(StrEnum):
3165
+ children = "children"
3166
+ id = "id"
3167
+ n_clicks = "n_clicks"
3168
+ n_clicks_timestamp = "n_clicks_timestamp"
3169
+ disable_n_clicks = "disable_n_clicks"
3170
+ key = "key"
3171
+ autoFocus = "autoFocus"
3172
+ autoComplete = "autoComplete"
3173
+ cols = "cols"
3174
+ disabled = "disabled"
3175
+ form = "form"
3176
+ inputMode = "inputMode"
3177
+ maxLength = "maxLength"
3178
+ minLength = "minLength"
3179
+ name = "name"
3180
+ placeholder = "placeholder"
3181
+ readOnly = "readOnly"
3182
+ required = "required"
3183
+ rows = "rows"
3184
+ wrap = "wrap"
3185
+ accessKey = "accessKey"
3186
+ className = "className"
3187
+ contentEditable = "contentEditable"
3188
+ dir = "dir"
3189
+ draggable = "draggable"
3190
+ hidden = "hidden"
3191
+ lang = "lang"
3192
+ role = "role"
3193
+ spellCheck = "spellCheck"
3194
+ style = "style"
3195
+ tabIndex = "tabIndex"
3196
+ title = "title"
3197
+ loading_state = "loading_state"
3198
+
3199
+
3200
+ class Tfoot(dash.html.Tfoot):
3201
+ def _dummy(self):
3202
+ # noinspection PyAttributeOutsideInit
3203
+ self.id = None
3204
+
3205
+ class Prop(StrEnum):
3206
+ children = "children"
3207
+ id = "id"
3208
+ n_clicks = "n_clicks"
3209
+ n_clicks_timestamp = "n_clicks_timestamp"
3210
+ disable_n_clicks = "disable_n_clicks"
3211
+ key = "key"
3212
+ accessKey = "accessKey"
3213
+ className = "className"
3214
+ contentEditable = "contentEditable"
3215
+ dir = "dir"
3216
+ draggable = "draggable"
3217
+ hidden = "hidden"
3218
+ lang = "lang"
3219
+ role = "role"
3220
+ spellCheck = "spellCheck"
3221
+ style = "style"
3222
+ tabIndex = "tabIndex"
3223
+ title = "title"
3224
+ loading_state = "loading_state"
3225
+
3226
+
3227
+ class Th(dash.html.Th):
3228
+ def _dummy(self):
3229
+ # noinspection PyAttributeOutsideInit
3230
+ self.id = None
3231
+
3232
+ class Prop(StrEnum):
3233
+ children = "children"
3234
+ id = "id"
3235
+ n_clicks = "n_clicks"
3236
+ n_clicks_timestamp = "n_clicks_timestamp"
3237
+ disable_n_clicks = "disable_n_clicks"
3238
+ key = "key"
3239
+ colSpan = "colSpan"
3240
+ headers = "headers"
3241
+ rowSpan = "rowSpan"
3242
+ scope = "scope"
3243
+ accessKey = "accessKey"
3244
+ className = "className"
3245
+ contentEditable = "contentEditable"
3246
+ dir = "dir"
3247
+ draggable = "draggable"
3248
+ hidden = "hidden"
3249
+ lang = "lang"
3250
+ role = "role"
3251
+ spellCheck = "spellCheck"
3252
+ style = "style"
3253
+ tabIndex = "tabIndex"
3254
+ title = "title"
3255
+ loading_state = "loading_state"
3256
+
3257
+
3258
+ class Thead(dash.html.Thead):
3259
+ def _dummy(self):
3260
+ # noinspection PyAttributeOutsideInit
3261
+ self.id = None
3262
+
3263
+ class Prop(StrEnum):
3264
+ children = "children"
3265
+ id = "id"
3266
+ n_clicks = "n_clicks"
3267
+ n_clicks_timestamp = "n_clicks_timestamp"
3268
+ disable_n_clicks = "disable_n_clicks"
3269
+ key = "key"
3270
+ accessKey = "accessKey"
3271
+ className = "className"
3272
+ contentEditable = "contentEditable"
3273
+ dir = "dir"
3274
+ draggable = "draggable"
3275
+ hidden = "hidden"
3276
+ lang = "lang"
3277
+ role = "role"
3278
+ spellCheck = "spellCheck"
3279
+ style = "style"
3280
+ tabIndex = "tabIndex"
3281
+ title = "title"
3282
+ loading_state = "loading_state"
3283
+
3284
+
3285
+ class Time(dash.html.Time):
3286
+ def _dummy(self):
3287
+ # noinspection PyAttributeOutsideInit
3288
+ self.id = None
3289
+
3290
+ class Prop(StrEnum):
3291
+ children = "children"
3292
+ id = "id"
3293
+ n_clicks = "n_clicks"
3294
+ n_clicks_timestamp = "n_clicks_timestamp"
3295
+ disable_n_clicks = "disable_n_clicks"
3296
+ key = "key"
3297
+ dateTime = "dateTime"
3298
+ accessKey = "accessKey"
3299
+ className = "className"
3300
+ contentEditable = "contentEditable"
3301
+ dir = "dir"
3302
+ draggable = "draggable"
3303
+ hidden = "hidden"
3304
+ lang = "lang"
3305
+ role = "role"
3306
+ spellCheck = "spellCheck"
3307
+ style = "style"
3308
+ tabIndex = "tabIndex"
3309
+ title = "title"
3310
+ loading_state = "loading_state"
3311
+
3312
+
3313
+ class Title(dash.html.Title):
3314
+ def _dummy(self):
3315
+ # noinspection PyAttributeOutsideInit
3316
+ self.id = None
3317
+
3318
+ class Prop(StrEnum):
3319
+ children = "children"
3320
+ id = "id"
3321
+ n_clicks = "n_clicks"
3322
+ n_clicks_timestamp = "n_clicks_timestamp"
3323
+ disable_n_clicks = "disable_n_clicks"
3324
+ key = "key"
3325
+ accessKey = "accessKey"
3326
+ className = "className"
3327
+ contentEditable = "contentEditable"
3328
+ dir = "dir"
3329
+ draggable = "draggable"
3330
+ hidden = "hidden"
3331
+ lang = "lang"
3332
+ role = "role"
3333
+ spellCheck = "spellCheck"
3334
+ style = "style"
3335
+ tabIndex = "tabIndex"
3336
+ title = "title"
3337
+ loading_state = "loading_state"
3338
+
3339
+
3340
+ class Tr(dash.html.Tr):
3341
+ def _dummy(self):
3342
+ # noinspection PyAttributeOutsideInit
3343
+ self.id = None
3344
+
3345
+ class Prop(StrEnum):
3346
+ children = "children"
3347
+ id = "id"
3348
+ n_clicks = "n_clicks"
3349
+ n_clicks_timestamp = "n_clicks_timestamp"
3350
+ disable_n_clicks = "disable_n_clicks"
3351
+ key = "key"
3352
+ accessKey = "accessKey"
3353
+ className = "className"
3354
+ contentEditable = "contentEditable"
3355
+ dir = "dir"
3356
+ draggable = "draggable"
3357
+ hidden = "hidden"
3358
+ lang = "lang"
3359
+ role = "role"
3360
+ spellCheck = "spellCheck"
3361
+ style = "style"
3362
+ tabIndex = "tabIndex"
3363
+ title = "title"
3364
+ loading_state = "loading_state"
3365
+
3366
+
3367
+ class Track(dash.html.Track):
3368
+ def _dummy(self):
3369
+ # noinspection PyAttributeOutsideInit
3370
+ self.id = None
3371
+
3372
+ class Prop(StrEnum):
3373
+ children = "children"
3374
+ id = "id"
3375
+ n_clicks = "n_clicks"
3376
+ n_clicks_timestamp = "n_clicks_timestamp"
3377
+ disable_n_clicks = "disable_n_clicks"
3378
+ key = "key"
3379
+ default = "default"
3380
+ kind = "kind"
3381
+ label = "label"
3382
+ src = "src"
3383
+ srcLang = "srcLang"
3384
+ accessKey = "accessKey"
3385
+ className = "className"
3386
+ contentEditable = "contentEditable"
3387
+ dir = "dir"
3388
+ draggable = "draggable"
3389
+ hidden = "hidden"
3390
+ lang = "lang"
3391
+ role = "role"
3392
+ spellCheck = "spellCheck"
3393
+ style = "style"
3394
+ tabIndex = "tabIndex"
3395
+ title = "title"
3396
+ loading_state = "loading_state"
3397
+
3398
+
3399
+ class U(dash.html.U):
3400
+ def _dummy(self):
3401
+ # noinspection PyAttributeOutsideInit
3402
+ self.id = None
3403
+
3404
+ class Prop(StrEnum):
3405
+ children = "children"
3406
+ id = "id"
3407
+ n_clicks = "n_clicks"
3408
+ n_clicks_timestamp = "n_clicks_timestamp"
3409
+ disable_n_clicks = "disable_n_clicks"
3410
+ key = "key"
3411
+ accessKey = "accessKey"
3412
+ className = "className"
3413
+ contentEditable = "contentEditable"
3414
+ dir = "dir"
3415
+ draggable = "draggable"
3416
+ hidden = "hidden"
3417
+ lang = "lang"
3418
+ role = "role"
3419
+ spellCheck = "spellCheck"
3420
+ style = "style"
3421
+ tabIndex = "tabIndex"
3422
+ title = "title"
3423
+ loading_state = "loading_state"
3424
+
3425
+
3426
+ class Ul(dash.html.Ul):
3427
+ def _dummy(self):
3428
+ # noinspection PyAttributeOutsideInit
3429
+ self.id = None
3430
+
3431
+ class Prop(StrEnum):
3432
+ children = "children"
3433
+ id = "id"
3434
+ n_clicks = "n_clicks"
3435
+ n_clicks_timestamp = "n_clicks_timestamp"
3436
+ disable_n_clicks = "disable_n_clicks"
3437
+ key = "key"
3438
+ accessKey = "accessKey"
3439
+ className = "className"
3440
+ contentEditable = "contentEditable"
3441
+ dir = "dir"
3442
+ draggable = "draggable"
3443
+ hidden = "hidden"
3444
+ lang = "lang"
3445
+ role = "role"
3446
+ spellCheck = "spellCheck"
3447
+ style = "style"
3448
+ tabIndex = "tabIndex"
3449
+ title = "title"
3450
+ loading_state = "loading_state"
3451
+
3452
+
3453
+ class Var(dash.html.Var):
3454
+ def _dummy(self):
3455
+ # noinspection PyAttributeOutsideInit
3456
+ self.id = None
3457
+
3458
+ class Prop(StrEnum):
3459
+ children = "children"
3460
+ id = "id"
3461
+ n_clicks = "n_clicks"
3462
+ n_clicks_timestamp = "n_clicks_timestamp"
3463
+ disable_n_clicks = "disable_n_clicks"
3464
+ key = "key"
3465
+ accessKey = "accessKey"
3466
+ className = "className"
3467
+ contentEditable = "contentEditable"
3468
+ dir = "dir"
3469
+ draggable = "draggable"
3470
+ hidden = "hidden"
3471
+ lang = "lang"
3472
+ role = "role"
3473
+ spellCheck = "spellCheck"
3474
+ style = "style"
3475
+ tabIndex = "tabIndex"
3476
+ title = "title"
3477
+ loading_state = "loading_state"
3478
+
3479
+
3480
+ class Video(dash.html.Video):
3481
+ def _dummy(self):
3482
+ # noinspection PyAttributeOutsideInit
3483
+ self.id = None
3484
+
3485
+ class Prop(StrEnum):
3486
+ children = "children"
3487
+ id = "id"
3488
+ n_clicks = "n_clicks"
3489
+ n_clicks_timestamp = "n_clicks_timestamp"
3490
+ disable_n_clicks = "disable_n_clicks"
3491
+ key = "key"
3492
+ autoPlay = "autoPlay"
3493
+ controls = "controls"
3494
+ crossOrigin = "crossOrigin"
3495
+ height = "height"
3496
+ loop = "loop"
3497
+ muted = "muted"
3498
+ poster = "poster"
3499
+ preload = "preload"
3500
+ src = "src"
3501
+ width = "width"
3502
+ accessKey = "accessKey"
3503
+ className = "className"
3504
+ contentEditable = "contentEditable"
3505
+ dir = "dir"
3506
+ draggable = "draggable"
3507
+ hidden = "hidden"
3508
+ lang = "lang"
3509
+ role = "role"
3510
+ spellCheck = "spellCheck"
3511
+ style = "style"
3512
+ tabIndex = "tabIndex"
3513
+ title = "title"
3514
+ loading_state = "loading_state"
3515
+
3516
+
3517
+ class Wbr(dash.html.Wbr):
3518
+ def _dummy(self):
3519
+ # noinspection PyAttributeOutsideInit
3520
+ self.id = None
3521
+
3522
+ class Prop(StrEnum):
3523
+ children = "children"
3524
+ id = "id"
3525
+ n_clicks = "n_clicks"
3526
+ n_clicks_timestamp = "n_clicks_timestamp"
3527
+ disable_n_clicks = "disable_n_clicks"
3528
+ key = "key"
3529
+ accessKey = "accessKey"
3530
+ className = "className"
3531
+ contentEditable = "contentEditable"
3532
+ dir = "dir"
3533
+ draggable = "draggable"
3534
+ hidden = "hidden"
3535
+ lang = "lang"
3536
+ role = "role"
3537
+ spellCheck = "spellCheck"
3538
+ style = "style"
3539
+ tabIndex = "tabIndex"
3540
+ title = "title"
3541
+ loading_state = "loading_state"
3542
+
3543
+
3544
+ class Xmp(dash.html.Xmp):
3545
+ def _dummy(self):
3546
+ # noinspection PyAttributeOutsideInit
3547
+ self.id = None
3548
+
3549
+ class Prop(StrEnum):
3550
+ children = "children"
3551
+ id = "id"
3552
+ n_clicks = "n_clicks"
3553
+ n_clicks_timestamp = "n_clicks_timestamp"
3554
+ disable_n_clicks = "disable_n_clicks"
3555
+ key = "key"
3556
+ accessKey = "accessKey"
3557
+ className = "className"
3558
+ contentEditable = "contentEditable"
3559
+ dir = "dir"
3560
+ draggable = "draggable"
3561
+ hidden = "hidden"
3562
+ lang = "lang"
3563
+ role = "role"
3564
+ spellCheck = "spellCheck"
3565
+ style = "style"
3566
+ tabIndex = "tabIndex"
3567
+ title = "title"
3568
+ loading_state = "loading_state"
3569
+
3570
+