@goplasmatic/dataflow-ui 2.0.7 → 2.0.9
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.
- package/dist/dataflow-ui.css +218 -0
- package/dist/index.cjs +2114 -1767
- package/dist/index.d.ts +70 -52
- package/dist/index.js +2114 -1767
- package/package.json +1 -1
package/dist/dataflow-ui.css
CHANGED
|
@@ -2793,6 +2793,25 @@ svg.react-flow__connectionline {
|
|
|
2793
2793
|
--df-function-map: #388a34;
|
|
2794
2794
|
--df-function-validation: #bf8803;
|
|
2795
2795
|
--df-function-custom: #6e6e6e;
|
|
2796
|
+
|
|
2797
|
+
/* DataLogic UI theme variables (for diagram visualizer) */
|
|
2798
|
+
--bg-primary: #ffffff;
|
|
2799
|
+
--bg-secondary: #f8f9fa;
|
|
2800
|
+
--bg-tertiary: #f3f4f6;
|
|
2801
|
+
--bg-hover: #e5e7eb;
|
|
2802
|
+
--text-primary: #1f2937;
|
|
2803
|
+
--text-secondary: #6b7280;
|
|
2804
|
+
--text-tertiary: #9ca3af;
|
|
2805
|
+
--text-muted: #d1d5db;
|
|
2806
|
+
--border-primary: #e5e7eb;
|
|
2807
|
+
--border-light: #f3f4f6;
|
|
2808
|
+
--accent-blue: #3b82f6;
|
|
2809
|
+
--accent-blue-hover: #2563eb;
|
|
2810
|
+
--accent-blue-light: rgba(59, 130, 246, 0.1);
|
|
2811
|
+
--accent-amber: #f59e0b;
|
|
2812
|
+
--node-shadow: rgba(0, 0, 0, 0.08);
|
|
2813
|
+
--node-shadow-hover: rgba(0, 0, 0, 0.12);
|
|
2814
|
+
--node-bg: #ffffff;
|
|
2796
2815
|
}
|
|
2797
2816
|
|
|
2798
2817
|
.df-theme-dark {
|
|
@@ -2831,6 +2850,25 @@ svg.react-flow__connectionline {
|
|
|
2831
2850
|
--df-function-map: #4ec9b0;
|
|
2832
2851
|
--df-function-validation: #dcdcaa;
|
|
2833
2852
|
--df-function-custom: #9d9d9d;
|
|
2853
|
+
|
|
2854
|
+
/* DataLogic UI theme variables (for diagram visualizer) */
|
|
2855
|
+
--bg-primary: #1e1e1e;
|
|
2856
|
+
--bg-secondary: #252526;
|
|
2857
|
+
--bg-tertiary: #2d2d30;
|
|
2858
|
+
--bg-hover: #3c3c3c;
|
|
2859
|
+
--text-primary: #d4d4d4;
|
|
2860
|
+
--text-secondary: #9d9d9d;
|
|
2861
|
+
--text-tertiary: #6b6b6b;
|
|
2862
|
+
--text-muted: #4d4d4d;
|
|
2863
|
+
--border-primary: #3c3c3c;
|
|
2864
|
+
--border-light: #2d2d30;
|
|
2865
|
+
--accent-blue: #0078d4;
|
|
2866
|
+
--accent-blue-hover: #1c97ea;
|
|
2867
|
+
--accent-blue-light: rgba(0, 120, 212, 0.15);
|
|
2868
|
+
--accent-amber: #f59e0b;
|
|
2869
|
+
--node-shadow: rgba(0, 0, 0, 0.2);
|
|
2870
|
+
--node-shadow-hover: rgba(0, 0, 0, 0.3);
|
|
2871
|
+
--node-bg: #252526;
|
|
2834
2872
|
}
|
|
2835
2873
|
|
|
2836
2874
|
/* Layout and core components */
|
|
@@ -4508,6 +4546,38 @@ svg.react-flow__connectionline {
|
|
|
4508
4546
|
DEBUGGER STYLES
|
|
4509
4547
|
============================================ */
|
|
4510
4548
|
|
|
4549
|
+
/* Visualizer container with title bar */
|
|
4550
|
+
|
|
4551
|
+
.df-visualizer-container {
|
|
4552
|
+
display: flex;
|
|
4553
|
+
flex-direction: column;
|
|
4554
|
+
height: 100%;
|
|
4555
|
+
overflow: hidden;
|
|
4556
|
+
}
|
|
4557
|
+
|
|
4558
|
+
.df-visualizer-title-bar {
|
|
4559
|
+
display: flex;
|
|
4560
|
+
align-items: center;
|
|
4561
|
+
justify-content: space-between;
|
|
4562
|
+
padding: 8px 12px;
|
|
4563
|
+
border-bottom: 1px solid var(--df-border-color);
|
|
4564
|
+
background: var(--df-bg-secondary);
|
|
4565
|
+
flex-shrink: 0;
|
|
4566
|
+
}
|
|
4567
|
+
|
|
4568
|
+
.df-visualizer-title {
|
|
4569
|
+
font-weight: 600;
|
|
4570
|
+
font-size: 14px;
|
|
4571
|
+
color: var(--df-text-primary);
|
|
4572
|
+
}
|
|
4573
|
+
|
|
4574
|
+
/* Make horizontal layout fill remaining space */
|
|
4575
|
+
|
|
4576
|
+
.df-visualizer-container .df-visualizer-horizontal {
|
|
4577
|
+
flex: 1;
|
|
4578
|
+
min-height: 0;
|
|
4579
|
+
}
|
|
4580
|
+
|
|
4511
4581
|
/* Debug mode layout */
|
|
4512
4582
|
|
|
4513
4583
|
.df-debug-mode {
|
|
@@ -5717,3 +5787,151 @@ svg.react-flow__connectionline {
|
|
|
5717
5787
|
.df-debug-mode.df-visualizer-horizontal {
|
|
5718
5788
|
padding-bottom: 30px;
|
|
5719
5789
|
}
|
|
5790
|
+
|
|
5791
|
+
/* ============================================
|
|
5792
|
+
INTEGRATED DEBUG TOOLBAR
|
|
5793
|
+
Compact toolbar for header integration
|
|
5794
|
+
============================================ */
|
|
5795
|
+
|
|
5796
|
+
.df-debug-toolbar-integrated {
|
|
5797
|
+
display: flex;
|
|
5798
|
+
align-items: center;
|
|
5799
|
+
gap: 12px;
|
|
5800
|
+
margin-left: auto;
|
|
5801
|
+
padding: 2px 0;
|
|
5802
|
+
}
|
|
5803
|
+
|
|
5804
|
+
.df-debug-toolbar-status {
|
|
5805
|
+
display: flex;
|
|
5806
|
+
align-items: center;
|
|
5807
|
+
gap: 6px;
|
|
5808
|
+
font-size: 11px;
|
|
5809
|
+
color: var(--df-text-secondary);
|
|
5810
|
+
min-width: 80px;
|
|
5811
|
+
}
|
|
5812
|
+
|
|
5813
|
+
.df-debug-toolbar-step-text {
|
|
5814
|
+
font-weight: 500;
|
|
5815
|
+
white-space: nowrap;
|
|
5816
|
+
}
|
|
5817
|
+
|
|
5818
|
+
.df-debug-toolbar-status-success {
|
|
5819
|
+
color: var(--df-success);
|
|
5820
|
+
}
|
|
5821
|
+
|
|
5822
|
+
.df-debug-toolbar-status-error {
|
|
5823
|
+
color: var(--df-error);
|
|
5824
|
+
}
|
|
5825
|
+
|
|
5826
|
+
.df-debug-toolbar-status-warning {
|
|
5827
|
+
color: var(--df-warning);
|
|
5828
|
+
}
|
|
5829
|
+
|
|
5830
|
+
.df-debug-toolbar-controls {
|
|
5831
|
+
display: flex;
|
|
5832
|
+
align-items: center;
|
|
5833
|
+
gap: 2px;
|
|
5834
|
+
}
|
|
5835
|
+
|
|
5836
|
+
.df-debug-toolbar-btn {
|
|
5837
|
+
display: flex;
|
|
5838
|
+
align-items: center;
|
|
5839
|
+
justify-content: center;
|
|
5840
|
+
width: 26px;
|
|
5841
|
+
height: 26px;
|
|
5842
|
+
background: transparent;
|
|
5843
|
+
border: 1px solid var(--df-border-color);
|
|
5844
|
+
border-radius: 4px;
|
|
5845
|
+
color: var(--df-text-secondary);
|
|
5846
|
+
cursor: pointer;
|
|
5847
|
+
transition: all 0.15s ease;
|
|
5848
|
+
}
|
|
5849
|
+
|
|
5850
|
+
.df-debug-toolbar-btn:hover:not(:disabled) {
|
|
5851
|
+
background: var(--df-bg-hover);
|
|
5852
|
+
border-color: var(--df-border-color-strong);
|
|
5853
|
+
color: var(--df-text-primary);
|
|
5854
|
+
}
|
|
5855
|
+
|
|
5856
|
+
.df-debug-toolbar-btn:disabled {
|
|
5857
|
+
opacity: 0.4;
|
|
5858
|
+
cursor: not-allowed;
|
|
5859
|
+
}
|
|
5860
|
+
|
|
5861
|
+
.df-debug-toolbar-btn-primary {
|
|
5862
|
+
background: var(--df-accent-primary);
|
|
5863
|
+
border-color: var(--df-accent-primary);
|
|
5864
|
+
color: white;
|
|
5865
|
+
}
|
|
5866
|
+
|
|
5867
|
+
.df-debug-toolbar-btn-primary:hover:not(:disabled) {
|
|
5868
|
+
background: var(--df-accent-secondary);
|
|
5869
|
+
border-color: var(--df-accent-secondary);
|
|
5870
|
+
color: white;
|
|
5871
|
+
}
|
|
5872
|
+
|
|
5873
|
+
.df-debug-toolbar-actions {
|
|
5874
|
+
display: flex;
|
|
5875
|
+
align-items: center;
|
|
5876
|
+
gap: 4px;
|
|
5877
|
+
margin-left: 4px;
|
|
5878
|
+
padding-left: 8px;
|
|
5879
|
+
border-left: 1px solid var(--df-border-color);
|
|
5880
|
+
}
|
|
5881
|
+
|
|
5882
|
+
.df-debug-toolbar-btn-action {
|
|
5883
|
+
display: flex;
|
|
5884
|
+
align-items: center;
|
|
5885
|
+
gap: 4px;
|
|
5886
|
+
padding: 4px 10px;
|
|
5887
|
+
font-size: 11px;
|
|
5888
|
+
font-weight: 500;
|
|
5889
|
+
border: none;
|
|
5890
|
+
border-radius: 4px;
|
|
5891
|
+
cursor: pointer;
|
|
5892
|
+
transition: all 0.15s ease;
|
|
5893
|
+
}
|
|
5894
|
+
|
|
5895
|
+
.df-debug-toolbar-btn-run {
|
|
5896
|
+
color: white;
|
|
5897
|
+
background: var(--df-success);
|
|
5898
|
+
}
|
|
5899
|
+
|
|
5900
|
+
.df-debug-toolbar-btn-run:hover:not(:disabled) {
|
|
5901
|
+
background: color-mix(in srgb, var(--df-success) 85%, black);
|
|
5902
|
+
}
|
|
5903
|
+
|
|
5904
|
+
.df-debug-toolbar-btn-run:disabled {
|
|
5905
|
+
opacity: 0.6;
|
|
5906
|
+
cursor: not-allowed;
|
|
5907
|
+
}
|
|
5908
|
+
|
|
5909
|
+
.df-debug-toolbar-btn-reset {
|
|
5910
|
+
color: var(--df-text-secondary);
|
|
5911
|
+
background: var(--df-bg-secondary);
|
|
5912
|
+
border: 1px solid var(--df-border-color);
|
|
5913
|
+
}
|
|
5914
|
+
|
|
5915
|
+
.df-debug-toolbar-btn-reset:hover:not(:disabled) {
|
|
5916
|
+
color: var(--df-text-primary);
|
|
5917
|
+
background: var(--df-bg-hover);
|
|
5918
|
+
border-color: var(--df-border-color-strong);
|
|
5919
|
+
}
|
|
5920
|
+
|
|
5921
|
+
.df-debug-toolbar-btn-reset:disabled {
|
|
5922
|
+
opacity: 0.6;
|
|
5923
|
+
cursor: not-allowed;
|
|
5924
|
+
}
|
|
5925
|
+
|
|
5926
|
+
/* Header with integrated debug controls */
|
|
5927
|
+
|
|
5928
|
+
.df-header-with-debug {
|
|
5929
|
+
display: flex;
|
|
5930
|
+
align-items: center;
|
|
5931
|
+
justify-content: space-between;
|
|
5932
|
+
gap: 8px;
|
|
5933
|
+
}
|
|
5934
|
+
|
|
5935
|
+
.df-header-with-debug .df-visualizer-left-title {
|
|
5936
|
+
flex-shrink: 0;
|
|
5937
|
+
}
|