dara-components 1.21.16__py3-none-any.whl → 1.21.18__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 (64) hide show
  1. dara/components/common/accordion.py +11 -17
  2. dara/components/common/anchor.py +4 -6
  3. dara/components/common/base_component.py +5 -5
  4. dara/components/common/bullet_list.py +1 -3
  5. dara/components/common/button.py +7 -7
  6. dara/components/common/button_bar.py +6 -6
  7. dara/components/common/card.py +3 -5
  8. dara/components/common/carousel.py +5 -5
  9. dara/components/common/checkbox_group.py +8 -8
  10. dara/components/common/code.py +3 -3
  11. dara/components/common/component_select_list.py +6 -8
  12. dara/components/common/datepicker.py +6 -6
  13. dara/components/common/dropdown_menu.py +9 -9
  14. dara/components/common/dropzone.py +11 -14
  15. dara/components/common/form.py +3 -5
  16. dara/components/common/form_page.py +2 -4
  17. dara/components/common/grid.py +13 -13
  18. dara/components/common/heading.py +2 -3
  19. dara/components/common/icon.py +1 -3
  20. dara/components/common/if_cmp.py +8 -8
  21. dara/components/common/input.py +5 -7
  22. dara/components/common/label.py +3 -5
  23. dara/components/common/markdown.py +2 -4
  24. dara/components/common/overlay.py +1 -3
  25. dara/components/common/progress_bar.py +2 -4
  26. dara/components/common/radio_group.py +8 -8
  27. dara/components/common/select.py +10 -10
  28. dara/components/common/slider.py +11 -11
  29. dara/components/common/spacer.py +2 -4
  30. dara/components/common/stack.py +3 -4
  31. dara/components/common/switch.py +3 -5
  32. dara/components/common/tabbed_card.py +2 -4
  33. dara/components/common/table.py +30 -32
  34. dara/components/common/text.py +3 -5
  35. dara/components/common/textarea.py +5 -5
  36. dara/components/common/time_utils.py +1 -2
  37. dara/components/common/tooltip.py +3 -5
  38. dara/components/common/utils.py +22 -22
  39. dara/components/graphs/components/base_graph_component.py +19 -19
  40. dara/components/graphs/components/causal_graph_viewer.py +2 -4
  41. dara/components/graphs/components/edge_encoder.py +13 -13
  42. dara/components/graphs/components/node_hierarchy_builder.py +11 -11
  43. dara/components/graphs/definitions.py +21 -16
  44. dara/components/graphs/graph_layout.py +36 -37
  45. dara/components/plotting/bokeh/bokeh.py +5 -5
  46. dara/components/plotting/bokeh/utils.py +1 -3
  47. dara/components/plotting/plotly/plotly.py +6 -6
  48. dara/components/plotting/plotly/themes.py +3 -3
  49. dara/components/smart/chat/config.py +1 -1
  50. dara/components/smart/chat/types.py +3 -5
  51. dara/components/smart/code_editor/code_editor.py +2 -2
  52. dara/components/smart/code_editor/util.py +4 -4
  53. dara/components/smart/data_slicer/data_slicer.py +4 -6
  54. dara/components/smart/data_slicer/data_slicer_modal.py +1 -3
  55. dara/components/smart/data_slicer/extension/data_slicer_filter.py +2 -3
  56. dara/components/smart/data_slicer/extension/filter_status_button.py +1 -3
  57. dara/components/smart/data_slicer/utils/core.py +14 -14
  58. dara/components/smart/data_slicer/utils/data_preview.py +1 -3
  59. dara/components/smart/hierarchy.py +5 -5
  60. {dara_components-1.21.16.dist-info → dara_components-1.21.18.dist-info}/METADATA +4 -5
  61. dara_components-1.21.18.dist-info/RECORD +87 -0
  62. dara_components-1.21.16.dist-info/RECORD +0 -87
  63. {dara_components-1.21.16.dist-info → dara_components-1.21.18.dist-info}/LICENSE +0 -0
  64. {dara_components-1.21.16.dist-info → dara_components-1.21.18.dist-info}/WHEEL +0 -0
