@goplasmatic/dataflow-ui 2.0.10 → 2.0.11

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.
@@ -4334,10 +4334,32 @@ svg.react-flow__connectionline {
4334
4334
 
4335
4335
  .df-visualizer-result-content {
4336
4336
  flex: 1;
4337
- overflow: auto;
4337
+ min-height: 0;
4338
+ overflow: hidden;
4338
4339
  background: var(--df-bg-primary);
4339
4340
  }
4340
4341
 
4342
+ /* Monaco Editor Wrapper */
4343
+
4344
+ .df-monaco-editor-wrapper {
4345
+ height: 100%;
4346
+ min-height: 100%;
4347
+ }
4348
+
4349
+ /* Monaco Editor Line Highlighting (for debug mode) */
4350
+
4351
+ .df-highlighted-line {
4352
+ background-color: color-mix(in srgb, var(--df-success) 15%, transparent) !important;
4353
+ border-left: 3px solid var(--df-success) !important;
4354
+ }
4355
+
4356
+ .df-highlighted-glyph {
4357
+ background-color: var(--df-success);
4358
+ width: 4px !important;
4359
+ margin-left: 3px;
4360
+ border-radius: 2px;
4361
+ }
4362
+
4341
4363
  .df-result-json {
4342
4364
  margin: 0;
4343
4365
  padding: 12px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goplasmatic/dataflow-ui",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "type": "module",
5
5
  "description": "React visualization library for dataflow-rs workflow engine",
6
6
  "author": "Plasmatic Engineering <shankar@goplasmatic.io>",