We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8496e0d commit ce711c3Copy full SHA for ce711c3
1 file changed
hyperdiv_docs/pages/reference/components.py
@@ -155,6 +155,7 @@ def reference_component(component_name):
155
"location",
156
"clipboard",
157
"local_storage",
158
+ "cookies",
159
],
160
"Plugins": ["Plugin"],
161
}
@@ -240,6 +241,10 @@ def reference_component(component_name):
240
241
"Animation": ["animation", "keyframe"],
242
243
244
+utilities = {
245
+ "Color Utilities": ["color_mix", "lighten", "darken"],
246
+}
247
+
248
249
def render_menu(menu):
250
for section_name, component_names in menu.items():
@@ -303,3 +308,12 @@ def components():
303
308
)
304
309
305
310
render_menu(ui_components)
311
312
+ with hd.box(gap=1):
313
+ hd.markdown(
314
+ """
315
+ ## Utility Functions
316
317
+ )
318
319
+ render_menu(utilities)
0 commit comments