dara-components 1.20.3__py3-none-any.whl → 1.22.1__py3-none-any.whl

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 (81) hide show
  1. dara/components/__init__.py +2 -1
  2. dara/components/_assets/__init__.py +30 -0
  3. dara/components/_assets/auto_js/.gitkeep +0 -0
  4. dara/components/{umd → _assets/auto_js}/dara.components.umd.js +48820 -43508
  5. dara/components/_assets/common/bokeh-3.1.1.min.js +690 -0
  6. dara/components/_assets/common/bokeh-api-3.1.1.min.js +60 -0
  7. dara/components/_assets/common/bokeh-gl-3.1.1.min.js +67 -0
  8. dara/components/_assets/common/bokeh-mathjax-3.1.1.min.js +329 -0
  9. dara/components/_assets/common/bokeh-tables-3.1.1.min.js +132 -0
  10. dara/components/_assets/common/bokeh-widgets-3.1.1.min.js +129 -0
  11. dara/components/_assets/common/pixi-filters.min.js +17 -0
  12. dara/components/_assets/common/pixi.min.js +2214 -0
  13. dara/components/_assets/common/pixi_viewport.js +1 -0
  14. dara/components/_assets/common/plotly.min.js +8 -0
  15. dara/components/common/accordion.py +12 -18
  16. dara/components/common/anchor.py +6 -5
  17. dara/components/common/base_component.py +5 -5
  18. dara/components/common/bullet_list.py +1 -3
  19. dara/components/common/button.py +11 -6
  20. dara/components/common/button_bar.py +6 -6
  21. dara/components/common/card.py +3 -5
  22. dara/components/common/carousel.py +5 -5
  23. dara/components/common/checkbox_group.py +8 -8
  24. dara/components/common/code.py +3 -3
  25. dara/components/common/component_select_list.py +6 -8
  26. dara/components/common/datepicker.py +6 -6
  27. dara/components/common/dropdown_menu.py +9 -9
  28. dara/components/common/dropzone.py +11 -14
  29. dara/components/common/form.py +3 -5
  30. dara/components/common/form_page.py +2 -4
  31. dara/components/common/grid.py +13 -13
  32. dara/components/common/heading.py +2 -3
  33. dara/components/common/icon.py +1 -3
  34. dara/components/common/if_cmp.py +8 -8
  35. dara/components/common/input.py +5 -7
  36. dara/components/common/label.py +3 -5
  37. dara/components/common/markdown.py +2 -4
  38. dara/components/common/overlay.py +1 -3
  39. dara/components/common/progress_bar.py +2 -4
  40. dara/components/common/radio_group.py +8 -8
  41. dara/components/common/select.py +10 -10
  42. dara/components/common/slider.py +11 -11
  43. dara/components/common/spacer.py +2 -4
  44. dara/components/common/stack.py +3 -4
  45. dara/components/common/switch.py +3 -5
  46. dara/components/common/tabbed_card.py +2 -4
  47. dara/components/common/table.py +38 -34
  48. dara/components/common/text.py +3 -5
  49. dara/components/common/textarea.py +5 -5
  50. dara/components/common/time_utils.py +1 -2
  51. dara/components/common/tooltip.py +3 -5
  52. dara/components/common/utils.py +22 -22
  53. dara/components/graphs/components/base_graph_component.py +19 -19
  54. dara/components/graphs/components/causal_graph_viewer.py +2 -4
  55. dara/components/graphs/components/edge_encoder.py +13 -13
  56. dara/components/graphs/components/node_hierarchy_builder.py +12 -12
  57. dara/components/graphs/definitions.py +21 -16
  58. dara/components/graphs/graph_layout.py +36 -37
  59. dara/components/plotting/bokeh/bokeh.py +5 -5
  60. dara/components/plotting/bokeh/utils.py +1 -3
  61. dara/components/plotting/plotly/plotly.py +9 -13
  62. dara/components/plotting/plotly/themes.py +3 -3
  63. dara/components/smart/chat/chat.py +2 -2
  64. dara/components/smart/chat/config.py +1 -1
  65. dara/components/smart/chat/types.py +3 -5
  66. dara/components/smart/code_editor/code_editor.py +2 -2
  67. dara/components/smart/code_editor/util.py +4 -4
  68. dara/components/smart/data_slicer/data_slicer.py +4 -6
  69. dara/components/smart/data_slicer/data_slicer_modal.py +1 -3
  70. dara/components/smart/data_slicer/extension/data_slicer_filter.py +2 -3
  71. dara/components/smart/data_slicer/extension/filter_status_button.py +1 -3
  72. dara/components/smart/data_slicer/utils/core.py +14 -14
  73. dara/components/smart/data_slicer/utils/data_preview.py +1 -3
  74. dara/components/smart/hierarchy.py +5 -5
  75. {dara_components-1.20.3.dist-info → dara_components-1.22.1.dist-info}/METADATA +5 -6
  76. dara_components-1.22.1.dist-info/RECORD +100 -0
  77. dara_components-1.22.1.dist-info/entry_points.txt +3 -0
  78. dara_components-1.20.3.dist-info/RECORD +0 -87
  79. /dara/components/{umd/style.css → _assets/auto_js/dara.components.css} +0 -0
  80. {dara_components-1.20.3.dist-info → dara_components-1.22.1.dist-info}/LICENSE +0 -0
  81. {dara_components-1.20.3.dist-info → dara_components-1.22.1.dist-info}/WHEEL +0 -0
@@ -2,8 +2,6 @@
2
2
  Copyright (c) 2023 by Impulse Innovations Ltd. Private and confidential. Part of the causaLens product.
3
3
  """
4
4
 
5
- from typing import List, Optional
6
-
7
5
  from dara.core.base_definitions import DaraBaseModel as BaseModel
8
6
 
9
7
 
@@ -17,9 +15,9 @@ class ChatUserData(BaseModel):
17
15
  :param groups: list of groups user belongs to
18
16
  """
19
17
 
20
- id: Optional[str] = None
18
+ id: str | None = None
21
19
  name: str
22
- email: Optional[str] = None
20
+ email: str | None = None
23
21
 
24
22
 
25
23
  class ChatMessage(BaseModel):