@@ -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.21.16
3
+ Version: 1.21.18
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
15
  Requires-Dist: bokeh (>=3.1.0,<3.2.0)
17
16
  Requires-Dist: cai-causal-graph (>=0.3.6)
18
17
  Requires-Dist: certifi (>=2024.7.4)
19
- Requires-Dist: dara-core (==1.21.16)
18
+ Requires-Dist: dara-core (==1.21.18)
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.21.16/img/dara_light.svg?raw=true">
30
+ <img src="https://github.com/causalens/dara/blob/v1.21.18/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,87 @@
1
+ dara/components/__init__.py,sha256=C_FZGdU_DrybumO2aVYEpVmSJ00WnDtVxWjlvv_HRJ8,1420
2
+ dara/components/common/__init__.py,sha256=amZWLKVUsq987chihQxzNj40WyspcbBEtEqR0mTZ_pA,4076
3
+ dara/components/common/accordion.py,sha256=EIPxycpE7E1C-ihiVpazEgJIinfHqKeb-Ig4kvU2Pgs,9367
4
+ dara/components/common/anchor.py,sha256=SlC9DXUyTsCrfbgspfXTLeGkLQpkvrU7aGcWIJHC7jc,2825
5
+ dara/components/common/base_component.py,sha256=6TzcQN7VKgSDUvTVCKGkSLHCx55eRG31gZhN1uzFfYE,4584
6
+ dara/components/common/bullet_list.py,sha256=sZsyi8lIprvi1s4QX2ukrhBECwdgR2Yu9eHkLOgd0j4,1396
7
+ dara/components/common/button.py,sha256=v8WSqTf4ma4_ewSSGuWoL2auwXGXRIKfSDUEaTB565Y,5301
8
+ dara/components/common/button_bar.py,sha256=4Vi9vOyCsxyRYvd76vdX9Esu4tpX2ByJYiQS1zgiEHg,3777
9
+ dara/components/common/card.py,sha256=Pk3rQr9UHQSW9_GJfdLoSzkMFRqSCKRl1OMxG3UghrE,2042
10
+ dara/components/common/carousel.py,sha256=ijakwE4AXaYB1MpcVT19NW487LaleV6hvveyDylSjLA,5303
11
+ dara/components/common/checkbox_group.py,sha256=9sHSzwwh3cngR7yi7MtBWEAUExUuIOdcWsecu2WQmd4,4227
12
+ dara/components/common/code.py,sha256=XsoWeq_PUX_DsCES_n6S4zjsANIJP-PJeIa67aM8GfE,2298
13
+ dara/components/common/component_select_list.py,sha256=mSKZF4Ur2-8rB-pkbDATMgsYRsI91K4h_VUEvQjtZGQ,2589
14
+ dara/components/common/datepicker.py,sha256=I739gvGTkIgE_THwtd-3LsbA9H1MHchMESfVMmzBE5A,3613
15
+ dara/components/common/dropdown_menu.py,sha256=02kWvxm-wY6VOLu_CSKxUfPF0f2-SX_fJi4Baa-Wz7M,4754
16
+ dara/components/common/dropzone.py,sha256=eb92nEXkA9IPaCmjl1nvA8LuSviCXYdP5dqiY8NMcy4,4160
17
+ dara/components/common/form.py,sha256=xNrBjiCrixNA17_y9V8P5F5Y5bUWTBVGq_zZ9ajiu6M,3841
18
+ dara/components/common/form_page.py,sha256=C8vy31UxSwbeUk03EtbHHdTYpAMrCjAxkehzTOy6vB4,1852
19
+ dara/components/common/grid.py,sha256=W_6lcs1WCU8REEnraRSlWAreprsRHXOSsJ5IE4CU-oo,10169
20
+ dara/components/common/heading.py,sha256=JHCKGFGJ3UaqMMYDa9DIqd5eH7pn9FyZS0r8BXikMeg,2484
21
+ dara/components/common/html_raw.py,sha256=-Atn6TejBCDkNQIa89KBOB2h2ntnjolU3HphPuFE6t4,1103
22
+ dara/components/common/icon.py,sha256=Ud3EGARfq2KxnsTgIdYjxSzA2IQIBY9iDL-z6LhB1Sg,1916
23
+ dara/components/common/if_cmp.py,sha256=0QwQRB47GLrI1LDbvK8K08sfQ0CMM9QOrffIuhuoohc,3871
24
+ dara/components/common/image.py,sha256=ErDZ4Fv0_OzjbuqhNDDL_Nz1Q9Dq4wM7Q5aYJslCghY,2272
25
+ dara/components/common/input.py,sha256=SPQBsekvCJRr3wbeDoA_vhWlufM0SjuaiNInPxSSPtI,2013
26
+ dara/components/common/label.py,sha256=2wR5AWI4q8PeNbdBzNBZHmp_fM4X6GX0Ct9QfgKJ478,2477
27
+ dara/components/common/markdown.py,sha256=E7HZuzOEgCZ0A77zLcQMijC55eF68smlNpm1dUEKsNM,1665
28
+ dara/components/common/modal.py,sha256=3qah5c0wBxqLyQoYLqNslzJ-IlPKBzyY3IvcwgCgXUw,1524
29
+ dara/components/common/overlay.py,sha256=Po-v9oGk6cJlOyRw0JhilBdSSP3eIqd6MhuoB4-KTEQ,1802
30
+ dara/components/common/paragraph.py,sha256=nOw-ocgjVwPj_QP8CmSHs2y3ghStTmOPGlqWx2UNMNg,2316
31
+ dara/components/common/progress_bar.py,sha256=x3k3IZjqwMEKgXWNaBqZIQqe96d8Pgrp84QX9uM5G6U,1873
32
+ dara/components/common/radio_group.py,sha256=1spV3j-Ut4wVcFXrDnrMiIRx3D38hwqP9PKzHAkoqvg,3667
33
+ dara/components/common/select.py,sha256=xBgRrYvz1yuK71JD_GWHSGh_42Wz6Zlv-7e2Rc1AiXg,6711
34
+ dara/components/common/slider.py,sha256=yPvBdNBcUjFTq1mWmUXpd0qohkIC6pbz9hbIFJsZM0E,6433
35
+ dara/components/common/spacer.py,sha256=foYtnexWIUjFbR4PzW3b8RVXNnf8O065IAxiJrkUc4Y,2664
36
+ dara/components/common/stack.py,sha256=w_tZ4yil6ffFhLWj6LPeYCpN9MsaqGXchk3Cs4VrTis,5519
37
+ dara/components/common/switch.py,sha256=hBVUE-IUuqXk8W-73u1WH0t_Koa60nHLJpygE-uSzr8,1510
38
+ dara/components/common/tabbed_card.py,sha256=WJbsCl2C4rkMEaAWXYdCGo_p7pug3umU0qHcZgftBZI,2307
39
+ dara/components/common/table.py,sha256=A-PMzw2-Ri6yS5lwSubyfPa99U-8I1CVJ8MxNh9OAb4,29994
40
+ dara/components/common/text.py,sha256=IP8m2lpYkF0UoW4HIgEBCeqvi1wjeR5dO_Ydf03lvM0,1942
41
+ dara/components/common/textarea.py,sha256=F0rOUHx7kVJM1BTrTq6BFnLUAN8P0OnlyTudvR0B2Qk,2084
42
+ dara/components/common/time_utils.py,sha256=lB6ncnukBE1-pxz3F7pw0QLGrAiNCCELvBfRI49f-Rc,1717
43
+ dara/components/common/tooltip.py,sha256=ZUl9zcQOLh689OWjqhKuSRp86oJHhigxf9zY4DNrsl8,3244
44
+ dara/components/common/utils.py,sha256=vkCHKW6t2ObcrzQpxnTNffoJa_rcbF8eQXfuQzgq03o,5430
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=C68Nmwp_7bUI9vMom6frOK3Wkdv0Nqg6tgWymrlNRMU,4344
48
+ dara/components/graphs/components/causal_graph_viewer.py,sha256=IZEbdHYZOPKCnReKO6W4pqQzujjysr2kwFrgS5AubWg,12397
49
+ dara/components/graphs/components/edge_encoder.py,sha256=znXIqxKIlTMAHGgghmwokxnEsLEmAPwblhnYgA07C78,6850
50
+ dara/components/graphs/components/node_hierarchy_builder.py,sha256=wJf_U9nlJdlGZ0wHbuCamb9IIbqbhhJx3k58Qt3Q0kE,4331
51
+ dara/components/graphs/definitions.py,sha256=MvefrHLC6MH8xduApkgNJJ4C4tHSygdHQdAtkVjrp0o,5345
52
+ dara/components/graphs/graph_layout.py,sha256=wHMQuVuaFWm-N6mTbbjgDtvSDyC9BGLG1ucBa8q87Y4,13694
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=oyapuz2UwK7aTogfqgnKrvbIWt1zjkM7SWFxpG1EQjU,3072
56
+ dara/components/plotting/bokeh/themes.py,sha256=ulL5GfyJ5WXCErMfraBgskyu7GJf-zZxw9WQQDlmsrE,3746
57
+ dara/components/plotting/bokeh/utils.py,sha256=wUmjwsxi5xIRfveLr84cppFosgfoceF7kQf_xdFuI30,2003
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=5_JsdVAMJgonlUhBEIh8EiAGr6zGSdtyqp1D0upyOAs,4827
63
+ dara/components/plotting/plotly/themes.py,sha256=8AUTVhFOvjEutYViTXGHpUp948MR44eU9MIb8FMAOP4,4453
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=MxntiTmPFrCUcRJ-RrgP_sN76NVcHvRBzohyvWg-4CQ,3119
67
+ dara/components/smart/chat/config.py,sha256=qacRuJCq4QuV11cId-1f1t4N-Cr1m9Bouo4YJVpWGwI,599
68
+ dara/components/smart/chat/endpoints.py,sha256=knILdBHrb2zEtL2r6-3OumSPZKdQ_FJLkj_BWrNCOLE,490
69
+ dara/components/smart/chat/types.py,sha256=nSP2_yXrY1zfihwetx5Mwvujrlp42321qZQwLEkqApM,1310
70
+ dara/components/smart/code_editor/__init__.py,sha256=U568YcqDyS8lC2qzf_9TrB62er-UibnbT6IeAiDSaME,749
71
+ dara/components/smart/code_editor/code_editor.py,sha256=lKOvzuipPqMsMJgfie4gMlLpvGsphUKVMrVGaI0jJMM,1255
72
+ dara/components/smart/code_editor/util.py,sha256=SC7AqvRixbmbCEEgj3D8iqV99upipKzfxVR6RetExfI,4496
73
+ dara/components/smart/data_slicer/__init__.py,sha256=_lIrZEKjZXxGDxZJ9t5kfeahMB_VbeOJYZxus1TKOyQ,914
74
+ dara/components/smart/data_slicer/data_slicer.py,sha256=86FN_7lkHVq-RxEYvmp04AHLLBIycmm_M5qciMo8EzY,7389
75
+ dara/components/smart/data_slicer/data_slicer_modal.py,sha256=gzhEbPikiB24yYKc_NBbUq934X5vEDOuC1kUvMBExF4,4116
76
+ dara/components/smart/data_slicer/extension/data_slicer_filter.py,sha256=qveTdceSspnx_6jNy__sVZeHwUcX8wUbR6p-XWra_Js,1614
77
+ dara/components/smart/data_slicer/extension/filter_status_button.py,sha256=nuZX1INgQ0_xJfIzIaA6gHlLKuOc1TBpVhZBLmuKfbc,1313
78
+ dara/components/smart/data_slicer/utils/core.py,sha256=lRONw6kGZRlISvdOIfud9eUVtem_oumAPiDoUDGhXCM,8619
79
+ dara/components/smart/data_slicer/utils/data_preview.py,sha256=-j77RuYWOJNQpZwEgb2iryA42DEgabq1Q8IXHkOUUe8,1697
80
+ dara/components/smart/data_slicer/utils/plotting.py,sha256=TB00576kbA6y1eRuZBe09UAcZmluY4iJsKmYnXZ3hWQ,3389
81
+ dara/components/smart/hierarchy.py,sha256=Q05GVG81ykwWdXcol9mqxopIrWwhhvwtT5TRF-A1j98,2871
82
+ dara/components/umd/dara.components.umd.js,sha256=RciXoiTSMp5321RlwRKkD5L4rgc8C3y6X1hmknnnMKw,6855690
83
+ dara/components/umd/style.css,sha256=Qm0_kcxXBDoXvvPTc7YCttkl1zMFifdcp-KufTunPNY,162729
84
+ dara_components-1.21.18.dist-info/LICENSE,sha256=r9u1w2RvpLMV6YjuXHIKXRBKzia3fx_roPwboGcLqCc,10944
85
+ dara_components-1.21.18.dist-info/METADATA,sha256=AgqOhSD30DVsteJK4mW1hfRkZjbKEKBkltVErsPoZ4s,2697
86
+ dara_components-1.21.18.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
87
+ dara_components-1.21.18.dist-info/RECORD,,
@@ -1,87 +0,0 @@
1
- dara/components/__init__.py,sha256=C_FZGdU_DrybumO2aVYEpVmSJ00WnDtVxWjlvv_HRJ8,1420
2
- dara/components/common/__init__.py,sha256=amZWLKVUsq987chihQxzNj40WyspcbBEtEqR0mTZ_pA,4076
3
- dara/components/common/accordion.py,sha256=_JQGdhtC97YlV3_MUydeXTN7rKJFsWHy2JQzq_c0CXU,9498
4
- dara/components/common/anchor.py,sha256=ceN-6Vc0ekWz9VrFkFChO_Hm-FGMI1nMc9DJBAv9hnc,2877
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=DhB-qgh46_vmoEVbxItYI5onMum_60hatyAUmOSoHWk,5351
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=-rzvtm_s0hhd7oScPotZu7buKLQ1EfGVhDtf2nZWPhg,30201
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=KfJp_miwbXyXzY_rp0Jnek-yN4RsRdyzatbk_hhtQ28,4398
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=xfKY4QjxkUEJ8ogBz43O2WIHWkrrg87REdUd4adbHHw,4858
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=MxntiTmPFrCUcRJ-RrgP_sN76NVcHvRBzohyvWg-4CQ,3119
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=RciXoiTSMp5321RlwRKkD5L4rgc8C3y6X1hmknnnMKw,6855690
83
- dara/components/umd/style.css,sha256=Qm0_kcxXBDoXvvPTc7YCttkl1zMFifdcp-KufTunPNY,162729
84
- dara_components-1.21.16.dist-info/LICENSE,sha256=r9u1w2RvpLMV6YjuXHIKXRBKzia3fx_roPwboGcLqCc,10944
85
- dara_components-1.21.16.dist-info/METADATA,sha256=i4K0Aqt0SjX-QFLXwxt5NIATWwbKedC76lwJJynAgZM,2746
86
- dara_components-1.21.16.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
87
- dara_components-1.21.16.dist-info/RECORD,,