Skip to content

Commit 97b45ee

Browse files
committed
Allow Dict as option value, fix #88
1 parent 521aa50 commit 97b45ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap_datepicker_plus/schemas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing_extensions import TypeAlias
77

88
InputAttrs: TypeAlias = Dict[str, Any]
9-
WidgetOptions: TypeAlias = Dict[str, Union[bool, int, str]]
9+
WidgetOptions: TypeAlias = Dict[str, Union[bool, int, str, Dict[str, str]]]
1010

1111

1212
class WidgetVariant(str, Enum):

0 commit comments

Comments
 (0)