@@ -18,16 +18,16 @@ class Box(DOMWidget):
1818 # Child widgets in the container.
1919 # Using a tuple here to force reassignment to update the list.
2020 # When a proper notifying-list trait exists, that is what should be used here.
21- children = Tuple (sync = True , allow_none = False )
21+ children = Tuple (sync = True )
2222
2323 _overflow_values = ['visible' , 'hidden' , 'scroll' , 'auto' , 'initial' , 'inherit' , '' ]
2424 overflow_x = CaselessStrEnum (
2525 values = _overflow_values ,
26- default_value = '' , allow_none = False , sync = True , help = """Specifies what
26+ default_value = '' , sync = True , help = """Specifies what
2727 happens to content that is too large for the rendered region.""" )
2828 overflow_y = CaselessStrEnum (
2929 values = _overflow_values ,
30- default_value = '' , allow_none = False , sync = True , help = """Specifies what
30+ default_value = '' , sync = True , help = """Specifies what
3131 happens to content that is too large for the rendered region.""" )
3232
3333 box_style = CaselessStrEnum (
@@ -59,10 +59,10 @@ def _flex_changed(self, name, old, new):
5959 _locations = ['start' , 'center' , 'end' , 'baseline' , 'stretch' ]
6060 pack = CaselessStrEnum (
6161 values = _locations ,
62- default_value = 'start' , allow_none = False , sync = True )
62+ default_value = 'start' , sync = True )
6363 align = CaselessStrEnum (
6464 values = _locations ,
65- default_value = 'start' , allow_none = False , sync = True )
65+ default_value = 'start' , sync = True )
6666
6767
6868def VBox (* pargs , ** kwargs ):
0 commit comments