dashlab 0.2.0__tar.gz → 0.2.1__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.
Files changed (24) hide show
  1. {dashlab-0.2.0 → dashlab-0.2.1}/PKG-INFO +1 -1
  2. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/_version.py +1 -1
  3. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/listw.css +4 -2
  4. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/widgets.py +1 -0
  5. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/PKG-INFO +1 -1
  6. {dashlab-0.2.0 → dashlab-0.2.1}/LICENSE +0 -0
  7. {dashlab-0.2.0 → dashlab-0.2.1}/README.md +0 -0
  8. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/__init__.py +0 -0
  9. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/_internal.py +0 -0
  10. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/base.py +0 -0
  11. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/core.py +0 -0
  12. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/patches.py +0 -0
  13. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/animator.css +0 -0
  14. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/animator.js +0 -0
  15. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/fscreen.css +0 -0
  16. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/fscreen.js +0 -0
  17. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/static/listw.js +0 -0
  18. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab/utils.py +0 -0
  19. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/SOURCES.txt +0 -0
  20. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/dependency_links.txt +0 -0
  21. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/requires.txt +0 -0
  22. {dashlab-0.2.0 → dashlab-0.2.1}/dashlab.egg-info/top_level.txt +0 -0
  23. {dashlab-0.2.0 → dashlab-0.2.1}/pyproject.toml +0 -0
  24. {dashlab-0.2.0 → dashlab-0.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashlab
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A Python package for dashboard and data visualization tools.
5
5
  Author-email: Abdul Saboor <asaboor.my@outlook.com>
6
6
  License-Expression: MIT
@@ -1,4 +1,4 @@
1
1
  # This is automatically updated at build time, do not edit manually.
2
2
  # Double qoites are checked here
3
3
 
4
- __version__ = "0.2.0"
4
+ __version__ = "0.2.1"
@@ -1,8 +1,11 @@
1
1
  .list-widget {
2
2
  display: flex;
3
3
  flex-direction: column;
4
- border-radius: 4px;
5
4
  overflow-y: auto; /* user can set max height, so allow this */
5
+ }
6
+
7
+ .list-widget:not(.tabs) {
8
+ border-radius: 4px;
6
9
  margin-block: 0.5em 0.5em;
7
10
  }
8
11
 
@@ -10,7 +13,6 @@
10
13
  .list-widget.tabs {
11
14
  flex-direction: row;
12
15
  margin-bottom: 0;
13
- padding: 0 4px;
14
16
  border-radius: 4px 4px 0 0;
15
17
  border-bottom: 1px inset #8884;
16
18
  box-sizing: border-box;
@@ -168,6 +168,7 @@ class TabsWidget(GridBox):
168
168
  @traitlets.observe('vertical', 'tabs_width', 'tabs_height')
169
169
  def _update_layout(self, change):
170
170
  self.layout.grid_template_columns = f'{self.tabs_width} 1fr' if self.vertical else '1fr'
171
+ self.layout.grid_template_rows = '1fr' if self.vertical else f'{self.tabs_height} 1fr'
171
172
  self._lw.layout.height = self.tabs_height if not self.vertical else 'auto'
172
173
 
173
174
  @traitlets.validate('children')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dashlab
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A Python package for dashboard and data visualization tools.
5
5
  Author-email: Abdul Saboor <asaboor.my@outlook.com>
6
6
  License-Expression: MIT
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes