reflex 0.4.5a2__py3-none-any.whl → 0.4.6a1__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 (196) hide show
  1. reflex/.templates/jinja/custom_components/pyproject.toml.jinja2 +5 -15
  2. reflex/.templates/jinja/web/pages/index.js.jinja2 +4 -0
  3. reflex/.templates/jinja/web/pages/stateful_component.js.jinja2 +4 -0
  4. reflex/.templates/web/utils/state.js +3 -0
  5. reflex/__init__.py +12 -2
  6. reflex/__init__.pyi +4 -0
  7. reflex/app.py +21 -1
  8. reflex/base.py +16 -4
  9. reflex/compiler/compiler.py +1 -0
  10. reflex/compiler/utils.py +11 -2
  11. reflex/components/base/app_wrap.pyi +1 -1
  12. reflex/components/base/bare.py +3 -4
  13. reflex/components/base/body.pyi +1 -1
  14. reflex/components/base/document.pyi +1 -1
  15. reflex/components/base/fragment.pyi +1 -1
  16. reflex/components/base/head.pyi +1 -1
  17. reflex/components/base/link.pyi +1 -1
  18. reflex/components/base/meta.pyi +1 -1
  19. reflex/components/base/script.pyi +1 -1
  20. reflex/components/chakra/base.pyi +1 -1
  21. reflex/components/chakra/datadisplay/badge.pyi +1 -1
  22. reflex/components/chakra/datadisplay/code.pyi +1 -1
  23. reflex/components/chakra/datadisplay/divider.pyi +1 -1
  24. reflex/components/chakra/datadisplay/keyboard_key.pyi +1 -1
  25. reflex/components/chakra/datadisplay/list.pyi +1 -1
  26. reflex/components/chakra/datadisplay/stat.pyi +1 -1
  27. reflex/components/chakra/datadisplay/table.pyi +1 -1
  28. reflex/components/chakra/datadisplay/tag.pyi +1 -1
  29. reflex/components/chakra/disclosure/accordion.pyi +1 -1
  30. reflex/components/chakra/disclosure/tabs.pyi +1 -1
  31. reflex/components/chakra/disclosure/transition.pyi +1 -1
  32. reflex/components/chakra/disclosure/visuallyhidden.pyi +1 -1
  33. reflex/components/chakra/feedback/alert.pyi +1 -1
  34. reflex/components/chakra/feedback/circularprogress.pyi +1 -1
  35. reflex/components/chakra/feedback/progress.pyi +1 -1
  36. reflex/components/chakra/feedback/skeleton.pyi +1 -1
  37. reflex/components/chakra/feedback/spinner.pyi +1 -1
  38. reflex/components/chakra/forms/button.pyi +1 -1
  39. reflex/components/chakra/forms/checkbox.pyi +1 -1
  40. reflex/components/chakra/forms/colormodeswitch.pyi +1 -1
  41. reflex/components/chakra/forms/date_picker.pyi +1 -1
  42. reflex/components/chakra/forms/date_time_picker.pyi +1 -1
  43. reflex/components/chakra/forms/editable.pyi +1 -1
  44. reflex/components/chakra/forms/email.pyi +1 -1
  45. reflex/components/chakra/forms/form.pyi +1 -1
  46. reflex/components/chakra/forms/iconbutton.pyi +1 -1
  47. reflex/components/chakra/forms/input.pyi +1 -1
  48. reflex/components/chakra/forms/numberinput.pyi +1 -1
  49. reflex/components/chakra/forms/password.pyi +1 -1
  50. reflex/components/chakra/forms/pininput.pyi +1 -1
  51. reflex/components/chakra/forms/radio.pyi +1 -1
  52. reflex/components/chakra/forms/rangeslider.pyi +1 -1
  53. reflex/components/chakra/forms/select.pyi +1 -1
  54. reflex/components/chakra/forms/slider.pyi +1 -1
  55. reflex/components/chakra/forms/switch.pyi +1 -1
  56. reflex/components/chakra/forms/textarea.pyi +1 -1
  57. reflex/components/chakra/forms/time_picker.pyi +1 -1
  58. reflex/components/chakra/layout/aspect_ratio.pyi +1 -1
  59. reflex/components/chakra/layout/box.pyi +1 -1
  60. reflex/components/chakra/layout/card.pyi +1 -1
  61. reflex/components/chakra/layout/center.pyi +1 -1
  62. reflex/components/chakra/layout/container.pyi +1 -1
  63. reflex/components/chakra/layout/flex.pyi +1 -1
  64. reflex/components/chakra/layout/grid.pyi +1 -1
  65. reflex/components/chakra/layout/spacer.pyi +1 -1
  66. reflex/components/chakra/layout/stack.pyi +1 -1
  67. reflex/components/chakra/layout/wrap.pyi +1 -1
  68. reflex/components/chakra/media/avatar.pyi +1 -1
  69. reflex/components/chakra/media/icon.pyi +1 -1
  70. reflex/components/chakra/media/image.pyi +1 -1
  71. reflex/components/chakra/navigation/breadcrumb.pyi +1 -1
  72. reflex/components/chakra/navigation/link.pyi +1 -1
  73. reflex/components/chakra/navigation/linkoverlay.pyi +1 -1
  74. reflex/components/chakra/navigation/stepper.pyi +1 -1
  75. reflex/components/chakra/overlay/alertdialog.pyi +1 -1
  76. reflex/components/chakra/overlay/drawer.pyi +1 -1
  77. reflex/components/chakra/overlay/menu.pyi +1 -1
  78. reflex/components/chakra/overlay/modal.pyi +1 -1
  79. reflex/components/chakra/overlay/popover.pyi +1 -1
  80. reflex/components/chakra/overlay/tooltip.pyi +1 -1
  81. reflex/components/chakra/typography/heading.pyi +1 -1
  82. reflex/components/chakra/typography/highlight.pyi +1 -1
  83. reflex/components/chakra/typography/span.pyi +1 -1
  84. reflex/components/chakra/typography/text.pyi +1 -1
  85. reflex/components/component.py +109 -30
  86. reflex/components/core/banner.py +1 -2
  87. reflex/components/core/banner.pyi +1 -2
  88. reflex/components/core/client_side_routing.pyi +1 -1
  89. reflex/components/core/cond.py +1 -1
  90. reflex/components/core/debounce.pyi +1 -1
  91. reflex/components/core/html.pyi +1 -1
  92. reflex/components/core/responsive.py +1 -1
  93. reflex/components/core/upload.pyi +1 -1
  94. reflex/components/datadisplay/code.py +17 -9
  95. reflex/components/datadisplay/code.pyi +3 -1
  96. reflex/components/datadisplay/dataeditor.pyi +1 -1
  97. reflex/components/el/element.pyi +1 -1
  98. reflex/components/el/elements/base.pyi +1 -1
  99. reflex/components/el/elements/forms.py +78 -1
  100. reflex/components/el/elements/forms.pyi +10 -2
  101. reflex/components/el/elements/inline.pyi +1 -1
  102. reflex/components/el/elements/media.pyi +1 -1
  103. reflex/components/el/elements/metadata.pyi +1 -1
  104. reflex/components/el/elements/other.pyi +1 -1
  105. reflex/components/el/elements/scripts.pyi +1 -1
  106. reflex/components/el/elements/sectioning.pyi +1 -1
  107. reflex/components/el/elements/tables.pyi +1 -1
  108. reflex/components/el/elements/typography.pyi +1 -1
  109. reflex/components/gridjs/datatable.pyi +1 -1
  110. reflex/components/lucide/icon.py +275 -115
  111. reflex/components/lucide/icon.pyi +259 -114
  112. reflex/components/markdown/markdown.pyi +1 -1
  113. reflex/components/moment/moment.pyi +1 -1
  114. reflex/components/next/base.pyi +1 -1
  115. reflex/components/next/image.pyi +1 -1
  116. reflex/components/next/link.pyi +1 -1
  117. reflex/components/next/video.pyi +1 -1
  118. reflex/components/plotly/plotly.pyi +1 -1
  119. reflex/components/radix/primitives/accordion.pyi +1 -1
  120. reflex/components/radix/primitives/base.pyi +1 -1
  121. reflex/components/radix/primitives/drawer.pyi +1 -1
  122. reflex/components/radix/primitives/form.pyi +1 -1
  123. reflex/components/radix/primitives/progress.pyi +1 -1
  124. reflex/components/radix/primitives/slider.pyi +1 -1
  125. reflex/components/radix/themes/base.pyi +1 -1
  126. reflex/components/radix/themes/color_mode.pyi +1 -1
  127. reflex/components/radix/themes/components/alert_dialog.pyi +1 -1
  128. reflex/components/radix/themes/components/aspect_ratio.pyi +1 -1
  129. reflex/components/radix/themes/components/avatar.pyi +1 -1
  130. reflex/components/radix/themes/components/badge.pyi +1 -1
  131. reflex/components/radix/themes/components/button.pyi +1 -1
  132. reflex/components/radix/themes/components/callout.pyi +1 -1
  133. reflex/components/radix/themes/components/card.pyi +1 -1
  134. reflex/components/radix/themes/components/checkbox.pyi +1 -1
  135. reflex/components/radix/themes/components/context_menu.pyi +1 -1
  136. reflex/components/radix/themes/components/dialog.pyi +1 -1
  137. reflex/components/radix/themes/components/dropdown_menu.pyi +1 -1
  138. reflex/components/radix/themes/components/hover_card.pyi +1 -1
  139. reflex/components/radix/themes/components/icon_button.pyi +1 -1
  140. reflex/components/radix/themes/components/inset.pyi +1 -1
  141. reflex/components/radix/themes/components/popover.pyi +1 -1
  142. reflex/components/radix/themes/components/radio_group.pyi +1 -1
  143. reflex/components/radix/themes/components/scroll_area.pyi +1 -1
  144. reflex/components/radix/themes/components/select.pyi +1 -1
  145. reflex/components/radix/themes/components/separator.pyi +1 -1
  146. reflex/components/radix/themes/components/slider.pyi +1 -1
  147. reflex/components/radix/themes/components/switch.pyi +1 -1
  148. reflex/components/radix/themes/components/table.pyi +1 -1
  149. reflex/components/radix/themes/components/tabs.pyi +1 -1
  150. reflex/components/radix/themes/components/text_area.pyi +5 -1
  151. reflex/components/radix/themes/components/text_field.pyi +1 -1
  152. reflex/components/radix/themes/components/tooltip.pyi +1 -1
  153. reflex/components/radix/themes/layout/__init__.py +5 -4
  154. reflex/components/radix/themes/layout/base.pyi +1 -1
  155. reflex/components/radix/themes/layout/box.pyi +1 -1
  156. reflex/components/radix/themes/layout/center.pyi +1 -1
  157. reflex/components/radix/themes/layout/container.pyi +1 -1
  158. reflex/components/radix/themes/layout/flex.pyi +1 -1
  159. reflex/components/radix/themes/layout/grid.pyi +1 -1
  160. reflex/components/radix/themes/layout/list.py +21 -13
  161. reflex/components/radix/themes/layout/list.pyi +139 -481
  162. reflex/components/radix/themes/layout/section.pyi +1 -1
  163. reflex/components/radix/themes/layout/spacer.pyi +1 -1
  164. reflex/components/radix/themes/layout/stack.pyi +1 -1
  165. reflex/components/radix/themes/typography/blockquote.pyi +1 -1
  166. reflex/components/radix/themes/typography/code.pyi +1 -1
  167. reflex/components/radix/themes/typography/heading.pyi +1 -1
  168. reflex/components/radix/themes/typography/link.pyi +1 -1
  169. reflex/components/radix/themes/typography/text.pyi +1 -1
  170. reflex/components/react_player/audio.pyi +1 -1
  171. reflex/components/react_player/react_player.pyi +1 -1
  172. reflex/components/react_player/video.pyi +1 -1
  173. reflex/components/recharts/cartesian.pyi +1 -1
  174. reflex/components/recharts/charts.pyi +1 -1
  175. reflex/components/recharts/general.pyi +1 -1
  176. reflex/components/recharts/polar.pyi +1 -1
  177. reflex/components/recharts/recharts.pyi +1 -1
  178. reflex/components/suneditor/editor.pyi +1 -1
  179. reflex/config.py +12 -2
  180. reflex/custom_components/custom_components.py +313 -20
  181. reflex/event.py +36 -46
  182. reflex/reflex.py +19 -13
  183. reflex/state.py +184 -39
  184. reflex/testing.py +15 -11
  185. reflex/utils/console.py +15 -7
  186. reflex/utils/prerequisites.py +11 -0
  187. reflex/utils/processes.py +8 -25
  188. reflex/utils/pyi_generator.py +842 -0
  189. reflex/utils/types.py +14 -2
  190. reflex/vars.py +33 -3
  191. {reflex-0.4.5a2.dist-info → reflex-0.4.6a1.dist-info}/METADATA +33 -31
  192. {reflex-0.4.5a2.dist-info → reflex-0.4.6a1.dist-info}/RECORD +195 -195
  193. reflex/page.pyi +0 -17
  194. {reflex-0.4.5a2.dist-info → reflex-0.4.6a1.dist-info}/LICENSE +0 -0
  195. {reflex-0.4.5a2.dist-info → reflex-0.4.6a1.dist-info}/WHEEL +0 -0
  196. {reflex-0.4.5a2.dist-info → reflex-0.4.6a1.dist-info}/entry_points.txt +0 -0
