Show More
@@ -5,7 +5,7 b' define([' | |||||
5 | "widgets/js/manager", |
|
5 | "widgets/js/manager", | |
6 | "widgets/js/widget_bool", |
|
6 | "widgets/js/widget_bool", | |
7 | "widgets/js/widget_button", |
|
7 | "widgets/js/widget_button", | |
8 |
"widgets/js/widget_ |
|
8 | "widgets/js/widget_box", | |
9 | "widgets/js/widget_float", |
|
9 | "widgets/js/widget_float", | |
10 | "widgets/js/widget_image", |
|
10 | "widgets/js/widget_image", | |
11 | "widgets/js/widget_int", |
|
11 | "widgets/js/widget_int", |
1 | NO CONTENT: file renamed from IPython/html/static/widgets/js/widget_container.js to IPython/html/static/widgets/js/widget_box.js |
|
NO CONTENT: file renamed from IPython/html/static/widgets/js/widget_container.js to IPython/html/static/widgets/js/widget_box.js |
@@ -2,7 +2,7 b' from .widget import Widget, DOMWidget, CallbackDispatcher' | |||||
2 |
|
2 | |||
3 | from .widget_bool import Checkbox, ToggleButton |
|
3 | from .widget_bool import Checkbox, ToggleButton | |
4 | from .widget_button import Button |
|
4 | from .widget_button import Button | |
5 |
from .widget_ |
|
5 | from .widget_box import Box, Popup, FlexBox, HBox, VBox | |
6 | from .widget_float import FloatText, BoundedFloatText, FloatSlider, FloatProgress |
|
6 | from .widget_float import FloatText, BoundedFloatText, FloatSlider, FloatProgress | |
7 | from .widget_image import Image |
|
7 | from .widget_image import Image | |
8 | from .widget_int import IntText, BoundedIntText, IntSlider, IntProgress |
|
8 | from .widget_int import IntText, BoundedIntText, IntSlider, IntProgress | |
@@ -14,7 +14,7 b' from .interaction import interact, interactive, fixed' | |||||
14 | # Deprecated classes |
|
14 | # Deprecated classes | |
15 | from .widget_bool import CheckBox, ToggleButtonWidget |
|
15 | from .widget_bool import CheckBox, ToggleButtonWidget | |
16 | from .widget_button import ButtonWidget |
|
16 | from .widget_button import ButtonWidget | |
17 |
from .widget_ |
|
17 | from .widget_box import ContainerWidget, PopupWidget | |
18 | from .widget_float import FloatTextWidget, BoundedFloatTextWidget, FloatSliderWidget, FloatProgressWidget |
|
18 | from .widget_float import FloatTextWidget, BoundedFloatTextWidget, FloatSliderWidget, FloatProgressWidget | |
19 | from .widget_image import ImageWidget |
|
19 | from .widget_image import ImageWidget | |
20 | from .widget_int import IntTextWidget, BoundedIntTextWidget, IntSliderWidget, IntProgressWidget |
|
20 | from .widget_int import IntTextWidget, BoundedIntTextWidget, IntSliderWidget, IntProgressWidget |
1 | NO CONTENT: file renamed from IPython/html/widgets/widget_container.py to IPython/html/widgets/widget_box.py |
|
NO CONTENT: file renamed from IPython/html/widgets/widget_container.py to IPython/html/widgets/widget_box.py |
@@ -14,7 +14,7 b' pages.' | |||||
14 | #----------------------------------------------------------------------------- |
|
14 | #----------------------------------------------------------------------------- | |
15 | # Imports |
|
15 | # Imports | |
16 | #----------------------------------------------------------------------------- |
|
16 | #----------------------------------------------------------------------------- | |
17 |
from .widget_ |
|
17 | from .widget_box import Box | |
18 | from IPython.utils.traitlets import Unicode, Dict, CInt |
|
18 | from IPython.utils.traitlets import Unicode, Dict, CInt | |
19 | from IPython.utils.warn import DeprecatedClass |
|
19 | from IPython.utils.warn import DeprecatedClass | |
20 |
|
20 |
General Comments 0
You need to be logged in to leave comments.
Login now