reflex 0.6.7a2__py3-none-any.whl → 0.6.8a1__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 reflex might be problematic. Click here for more details.

Files changed (65) hide show
  1. reflex/.templates/jinja/web/pages/_app.js.jinja2 +2 -4
  2. reflex/.templates/jinja/web/pages/custom_component.js.jinja2 +3 -4
  3. reflex/.templates/jinja/web/pages/index.js.jinja2 +2 -3
  4. reflex/.templates/jinja/web/pages/macros.js.jinja2 +38 -0
  5. reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +4 -16
  6. reflex/.templates/jinja/web/utils/context.js.jinja2 +1 -1
  7. reflex/.templates/web/utils/state.js +9 -4
  8. reflex/app.py +18 -10
  9. reflex/compiler/compiler.py +2 -2
  10. reflex/compiler/templates.py +41 -0
  11. reflex/compiler/utils.py +1 -1
  12. reflex/components/base/bare.py +7 -3
  13. reflex/components/component.py +78 -116
  14. reflex/components/core/banner.py +1 -1
  15. reflex/components/core/breakpoints.py +1 -1
  16. reflex/components/datadisplay/code.py +14 -10
  17. reflex/components/datadisplay/dataeditor.py +1 -1
  18. reflex/components/datadisplay/dataeditor.pyi +1 -1
  19. reflex/components/el/elements/forms.py +7 -5
  20. reflex/components/el/elements/metadata.py +1 -1
  21. reflex/components/lucide/icon.py +142 -19
  22. reflex/components/lucide/icon.pyi +141 -18
  23. reflex/components/markdown/markdown.py +3 -2
  24. reflex/components/plotly/plotly.py +3 -3
  25. reflex/components/plotly/plotly.pyi +3 -3
  26. reflex/components/radix/primitives/slider.py +1 -1
  27. reflex/components/radix/themes/layout/center.pyi +1 -1
  28. reflex/components/radix/themes/layout/flex.py +1 -1
  29. reflex/components/radix/themes/layout/flex.pyi +1 -1
  30. reflex/components/radix/themes/layout/grid.py +1 -1
  31. reflex/components/radix/themes/layout/grid.pyi +1 -1
  32. reflex/components/radix/themes/layout/spacer.pyi +1 -1
  33. reflex/components/radix/themes/layout/stack.pyi +3 -3
  34. reflex/components/radix/themes/typography/link.py +1 -1
  35. reflex/components/recharts/cartesian.py +2 -2
  36. reflex/components/recharts/cartesian.pyi +6 -6
  37. reflex/components/recharts/charts.py +2 -2
  38. reflex/components/recharts/polar.py +2 -2
  39. reflex/components/recharts/polar.pyi +2 -2
  40. reflex/components/sonner/toast.py +1 -1
  41. reflex/config.py +5 -0
  42. reflex/constants/base.py +1 -1
  43. reflex/constants/compiler.py +1 -0
  44. reflex/event.py +91 -1
  45. reflex/experimental/client_state.py +42 -20
  46. reflex/istate/data.py +3 -3
  47. reflex/model.py +4 -5
  48. reflex/page.py +1 -1
  49. reflex/proxy.py +119 -0
  50. reflex/reflex.py +8 -1
  51. reflex/state.py +116 -9
  52. reflex/testing.py +19 -8
  53. reflex/utils/console.py +6 -1
  54. reflex/utils/exceptions.py +4 -0
  55. reflex/utils/prerequisites.py +37 -20
  56. reflex/utils/processes.py +2 -2
  57. reflex/utils/pyi_generator.py +2 -2
  58. reflex/utils/telemetry.py +6 -4
  59. reflex/vars/base.py +14 -3
  60. reflex/vars/sequence.py +37 -0
  61. {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/METADATA +4 -2
  62. {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/RECORD +65 -63
  63. {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/LICENSE +0 -0
  64. {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/WHEEL +0 -0
  65. {reflex-0.6.7a2.dist-info → reflex-0.6.8a1.dist-info}/entry_points.txt +0 -0
@@ -154,6 +154,7 @@ LUCIDE_ICON_LIST = [
154
154
  "ambulance",
155
155
  "ampersand",
156
156
  "ampersands",
157
+ "amphora",
157
158
  "anchor",
158
159
  "angry",
159
160
  "annoyed",
@@ -241,6 +242,7 @@ LUCIDE_ICON_LIST = [
241
242
  "baggage_claim",
242
243
  "ban",
243
244
  "banana",
245
+ "bandage",
244
246
  "banknote",
245
247
  "bar_chart",
246
248
  "bar_chart_2",
@@ -278,8 +280,10 @@ LUCIDE_ICON_LIST = [
278
280
  "between_horizontal_start",
279
281
  "between_vertical_end",
280
282
  "between_vertical_start",
283
+ "biceps_flexed",
281
284
  "bike",
282
285
  "binary",
286
+ "binoculars",
283
287
  "biohazard",
284
288
  "bird",
285
289
  "bitcoin",
@@ -326,6 +330,7 @@ LUCIDE_ICON_LIST = [
326
330
  "boom_box",
327
331
  "bot",
328
332
  "bot_message_square",
333
+ "bot_off",
329
334
  "box",
330
335
  "box_select",
331
336
  "boxes",
@@ -337,6 +342,7 @@ LUCIDE_ICON_LIST = [
337
342
  "brick_wall",
338
343
  "briefcase",
339
344
  "briefcase_business",
345
+ "briefcase_conveyor_belt",
340
346
  "briefcase_medical",
341
347
  "bring_to_front",
342
348
  "brush",
@@ -353,9 +359,13 @@ LUCIDE_ICON_LIST = [
353
359
  "cake_slice",
354
360
  "calculator",
355
361
  "calendar",
362
+ "calendar_1",
363
+ "calendar_arrow_down",
364
+ "calendar_arrow_up",
356
365
  "calendar_check",
357
366
  "calendar_check_2",
358
367
  "calendar_clock",
368
+ "calendar_cog",
359
369
  "calendar_days",
360
370
  "calendar_fold",
361
371
  "calendar_heart",
@@ -366,6 +376,7 @@ LUCIDE_ICON_LIST = [
366
376
  "calendar_plus_2",
367
377
  "calendar_range",
368
378
  "calendar_search",
379
+ "calendar_sync",
369
380
  "calendar_x",
370
381
  "calendar_x_2",
371
382
  "camera",
@@ -390,6 +401,29 @@ LUCIDE_ICON_LIST = [
390
401
  "castle",
391
402
  "cat",
392
403
  "cctv",
404
+ "chart_area",
405
+ "chart_bar",
406
+ "chart_bar_big",
407
+ "chart_bar_decreasing",
408
+ "chart_bar_increasing",
409
+ "chart_bar_stacked",
410
+ "chart_candlestick",
411
+ "chart_column",
412
+ "chart_column_big",
413
+ "chart_column_decreasing",
414
+ "chart_column_increasing",
415
+ "chart_column_stacked",
416
+ "chart_gantt",
417
+ "chart_line",
418
+ "chart_network",
419
+ "chart_no_axes_column",
420
+ "chart_no_axes_column_decreasing",
421
+ "chart_no_axes_column_increasing",
422
+ "chart_no_axes_combined",
423
+ "chart_no_axes_gantt",
424
+ "chart_pie",
425
+ "chart_scatter",
426
+ "chart_spline",
393
427
  "check",
394
428
  "check_check",
395
429
  "chef_hat",
@@ -404,6 +438,7 @@ LUCIDE_ICON_LIST = [
404
438
  "chevrons_down_up",
405
439
  "chevrons_left",
406
440
  "chevrons_left_right",
441
+ "chevrons_left_right_ellipsis",
407
442
  "chevrons_right",
408
443
  "chevrons_right_left",
409
444
  "chevrons_up",
@@ -422,8 +457,8 @@ LUCIDE_ICON_LIST = [
422
457
  "circle_arrow_out_up_right",
423
458
  "circle_arrow_right",
424
459
  "circle_arrow_up",
425
- "circle_check_big",
426
460
  "circle_check",
461
+ "circle_check_big",
427
462
  "circle_chevron_down",
428
463
  "circle_chevron_left",
429
464
  "circle_chevron_right",
@@ -435,13 +470,14 @@ LUCIDE_ICON_LIST = [
435
470
  "circle_dot_dashed",
436
471
  "circle_ellipsis",
437
472
  "circle_equal",
473
+ "circle_fading_arrow_up",
438
474
  "circle_fading_plus",
439
475
  "circle_gauge",
440
476
  "circle_help",
441
477
  "circle_minus",
442
478
  "circle_off",
443
- "circle_parking_off",
444
479
  "circle_parking",
480
+ "circle_parking_off",
445
481
  "circle_pause",
446
482
  "circle_percent",
447
483
  "circle_play",
@@ -480,7 +516,11 @@ LUCIDE_ICON_LIST = [
480
516
  "clock_7",
481
517
  "clock_8",
482
518
  "clock_9",
519
+ "clock_alert",
520
+ "clock_arrow_down",
521
+ "clock_arrow_up",
483
522
  "cloud",
523
+ "cloud_alert",
484
524
  "cloud_cog",
485
525
  "cloud_download",
486
526
  "cloud_drizzle",
@@ -551,6 +591,7 @@ LUCIDE_ICON_LIST = [
551
591
  "cup_soda",
552
592
  "currency",
553
593
  "cylinder",
594
+ "dam",
554
595
  "database",
555
596
  "database_backup",
556
597
  "database_zap",
@@ -558,7 +599,9 @@ LUCIDE_ICON_LIST = [
558
599
  "dessert",
559
600
  "diameter",
560
601
  "diamond",
602
+ "diamond_minus",
561
603
  "diamond_percent",
604
+ "diamond_plus",
562
605
  "dice_1",
563
606
  "dice_2",
564
607
  "dice_3",
@@ -587,6 +630,7 @@ LUCIDE_ICON_LIST = [
587
630
  "dribbble",
588
631
  "drill",
589
632
  "droplet",
633
+ "droplet_off",
590
634
  "droplets",
591
635
  "drum",
592
636
  "drumstick",
@@ -602,12 +646,15 @@ LUCIDE_ICON_LIST = [
602
646
  "ellipsis",
603
647
  "ellipsis_vertical",
604
648
  "equal",
649
+ "equal_approximately",
605
650
  "equal_not",
606
651
  "eraser",
652
+ "ethernet_port",
607
653
  "euro",
608
654
  "expand",
609
655
  "external_link",
610
656
  "eye",
657
+ "eye_closed",
611
658
  "eye_off",
612
659
  "facebook",
613
660
  "factory",
@@ -627,6 +674,10 @@ LUCIDE_ICON_LIST = [
627
674
  "file_bar_chart",
628
675
  "file_bar_chart_2",
629
676
  "file_box",
677
+ "file_chart_column",
678
+ "file_chart_column_increasing",
679
+ "file_chart_line",
680
+ "file_chart_pie",
630
681
  "file_check",
631
682
  "file_check_2",
632
683
  "file_clock",
@@ -668,6 +719,7 @@ LUCIDE_ICON_LIST = [
668
719
  "file_type",
669
720
  "file_type_2",
670
721
  "file_up",
722
+ "file_user",
671
723
  "file_video",
672
724
  "file_video_2",
673
725
  "file_volume",
@@ -709,6 +761,7 @@ LUCIDE_ICON_LIST = [
709
761
  "folder_check",
710
762
  "folder_clock",
711
763
  "folder_closed",
764
+ "folder_code",
712
765
  "folder_cog",
713
766
  "folder_dot",
714
767
  "folder_down",
@@ -781,7 +834,12 @@ LUCIDE_ICON_LIST = [
781
834
  "graduation_cap",
782
835
  "grape",
783
836
  "grid_2x2",
837
+ "grid_2x_2",
838
+ "grid_2x_2_check",
839
+ "grid_2x_2_plus",
840
+ "grid_2x_2_x",
784
841
  "grid_3x3",
842
+ "grid_3x_3",
785
843
  "grip",
786
844
  "grip_horizontal",
787
845
  "grip_vertical",
@@ -810,6 +868,7 @@ LUCIDE_ICON_LIST = [
810
868
  "heading_4",
811
869
  "heading_5",
812
870
  "heading_6",
871
+ "headphone_off",
813
872
  "headphones",
814
873
  "headset",
815
874
  "heart",
@@ -827,14 +886,20 @@ LUCIDE_ICON_LIST = [
827
886
  "hospital",
828
887
  "hotel",
829
888
  "hourglass",
889
+ "house",
890
+ "house_plug",
891
+ "house_plus",
830
892
  "ice_cream_bowl",
831
893
  "ice_cream_cone",
894
+ "id_card",
832
895
  "image",
833
896
  "image_down",
834
897
  "image_minus",
835
898
  "image_off",
899
+ "image_play",
836
900
  "image_plus",
837
901
  "image_up",
902
+ "image_upscale",
838
903
  "images",
839
904
  "import",
840
905
  "inbox",
@@ -856,6 +921,7 @@ LUCIDE_ICON_LIST = [
856
921
  "key_square",
857
922
  "keyboard",
858
923
  "keyboard_music",
924
+ "keyboard_off",
859
925
  "lamp",
860
926
  "lamp_ceiling",
861
927
  "lamp_desk",
@@ -865,8 +931,9 @@ LUCIDE_ICON_LIST = [
865
931
  "land_plot",
866
932
  "landmark",
867
933
  "languages",
868
- "laptop_minimal",
869
934
  "laptop",
935
+ "laptop_minimal",
936
+ "laptop_minimal_check",
870
937
  "lasso",
871
938
  "lasso_select",
872
939
  "laugh",
@@ -881,6 +948,8 @@ LUCIDE_ICON_LIST = [
881
948
  "layout_template",
882
949
  "leaf",
883
950
  "leafy_green",
951
+ "lectern",
952
+ "letter_text",
884
953
  "library",
885
954
  "library_big",
886
955
  "life_buoy",
@@ -893,10 +962,12 @@ LUCIDE_ICON_LIST = [
893
962
  "link_2_off",
894
963
  "linkedin",
895
964
  "list",
965
+ "list_check",
896
966
  "list_checks",
897
967
  "list_collapse",
898
968
  "list_end",
899
969
  "list_filter",
970
+ "list_filter_plus",
900
971
  "list_minus",
901
972
  "list_music",
902
973
  "list_ordered",
@@ -909,15 +980,17 @@ LUCIDE_ICON_LIST = [
909
980
  "list_x",
910
981
  "loader",
911
982
  "loader_circle",
983
+ "loader_pinwheel",
912
984
  "locate",
913
985
  "locate_fixed",
914
986
  "locate_off",
915
987
  "lock",
916
- "lock_keyhole_open",
917
988
  "lock_keyhole",
989
+ "lock_keyhole_open",
918
990
  "lock_open",
919
991
  "log_in",
920
992
  "log_out",
993
+ "logs",
921
994
  "lollipop",
922
995
  "luggage",
923
996
  "magnet",
@@ -934,7 +1007,16 @@ LUCIDE_ICON_LIST = [
934
1007
  "mails",
935
1008
  "map",
936
1009
  "map_pin",
1010
+ "map_pin_check",
1011
+ "map_pin_check_inside",
1012
+ "map_pin_house",
1013
+ "map_pin_minus",
1014
+ "map_pin_minus_inside",
937
1015
  "map_pin_off",
1016
+ "map_pin_plus",
1017
+ "map_pin_plus_inside",
1018
+ "map_pin_x",
1019
+ "map_pin_x_inside",
938
1020
  "map_pinned",
939
1021
  "martini",
940
1022
  "maximize",
@@ -963,6 +1045,7 @@ LUCIDE_ICON_LIST = [
963
1045
  "message_square_diff",
964
1046
  "message_square_dot",
965
1047
  "message_square_heart",
1048
+ "message_square_lock",
966
1049
  "message_square_more",
967
1050
  "message_square_off",
968
1051
  "message_square_plus",
@@ -974,8 +1057,9 @@ LUCIDE_ICON_LIST = [
974
1057
  "message_square_x",
975
1058
  "messages_square",
976
1059
  "mic",
977
- "mic_vocal",
978
1060
  "mic_off",
1061
+ "mic_vocal",
1062
+ "microchip",
979
1063
  "microscope",
980
1064
  "microwave",
981
1065
  "milestone",
@@ -986,6 +1070,7 @@ LUCIDE_ICON_LIST = [
986
1070
  "minus",
987
1071
  "monitor",
988
1072
  "monitor_check",
1073
+ "monitor_cog",
989
1074
  "monitor_dot",
990
1075
  "monitor_down",
991
1076
  "monitor_off",
@@ -1001,8 +1086,10 @@ LUCIDE_ICON_LIST = [
1001
1086
  "mountain",
1002
1087
  "mountain_snow",
1003
1088
  "mouse",
1089
+ "mouse_off",
1004
1090
  "mouse_pointer",
1005
1091
  "mouse_pointer_2",
1092
+ "mouse_pointer_ban",
1006
1093
  "mouse_pointer_click",
1007
1094
  "move",
1008
1095
  "move_3d",
@@ -1039,10 +1126,13 @@ LUCIDE_ICON_LIST = [
1039
1126
  "nut_off",
1040
1127
  "octagon",
1041
1128
  "octagon_alert",
1129
+ "octagon_minus",
1042
1130
  "octagon_pause",
1043
1131
  "octagon_x",
1132
+ "omega",
1044
1133
  "option",
1045
1134
  "orbit",
1135
+ "origami",
1046
1136
  "package",
1047
1137
  "package_2",
1048
1138
  "package_check",
@@ -1055,6 +1145,7 @@ LUCIDE_ICON_LIST = [
1055
1145
  "paint_roller",
1056
1146
  "paintbrush",
1057
1147
  "paintbrush_2",
1148
+ "paintbrush_vertical",
1058
1149
  "palette",
1059
1150
  "panel_bottom",
1060
1151
  "panel_bottom_close",
@@ -1084,13 +1175,16 @@ LUCIDE_ICON_LIST = [
1084
1175
  "pc_case",
1085
1176
  "pen",
1086
1177
  "pen_line",
1178
+ "pen_off",
1087
1179
  "pen_tool",
1088
1180
  "pencil",
1089
1181
  "pencil_line",
1182
+ "pencil_off",
1090
1183
  "pencil_ruler",
1091
1184
  "pentagon",
1092
1185
  "percent",
1093
1186
  "person_standing",
1187
+ "philippine_peso",
1094
1188
  "phone",
1095
1189
  "phone_call",
1096
1190
  "phone_forwarded",
@@ -1106,7 +1200,10 @@ LUCIDE_ICON_LIST = [
1106
1200
  "pie_chart",
1107
1201
  "piggy_bank",
1108
1202
  "pilcrow",
1203
+ "pilcrow_left",
1204
+ "pilcrow_right",
1109
1205
  "pill",
1206
+ "pill_bottle",
1110
1207
  "pin",
1111
1208
  "pin_off",
1112
1209
  "pipette",
@@ -1132,6 +1229,7 @@ LUCIDE_ICON_LIST = [
1132
1229
  "power_off",
1133
1230
  "presentation",
1134
1231
  "printer",
1232
+ "printer_check",
1135
1233
  "projector",
1136
1234
  "proportions",
1137
1235
  "puzzle",
@@ -1206,6 +1304,7 @@ LUCIDE_ICON_LIST = [
1206
1304
  "satellite_dish",
1207
1305
  "save",
1208
1306
  "save_all",
1307
+ "save_off",
1209
1308
  "scale",
1210
1309
  "scale_3d",
1211
1310
  "scaling",
@@ -1213,7 +1312,9 @@ LUCIDE_ICON_LIST = [
1213
1312
  "scan_barcode",
1214
1313
  "scan_eye",
1215
1314
  "scan_face",
1315
+ "scan_heart",
1216
1316
  "scan_line",
1317
+ "scan_qr_code",
1217
1318
  "scan_search",
1218
1319
  "scan_text",
1219
1320
  "scatter_chart",
@@ -1229,6 +1330,7 @@ LUCIDE_ICON_LIST = [
1229
1330
  "search_code",
1230
1331
  "search_slash",
1231
1332
  "search_x",
1333
+ "section",
1232
1334
  "send",
1233
1335
  "send_horizontal",
1234
1336
  "send_to_back",
@@ -1273,6 +1375,7 @@ LUCIDE_ICON_LIST = [
1273
1375
  "signal_low",
1274
1376
  "signal_medium",
1275
1377
  "signal_zero",
1378
+ "signature",
1276
1379
  "signpost",
1277
1380
  "signpost_big",
1278
1381
  "siren",
@@ -1282,8 +1385,8 @@ LUCIDE_ICON_LIST = [
1282
1385
  "slack",
1283
1386
  "slash",
1284
1387
  "slice",
1285
- "sliders_vertical",
1286
1388
  "sliders_horizontal",
1389
+ "sliders_vertical",
1287
1390
  "smartphone",
1288
1391
  "smartphone_charging",
1289
1392
  "smartphone_nfc",
@@ -1307,29 +1410,31 @@ LUCIDE_ICON_LIST = [
1307
1410
  "sprout",
1308
1411
  "square",
1309
1412
  "square_activity",
1413
+ "square_arrow_down",
1310
1414
  "square_arrow_down_left",
1311
1415
  "square_arrow_down_right",
1312
- "square_arrow_down",
1313
1416
  "square_arrow_left",
1314
1417
  "square_arrow_out_down_left",
1315
1418
  "square_arrow_out_down_right",
1316
1419
  "square_arrow_out_up_left",
1317
1420
  "square_arrow_out_up_right",
1318
1421
  "square_arrow_right",
1422
+ "square_arrow_up",
1319
1423
  "square_arrow_up_left",
1320
1424
  "square_arrow_up_right",
1321
- "square_arrow_up",
1322
1425
  "square_asterisk",
1323
1426
  "square_bottom_dashed_scissors",
1324
- "square_check_big",
1427
+ "square_chart_gantt",
1325
1428
  "square_check",
1429
+ "square_check_big",
1326
1430
  "square_chevron_down",
1327
1431
  "square_chevron_left",
1328
1432
  "square_chevron_right",
1329
1433
  "square_chevron_up",
1330
1434
  "square_code",
1331
- "square_dashed_bottom_code",
1435
+ "square_dashed",
1332
1436
  "square_dashed_bottom",
1437
+ "square_dashed_bottom_code",
1333
1438
  "square_dashed_kanban",
1334
1439
  "square_dashed_mouse_pointer",
1335
1440
  "square_divide",
@@ -1343,8 +1448,8 @@ LUCIDE_ICON_LIST = [
1343
1448
  "square_menu",
1344
1449
  "square_minus",
1345
1450
  "square_mouse_pointer",
1346
- "square_parking_off",
1347
1451
  "square_parking",
1452
+ "square_parking_off",
1348
1453
  "square_pen",
1349
1454
  "square_percent",
1350
1455
  "square_pi",
@@ -1358,10 +1463,11 @@ LUCIDE_ICON_LIST = [
1358
1463
  "square_slash",
1359
1464
  "square_split_horizontal",
1360
1465
  "square_split_vertical",
1466
+ "square_square",
1361
1467
  "square_stack",
1362
1468
  "square_terminal",
1363
- "square_user_round",
1364
1469
  "square_user",
1470
+ "square_user_round",
1365
1471
  "square_x",
1366
1472
  "squircle",
1367
1473
  "squirrel",
@@ -1398,6 +1504,7 @@ LUCIDE_ICON_LIST = [
1398
1504
  "table_cells_merge",
1399
1505
  "table_cells_split",
1400
1506
  "table_columns_split",
1507
+ "table_of_contents",
1401
1508
  "table_properties",
1402
1509
  "table_rows_split",
1403
1510
  "tablet",
@@ -1413,11 +1520,11 @@ LUCIDE_ICON_LIST = [
1413
1520
  "tangent",
1414
1521
  "target",
1415
1522
  "telescope",
1523
+ "tent",
1416
1524
  "tent_tree",
1417
1525
  "terminal",
1418
- "test_tube_diagonal",
1419
1526
  "test_tube",
1420
- "tent",
1527
+ "test_tube_diagonal",
1421
1528
  "test_tubes",
1422
1529
  "text",
1423
1530
  "text_cursor",
@@ -1438,11 +1545,14 @@ LUCIDE_ICON_LIST = [
1438
1545
  "ticket_plus",
1439
1546
  "ticket_slash",
1440
1547
  "ticket_x",
1548
+ "tickets",
1549
+ "tickets_plane",
1441
1550
  "timer",
1442
1551
  "timer_off",
1443
1552
  "timer_reset",
1444
1553
  "toggle_left",
1445
1554
  "toggle_right",
1555
+ "toilet",
1446
1556
  "tornado",
1447
1557
  "torus",
1448
1558
  "touchpad",
@@ -1464,17 +1574,21 @@ LUCIDE_ICON_LIST = [
1464
1574
  "trello",
1465
1575
  "trending_down",
1466
1576
  "trending_up",
1577
+ "trending_up_down",
1467
1578
  "triangle",
1468
- "triangle_right",
1469
1579
  "triangle_alert",
1580
+ "triangle_right",
1470
1581
  "trophy",
1471
1582
  "truck",
1472
1583
  "turtle",
1473
1584
  "tv",
1474
1585
  "tv_2",
1586
+ "tv_minimal",
1587
+ "tv_minimal_play",
1475
1588
  "twitch",
1476
1589
  "twitter",
1477
1590
  "type",
1591
+ "type_outline",
1478
1592
  "umbrella",
1479
1593
  "umbrella_off",
1480
1594
  "underline",
@@ -1485,8 +1599,8 @@ LUCIDE_ICON_LIST = [
1485
1599
  "unfold_vertical",
1486
1600
  "ungroup",
1487
1601
  "university",
1488
- "unlink_2",
1489
1602
  "unlink",
1603
+ "unlink_2",
1490
1604
  "unplug",
1491
1605
  "upload",
1492
1606
  "usb",
@@ -1494,11 +1608,13 @@ LUCIDE_ICON_LIST = [
1494
1608
  "user_check",
1495
1609
  "user_cog",
1496
1610
  "user_minus",
1611
+ "user_pen",
1497
1612
  "user_plus",
1498
1613
  "user_round",
1499
1614
  "user_round_check",
1500
1615
  "user_round_cog",
1501
1616
  "user_round_minus",
1617
+ "user_round_pen",
1502
1618
  "user_round_plus",
1503
1619
  "user_round_search",
1504
1620
  "user_round_x",
@@ -1520,14 +1636,16 @@ LUCIDE_ICON_LIST = [
1520
1636
  "videotape",
1521
1637
  "view",
1522
1638
  "voicemail",
1639
+ "volleyball",
1523
1640
  "volume",
1524
1641
  "volume_1",
1525
1642
  "volume_2",
1643
+ "volume_off",
1526
1644
  "volume_x",
1527
1645
  "vote",
1528
1646
  "wallet",
1529
- "wallet_minimal",
1530
1647
  "wallet_cards",
1648
+ "wallet_minimal",
1531
1649
  "wallpaper",
1532
1650
  "wand",
1533
1651
  "wand_sparkles",
@@ -1535,17 +1653,22 @@ LUCIDE_ICON_LIST = [
1535
1653
  "washing_machine",
1536
1654
  "watch",
1537
1655
  "waves",
1656
+ "waves_ladder",
1538
1657
  "waypoints",
1539
1658
  "webcam",
1540
- "webhook_off",
1541
1659
  "webhook",
1660
+ "webhook_off",
1542
1661
  "weight",
1543
1662
  "wheat",
1544
1663
  "wheat_off",
1545
1664
  "whole_word",
1546
1665
  "wifi",
1666
+ "wifi_high",
1667
+ "wifi_low",
1547
1668
  "wifi_off",
1669
+ "wifi_zero",
1548
1670
  "wind",
1671
+ "wind_arrow_down",
1549
1672
  "wine",
1550
1673
  "wine_off",
1551
1674
  "workflow",
@@ -420,11 +420,12 @@ const {_LANGUAGE!s} = match ? match[1] : '';
420
420
 
421
421
  def _get_custom_code(self) -> str | None:
422
422
  hooks = {}
423
+ from reflex.compiler.templates import MACROS
424
+
423
425
  for _component in self.component_map.values():
424
426
  comp = _component(_MOCK_ARG)
425
- hooks.update(comp._get_all_hooks_internal())
426
427
  hooks.update(comp._get_all_hooks())
427
- formatted_hooks = "\n".join(hooks.keys())
428
+ formatted_hooks = MACROS.module.renderHooks(hooks) # type: ignore
428
429
  return f"""
429
430
  function {self._get_component_map_name()} () {{
430
431
  {formatted_hooks}
@@ -149,10 +149,10 @@ class Plotly(NoSSRComponent):
149
149
  # Fired when a plot element is hovered over.
150
150
  on_hover: EventHandler[_event_points_data_signature]
151
151
 
152
- # Fired after the plot is layed out (zoom, pan, etc).
152
+ # Fired after the plot is laid out (zoom, pan, etc).
153
153
  on_relayout: EventHandler[no_args_event_spec]
154
154
 
155
- # Fired while the plot is being layed out.
155
+ # Fired while the plot is being laid out.
156
156
  on_relayouting: EventHandler[no_args_event_spec]
157
157
 
158
158
  # Fired after the plot style is changed.
@@ -167,7 +167,7 @@ class Plotly(NoSSRComponent):
167
167
  # Fired while dragging a selection.
168
168
  on_selecting: EventHandler[_event_points_data_signature]
169
169
 
170
- # Fired while an animation is occuring.
170
+ # Fired while an animation is occurring.
171
171
  on_transitioning: EventHandler[no_args_event_spec]
172
172
 
173
173
  # Fired when a transition is stopped early.
@@ -130,13 +130,13 @@ class Plotly(NoSSRComponent):
130
130
  on_deselect: Fired when a selection is cleared (via double click).
131
131
  on_double_click: Fired when the plot is double clicked.
132
132
  on_hover: Fired when a plot element is hovered over.
133
- on_relayout: Fired after the plot is layed out (zoom, pan, etc).
134
- on_relayouting: Fired while the plot is being layed out.
133
+ on_relayout: Fired after the plot is laid out (zoom, pan, etc).
134
+ on_relayouting: Fired while the plot is being laid out.
135
135
  on_restyle: Fired after the plot style is changed.
136
136
  on_redraw: Fired after the plot is redrawn.
137
137
  on_selected: Fired after selecting plot elements.
138
138
  on_selecting: Fired while dragging a selection.
139
- on_transitioning: Fired while an animation is occuring.
139
+ on_transitioning: Fired while an animation is occurring.
140
140
  on_transition_interrupted: Fired when a transition is stopped early.
141
141
  on_unhover: Fired when a hovered element is no longer hovered.
142
142
  style: The style of the component.
@@ -34,7 +34,7 @@ def on_value_event_spec(
34
34
 
35
35
 
36
36
  class SliderRoot(SliderComponent):
37
- """The Slider component comtaining all slider parts."""
37
+ """The Slider component containing all slider parts."""
38
38
 
39
39
  tag = "Root"
40
40
  alias = "RadixSliderRoot"