@@ -50,5 +48,5 @@ class NewMessageBody(BaseModel):
50
48
  """
51
49
 
52
50
  app_url: str
53
- users: List[ChatUserData]
51
+ users: list[ChatUserData]
54
52
  content: ChatMessage
@@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- from typing import Literal, Optional, Union
18
+ from typing import Literal
19
19
 
20
20
  from dara.core.definitions import StyledComponentInstance
21
21
  from dara.core.interactivity import ClientVariable
@@ -45,4 +45,4 @@ class CodeEditor(StyledComponentInstance):
45
45
 
46
46
  script: ClientVariable
47
47
 
48
- language: Optional[Union[Literal['json'], Literal['python'], Literal['markdown'], Literal['sql']]] = None
48
+ language: Literal['json'] | Literal['python'] | Literal['markdown'] | Literal['sql'] | None = None
@@ -16,7 +16,7 @@ limitations under the License.
16
16
  """
17
17
 
18
18
  import ast
19
- from typing import Any, List, Optional, Union
19
+ from typing import Any
20
20
 
21
21
  DEFAULT_WHITELIST = [
22
22
  # Inbuilts
@@ -41,7 +41,7 @@ class ScriptVisitor(ast.NodeVisitor):
41
41
 
42
42
  _function_blacklist = ['read_pickle', 'read_csv', 'read_fwf']
43
43
 
44
- def __init__(self, undeclared_whitelist: List[str]):
44
+ def __init__(self, undeclared_whitelist: list[str]):
45
45
  self.undeclared_whitelist = undeclared_whitelist
46
46
  self.declared_vars: list = []
47
47
  super().__init__()
@@ -89,7 +89,7 @@ class ScriptVisitor(ast.NodeVisitor):
89
89
  self.generic_visit(node)
90
90
 
91
91
  def visit_Call(self, node):
92
- func_name: Optional[str] = None
92
+ func_name: str | None = None
93
93
  if isinstance(node.func, ast.Name):
94
94
  func_name = node.func.id
95
95
  elif isinstance(node.func, ast.Attribute):
@@ -106,7 +106,7 @@ class ScriptVisitor(ast.NodeVisitor):
106
106
  raise SyntaxError(f'Imports are not allowed: {node.names}')
107
107
 
108
108
 
109
- def run_script(script: str, injections: Union[dict, None] = None, whitelist: List[str] = DEFAULT_WHITELIST) -> Any:
109
+ def run_script(script: str, injections: dict | None = None, whitelist: list[str] = DEFAULT_WHITELIST) -> Any:
110
110
  """
111
111
  Run a given script in a "sandbox".
112
112
  Disallows imports, most globals except whitelisted ones.
@@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- from typing import List, Union
19
-
20
18
  from pandas import DataFrame
21
19
 
22
20
  from dara.components import (
@@ -63,7 +61,7 @@ def increment(ctx: UpdateVariable.Ctx): # type: ignore
63
61
 
64
62
  @discover
65
63
  class DataSlicer:
66
- def __init__(self, data: Union[DataFrame, AnyVariable], rows_to_show: int = 10):
64
+ def __init__(self, data: DataFrame | AnyVariable, rows_to_show: int = 10):
67
65
  """
68
66
  DataSlicer component allows the user to select a subset of a dataset by variable ranges or individual rows.
69
67
  Once instantiated, the `DerivedVariable` returned by `get_output()` will contain the filtered data.
@@ -110,7 +108,7 @@ class DataSlicer:
110
108
  return self.final_output
111
109
 
112
110
  @py_component
113
- def describe_table(self, columns: List[Column]):
111
+ def describe_table(self, columns: list[Column]):
114
112
  """
115
113
  Display data.describe() as a Table
116
114
  """
@@ -120,14 +118,14 @@ class DataSlicer:
120
118
  return Table(data=self.describe_data, columns=cols, max_rows=TABLE_ROWS)
121
119
 
122
120
  @py_component
123
- def table_head(self, columns: List[Column]):
121
+ def table_head(self, columns: list[Column]):
124
122
  """
125
123
  Display data.head() as a Table
126
124
  """
127
125
  return Table(data=self.head_data, columns=columns, max_rows=TABLE_ROWS)
128
126
 
129
127
  @py_component
130
- def table_tail(self, columns: List[Column]):
128
+ def table_tail(self, columns: list[Column]):
131
129
  """
132
130
  Display data.tail() as a Table
133
131
  """
@@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- from typing import Union
19
-
20
18
  from pandas import DataFrame
21
19
 
22
20
  from dara.components.common import Button, Heading, Modal, Stack
@@ -42,7 +40,7 @@ def increment(ctx: UpdateVariable.Ctx): # type: ignore
42
40
  class DataSlicerModal(DataSlicer):
43
41
  def __init__(
44
42
  self,
45
- data: Union[DataFrame, AnyDataVariable],
43
+ data: DataFrame | AnyDataVariable,
46
44
  rows_to_show: int = 10,
47
45
  button_top_position: str = '5%',
48
46
  ):
@@ -16,7 +16,6 @@ limitations under the License.
16
16
  """
17
17
 
18
18
  from enum import Enum
19
- from typing import List, Optional
20
19
 
21
20
  from typing_extensions import TypedDict
22
21
 
@@ -61,6 +60,6 @@ class DataSlicerFilter(ComponentInstance):
61
60
 
62
61
  js_module = '@darajs/components'
63
62
 
64
- filters: Variable[List[FilterInstance]]
63
+ filters: Variable[list[FilterInstance]]
65
64
  columns: AnyVariable
66
- height: Optional[str] = None
65
+ height: str | None = None
@@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- from typing import Optional
19
-
20
18
  from typing_extensions import TypedDict
21
19
 
22
20
  from dara.core.base_definitions import Action
@@ -45,4 +43,4 @@ class FilterStatusButton(ComponentInstance):
45
43
 
46
44
  filter_stats: AnyVariable
47
45
  on_click: Action
48
- top_position: Optional[str] = '5%'
46
+ top_position: str | None = '5%'
@@ -17,7 +17,7 @@ limitations under the License.
17
17
 
18
18
  import re
19
19
  from datetime import datetime, timezone
20
- from typing import Any, List, Optional, Union, cast
20
+ from typing import Any, Optional, cast
21
21
 
22
22
  import numpy
23
23
  from pandas import DataFrame, Series
@@ -60,17 +60,17 @@ def infer_column_type(data: DataFrame, col: str) -> ColumnType:
60
60
  return ColumnType.CATEGORICAL
61
61
 
62
62
 
63
- def get_column_definitions(data: DataFrame) -> List[ColumnDefinition]:
64
- symbols: List[str] = data.columns.values.tolist()
63
+ def get_column_definitions(data: DataFrame) -> list[ColumnDefinition]:
64
+ symbols: list[str] = data.columns.values.tolist()
65
65
 
66
66
  return [ColumnDefinition(name=s, type=infer_column_type(data, s)) for s in symbols if s != '__index__']
67
67
 
68
68
 
69
- def get_column_items(column_defs: List[ColumnDefinition]) -> list:
69
+ def get_column_items(column_defs: list[ColumnDefinition]) -> list:
70
70
  return [{'label': c['name'], 'value': c['name']} for c in column_defs]
71
71
 
72
72
 
73
- def isnumber(*values: Union[str, float]):
73
+ def isnumber(*values: str | float):
74
74
  """
75
75
  Check if all values are numeric strings (ints, floats etc)
76
76
  """
@@ -93,7 +93,7 @@ def apply_range_filter(range_filter: str, column: Series) -> Optional['Series']:
93
93
  final_range_filter = None
94
94
 
95
95
  # Look for groups of [<something>]
96
- ranges: List[str] = re.findall(r'\[[^\[\]]+\]', range_filter)
96
+ ranges: list[str] = re.findall(r'\[[^\[\]]+\]', range_filter)
97
97
 
98
98
  for rang in ranges:
99
99
  if ',' not in rang:
@@ -107,8 +107,8 @@ def apply_range_filter(range_filter: str, column: Series) -> Optional['Series']:
107
107
  upper_raw = upper_raw.strip()
108
108
 
109
109
  # Replace ':' symbols with (-)infinity
110
- lower: Union[str, float] = float('-inf') if lower_raw == ':' else lower_raw
111
- upper: Union[str, float] = float('inf') if upper_raw == ':' else upper_raw
110
+ lower: str | float = float('-inf') if lower_raw == ':' else lower_raw
111
+ upper: str | float = float('inf') if upper_raw == ':' else upper_raw
112
112
 
113
113
  # Only consider the range valid if the limits are numbers and lower < upper
114
114
  if lower != '' and upper != '' and isnumber(lower, upper):
@@ -135,7 +135,7 @@ def apply_values_filter(values_filter: str, column: Series, col_type: ColumnType
135
135
  """
136
136
  final_values_filter = None
137
137
 
138
- values: List[Any] = (
138
+ values: list[Any] = (
139
139
  [v.strip() for v in values_filter.split(',') if v != ''] if ',' in values_filter else [values_filter.strip()]
140
140
  )
141
141
 
@@ -200,7 +200,7 @@ def apply_date_filter(from_date: str, to_date: str, column: 'Series') -> Optiona
200
200
  return final_date_filter
201
201
 
202
202
 
203
- def apply_filters(variable_filters: List[FilterInstance], data: DataFrame) -> DataFrame:
203
+ def apply_filters(variable_filters: list[FilterInstance], data: DataFrame) -> DataFrame:
204
204
  """
205
205
  Apply filters on data
206
206
 
@@ -212,9 +212,9 @@ def apply_filters(variable_filters: List[FilterInstance], data: DataFrame) -> Da
212
212
  for fil in variable_filters:
213
213
  var = fil['column']
214
214
 
215
- values_filter: Optional['Series'] = None
216
- range_filter: Optional['Series'] = None
217
- date_filter: Optional['Series'] = None
215
+ values_filter: Series | None = None
216
+ range_filter: Series | None = None
217
+ date_filter: Series | None = None
218
218
 
219
219
  if var is None or var.strip() == '':
220
220
  continue
@@ -245,7 +245,7 @@ def apply_filters(variable_filters: List[FilterInstance], data: DataFrame) -> Da
245
245
  return cast(DataFrame, output)
246
246
 
247
247
 
248
- def get_filter_stats(input_data: DataFrame, output_data: DataFrame, filters: List[FilterInstance]) -> FilterStats:
248
+ def get_filter_stats(input_data: DataFrame, output_data: DataFrame, filters: list[FilterInstance]) -> FilterStats:
249
249
  """
250
250
  Get filter statistics
251
251
 
@@ -15,8 +15,6 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- from typing import List
19
-
20
18
  from pandas import DataFrame
21
19
 
22
20
  from dara.components.common.table import Column, TableFormatterType
@@ -39,7 +37,7 @@ def get_tail_data(df: DataFrame, rows_to_show: int) -> DataFrame:
39
37
  return df.tail(rows_to_show).fillna('NaN')
40
38
 
41
39
 
42
- def get_columns(col_defs: List[ColumnDefinition]) -> List[Column]:
40
+ def get_columns(col_defs: list[ColumnDefinition]) -> list[Column]:
43
41
  cols = []
44
42
 
45
43
  for col_def in col_defs:
@@ -15,7 +15,7 @@ See the License for the specific language governing permissions and
15
15
  limitations under the License.
16
16
  """
17
17
 
18
- from typing import List, Optional, Union
18
+ from typing import Optional
19
19
 
20
20
  from dara.core.base_definitions import Action
21
21
  from dara.core.base_definitions import DaraBaseModel as BaseModel
@@ -29,13 +29,13 @@ class Node(BaseModel):
29
29
  are represented by stacking further Node components as children of a Node.
30
30
  """
31
31
 
32
- children: Optional[List['Node']]
32
+ children: list['Node'] | None
33
33
  id: str
34
34
  label: str
35
35
  weight: float
36
36
 
37
37
  @staticmethod
38
- def from_string(name: str, weight: Optional[float] = None, children: Optional[List['Node']] = None):
38
+ def from_string(name: str, weight: float | None = None, children: list['Node'] | None = None):
39
39
  return Node(id=name, label=name, children=children, weight=weight if weight is not None else 0.0)
40
40
 
41
41
  def find_node(self, target: str) -> Optional['Node']:
@@ -86,5 +86,5 @@ class HierarchyViewer(StyledComponentInstance):
86
86
 
87
87
  allow_leaf_click: bool = True
88
88
  allow_parent_click: bool = True
89
- hierarchy: Union[Node, ClientVariable]
90
- on_click_node: Optional[Action] = None
89
+ hierarchy: Node | ClientVariable
90
+ on_click_node: Action | None = None
@@ -1,22 +1,21 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dara-components
3
- Version: 1.20.3
3
+ Version: 1.22.1
4
4
  Summary: Components for the Dara Framework
5
5
  Home-page: https://dara.causalens.com/
6
6
  License: Apache-2.0
7
7
  Author: Patricia Jacob
8
8
  Author-email: patricia@causalens.com
9
- Requires-Python: >=3.9.0,<3.13.0
9
+ Requires-Python: >=3.10.0,<3.13.0
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
16
- Requires-Dist: bokeh (>=3.1.0,<3.2.0)
15
+ Requires-Dist: bokeh (==3.1.1)
17
16
  Requires-Dist: cai-causal-graph (>=0.3.6)
18
17
  Requires-Dist: certifi (>=2024.7.4)
19
- Requires-Dist: dara-core (==1.20.3)
18
+ Requires-Dist: dara-core (==1.22.1)
20
19
  Requires-Dist: dill (>=0.3.0,<0.4.0)
21
20
  Requires-Dist: matplotlib (>=2.0.0)
22
21
  Requires-Dist: pandas (>=1.1.0,<3.0.0)
@@ -28,7 +27,7 @@ Description-Content-Type: text/markdown
28
27
 
29
28
  # Dara Components
30
29
 
31
- <img src="https://github.com/causalens/dara/blob/v1.20.3/img/dara_light.svg?raw=true">
30
+ <img src="https://github.com/causalens/dara/blob/v1.22.1/img/dara_light.svg?raw=true">
32
31
 
33
32
  ![Master tests](https://github.com/causalens/dara/actions/workflows/tests.yml/badge.svg?branch=master)
34
33
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
@@ -0,0 +1,100 @@
1
+ dara/components/__init__.py,sha256=C_FZGdU_DrybumO2aVYEpVmSJ00WnDtVxWjlvv_HRJ8,1420
2
+ dara/components/_assets/__init__.py,sha256=WRWzSRHxObpPhbIJZ1R28PMkNvQeaz_mtcGyCDleUrQ,863
3
+ dara/components/_assets/auto_js/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ dara/components/_assets/auto_js/dara.components.css,sha256=Qm0_kcxXBDoXvvPTc7YCttkl1zMFifdcp-KufTunPNY,162729
5
+ dara/components/_assets/auto_js/dara.components.umd.js,sha256=HgXn5Fl2oin01j0vy54TIdYkFMCIW2pBZzT0TilPMiw,7038307
6
+ dara/components/_assets/common/bokeh-3.1.1.min.js,sha256=MbVmD3ArfHv5QtlTZlkO9QQOXQjGD1BD24RAfo9Cm3k,942380
7
+ dara/components/_assets/common/bokeh-api-3.1.1.min.js,sha256=mXZVlXj0uhFbxfm1E4g7vSkPABdBFP1ws0FLRTYSZwc,118248
8
+ dara/components/_assets/common/bokeh-gl-3.1.1.min.js,sha256=XzGw14TvTGCtZsW2mXMD5Ro2fVMkKk380eMyqwQN1rQ,194368
9
+ dara/components/_assets/common/bokeh-mathjax-3.1.1.min.js,sha256=OHnNPwsesIboV28J6loLdzqQnNpGodQmmHdwH2nBYqU,1785917
10
+ dara/components/_assets/common/bokeh-tables-3.1.1.min.js,sha256=4Jo6iY8wkWJpSWojLV64y2zxmkK-6FPjdut5VmDxcoo,301276
11
+ dara/components/_assets/common/bokeh-widgets-3.1.1.min.js,sha256=e6_vrGEr5K8ajvikHU-ifGlsfDF8ACkRRFUN7Pfz3HA,301015
12
+ dara/components/_assets/common/pixi-filters.min.js,sha256=ftEOj30zKgcv3YxZcT_C4KdhrFHjXDbdFGObin6MMv4,213180
13
+ dara/components/_assets/common/pixi.min.js,sha256=e8cSvf5AwpSUo1FVIlfWx77eXwwsTs4dXe11R0KfHOc,658993
14
+ dara/components/_assets/common/pixi_viewport.js,sha256=X4X1cEPLpY7EHQfs0lCNsBdH9XDZ5orFpXWli_MoEYc,51418
15
+ dara/components/_assets/common/plotly.min.js,sha256=8zGRhYASzyY8qHO4GcXnQFU4GD_j0OGm17Pld4Z7zDc,3608773
16
+ dara/components/common/__init__.py,sha256=amZWLKVUsq987chihQxzNj40WyspcbBEtEqR0mTZ_pA,4076
17
+ dara/components/common/accordion.py,sha256=EIPxycpE7E1C-ihiVpazEgJIinfHqKeb-Ig4kvU2Pgs,9367
18
+ dara/components/common/anchor.py,sha256=SlC9DXUyTsCrfbgspfXTLeGkLQpkvrU7aGcWIJHC7jc,2825
19
+ dara/components/common/base_component.py,sha256=6TzcQN7VKgSDUvTVCKGkSLHCx55eRG31gZhN1uzFfYE,4584
20
+ dara/components/common/bullet_list.py,sha256=sZsyi8lIprvi1s4QX2ukrhBECwdgR2Yu9eHkLOgd0j4,1396
21
+ dara/components/common/button.py,sha256=v8WSqTf4ma4_ewSSGuWoL2auwXGXRIKfSDUEaTB565Y,5301
22
+ dara/components/common/button_bar.py,sha256=4Vi9vOyCsxyRYvd76vdX9Esu4tpX2ByJYiQS1zgiEHg,3777
23
+ dara/components/common/card.py,sha256=Pk3rQr9UHQSW9_GJfdLoSzkMFRqSCKRl1OMxG3UghrE,2042
24
+ dara/components/common/carousel.py,sha256=ijakwE4AXaYB1MpcVT19NW487LaleV6hvveyDylSjLA,5303
25
+ dara/components/common/checkbox_group.py,sha256=9sHSzwwh3cngR7yi7MtBWEAUExUuIOdcWsecu2WQmd4,4227
26
+ dara/components/common/code.py,sha256=XsoWeq_PUX_DsCES_n6S4zjsANIJP-PJeIa67aM8GfE,2298
27
+ dara/components/common/component_select_list.py,sha256=mSKZF4Ur2-8rB-pkbDATMgsYRsI91K4h_VUEvQjtZGQ,2589
28
+ dara/components/common/datepicker.py,sha256=I739gvGTkIgE_THwtd-3LsbA9H1MHchMESfVMmzBE5A,3613
29
+ dara/components/common/dropdown_menu.py,sha256=02kWvxm-wY6VOLu_CSKxUfPF0f2-SX_fJi4Baa-Wz7M,4754
30
+ dara/components/common/dropzone.py,sha256=eb92nEXkA9IPaCmjl1nvA8LuSviCXYdP5dqiY8NMcy4,4160
31
+ dara/components/common/form.py,sha256=xNrBjiCrixNA17_y9V8P5F5Y5bUWTBVGq_zZ9ajiu6M,3841
32
+ dara/components/common/form_page.py,sha256=C8vy31UxSwbeUk03EtbHHdTYpAMrCjAxkehzTOy6vB4,1852
33
+ dara/components/common/grid.py,sha256=W_6lcs1WCU8REEnraRSlWAreprsRHXOSsJ5IE4CU-oo,10169
34
+ dara/components/common/heading.py,sha256=JHCKGFGJ3UaqMMYDa9DIqd5eH7pn9FyZS0r8BXikMeg,2484
35
+ dara/components/common/html_raw.py,sha256=-Atn6TejBCDkNQIa89KBOB2h2ntnjolU3HphPuFE6t4,1103
36
+ dara/components/common/icon.py,sha256=Ud3EGARfq2KxnsTgIdYjxSzA2IQIBY9iDL-z6LhB1Sg,1916
37
+ dara/components/common/if_cmp.py,sha256=0QwQRB47GLrI1LDbvK8K08sfQ0CMM9QOrffIuhuoohc,3871
38
+ dara/components/common/image.py,sha256=ErDZ4Fv0_OzjbuqhNDDL_Nz1Q9Dq4wM7Q5aYJslCghY,2272
39
+ dara/components/common/input.py,sha256=SPQBsekvCJRr3wbeDoA_vhWlufM0SjuaiNInPxSSPtI,2013
40
+ dara/components/common/label.py,sha256=2wR5AWI4q8PeNbdBzNBZHmp_fM4X6GX0Ct9QfgKJ478,2477
41
+ dara/components/common/markdown.py,sha256=E7HZuzOEgCZ0A77zLcQMijC55eF68smlNpm1dUEKsNM,1665
42
+ dara/components/common/modal.py,sha256=3qah5c0wBxqLyQoYLqNslzJ-IlPKBzyY3IvcwgCgXUw,1524
43
+ dara/components/common/overlay.py,sha256=Po-v9oGk6cJlOyRw0JhilBdSSP3eIqd6MhuoB4-KTEQ,1802
44
+ dara/components/common/paragraph.py,sha256=nOw-ocgjVwPj_QP8CmSHs2y3ghStTmOPGlqWx2UNMNg,2316
45
+ dara/components/common/progress_bar.py,sha256=x3k3IZjqwMEKgXWNaBqZIQqe96d8Pgrp84QX9uM5G6U,1873
46
+ dara/components/common/radio_group.py,sha256=1spV3j-Ut4wVcFXrDnrMiIRx3D38hwqP9PKzHAkoqvg,3667
47
+ dara/components/common/select.py,sha256=xBgRrYvz1yuK71JD_GWHSGh_42Wz6Zlv-7e2Rc1AiXg,6711
48
+ dara/components/common/slider.py,sha256=yPvBdNBcUjFTq1mWmUXpd0qohkIC6pbz9hbIFJsZM0E,6433
49
+ dara/components/common/spacer.py,sha256=foYtnexWIUjFbR4PzW3b8RVXNnf8O065IAxiJrkUc4Y,2664
50
+ dara/components/common/stack.py,sha256=w_tZ4yil6ffFhLWj6LPeYCpN9MsaqGXchk3Cs4VrTis,5519
51
+ dara/components/common/switch.py,sha256=hBVUE-IUuqXk8W-73u1WH0t_Koa60nHLJpygE-uSzr8,1510
52
+ dara/components/common/tabbed_card.py,sha256=WJbsCl2C4rkMEaAWXYdCGo_p7pug3umU0qHcZgftBZI,2307
53
+ dara/components/common/table.py,sha256=A-PMzw2-Ri6yS5lwSubyfPa99U-8I1CVJ8MxNh9OAb4,29994
54
+ dara/components/common/text.py,sha256=IP8m2lpYkF0UoW4HIgEBCeqvi1wjeR5dO_Ydf03lvM0,1942
55
+ dara/components/common/textarea.py,sha256=F0rOUHx7kVJM1BTrTq6BFnLUAN8P0OnlyTudvR0B2Qk,2084
56
+ dara/components/common/time_utils.py,sha256=lB6ncnukBE1-pxz3F7pw0QLGrAiNCCELvBfRI49f-Rc,1717
57
+ dara/components/common/tooltip.py,sha256=ZUl9zcQOLh689OWjqhKuSRp86oJHhigxf9zY4DNrsl8,3244
58
+ dara/components/common/utils.py,sha256=vkCHKW6t2ObcrzQpxnTNffoJa_rcbF8eQXfuQzgq03o,5430
59
+ dara/components/graphs/__init__.py,sha256=xN6ibodsLvO_ATXASRgwfzCLraoWqdKuaGovWRaGxtk,750
60
+ dara/components/graphs/components/__init__.py,sha256=GdWwL5spSsATOU57EmMqOf6t7az1rP5S3Djd0eyL9As,1007
61
+ dara/components/graphs/components/base_graph_component.py,sha256=C68Nmwp_7bUI9vMom6frOK3Wkdv0Nqg6tgWymrlNRMU,4344
62
+ dara/components/graphs/components/causal_graph_viewer.py,sha256=IZEbdHYZOPKCnReKO6W4pqQzujjysr2kwFrgS5AubWg,12397
63
+ dara/components/graphs/components/edge_encoder.py,sha256=znXIqxKIlTMAHGgghmwokxnEsLEmAPwblhnYgA07C78,6850
64
+ dara/components/graphs/components/node_hierarchy_builder.py,sha256=wJf_U9nlJdlGZ0wHbuCamb9IIbqbhhJx3k58Qt3Q0kE,4331
65
+ dara/components/graphs/definitions.py,sha256=MvefrHLC6MH8xduApkgNJJ4C4tHSygdHQdAtkVjrp0o,5345
66
+ dara/components/graphs/graph_layout.py,sha256=wHMQuVuaFWm-N6mTbbjgDtvSDyC9BGLG1ucBa8q87Y4,13694
67
+ dara/components/plotting/__init__.py,sha256=u-wb5iAJBzDLEiXjaMuFy1rLAP_QzfnOvm1ZqMXsgac,797
68
+ dara/components/plotting/bokeh/__init__.py,sha256=GpnbgTI-2XWqBDqLbkHQ73eAEth-h_k0nKqP1ixgJ8I,889
69
+ dara/components/plotting/bokeh/bokeh.py,sha256=oyapuz2UwK7aTogfqgnKrvbIWt1zjkM7SWFxpG1EQjU,3072
70
+ dara/components/plotting/bokeh/themes.py,sha256=ulL5GfyJ5WXCErMfraBgskyu7GJf-zZxw9WQQDlmsrE,3746
71
+ dara/components/plotting/bokeh/utils.py,sha256=wUmjwsxi5xIRfveLr84cppFosgfoceF7kQf_xdFuI30,2003
72
+ dara/components/plotting/matplotlib/__init__.py,sha256=XNvSBKg8ML2IhMm9fJ5-OOHAIX3sGs_q10MaaK2v0EI,681
73
+ dara/components/plotting/matplotlib/matplotlib.py,sha256=VUeOJZ6bTVrsJezmGqUJdezi6Vp53voB9BBWAGfTtrQ,1851
74
+ dara/components/plotting/palettes.py,sha256=dAFOLzDsb5Cq-ffhegLsElaJueGzCJ7Px6J7frMe_YY,8001
75
+ dara/components/plotting/plotly/__init__.py,sha256=vbFmz0BhPw6LktZxtVc4iv5eXRlc-5OqhBKOleUVaBw,835
76
+ dara/components/plotting/plotly/plotly.py,sha256=5_JsdVAMJgonlUhBEIh8EiAGr6zGSdtyqp1D0upyOAs,4827
77
+ dara/components/plotting/plotly/themes.py,sha256=8AUTVhFOvjEutYViTXGHpUp948MR44eU9MIb8FMAOP4,4453
78
+ dara/components/smart/__init__.py,sha256=PzggApMAClCo62aexuZ60MXWJclYfeuXwyZUrYVHOeM,1171
79
+ dara/components/smart/chat/__init__.py,sha256=1J6s1YYBuDYg7Vft5vhMzkGHp2vjqUWy3BZQB4Es6mM,796
80
+ dara/components/smart/chat/chat.py,sha256=MxntiTmPFrCUcRJ-RrgP_sN76NVcHvRBzohyvWg-4CQ,3119
81
+ dara/components/smart/chat/config.py,sha256=qacRuJCq4QuV11cId-1f1t4N-Cr1m9Bouo4YJVpWGwI,599
82
+ dara/components/smart/chat/endpoints.py,sha256=knILdBHrb2zEtL2r6-3OumSPZKdQ_FJLkj_BWrNCOLE,490
83
+ dara/components/smart/chat/types.py,sha256=nSP2_yXrY1zfihwetx5Mwvujrlp42321qZQwLEkqApM,1310
84
+ dara/components/smart/code_editor/__init__.py,sha256=U568YcqDyS8lC2qzf_9TrB62er-UibnbT6IeAiDSaME,749
85
+ dara/components/smart/code_editor/code_editor.py,sha256=lKOvzuipPqMsMJgfie4gMlLpvGsphUKVMrVGaI0jJMM,1255
86
+ dara/components/smart/code_editor/util.py,sha256=SC7AqvRixbmbCEEgj3D8iqV99upipKzfxVR6RetExfI,4496
87
+ dara/components/smart/data_slicer/__init__.py,sha256=_lIrZEKjZXxGDxZJ9t5kfeahMB_VbeOJYZxus1TKOyQ,914
88
+ dara/components/smart/data_slicer/data_slicer.py,sha256=86FN_7lkHVq-RxEYvmp04AHLLBIycmm_M5qciMo8EzY,7389
89
+ dara/components/smart/data_slicer/data_slicer_modal.py,sha256=gzhEbPikiB24yYKc_NBbUq934X5vEDOuC1kUvMBExF4,4116
90
+ dara/components/smart/data_slicer/extension/data_slicer_filter.py,sha256=qveTdceSspnx_6jNy__sVZeHwUcX8wUbR6p-XWra_Js,1614
91
+ dara/components/smart/data_slicer/extension/filter_status_button.py,sha256=nuZX1INgQ0_xJfIzIaA6gHlLKuOc1TBpVhZBLmuKfbc,1313
92
+ dara/components/smart/data_slicer/utils/core.py,sha256=lRONw6kGZRlISvdOIfud9eUVtem_oumAPiDoUDGhXCM,8619
93
+ dara/components/smart/data_slicer/utils/data_preview.py,sha256=-j77RuYWOJNQpZwEgb2iryA42DEgabq1Q8IXHkOUUe8,1697
94
+ dara/components/smart/data_slicer/utils/plotting.py,sha256=TB00576kbA6y1eRuZBe09UAcZmluY4iJsKmYnXZ3hWQ,3389
95
+ dara/components/smart/hierarchy.py,sha256=Q05GVG81ykwWdXcol9mqxopIrWwhhvwtT5TRF-A1j98,2871
96
+ dara_components-1.22.1.dist-info/LICENSE,sha256=r9u1w2RvpLMV6YjuXHIKXRBKzia3fx_roPwboGcLqCc,10944
97
+ dara_components-1.22.1.dist-info/METADATA,sha256=zYBu_RFL0vzmdZBQ62d9W21ht47sQ3tvU4eOHG9tNos,2687
98
+ dara_components-1.22.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
99
+ dara_components-1.22.1.dist-info/entry_points.txt,sha256=QsM8eFLf60NfKyKgE4vstwyaDuuFXgqqgHaLdcsnhnk,70
100
+ dara_components-1.22.1.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [dara_assets]
2
+ dara-components=dara.components._assets:asset_manifest
3
+
@@ -1,87 +0,0 @@
1
- dara/components/__init__.py,sha256=JjN7EAGU-tM7I7YHyKRAuZlcbpJFcVcFaGit5StehDs,1372
2
- dara/components/common/__init__.py,sha256=amZWLKVUsq987chihQxzNj40WyspcbBEtEqR0mTZ_pA,4076
3
- dara/components/common/accordion.py,sha256=AVQD8OCZU5CSlvqwX85NpfLYiDIKoHZArMN7VDlHvQo,9527
4
- dara/components/common/anchor.py,sha256=pcQNFG7xnf12jQnGROgyLlvwmvlsVGo8olxQVu3fXMI,2791
5
- dara/components/common/base_component.py,sha256=rUFmLbe8DHL8S_ey5h93zuIP62cK26zknWwUF5eqp9I,4619
6
- dara/components/common/bullet_list.py,sha256=yk4lFAn6Bzx9UByp27P7ioVidAfsTPl5d4hIkG7MRkQ,1433
7
- dara/components/common/button.py,sha256=MIiQ6KSyO6z13kHd7lHAoxQeAGVYguYELLStw3JwBz0,4907
8
- dara/components/common/button_bar.py,sha256=3_q6ccopXP0Gx_wdsGnejU6oN8D98lsOyQKBNhx-AQA,3802
9
- dara/components/common/card.py,sha256=-_14Um86g_VQVLcCXDv-PpfkiH_pN68J4ZIcZ4lp3kY,2102
10
- dara/components/common/carousel.py,sha256=T-d4w2pF9wB5sNsXe2i3rEfiZoRZJd5D4jVD9ctw-Qk,5344
11
- dara/components/common/checkbox_group.py,sha256=8i2a2YsOv6D_0KtItwiYhmfpJh1KZJOQq70ffzrIuXs,4277
12
- dara/components/common/code.py,sha256=BGlStQS-wPTaQ6LPRwyzowqxtuuH7UQ9HWk_ZjK41XU,2324
13
- dara/components/common/component_select_list.py,sha256=1Qf1odxsG7r1x_DURbtOjIHLoHi40LL4xH8pYpzQevw,2652
14
- dara/components/common/datepicker.py,sha256=f5jtqxbS1ijvYQijSi8fdx4A_Do8prk-m-ISgoBRjlo,3638
15
- dara/components/common/dropdown_menu.py,sha256=rOuNSK4mVwGtQIYZPHb_V0x1lxQgBNRgFbZJpI0OPsU,4813
16
- dara/components/common/dropzone.py,sha256=k2K4Jmg0FB6DIj6C6PMMli2oO82dhmPTAZ2oHkKkH9c,4212
17
- dara/components/common/form.py,sha256=Cczl5BlOIlLPvHvS_g98RxBvJx9jH17HaCo4DhAEvc8,3882
18
- dara/components/common/form_page.py,sha256=6O5JvkxDeEWzzoIhB9xMvSLIiIWsBJvcaT5RSOAKIB0,1890
19
- dara/components/common/grid.py,sha256=2x-yDCze8BgGI4FRp6HX5WR7ytK2KWKckBs8W7VhjrM,10243
20
- dara/components/common/heading.py,sha256=4gon1_xAJGWGOzGTVlSwmueV8uhYp11rdlqoBqXI2sY,2521
21
- dara/components/common/html_raw.py,sha256=-Atn6TejBCDkNQIa89KBOB2h2ntnjolU3HphPuFE6t4,1103
22
- dara/components/common/icon.py,sha256=RRKrq63Lp4eADKM4Axl4MpTwjwUTUdfluX3-gULMDkw,1948
23
- dara/components/common/if_cmp.py,sha256=--N3rTOyuDgmtL82Y6-WFbEaYXBCiUR7sGHxu0uZGfs,3939
24
- dara/components/common/image.py,sha256=ErDZ4Fv0_OzjbuqhNDDL_Nz1Q9Dq4wM7Q5aYJslCghY,2272
25
- dara/components/common/input.py,sha256=kfa3RIMmpzcmZuDgRQySGXzdr7LHm-aQfLHLHPFYKCU,2057
26
- dara/components/common/label.py,sha256=1r58lBZVEudLybaEY-GQ4TNVtQrEyy_rzJhDQva29Pc,2528
27
- dara/components/common/markdown.py,sha256=ojW5eXup7f6euhA0CVX-S40xzUjEgoJXczdS-KSyiUA,1703
28
- dara/components/common/modal.py,sha256=3qah5c0wBxqLyQoYLqNslzJ-IlPKBzyY3IvcwgCgXUw,1524
29
- dara/components/common/overlay.py,sha256=0SqV-qB37aJDrG1M7W3oeO8TRnc5N56nF_RtTj5DvxA,1834
30
- dara/components/common/paragraph.py,sha256=nOw-ocgjVwPj_QP8CmSHs2y3ghStTmOPGlqWx2UNMNg,2316
31
- dara/components/common/progress_bar.py,sha256=EE8hgmJk0pF2NcHptk_hgehkZboWtBWue2DNE3s8a3Q,1918
32
- dara/components/common/radio_group.py,sha256=cnBpDhSzSncDqv66fQPI4PdO2QcPs5bvwv71BNiMKRI,3719
33
- dara/components/common/select.py,sha256=VIa4ecWZcU6Qd0HNuaQtf-0lFrcOHRJPVYHimw871pM,6781
34
- dara/components/common/slider.py,sha256=vgSWYkEtj5fxdj_w9ArjUfjmh-gGFQfq9qIPmo6O4jQ,6489
35
- dara/components/common/spacer.py,sha256=ZRSl_fLntnumalaL41FYpBKDxOUgWgndkkLdDLl8KvI,2702
36
- dara/components/common/stack.py,sha256=FLw0IbQpW7l9A6LDS_KPCeQP0J7QKGYhVZ1RhAjBjpE,5562
37
- dara/components/common/switch.py,sha256=8t3Bra3TdJzQ3fEdra0e8xNJSoDFAy6x8OlaxYddFhY,1548
38
- dara/components/common/tabbed_card.py,sha256=S7m09fBNFR64UG9STcF1w-FriRZ3uKzif9W7q_Xro6E,2342
39
- dara/components/common/table.py,sha256=H_M_FJ65VyAUKtOR-o8Etg_YSRXNHTc4lzh9ZG3cZfo,30064
40
- dara/components/common/text.py,sha256=f-Dvo5vfuOauMlut-L1Jided2dxy8VrUuij6DVa5BZo,1986
41
- dara/components/common/textarea.py,sha256=F8dmyinylAjjXMhNwfiWInrCFuAnWuCPTsKKiEUkmOw,2106
42
- dara/components/common/time_utils.py,sha256=UbAws5HBptJ-xH-m4QRDDET-9leOQu9WdywmExBuqIc,1746
43
- dara/components/common/tooltip.py,sha256=asAuario9NHdK_Whry9A2nzy9vZDf4UFwOTG6XIfA50,3284
44
- dara/components/common/utils.py,sha256=grhO9Mw2y0F57cRg-rTIlMGYAaVmPtfJNXJjBYSj924,5512
45
- dara/components/graphs/__init__.py,sha256=xN6ibodsLvO_ATXASRgwfzCLraoWqdKuaGovWRaGxtk,750
46
- dara/components/graphs/components/__init__.py,sha256=GdWwL5spSsATOU57EmMqOf6t7az1rP5S3Djd0eyL9As,1007
47
- dara/components/graphs/components/base_graph_component.py,sha256=-joDvAQ0Ybvj6fiDevGlGNysMlbKpOJlHLbX7iWDbFs,4430
48
- dara/components/graphs/components/causal_graph_viewer.py,sha256=oQpvW_Vb9xE-gAF7JFOpPU_4kukXSPcZZ7BBLqX3y0Y,12439
49
- dara/components/graphs/components/edge_encoder.py,sha256=P75YnABZHIFvQ8y6sUMiyRKTtVD_gU3QyDgbESbBms8,6926
50
- dara/components/graphs/components/node_hierarchy_builder.py,sha256=mE8OXy_wbojWpnc5vq9zF77lnVI0k1E25DNbD-BiM2E,4362
51
- dara/components/graphs/definitions.py,sha256=M46KV4VSNDnwAcfYoJnx71B_EZIuDAIRG2_mD9LtwOA,5316
52
- dara/components/graphs/graph_layout.py,sha256=Qb3zdcpolDQi_hFHAc2wGELUCvyeVfOqTOiVK-8uvW8,13852
53
- dara/components/plotting/__init__.py,sha256=u-wb5iAJBzDLEiXjaMuFy1rLAP_QzfnOvm1ZqMXsgac,797
54
- dara/components/plotting/bokeh/__init__.py,sha256=GpnbgTI-2XWqBDqLbkHQ73eAEth-h_k0nKqP1ixgJ8I,889
55
- dara/components/plotting/bokeh/bokeh.py,sha256=jNfXkorF3SNJx40RA1MGpJ2Kypx8SEPV6wpF5NDjGP8,3107
56
- dara/components/plotting/bokeh/themes.py,sha256=ulL5GfyJ5WXCErMfraBgskyu7GJf-zZxw9WQQDlmsrE,3746
57
- dara/components/plotting/bokeh/utils.py,sha256=eQ4l3LYY8c2SlbkT6PUbUrjWoj_xwa3iq7O4bIPbEpI,2035
58
- dara/components/plotting/matplotlib/__init__.py,sha256=XNvSBKg8ML2IhMm9fJ5-OOHAIX3sGs_q10MaaK2v0EI,681
59
- dara/components/plotting/matplotlib/matplotlib.py,sha256=VUeOJZ6bTVrsJezmGqUJdezi6Vp53voB9BBWAGfTtrQ,1851
60
- dara/components/plotting/palettes.py,sha256=dAFOLzDsb5Cq-ffhegLsElaJueGzCJ7Px6J7frMe_YY,8001
61
- dara/components/plotting/plotly/__init__.py,sha256=vbFmz0BhPw6LktZxtVc4iv5eXRlc-5OqhBKOleUVaBw,835
62
- dara/components/plotting/plotly/plotly.py,sha256=q2xe2RmxDhtQZdmUgfFkIGYiSFj-eIzGFigDwukTHkw,4832
63
- dara/components/plotting/plotly/themes.py,sha256=i7jpJOfhHVdyJAzTTcDoukUgZNPpH6atXrsZ8s3_dUw,4459
64
- dara/components/smart/__init__.py,sha256=PzggApMAClCo62aexuZ60MXWJclYfeuXwyZUrYVHOeM,1171
65
- dara/components/smart/chat/__init__.py,sha256=1J6s1YYBuDYg7Vft5vhMzkGHp2vjqUWy3BZQB4Es6mM,796
66
- dara/components/smart/chat/chat.py,sha256=PecZyXzKTBrnIGGuJNyCdWVu--Ig68CFFIrkbaNciiE,3117
67
- dara/components/smart/chat/config.py,sha256=kXm_EkfE7mL-8sseZMGSqbXBTWwdIXozv37v-k-B8fg,590
68
- dara/components/smart/chat/endpoints.py,sha256=knILdBHrb2zEtL2r6-3OumSPZKdQ_FJLkj_BWrNCOLE,490
69
- dara/components/smart/chat/types.py,sha256=hSV6Va-8gueYJpXxbQ2UQeFMP1RBKW4bUcNupXJkYss,1351
70
- dara/components/smart/code_editor/__init__.py,sha256=U568YcqDyS8lC2qzf_9TrB62er-UibnbT6IeAiDSaME,749
71
- dara/components/smart/code_editor/code_editor.py,sha256=JCDjReCJgoHO-6x0NCtkPuIupZnHQBzuetH12ZEKbYI,1279
72
- dara/components/smart/code_editor/util.py,sha256=0Qu5AJVcCzaMaPblsw6BqOopA8DeWn2YPDPOf9CKmDc,4528
73
- dara/components/smart/data_slicer/__init__.py,sha256=_lIrZEKjZXxGDxZJ9t5kfeahMB_VbeOJYZxus1TKOyQ,914
74
- dara/components/smart/data_slicer/data_slicer.py,sha256=RiBYnwSV3RNPBivX2Y6-4E8OOP_omboH7Fd0OXrgXMY,7427
75
- dara/components/smart/data_slicer/data_slicer_modal.py,sha256=gNLdl-bpv4p8t4FWFLd2_HwLwv2pFis7Yvmk4DWhwps,4148
76
- dara/components/smart/data_slicer/extension/data_slicer_filter.py,sha256=JfTzJ1HqS9u1RdmkwBGvoDB6wPKYVMfPAXUlUmysK48,1651
77
- dara/components/smart/data_slicer/extension/filter_status_button.py,sha256=02CgqHEBgkZg1E9v9HGrnRYvEiMNhYpajyOwGuPNV1M,1345
78
- dara/components/smart/data_slicer/utils/core.py,sha256=4M_HA8oBzAkHklHgmaJ-qiKA3if37hUe6dB5gse2j1E,8665
79
- dara/components/smart/data_slicer/utils/data_preview.py,sha256=OAphjMrm3F76XmJ09X7sZSeOeKqGJFwN5ooo3qcyrG4,1722
80
- dara/components/smart/data_slicer/utils/plotting.py,sha256=TB00576kbA6y1eRuZBe09UAcZmluY4iJsKmYnXZ3hWQ,3389
81
- dara/components/smart/hierarchy.py,sha256=3RtHj68gA8H_X9FxQdaeSJloTqe8ciH52ku6f7zy33M,2902
82
- dara/components/umd/dara.components.umd.js,sha256=tM-s7FWzdRbRVxEmvN4ggmisuGe98ctZJT8RLEw_xhA,6851538
83
- dara/components/umd/style.css,sha256=Qm0_kcxXBDoXvvPTc7YCttkl1zMFifdcp-KufTunPNY,162729
84
- dara_components-1.20.3.dist-info/LICENSE,sha256=r9u1w2RvpLMV6YjuXHIKXRBKzia3fx_roPwboGcLqCc,10944
85
- dara_components-1.20.3.dist-info/METADATA,sha256=eOVzCjxp4wezFJzlrtgWv2wRVzxNa_Xr5iq-HT3RHv4,2743
86
- dara_components-1.20.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
87
- dara_components-1.20.3.dist-info/RECORD,,