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
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
dara/components/__init__.py,sha256=69KqZ7BIpLkRVumyRBxcv5pEmtCvDtH1NvosOPlKTuE,808
|
|
2
|
-
dara/components/common/__init__.py,sha256=FSBBYlKyqWOBjDu05iMX2dmuQrxI2xgrw7CO-NbMd8s,3866
|
|
3
|
-
dara/components/common/accordion.py,sha256=8VRksGmbDvOrEzwv7mrYKK6kuiKyMPCHuRzEMqgTOvk,9487
|
|
4
|
-
dara/components/common/anchor.py,sha256=IkumpwbrGdW4UMrFTkGaT0t6KtZQhdBYp1HS5IHPxoM,2869
|
|
5
|
-
dara/components/common/base_component.py,sha256=TQfhpXYDH7ItM9hnhdActjzHM1NzT_yqGUdpLB8ZVqM,4707
|
|
6
|
-
dara/components/common/bullet_list.py,sha256=yk4lFAn6Bzx9UByp27P7ioVidAfsTPl5d4hIkG7MRkQ,1433
|
|
7
|
-
dara/components/common/button.py,sha256=uBzKKChuan3CPidfYsm9Nstqvi0J3zF9l-1EeEy5ots,4549
|
|
8
|
-
dara/components/common/button_bar.py,sha256=8PwjddFnp6dC_DfBCnBSmFSItgo8Sp1LNSl-rO3w0tY,3600
|
|
9
|
-
dara/components/common/card.py,sha256=PiYlkBc0JRpuuQiHHHGZBft5w3dLtLIEqP9Fo-1kyjs,1999
|
|
10
|
-
dara/components/common/carousel.py,sha256=K1scewjOFHLb4bAXvirlVSzujuU3lK4jsi6eHk2JUH0,5369
|
|
11
|
-
dara/components/common/checkbox_group.py,sha256=0CnkBEV6bFHOC7N5k8Zjed2sBwvJ1qbCgk6x2Ow4jVc,4156
|
|
12
|
-
dara/components/common/code.py,sha256=GzR9d3FnluagsYNW8OzcMV2L4_qRUj0YLXBbT6s02lw,2266
|
|
13
|
-
dara/components/common/component_select_list.py,sha256=oaWP43FVdgOap4PKJbuniV5vR2tldR52xwtdfaYnx4U,2750
|
|
14
|
-
dara/components/common/datepicker.py,sha256=X8DmIkNjkedSo0tvOw8j4wRIJJRUvb9pFRkg-KOWFfI,3613
|
|
15
|
-
dara/components/common/dropzone.py,sha256=3UqJ8Gb79flPyk4YztGxCRUlMR70_IIW03f2b7FCmUQ,3981
|
|
16
|
-
dara/components/common/form.py,sha256=MKsVU1t4OWB4z-v9gTDXT8iBbdIHCcb2YqxD2TYOnvA,3870
|
|
17
|
-
dara/components/common/form_page.py,sha256=9D_Cf3KV1UanwcIzuzArkBtVfrPpexp3J9hl_OSxlOE,1878
|
|
18
|
-
dara/components/common/grid.py,sha256=4d1idKCqaVetDaRIFVFg7pxRcYJ08rYm-c3Yc8t_VKE,10029
|
|
19
|
-
dara/components/common/heading.py,sha256=kAFmP1JIRkim793kQ3HjQfAKVXlQtk-ldzGSVv-diog,2375
|
|
20
|
-
dara/components/common/html_raw.py,sha256=-Atn6TejBCDkNQIa89KBOB2h2ntnjolU3HphPuFE6t4,1103
|
|
21
|
-
dara/components/common/icon.py,sha256=RRKrq63Lp4eADKM4Axl4MpTwjwUTUdfluX3-gULMDkw,1948
|
|
22
|
-
dara/components/common/if_cmp.py,sha256=tpGLOURycJ-HZLstJvINiuHW8Z87m805p3dUZzRh1zQ,3764
|
|
23
|
-
dara/components/common/image.py,sha256=v-YfFcoZdpa5BgJ8VXXZnBVd5lm5xsc0diffYrxy6EU,2260
|
|
24
|
-
dara/components/common/input.py,sha256=OXaKY921TTRyy8kHqbeCbjstNUtlsisiqImrAI-9bvc,2012
|
|
25
|
-
dara/components/common/label.py,sha256=ZlVFxZuj52aKZ9NBj29ntcuTJMld8qbXARuJFzgeJcM,2362
|
|
26
|
-
dara/components/common/markdown.py,sha256=4-M_lyj820gzxRisVTA7cCG-91NzWPW2vZbC7qwRmkQ,1706
|
|
27
|
-
dara/components/common/modal.py,sha256=x47WgB-n2Zq-C_0UhewL4KaAkTnQDT8TW2bSRm6gN2U,1526
|
|
28
|
-
dara/components/common/overlay.py,sha256=vQmnSkli8Oz1DqMzvu8i0zjIvJGbLL_EPfS5TNrBw9I,2220
|
|
29
|
-
dara/components/common/paragraph.py,sha256=VazJ816b0WwYQLags_StsZ_n1MnbYX9AQZbgIl8ZmOc,2304
|
|
30
|
-
dara/components/common/progress_bar.py,sha256=FqX3BPYzz71WkIgB9FxyJUikZdwT3pk-CdcONS_zI0M,1909
|
|
31
|
-
dara/components/common/radio_group.py,sha256=PCmV8GQmjpkyX9XxyyN0lHK1l8SBFvWPUTos4kjXoaI,3284
|
|
32
|
-
dara/components/common/select.py,sha256=ntK6fy0fxNw0OSazHAZC3malaan2VXIxOoBc9owFDtQ,6552
|
|
33
|
-
dara/components/common/slider.py,sha256=UdHhTFJjn6pgjzcotg1D_HnRBy_Q_wy4T8gubKyn67w,4613
|
|
34
|
-
dara/components/common/spacer.py,sha256=yzoIv7oNwM3hNSRkyH66OlOAwm5H7glGC_--A2ZLdAU,2690
|
|
35
|
-
dara/components/common/stack.py,sha256=vl8SyNwCokw-zQh75Q43vRmaU7BMHcL2AhDSU5xGvks,5290
|
|
36
|
-
dara/components/common/switch.py,sha256=xnv3pWK-7C0Z4pB7I26OKhuF7c647Y_-BygytnaBChg,1569
|
|
37
|
-
dara/components/common/tabbed_card.py,sha256=WMGcoxRUH5_w-AIHemKNprV-aVgYEjuuUFtJ1qM1Jmk,2326
|
|
38
|
-
dara/components/common/table.py,sha256=ZuzEbOd2Wta_UNqWw8QSnBJKflxi0rabse-Q3sZlxtA,24472
|
|
39
|
-
dara/components/common/text.py,sha256=jmeZ7iHVwpLBxq_-kfx9AtmDyiovVKxCv-tCmwxPHes,1904
|
|
40
|
-
dara/components/common/textarea.py,sha256=hQL6Z1bfHejoTFgg1XqzW5KvJYEGCdAOysxluTuDGfA,2081
|
|
41
|
-
dara/components/common/time_utils.py,sha256=JvCQLCT91As9gbGjocQbm-d99otpiWVEC-NWdhao7x0,1815
|
|
42
|
-
dara/components/common/tooltip.py,sha256=vd-v8jZM4XuaaHAGzmamb_IBBfwj8Umh7wqDv6ikLKg,3270
|
|
43
|
-
dara/components/common/utils.py,sha256=oe5AQjARX1IAcJENsRSa86Cm5EncYfOnPfPhoheh9qM,5492
|
|
44
|
-
dara/components/graphs/__init__.py,sha256=diE6xO4VKrzuNi_kjAHmpRpq209BJ0ATjgWMPbmesHY,725
|
|
45
|
-
dara/components/graphs/components/__init__.py,sha256=GdWwL5spSsATOU57EmMqOf6t7az1rP5S3Djd0eyL9As,1007
|
|
46
|
-
dara/components/graphs/components/base_graph_component.py,sha256=3ZjkULDX7P81WxKtMCR49ePT6GiGS2yt32fGZsUrJgc,3968
|
|
47
|
-
dara/components/graphs/components/causal_graph_viewer.py,sha256=6S3ePzUZ4vEMUk2zpzYCs92TFnlMHOomy8-bWXyqlfM,12224
|
|
48
|
-
dara/components/graphs/components/edge_encoder.py,sha256=XjdC1Dolt6jVA-VUEScIAINDxuF66iDrSnnAfrZa8U0,6120
|
|
49
|
-
dara/components/graphs/components/node_hierarchy_builder.py,sha256=vus3nuF9-vCXVN5ZrD1nYfqpMl3UuJALXYk-_RANwys,4299
|
|
50
|
-
dara/components/graphs/definitions.py,sha256=5LUHzK8ry9FBJrVFHE8TkzTZicmfSHGwXDm-GHrRJ1k,5209
|
|
51
|
-
dara/components/graphs/graph_layout.py,sha256=TanlbYBzfnEZrBV_L7otMxSIXMdPBoVXOby-P6ALz88,12493
|
|
52
|
-
dara/components/plotting/__init__.py,sha256=51gAEi68z5lsboABwuPwQ9EKx2OS4dbQIVeopWS57FA,805
|
|
53
|
-
dara/components/plotting/bokeh/__init__.py,sha256=GpnbgTI-2XWqBDqLbkHQ73eAEth-h_k0nKqP1ixgJ8I,889
|
|
54
|
-
dara/components/plotting/bokeh/bokeh.py,sha256=xo8zKmxprM26tg5OaZ8bAgjzIKW9l_sCfKkJL7L7bYo,3140
|
|
55
|
-
dara/components/plotting/bokeh/themes.py,sha256=ulL5GfyJ5WXCErMfraBgskyu7GJf-zZxw9WQQDlmsrE,3746
|
|
56
|
-
dara/components/plotting/bokeh/utils.py,sha256=HBoybSntm2QNKXCdYS0yDODV3HkHqNvORS1xSm1pT4M,1929
|
|
57
|
-
dara/components/plotting/matplotlib/__init__.py,sha256=XNvSBKg8ML2IhMm9fJ5-OOHAIX3sGs_q10MaaK2v0EI,681
|
|
58
|
-
dara/components/plotting/matplotlib/matplotlib.py,sha256=VUeOJZ6bTVrsJezmGqUJdezi6Vp53voB9BBWAGfTtrQ,1851
|
|
59
|
-
dara/components/plotting/palettes.py,sha256=dAFOLzDsb5Cq-ffhegLsElaJueGzCJ7Px6J7frMe_YY,8001
|
|
60
|
-
dara/components/plotting/plotly/__init__.py,sha256=vbFmz0BhPw6LktZxtVc4iv5eXRlc-5OqhBKOleUVaBw,835
|
|
61
|
-
dara/components/plotting/plotly/plotly.py,sha256=oZXrR7tWeZpFaa43rC_B0zx41nKXf4N3uhTRvmZWd3M,4361
|
|
62
|
-
dara/components/plotting/plotly/themes.py,sha256=FLQleyYp-IB3OpumE37N7WP5XO3LFPv3UsWpRnu9CCU,4413
|
|
63
|
-
dara/components/smart/__init__.py,sha256=BKddy9x0y4g6mKlPOZeSJMEpmdDZjDYMaqbfZOlfO3Q,1083
|
|
64
|
-
dara/components/smart/chat/__init__.py,sha256=1J6s1YYBuDYg7Vft5vhMzkGHp2vjqUWy3BZQB4Es6mM,796
|
|
65
|
-
dara/components/smart/chat/chat.py,sha256=4Wz7M9tEDN9VkbFY9r8PmRdo16JFWG6EeWwAi-XQ7qw,3067
|
|
66
|
-
dara/components/smart/chat/config.py,sha256=kXm_EkfE7mL-8sseZMGSqbXBTWwdIXozv37v-k-B8fg,590
|
|
67
|
-
dara/components/smart/chat/endpoints.py,sha256=knILdBHrb2zEtL2r6-3OumSPZKdQ_FJLkj_BWrNCOLE,490
|
|
68
|
-
dara/components/smart/chat/types.py,sha256=ic5KcIRowirxTHMtsBWCNwZPxF87jO0sxTYo8qDl9_w,1316
|
|
69
|
-
dara/components/smart/code_editor/__init__.py,sha256=U568YcqDyS8lC2qzf_9TrB62er-UibnbT6IeAiDSaME,749
|
|
70
|
-
dara/components/smart/code_editor/code_editor.py,sha256=T6OsGnbeUWtW4Zupr2MG-QSuAUEFumEMlsZMnxyw6jY,930
|
|
71
|
-
dara/components/smart/code_editor/util.py,sha256=sAZphgDHXI2Q2crr3qJg0lnLzY9OzuOzW_1e0EX8Rjs,4476
|
|
72
|
-
dara/components/smart/data_slicer/__init__.py,sha256=i-xM9LY7MzMOrg7wZ4vtbJ924EjAeqKWyyydmDfoMro,783
|
|
73
|
-
dara/components/smart/data_slicer/data_slicer.py,sha256=Hl9nVRgg-2Z0O5uECxiioxT2RikIygDArQXF6XKMj8I,7490
|
|
74
|
-
dara/components/smart/data_slicer/data_slicer_modal.py,sha256=t7NywA5DiFiUiUnuFQbTAAVm6PM7Qjd6LGzd9OWA0QE,4120
|
|
75
|
-
dara/components/smart/data_slicer/extension/data_slicer_filter.py,sha256=2wdWn3gcrewrhUZ4tGNwAh1JURpcLmeDKIP7c5j9_sI,1616
|
|
76
|
-
dara/components/smart/data_slicer/extension/filter_status_button.py,sha256=02CgqHEBgkZg1E9v9HGrnRYvEiMNhYpajyOwGuPNV1M,1345
|
|
77
|
-
dara/components/smart/data_slicer/utils/core.py,sha256=6BrmG-iwQCuwUAKQ-y9zFKLeinnzhXIaUOB58UxCYbc,8656
|
|
78
|
-
dara/components/smart/data_slicer/utils/data_preview.py,sha256=OAphjMrm3F76XmJ09X7sZSeOeKqGJFwN5ooo3qcyrG4,1722
|
|
79
|
-
dara/components/smart/data_slicer/utils/plotting.py,sha256=JYzdQLXdAD0A8k2W-764xUr7zN0Ri5nf3OQ2Nb_iuiY,3313
|
|
80
|
-
dara/components/smart/hierarchy.py,sha256=STkgyZiVB1c6KJtcKnn1r8lnjZAIrWkTCpZ_WCyCI1c,2877
|
|
81
|
-
dara/components/umd/dara.components.umd.js,sha256=u6E-We4MQO6wxpPCxsxvy4XdzldjkMfaBYhtfi3chRw,16985599
|
|
82
|
-
dara/components/umd/style.css,sha256=cvNU48TRRp73QxBrE9awB-zm3YURFnFlASafeLTNa_U,23576
|
|
83
|
-
dara_components-1.8.5.dist-info/LICENSE,sha256=r9u1w2RvpLMV6YjuXHIKXRBKzia3fx_roPwboGcLqCc,10944
|
|
84
|
-
dara_components-1.8.5.dist-info/METADATA,sha256=7x0Rwys0oh-a3zLgafXyvuXf2dRvpxocGPl2uZYqTdc,2710
|
|
85
|
-
dara_components-1.8.5.dist-info/WHEEL,sha256=7Z8_27uaHI_UZAc4Uox4PpBhQ9Y5_modZXWMxtUi4NU,88
|
|
86
|
-
dara_components-1.8.5.dist-info/RECORD,,
|
|
File without changes
|