Skip to content

Commit

Permalink
Allow Dict as option value, fix #88
Browse files Browse the repository at this point in the history
  • Loading branch information
monim67 committed Jan 12, 2023
1 parent 521aa50 commit 97b45ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap_datepicker_plus/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing_extensions import TypeAlias

InputAttrs: TypeAlias = Dict[str, Any]
WidgetOptions: TypeAlias = Dict[str, Union[bool, int, str]]
WidgetOptions: TypeAlias = Dict[str, Union[bool, int, str, Dict[str, str]]]


class WidgetVariant(str, Enum):
Expand Down

0 comments on commit 97b45ee

Please sign in to comment.