##// END OF EJS Templates
Got containers and mutlicontainers working! Yay
Got containers and mutlicontainers working! Yay

File last commit:

r14592:a8368df4
r14598:ed52e826
Show More
__init__.py
13 lines | 747 B | text/x-python | PythonLexer
Jonathan Frederic
s/Widget/DOMWidget s/BaseWidget/Widget
r14540 from .widget import Widget, DOMWidget
Jonathan Frederic
Register new widgets in IPython.html.widgets namespace
r14244
Jonathan Frederic
1-to-1 widget / view mapping
r14592 from .widget_bool import CheckBoxWidget, ToggleButtonWidget
Jonathan Frederic
Fixed widget imports for Python3
r14300 from .widget_button import ButtonWidget
Jonathan Frederic
1-to-1 widget / view mapping
r14592 from .widget_container import ContainerWidget, ModalWidget
from .widget_float import FloatTextWidget
from .widget_float_range import BoundedFloatTextWidget, FloatSliderWidget, FloatProgressWidget
Jonathan Frederic
Add ImageWidget
r14449 from .widget_image import ImageWidget
Jonathan Frederic
1-to-1 widget / view mapping
r14592 from .widget_int import IntTextWidget
from .widget_int_range import BoundedIntTextWidget, IntSliderWidget, IntProgressWidget
from .widget_selection import RadioButtonsWidget, ToggleButtonsWidget, DropdownWidget, ListBoxWidget
from .widget_selectioncontainer import TabWidget, AccordionWidget
from .widget_string import HTMLWidget, LatexWidget, TextBoxWidget, TextAreaWidget