@@ -2,14 +2,14 @@
2
2
 
3
3
  from reflex.components.component import Component
4
4
  from reflex.style import Style
5
- from reflex.utils import format
5
+ from reflex.utils import console, format
6
6
  from reflex.vars import Var
7
7
 
8
8
 
9
9
  class LucideIconComponent(Component):
10
10
  """Lucide Icon Component."""
11
11
 
12
- library = "lucide-react@0.314.0"
12
+ library = "lucide-react@0.359.0"
13
13
 
14
14
 
15
15
  class Icon(LucideIconComponent):
@@ -37,6 +37,19 @@ class Icon(LucideIconComponent):
37
37
  Returns:
38
38
  The created component.
39
39
  """
40
+
41
+ def map_deprecated_icon_names_05(tag: str) -> str:
42
+ new_tag = RENAMED_ICONS_05.get(tag)
43
+ if new_tag is not None:
44
+ console.deprecate(
45
+ feature_name=f"icon {tag}",
46
+ reason=f"it was renamed upstream. Use {new_tag} instead.",
47
+ deprecation_version="0.4.6",
48
+ removal_version="0.5.0",
49
+ )
50
+ return new_tag
51
+ return tag
52
+
40
53
  if children:
41
54
  if len(children) == 1 and type(children[0]) == str:
42
55
  props["tag"] = children[0]
@@ -49,7 +62,8 @@ class Icon(LucideIconComponent):
49
62
 
50
63
  if (
51
64
  type(props["tag"]) != str
52
- or format.to_snake_case(props["tag"]) not in LUCIDE_ICON_LIST
65
+ or map_deprecated_icon_names_05(format.to_snake_case(props["tag"]))
66
+ not in LUCIDE_ICON_LIST
53
67
  ):
54
68
  raise ValueError(
55
69
  f"Invalid icon tag: {props['tag']}. Please use one of the following: {', '.join(LUCIDE_ICON_LIST[0:25])}, ..."
@@ -69,13 +83,122 @@ class Icon(LucideIconComponent):
69
83
  )
70
84
 
71
85
 
86
+ RENAMED_ICONS_05 = {
87
+ "activity_square": "square_activity",
88
+ "alert_circle": "circle_alert",
89
+ "alert_octagon": "octagon_alert",
90
+ "alert_triangle": "triangle_alert",
91
+ "arrow_down_circle": "circle_arrow_down",
92
+ "arrow_down_left_from_circle": "circle_arrow_out_down_left",
93
+ "arrow_down_left_from_square": "square_arrow_out_down_left",
94
+ "arrow_down_left_square": "square_arrow_down_left",
95
+ "arrow_down_right_from_circle": "circle_arrow_out_down_right",
96
+ "arrow_down_right_from_square": "square_arrow_out_down_right",
97
+ "arrow_down_right_square": "square_arrow_down_right",
98
+ "arrow_down_square": "square_arrow_down",
99
+ "arrow_left_circle": "circle_arrow_left",
100
+ "arrow_left_square": "square_arrow_left",
101
+ "arrow_right_circle": "circle_arrow_right",
102
+ "arrow_right_square": "square_arrow_right",
103
+ "arrow_up_circle": "circle_arrow_up",
104
+ "arrow_up_left_from_circle": "circle_arrow_out_up_left",
105
+ "arrow_up_left_from_square": "square_arrow_out_up_left",
106
+ "arrow_up_left_square": "square_arrow_up_left",
107
+ "arrow_up_right_from_circle": "circle_arrow_out_up_right",
108
+ "arrow_up_right_from_square": "square_arrow_out_up_right",
109
+ "arrow_up_right_square": "square_arrow_up_right",
110
+ "arrow_up_square": "square_arrow_up",
111
+ "asterisk_square": "square_asterisk",
112
+ "check_circle": "circle_check_big",
113
+ "check_circle_2": "circle_check",
114
+ "check_square": "square_check_big",
115
+ "check_square_2": "square_check",
116
+ "chevron_down_circle": "circle_chevron_down",
117
+ "chevron_down_square": "square_chevron_down",
118
+ "chevron_left_circle": "circle_chevron_left",
119
+ "chevron_left_square": "square_chevron_left",
120
+ "chevron_right_circle": "circle_chevron_right",
121
+ "chevron_right_square": "square_chevron_right",
122
+ "chevron_up_circle": "circle_chevron_up",
123
+ "chevron_up_square": "square_chevron_up",
124
+ "code_2": "code_xml",
125
+ "code_square": "square_code",
126
+ "contact_2": "contact_round",
127
+ "divide_circle": "circle_divide",
128
+ "divide_square": "square_divide",
129
+ "dot_square": "square_dot",
130
+ "download_cloud": "cloud_download",
131
+ "equal_square": "square_equal",
132
+ "form_input": "rectangle_elipsis",
133
+ "function_square": "square_function",
134
+ "gantt_chart_square": "square_gantt_chart",
135
+ "gauge_circle": "circle_gauge",
136
+ "globe_2": "earth",
137
+ "help_circle": "circle_help",
138
+ "helping_hand": "hand_helping",
139
+ "ice_cream": "ice_cream_cone",
140
+ "ice_cream_2": "ice_cream_bowl",
141
+ "indent": "indent_increase",
142
+ "kanban_square": "square_kanban",
143
+ "kanban_square_dashed": "square_kanban_dashed",
144
+ "laptop_2": "laptop_minimal",
145
+ "library_square": "square_library",
146
+ "loader_2": "loader_circle",
147
+ "m_square": "square_m",
148
+ "menu_square": "square_menu",
149
+ "mic_2": "mic_vocal",
150
+ "minus_circle": "circle_minus",
151
+ "minus_square": "square_minus",
152
+ "more_horizontal": "ellipsis",
153
+ "more_vertical": "ellipsis_vertical",
154
+ "mouse_pointer_square": "square_mouse_pointer",
155
+ "mouse_pointer_square_dashed": "square_dashed_mouse_pointer",
156
+ "outdent": "indent_decrease",
157
+ "palm_tree": "tree_palm",
158
+ "parking_circle": "circle_parking",
159
+ "parking_circle_off": "circle_parking_off",
160
+ "parking_square": "square_parking",
161
+ "parking_square_off": "square_parking_off",
162
+ "pause_circle": "circle_pause",
163
+ "pause_octagon": "octagon_pause",
164
+ "percent_circle": "circle_percent",
165
+ "percent_diamond": "diamond_percent",
166
+ "percent_square": "square_percent",
167
+ "pi_square": "square_pi",
168
+ "pilcrow_square": "square_pilcrow",
169
+ "play_circle": "circle_play",
170
+ "play_square": "square_play",
171
+ "plus_circle": "circle_plus",
172
+ "plus_square": "square_plus",
173
+ "power_circle": "circle_power",
174
+ "power_square": "square_power",
175
+ "school_2": "university",
176
+ "scissors_square": "square_scissors",
177
+ "scissors_square_dashed_bottom": "square_bottom_dashed_scissors",
178
+ "sigma_square": "square_sigma",
179
+ "slash_circle": "circle_slash",
180
+ "sliders": "sliders_vertical",
181
+ "split_square_horizontal": "square_split_horizontal",
182
+ "split_square_vertical": "square_split_vertical",
183
+ "stop_circle": "circle_stop",
184
+ "subtitles": "captions",
185
+ "test_tube_2": "test_tube_diagonal",
186
+ "unlock": "lock_open",
187
+ "unlock_keyhole": "lock_keyhole_open",
188
+ "upload_cloud": "cloud_upload",
189
+ "wallet_2": "wallet_minimal",
190
+ "wand_2": "wand_sparkles",
191
+ "x_circle": "circle_x",
192
+ "x_octagon": "octagon_x",
193
+ "x_square": "square_x",
194
+ }
195
+
72
196
  LUCIDE_ICON_LIST = [
73
197
  "a_arrow_down",
74
198
  "a_arrow_up",
75
199
  "a_large_small",
76
200
  "accessibility",
77
201
  "activity",
78
- "activity_square",
79
202
  "air_vent",
80
203
  "airplay",
81
204
  "alarm_clock",
@@ -85,9 +208,6 @@ LUCIDE_ICON_LIST = [
85
208
  "alarm_clock_plus",
86
209
  "alarm_smoke",
87
210
  "album",
88
- "alert_circle",
89
- "alert_octagon",
90
- "alert_triangle",
91
211
  "align_center",
92
212
  "align_center_horizontal",
93
213
  "align_center_vertical",
@@ -114,6 +234,7 @@ LUCIDE_ICON_LIST = [
114
234
  "align_vertical_justify_start",
115
235
  "align_vertical_space_around",
116
236
  "align_vertical_space_between",
237
+ "ambulance",
117
238
  "ampersand",
118
239
  "ampersands",
119
240
  "anchor",
@@ -123,6 +244,7 @@ LUCIDE_ICON_LIST = [
123
244
  "anvil",
124
245
  "aperture",
125
246
  "app_window",
247
+ "app_window_mac",
126
248
  "apple",
127
249
  "archive",
128
250
  "archive_restore",
@@ -141,59 +263,38 @@ LUCIDE_ICON_LIST = [
141
263
  "arrow_down_0_1",
142
264
  "arrow_down_1_0",
143
265
  "arrow_down_a_z",
144
- "arrow_down_circle",
145
266
  "arrow_down_from_line",
146
267
  "arrow_down_left",
147
- "arrow_down_left_from_circle",
148
- "arrow_down_left_from_square",
149
- "arrow_down_left_square",
150
268
  "arrow_down_narrow_wide",
151
269
  "arrow_down_right",
152
- "arrow_down_right_from_circle",
153
- "arrow_down_right_from_square",
154
- "arrow_down_right_square",
155
- "arrow_down_square",
156
270
  "arrow_down_to_dot",
157
271
  "arrow_down_to_line",
158
272
  "arrow_down_up",
159
273
  "arrow_down_wide_narrow",
160
274
  "arrow_down_z_a",
161
275
  "arrow_left",
162
- "arrow_left_circle",
163
276
  "arrow_left_from_line",
164
277
  "arrow_left_right",
165
- "arrow_left_square",
166
278
  "arrow_left_to_line",
167
279
  "arrow_right",
168
- "arrow_right_circle",
169
280
  "arrow_right_from_line",
170
281
  "arrow_right_left",
171
- "arrow_right_square",
172
282
  "arrow_right_to_line",
173
283
  "arrow_up",
174
284
  "arrow_up_0_1",
175
285
  "arrow_up_1_0",
176
286
  "arrow_up_a_z",
177
- "arrow_up_circle",
178
287
  "arrow_up_down",
179
288
  "arrow_up_from_dot",
180
289
  "arrow_up_from_line",
181
290
  "arrow_up_left",
182
- "arrow_up_left_from_circle",
183
- "arrow_up_left_from_square",
184
- "arrow_up_left_square",
185
291
  "arrow_up_narrow_wide",
186
292
  "arrow_up_right",
187
- "arrow_up_right_from_circle",
188
- "arrow_up_right_from_square",
189
- "arrow_up_right_square",
190
- "arrow_up_square",
191
293
  "arrow_up_to_line",
192
294
  "arrow_up_wide_narrow",
193
295
  "arrow_up_z_a",
194
296
  "arrows_up_from_line",
195
297
  "asterisk",
196
- "asterisk_square",
197
298
  "at_sign",
198
299
  "atom",
199
300
  "audio_lines",
@@ -248,6 +349,7 @@ LUCIDE_ICON_LIST = [
248
349
  "bed_single",
249
350
  "beef",
250
351
  "beer",
352
+ "beer_off",
251
353
  "bell",
252
354
  "bell_dot",
253
355
  "bell_electric",
@@ -306,6 +408,7 @@ LUCIDE_ICON_LIST = [
306
408
  "bookmark_x",
307
409
  "boom_box",
308
410
  "bot",
411
+ "bot_message_square",
309
412
  "box",
310
413
  "box_select",
311
414
  "boxes",
@@ -316,6 +419,8 @@ LUCIDE_ICON_LIST = [
316
419
  "brain_cog",
317
420
  "brick_wall",
318
421
  "briefcase",
422
+ "briefcase_business",
423
+ "briefcase_medical",
319
424
  "bring_to_front",
320
425
  "brush",
321
426
  "bug",
@@ -352,6 +457,9 @@ LUCIDE_ICON_LIST = [
352
457
  "candy",
353
458
  "candy_cane",
354
459
  "candy_off",
460
+ "cannabis",
461
+ "captions",
462
+ "captions_off",
355
463
  "car",
356
464
  "car_front",
357
465
  "car_taxi_front",
@@ -367,26 +475,14 @@ LUCIDE_ICON_LIST = [
367
475
  "cctv",
368
476
  "check",
369
477
  "check_check",
370
- "check_circle",
371
- "check_circle_2",
372
- "check_square",
373
- "check_square_2",
374
478
  "chef_hat",
375
479
  "cherry",
376
480
  "chevron_down",
377
- "chevron_down_circle",
378
- "chevron_down_square",
379
481
  "chevron_first",
380
482
  "chevron_last",
381
483
  "chevron_left",
382
- "chevron_left_circle",
383
- "chevron_left_square",
384
484
  "chevron_right",
385
- "chevron_right_circle",
386
- "chevron_right_square",
387
485
  "chevron_up",
388
- "chevron_up_circle",
389
- "chevron_up_square",
390
486
  "chevrons_down",
391
487
  "chevrons_down_up",
392
488
  "chevrons_left",
@@ -400,17 +496,46 @@ LUCIDE_ICON_LIST = [
400
496
  "cigarette",
401
497
  "cigarette_off",
402
498
  "circle",
499
+ "circle_alert",
500
+ "circle_arrow_down",
501
+ "circle_arrow_left",
502
+ "circle_arrow_out_down_left",
503
+ "circle_arrow_out_down_right",
504
+ "circle_arrow_out_up_left",
505
+ "circle_arrow_out_up_right",
506
+ "circle_arrow_right",
507
+ "circle_arrow_up",
508
+ "circle_check_big",
509
+ "circle_check",
510
+ "circle_chevron_down",
511
+ "circle_chevron_left",
512
+ "circle_chevron_right",
513
+ "circle_chevron_up",
403
514
  "circle_dashed",
515
+ "circle_divide",
404
516
  "circle_dollar_sign",
405
517
  "circle_dot",
406
518
  "circle_dot_dashed",
407
519
  "circle_ellipsis",
408
520
  "circle_equal",
521
+ "circle_fading_plus",
522
+ "circle_gauge",
523
+ "circle_help",
524
+ "circle_minus",
409
525
  "circle_off",
526
+ "circle_parking_off",
527
+ "circle_parking",
528
+ "circle_pause",
529
+ "circle_percent",
530
+ "circle_play",
531
+ "circle_plus",
532
+ "circle_power",
410
533
  "circle_slash",
411
534
  "circle_slash_2",
535
+ "circle_stop",
412
536
  "circle_user",
413
537
  "circle_user_round",
538
+ "circle_x",
414
539
  "circuit_board",
415
540
  "citrus",
416
541
  "clapperboard",
@@ -418,9 +543,11 @@ LUCIDE_ICON_LIST = [
418
543
  "clipboard_check",
419
544
  "clipboard_copy",
420
545
  "clipboard_list",
546
+ "clipboard_minus",
421
547
  "clipboard_paste",
422
548
  "clipboard_pen",
423
549
  "clipboard_pen_line",
550
+ "clipboard_plus",
424
551
  "clipboard_type",
425
552
  "clipboard_x",
426
553
  "clock",
@@ -438,6 +565,7 @@ LUCIDE_ICON_LIST = [
438
565
  "clock_9",
439
566
  "cloud",
440
567
  "cloud_cog",
568
+ "cloud_download",
441
569
  "cloud_drizzle",
442
570
  "cloud_fog",
443
571
  "cloud_hail",
@@ -450,12 +578,12 @@ LUCIDE_ICON_LIST = [
450
578
  "cloud_snow",
451
579
  "cloud_sun",
452
580
  "cloud_sun_rain",
581
+ "cloud_upload",
453
582
  "cloudy",
454
583
  "clover",
455
584
  "club",
456
585
  "code",
457
- "code_2",
458
- "code_square",
586
+ "code_xml",
459
587
  "codepen",
460
588
  "codesandbox",
461
589
  "coffee",
@@ -473,7 +601,7 @@ LUCIDE_ICON_LIST = [
473
601
  "cone",
474
602
  "construction",
475
603
  "contact",
476
- "contact_2",
604
+ "contact_round",
477
605
  "container",
478
606
  "contrast",
479
607
  "cookie",
@@ -513,6 +641,7 @@ LUCIDE_ICON_LIST = [
513
641
  "dessert",
514
642
  "diameter",
515
643
  "diamond",
644
+ "diamond_percent",
516
645
  "dice_1",
517
646
  "dice_2",
518
647
  "dice_3",
@@ -526,19 +655,16 @@ LUCIDE_ICON_LIST = [
526
655
  "disc_3",
527
656
  "disc_album",
528
657
  "divide",
529
- "divide_circle",
530
- "divide_square",
531
658
  "dna",
532
659
  "dna_off",
660
+ "dock",
533
661
  "dog",
534
662
  "dollar_sign",
535
663
  "donut",
536
664
  "door_closed",
537
665
  "door_open",
538
666
  "dot",
539
- "dot_square",
540
667
  "download",
541
- "download_cloud",
542
668
  "drafting_compass",
543
669
  "drama",
544
670
  "dribbble",
@@ -550,13 +676,16 @@ LUCIDE_ICON_LIST = [
550
676
  "dumbbell",
551
677
  "ear",
552
678
  "ear_off",
679
+ "earth",
680
+ "earth_lock",
553
681
  "eclipse",
554
682
  "egg",
555
683
  "egg_fried",
556
684
  "egg_off",
685
+ "ellipsis",
686
+ "ellipsis_vertical",
557
687
  "equal",
558
688
  "equal_not",
559
- "equal_square",
560
689
  "eraser",
561
690
  "euro",
562
691
  "expand",
@@ -690,14 +819,12 @@ LUCIDE_ICON_LIST = [
690
819
  "folders",
691
820
  "footprints",
692
821
  "forklift",
693
- "form_input",
694
822
  "forward",
695
823
  "frame",
696
824
  "framer",
697
825
  "frown",
698
826
  "fuel",
699
827
  "fullscreen",
700
- "function_square",
701
828
  "gallery_horizontal",
702
829
  "gallery_horizontal_end",
703
830
  "gallery_thumbnails",
@@ -706,9 +833,7 @@ LUCIDE_ICON_LIST = [
706
833
  "gamepad",
707
834
  "gamepad_2",
708
835
  "gantt_chart",
709
- "gantt_chart_square",
710
836
  "gauge",
711
- "gauge_circle",
712
837
  "gavel",
713
838
  "gem",
714
839
  "ghost",
@@ -733,7 +858,7 @@ LUCIDE_ICON_LIST = [
733
858
  "glass_water",
734
859
  "glasses",
735
860
  "globe",
736
- "globe_2",
861
+ "globe_lock",
737
862
  "goal",
738
863
  "grab",
739
864
  "graduation_cap",
@@ -745,9 +870,15 @@ LUCIDE_ICON_LIST = [
745
870
  "grip_vertical",
746
871
  "group",
747
872
  "guitar",
873
+ "ham",
748
874
  "hammer",
749
875
  "hand",
876
+ "hand_coins",
877
+ "hand_heart",
878
+ "hand_helping",
750
879
  "hand_metal",
880
+ "hand_platter",
881
+ "handshake",
751
882
  "hard_drive",
752
883
  "hard_drive_download",
753
884
  "hard_drive_upload",
@@ -763,32 +894,35 @@ LUCIDE_ICON_LIST = [
763
894
  "heading_5",
764
895
  "heading_6",
765
896
  "headphones",
897
+ "headset",
766
898
  "heart",
767
899
  "heart_crack",
768
900
  "heart_handshake",
769
901
  "heart_off",
770
902
  "heart_pulse",
771
903
  "heater",
772
- "help_circle",
773
- "helping_hand",
774
904
  "hexagon",
775
905
  "highlighter",
776
906
  "history",
777
907
  "home",
778
908
  "hop",
779
909
  "hop_off",
910
+ "hospital",
780
911
  "hotel",
781
912
  "hourglass",
782
- "ice_cream",
783
- "ice_cream_2",
913
+ "ice_cream_bowl",
914
+ "ice_cream_cone",
784
915
  "image",
785
916
  "image_down",
786
917
  "image_minus",
787
918
  "image_off",
788
919
  "image_plus",
920
+ "image_up",
921
+ "images",
789
922
  "import",
790
923
  "inbox",
791
- "indent",
924
+ "indent_decrease",
925
+ "indent_increase",
792
926
  "indian_rupee",
793
927
  "infinity",
794
928
  "info",
@@ -800,8 +934,6 @@ LUCIDE_ICON_LIST = [
800
934
  "japanese_yen",
801
935
  "joystick",
802
936
  "kanban",
803
- "kanban_square",
804
- "kanban_square_dashed",
805
937
  "key",
806
938
  "key_round",
807
939
  "key_square",
@@ -816,8 +948,8 @@ LUCIDE_ICON_LIST = [
816
948
  "land_plot",
817
949
  "landmark",
818
950
  "languages",
951
+ "laptop_minimal",
819
952
  "laptop",
820
- "laptop_2",
821
953
  "lasso",
822
954
  "lasso_select",
823
955
  "laugh",
@@ -834,7 +966,6 @@ LUCIDE_ICON_LIST = [
834
966
  "leafy_green",
835
967
  "library",
836
968
  "library_big",
837
- "library_square",
838
969
  "life_buoy",
839
970
  "ligature",
840
971
  "lightbulb",
@@ -860,17 +991,18 @@ LUCIDE_ICON_LIST = [
860
991
  "list_video",
861
992
  "list_x",
862
993
  "loader",
863
- "loader_2",
994
+ "loader_circle",
864
995
  "locate",
865
996
  "locate_fixed",
866
997
  "locate_off",
867
998
  "lock",
999
+ "lock_keyhole_open",
868
1000
  "lock_keyhole",
1001
+ "lock_open",
869
1002
  "log_in",
870
1003
  "log_out",
871
1004
  "lollipop",
872
1005
  "luggage",
873
- "m_square",
874
1006
  "magnet",
875
1007
  "mail",
876
1008
  "mail_check",
@@ -896,7 +1028,6 @@ LUCIDE_ICON_LIST = [
896
1028
  "meh",
897
1029
  "memory_stick",
898
1030
  "menu",
899
- "menu_square",
900
1031
  "merge",
901
1032
  "message_circle",
902
1033
  "message_circle_code",
@@ -926,7 +1057,7 @@ LUCIDE_ICON_LIST = [
926
1057
  "message_square_x",
927
1058
  "messages_square",
928
1059
  "mic",
929
- "mic_2",
1060
+ "mic_vocal",
930
1061
  "mic_off",
931
1062
  "microscope",
932
1063
  "microwave",
@@ -936,8 +1067,6 @@ LUCIDE_ICON_LIST = [
936
1067
  "minimize",
937
1068
  "minimize_2",
938
1069
  "minus",
939
- "minus_circle",
940
- "minus_square",
941
1070
  "monitor",
942
1071
  "monitor_check",
943
1072
  "monitor_dot",
@@ -952,16 +1081,12 @@ LUCIDE_ICON_LIST = [
952
1081
  "monitor_x",
953
1082
  "moon",
954
1083
  "moon_star",
955
- "more_horizontal",
956
- "more_vertical",
957
1084
  "mountain",
958
1085
  "mountain_snow",
959
1086
  "mouse",
960
1087
  "mouse_pointer",
961
1088
  "mouse_pointer_2",
962
1089
  "mouse_pointer_click",
963
- "mouse_pointer_square",
964
- "mouse_pointer_square_dashed",
965
1090
  "move",
966
1091
  "move_3d",
967
1092
  "move_diagonal",
@@ -996,9 +1121,11 @@ LUCIDE_ICON_LIST = [
996
1121
  "nut",
997
1122
  "nut_off",
998
1123
  "octagon",
1124
+ "octagon_alert",
1125
+ "octagon_pause",
1126
+ "octagon_x",
999
1127
  "option",
1000
1128
  "orbit",
1001
- "outdent",
1002
1129
  "package",
1003
1130
  "package_2",
1004
1131
  "package_check",
@@ -1012,7 +1139,6 @@ LUCIDE_ICON_LIST = [
1012
1139
  "paintbrush",
1013
1140
  "paintbrush_2",
1014
1141
  "palette",
1015
- "palmtree",
1016
1142
  "panel_bottom",
1017
1143
  "panel_bottom_close",
1018
1144
  "panel_bottom_dashed",
@@ -1034,15 +1160,9 @@ LUCIDE_ICON_LIST = [
1034
1160
  "panels_top_left",
1035
1161
  "paperclip",
1036
1162
  "parentheses",
1037
- "parking_circle",
1038
- "parking_circle_off",
1039
1163
  "parking_meter",
1040
- "parking_square",
1041
- "parking_square_off",
1042
1164
  "party_popper",
1043
1165
  "pause",
1044
- "pause_circle",
1045
- "pause_octagon",
1046
1166
  "paw_print",
1047
1167
  "pc_case",
1048
1168
  "pen",
@@ -1053,9 +1173,6 @@ LUCIDE_ICON_LIST = [
1053
1173
  "pencil_ruler",
1054
1174
  "pentagon",
1055
1175
  "percent",
1056
- "percent_circle",
1057
- "percent_diamond",
1058
- "percent_square",
1059
1176
  "person_standing",
1060
1177
  "phone",
1061
1178
  "phone_call",
@@ -1065,14 +1182,13 @@ LUCIDE_ICON_LIST = [
1065
1182
  "phone_off",
1066
1183
  "phone_outgoing",
1067
1184
  "pi",
1068
- "pi_square",
1069
1185
  "piano",
1186
+ "pickaxe",
1070
1187
  "picture_in_picture",
1071
1188
  "picture_in_picture_2",
1072
1189
  "pie_chart",
1073
1190
  "piggy_bank",
1074
1191
  "pilcrow",
1075
- "pilcrow_square",
1076
1192
  "pill",
1077
1193
  "pin",
1078
1194
  "pin_off",
@@ -1082,15 +1198,11 @@ LUCIDE_ICON_LIST = [
1082
1198
  "plane_landing",
1083
1199
  "plane_takeoff",
1084
1200
  "play",
1085
- "play_circle",
1086
- "play_square",
1087
1201
  "plug",
1088
1202
  "plug_2",
1089
1203
  "plug_zap",
1090
1204
  "plug_zap_2",
1091
1205
  "plus",
1092
- "plus_circle",
1093
- "plus_square",
1094
1206
  "pocket",
1095
1207
  "pocket_knife",
1096
1208
  "podcast",
@@ -1100,12 +1212,11 @@ LUCIDE_ICON_LIST = [
1100
1212
  "popsicle",
1101
1213
  "pound_sterling",
1102
1214
  "power",
1103
- "power_circle",
1104
1215
  "power_off",
1105
- "power_square",
1106
1216
  "presentation",
1107
1217
  "printer",
1108
1218
  "projector",
1219
+ "proportions",
1109
1220
  "puzzle",
1110
1221
  "pyramid",
1111
1222
  "qr_code",
@@ -1113,6 +1224,7 @@ LUCIDE_ICON_LIST = [
1113
1224
  "rabbit",
1114
1225
  "radar",
1115
1226
  "radiation",
1227
+ "radical",
1116
1228
  "radio",
1117
1229
  "radio_receiver",
1118
1230
  "radio_tower",
@@ -1130,6 +1242,7 @@ LUCIDE_ICON_LIST = [
1130
1242
  "receipt_russian_ruble",
1131
1243
  "receipt_swiss_franc",
1132
1244
  "receipt_text",
1245
+ "rectangle_ellipsis",
1133
1246
  "rectangle_horizontal",
1134
1247
  "rectangle_vertical",
1135
1248
  "recycle",
@@ -1157,7 +1270,9 @@ LUCIDE_ICON_LIST = [
1157
1270
  "roller_coaster",
1158
1271
  "rotate_3d",
1159
1272
  "rotate_ccw",
1273
+ "rotate_ccw_square",
1160
1274
  "rotate_cw",
1275
+ "rotate_cw_square",
1161
1276
  "route",
1162
1277
  "route_off",
1163
1278
  "router",
@@ -1186,11 +1301,8 @@ LUCIDE_ICON_LIST = [
1186
1301
  "scan_text",
1187
1302
  "scatter_chart",
1188
1303
  "school",
1189
- "school_2",
1190
1304
  "scissors",
1191
1305
  "scissors_line_dashed",
1192
- "scissors_square",
1193
- "scissors_square_dashed_bottom",
1194
1306
  "screen_share",
1195
1307
  "screen_share_off",
1196
1308
  "scroll",
@@ -1239,7 +1351,6 @@ LUCIDE_ICON_LIST = [
1239
1351
  "shrub",
1240
1352
  "shuffle",
1241
1353
  "sigma",
1242
- "sigma_square",
1243
1354
  "signal",
1244
1355
  "signal_high",
1245
1356
  "signal_low",
@@ -1253,9 +1364,8 @@ LUCIDE_ICON_LIST = [
1253
1364
  "skull",
1254
1365
  "slack",
1255
1366
  "slash",
1256
- "slash_square",
1257
1367
  "slice",
1258
- "sliders",
1368
+ "sliders_vertical",
1259
1369
  "sliders_horizontal",
1260
1370
  "smartphone",
1261
1371
  "smartphone_charging",
@@ -1276,17 +1386,66 @@ LUCIDE_ICON_LIST = [
1276
1386
  "spell_check_2",
1277
1387
  "spline",
1278
1388
  "split",
1279
- "split_square_horizontal",
1280
- "split_square_vertical",
1281
1389
  "spray_can",
1282
1390
  "sprout",
1283
1391
  "square",
1284
- "square_dashed_bottom",
1392
+ "square_activity",
1393
+ "square_arrow_down_left",
1394
+ "square_arrow_down_right",
1395
+ "square_arrow_down",
1396
+ "square_arrow_left",
1397
+ "square_arrow_out_down_left",
1398
+ "square_arrow_out_down_right",
1399
+ "square_arrow_out_up_left",
1400
+ "square_arrow_out_up_right",
1401
+ "square_arrow_right",
1402
+ "square_arrow_up_left",
1403
+ "square_arrow_up_right",
1404
+ "square_arrow_up",
1405
+ "square_asterisk",
1406
+ "square_bottom_dashed_scissors",
1407
+ "square_check_big",
1408
+ "square_check",
1409
+ "square_chevron_down",
1410
+ "square_chevron_left",
1411
+ "square_chevron_right",
1412
+ "square_chevron_up",
1413
+ "square_code",
1285
1414
  "square_dashed_bottom_code",
1415
+ "square_dashed_bottom",
1416
+ "square_dashed_kanban",
1417
+ "square_dashed_mouse_pointer",
1418
+ "square_divide",
1419
+ "square_dot",
1420
+ "square_equal",
1421
+ "square_function",
1422
+ "square_gantt_chart",
1423
+ "square_kanban",
1424
+ "square_library",
1425
+ "square_m",
1426
+ "square_menu",
1427
+ "square_minus",
1428
+ "square_mouse_pointer",
1429
+ "square_parking_off",
1430
+ "square_parking",
1286
1431
  "square_pen",
1432
+ "square_percent",
1433
+ "square_pi",
1434
+ "square_pilcrow",
1435
+ "square_play",
1436
+ "square_plus",
1437
+ "square_power",
1438
+ "square_radical",
1439
+ "square_scissors",
1440
+ "square_sigma",
1441
+ "square_slash",
1442
+ "square_split_horizontal",
1443
+ "square_split_vertical",
1287
1444
  "square_stack",
1288
- "square_user",
1445
+ "square_terminal",
1289
1446
  "square_user_round",
1447
+ "square_user",
1448
+ "square_x",
1290
1449
  "squircle",
1291
1450
  "squirrel",
1292
1451
  "stamp",
@@ -1298,13 +1457,11 @@ LUCIDE_ICON_LIST = [
1298
1457
  "stethoscope",
1299
1458
  "sticker",
1300
1459
  "sticky_note",
1301
- "stop_circle",
1302
1460
  "store",
1303
1461
  "stretch_horizontal",
1304
1462
  "stretch_vertical",
1305
1463
  "strikethrough",
1306
1464
  "subscript",
1307
- "subtitles",
1308
1465
  "sun",
1309
1466
  "sun_dim",
1310
1467
  "sun_medium",
@@ -1321,7 +1478,11 @@ LUCIDE_ICON_LIST = [
1321
1478
  "syringe",
1322
1479
  "table",
1323
1480
  "table_2",
1481
+ "table_cells_merge",
1482
+ "table_cells_split",
1483
+ "table_columns_split",
1324
1484
  "table_properties",
1485
+ "table_rows_split",
1325
1486
  "tablet",
1326
1487
  "tablet_smartphone",
1327
1488
  "tablets",
@@ -1334,12 +1495,12 @@ LUCIDE_ICON_LIST = [
1334
1495
  "tally_5",
1335
1496
  "tangent",
1336
1497
  "target",
1337
- "tent",
1498
+ "telescope",
1338
1499
  "tent_tree",
1339
1500
  "terminal",
1340
- "terminal_square",
1501
+ "test_tube_diagonal",
1341
1502
  "test_tube",
1342
- "test_tube_2",
1503
+ "tent",
1343
1504
  "test_tubes",
1344
1505
  "text",
1345
1506
  "text_cursor",
@@ -1380,6 +1541,7 @@ LUCIDE_ICON_LIST = [
1380
1541
  "trash",
1381
1542
  "trash_2",
1382
1543
  "tree_deciduous",
1544
+ "tree_palm",
1383
1545
  "tree_pine",
1384
1546
  "trees",
1385
1547
  "trello",
@@ -1387,6 +1549,7 @@ LUCIDE_ICON_LIST = [
1387
1549
  "trending_up",
1388
1550
  "triangle",
1389
1551
  "triangle_right",
1552
+ "triangle_alert",
1390
1553
  "trophy",
1391
1554
  "truck",
1392
1555
  "turtle",
@@ -1404,13 +1567,11 @@ LUCIDE_ICON_LIST = [
1404
1567
  "unfold_horizontal",
1405
1568
  "unfold_vertical",
1406
1569
  "ungroup",
1407
- "unlink",
1570
+ "university",
1408
1571
  "unlink_2",
1409
- "unlock",
1410
- "unlock_keyhole",
1572
+ "unlink",
1411
1573
  "unplug",
1412
1574
  "upload",
1413
- "upload_cloud",
1414
1575
  "usb",
1415
1576
  "user",
1416
1577
  "user_check",
@@ -1448,17 +1609,18 @@ LUCIDE_ICON_LIST = [
1448
1609
  "volume_x",
1449
1610
  "vote",
1450
1611
  "wallet",
1451
- "wallet_2",
1612
+ "wallet_minimal",
1452
1613
  "wallet_cards",
1453
1614
  "wallpaper",
1454
1615
  "wand",
1455
- "wand_2",
1616
+ "wand_sparkles",
1456
1617
  "warehouse",
1457
1618
  "washing_machine",
1458
1619
  "watch",
1459
1620
  "waves",
1460
1621
  "waypoints",
1461
1622
  "webcam",
1623
+ "webhook_off",
1462
1624
  "webhook",
1463
1625
  "weight",
1464
1626
  "wheat",
@@ -1470,12 +1632,10 @@ LUCIDE_ICON_LIST = [
1470
1632
  "wine",
1471
1633
  "wine_off",
1472
1634
  "workflow",
1635
+ "worm",
1473
1636
  "wrap_text",
1474
1637
  "wrench",
1475
1638
  "x",
1476
- "x_circle",
1477
- "x_octagon",
1478
- "x_square",
1479
1639
  "youtube",
1480
1640
  "zap",
1481
1641
  "zap_off",