8000 Fixes for widgets by philippjfr · Pull Request #775 · holoviz/panel · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions panel/widgets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@
from .button import Button, Toggle # noqa
from .input import (# noqa
ColorPicker, Checkbox, DatetimeInput, DatePicker, FileInput,
LiteralInput, StaticText, TextInput, Spinner)
LiteralInput, StaticText, TextInput, Spinner, PasswordInput,
TextAreaInput
)
from .misc import Audio, Progress, VideoStream # noqa
from .player import DiscretePlayer, Player # noqa
from .slider import (# noqa
DateSlider, DateRangeSlider, DiscreteSlider, FloatSlider,
IntSlider, IntRangeSlider, RangeSlider)
IntSlider, IntRangeSlider, RangeSlider
)
from .select import (# noqa
AutocompleteInput, CheckBoxGroup, CheckButtonGroup, CrossSelector,
MultiSelect, RadioButtonGroup, RadioBoxGroup, Select, ToggleGroup)
MultiSelect, RadioButtonGroup, RadioBoxGroup, Select, ToggleGroup
)
from .tables import DataFrame # noqa
2 changes: 1 addition & 1 deletion panel/widgets/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def js_on_click(self, args={}, code=""):
callback: Callback
The Callback which can be used to disable the callback.
"""
from .links import Callback
from ..links import Callback
return Callback(self, code={'clicks': code}, args=args)


Expand Down
0