##// END OF EJS Templates
Fixed context errors and a couple of typos to get the tests working again
Fixed context errors and a couple of typos to get the tests working again

File last commit:

r14676:25a9d02e
r14686:ddb2afae
Show More
__init__.py
11 lines | 687 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
s/ModalView/PopupView
r14676 from .widget_container import ContainerWidget, PopupWidget
Jonathan Frederic
Create base widget classes
r14670 from .widget_float import FloatTextWidget, BoundedFloatTextWidget, FloatSliderWidget, FloatProgressWidget
Jonathan Frederic
Add ImageWidget
r14449 from .widget_image import ImageWidget
Jonathan Frederic
Create base widget classes
r14670 from .widget_int import IntTextWidget, BoundedIntTextWidget, IntSliderWidget, IntProgressWidget
Jonathan Frederic
1-to-1 widget / view mapping
r14592 from .widget_selection import RadioButtonsWidget, ToggleButtonsWidget, DropdownWidget, ListBoxWidget
from .widget_selectioncontainer import TabWidget, AccordionWidget
from .widget_string import HTMLWidget, LatexWidget, TextBoxWidget, TextAreaWidget