ipytree
ipytree copied to clipboard
A Tree Widget using Jupyter-widgets protocol and jsTree
We're limiting the version range in `pip install "jupyterlab>=3.0.0,
When I try this code ``` tree = Tree(stripes=True, multiple_selection=False) subtree = Node(f'subtree') subtree.opened = False tree.add_node(subtree) for i in range(15): node = Node(f'node{i}') subtree.add_node(node) for j in range(15): subnode...
In a nested Tree, when changing name of node like below, +/- icons disappear. ``` // node is a NodeModel instance node.set('name', name); node.save_changes(); ``` I do know this can...
When the name of a node with an open or close icon is changed, this previously set icon disappears. To prevent this, reload icon after rename_node is called. No need...
Does not seem to run on Google Chrome/Fedora. I get the error message ``` Failed to load model class 'TreeModel' from module 'ipytree' Error: Script error for "ipytree" http://requirejs.org/docs/errors.html#scripterror at...
If I create a `Tree` instance like this ```python from ipytree import Tree, Node tree = Tree(multiple_selection=False) node1 = Node('First Node') node2 = Node('Second Node') tree.add_node(node1) tree.add_node(node2) ``` then I...
Fixes: https://github.com/jupyter-widgets/ipywidgets/issues/3735
Bumps [webpack](https://github.com/webpack/webpack) from 5.74.0 to 5.76.0. Release notes Sourced from webpack's releases. v5.76.0 Bugfixes Avoid cross-realm object access by @Jack-Works in webpack/webpack#16500 Improve hash performance via conditional initialization by @lvivski...
Bumps [http-cache-semantics](https://github.com/kornelski/http-cache-semantics) from 4.1.0 to 4.1.1. Commits 2449650 Update mocha 560b2d8 Don't use regex to trim whitespace b1bdb92 Remove linting package zoo c20dc7e Cache 308 See full diff in compare...
Bumps [json5](https://github.com/json5/json5) from 1.0.1 to 1.0.2. Release notes Sourced from json5's releases. v1.0.2 Fix: Properties with the name __proto__ are added to objects and arrays. (#199) This also fixes a...