flock-core 0.4.510__py3-none-any.whl → 0.4.511__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.
Potentially problematic release.
This version of flock-core might be problematic. Click here for more details.
- flock/webapp/static/css/two-pane.css +48 -0
- flock/webapp/templates/base.html +1 -0
- flock/webapp/templates/partials/_execution_view_container.html +12 -3
- {flock_core-0.4.510.dist-info → flock_core-0.4.511.dist-info}/METADATA +1 -1
- {flock_core-0.4.510.dist-info → flock_core-0.4.511.dist-info}/RECORD +8 -7
- {flock_core-0.4.510.dist-info → flock_core-0.4.511.dist-info}/WHEEL +0 -0
- {flock_core-0.4.510.dist-info → flock_core-0.4.511.dist-info}/entry_points.txt +0 -0
- {flock_core-0.4.510.dist-info → flock_core-0.4.511.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* ========================================================================
|
|
2
|
+
two-pane.css — Styles for the two-pane layout used in execution view
|
|
3
|
+
======================================================================== */
|
|
4
|
+
|
|
5
|
+
/* Two pane container */
|
|
6
|
+
.two-pane-flex-container {
|
|
7
|
+
display: flex;
|
|
8
|
+
width: 100%;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
/* Collapsed left pane */
|
|
12
|
+
.left-pane-collapsed {
|
|
13
|
+
width: 40px;
|
|
14
|
+
display: flex;
|
|
15
|
+
align-items: center;
|
|
16
|
+
justify-content: center;
|
|
17
|
+
background-color: var(--pico-muted-border-color);
|
|
18
|
+
border-radius: 0 4px 4px 0;
|
|
19
|
+
writing-mode: vertical-lr;
|
|
20
|
+
transform: rotate(180deg);
|
|
21
|
+
margin-right: 10px;
|
|
22
|
+
transition: background-color 0.2s;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.left-pane-collapsed:hover {
|
|
26
|
+
background-color: var(--pico-primary-hover);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/* Toggle links styling */
|
|
30
|
+
.pane-toggle {
|
|
31
|
+
text-decoration: none;
|
|
32
|
+
color: var(--pico-primary);
|
|
33
|
+
font-size: 0.875rem;
|
|
34
|
+
font-weight: 500;
|
|
35
|
+
padding: 5px 10px;
|
|
36
|
+
border-radius: 4px;
|
|
37
|
+
transition: all 0.2s;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.pane-toggle:hover {
|
|
41
|
+
background-color: var(--pico-primary-hover);
|
|
42
|
+
color: var(--pico-primary-inverse);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/* Ensure right pane takes full width when left is collapsed */
|
|
46
|
+
#execution-right-pane {
|
|
47
|
+
transition: flex 0.3s, padding-left 0.3s;
|
|
48
|
+
}
|
flock/webapp/templates/base.html
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
<link rel="stylesheet" href="/static/css/sidebar.css">
|
|
13
13
|
<link rel="stylesheet" href="/static/css/components.css">
|
|
14
14
|
<link rel="stylesheet" href="/static/css/chat.css">
|
|
15
|
+
<link rel="stylesheet" href="/static/css/two-pane.css">
|
|
15
16
|
<!-- Font Awesome for icons -->
|
|
16
17
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
17
18
|
<!-- Prism.js CSS for syntax highlighting (okaidia theme) -->
|
|
@@ -1,5 +1,14 @@
|
|
|
1
|
-
<article class="two-pane-flex-container">
|
|
2
|
-
|
|
1
|
+
<article class="two-pane-flex-container" x-data="{ showLeftPane: true }">
|
|
2
|
+
<!-- Left pane - collapsed state -->
|
|
3
|
+
<div class="left-pane-collapsed" x-show="!showLeftPane" style="display: none;">
|
|
4
|
+
<a href="#" class="pane-toggle" @click.prevent="showLeftPane = true" aria-label="Expand left pane">Show</a>
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<!-- Left pane - expanded state -->
|
|
8
|
+
<section id="execution-left-pane" x-show="showLeftPane" style="flex: 1; min-width: 200px; max-width: 500px;">
|
|
9
|
+
<div class="pane-header" style="display: flex; justify-content: flex-end; margin-bottom: 10px;">
|
|
10
|
+
<a href="#" class="pane-toggle" @click.prevent="showLeftPane = false" aria-label="Hide left pane">Hide</a>
|
|
11
|
+
</div>
|
|
3
12
|
{# The Execution Form will be loaded here #}
|
|
4
13
|
<div id="execution-form-wrapper" hx-get="/ui/api/flock/htmx/execution-form-content" {# New endpoint for just the
|
|
5
14
|
form #} hx-trigger="load" hx-swap="innerHTML">
|
|
@@ -8,7 +17,7 @@
|
|
|
8
17
|
</section>
|
|
9
18
|
|
|
10
19
|
<section id="execution-right-pane" class="right-pane-framed"
|
|
11
|
-
style="flex: 2; border-left: 1px solid var(--pico-muted-border-color); padding-left: 1.5rem;">
|
|
20
|
+
:style="showLeftPane ? 'flex: 2; border-left: 1px solid var(--pico-muted-border-color); padding-left: 1.5rem;' : 'flex: 1; border-left: none; padding-left: 0;'">
|
|
12
21
|
{# The Results Display area, always present when this container is loaded #}
|
|
13
22
|
<header style=" border-bottom: 1px solid var(--pico-muted-border-color); margin-bottom: 1rem;">
|
|
14
23
|
<h5>Execution Results</h5>
|
|
@@ -508,7 +508,8 @@ flock/webapp/static/css/components.css,sha256=WnicEHy3ptPzggKmyG9_oZp3X30EMJBUW3
|
|
|
508
508
|
flock/webapp/static/css/header.css,sha256=E9MgItZCk34S65NfMJ001ZsRz4oyFSJex8KvINMtCn0,1043
|
|
509
509
|
flock/webapp/static/css/layout.css,sha256=ocDd7dmezdQzNAQDuQSv1xZ8-pcbNgYLUYJB1SKcfvw,1526
|
|
510
510
|
flock/webapp/static/css/sidebar.css,sha256=gCwLTAiIvmHGksm0rHDpMsOGCDKBMxqx_aEc8ZQcQF8,3066
|
|
511
|
-
flock/webapp/
|
|
511
|
+
flock/webapp/static/css/two-pane.css,sha256=dTrCm5y3odO105Pt_yHtAl3uzUSy2fqDSCEC_jxeEDM,1181
|
|
512
|
+
flock/webapp/templates/base.html,sha256=4aGkj-tL-tOcPtpNvrsiOhGUn6EfaCpAOsto_MB4IKs,9817
|
|
512
513
|
flock/webapp/templates/chat.html,sha256=9JMupaOFvVLxJ2DnLRmjaPWBN96nIOgQRYkHe3h_OzQ,7397
|
|
513
514
|
flock/webapp/templates/chat_settings.html,sha256=nYz6ihYAUA9zN-Jru565QNl8_eJdoLMWC2LdZJtZ-20,862
|
|
514
515
|
flock/webapp/templates/flock_editor.html,sha256=ysDExf9zMj4SMsSXZUpCtG9EjIv8VJ5xL4IJQOMlb7o,542
|
|
@@ -530,7 +531,7 @@ flock/webapp/templates/partials/_dashboard_upload_flock_form.html,sha256=lQxR75y
|
|
|
530
531
|
flock/webapp/templates/partials/_dynamic_input_form_content.html,sha256=WYr2M7Mb5vKITFhIVXXEHppRx9IjGew91yLo1_I9kkI,1230
|
|
531
532
|
flock/webapp/templates/partials/_env_vars_table.html,sha256=6TFUWvkYwzwodqXZ0yJhH_NU6L4tz7V09mDamSfDI8c,1082
|
|
532
533
|
flock/webapp/templates/partials/_execution_form.html,sha256=296AFx0WSbCzX8t-L1pRl8s0AUzeOb2fmTiRlcwYoIg,3274
|
|
533
|
-
flock/webapp/templates/partials/_execution_view_container.html,sha256=
|
|
534
|
+
flock/webapp/templates/partials/_execution_view_container.html,sha256=8_kvsXBfROHcpqFfKl8MNhDWLusUOA2-7ygwtdJax7o,1702
|
|
534
535
|
flock/webapp/templates/partials/_flock_file_list.html,sha256=FjIxAqB0OxA0mQ8f2jBX1_M_AM5ea7gCA8PEjPpiZVc,1209
|
|
535
536
|
flock/webapp/templates/partials/_flock_properties_form.html,sha256=alOsGYzktVX6aYtfxRHganBfipkzx5Kk4RxF6C0IHhk,2891
|
|
536
537
|
flock/webapp/templates/partials/_flock_upload_form.html,sha256=h2dIPwPeTg5dv_ubrZiwBXReF0NjzJ6eKSwwz7mbQQs,960
|
|
@@ -554,8 +555,8 @@ flock/workflow/agent_execution_activity.py,sha256=Gy6FtuVAjf0NiUXmC3syS2eJpNQF4R
|
|
|
554
555
|
flock/workflow/flock_workflow.py,sha256=iSUF_soFvWar0ffpkzE4irkDZRx0p4HnwmEBi_Ne2sY,9666
|
|
555
556
|
flock/workflow/temporal_config.py,sha256=3_8O7SDEjMsSMXsWJBfnb6XTp0TFaz39uyzSlMTSF_I,3988
|
|
556
557
|
flock/workflow/temporal_setup.py,sha256=YIHnSBntzOchHfMSh8hoLeNXrz3B1UbR14YrR6soM7A,1606
|
|
557
|
-
flock_core-0.4.
|
|
558
|
-
flock_core-0.4.
|
|
559
|
-
flock_core-0.4.
|
|
560
|
-
flock_core-0.4.
|
|
561
|
-
flock_core-0.4.
|
|
558
|
+
flock_core-0.4.511.dist-info/METADATA,sha256=z5Ej34edD5OxdhIiXbXIkSxvMfr97CG0SHh_d_NfTmY,22584
|
|
559
|
+
flock_core-0.4.511.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
560
|
+
flock_core-0.4.511.dist-info/entry_points.txt,sha256=rWaS5KSpkTmWySURGFZk6PhbJ87TmvcFQDi2uzjlagQ,37
|
|
561
|
+
flock_core-0.4.511.dist-info/licenses/LICENSE,sha256=iYEqWy0wjULzM9GAERaybP4LBiPeu7Z1NEliLUdJKSc,1072
|
|
562
|
+
flock_core-0.4.511.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|