fixed issue 1581
Handle condition where Param.parameters was set
Keep track whether parameters was explicitly set
Co-authored-by: Marc Skov Madsen <masma@orsted.dk> Co-authored-by: Philipp Rudiger <prudiger@anaconda.com>
1 |
"""
|
|
2 |
The widgets module contains Widget which provide bi-directional
|
|
3 |
communication between a rendered panel and the Widget parameters.
|
|
4 |
"""
|
|
5 | 2 |
from __future__ import absolute_import, division, unicode_literals |
6 |
|
|
7 | 2 |
from .ace import Ace # noqa |
8 | 2 |
from .base import Widget, CompositeWidget # noqa |
9 | 2 |
from .button import Button, MenuButton, Toggle # noqa |
10 | 2 |
from .file_selector import FileSelector # noqa |
11 | 2 |
from .indicators import ( # noqa |
12 |
BooleanStatus, |
|
13 |
Dial, |
|
14 |
Gauge, |
|
15 |
LoadingSpinner, |
|
16 |
Number, |
|
17 |
Progress
|
|
18 |
)
|
|
19 | 2 |
from .input import ( # noqa |
20 |
ColorPicker, |
|
21 |
Checkbox, |
|
22 |
DatetimeInput, |
|
23 |
DatePicker, |
|
24 |
FileInput, |
|
25 |
LiteralInput, |
|
26 |
StaticText, |
|
27 |
TextInput, |
|
28 |
Spinner, |
|
29 |
PasswordInput, |
|
30 |
TextAreaInput, |
|
31 |
)
|
|
32 | 2 |
from .misc import Audio, FileDownload, VideoStream # noqa |
33 | 2 |
from .player import DiscretePlayer, Player # noqa |
34 | 2 |
from .slider import ( # noqa |
35 |
DateSlider, DateRangeSlider, DiscreteSlider, FloatSlider, |
|
36 |
IntSlider, IntRangeSlider, RangeSlider |
|
37 |
)
|
|
38 | 2 |
from .select import ( # noqa |
39 |
AutocompleteInput, CheckBoxGroup, CheckButtonGroup, CrossSelector, |
|
40 |
MultiChoice, MultiSelect, RadioButtonGroup, RadioBoxGroup, Select, |
|
41 |
ToggleGroup
|
|
42 |
)
|
|
43 | 2 |
from .tables import DataFrame # noqa |
Read our documentation on viewing source code .