
* relock backend deps * bump frontend library versions * go back to react 18.3 * revert to react 18.3.1 (as it was before) * reflex-web keep reflex from current revision, rather than main * relock backend deps (again) * don't check ag-grid version on main repo * config_path is passed via `extra` to avoid pyright error when None * bump next again --------- Co-authored-by: Lendemor <thomas.brandeho@gmail.com>
17 lines
475 B
Python
17 lines
475 B
Python
"""Style constants."""
|
|
|
|
from types import SimpleNamespace
|
|
|
|
|
|
class Tailwind(SimpleNamespace):
|
|
"""Tailwind constants."""
|
|
|
|
# The Tailwindcss version
|
|
VERSION = "tailwindcss@3.4.17"
|
|
# The Tailwind config.
|
|
CONFIG = "tailwind.config.js"
|
|
# Default Tailwind content paths
|
|
CONTENT = ["./pages/**/*.{js,ts,jsx,tsx}", "./utils/**/*.{js,ts,jsx,tsx}"]
|
|
# Relative tailwind style path to root stylesheet in Dirs.STYLES.
|
|
ROOT_STYLE_PATH = "./tailwind.css"
|