dash-tree-components 0.0.2__tar.gz → 0.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/PKG-INFO +1 -1
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components/Tree.py +13 -4
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components/dash_tree_components.min.js +1 -1
- dash_tree_components-0.0.3/dash_tree_components/dash_tree_components.min.js.map +1 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components/metadata.json +30 -1
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components/package-info.json +1 -1
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components.egg-info/PKG-INFO +1 -1
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/package.json +1 -1
- dash_tree_components-0.0.2/dash_tree_components/dash_tree_components.min.js.map +0 -1
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/LICENSE +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/MANIFEST.in +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/README.md +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components/__init__.py +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components/_imports_.py +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components.egg-info/SOURCES.txt +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components.egg-info/dependency_links.txt +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/dash_tree_components.egg-info/top_level.txt +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/setup.cfg +0 -0
- {dash_tree_components-0.0.2 → dash_tree_components-0.0.3}/setup.py +0 -0
|
@@ -17,7 +17,7 @@ Keyword arguments:
|
|
|
17
17
|
- className (string; optional):
|
|
18
18
|
Class name of the tree.
|
|
19
19
|
|
|
20
|
-
-
|
|
20
|
+
- collapse_icon_color (string; default '#888888'):
|
|
21
21
|
Color of collapse icons.
|
|
22
22
|
|
|
23
23
|
- data (list; required):
|
|
@@ -29,9 +29,15 @@ Keyword arguments:
|
|
|
29
29
|
- indent (number; optional):
|
|
30
30
|
Indent of the Tree.
|
|
31
31
|
|
|
32
|
+
- node_icon_color (string; default '#424242'):
|
|
33
|
+
Color of collapse icons.
|
|
34
|
+
|
|
32
35
|
- open_by_default (boolean; default True):
|
|
33
36
|
Open Tree by default.
|
|
34
37
|
|
|
38
|
+
- overscan_count (number; optional):
|
|
39
|
+
Overscan count.
|
|
40
|
+
|
|
35
41
|
- padding (number; optional):
|
|
36
42
|
Padding.
|
|
37
43
|
|
|
@@ -47,6 +53,9 @@ Keyword arguments:
|
|
|
47
53
|
- row_height (number; optional):
|
|
48
54
|
The height of the rows.
|
|
49
55
|
|
|
56
|
+
- searchable (boolean; default True):
|
|
57
|
+
Whether to include a search bar.
|
|
58
|
+
|
|
50
59
|
- width (number; optional):
|
|
51
60
|
The width of the Tree."""
|
|
52
61
|
_children_props = []
|
|
@@ -54,10 +63,10 @@ Keyword arguments:
|
|
|
54
63
|
_namespace = 'dash_tree_components'
|
|
55
64
|
_type = 'Tree'
|
|
56
65
|
@_explicitize_args
|
|
57
|
-
def __init__(self, id=Component.UNDEFINED, data=Component.REQUIRED, width=Component.UNDEFINED, height=Component.UNDEFINED, row_height=Component.UNDEFINED, indent=Component.UNDEFINED, padding_top=Component.UNDEFINED, padding_bottom=Component.UNDEFINED, padding=Component.UNDEFINED,
|
|
58
|
-
self._prop_names = ['id', 'className', '
|
|
66
|
+
def __init__(self, id=Component.UNDEFINED, data=Component.REQUIRED, width=Component.UNDEFINED, height=Component.UNDEFINED, row_height=Component.UNDEFINED, overscan_count=Component.UNDEFINED, indent=Component.UNDEFINED, padding_top=Component.UNDEFINED, padding_bottom=Component.UNDEFINED, padding=Component.UNDEFINED, collapse_icon_color=Component.UNDEFINED, node_icon_color=Component.UNDEFINED, open_by_default=Component.UNDEFINED, searchable=Component.UNDEFINED, className=Component.UNDEFINED, rowClassName=Component.UNDEFINED, **kwargs):
|
|
67
|
+
self._prop_names = ['id', 'className', 'collapse_icon_color', 'data', 'height', 'indent', 'node_icon_color', 'open_by_default', 'overscan_count', 'padding', 'padding_bottom', 'padding_top', 'rowClassName', 'row_height', 'searchable', 'width']
|
|
59
68
|
self._valid_wildcard_attributes = []
|
|
60
|
-
self.available_properties = ['id', 'className', '
|
|
69
|
+
self.available_properties = ['id', 'className', 'collapse_icon_color', 'data', 'height', 'indent', 'node_icon_color', 'open_by_default', 'overscan_count', 'padding', 'padding_bottom', 'padding_top', 'rowClassName', 'row_height', 'searchable', 'width']
|
|
61
70
|
self.available_wildcard_properties = []
|
|
62
71
|
_explicit_args = kwargs.pop('_explicit_args')
|
|
63
72
|
_locals = locals()
|