@goplasmatic/dataflow-ui 2.0.7 → 2.0.8

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.
@@ -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 */
@@ -5717,3 +5755,151 @@ svg.react-flow__connectionline {
5717
5755
  .df-debug-mode.df-visualizer-horizontal {
5718
5756
  padding-bottom: 30px;
5719
5757
  }
5758
+
5759
+ /* ============================================
5760
+ INTEGRATED DEBUG TOOLBAR
5761
+ Compact toolbar for header integration
5762
+ ============================================ */
5763
+
5764
+ .df-debug-toolbar-integrated {
5765
+ display: flex;
5766
+ align-items: center;
5767
+ gap: 12px;
5768
+ margin-left: auto;
5769
+ padding: 2px 0;
5770
+ }
5771
+
5772
+ .df-debug-toolbar-status {
5773
+ display: flex;
5774
+ align-items: center;
5775
+ gap: 6px;
5776
+ font-size: 11px;
5777
+ color: var(--df-text-secondary);
5778
+ min-width: 80px;
5779
+ }
5780
+
5781
+ .df-debug-toolbar-step-text {
5782
+ font-weight: 500;
5783
+ white-space: nowrap;
5784
+ }
5785
+
5786
+ .df-debug-toolbar-status-success {
5787
+ color: var(--df-success);
5788
+ }
5789
+
5790
+ .df-debug-toolbar-status-error {
5791
+ color: var(--df-error);
5792
+ }
5793
+
5794
+ .df-debug-toolbar-status-warning {
5795
+ color: var(--df-warning);
5796
+ }
5797
+
5798
+ .df-debug-toolbar-controls {
5799
+ display: flex;
5800
+ align-items: center;
5801
+ gap: 2px;
5802
+ }
5803
+
5804
+ .df-debug-toolbar-btn {
5805
+ display: flex;
5806
+ align-items: center;
5807
+ justify-content: center;
5808
+ width: 26px;
5809
+ height: 26px;
5810
+ background: transparent;
5811
+ border: 1px solid var(--df-border-color);
5812
+ border-radius: 4px;
5813
+ color: var(--df-text-secondary);
5814
+ cursor: pointer;
5815
+ transition: all 0.15s ease;
5816
+ }
5817
+
5818
+ .df-debug-toolbar-btn:hover:not(:disabled) {
5819
+ background: var(--df-bg-hover);
5820
+ border-color: var(--df-border-color-strong);
5821
+ color: var(--df-text-primary);
5822
+ }
5823
+
5824
+ .df-debug-toolbar-btn:disabled {
5825
+ opacity: 0.4;
5826
+ cursor: not-allowed;
5827
+ }
5828
+
5829
+ .df-debug-toolbar-btn-primary {
5830
+ background: var(--df-accent-primary);
5831
+ border-color: var(--df-accent-primary);
5832
+ color: white;
5833
+ }
5834
+
5835
+ .df-debug-toolbar-btn-primary:hover:not(:disabled) {
5836
+ background: var(--df-accent-secondary);
5837
+ border-color: var(--df-accent-secondary);
5838
+ color: white;
5839
+ }
5840
+
5841
+ .df-debug-toolbar-actions {
5842
+ display: flex;
5843
+ align-items: center;
5844
+ gap: 4px;
5845
+ margin-left: 4px;
5846
+ padding-left: 8px;
5847
+ border-left: 1px solid var(--df-border-color);
5848
+ }
5849
+
5850
+ .df-debug-toolbar-btn-action {
5851
+ display: flex;
5852
+ align-items: center;
5853
+ gap: 4px;
5854
+ padding: 4px 10px;
5855
+ font-size: 11px;
5856
+ font-weight: 500;
5857
+ border: none;
5858
+ border-radius: 4px;
5859
+ cursor: pointer;
5860
+ transition: all 0.15s ease;
5861
+ }
5862
+
5863
+ .df-debug-toolbar-btn-run {
5864
+ color: white;
5865
+ background: var(--df-success);
5866
+ }
5867
+
5868
+ .df-debug-toolbar-btn-run:hover:not(:disabled) {
5869
+ background: color-mix(in srgb, var(--df-success) 85%, black);
5870
+ }
5871
+
5872
+ .df-debug-toolbar-btn-run:disabled {
5873
+ opacity: 0.6;
5874
+ cursor: not-allowed;
5875
+ }
5876
+
5877
+ .df-debug-toolbar-btn-reset {
5878
+ color: var(--df-text-secondary);
5879
+ background: var(--df-bg-secondary);
5880
+ border: 1px solid var(--df-border-color);
5881
+ }
5882
+
5883
+ .df-debug-toolbar-btn-reset:hover:not(:disabled) {
5884
+ color: var(--df-text-primary);
5885
+ background: var(--df-bg-hover);
5886
+ border-color: var(--df-border-color-strong);
5887
+ }
5888
+
5889
+ .df-debug-toolbar-btn-reset:disabled {
5890
+ opacity: 0.6;
5891
+ cursor: not-allowed;
5892
+ }
5893
+
5894
+ /* Header with integrated debug controls */
5895
+
5896
+ .df-header-with-debug {
5897
+ display: flex;
5898
+ align-items: center;
5899
+ justify-content: space-between;
5900
+ gap: 8px;
5901
+ }
5902
+
5903
+ .df-header-with-debug .df-visualizer-left-title {
5904
+ flex-shrink: 0;
5905
+ }