streamlit-react-components 1.7.2__py3-none-any.whl → 1.7.4__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.
@@ -24,7 +24,19 @@ from .form import (
24
24
  radio_group,
25
25
  )
26
26
 
27
- __version__ = "1.7.2"
27
+ from .tailwind import (
28
+ tw,
29
+ parse_tailwind_classes,
30
+ tailwind_to_css,
31
+ hex_to_rgba,
32
+ )
33
+
34
+ from .styled_container import (
35
+ styled_container,
36
+ css,
37
+ )
38
+
39
+ __version__ = "1.7.4"
28
40
 
29
41
  __all__ = [
30
42
  # Common components
@@ -43,4 +55,12 @@ __all__ = [
43
55
  "form_slider",
44
56
  "checkbox_group",
45
57
  "radio_group",
58
+ # Tailwind utilities
59
+ "tw",
60
+ "parse_tailwind_classes",
61
+ "tailwind_to_css",
62
+ "hex_to_rgba",
63
+ # Styled container
64
+ "styled_container",
65
+ "css",
46
66
  ]