dara-components 1.8.5__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.
- dara/components/__init__.py +18 -0
- dara/components/_assets/__init__.py +30 -0
- dara/components/_assets/auto_js/.gitkeep +0 -0
- dara/components/_assets/auto_js/dara.components.css +1494 -0
- dara/components/_assets/auto_js/dara.components.umd.js +182837 -0
- dara/components/_assets/common/bokeh-3.1.1.min.js +690 -0
- dara/components/_assets/common/bokeh-api-3.1.1.min.js +60 -0
- dara/components/_assets/common/bokeh-gl-3.1.1.min.js +67 -0
- dara/components/_assets/common/bokeh-mathjax-3.1.1.min.js +329 -0
- dara/components/_assets/common/bokeh-tables-3.1.1.min.js +132 -0
- dara/components/_assets/common/bokeh-widgets-3.1.1.min.js +129 -0
- dara/components/_assets/common/pixi-filters.min.js +17 -0
- dara/components/_assets/common/pixi.min.js +2214 -0
- dara/components/_assets/common/pixi_viewport.js +1 -0
- dara/components/_assets/common/plotly.min.js +8 -0
- dara/components/common/__init__.py +11 -2
- dara/components/common/accordion.py +20 -26
- dara/components/common/anchor.py +9 -10
- dara/components/common/base_component.py +23 -36
- dara/components/common/bullet_list.py +1 -3
- dara/components/common/button.py +35 -26
- dara/components/common/button_bar.py +25 -20
- dara/components/common/card.py +4 -5
- dara/components/common/carousel.py +9 -9
- dara/components/common/checkbox_group.py +26 -19
- dara/components/common/code.py +8 -5
- dara/components/common/component_select_list.py +9 -13
- dara/components/common/datepicker.py +16 -16
- dara/components/common/dropdown_menu.py +161 -0
- dara/components/common/dropzone.py +42 -33
- dara/components/common/form.py +5 -7
- dara/components/common/form_page.py +4 -6
- dara/components/common/grid.py +21 -18
- dara/components/common/heading.py +5 -4
- dara/components/common/icon.py +1 -3
- dara/components/common/if_cmp.py +23 -17
- dara/components/common/image.py +2 -2
- dara/components/common/input.py +9 -11
- dara/components/common/label.py +13 -14
- dara/components/common/markdown.py +3 -5
- dara/components/common/modal.py +2 -2
- dara/components/common/overlay.py +8 -14
- dara/components/common/paragraph.py +2 -2
- dara/components/common/progress_bar.py +6 -8
- dara/components/common/radio_group.py +38 -21
- dara/components/common/select.py +33 -30
- dara/components/common/slider.py +74 -29
- dara/components/common/spacer.py +4 -6
- dara/components/common/stack.py +7 -4
- dara/components/common/switch.py +6 -8
- dara/components/common/tabbed_card.py +8 -11
- dara/components/common/table.py +224 -73
- dara/components/common/text.py +7 -9
- dara/components/common/textarea.py +7 -7
- dara/components/common/time_utils.py +2 -5
- dara/components/common/tooltip.py +4 -6
- dara/components/common/utils.py +29 -35
- dara/components/graphs/__init__.py +1 -0
- dara/components/graphs/components/base_graph_component.py +34 -22
- dara/components/graphs/components/causal_graph_viewer.py +13 -15
- dara/components/graphs/components/edge_encoder.py +49 -26
- dara/components/graphs/components/node_hierarchy_builder.py +17 -16
- dara/components/graphs/definitions.py +27 -20
- dara/components/graphs/graph_layout.py +90 -53
- dara/components/plotting/__init__.py +2 -1
- dara/components/plotting/bokeh/bokeh.py +7 -10
- dara/components/plotting/bokeh/utils.py +5 -3
- dara/components/plotting/plotly/plotly.py +24 -19
- dara/components/plotting/plotly/themes.py +7 -5
- dara/components/smart/__init__.py +7 -1
- dara/components/smart/chat/chat.py +7 -8
- dara/components/smart/chat/config.py +1 -1
- dara/components/smart/chat/types.py +4 -6
- dara/components/smart/code_editor/code_editor.py +18 -4
- dara/components/smart/code_editor/util.py +11 -11
- dara/components/smart/data_slicer/__init__.py +4 -0
- dara/components/smart/data_slicer/data_slicer.py +14 -18
- dara/components/smart/data_slicer/data_slicer_modal.py +4 -6
- dara/components/smart/data_slicer/extension/data_slicer_filter.py +3 -4
- dara/components/smart/data_slicer/extension/filter_status_button.py +1 -3
- dara/components/smart/data_slicer/utils/core.py +23 -23
- dara/components/smart/data_slicer/utils/data_preview.py +1 -3
- dara/components/smart/data_slicer/utils/plotting.py +8 -6
- dara/components/smart/hierarchy.py +9 -10
- {dara_components-1.8.5.dist-info → dara_components-1.22.1.dist-info}/METADATA +7 -7
- dara_components-1.22.1.dist-info/RECORD +100 -0
- {dara_components-1.8.5.dist-info → dara_components-1.22.1.dist-info}/WHEEL +1 -1
- dara_components-1.22.1.dist-info/entry_points.txt +3 -0
- dara/components/umd/dara.components.umd.js +0 -396288
- dara/components/umd/style.css +0 -745
- dara_components-1.8.5.dist-info/RECORD +0 -86
- {dara_components-1.8.5.dist-info → dara_components-1.22.1.dist-info}/LICENSE +0 -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,,
|