We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents eb58ee8 + 545a1d1 commit 4cb4d15Copy full SHA for 4cb4d15
dash/dependencies.py
@@ -31,6 +31,11 @@ def to_json(self) -> str:
31
ALL = Wildcard.ALL
32
ALLSMALLER = Wildcard.ALLSMALLER
33
34
+# Backward compatibility alias — the class was renamed from _Wildcard to
35
+# Wildcard in Dash 3.4. Third-party packages (e.g. dash-pydantic-form)
36
+# still import the old private name.
37
+_Wildcard = Wildcard
38
+
39
40
class DashDependency: # pylint: disable=too-few-public-methods
41
component_id: ComponentIdType
0 commit comments